From a092aac32d061c8f6265c9975040e9f8c0b96f55 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Sat, 6 Feb 2010 12:59:41 +0100 Subject: [PATCH 001/362] add events to fine-tune user deletion --- EVENTS.txt | 16 ++++++++++++++++ actions/deleteuser.php | 31 ++++++++++++++++++------------- 2 files changed, 34 insertions(+), 13 deletions(-) diff --git a/EVENTS.txt b/EVENTS.txt index 6bf12bf13f..b4fc4cbebe 100644 --- a/EVENTS.txt +++ b/EVENTS.txt @@ -714,3 +714,19 @@ StartRobotsTxt: Before outputting the robots.txt page EndRobotsTxt: After the default robots.txt page (good place for customization) - &$action: RobotstxtAction being shown +StartDeleteUserForm: starting the data in the form for deleting a user +- $action: action being shown +- $user: user being deleted + +EndDeleteUserForm: Ending the data in the form for deleting a user +- $action: action being shown +- $user: user being deleted + +StartDeleteUser: handling the post for deleting a user +- $action: action being shown +- $user: user being deleted + +EndDeleteUser: handling the post for deleting a user +- $action: action being shown +- $user: user being deleted + diff --git a/actions/deleteuser.php b/actions/deleteuser.php index 32b703aa7f..c4f84fad2d 100644 --- a/actions/deleteuser.php +++ b/actions/deleteuser.php @@ -131,18 +131,21 @@ class DeleteuserAction extends ProfileFormAction $this->elementStart('fieldset'); $this->hidden('token', common_session_token()); $this->element('legend', _('Delete user')); - $this->element('p', null, - _('Are you sure you want to delete this user? '. - 'This will clear all data about the user from the '. - 'database, without a backup.')); - $this->element('input', array('id' => 'deleteuserto-' . $id, - 'name' => 'profileid', - 'type' => 'hidden', - 'value' => $id)); - foreach ($this->args as $k => $v) { - if (substr($k, 0, 9) == 'returnto-') { - $this->hidden($k, $v); + if (Event::handle('StartDeleteUserForm', array($this, $this->user))) { + $this->element('p', null, + _('Are you sure you want to delete this user? '. + 'This will clear all data about the user from the '. + 'database, without a backup.')); + $this->element('input', array('id' => 'deleteuserto-' . $id, + 'name' => 'profileid', + 'type' => 'hidden', + 'value' => $id)); + foreach ($this->args as $k => $v) { + if (substr($k, 0, 9) == 'returnto-') { + $this->hidden($k, $v); + } } + Event::handle('EndDeleteUserForm', array($this, $this->user)); } $this->submit('form_action-no', _('No'), 'submit form_action-primary', 'no', _("Do not block this user")); $this->submit('form_action-yes', _('Yes'), 'submit form_action-secondary', 'yes', _('Delete this user')); @@ -158,7 +161,9 @@ class DeleteuserAction extends ProfileFormAction function handlePost() { - $this->user->delete(); + if (Event::handle('StartDeleteUser', array($this, $this->user))) { + $this->user->delete(); + Event::handle('EndDeleteUser', array($this, $this->user)); + } } } - From ceb0236dfb4274927a9c5cbbdda19a3e14830cca Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Sat, 6 Feb 2010 15:35:05 +0100 Subject: [PATCH 002/362] update copyright date for Blacklist --- plugins/Blacklist/BlacklistPlugin.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/Blacklist/BlacklistPlugin.php b/plugins/Blacklist/BlacklistPlugin.php index 84a2cb6168..0d10c16152 100644 --- a/plugins/Blacklist/BlacklistPlugin.php +++ b/plugins/Blacklist/BlacklistPlugin.php @@ -22,7 +22,7 @@ * @category Action * @package StatusNet * @author Evan Prodromou - * @copyright 2009 StatusNet Inc. + * @copyright 2010 StatusNet Inc. * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ From 8f3c0efe0c703cae68e29d65a76fdf2b1410c33d Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Sat, 6 Feb 2010 15:54:24 +0100 Subject: [PATCH 003/362] BlacklistPlugin accepts config values for patterns --- plugins/Blacklist/BlacklistPlugin.php | 31 +++++++++++++++++++++++++-- 1 file changed, 29 insertions(+), 2 deletions(-) diff --git a/plugins/Blacklist/BlacklistPlugin.php b/plugins/Blacklist/BlacklistPlugin.php index 0d10c16152..2d53093b26 100644 --- a/plugins/Blacklist/BlacklistPlugin.php +++ b/plugins/Blacklist/BlacklistPlugin.php @@ -48,6 +48,33 @@ class BlacklistPlugin extends Plugin public $nicknames = array(); public $urls = array(); + private $_nicknamePatterns = array(); + private $_urlPatterns = array(); + + function initialize() + { + $this->_nicknamePatterns = array_merge($this->nicknames, + $this->_configArray('blacklist', 'nicknames')); + + $this->_urlPatterns = array_merge($this->urls, + $this->_configArray('blacklist', 'urls')); + } + + function _configArray($section, $setting) + { + $config = common_config($section, $setting); + + if (empty($config)) { + return array(); + } else if (is_array($config)) { + return $config; + } else if (is_string($config)) { + return explode("\t", $config); + } else { + throw new Exception("Unknown data type for config $section + $setting"); + } + } + /** * Hook registration to prevent blacklisted homepages or nicknames * @@ -173,7 +200,7 @@ class BlacklistPlugin extends Plugin private function _checkUrl($url) { - foreach ($this->urls as $pattern) { + foreach ($this->_urlPatterns as $pattern) { if (preg_match("/$pattern/", $url)) { return false; } @@ -194,7 +221,7 @@ class BlacklistPlugin extends Plugin private function _checkNickname($nickname) { - foreach ($this->nicknames as $pattern) { + foreach ($this->_nicknamePatterns as $pattern) { if (preg_match("/$pattern/", $nickname)) { return false; } From 6e5809586fa22a78b9c66130a62a411a594be715 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Sat, 6 Feb 2010 16:32:50 +0100 Subject: [PATCH 004/362] Move authorization for admin panels to AdminPanelAction class --- lib/adminpanelaction.php | 29 ++++++++++++++++++----------- 1 file changed, 18 insertions(+), 11 deletions(-) diff --git a/lib/adminpanelaction.php b/lib/adminpanelaction.php index f05627b317..536d97cdf5 100644 --- a/lib/adminpanelaction.php +++ b/lib/adminpanelaction.php @@ -103,7 +103,7 @@ class AdminPanelAction extends Action $name = mb_substr($name, 0, -10); - if (!in_array($name, common_config('admin', 'panels'))) { + if (!self::canAdmin($name)) { $this->clientError(_('Changes to that panel are not allowed.'), 403); return false; } @@ -262,6 +262,17 @@ class AdminPanelAction extends Action return $result; } + + function canAdmin($name) + { + $isOK = false; + + if (Event::handle('AdminPanelCheck', array($name, &$isOK))) { + $isOK = in_array($name, common_config('admin', 'panels')); + } + + return $isOK; + } } /** @@ -307,32 +318,32 @@ class AdminPanelNav extends Widget if (Event::handle('StartAdminPanelNav', array($this))) { - if ($this->canAdmin('site')) { + if (AdminPanelAction::canAdmin('site')) { $this->out->menuItem(common_local_url('siteadminpanel'), _('Site'), _('Basic site configuration'), $action_name == 'siteadminpanel', 'nav_site_admin_panel'); } - if ($this->canAdmin('design')) { + if (AdminPanelAction::canAdmin('design')) { $this->out->menuItem(common_local_url('designadminpanel'), _('Design'), _('Design configuration'), $action_name == 'designadminpanel', 'nav_design_admin_panel'); } - if ($this->canAdmin('user')) { + if (AdminPanelAction::canAdmin('user')) { $this->out->menuItem(common_local_url('useradminpanel'), _('User'), _('User configuration'), $action_name == 'useradminpanel', 'nav_design_admin_panel'); } - if ($this->canAdmin('access')) { + if (AdminPanelAction::canAdmin('access')) { $this->out->menuItem(common_local_url('accessadminpanel'), _('Access'), _('Access configuration'), $action_name == 'accessadminpanel', 'nav_design_admin_panel'); } - if ($this->canAdmin('paths')) { + if (AdminPanelAction::canAdmin('paths')) { $this->out->menuItem(common_local_url('pathsadminpanel'), _('Paths'), _('Paths configuration'), $action_name == 'pathsadminpanel', 'nav_design_admin_panel'); } - if ($this->canAdmin('sessions')) { + if (AdminPanelAction::canAdmin('sessions')) { $this->out->menuItem(common_local_url('sessionsadminpanel'), _('Sessions'), _('Sessions configuration'), $action_name == 'sessionsadminpanel', 'nav_design_admin_panel'); } @@ -342,8 +353,4 @@ class AdminPanelNav extends Widget $this->action->elementEnd('ul'); } - function canAdmin($name) - { - return in_array($name, common_config('admin', 'panels')); - } } From b0a310563892a322b6857f51671b1087b1155fa2 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Sat, 6 Feb 2010 17:08:58 +0100 Subject: [PATCH 005/362] Blacklist admin panel --- plugins/Blacklist/BlacklistPlugin.php | 124 +++++++++++- plugins/Blacklist/blacklistadminpanel.php | 222 ++++++++++++++++++++++ 2 files changed, 340 insertions(+), 6 deletions(-) create mode 100644 plugins/Blacklist/blacklistadminpanel.php diff --git a/plugins/Blacklist/BlacklistPlugin.php b/plugins/Blacklist/BlacklistPlugin.php index 2d53093b26..fd8d187436 100644 --- a/plugins/Blacklist/BlacklistPlugin.php +++ b/plugins/Blacklist/BlacklistPlugin.php @@ -47,19 +47,41 @@ class BlacklistPlugin extends Plugin public $nicknames = array(); public $urls = array(); + public $canAdmin = true; private $_nicknamePatterns = array(); - private $_urlPatterns = array(); + private $_urlPatterns = array(); + + /** + * Initialize the plugin + * + * @return void + */ function initialize() { + $confNicknames = $this->_configArray('blacklist', 'nicknames') + $this->_nicknamePatterns = array_merge($this->nicknames, - $this->_configArray('blacklist', 'nicknames')); + $confNicknames); + + $confURLs = $this->_configArray('blacklist', 'urls') $this->_urlPatterns = array_merge($this->urls, - $this->_configArray('blacklist', 'urls')); + $confURLs); } + /** + * Retrieve an array from configuration + * + * Carefully checks a section. + * + * @param string $section Configuration section + * @param string $setting Configuration setting + * + * @return array configuration values + */ + function _configArray($section, $setting) { $config = common_config($section, $setting); @@ -69,7 +91,7 @@ class BlacklistPlugin extends Plugin } else if (is_array($config)) { return $config; } else if (is_string($config)) { - return explode("\t", $config); + return explode("\r\n", $config); } else { throw new Exception("Unknown data type for config $section + $setting"); } @@ -201,6 +223,7 @@ class BlacklistPlugin extends Plugin private function _checkUrl($url) { foreach ($this->_urlPatterns as $pattern) { + common_debug("Checking $url against $pattern"); if (preg_match("/$pattern/", $url)) { return false; } @@ -222,6 +245,7 @@ class BlacklistPlugin extends Plugin private function _checkNickname($nickname) { foreach ($this->_nicknamePatterns as $pattern) { + common_debug("Checking $nickname against $pattern"); if (preg_match("/$pattern/", $nickname)) { return false; } @@ -230,14 +254,102 @@ class BlacklistPlugin extends Plugin return true; } + /** + * Add our actions to the URL router + * + * @param Net_URL_Mapper $m URL mapper for this hit + * + * @return boolean hook return + */ + + function onRouterInitialized($m) + { + $m->connect('admin/blacklist', array('action' => 'blacklistadminpanel')); + return true; + } + + /** + * Auto-load our classes if called + * + * @param string $cls Class to load + * + * @return boolean hook return + */ + + function onAutoload($cls) + { + switch (strtolower($cls)) + { + case 'blacklistadminpanelaction': + $base = strtolower(mb_substr($cls, 0, -6)); + include_once INSTALLDIR.'/plugins/Blacklist/'.$base.'.php'; + return false; + default: + return true; + } + } + + /** + * Plugin version data + * + * @param array &$versions array of version blocks + * + * @return boolean hook value + */ + function onPluginVersion(&$versions) { $versions[] = array('name' => 'Blacklist', 'version' => self::VERSION, 'author' => 'Evan Prodromou', - 'homepage' => 'http://status.net/wiki/Plugin:Blacklist', + 'homepage' => + 'http://status.net/wiki/Plugin:Blacklist', 'description' => - _m('Keep a blacklist of forbidden nickname and URL patterns.')); + _m('Keep a blacklist of forbidden nickname '. + 'and URL patterns.')); + return true; + } + + /** + * Determines if our admin panel can be shown + * + * @param string $name name of the admin panel + * @param boolean &$isOK result + * + * @return boolean hook value + */ + + function onAdminPanelCheck($name, &$isOK) + { + if ($name == 'blacklist') { + $isOK = $this->canAdmin; + return false; + } + + return true; + } + + /** + * Add our tab to the admin panel + * + * @param Widget $nav Admin panel nav + * + * @return boolean hook value + */ + + function onEndAdminPanelNav($nav) + { + if (AdminPanelAction::canAdmin('blacklist')) { + + $action_name = $nav->action->trimmed('action'); + + $nav->out->menuItem(common_local_url('blacklistadminpanel'), + _('Blacklist'), + _('Blacklist configuration'), + $action_name == 'blacklistadminpanel', + 'nav_blacklist_admin_panel'); + } + return true; } } diff --git a/plugins/Blacklist/blacklistadminpanel.php b/plugins/Blacklist/blacklistadminpanel.php new file mode 100644 index 0000000000..98d07080db --- /dev/null +++ b/plugins/Blacklist/blacklistadminpanel.php @@ -0,0 +1,222 @@ +. + * + * @category Settings + * @package StatusNet + * @author Evan Prodromou + * @copyright 2010 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPLv3 + * @link http://status.net/ + */ + +if (!defined('STATUSNET')) { + exit(1); +} + +/** + * Administer blacklist + * + * @category Admin + * @package StatusNet + * @author Evan Prodromou + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPLv3 + * @link http://status.net/ + */ + +class BlacklistadminpanelAction extends AdminPanelAction +{ + /** + * title of the admin panel + * + * @return string title + */ + + function title() + { + return _('Blacklist'); + } + + /** + * Panel instructions + * + * @return string instructions + */ + + function getInstructions() + { + return _('Blacklisted URLs and nicknames'); + } + + /** + * Show the actual form + * + * @return void + * + * @see BlacklistAdminPanelForm + */ + + function showForm() + { + $form = new BlacklistAdminPanelForm($this); + $form->show(); + return; + } + + /** + * Save the form settings + * + * @return void + */ + + function saveSettings() + { + static $settings = array( + 'blacklist' => array('nicknames', 'urls'), + ); + + $values = array(); + + foreach ($settings as $section => $parts) { + foreach ($parts as $setting) { + $values[$section][$setting] = $this->trimmed("$section-$setting"); + } + } + + // This throws an exception on validation errors + + $this->validate($values); + + // assert(all values are valid); + + $config = new Config(); + + $config->query('BEGIN'); + + foreach ($settings as $section => $parts) { + foreach ($parts as $setting) { + Config::save($section, $setting, $values[$section][$setting]); + } + } + + $config->query('COMMIT'); + + return; + } + + /** + * Validate the values + * + * @param array &$values 2d array of values to check + * + * @return boolean success flag + */ + + function validate(&$values) + { + return true; + } +} + +/** + * Admin panel form for blacklist panel + * + * @category Admin + * @package StatusNet + * @author Evan Prodromou + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPLv3 + * @link http://status.net/ + */ + +class BlacklistAdminPanelForm extends Form +{ + /** + * ID of the form + * + * @return string ID + */ + + function id() + { + return 'blacklistadminpanel'; + } + + /** + * Class of the form + * + * @return string class + */ + + function formClass() + { + return 'form_settings'; + } + + /** + * Action we post to + * + * @return string action URL + */ + + function action() + { + return common_local_url('blacklistadminpanel'); + } + + /** + * Show the form controls + * + * @return void + */ + + function formData() + { + $this->out->elementStart('ul', 'form_data'); + + $this->out->elementStart('li'); + $this->out->textarea('blacklist-nicknames', _m('Nicknames'), + common_config('blacklist', 'nicknames'), + _('Patterns of nicknames to block, one per line')); + $this->out->elementEnd('li'); + + $this->out->elementStart('li'); + $this->out->textarea('blacklist-urls', _m('URLs'), + common_config('blacklist', 'urls'), + _('Patterns of URLs to block, one per line')); + $this->out->elementEnd('li'); + + $this->out->elementEnd('ul'); + } + + /** + * Buttons for submitting + * + * @return void + */ + + function formActions() + { + $this->out->submit('submit', + _('Save'), + 'submit', + null, + _('Save site settings')); + } +} From f55ef878f603d81857509f42f50c1a28b1a8e1f2 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Thu, 18 Feb 2010 01:47:44 +0000 Subject: [PATCH 006/362] Fix for cross site OMB posting problem --- lib/omb.php | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/lib/omb.php b/lib/omb.php index 0f38a49369..17132a594f 100644 --- a/lib/omb.php +++ b/lib/omb.php @@ -29,11 +29,9 @@ require_once 'Auth/Yadis/Yadis.php'; function omb_oauth_consumer() { - static $con = null; - if (is_null($con)) { - $con = new OAuthConsumer(common_root_url(), ''); - } - return $con; + // Don't try to make this static. Leads to issues in + // multi-site setups - Z + return new OAuthConsumer(common_root_url(), ''); } function omb_oauth_server() From ddef800ec94dc9d9c7cdc3a81bb1c1fadaad0db2 Mon Sep 17 00:00:00 2001 From: Christopher Vollick Date: Thu, 18 Feb 2010 12:14:34 -0500 Subject: [PATCH 007/362] Update Avatar URL Did Weird Stuff. It was only finding the first two avatars and then thinking it was done. I'm not entirely sure why it was doing that. I think maybe all the cloning made it forget where it was or something. Either way, it seems to work now, and really uses less memory. --- scripts/updateavatarurl.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/updateavatarurl.php b/scripts/updateavatarurl.php index 617c2e24c7..3b6681bae9 100644 --- a/scripts/updateavatarurl.php +++ b/scripts/updateavatarurl.php @@ -94,11 +94,11 @@ function updateAvatars($user) } } - $orig = clone($avatar); + $orig_url = $avatar->url; $avatar->url = Avatar::url($avatar->filename); - if ($avatar->url != $orig->url) { + if ($avatar->url != $orig_url) { $sql = "UPDATE avatar SET url = '" . $avatar->url . "' ". "WHERE profile_id = " . $avatar->profile_id . " ". From e717cba19c1badb97b87e7654e7535d57fa9c9f3 Mon Sep 17 00:00:00 2001 From: Christopher Vollick Date: Thu, 18 Feb 2010 13:44:16 -0500 Subject: [PATCH 008/362] Add Script To Update Group Avatar URLs Similar to scripts/updateavatarurl.php. Works for groups. Again, I had to do some weird thing because using clone screwed up the find() iteration. --- scripts/updateavatarurl_group.php | 99 +++++++++++++++++++++++++++++++ 1 file changed, 99 insertions(+) create mode 100644 scripts/updateavatarurl_group.php diff --git a/scripts/updateavatarurl_group.php b/scripts/updateavatarurl_group.php new file mode 100644 index 0000000000..ada42de202 --- /dev/null +++ b/scripts/updateavatarurl_group.php @@ -0,0 +1,99 @@ +#!/usr/bin/env php +. + */ + +define('INSTALLDIR', realpath(dirname(__FILE__) . '/..')); + +$shortoptions = 'i:n:a'; +$longoptions = array('id=', 'nickname=', 'all'); + +$helptext = <<find()) { + while ($group->fetch()) { + updateGroupAvatars($group); + } + } + } else { + show_help(); + exit(1); + } +} catch (Exception $e) { + print $e->getMessage()."\n"; + exit(1); +} + +function updateGroupAvatars($group) +{ + if (!have_option('q', 'quiet')) { + print "Updating avatars for group '".$group->nickname."' (".$group->id.")..."; + } + + if (empty($group->original_logo)) { + print "(none found)..."; + } else { + // Using clone here was screwing up the group->find() iteration + $orig = User_group::staticGet('id', $group->id); + + $group->original_logo = Avatar::url(basename($group->original_logo)); + $group->homepage_logo = Avatar::url(basename($group->homepage_logo)); + $group->stream_logo = Avatar::url(basename($group->stream_logo)); + $group->mini_logo = Avatar::url(basename($group->mini_logo)); + + if (!$group->update($orig)) { + throw new Exception("Can't update avatars for group " . $group->nickname . "."); + } + } + + if (have_option('v', 'verbose')) { + print "DONE."; + } + if (!have_option('q', 'quiet') || have_option('v', 'verbose')) { + print "\n"; + } +} From 1e8e1e836d53b357eb1ddd538c0ceb4d8b289f59 Mon Sep 17 00:00:00 2001 From: Christopher Vollick Date: Mon, 22 Feb 2010 11:19:16 -0500 Subject: [PATCH 009/362] Rewrote How Blogspam Plugin Made HTTP Requests. The old way didn't seem to work anymore. It was just sending empty requests. --- plugins/BlogspamNetPlugin.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/plugins/BlogspamNetPlugin.php b/plugins/BlogspamNetPlugin.php index 51236001aa..9b7ed1c123 100644 --- a/plugins/BlogspamNetPlugin.php +++ b/plugins/BlogspamNetPlugin.php @@ -72,8 +72,10 @@ class BlogspamNetPlugin extends Plugin common_debug("Blogspamnet args = " . print_r($args, TRUE)); $requestBody = xmlrpc_encode_request('testComment', array($args)); - $request = HTTPClient::start(); - $httpResponse = $request->post($this->baseUrl, array('Content-Type: text/xml'), $requestBody); + $request = new HTTPClient($this->baseUrl, HTTPClient::METHOD_POST); + $request->setHeader('Content-Type', 'text/xml'); + $request->setBody($requestBody); + $httpResponse = $request->send(); $response = xmlrpc_decode($httpResponse->getBody()); if (xmlrpc_is_fault($response)) { From a6afc1cfd6e99d83322910d4c1dafb16b1c4ae90 Mon Sep 17 00:00:00 2001 From: Christopher Vollick Date: Mon, 22 Feb 2010 11:20:44 -0500 Subject: [PATCH 010/362] Made Blogspam Plugin Respect textlimit Setting. The Blogspam plugin was setting a max-size to 140. It was therefore rejecting posts with more characters as spam. This kind of defeated the purpose of setting a higher limit... --- plugins/BlogspamNetPlugin.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/BlogspamNetPlugin.php b/plugins/BlogspamNetPlugin.php index 9b7ed1c123..d52e6006ac 100644 --- a/plugins/BlogspamNetPlugin.php +++ b/plugins/BlogspamNetPlugin.php @@ -120,7 +120,7 @@ class BlogspamNetPlugin extends Plugin $args['site'] = common_root_url(); $args['version'] = $this->userAgent(); - $args['options'] = "max-size=140,min-size=0,min-words=0,exclude=bayasian"; + $args['options'] = "max-size=" . common_config('site','textlimit') . ",min-size=0,min-words=0,exclude=bayasian"; return $args; } From 5173d92895e892412e8a8c10b4e434c924593c99 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Wed, 24 Feb 2010 16:47:00 -0800 Subject: [PATCH 011/362] Merge StatusNet core localization updates from 0.9.x branch --- locale/ar/LC_MESSAGES/statusnet.po | 1779 ++++++++++------ locale/arz/LC_MESSAGES/statusnet.po | 1755 ++++++++++------ locale/bg/LC_MESSAGES/statusnet.po | 1613 ++++++++++----- locale/ca/LC_MESSAGES/statusnet.po | 1600 ++++++++++----- locale/cs/LC_MESSAGES/statusnet.po | 1583 +++++++++----- locale/de/LC_MESSAGES/statusnet.po | 1824 +++++++++++------ locale/el/LC_MESSAGES/statusnet.po | 1576 +++++++++----- locale/en_GB/LC_MESSAGES/statusnet.po | 1709 ++++++++++------ locale/es/LC_MESSAGES/statusnet.po | 2406 +++++++++++++--------- locale/fa/LC_MESSAGES/statusnet.po | 1551 +++++++++----- locale/fi/LC_MESSAGES/statusnet.po | 1601 ++++++++++----- locale/fr/LC_MESSAGES/statusnet.po | 1613 ++++++++++----- locale/ga/LC_MESSAGES/statusnet.po | 1598 ++++++++++----- locale/he/LC_MESSAGES/statusnet.po | 1582 +++++++++----- locale/hsb/LC_MESSAGES/statusnet.po | 1590 ++++++++++----- locale/ia/LC_MESSAGES/statusnet.po | 2720 +++++++++++++++---------- locale/is/LC_MESSAGES/statusnet.po | 1590 ++++++++++----- locale/it/LC_MESSAGES/statusnet.po | 1565 +++++++++----- locale/ja/LC_MESSAGES/statusnet.po | 1751 ++++++++++------ locale/ko/LC_MESSAGES/statusnet.po | 1592 ++++++++++----- locale/mk/LC_MESSAGES/statusnet.po | 1564 +++++++++----- locale/nb/LC_MESSAGES/statusnet.po | 1921 ++++++++++------- locale/nl/LC_MESSAGES/statusnet.po | 1577 +++++++++----- locale/nn/LC_MESSAGES/statusnet.po | 1592 ++++++++++----- locale/pl/LC_MESSAGES/statusnet.po | 1625 ++++++++++----- locale/pt/LC_MESSAGES/statusnet.po | 1560 +++++++++----- locale/pt_BR/LC_MESSAGES/statusnet.po | 1786 ++++++++++------ locale/ru/LC_MESSAGES/statusnet.po | 1581 +++++++++----- locale/statusnet.po | 1509 +++++++++----- locale/sv/LC_MESSAGES/statusnet.po | 2090 ++++++++++++------- locale/te/LC_MESSAGES/statusnet.po | 1738 ++++++++++------ locale/tr/LC_MESSAGES/statusnet.po | 1584 +++++++++----- locale/uk/LC_MESSAGES/statusnet.po | 1546 +++++++++----- locale/vi/LC_MESSAGES/statusnet.po | 1594 ++++++++++----- locale/zh_CN/LC_MESSAGES/statusnet.po | 1598 ++++++++++----- locale/zh_TW/LC_MESSAGES/statusnet.po | 1570 +++++++++----- 36 files changed, 39878 insertions(+), 21155 deletions(-) diff --git a/locale/ar/LC_MESSAGES/statusnet.po b/locale/ar/LC_MESSAGES/statusnet.po index 4e63e3e330..26f9563295 100644 --- a/locale/ar/LC_MESSAGES/statusnet.po +++ b/locale/ar/LC_MESSAGES/statusnet.po @@ -9,18 +9,70 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-01-13 22:04+0000\n" -"PO-Revision-Date: 2010-01-13 22:04:40+0000\n" +"POT-Creation-Date: 2010-02-24 23:49+0000\n" +"PO-Revision-Date: 2010-02-24 23:50:01+0000\n" "Language-Team: Arabic\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha (r61027); Translate extension (2010-01-04)\n" +"X-Generator: MediaWiki 1.17alpha (r62925); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=6; plural= n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " "&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +#: actions/accessadminpanel.php:54 lib/adminpanelaction.php:326 +msgid "Access" +msgstr "نفاذ" + +#: actions/accessadminpanel.php:65 +msgid "Site access settings" +msgstr "إعدادات الوصول إلى الموقع" + +#: actions/accessadminpanel.php:158 +msgid "Registration" +msgstr "تسجيل" + +#: actions/accessadminpanel.php:161 +msgid "Private" +msgstr "خاص" + +#: actions/accessadminpanel.php:163 +msgid "Prohibit anonymous users (not logged in) from viewing site?" +msgstr "أأمنع المستخدمين المجهولين (غير الوالجين) من عرض الموقع؟" + +#: actions/accessadminpanel.php:167 +msgid "Invite only" +msgstr "بالدعوة فقط" + +#: actions/accessadminpanel.php:169 +msgid "Make registration invitation only." +msgstr "" + +#: actions/accessadminpanel.php:173 +msgid "Closed" +msgstr "مُغلق" + +#: actions/accessadminpanel.php:175 +msgid "Disable new registrations." +msgstr "عطّل التسجيل الجديد." + +#: actions/accessadminpanel.php:189 actions/designadminpanel.php:586 +#: actions/emailsettings.php:195 actions/imsettings.php:163 +#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 +#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 +#: actions/siteadminpanel.php:336 actions/smssettings.php:181 +#: actions/subscriptions.php:208 actions/tagother.php:154 +#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 lib/designsettings.php:256 +#: lib/groupeditform.php:202 +msgid "Save" +msgstr "أرسل" + +#: actions/accessadminpanel.php:189 +msgid "Save access settings" +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" @@ -35,25 +87,29 @@ msgstr "لا صفحة كهذه" #: 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:144 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apistatusesupdate.php:148 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:78 #: actions/apitimelinehome.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/otp.php:76 #: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154 -#: actions/replies.php:73 actions/repliesrss.php:38 +#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 #: 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:302 lib/command.php:355 #: lib/command.php:401 lib/command.php:462 lib/command.php:518 #: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 -#: lib/subs.php:34 lib/subs.php:125 msgid "No such user." msgstr "لا مستخدم كهذا." +#: actions/all.php:84 +#, php-format +msgid "%1$s and friends, page %2$d" +msgstr "%1$s والأصدقاء, الصفحة %2$d" + #: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 -#: actions/apitimelinefriends.php:115 actions/apitimelinehome.php:115 +#: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" @@ -94,7 +150,7 @@ msgid "" "his or her attention](%%%%action.newnotice%%%%?status_textarea=%3$s)." msgstr "" -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211 #, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " @@ -105,8 +161,8 @@ msgstr "" msgid "You and friends" msgstr "أنت والأصدقاء" -#: actions/allrss.php:119 actions/apitimelinefriends.php:122 -#: actions/apitimelinehome.php:122 +#: actions/allrss.php:119 actions/apitimelinefriends.php:119 +#: actions/apitimelinehome.php:120 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "" @@ -116,23 +172,23 @@ msgstr "" #: actions/apiaccountupdateprofile.php:97 #: actions/apiaccountupdateprofilebackgroundimage.php:94 #: actions/apiaccountupdateprofilecolors.php:118 -#: 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:136 actions/apigroupismember.php:114 -#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 -#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 -#: actions/apigroupmembership.php:106 actions/apigroupshow.php:105 -#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 -#: actions/apistatusesretweets.php:112 actions/apistatusesshow.php:108 -#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93 -#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:146 -#: actions/apitimelinefriends.php:156 actions/apitimelinegroup.php:150 -#: actions/apitimelinehome.php:156 actions/apitimelinementions.php:151 -#: actions/apitimelinepublic.php:131 actions/apitimelineretweetedbyme.php:122 +#: actions/apiaccountverifycredentials.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:128 actions/apigroupcreate.php:136 +#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 +#: actions/apigroupleave.php:141 actions/apigrouplist.php:132 +#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 +#: actions/apigroupshow.php:115 actions/apihelptest.php:88 +#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 +#: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 #: actions/apitimelineretweetedtome.php:121 -#: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141 -#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 +#: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 +#: actions/apitimelineuser.php:207 actions/apiusershow.php:101 msgid "API method not found." msgstr "لم يتم العثور على وسيلة API." @@ -146,7 +202,7 @@ msgstr "لم يتم العثور على وسيلة API." #: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 #: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 #: actions/apigroupleave.php:91 actions/apistatusesretweet.php:65 -#: actions/apistatusesupdate.php:114 +#: actions/apistatusesupdate.php:118 msgid "This method requires a POST." msgstr "تتطلب هذه الطريقة POST." @@ -175,8 +231,9 @@ msgstr "لم يمكن حفظ الملف." #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:97 -#: actions/apistatusesupdate.php:127 actions/avatarsettings.php:257 -#: actions/designadminpanel.php:122 actions/newnotice.php:94 +#: actions/apistatusesupdate.php:131 actions/avatarsettings.php:257 +#: actions/designadminpanel.php:122 actions/editapplication.php:118 +#: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 #, php-format msgid "" @@ -219,7 +276,7 @@ msgstr "رسائل مباشرة من %s" #: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" -msgstr "" +msgstr "جميع الرسائل المرسلة من %s" #: actions/apidirectmessage.php:101 #, php-format @@ -254,18 +311,16 @@ msgid "No status found with that ID." msgstr "" #: actions/apifavoritecreate.php:119 -#, fuzzy msgid "This status is already a favorite." -msgstr "هذا الإشعار مفضلة مسبقًا!" +msgstr "هذه الحالة مفضلة بالفعل." #: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:176 msgid "Could not create favorite." msgstr "تعذّر إنشاء مفضلة." #: actions/apifavoritedestroy.php:122 -#, fuzzy msgid "That status is not a favorite." -msgstr "تلك الحالة ليست مفضلة!" +msgstr "تلك الحالة ليست مفضلة." #: actions/apifavoritedestroy.php:134 actions/disfavor.php:87 msgid "Could not delete favorite." @@ -285,19 +340,18 @@ msgid "Could not unfollow user: User not found." msgstr "" #: actions/apifriendshipsdestroy.php:120 -#, fuzzy msgid "You cannot unfollow yourself." -msgstr "لا يمكنك منع نفسك!" +msgstr "لا يمكنك عدم متابعة نفسك." #: actions/apifriendshipsexists.php:94 msgid "Two user ids or screen_names must be supplied." msgstr "" -#: actions/apifriendshipsshow.php:135 +#: actions/apifriendshipsshow.php:134 msgid "Could not determine source user." -msgstr "" +msgstr "تعذّر تحديد المستخدم المصدر." -#: actions/apifriendshipsshow.php:143 +#: actions/apifriendshipsshow.php:142 msgid "Could not find target user." msgstr "تعذّر إيجاد المستخدم الهدف." @@ -311,7 +365,7 @@ msgstr "" #: actions/newgroup.php:130 actions/profilesettings.php:238 #: actions/register.php:208 msgid "Nickname already in use. Try another one." -msgstr "" +msgstr "الاسم المستعار مستخدم بالفعل. جرّب اسمًا آخرًا." #: actions/apigroupcreate.php:180 actions/editgroup.php:189 #: actions/newgroup.php:133 actions/profilesettings.php:218 @@ -319,7 +373,8 @@ msgstr "" msgid "Not a valid nickname." msgstr "ليس اسمًا مستعارًا صحيحًا." -#: actions/apigroupcreate.php:196 actions/editgroup.php:195 +#: actions/apigroupcreate.php:196 actions/editapplication.php:215 +#: actions/editgroup.php:195 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:217 msgid "Homepage is not a valid URL." @@ -331,7 +386,8 @@ msgstr "الصفحة الرئيسية ليست عنونًا صالحًا." msgid "Full name is too long (max 255 chars)." msgstr "الاسم الكامل طويل جدا (الأقصى 255 حرفًا)" -#: actions/apigroupcreate.php:213 +#: actions/apigroupcreate.php:213 actions/editapplication.php:190 +#: actions/newapplication.php:172 #, php-format msgid "Description is too long (max %d chars)." msgstr "" @@ -346,7 +402,7 @@ msgstr "" #: actions/newgroup.php:159 #, php-format msgid "Too many aliases! Maximum %d." -msgstr "" +msgstr "كنيات كيرة! العدد الأقصى هو %d." #: actions/apigroupcreate.php:264 actions/editgroup.php:224 #: actions/newgroup.php:168 @@ -367,7 +423,7 @@ msgstr "" #: actions/apigroupismember.php:95 actions/apigroupjoin.php:104 #: actions/apigroupleave.php:104 actions/apigroupmembership.php:91 -#: actions/apigroupshow.php:90 actions/apitimelinegroup.php:91 +#: actions/apigroupshow.php:82 actions/apitimelinegroup.php:91 msgid "Group not found!" msgstr "لم توجد المجموعة!" @@ -380,18 +436,18 @@ msgid "You have been blocked from that group by the admin." msgstr "" #: actions/apigroupjoin.php:138 actions/joingroup.php:124 -#, fuzzy, php-format +#, php-format msgid "Could not join user %1$s to group %2$s." -msgstr "تعذّر إنشاء المجموعة." +msgstr "لم يمكن ضم المستخدم %1$s إلى المجموعة %2$s." #: actions/apigroupleave.php:114 msgid "You are not a member of this group." -msgstr "" +msgstr "لست عضوًا في هذه المجموعة" #: actions/apigroupleave.php:124 actions/leavegroup.php:119 -#, fuzzy, php-format +#, php-format msgid "Could not remove user %1$s from group %2$s." -msgstr "تعذّر إنشاء المجموعة." +msgstr "لم يمكن إزالة المستخدم %1$s من المجموعة %2$s." #: actions/apigrouplist.php:95 #, php-format @@ -408,6 +464,113 @@ msgstr "مجموعات %s" msgid "groups on %s" msgstr "مجموعات %s" +#: actions/apioauthauthorize.php:101 +msgid "No oauth_token parameter provided." +msgstr "" + +#: actions/apioauthauthorize.php:106 +#, fuzzy +msgid "Invalid token." +msgstr "حجم غير صالح." + +#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 +#: actions/deletenotice.php:157 actions/disfavor.php:74 +#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54 +#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupunblock.php:66 actions/imsettings.php:206 +#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 +#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 +#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135 +#: actions/othersettings.php:145 actions/passwordsettings.php:138 +#: actions/profilesettings.php:194 actions/recoverpassword.php:337 +#: actions/register.php:165 actions/remotesubscribe.php:77 +#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 +#: actions/subscribe.php:86 actions/tagother.php:166 +#: 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/apioauthauthorize.php:135 +msgid "Invalid nickname / password!" +msgstr "اسم/كلمة سر غير صحيحة!" + +#: actions/apioauthauthorize.php:159 +#, fuzzy +msgid "Database error deleting OAuth application user." +msgstr "خطأ قاعدة البيانات أثناء حذف المستخدم OAuth app" + +#: actions/apioauthauthorize.php:185 +#, fuzzy +msgid "Database error inserting OAuth application user." +msgstr "خطأ قاعدة البيانات أثناء إدخال المستخدم OAuth app" + +#: actions/apioauthauthorize.php:214 +#, php-format +msgid "" +"The request token %s has been authorized. Please exchange it for an access " +"token." +msgstr "" + +#: actions/apioauthauthorize.php:227 +#, php-format +msgid "The request token %s has been denied and revoked." +msgstr "" + +#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 +#: actions/designadminpanel.php:103 actions/editapplication.php:139 +#: actions/emailsettings.php:256 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/newapplication.php:121 +#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 +#: actions/smssettings.php:248 lib/designsettings.php:304 +msgid "Unexpected form submission." +msgstr "" + +#: actions/apioauthauthorize.php:259 +msgid "An application would like to connect to your account" +msgstr "" + +#: actions/apioauthauthorize.php:276 +msgid "Allow or deny access" +msgstr "" + +#: actions/apioauthauthorize.php:292 +#, php-format +msgid "" +"The application %1$s by %2$s would like " +"the ability to %3$s your %4$s account data. You should only " +"give access to your %4$s account to third parties you trust." +msgstr "" + +#: actions/apioauthauthorize.php:310 lib/action.php:441 +msgid "Account" +msgstr "الحساب" + +#: actions/apioauthauthorize.php:313 actions/login.php:230 +#: actions/profilesettings.php:106 actions/register.php:424 +#: actions/showgroup.php:236 actions/tagother.php:94 +#: actions/userauthorization.php:145 lib/groupeditform.php:152 +#: lib/userprofile.php:131 +msgid "Nickname" +msgstr "الاسم المستعار" + +#: actions/apioauthauthorize.php:316 actions/login.php:233 +#: actions/register.php:429 lib/accountsettingsaction.php:116 +msgid "Password" +msgstr "كلمة السر" + +#: actions/apioauthauthorize.php:328 +msgid "Deny" +msgstr "ارفض" + +#: actions/apioauthauthorize.php:334 +msgid "Allow" +msgstr "اسمح" + +#: actions/apioauthauthorize.php:351 +msgid "Allow or deny access to your account information." +msgstr "" + #: actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." msgstr "" @@ -435,19 +598,19 @@ msgstr "حُذِفت الحالة." #: actions/apistatusesshow.php:144 msgid "No status with that ID found." -msgstr "" +msgstr "لا حالة وُجدت بهذه الهوية." -#: actions/apistatusesupdate.php:157 actions/newnotice.php:155 +#: actions/apistatusesupdate.php:161 actions/newnotice.php:155 #: lib/mailhandler.php:60 #, php-format msgid "That's too long. Max notice size is %d chars." msgstr "" -#: actions/apistatusesupdate.php:198 +#: actions/apistatusesupdate.php:202 msgid "Not found" msgstr "لم يوجد" -#: actions/apistatusesupdate.php:221 actions/newnotice.php:178 +#: actions/apistatusesupdate.php:225 actions/newnotice.php:178 #, php-format msgid "Max notice size is %d chars, including attachment URL." msgstr "" @@ -461,7 +624,7 @@ msgstr "نسق غير مدعوم." msgid "%1$s / Favorites from %2$s" msgstr "" -#: actions/apitimelinefavorites.php:120 +#: actions/apitimelinefavorites.php:117 #, php-format msgid "%1$s updates favorited by %2$s / %2$s." msgstr "" @@ -472,7 +635,7 @@ msgstr "" msgid "%s timeline" msgstr "مسار %s الزمني" -#: actions/apitimelinegroup.php:117 actions/apitimelineuser.php:126 +#: actions/apitimelinegroup.php:114 actions/apitimelineuser.php:126 #: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" @@ -488,27 +651,22 @@ msgstr "" msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "" -#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "مسار %s الزمني العام" -#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "" -#: actions/apitimelineretweetedbyme.php:112 -#, php-format -msgid "Repeated by %s" -msgstr "" - #: actions/apitimelineretweetedtome.php:111 #, php-format msgid "Repeated to %s" msgstr "كرر إلى %s" -#: actions/apitimelineretweetsofme.php:112 +#: actions/apitimelineretweetsofme.php:114 #, php-format msgid "Repeats of %s" msgstr "تكرارات %s" @@ -518,7 +676,7 @@ msgstr "تكرارات %s" msgid "Notices tagged with %s" msgstr "الإشعارات الموسومة ب%s" -#: actions/apitimelinetag.php:108 actions/tagrss.php:64 +#: actions/apitimelinetag.php:104 actions/tagrss.php:64 #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "" @@ -578,8 +736,8 @@ msgstr "الأصلي" msgid "Preview" msgstr "عاين" -#: actions/avatarsettings.php:149 lib/deleteuserform.php:66 -#: lib/noticelist.php:611 +#: actions/avatarsettings.php:149 actions/showapplication.php:252 +#: lib/deleteuserform.php:66 lib/noticelist.php:637 msgid "Delete" msgstr "احذف" @@ -591,29 +749,6 @@ msgstr "ارفع" msgid "Crop" msgstr "" -#: actions/avatarsettings.php:268 actions/deletenotice.php:157 -#: actions/disfavor.php:74 actions/emailsettings.php:238 actions/favor.php:75 -#: actions/geocode.php:50 actions/groupblock.php:66 actions/grouplogo.php:309 -#: actions/groupunblock.php:66 actions/imsettings.php:206 -#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 -#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 -#: actions/othersettings.php:145 actions/passwordsettings.php:138 -#: actions/profilesettings.php:194 actions/recoverpassword.php:337 -#: actions/register.php:165 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 -#: actions/subscribe.php:46 actions/tagother.php:166 -#: 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/avatarsettings.php:281 actions/designadminpanel.php:103 -#: actions/emailsettings.php:256 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/avatarsettings.php:328 msgid "Pick a square area of the image to be your avatar" msgstr "" @@ -649,8 +784,9 @@ msgid "" "will not be notified of any @-replies from them." msgstr "" -#: actions/block.php:143 actions/deletenotice.php:145 -#: actions/deleteuser.php:147 actions/groupblock.php:178 +#: actions/block.php:143 actions/deleteapplication.php:153 +#: actions/deletenotice.php:145 actions/deleteuser.php:147 +#: actions/groupblock.php:178 msgid "No" msgstr "لا" @@ -658,13 +794,13 @@ msgstr "لا" msgid "Do not block this user" msgstr "لا تمنع هذا المستخدم" -#: actions/block.php:144 actions/deletenotice.php:146 -#: actions/deleteuser.php:148 actions/groupblock.php:179 -#: lib/repeatform.php:132 +#: actions/block.php:144 actions/deleteapplication.php:158 +#: actions/deletenotice.php:146 actions/deleteuser.php:148 +#: actions/groupblock.php:179 lib/repeatform.php:132 msgid "Yes" msgstr "نعم" -#: actions/block.php:144 actions/groupmembers.php:346 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80 msgid "Block this user" msgstr "امنع هذا المستخدم" @@ -688,9 +824,9 @@ msgid "%s blocked profiles" msgstr "" #: actions/blockedfromgroup.php:93 -#, fuzzy, php-format +#, php-format msgid "%1$s blocked profiles, page %2$d" -msgstr "مشتركو %s، الصفحة %d" +msgstr "%1$s ملفات ممنوعة, الصفحة %2$d" #: actions/blockedfromgroup.php:108 msgid "A list of the users blocked from joining this group." @@ -747,8 +883,8 @@ msgid "Couldn't delete email confirmation." msgstr "تعذّر حذف تأكيد البريد الإلكتروني." #: actions/confirmaddress.php:144 -msgid "Confirm Address" -msgstr "عنوان التأكيد" +msgid "Confirm address" +msgstr "أكد العنوان" #: actions/confirmaddress.php:159 #, php-format @@ -764,10 +900,53 @@ msgstr "محادثة" msgid "Notices" msgstr "الإشعارات" +#: actions/deleteapplication.php:63 +#, fuzzy +msgid "You must be logged in to delete an application." +msgstr "يجب أن تكون مسجل الدخول لتعدل تطبيقا." + +#: actions/deleteapplication.php:71 +#, fuzzy +msgid "Application not found." +msgstr "لم يوجد رمز التأكيد." + +#: actions/deleteapplication.php:78 actions/editapplication.php:77 +#: actions/showapplication.php:94 +msgid "You are not the owner of this application." +msgstr "أنت لست مالك هذا التطبيق." + +#: actions/deleteapplication.php:102 actions/editapplication.php:127 +#: actions/newapplication.php:110 actions/showapplication.php:118 +#: lib/action.php:1197 +msgid "There was a problem with your session token." +msgstr "" + +#: actions/deleteapplication.php:123 actions/deleteapplication.php:147 +#, fuzzy +msgid "Delete application" +msgstr "عدّل التطبيق" + +#: actions/deleteapplication.php:149 +msgid "" +"Are you sure you want to delete this application? This will clear all data " +"about the application from the database, including all existing user " +"connections." +msgstr "" + +#: actions/deleteapplication.php:156 +#, fuzzy +msgid "Do not delete this application" +msgstr "لا تحذف هذا الإشعار" + +#: actions/deleteapplication.php:160 +#, fuzzy +msgid "Delete this application" +msgstr "احذف هذا الإشعار" + #: 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/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 #: lib/adminpanelaction.php:72 lib/profileformaction.php:63 #: lib/settingsaction.php:72 @@ -796,7 +975,7 @@ msgstr "أمتأكد من أنك تريد حذف هذا الإشعار؟" msgid "Do not delete this notice" msgstr "لا تحذف هذا الإشعار" -#: actions/deletenotice.php:146 lib/noticelist.php:611 +#: actions/deletenotice.php:146 lib/noticelist.php:637 msgid "Delete this notice" msgstr "احذف هذا الإشعار" @@ -924,16 +1103,6 @@ msgstr "استعد التصميمات المبدئية" msgid "Reset back to default" msgstr "ارجع إلى المبدئي" -#: actions/designadminpanel.php:586 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 -#: actions/pathsadminpanel.php:324 actions/profilesettings.php:174 -#: actions/siteadminpanel.php:388 actions/smssettings.php:181 -#: actions/subscriptions.php:203 actions/tagother.php:154 -#: actions/useradminpanel.php:313 lib/designsettings.php:256 -#: lib/groupeditform.php:202 -msgid "Save" -msgstr "أرسل" - #: actions/designadminpanel.php:587 lib/designsettings.php:257 msgid "Save design" msgstr "احفظ التصميم" @@ -946,10 +1115,77 @@ msgstr "هذا الشعار ليس مفضلًا!" msgid "Add to favorites" msgstr "أضف إلى المفضلات" -#: actions/doc.php:69 -msgid "No such document." +#: actions/doc.php:158 +#, fuzzy, php-format +msgid "No such document \"%s\"" msgstr "لا مستند كهذا." +#: actions/editapplication.php:54 +#, fuzzy +msgid "Edit Application" +msgstr "عدّل التطبيق" + +#: actions/editapplication.php:66 +msgid "You must be logged in to edit an application." +msgstr "يجب أن تكون مسجل الدخول لتعدل تطبيقا." + +#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:166 +#: actions/showapplication.php:87 +msgid "No such application." +msgstr "لا تطبيق كهذا." + +#: actions/editapplication.php:161 +msgid "Use this form to edit your application." +msgstr "استخدم هذا النموذج لتعدل تطبيقك." + +#: actions/editapplication.php:177 actions/newapplication.php:159 +msgid "Name is required." +msgstr "الاسم مطلوب." + +#: actions/editapplication.php:180 actions/newapplication.php:165 +msgid "Name is too long (max 255 chars)." +msgstr "الاسم طويل جدا (الأقصى 255 حرفا)." + +#: actions/editapplication.php:183 actions/newapplication.php:162 +msgid "Name already in use. Try another one." +msgstr "" + +#: actions/editapplication.php:186 actions/newapplication.php:168 +msgid "Description is required." +msgstr "الوصف مطلوب." + +#: actions/editapplication.php:194 +msgid "Source URL is too long." +msgstr "" + +#: actions/editapplication.php:200 actions/newapplication.php:185 +msgid "Source URL is not valid." +msgstr "مسار المصدر ليس صحيحا." + +#: actions/editapplication.php:203 actions/newapplication.php:188 +msgid "Organization is required." +msgstr "المنظمة مطلوبة." + +#: actions/editapplication.php:206 actions/newapplication.php:191 +msgid "Organization is too long (max 255 chars)." +msgstr "المنظمة طويلة جدا (الأقصى 255 حرفا)." + +#: actions/editapplication.php:209 actions/newapplication.php:194 +msgid "Organization homepage is required." +msgstr "صفحة المنظمة الرئيسية مطلوبة." + +#: actions/editapplication.php:218 actions/newapplication.php:206 +msgid "Callback is too long." +msgstr "" + +#: actions/editapplication.php:225 actions/newapplication.php:215 +msgid "Callback URL is not valid." +msgstr "" + +#: actions/editapplication.php:258 +msgid "Could not update application." +msgstr "لم يمكن تحديث التطبيق." + #: actions/editgroup.php:56 #, php-format msgid "Edit %s group" @@ -961,9 +1197,8 @@ msgstr "يجب أن تكون والجًا لتنشئ مجموعة." #: 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 "يجب أن تكون إداريًا لتعدّل المجموعة" +msgstr "يجب أن تكون إداريا لتعدل المجموعة." #: actions/editgroup.php:154 msgid "Use this form to edit the group." @@ -978,7 +1213,7 @@ msgstr "" msgid "Could not update group." msgstr "تعذر تحديث المجموعة." -#: actions/editgroup.php:259 classes/User_group.php:390 +#: actions/editgroup.php:259 classes/User_group.php:433 msgid "Could not create aliases." msgstr "تعذّر إنشاء الكنى." @@ -987,7 +1222,6 @@ msgid "Options saved." msgstr "حُفظت الخيارات." #: actions/emailsettings.php:60 -#, fuzzy msgid "Email settings" msgstr "إعدادات البريد الإلكتروني" @@ -1018,14 +1252,14 @@ msgid "" msgstr "" #: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 +#: actions/smssettings.php:126 lib/applicationeditform.php:331 +#: lib/applicationeditform.php:332 msgid "Cancel" msgstr "ألغِ" #: actions/emailsettings.php:121 -#, fuzzy msgid "Email address" -msgstr "عناوين البريد الإلكتروني" +msgstr "عنوان البريد الإلكتروني" #: actions/emailsettings.php:123 msgid "Email address, like \"UserName@example.org\"" @@ -1099,7 +1333,7 @@ msgid "Cannot normalize that email address" msgstr "" #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:157 +#: actions/siteadminpanel.php:143 msgid "Not a valid email address." msgstr "ليس عنوان بريد صالح." @@ -1111,7 +1345,7 @@ msgstr "هذا هو عنوان بريدك الإكتروني سابقًا." msgid "That email address already belongs to another user." msgstr "هذا البريد الإلكتروني ملك مستخدم آخر بالفعل." -#: actions/emailsettings.php:353 actions/imsettings.php:317 +#: actions/emailsettings.php:353 actions/imsettings.php:319 #: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." msgstr "تعذّر إدراج رمز التأكيد." @@ -1147,7 +1381,7 @@ msgstr "أزيل هذا العنوان." #: actions/emailsettings.php:446 actions/smssettings.php:518 msgid "No incoming email address." -msgstr "" +msgstr "لا عنوان بريد إلكتروني وارد." #: actions/emailsettings.php:456 actions/emailsettings.php:478 #: actions/smssettings.php:528 actions/smssettings.php:552 @@ -1170,7 +1404,7 @@ msgstr "هذا الإشعار مفضلة مسبقًا!" msgid "Disfavor favorite" msgstr "ألغِ تفضيل المفضلة" -#: actions/favorited.php:65 lib/popularnoticesection.php:88 +#: actions/favorited.php:65 lib/popularnoticesection.php:91 #: lib/publicgroupnav.php:93 msgid "Popular notices" msgstr "إشعارات مشهورة" @@ -1253,7 +1487,7 @@ msgstr "المستخدم الذي تستمع إليه غير موجود." #: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 msgid "You can use the local subscription!" -msgstr "" +msgstr "تستطيع استخدام الاشتراك المحلي!" #: actions/finishremotesubscribe.php:99 msgid "That user has blocked you from subscribing." @@ -1312,7 +1546,7 @@ msgstr "" msgid "User is not a member of group." msgstr "المستخدم ليس عضوًا في المجموعة." -#: actions/groupblock.php:136 actions/groupmembers.php:314 +#: actions/groupblock.php:136 actions/groupmembers.php:316 msgid "Block user from group" msgstr "امنع المستخدم من المجموعة" @@ -1374,9 +1608,8 @@ msgid "" msgstr "" #: actions/grouplogo.php:178 -#, fuzzy msgid "User without matching profile." -msgstr "ليس للمستخدم ملف شخصي." +msgstr "المستخدم بدون ملف مطابق." #: actions/grouplogo.php:362 msgid "Pick a square area of the image to be the logo." @@ -1396,31 +1629,31 @@ msgid "%s group members" msgstr "أعضاء مجموعة %s" #: actions/groupmembers.php:96 -#, fuzzy, php-format +#, php-format msgid "%1$s group members, page %2$d" -msgstr "مجموعات %s، صفحة %d" +msgstr "%1$s أعضاء المجموعة, الصفحة %2$d" #: actions/groupmembers.php:111 msgid "A list of the users in this group." msgstr "قائمة بمستخدمي هذه المجموعة." -#: actions/groupmembers.php:175 lib/action.php:442 lib/groupnav.php:107 +#: actions/groupmembers.php:175 lib/action.php:448 lib/groupnav.php:107 msgid "Admin" msgstr "إداري" -#: actions/groupmembers.php:346 lib/blockform.php:69 +#: actions/groupmembers.php:348 lib/blockform.php:69 msgid "Block" msgstr "امنع" -#: actions/groupmembers.php:441 +#: actions/groupmembers.php:443 msgid "Make user an admin of the group" msgstr "" -#: actions/groupmembers.php:473 +#: actions/groupmembers.php:475 msgid "Make Admin" msgstr "" -#: actions/groupmembers.php:473 +#: actions/groupmembers.php:475 msgid "Make this user an admin" msgstr "اجعل هذا المستخدم إداريًا" @@ -1496,7 +1729,6 @@ msgid "Error removing the block." msgstr "خطأ أثناء منع الحجب." #: actions/imsettings.php:59 -#, fuzzy msgid "IM settings" msgstr "إعدادات المراسلة الفورية" @@ -1523,7 +1755,6 @@ msgid "" msgstr "" #: actions/imsettings.php:124 -#, fuzzy msgid "IM address" msgstr "عنوان المراسلة الفورية" @@ -1581,6 +1812,11 @@ msgstr "" msgid "That is not your Jabber ID." msgstr "هذه ليست هويتك في جابر." +#: actions/inbox.php:59 +#, php-format +msgid "Inbox for %1$s - page %2$d" +msgstr "" + #: actions/inbox.php:62 #, php-format msgid "Inbox for %s" @@ -1657,7 +1893,7 @@ msgstr "رسالة شخصية" msgid "Optionally add a personal message to the invitation." msgstr "" -#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:237 +#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:236 msgid "Send" msgstr "أرسل" @@ -1699,25 +1935,25 @@ msgstr "" #: actions/joingroup.php:60 msgid "You must be logged in to join a group." -msgstr "" +msgstr "يجب أن تلج لتنضم إلى مجموعة." #: actions/joingroup.php:131 -#, fuzzy, php-format +#, php-format msgid "%1$s joined group %2$s" -msgstr "%s انضم إلى مجموعة %s" +msgstr "%1$s انضم للمجموعة %2$s" #: actions/leavegroup.php:60 msgid "You must be logged in to leave a group." -msgstr "" +msgstr "يجب أن تلج لتغادر مجموعة." #: actions/leavegroup.php:90 lib/command.php:265 msgid "You are not a member of that group." msgstr "لست عضوا في تلك المجموعة." #: actions/leavegroup.php:127 -#, fuzzy, php-format +#, php-format msgid "%1$s left group %2$s" -msgstr "%s انضم إلى مجموعة %s" +msgstr "%1$s ترك المجموعة %2$s" #: actions/login.php:80 actions/otp.php:62 actions/register.php:137 msgid "Already logged in." @@ -1731,7 +1967,7 @@ msgstr "اسم المستخدم أو كلمة السر غير صحيحان." msgid "Error setting user. You are probably not authorized." msgstr "خطأ أثناء ضبط المستخدم. لست مُصرحًا على الأرجح." -#: actions/login.php:188 actions/login.php:241 lib/action.php:460 +#: actions/login.php:188 actions/login.php:241 lib/action.php:466 #: lib/logingroupnav.php:79 msgid "Login" msgstr "لُج" @@ -1740,17 +1976,6 @@ msgstr "لُج" msgid "Login to site" msgstr "لُج إلى الموقع" -#: actions/login.php:230 actions/profilesettings.php:106 -#: actions/register.php:424 actions/showgroup.php:236 actions/tagother.php:94 -#: lib/groupeditform.php:152 lib/userprofile.php:131 -msgid "Nickname" -msgstr "الاسم المستعار" - -#: actions/login.php:233 actions/register.php:429 -#: lib/accountsettingsaction.php:116 -msgid "Password" -msgstr "كلمة السر" - #: actions/login.php:236 actions/register.php:478 msgid "Remember me" msgstr "تذكّرني" @@ -1776,29 +2001,50 @@ msgid "" "(%%action.register%%) a new account." msgstr "" -#: actions/makeadmin.php:91 +#: actions/makeadmin.php:92 msgid "Only an admin can make another user an admin." msgstr "" -#: actions/makeadmin.php:95 +#: actions/makeadmin.php:96 #, php-format msgid "%1$s is already an admin for group \"%2$s\"." msgstr "" -#: actions/makeadmin.php:132 -#, fuzzy, php-format +#: actions/makeadmin.php:133 +#, php-format msgid "Can't get membership record for %1$s in group %2$s." -msgstr "تعذّر إنشاء المجموعة." +msgstr "لم يمكن الحصول على تسجيل العضوية ل%1$s في المجموعة %2$s." -#: actions/makeadmin.php:145 -#, fuzzy, php-format +#: actions/makeadmin.php:146 +#, php-format msgid "Can't make %1$s an admin for group %2$s." -msgstr "تعذّر إنشاء المجموعة." +msgstr "لم يمكن جعل %1$s إداريا للمجموعة %2$s." #: actions/microsummary.php:69 msgid "No current status" msgstr "لا حالة حالية" +#: actions/newapplication.php:52 +#, fuzzy +msgid "New Application" +msgstr "تطبيق جديد" + +#: actions/newapplication.php:64 +msgid "You must be logged in to register an application." +msgstr "يجب أن تكون مسجل الدخول لتسجل تطبيقا." + +#: actions/newapplication.php:143 +msgid "Use this form to register a new application." +msgstr "استخدم هذا النموذج لتسجل تطبيقا جديدا." + +#: actions/newapplication.php:176 +msgid "Source URL is required." +msgstr "" + +#: actions/newapplication.php:258 actions/newapplication.php:267 +msgid "Could not create application." +msgstr "لم يمكن إنشاء التطبيق." + #: actions/newgroup.php:53 msgid "New group" msgstr "مجموعة جديدة" @@ -1813,7 +2059,7 @@ msgstr "رسالة جديدة" #: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:358 msgid "You can't send a message to this user." -msgstr "" +msgstr "لا يمكنك إرسال رسائل إلى هذا المستخدم." #: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:342 #: lib/command.php:475 @@ -1834,9 +2080,9 @@ msgid "Message sent" msgstr "أُرسلت الرسالة" #: actions/newmessage.php:185 -#, fuzzy, php-format +#, php-format msgid "Direct message to %s sent." -msgstr "رسالة مباشرة %s" +msgstr "رسالة مباشرة ل%s تم إرسالها." #: actions/newmessage.php:210 actions/newnotice.php:245 lib/channel.php:170 msgid "Ajax Error" @@ -1856,15 +2102,17 @@ 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 +#, php-format msgid "Search results for \"%1$s\" on %2$s" -msgstr "نتائج البحث عن \"%s\" في %s" +msgstr "نتائج البحث ل\"%1$s\" على %2$s" #: actions/noticesearch.php:121 #, php-format @@ -1903,6 +2151,48 @@ msgstr "أرسل التنبيه" msgid "Nudge sent!" msgstr "أُرسل التنبيه!" +#: actions/oauthappssettings.php:59 +msgid "You must be logged in to list your applications." +msgstr "يجب أن تكون مسجل الدخول لعرض تطبيقاتك." + +#: actions/oauthappssettings.php:74 +msgid "OAuth applications" +msgstr "تطبيقات OAuth" + +#: actions/oauthappssettings.php:85 +msgid "Applications you have registered" +msgstr "" + +#: actions/oauthappssettings.php:135 +#, php-format +msgid "You have not registered any applications yet." +msgstr "" + +#: actions/oauthconnectionssettings.php:72 +msgid "Connected applications" +msgstr "" + +#: actions/oauthconnectionssettings.php:83 +msgid "You have allowed the following applications to access you account." +msgstr "" + +#: actions/oauthconnectionssettings.php:175 +msgid "You are not a user of that application." +msgstr "لست مستخدما لهذا التطبيق." + +#: actions/oauthconnectionssettings.php:186 +msgid "Unable to revoke access for app: " +msgstr "" + +#: actions/oauthconnectionssettings.php:198 +#, php-format +msgid "You have not authorized any applications to use your account." +msgstr "" + +#: actions/oauthconnectionssettings.php:211 +msgid "Developers can edit the registration settings for their applications " +msgstr "" + #: actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" msgstr "" @@ -1910,7 +2200,7 @@ msgstr "" #: actions/oembed.php:86 actions/shownotice.php:180 #, php-format msgid "%1$s's status on %2$s" -msgstr "" +msgstr "حالة %1$s في يوم %2$s" #: actions/oembed.php:157 msgid "content type " @@ -1920,8 +2210,8 @@ msgstr "نوع المحتوى " msgid "Only " msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1033 -#: lib/api.php:1061 lib/api.php:1171 +#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 +#: lib/api.php:1068 lib/api.php:1177 msgid "Not a supported data format." msgstr "ليس نسق بيانات مدعوم." @@ -1934,7 +2224,7 @@ msgid "Notice Search" msgstr "بحث الإشعارات" #: actions/othersettings.php:60 -msgid "Other Settings" +msgid "Other settings" msgstr "إعدادات أخرى" #: actions/othersettings.php:71 @@ -1966,29 +2256,29 @@ msgid "URL shortening service is too long (max 50 chars)." msgstr "" #: actions/otp.php:69 -#, fuzzy msgid "No user ID specified." -msgstr "لا مجموعة مُحدّدة." +msgstr "لا هوية مستخدم محددة." #: actions/otp.php:83 -#, fuzzy msgid "No login token specified." -msgstr "لا ملاحظة محددة." +msgstr "لا محتوى دخول محدد." #: actions/otp.php:90 -#, fuzzy msgid "No login token requested." -msgstr "لا طلب استيثاق!" +msgstr "لا طلب استيثاق." #: actions/otp.php:95 -#, fuzzy msgid "Invalid login token specified." -msgstr "لا ملاحظة محددة." +msgstr "توكن دخول غير صحيح محدد." #: actions/otp.php:104 -#, fuzzy msgid "Login token expired." -msgstr "لُج إلى الموقع" +msgstr "توكن الدخول انتهى." + +#: actions/outbox.php:58 +#, php-format +msgid "Outbox for %1$s - page %2$d" +msgstr "" #: actions/outbox.php:61 #, php-format @@ -2060,7 +2350,7 @@ msgstr "تعذّر حفظ كلمة السر الجديدة." msgid "Password saved." msgstr "حُفظت كلمة السر." -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:326 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:331 msgid "Paths" msgstr "المسارات" @@ -2068,133 +2358,148 @@ msgstr "المسارات" msgid "Path and server settings for this StatusNet site." msgstr "" -#: actions/pathsadminpanel.php:140 +#: actions/pathsadminpanel.php:157 #, php-format msgid "Theme directory not readable: %s" msgstr "لا يمكن قراءة دليل السمات: %s" -#: actions/pathsadminpanel.php:146 +#: actions/pathsadminpanel.php:163 #, php-format msgid "Avatar directory not writable: %s" msgstr "لا يمكن الكتابة في دليل الأفتارات: %s" -#: actions/pathsadminpanel.php:152 +#: actions/pathsadminpanel.php:169 #, php-format msgid "Background directory not writable: %s" msgstr "لا يمكن الكتابة في دليل الخلفيات: %s" -#: actions/pathsadminpanel.php:160 +#: actions/pathsadminpanel.php:177 #, php-format msgid "Locales directory not readable: %s" msgstr "لا يمكن قراءة دليل المحليات: %s" -#: actions/pathsadminpanel.php:166 +#: actions/pathsadminpanel.php:183 msgid "Invalid SSL server. The maximum length is 255 characters." msgstr "" -#: actions/pathsadminpanel.php:217 actions/siteadminpanel.php:58 +#: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58 #: lib/adminpanelaction.php:311 msgid "Site" msgstr "الموقع" -#: actions/pathsadminpanel.php:221 +#: actions/pathsadminpanel.php:238 +msgid "Server" +msgstr "خادوم" + +#: actions/pathsadminpanel.php:238 +msgid "Site's server hostname." +msgstr "اسم مضيف خادوم الموقع." + +#: actions/pathsadminpanel.php:242 msgid "Path" msgstr "المسار" -#: actions/pathsadminpanel.php:221 +#: actions/pathsadminpanel.php:242 msgid "Site path" msgstr "مسار الموقع" -#: actions/pathsadminpanel.php:225 +#: actions/pathsadminpanel.php:246 msgid "Path to locales" msgstr "مسار المحليات" -#: actions/pathsadminpanel.php:225 +#: actions/pathsadminpanel.php:246 msgid "Directory path to locales" msgstr "مسار دليل المحليات" -#: actions/pathsadminpanel.php:232 +#: actions/pathsadminpanel.php:250 +msgid "Fancy URLs" +msgstr "مسارات فاخرة" + +#: actions/pathsadminpanel.php:252 +msgid "Use fancy (more readable and memorable) URLs?" +msgstr "أأستخدم مسارات فاخرة (يمكن قراءتها وتذكرها بسهولة أكبر)؟" + +#: actions/pathsadminpanel.php:259 msgid "Theme" msgstr "السمة" -#: actions/pathsadminpanel.php:237 +#: actions/pathsadminpanel.php:264 msgid "Theme server" msgstr "خادوم السمات" -#: actions/pathsadminpanel.php:241 +#: actions/pathsadminpanel.php:268 msgid "Theme path" msgstr "مسار السمات" -#: actions/pathsadminpanel.php:245 +#: actions/pathsadminpanel.php:272 msgid "Theme directory" msgstr "دليل السمات" -#: actions/pathsadminpanel.php:252 +#: actions/pathsadminpanel.php:279 msgid "Avatars" msgstr "أفتارات" -#: actions/pathsadminpanel.php:257 +#: actions/pathsadminpanel.php:284 msgid "Avatar server" msgstr "خادوم الأفتارات" -#: actions/pathsadminpanel.php:261 +#: actions/pathsadminpanel.php:288 msgid "Avatar path" msgstr "مسار الأفتارات" -#: actions/pathsadminpanel.php:265 +#: actions/pathsadminpanel.php:292 msgid "Avatar directory" msgstr "دليل الأفتار." -#: actions/pathsadminpanel.php:274 +#: actions/pathsadminpanel.php:301 msgid "Backgrounds" msgstr "خلفيات" -#: actions/pathsadminpanel.php:278 +#: actions/pathsadminpanel.php:305 msgid "Background server" msgstr "خادوم الخلفيات" -#: actions/pathsadminpanel.php:282 +#: actions/pathsadminpanel.php:309 msgid "Background path" msgstr "مسار الخلفيات" -#: actions/pathsadminpanel.php:286 +#: actions/pathsadminpanel.php:313 msgid "Background directory" msgstr "دليل الخلفيات" -#: actions/pathsadminpanel.php:293 +#: actions/pathsadminpanel.php:320 msgid "SSL" msgstr "SSL" -#: actions/pathsadminpanel.php:296 actions/siteadminpanel.php:346 +#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 msgid "Never" msgstr "مطلقا" -#: actions/pathsadminpanel.php:297 +#: actions/pathsadminpanel.php:324 msgid "Sometimes" msgstr "أحيانًا" -#: actions/pathsadminpanel.php:298 +#: actions/pathsadminpanel.php:325 msgid "Always" msgstr "دائمًا" -#: actions/pathsadminpanel.php:302 +#: actions/pathsadminpanel.php:329 msgid "Use SSL" msgstr "استخدم SSL" -#: actions/pathsadminpanel.php:303 +#: actions/pathsadminpanel.php:330 msgid "When to use SSL" msgstr "" -#: actions/pathsadminpanel.php:308 -#, fuzzy +#: actions/pathsadminpanel.php:335 msgid "SSL server" -msgstr "خادوم SSL" +msgstr "خادم SSL" -#: actions/pathsadminpanel.php:309 +#: actions/pathsadminpanel.php:336 msgid "Server to direct SSL requests to" msgstr "" -#: actions/pathsadminpanel.php:325 +#: actions/pathsadminpanel.php:352 msgid "Save paths" msgstr "احفظ المسارات" @@ -2235,7 +2540,7 @@ msgstr "إعدادات الملف الشخصي" #: actions/profilesettings.php:71 msgid "" "You can update your personal profile info here so people know more about you." -msgstr "" +msgstr "بإمكانك تحديث بيانات ملفك الشخصي ليعرف عنك الناس أكثر." #: actions/profilesettings.php:99 msgid "Profile information" @@ -2252,18 +2557,18 @@ msgid "Full name" msgstr "الاسم الكامل" #: actions/profilesettings.php:115 actions/register.php:453 -#: lib/groupeditform.php:161 +#: lib/applicationeditform.php:228 lib/groupeditform.php:161 msgid "Homepage" msgstr "الصفحة الرئيسية" #: actions/profilesettings.php:117 actions/register.php:455 msgid "URL of your homepage, blog, or profile on another site" -msgstr "" +msgstr "مسار صفحتك الرئيسية أو مدونتك أو ملفك الشخصي على موقع آخر" #: actions/profilesettings.php:122 actions/register.php:461 #, php-format msgid "Describe yourself and your interests in %d chars" -msgstr "" +msgstr "تكلم عن نفسك واهتمامتك في %d حرف" #: actions/profilesettings.php:125 actions/register.php:464 msgid "Describe yourself and your interests" @@ -2275,18 +2580,18 @@ msgstr "السيرة" #: actions/profilesettings.php:132 actions/register.php:471 #: actions/showgroup.php:256 actions/tagother.php:112 -#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:164 msgid "Location" msgstr "الموقع" #: actions/profilesettings.php:134 actions/register.php:473 msgid "Where you are, like \"City, State (or Region), Country\"" -msgstr "" +msgstr "مكان تواجدك، على سبيل المثال \"المدينة، الولاية (أو المنطقة)، الدولة\"" #: actions/profilesettings.php:138 msgid "Share my current location when posting notices" -msgstr "" +msgstr "شارك مكاني الحالي عند إرسال إشعارات" #: actions/profilesettings.php:145 actions/tagother.php:149 #: actions/tagother.php:209 lib/subscriptionlist.php:106 @@ -2298,8 +2603,9 @@ msgstr "الوسوم" msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" +"سِم نفسك (حروف وأرقام و \"-\" و \".\" و \"_\")، افصلها بفاصلة (',') أو مسافة." -#: actions/profilesettings.php:151 actions/siteadminpanel.php:294 +#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 msgid "Language" msgstr "اللغة" @@ -2318,14 +2624,14 @@ msgstr "ما المنطقة الزمنية التي تتواجد فيها عاد #: actions/profilesettings.php:167 msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)" -msgstr "" +msgstr "اشترك تلقائيًا بأي شخص يشترك بي (يفضل أن يستخدم لغير البشر)" #: actions/profilesettings.php:228 actions/register.php:223 #, php-format msgid "Bio is too long (max %d chars)." msgstr "" -#: actions/profilesettings.php:235 actions/siteadminpanel.php:164 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 msgid "Timezone not selected." msgstr "لم تُختر المنطقة الزمنية." @@ -2338,23 +2644,23 @@ msgstr "" msgid "Invalid tag: \"%s\"" msgstr "وسم غير صالح: \"%s\"" -#: actions/profilesettings.php:302 +#: actions/profilesettings.php:306 msgid "Couldn't update user for autosubscribe." msgstr "" -#: actions/profilesettings.php:359 +#: actions/profilesettings.php:363 msgid "Couldn't save location prefs." msgstr "لم يمكن حفظ تفضيلات الموقع." -#: actions/profilesettings.php:371 +#: actions/profilesettings.php:375 msgid "Couldn't save profile." msgstr "تعذّر حفظ الملف الشخصي." -#: actions/profilesettings.php:379 +#: actions/profilesettings.php:383 msgid "Couldn't save tags." msgstr "تعذّر حفظ الوسوم." -#: actions/profilesettings.php:387 lib/adminpanelaction.php:137 +#: actions/profilesettings.php:391 lib/adminpanelaction.php:137 msgid "Settings saved." msgstr "حُفظت الإعدادات." @@ -2376,36 +2682,36 @@ msgstr "المسار الزمني العام، صفحة %d" msgid "Public timeline" msgstr "المسار الزمني العام" -#: actions/public.php:151 +#: actions/public.php:159 msgid "Public Stream Feed (RSS 1.0)" msgstr "" -#: actions/public.php:155 +#: actions/public.php:163 msgid "Public Stream Feed (RSS 2.0)" msgstr "" -#: actions/public.php:159 +#: actions/public.php:167 msgid "Public Stream Feed (Atom)" msgstr "" -#: actions/public.php:179 +#: actions/public.php:187 #, php-format msgid "" "This is the public timeline for %%site.name%% but no one has posted anything " "yet." msgstr "" -#: actions/public.php:182 +#: actions/public.php:190 msgid "Be the first to post!" msgstr "كن أول من يُرسل!" -#: actions/public.php:186 +#: actions/public.php:194 #, php-format msgid "" "Why not [register an account](%%action.register%%) and be the first to post!" msgstr "" -#: actions/public.php:233 +#: actions/public.php:241 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2418,7 +2724,7 @@ msgstr "" "الآن](%%action.register%%) لتشارك اشعاراتك مع أصدقائك وعائلتك وزملائك! " "([اقرأ المزيد](%%doc.help%%))" -#: actions/public.php:238 +#: actions/public.php:246 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2453,7 +2759,7 @@ msgid "" "one!" msgstr "" -#: actions/publictagcloud.php:131 +#: actions/publictagcloud.php:134 msgid "Tag cloud" msgstr "سحابة الوسوم" @@ -2589,7 +2895,7 @@ msgstr "عذرا، رمز دعوة غير صالح." msgid "Registration successful" msgstr "نجح التسجيل" -#: actions/register.php:114 actions/register.php:503 lib/action.php:457 +#: actions/register.php:114 actions/register.php:503 lib/action.php:463 #: lib/logingroupnav.php:85 msgid "Register" msgstr "سجّل" @@ -2629,7 +2935,7 @@ msgid "Same as password above. Required." msgstr "نفس كلمة السر أعلاه. مطلوب." #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:270 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 msgid "Email" msgstr "البريد الإلكتروني" @@ -2713,7 +3019,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:365 +#: lib/userprofile.php:368 msgid "Subscribe" msgstr "اشترك" @@ -2735,7 +3041,7 @@ msgstr "" #: actions/repeat.php:57 msgid "Only logged-in users can repeat notices." -msgstr "" +msgstr "يستطيع المستخدمون الوالجون وحدهم تكرار الإشعارات." #: actions/repeat.php:64 actions/repeat.php:71 msgid "No notice specified." @@ -2749,7 +3055,7 @@ msgstr "لا يمكنك تكرار ملاحظتك الشخصية." msgid "You already repeated that notice." msgstr "أنت كررت هذه الملاحظة بالفعل." -#: actions/repeat.php:114 lib/noticelist.php:629 +#: actions/repeat.php:114 lib/noticelist.php:656 msgid "Repeated" msgstr "مكرر" @@ -2763,6 +3069,11 @@ msgstr "مكرر!" msgid "Replies to %s" msgstr "الردود على %s" +#: actions/replies.php:127 +#, fuzzy, php-format +msgid "Replies to %1$s, page %2$d" +msgstr "الردود على %s" + #: actions/replies.php:144 #, php-format msgid "Replies feed for %s (RSS 1.0)" @@ -2804,6 +3115,10 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "" +#: actions/rsd.php:146 actions/version.php:157 +msgid "StatusNet" +msgstr "ستاتس نت" + #: actions/sandbox.php:65 actions/unsandbox.php:65 msgid "You cannot sandbox users on this site." msgstr "" @@ -2812,6 +3127,121 @@ msgstr "" msgid "User is already sandboxed." msgstr "" +#: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:336 +msgid "Sessions" +msgstr "الجلسات" + +#: actions/sessionsadminpanel.php:65 +#, fuzzy +msgid "Session settings for this StatusNet site." +msgstr "الإعدادات الأساسية لموقع StatusNet هذا." + +#: actions/sessionsadminpanel.php:175 +msgid "Handle sessions" +msgstr "" + +#: actions/sessionsadminpanel.php:177 +msgid "Whether to handle sessions ourselves." +msgstr "" + +#: actions/sessionsadminpanel.php:181 +msgid "Session debugging" +msgstr "تنقيح الجلسة" + +#: actions/sessionsadminpanel.php:183 +msgid "Turn on debugging output for sessions." +msgstr "مكّن تنقيح مُخرجات الجلسة." + +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/useradminpanel.php:293 +msgid "Save site settings" +msgstr "اذف إعدادت الموقع" + +#: actions/showapplication.php:82 +msgid "You must be logged in to view an application." +msgstr "يجب أن تكون مسجل الدخول لرؤية تطبيق." + +#: actions/showapplication.php:157 +msgid "Application profile" +msgstr "" + +#: actions/showapplication.php:159 lib/applicationeditform.php:180 +msgid "Icon" +msgstr "أيقونة" + +#: actions/showapplication.php:169 actions/version.php:195 +#: lib/applicationeditform.php:195 +msgid "Name" +msgstr "الاسم" + +#: actions/showapplication.php:178 lib/applicationeditform.php:222 +msgid "Organization" +msgstr "المنظمة" + +#: actions/showapplication.php:187 actions/version.php:198 +#: lib/applicationeditform.php:209 lib/groupeditform.php:172 +msgid "Description" +msgstr "الوصف" + +#: actions/showapplication.php:192 actions/showgroup.php:429 +#: lib/profileaction.php:174 +msgid "Statistics" +msgstr "إحصاءات" + +#: actions/showapplication.php:203 +#, php-format +msgid "Created by %1$s - %2$s access by default - %3$d users" +msgstr "" + +#: actions/showapplication.php:213 +msgid "Application actions" +msgstr "" + +#: actions/showapplication.php:236 +msgid "Reset key & secret" +msgstr "" + +#: actions/showapplication.php:261 +msgid "Application info" +msgstr "" + +#: actions/showapplication.php:263 +msgid "Consumer key" +msgstr "" + +#: actions/showapplication.php:268 +msgid "Consumer secret" +msgstr "" + +#: actions/showapplication.php:273 +msgid "Request token URL" +msgstr "" + +#: actions/showapplication.php:278 +msgid "Access token URL" +msgstr "" + +#: actions/showapplication.php:283 +msgid "Authorize URL" +msgstr "اسمح بالمسار" + +#: actions/showapplication.php:288 +msgid "" +"Note: We support HMAC-SHA1 signatures. We do not support the plaintext " +"signature method." +msgstr "" + +#: actions/showapplication.php:309 +#, fuzzy +msgid "Are you sure you want to reset your consumer key and secret?" +msgstr "أمتأكد من أنك تريد حذف هذا الإشعار؟" + +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%1$s's favorite notices, page %2$d" +msgstr "إشعارات %s المُفضلة" + #: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "" @@ -2865,17 +3295,22 @@ msgstr "إنها إحدى وسائل مشاركة ما تحب." msgid "%s group" msgstr "مجموعة %s" +#: actions/showgroup.php:84 +#, fuzzy, php-format +msgid "%1$s group, page %2$d" +msgstr "%1$s أعضاء المجموعة, الصفحة %2$d" + #: actions/showgroup.php:218 msgid "Group profile" msgstr "ملف المجموعة الشخصي" #: actions/showgroup.php:263 actions/tagother.php:118 -#: actions/userauthorization.php:167 lib/userprofile.php:177 +#: actions/userauthorization.php:175 lib/userprofile.php:177 msgid "URL" msgstr "مسار" #: actions/showgroup.php:274 actions/tagother.php:128 -#: actions/userauthorization.php:179 lib/userprofile.php:194 +#: actions/userauthorization.php:187 lib/userprofile.php:194 msgid "Note" msgstr "ملاحظة" @@ -2921,10 +3356,6 @@ msgstr "(لا شيء)" msgid "All members" msgstr "جميع الأعضاء" -#: actions/showgroup.php:429 lib/profileaction.php:174 -msgid "Statistics" -msgstr "إحصاءات" - #: actions/showgroup.php:432 msgid "Created" msgstr "أنشئ" @@ -2979,6 +3410,11 @@ msgstr "حُذف الإشعار." msgid " tagged %s" msgstr "" +#: actions/showstream.php:79 +#, fuzzy, php-format +msgid "%1$s, page %2$d" +msgstr "%1$s والأصدقاء, الصفحة %2$d" + #: actions/showstream.php:122 #, php-format msgid "Notice feed for %1$s tagged %2$s (RSS 1.0)" @@ -3004,25 +3440,25 @@ msgstr "" msgid "FOAF for %s" msgstr "" -#: actions/showstream.php:191 +#: actions/showstream.php:200 #, php-format msgid "This is the timeline for %1$s but %2$s hasn't posted anything yet." msgstr "" -#: actions/showstream.php:196 +#: actions/showstream.php:205 msgid "" "Seen anything interesting recently? You haven't posted any notices yet, now " "would be a good time to start :)" msgstr "" -#: actions/showstream.php:198 +#: actions/showstream.php:207 #, php-format msgid "" "You can try to nudge %1$s or [post something to his or her attention](%%%%" "action.newnotice%%%%?status_textarea=%2$s)." msgstr "" -#: actions/showstream.php:234 +#: actions/showstream.php:243 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3031,7 +3467,7 @@ msgid "" "follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showstream.php:239 +#: actions/showstream.php:248 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3039,10 +3475,10 @@ msgid "" "[StatusNet](http://status.net/) tool. " msgstr "" -#: actions/showstream.php:313 +#: actions/showstream.php:305 #, php-format msgid "Repeat of %s" -msgstr "تكرارات %s" +msgstr "تكرار ل%s" #: actions/silence.php:65 actions/unsilence.php:65 msgid "You cannot silence users on this site." @@ -3056,198 +3492,144 @@ msgstr "المستخدم مسكت من قبل." msgid "Basic settings for this StatusNet site." msgstr "الإعدادات الأساسية لموقع StatusNet هذا." -#: actions/siteadminpanel.php:146 +#: actions/siteadminpanel.php:132 msgid "Site name must have non-zero length." msgstr "يجب ألا يكون طول اسم الموقع صفرًا." -#: actions/siteadminpanel.php:154 -#, fuzzy +#: actions/siteadminpanel.php:140 msgid "You must have a valid contact email address." -msgstr "يجب أن تملك عنوان بريد إلكتروني صالح للاتصال" +msgstr "يجب أن تملك عنوان بريد إلكتروني صحيح." -#: actions/siteadminpanel.php:172 -#, fuzzy, php-format +#: actions/siteadminpanel.php:158 +#, php-format msgid "Unknown language \"%s\"." -msgstr "لغة غير معروفة \"%s\"" +msgstr "لغة غير معروفة \"%s\"." -#: actions/siteadminpanel.php:179 +#: actions/siteadminpanel.php:165 msgid "Invalid snapshot report URL." msgstr "" -#: actions/siteadminpanel.php:185 +#: actions/siteadminpanel.php:171 msgid "Invalid snapshot run value." msgstr "" -#: actions/siteadminpanel.php:191 +#: actions/siteadminpanel.php:177 msgid "Snapshot frequency must be a number." msgstr "" -#: actions/siteadminpanel.php:197 +#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "حد النص الأدنى هو 140 حرفًا." -#: actions/siteadminpanel.php:203 +#: actions/siteadminpanel.php:189 msgid "Dupe limit must 1 or more seconds." msgstr "" -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:239 msgid "General" msgstr "عام" -#: actions/siteadminpanel.php:256 +#: actions/siteadminpanel.php:242 msgid "Site name" msgstr "اسم الموقع" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:243 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "اسم موقعك، \"التدوين المصغر لشركتك\" مثلا" -#: actions/siteadminpanel.php:261 +#: actions/siteadminpanel.php:247 msgid "Brought by" msgstr "" -#: actions/siteadminpanel.php:262 +#: actions/siteadminpanel.php:248 msgid "Text used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:266 +#: actions/siteadminpanel.php:252 msgid "Brought by URL" msgstr "" -#: actions/siteadminpanel.php:267 +#: actions/siteadminpanel.php:253 msgid "URL used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:271 +#: actions/siteadminpanel.php:257 msgid "Contact email address for your site" msgstr "عنوان البريد الإلكتروني للاتصال بموقعك" -#: actions/siteadminpanel.php:277 +#: actions/siteadminpanel.php:263 msgid "Local" msgstr "محلي" -#: actions/siteadminpanel.php:288 +#: actions/siteadminpanel.php:274 msgid "Default timezone" msgstr "المنطقة الزمنية المبدئية" -#: actions/siteadminpanel.php:289 +#: actions/siteadminpanel.php:275 msgid "Default timezone for the site; usually UTC." msgstr "المنطقة الزمنية المبدئية للموقع؛ ت‌ع‌م عادة." -#: actions/siteadminpanel.php:295 +#: actions/siteadminpanel.php:281 msgid "Default site language" msgstr "لغة الموقع المبدئية" -#: actions/siteadminpanel.php:303 -msgid "URLs" -msgstr "مسارات" - -#: actions/siteadminpanel.php:306 -msgid "Server" -msgstr "خادوم" - -#: actions/siteadminpanel.php:306 -msgid "Site's server hostname." -msgstr "اسم مضيف خادوم الموقع." - -#: actions/siteadminpanel.php:310 -msgid "Fancy URLs" -msgstr "مسارات فاخرة" - -#: actions/siteadminpanel.php:312 -msgid "Use fancy (more readable and memorable) URLs?" -msgstr "أأستخدم مسارات فاخرة (يمكن قراءتها وتذكرها بسهولة أكبر)؟" - -#: actions/siteadminpanel.php:318 -msgid "Access" -msgstr "نفاذ" - -#: actions/siteadminpanel.php:321 -msgid "Private" -msgstr "خاص" - -#: actions/siteadminpanel.php:323 -msgid "Prohibit anonymous users (not logged in) from viewing site?" -msgstr "أأمنع المستخدمين المجهولين (غير الوالجين) من عرض الموقع؟" - -#: actions/siteadminpanel.php:327 -msgid "Invite only" -msgstr "بالدعوة فقط" - -#: actions/siteadminpanel.php:329 -msgid "Make registration invitation only." -msgstr "" - -#: actions/siteadminpanel.php:333 -msgid "Closed" -msgstr "مُغلق" - -#: actions/siteadminpanel.php:335 -msgid "Disable new registrations." -msgstr "عطّل التسجيل الجديد." - -#: actions/siteadminpanel.php:341 +#: actions/siteadminpanel.php:289 msgid "Snapshots" msgstr "" -#: actions/siteadminpanel.php:344 +#: actions/siteadminpanel.php:292 msgid "Randomly during Web hit" msgstr "" -#: actions/siteadminpanel.php:345 +#: actions/siteadminpanel.php:293 msgid "In a scheduled job" msgstr "في مهمة مُجدولة" -#: actions/siteadminpanel.php:347 +#: actions/siteadminpanel.php:295 msgid "Data snapshots" msgstr "" -#: actions/siteadminpanel.php:348 +#: actions/siteadminpanel.php:296 msgid "When to send statistical data to status.net servers" msgstr "" -#: actions/siteadminpanel.php:353 +#: actions/siteadminpanel.php:301 msgid "Frequency" msgstr "التكرار" -#: actions/siteadminpanel.php:354 +#: actions/siteadminpanel.php:302 msgid "Snapshots will be sent once every N web hits" msgstr "" -#: actions/siteadminpanel.php:359 +#: actions/siteadminpanel.php:307 msgid "Report URL" msgstr "بلّغ عن المسار" -#: actions/siteadminpanel.php:360 +#: actions/siteadminpanel.php:308 msgid "Snapshots will be sent to this URL" msgstr "" -#: actions/siteadminpanel.php:367 +#: actions/siteadminpanel.php:315 msgid "Limits" msgstr "الحدود" -#: actions/siteadminpanel.php:370 +#: actions/siteadminpanel.php:318 msgid "Text limit" msgstr "حد النص" -#: actions/siteadminpanel.php:370 +#: actions/siteadminpanel.php:318 msgid "Maximum number of characters for notices." msgstr "أقصى عدد للحروف في الإشعارات." -#: actions/siteadminpanel.php:374 +#: actions/siteadminpanel.php:322 msgid "Dupe limit" msgstr "" -#: actions/siteadminpanel.php:374 +#: actions/siteadminpanel.php:322 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" -#: actions/siteadminpanel.php:388 actions/useradminpanel.php:313 -msgid "Save site settings" -msgstr "اذف إعدادت الموقع" - #: actions/smssettings.php:58 -#, fuzzy msgid "SMS settings" msgstr "إعدادات الرسائل القصيرة" @@ -3277,9 +3659,8 @@ msgid "Enter the code you received on your phone." msgstr "" #: actions/smssettings.php:138 -#, fuzzy msgid "SMS phone number" -msgstr "لا رقم هاتف." +msgstr "رقم هاتف SMS" #: actions/smssettings.php:140 msgid "Phone number, no punctuation or spaces, with area code" @@ -3344,15 +3725,25 @@ msgstr "" msgid "You are not subscribed to that profile." msgstr "" -#: actions/subedit.php:83 +#: actions/subedit.php:83 classes/Subscription.php:89 +#: classes/Subscription.php:116 msgid "Could not save subscription." msgstr "تعذّر حفظ الاشتراك." -#: actions/subscribe.php:55 -msgid "Not a local user." -msgstr "ليس مُستخدمًا محليًا." +#: actions/subscribe.php:77 +msgid "This action only accepts POST requests." +msgstr "" -#: actions/subscribe.php:69 +#: actions/subscribe.php:107 +#, fuzzy +msgid "No such profile." +msgstr "لا ملف كهذا." + +#: actions/subscribe.php:117 +msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." +msgstr "" + +#: actions/subscribe.php:145 msgid "Subscribed" msgstr "مُشترك" @@ -3362,9 +3753,9 @@ msgid "%s subscribers" msgstr "مشتركو %s" #: actions/subscribers.php:52 -#, fuzzy, php-format +#, php-format msgid "%1$s subscribers, page %2$d" -msgstr "مشتركو %s، الصفحة %d" +msgstr "مشتركو %1$s, الصفحة %2$d" #: actions/subscribers.php:63 msgid "These are the people who listen to your notices." @@ -3399,9 +3790,9 @@ msgid "%s subscriptions" msgstr "اشتراكات %s" #: actions/subscriptions.php:54 -#, fuzzy, php-format +#, php-format msgid "%1$s subscriptions, page %2$d" -msgstr "اشتراكات %s، الصفحة %d" +msgstr "اشتراكات%1$s, الصفحة %2$d" #: actions/subscriptions.php:65 msgid "These are the people whose notices you listen to." @@ -3412,7 +3803,7 @@ msgstr "هؤلاء الأشخاص الذي تستمع إليهم." msgid "These are the people whose notices %s listens to." msgstr "هؤلاء الأشخاص الذي يستمع %s إليهم." -#: actions/subscriptions.php:121 +#: actions/subscriptions.php:126 #, php-format msgid "" "You're not listening to anyone's notices right now, try subscribing to " @@ -3422,19 +3813,24 @@ msgid "" "automatically subscribe to people you already follow there." msgstr "" -#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#: actions/subscriptions.php:128 actions/subscriptions.php:132 #, php-format msgid "%s is not listening to anyone." msgstr "" -#: actions/subscriptions.php:194 +#: actions/subscriptions.php:199 msgid "Jabber" msgstr "جابر" -#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:204 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "رسائل قصيرة" +#: actions/tag.php:68 +#, fuzzy, php-format +msgid "Notices tagged with %1$s, page %2$d" +msgstr "الإشعارات الموسومة ب%s" + #: actions/tag.php:86 #, php-format msgid "Notice feed for tag %s (RSS 1.0)" @@ -3463,7 +3859,8 @@ msgstr "" msgid "User profile" msgstr "ملف المستخدم الشخصي" -#: actions/tagother.php:81 lib/userprofile.php:102 +#: actions/tagother.php:81 actions/userauthorization.php:132 +#: lib/userprofile.php:102 msgid "Photo" msgstr "صورة" @@ -3518,7 +3915,7 @@ msgstr "" msgid "Unsubscribed" msgstr "" -#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#: actions/updateprofile.php:62 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -3533,84 +3930,64 @@ msgstr "المستخدم" msgid "User settings for this StatusNet site." msgstr "" -#: actions/useradminpanel.php:149 +#: actions/useradminpanel.php:148 msgid "Invalid bio limit. Must be numeric." msgstr "" -#: actions/useradminpanel.php:155 +#: actions/useradminpanel.php:154 msgid "Invalid welcome text. Max length is 255 characters." msgstr "رسالة ترحيب غير صالحة. أقصى طول هو 255 حرف." -#: actions/useradminpanel.php:165 +#: actions/useradminpanel.php:164 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 +#: actions/useradminpanel.php:217 lib/accountsettingsaction.php:108 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "الملف الشخصي" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:221 msgid "Bio Limit" msgstr "حد السيرة" -#: actions/useradminpanel.php:223 +#: actions/useradminpanel.php:222 msgid "Maximum length of a profile bio in characters." msgstr "" -#: actions/useradminpanel.php:231 +#: actions/useradminpanel.php:230 msgid "New users" msgstr "مستخدمون جدد" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:234 msgid "New user welcome" msgstr "ترحيب المستخدمين الجدد" -#: actions/useradminpanel.php:236 +#: actions/useradminpanel.php:235 msgid "Welcome text for new users (Max 255 chars)." msgstr "نص الترحيب بالمستخدمين الجدد (255 حرفًا كحد أقصى)." -#: actions/useradminpanel.php:241 +#: actions/useradminpanel.php:240 msgid "Default subscription" msgstr "الاشتراك المبدئي" -#: actions/useradminpanel.php:242 +#: actions/useradminpanel.php:241 msgid "Automatically subscribe new users to this user." msgstr "أشرك المستخدمين الجدد بهذا المستخدم تلقائيًا." -#: actions/useradminpanel.php:251 +#: actions/useradminpanel.php:250 msgid "Invitations" msgstr "الدعوات" -#: actions/useradminpanel.php:256 +#: actions/useradminpanel.php:255 msgid "Invitations enabled" msgstr "الدعوات مُفعلة" -#: actions/useradminpanel.php:258 +#: actions/useradminpanel.php:257 msgid "Whether to allow users to invite new users." msgstr "" -#: actions/useradminpanel.php:265 -msgid "Sessions" -msgstr "الجلسات" - -#: actions/useradminpanel.php:270 -msgid "Handle sessions" -msgstr "" - -#: actions/useradminpanel.php:272 -msgid "Whether to handle sessions ourselves." -msgstr "" - -#: actions/useradminpanel.php:276 -msgid "Session debugging" -msgstr "تنقيح الجلسة" - -#: actions/useradminpanel.php:278 -msgid "Turn on debugging output for sessions." -msgstr "مكّن تنقيح مُخرجات الجلسة." - #: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "" @@ -3622,84 +3999,84 @@ msgid "" "click “Reject”." msgstr "" -#: actions/userauthorization.php:188 actions/version.php:165 +#: actions/userauthorization.php:196 actions/version.php:165 msgid "License" msgstr "الرخصة" -#: actions/userauthorization.php:209 +#: actions/userauthorization.php:217 msgid "Accept" msgstr "اقبل" -#: actions/userauthorization.php:210 lib/subscribeform.php:115 +#: actions/userauthorization.php:218 lib/subscribeform.php:115 #: lib/subscribeform.php:139 msgid "Subscribe to this user" msgstr "اشترك بهذا المستخدم" -#: actions/userauthorization.php:211 +#: actions/userauthorization.php:219 msgid "Reject" msgstr "ارفض" -#: actions/userauthorization.php:212 +#: actions/userauthorization.php:220 msgid "Reject this subscription" msgstr "ارفض هذا الاشتراك" -#: actions/userauthorization.php:225 +#: actions/userauthorization.php:232 msgid "No authorization request!" msgstr "لا طلب استيثاق!" -#: actions/userauthorization.php:247 +#: actions/userauthorization.php:254 msgid "Subscription authorized" msgstr "" -#: actions/userauthorization.php:249 +#: actions/userauthorization.php:256 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 +#: actions/userauthorization.php:266 msgid "Subscription rejected" msgstr "رُفض الاشتراك" -#: actions/userauthorization.php:261 +#: actions/userauthorization.php:268 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 +#: actions/userauthorization.php:303 #, php-format msgid "Listener URI ‘%s’ not found here." msgstr "" -#: actions/userauthorization.php:301 +#: actions/userauthorization.php:308 #, php-format msgid "Listenee URI ‘%s’ is too long." msgstr "" -#: actions/userauthorization.php:307 +#: actions/userauthorization.php:314 #, php-format msgid "Listenee URI ‘%s’ is a local user." msgstr "" -#: actions/userauthorization.php:322 +#: actions/userauthorization.php:329 #, php-format msgid "Profile URL ‘%s’ is for a local user." msgstr "" -#: actions/userauthorization.php:338 +#: actions/userauthorization.php:345 #, php-format msgid "Avatar URL ‘%s’ is not valid." msgstr "" -#: actions/userauthorization.php:343 +#: actions/userauthorization.php:350 #, php-format msgid "Can’t read avatar URL ‘%s’." msgstr "" -#: actions/userauthorization.php:348 +#: actions/userauthorization.php:355 #, php-format msgid "Wrong image type for avatar URL ‘%s’." msgstr "" @@ -3718,9 +4095,14 @@ msgstr "" msgid "Enjoy your hotdog!" msgstr "استمتع بالنقانق!" +#: actions/usergroups.php:64 +#, fuzzy, php-format +msgid "%1$s groups, page %2$d" +msgstr "%1$s أعضاء المجموعة, الصفحة %2$d" + #: actions/usergroups.php:130 msgid "Search for more groups" -msgstr "" +msgstr "ابحث عن المزيد من المجموعات" #: actions/usergroups.php:153 #, php-format @@ -3733,9 +4115,9 @@ msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" #: actions/version.php:73 -#, fuzzy, php-format +#, php-format msgid "StatusNet %s" -msgstr "إحصاءات" +msgstr "ستاتس نت %s" #: actions/version.php:153 #, php-format @@ -3744,11 +4126,6 @@ msgid "" "Inc. and contributors." msgstr "" -#: actions/version.php:157 -#, fuzzy -msgid "StatusNet" -msgstr "حُذِفت الحالة." - #: actions/version.php:161 msgid "Contributors" msgstr "" @@ -3778,26 +4155,15 @@ msgstr "" #: actions/version.php:189 msgid "Plugins" -msgstr "" +msgstr "ملحقات" -#: actions/version.php:195 -#, fuzzy -msgid "Name" -msgstr "الاسم المستعار" - -#: actions/version.php:196 lib/action.php:741 -#, fuzzy +#: actions/version.php:196 lib/action.php:747 msgid "Version" -msgstr "الجلسات" +msgstr "النسخة" #: actions/version.php:197 -#, fuzzy msgid "Author(s)" -msgstr "المؤلف" - -#: actions/version.php:198 lib/groupeditform.php:172 -msgid "Description" -msgstr "الوصف" +msgstr "المؤلف(ون)" #: classes/File.php:144 #, php-format @@ -3817,19 +4183,16 @@ msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" #: classes/Group_member.php:41 -#, fuzzy msgid "Group join failed." -msgstr "ملف المجموعة الشخصي" +msgstr "الانضمام للمجموعة فشل." #: classes/Group_member.php:53 -#, fuzzy msgid "Not part of group." -msgstr "تعذر تحديث المجموعة." +msgstr "ليس جزءا من المجموعة." #: classes/Group_member.php:60 -#, fuzzy msgid "Group leave failed." -msgstr "ملف المجموعة الشخصي" +msgstr "ترك المجموعة فشل." #: classes/Login_token.php:76 #, php-format @@ -3848,58 +4211,82 @@ msgstr "تعذّر إدراج الرسالة." msgid "Could not update message with new URI." msgstr "" -#: classes/Notice.php:171 +#: classes/Notice.php:157 #, php-format msgid "DB error inserting hashtag: %s" msgstr "" -#: classes/Notice.php:225 +#: classes/Notice.php:222 msgid "Problem saving notice. Too long." msgstr "مشكلة في حفظ الإشعار. طويل جدًا." -#: classes/Notice.php:229 +#: classes/Notice.php:226 msgid "Problem saving notice. Unknown user." msgstr "مشكلة في حفظ الإشعار. مستخدم غير معروف." -#: classes/Notice.php:234 +#: classes/Notice.php:231 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: classes/Notice.php:240 +#: classes/Notice.php:237 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." msgstr "" -#: classes/Notice.php:246 +#: classes/Notice.php:243 msgid "You are banned from posting notices on this site." msgstr "" -#: classes/Notice.php:305 classes/Notice.php:330 +#: classes/Notice.php:309 classes/Notice.php:335 msgid "Problem saving notice." msgstr "مشكلة أثناء حفظ الإشعار." -#: classes/Notice.php:1052 -#, php-format -msgid "DB error inserting reply: %s" -msgstr "" +#: classes/Notice.php:882 +#, fuzzy +msgid "Problem saving group inbox." +msgstr "مشكلة أثناء حفظ الإشعار." -#: classes/Notice.php:1423 +#: classes/Notice.php:1407 #, php-format msgid "RT @%1$s %2$s" msgstr "آر تي @%1$s %2$s" -#: classes/User.php:382 +#: classes/Subscription.php:66 lib/oauthstore.php:465 +msgid "You have been banned from subscribing." +msgstr "" + +#: classes/Subscription.php:70 +msgid "Already subscribed!" +msgstr "مُشترك أصلا!" + +#: classes/Subscription.php:74 +msgid "User has blocked you." +msgstr "لقد منعك المستخدم." + +#: classes/Subscription.php:157 +msgid "Not subscribed!" +msgstr "غير مشترك!" + +#: classes/Subscription.php:163 +msgid "Couldn't delete self-subscription." +msgstr "لم يمكن حذف اشتراك ذاتي." + +#: classes/Subscription.php:179 lib/subs.php:69 +msgid "Couldn't delete subscription." +msgstr "تعذّر حذف الاشتراك." + +#: classes/User.php:372 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "أهلا بكم في %1$s يا @%2$s!" -#: classes/User_group.php:380 +#: classes/User_group.php:423 msgid "Could not create group." msgstr "تعذّر إنشاء المجموعة." -#: classes/User_group.php:409 +#: classes/User_group.php:452 msgid "Could not set group membership." msgstr "تعذّر ضبط عضوية المجموعة." @@ -3932,136 +4319,132 @@ msgid "Other options" msgstr "خيارات أخرى" #: lib/action.php:144 -#, fuzzy, php-format +#, php-format msgid "%1$s - %2$s" -msgstr "%1$s (%2$s)" +msgstr "%1$s - %2$s" #: lib/action.php:159 msgid "Untitled page" msgstr "صفحة غير مُعنونة" -#: lib/action.php:427 +#: lib/action.php:433 msgid "Primary site navigation" msgstr "" -#: lib/action.php:433 +#: lib/action.php:439 msgid "Home" msgstr "الرئيسية" -#: lib/action.php:433 +#: lib/action.php:439 msgid "Personal profile and friends timeline" msgstr "الملف الشخصي ومسار الأصدقاء الزمني" -#: lib/action.php:435 -msgid "Account" -msgstr "الحساب" - -#: lib/action.php:435 +#: lib/action.php:441 msgid "Change your email, avatar, password, profile" msgstr "" -#: lib/action.php:438 +#: lib/action.php:444 msgid "Connect" msgstr "اتصل" -#: lib/action.php:438 +#: lib/action.php:444 msgid "Connect to services" msgstr "" -#: lib/action.php:442 +#: lib/action.php:448 msgid "Change site configuration" msgstr "غيّر ضبط الموقع" -#: lib/action.php:446 lib/subgroupnav.php:105 +#: lib/action.php:452 lib/subgroupnav.php:105 msgid "Invite" msgstr "ادعُ" -#: lib/action.php:447 lib/subgroupnav.php:106 +#: lib/action.php:453 lib/subgroupnav.php:106 #, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "" -#: lib/action.php:452 +#: lib/action.php:458 msgid "Logout" msgstr "اخرج" -#: lib/action.php:452 +#: lib/action.php:458 msgid "Logout from the site" msgstr "اخرج من الموقع" -#: lib/action.php:457 +#: lib/action.php:463 msgid "Create an account" msgstr "أنشئ حسابًا" -#: lib/action.php:460 +#: lib/action.php:466 msgid "Login to the site" msgstr "لُج إلى الموقع" -#: lib/action.php:463 lib/action.php:726 +#: lib/action.php:469 lib/action.php:732 msgid "Help" msgstr "مساعدة" -#: lib/action.php:463 +#: lib/action.php:469 msgid "Help me!" msgstr "ساعدني!" -#: lib/action.php:466 lib/searchaction.php:127 +#: lib/action.php:472 lib/searchaction.php:127 msgid "Search" msgstr "ابحث" -#: lib/action.php:466 +#: lib/action.php:472 msgid "Search for people or text" msgstr "ابحث عن أشخاص أو نص" -#: lib/action.php:487 +#: lib/action.php:493 msgid "Site notice" msgstr "إشعار الموقع" -#: lib/action.php:553 +#: lib/action.php:559 msgid "Local views" msgstr "المشاهدات المحلية" -#: lib/action.php:619 +#: lib/action.php:625 msgid "Page notice" msgstr "إشعار الصفحة" -#: lib/action.php:721 +#: lib/action.php:727 msgid "Secondary site navigation" msgstr "" -#: lib/action.php:728 +#: lib/action.php:734 msgid "About" msgstr "عن" -#: lib/action.php:730 +#: lib/action.php:736 msgid "FAQ" msgstr "الأسئلة المكررة" -#: lib/action.php:734 +#: lib/action.php:740 msgid "TOS" msgstr "الشروط" -#: lib/action.php:737 +#: lib/action.php:743 msgid "Privacy" msgstr "خصوصية" -#: lib/action.php:739 +#: lib/action.php:745 msgid "Source" msgstr "المصدر" -#: lib/action.php:743 +#: lib/action.php:749 msgid "Contact" msgstr "اتصل" -#: lib/action.php:745 +#: lib/action.php:751 msgid "Badge" msgstr "" -#: lib/action.php:773 +#: lib/action.php:779 msgid "StatusNet software license" -msgstr "" +msgstr "رخصة برنامج StatusNet" -#: lib/action.php:776 +#: lib/action.php:782 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4070,12 +4453,12 @@ msgstr "" "**%%site.name%%** خدمة تدوين مصغر يقدمها لك [%%site.broughtby%%](%%site." "broughtbyurl%%). " -#: lib/action.php:778 +#: lib/action.php:784 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "" -#: lib/action.php:780 +#: lib/action.php:786 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4086,32 +4469,54 @@ msgstr "" "المتوفر تحت [رخصة غنو أفيرو العمومية](http://www.fsf.org/licensing/licenses/" "agpl-3.0.html)." -#: lib/action.php:794 +#: lib/action.php:801 msgid "Site content license" msgstr "رخصة محتوى الموقع" -#: lib/action.php:803 +#: lib/action.php:806 +#, php-format +msgid "Content and data of %1$s are private and confidential." +msgstr "" + +#: lib/action.php:811 +#, php-format +msgid "Content and data copyright by %1$s. All rights reserved." +msgstr "" + +#: lib/action.php:814 +msgid "Content and data copyright by contributors. All rights reserved." +msgstr "" + +#: lib/action.php:827 msgid "All " msgstr "" -#: lib/action.php:808 +#: lib/action.php:833 msgid "license." msgstr "الرخصة." -#: lib/action.php:1102 +#: lib/action.php:1132 msgid "Pagination" msgstr "" -#: lib/action.php:1111 +#: lib/action.php:1141 msgid "After" msgstr "بعد" -#: lib/action.php:1119 +#: lib/action.php:1149 msgid "Before" msgstr "قبل" -#: lib/action.php:1167 -msgid "There was a problem with your session token." +#: lib/activity.php:382 +msgid "Can't handle remote content yet." +msgstr "" + +#: lib/activity.php:410 +msgid "Can't handle embedded XML content yet." +msgstr "" + +#: lib/activity.php:414 +msgid "Can't handle embedded Base64 content yet." msgstr "" #: lib/adminpanelaction.php:96 @@ -4119,9 +4524,8 @@ msgid "You cannot make changes to this site." msgstr "" #: lib/adminpanelaction.php:107 -#, fuzzy msgid "Changes to that panel are not allowed." -msgstr "لا يُسمح بالتسجيل." +msgstr "التغييرات لهذه اللوحة غير مسموح بها." #: lib/adminpanelaction.php:206 msgid "showForm() not implemented." @@ -4143,10 +4547,99 @@ msgstr "ضبط الموقع الأساسي" msgid "Design configuration" msgstr "ضبط التصميم" -#: lib/adminpanelaction.php:322 lib/adminpanelaction.php:327 +#: lib/adminpanelaction.php:322 +#, fuzzy +msgid "User configuration" +msgstr "ضبط المسارات" + +#: lib/adminpanelaction.php:327 +#, fuzzy +msgid "Access configuration" +msgstr "ضبط التصميم" + +#: lib/adminpanelaction.php:332 msgid "Paths configuration" msgstr "ضبط المسارات" +#: lib/adminpanelaction.php:337 +#, fuzzy +msgid "Sessions configuration" +msgstr "ضبط التصميم" + +#: lib/apiauth.php:95 +msgid "API resource requires read-write access, but you only have read access." +msgstr "" + +#: lib/apiauth.php:273 +#, php-format +msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" +msgstr "" + +#: lib/applicationeditform.php:136 +msgid "Edit application" +msgstr "عدّل التطبيق" + +#: lib/applicationeditform.php:184 +msgid "Icon for this application" +msgstr "" + +#: lib/applicationeditform.php:204 +#, php-format +msgid "Describe your application in %d characters" +msgstr "" + +#: lib/applicationeditform.php:207 +msgid "Describe your application" +msgstr "صف تطبيقك" + +#: lib/applicationeditform.php:216 +msgid "Source URL" +msgstr "مسار المصدر" + +#: lib/applicationeditform.php:218 +msgid "URL of the homepage of this application" +msgstr "" + +#: lib/applicationeditform.php:224 +msgid "Organization responsible for this application" +msgstr "" + +#: lib/applicationeditform.php:230 +msgid "URL for the homepage of the organization" +msgstr "" + +#: lib/applicationeditform.php:236 +msgid "URL to redirect to after authentication" +msgstr "" + +#: lib/applicationeditform.php:258 +msgid "Browser" +msgstr "" + +#: lib/applicationeditform.php:274 +msgid "Desktop" +msgstr "" + +#: lib/applicationeditform.php:275 +msgid "Type of application, browser or desktop" +msgstr "" + +#: lib/applicationeditform.php:297 +msgid "Read-only" +msgstr "" + +#: lib/applicationeditform.php:315 +msgid "Read-write" +msgstr "" + +#: lib/applicationeditform.php:316 +msgid "Default access for this application: read-only, or read-write" +msgstr "" + +#: lib/applicationlist.php:154 +msgid "Revoke" +msgstr "اسحب" + #: lib/attachmentlist.php:87 msgid "Attachments" msgstr "مرفقات" @@ -4167,15 +4660,13 @@ msgstr "" msgid "Tags for this attachment" msgstr "وسوم هذا المرفق" -#: lib/authenticationplugin.php:182 lib/authenticationplugin.php:187 -#, fuzzy +#: lib/authenticationplugin.php:218 lib/authenticationplugin.php:223 msgid "Password changing failed" -msgstr "تغيير كلمة السر" +msgstr "تغيير كلمة السر فشل" -#: lib/authenticationplugin.php:197 -#, fuzzy +#: lib/authenticationplugin.php:233 msgid "Password changing is not allowed" -msgstr "تغيير كلمة السر" +msgstr "تغيير كلمة السر غير مسموح به" #: lib/channel.php:138 lib/channel.php:158 msgid "Command results" @@ -4194,18 +4685,18 @@ msgid "Sorry, this command is not yet implemented." msgstr "" #: lib/command.php:88 -#, fuzzy, php-format +#, php-format msgid "Could not find a user with nickname %s" -msgstr "تعذّر إيجاد المستخدم الهدف." +msgstr "لم يمكن إيجاد مستخدم بالاسم %s" #: lib/command.php:92 msgid "It does not make a lot of sense to nudge yourself!" msgstr "" #: lib/command.php:99 -#, fuzzy, php-format +#, php-format msgid "Nudge sent to %s" -msgstr "أرسل التنبيه" +msgstr "التنبيه تم إرساله إلى %s" #: lib/command.php:126 #, php-format @@ -4219,9 +4710,8 @@ msgstr "" "الإشعارات: %3$s" #: lib/command.php:152 lib/command.php:390 lib/command.php:451 -#, fuzzy msgid "Notice with that id does not exist" -msgstr "لا ملف بهذه الهوية." +msgstr "الملاحظة بهذا الرقم غير موجودة" #: lib/command.php:168 lib/command.php:406 lib/command.php:467 #: lib/command.php:523 @@ -4233,14 +4723,13 @@ msgid "Notice marked as fave." msgstr "" #: lib/command.php:217 -#, fuzzy msgid "You are already a member of that group" -msgstr "لست عضوا في تلك المجموعة." +msgstr "أنت بالفعل عضو في هذه المجموعة" #: lib/command.php:231 -#, fuzzy, php-format +#, php-format msgid "Could not join user %s to group %s" -msgstr "تعذّر إنشاء المجموعة." +msgstr "لم يمكن ضم المستخدم %s إلى المجموعة %s" #: lib/command.php:236 #, php-format @@ -4248,14 +4737,14 @@ msgid "%s joined group %s" msgstr "%s انضم إلى مجموعة %s" #: lib/command.php:275 -#, fuzzy, php-format +#, php-format msgid "Could not remove user %s to group %s" -msgstr "تعذّر إنشاء المجموعة." +msgstr "لم يمكن إزالة المستخدم %s من المجموعة %s" #: lib/command.php:280 -#, fuzzy, php-format +#, php-format msgid "%s left group %s" -msgstr "%s انضم إلى مجموعة %s" +msgstr "%s ترك المجموعة %s" #: lib/command.php:309 #, php-format @@ -4283,18 +4772,17 @@ msgid "Message too long - maximum is %d characters, you sent %d" msgstr "" #: lib/command.php:367 -#, fuzzy, php-format +#, php-format msgid "Direct message to %s sent" -msgstr "رسالة مباشرة %s" +msgstr "رسالة مباشرة إلى %s تم إرسالها" #: lib/command.php:369 msgid "Error sending direct message." msgstr "" #: lib/command.php:413 -#, fuzzy msgid "Cannot repeat your own notice" -msgstr "لا يمكنك تكرار ملحوظتك الخاصة." +msgstr "لا يمكنك تكرار ملاحظتك الخاصة" #: lib/command.php:418 msgid "Already repeated that notice" @@ -4327,54 +4815,64 @@ msgstr "خطأ أثناء حفظ الإشعار." msgid "Specify the name of the user to subscribe to" msgstr "" -#: lib/command.php:554 +#: lib/command.php:554 lib/command.php:589 +#, fuzzy +msgid "No such user" +msgstr "لا مستخدم كهذا." + +#: lib/command.php:561 #, php-format msgid "Subscribed to %s" msgstr "مُشترك ب%s" -#: lib/command.php:575 +#: lib/command.php:582 lib/command.php:685 msgid "Specify the name of the user to unsubscribe from" msgstr "" -#: lib/command.php:582 +#: lib/command.php:595 #, php-format msgid "Unsubscribed from %s" msgstr "" -#: lib/command.php:600 lib/command.php:623 +#: lib/command.php:613 lib/command.php:636 msgid "Command not yet implemented." msgstr "" -#: lib/command.php:603 +#: lib/command.php:616 msgid "Notification off." msgstr "" -#: lib/command.php:605 +#: lib/command.php:618 msgid "Can't turn off notification." msgstr "" -#: lib/command.php:626 +#: lib/command.php:639 msgid "Notification on." msgstr "" -#: lib/command.php:628 +#: lib/command.php:641 msgid "Can't turn on notification." msgstr "" -#: lib/command.php:641 +#: lib/command.php:654 msgid "Login command is disabled" msgstr "" -#: lib/command.php:652 +#: lib/command.php:665 #, php-format msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "" -#: lib/command.php:668 +#: lib/command.php:692 +#, fuzzy, php-format +msgid "Unsubscribed %s" +msgstr "ألغِ الاشتراك" + +#: lib/command.php:709 msgid "You are not subscribed to anyone." msgstr "لست مُشتركًا بأي أحد." -#: lib/command.php:670 +#: lib/command.php:711 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "لست مشتركًا بأحد." @@ -4384,11 +4882,11 @@ msgstr[3] "أنت مشترك بهؤلاء الأشخاص:" msgstr[4] "" msgstr[5] "" -#: lib/command.php:690 +#: lib/command.php:731 msgid "No one is subscribed to you." msgstr "لا أحد مشترك بك." -#: lib/command.php:692 +#: lib/command.php:733 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "لا أحد مشترك بك." @@ -4398,11 +4896,11 @@ msgstr[3] "هؤلاء الأشخاص مشتركون بك:" msgstr[4] "" msgstr[5] "" -#: lib/command.php:712 +#: lib/command.php:753 msgid "You are not a member of any groups." msgstr "لست عضوًا في أي مجموعة." -#: lib/command.php:714 +#: lib/command.php:755 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "لست عضوًا في أي مجموعة." @@ -4412,7 +4910,7 @@ msgstr[3] "أنت عضو في هذه المجموعات:" msgstr[4] "" msgstr[5] "" -#: lib/command.php:728 +#: lib/command.php:769 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -4426,6 +4924,7 @@ msgid "" "d - direct message to user\n" "get - get last notice from user\n" "whois - get profile info on user\n" +"lose - force user to stop following you\n" "fav - add user's last notice as a 'fave'\n" "fav # - add notice with the given id as a 'fave'\n" "repeat # - repeat a notice with a given id\n" @@ -4453,19 +4952,19 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:131 +#: lib/common.php:136 msgid "No configuration file found. " msgstr "" -#: lib/common.php:132 +#: lib/common.php:137 msgid "I looked for configuration files in the following places: " msgstr "" -#: lib/common.php:134 +#: lib/common.php:139 msgid "You may wish to run the installer to fix this." msgstr "" -#: lib/common.php:135 +#: lib/common.php:140 msgid "Go to the installer." msgstr "اذهب إلى المُثبّت." @@ -4481,6 +4980,14 @@ msgstr "" msgid "Updates by SMS" msgstr "" +#: lib/connectsettingsaction.php:120 +msgid "Connections" +msgstr "اتصالات" + +#: lib/connectsettingsaction.php:121 +msgid "Authorized connected applications" +msgstr "" + #: lib/dberroraction.php:60 msgid "Database error" msgstr "خطأ قاعدة بيانات" @@ -4607,7 +5114,7 @@ msgstr "أضف أو عدّل شعار %s" #: lib/groupnav.php:120 #, php-format msgid "Add or edit %s design" -msgstr "" +msgstr "أضف أو عدل تصميم %s" #: lib/groupsbymemberssection.php:71 msgid "Groups with most members" @@ -4620,7 +5127,7 @@ msgstr "المجموعات الأكثر مرسلات" #: lib/grouptagcloudsection.php:56 #, php-format msgid "Tags in %s group's notices" -msgstr "" +msgstr "وسوم في إشعارات المجموعة %s" #: lib/htmloutputter.php:103 msgid "This page is not available in a media type you accept" @@ -4663,15 +5170,15 @@ msgstr "ميجابايت" msgid "kB" msgstr "كيلوبايت" -#: lib/jabber.php:202 +#: lib/jabber.php:220 #, php-format msgid "[%s]" msgstr "[%s]" -#: lib/jabber.php:385 -#, fuzzy, php-format +#: lib/jabber.php:400 +#, php-format msgid "Unknown inbox source %d." -msgstr "لغة غير معروفة \"%s\"" +msgstr "مصدر صندوق وارد غير معروف %d." #: lib/joinform.php:114 msgid "Join" @@ -4713,7 +5220,7 @@ msgstr "" #: lib/mail.php:236 #, php-format msgid "%1$s is now listening to your notices on %2$s." -msgstr "" +msgstr "%1$s يستمع الآن إلى إشعاراتك على %2$s." #: lib/mail.php:241 #, php-format @@ -4729,11 +5236,21 @@ msgid "" "----\n" "Change your email address or notification options at %8$s\n" msgstr "" +"%1$s يستمع الآن إلى إشعاراتك على %2$s.\n" +"\n" +"%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"بوفاء،\n" +"%7$s.\n" +"\n" +"----\n" +"غيّر خيارات البريد الإلكتروني والإشعار في %8$s\n" #: lib/mail.php:258 -#, fuzzy, php-format +#, php-format msgid "Bio: %s" -msgstr "السيرة: %s\n" +msgstr "السيرة: %s" #: lib/mail.php:286 #, php-format @@ -4863,7 +5380,7 @@ msgid "" "users in conversation. People can send you messages for your eyes only." msgstr "" -#: lib/mailbox.php:227 lib/noticelist.php:477 +#: lib/mailbox.php:227 lib/noticelist.php:482 msgid "from" msgstr "من" @@ -4884,9 +5401,9 @@ msgid "Sorry, no incoming email allowed." msgstr "" #: lib/mailhandler.php:228 -#, fuzzy, php-format +#, php-format msgid "Unsupported message type: %s" -msgstr "نسق غير مدعوم." +msgstr "نوع رسالة غير مدعوم: %s" #: lib/mediafile.php:98 lib/mediafile.php:123 msgid "There was a database error while saving your file. Please try again." @@ -4927,9 +5444,8 @@ 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 "تعذّر حذف المفضلة." +msgstr "لم يمكن تحديد نوع MIME للملف." #: lib/mediafile.php:270 #, php-format @@ -4971,67 +5487,61 @@ msgid "Attach a file" msgstr "أرفق ملفًا" #: lib/noticeform.php:212 -#, fuzzy msgid "Share my location" -msgstr "لم يمكن حفظ تفضيلات الموقع." +msgstr "شارك موقعي" #: lib/noticeform.php:215 -#, fuzzy msgid "Do not share my location" -msgstr "لم يمكن حفظ تفضيلات الموقع." +msgstr "لا تشارك موقعي" #: lib/noticeform.php:216 -msgid "Hide this info" -msgstr "" - -#: lib/noticeform.php:217 msgid "" "Sorry, retrieving your geo location is taking longer than expected, please " "try again later" msgstr "" -#: lib/noticelist.php:428 +#: lib/noticelist.php:429 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "" -#: lib/noticelist.php:429 +#: lib/noticelist.php:430 msgid "N" msgstr "ش" -#: lib/noticelist.php:429 +#: lib/noticelist.php:430 msgid "S" msgstr "ج" -#: lib/noticelist.php:430 +#: lib/noticelist.php:431 msgid "E" msgstr "ر" -#: lib/noticelist.php:430 +#: lib/noticelist.php:431 msgid "W" msgstr "غ" -#: lib/noticelist.php:436 +#: lib/noticelist.php:438 msgid "at" msgstr "في" -#: lib/noticelist.php:531 +#: lib/noticelist.php:558 msgid "in context" msgstr "في السياق" -#: lib/noticelist.php:556 +#: lib/noticelist.php:583 msgid "Repeated by" msgstr "مكرر بواسطة" -#: lib/noticelist.php:585 +#: lib/noticelist.php:610 msgid "Reply to this notice" msgstr "رُد على هذا الإشعار" -#: lib/noticelist.php:586 +#: lib/noticelist.php:611 msgid "Reply" msgstr "رُد" -#: lib/noticelist.php:628 +#: lib/noticelist.php:655 msgid "Notice repeated" msgstr "الإشعار مكرر" @@ -5063,11 +5573,7 @@ msgstr "خطأ أثناء إدراج الملف الشخصي البعيد" msgid "Duplicate notice" msgstr "ضاعف الإشعار" -#: lib/oauthstore.php:466 lib/subs.php:48 -msgid "You have been banned from subscribing." -msgstr "" - -#: lib/oauthstore.php:491 +#: lib/oauthstore.php:490 msgid "Couldn't insert new subscription." msgstr "تعذّر إدراج اشتراك جديد." @@ -5083,31 +5589,30 @@ msgstr "الردود" msgid "Favorites" msgstr "المفضلات" -#: lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "صندوق الوارد" -#: lib/personalgroupnav.php:125 +#: lib/personalgroupnav.php:126 msgid "Your incoming messages" msgstr "رسائلك الواردة" -#: lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 msgid "Outbox" msgstr "صندوق الصادر" -#: lib/personalgroupnav.php:130 +#: lib/personalgroupnav.php:131 msgid "Your sent messages" msgstr "رسائلك المُرسلة" #: lib/personaltagcloudsection.php:56 #, php-format msgid "Tags in %s's notices" -msgstr "" +msgstr "وسوم في إشعارات %s" #: lib/plugin.php:114 -#, fuzzy msgid "Unknown" -msgstr "إجراء غير معروف" +msgstr "غير معروف" #: lib/profileaction.php:109 lib/profileaction.php:192 lib/subgroupnav.php:82 msgid "Subscriptions" @@ -5167,11 +5672,15 @@ msgstr "مشهورة" #: lib/repeatform.php:107 msgid "Repeat this notice?" -msgstr "كرر هذا الإشعار؟" +msgstr "أأكرّر هذا الإشعار؟ّ" #: lib/repeatform.php:132 msgid "Repeat this notice" -msgstr "كرر هذا الإشعار" +msgstr "كرّر هذا الإشعار" + +#: lib/router.php:665 +msgid "No single user defined for single-user mode." +msgstr "" #: lib/sandboxform.php:67 msgid "Sandbox" @@ -5240,34 +5749,6 @@ msgstr "الأشخاص المشتركون ب%s" msgid "Groups %s is a member of" msgstr "المجموعات التي %s عضو فيها" -#: lib/subs.php:52 -msgid "Already subscribed!" -msgstr "مُشترك أصلا!" - -#: lib/subs.php:56 -msgid "User has blocked you." -msgstr "لقد منعك المستخدم." - -#: lib/subs.php:63 -msgid "Could not subscribe." -msgstr "تعذّر الاشتراك." - -#: lib/subs.php:82 -msgid "Could not subscribe other to you." -msgstr "" - -#: lib/subs.php:137 -msgid "Not subscribed!" -msgstr "غير مشترك!" - -#: lib/subs.php:142 -msgid "Couldn't delete self-subscription." -msgstr "لم يمكن حذف اشتراك ذاتي." - -#: lib/subs.php:158 -msgid "Couldn't delete subscription." -msgstr "تعذّر حذف الاشتراك." - #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -5318,67 +5799,67 @@ msgstr "عدّل الأفتار" msgid "User actions" msgstr "تصرفات المستخدم" -#: lib/userprofile.php:248 +#: lib/userprofile.php:251 msgid "Edit profile settings" msgstr "عدّل إعدادات الملف الشخصي" -#: lib/userprofile.php:249 +#: lib/userprofile.php:252 msgid "Edit" msgstr "عدّل" -#: lib/userprofile.php:272 +#: lib/userprofile.php:275 msgid "Send a direct message to this user" msgstr "أرسل رسالة مباشرة إلى هذا المستخدم" -#: lib/userprofile.php:273 +#: lib/userprofile.php:276 msgid "Message" msgstr "رسالة" -#: lib/userprofile.php:311 +#: lib/userprofile.php:314 msgid "Moderate" msgstr "" -#: lib/util.php:877 +#: lib/util.php:952 msgid "a few seconds ago" msgstr "قبل لحظات قليلة" -#: lib/util.php:879 +#: lib/util.php:954 msgid "about a minute ago" msgstr "قبل دقيقة تقريبًا" -#: lib/util.php:881 +#: lib/util.php:956 #, php-format msgid "about %d minutes ago" msgstr "" -#: lib/util.php:883 +#: lib/util.php:958 msgid "about an hour ago" msgstr "قبل ساعة تقريبًا" -#: lib/util.php:885 +#: lib/util.php:960 #, php-format msgid "about %d hours ago" msgstr "" -#: lib/util.php:887 +#: lib/util.php:962 msgid "about a day ago" msgstr "قبل يوم تقريبا" -#: lib/util.php:889 +#: lib/util.php:964 #, php-format msgid "about %d days ago" msgstr "" -#: lib/util.php:891 +#: lib/util.php:966 msgid "about a month ago" msgstr "قبل شهر تقريبًا" -#: lib/util.php:893 +#: lib/util.php:968 #, php-format msgid "about %d months ago" msgstr "" -#: lib/util.php:895 +#: lib/util.php:970 msgid "about a year ago" msgstr "قبل سنة تقريبًا" @@ -5392,7 +5873,7 @@ msgstr "%s ليس لونًا صحيحًا!" msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "" -#: scripts/xmppdaemon.php:301 +#: lib/xmppmanager.php:402 #, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "" diff --git a/locale/arz/LC_MESSAGES/statusnet.po b/locale/arz/LC_MESSAGES/statusnet.po index fbdc010631..cd86407530 100644 --- a/locale/arz/LC_MESSAGES/statusnet.po +++ b/locale/arz/LC_MESSAGES/statusnet.po @@ -1,5 +1,7 @@ # Translation of StatusNet to Egyptian Spoken Arabic # +# Author@translatewiki.net: Dudi +# Author@translatewiki.net: Ghaly # Author@translatewiki.net: Meno25 # -- # This file is distributed under the same license as the StatusNet package. @@ -8,18 +10,73 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-01-13 22:04+0000\n" -"PO-Revision-Date: 2010-01-13 22:04:44+0000\n" +"POT-Creation-Date: 2010-02-24 23:49+0000\n" +"PO-Revision-Date: 2010-02-24 23:50:08+0000\n" "Language-Team: Egyptian Spoken Arabic\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha (r61027); Translate extension (2010-01-04)\n" +"X-Generator: MediaWiki 1.17alpha (r62925); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: arz\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=6; plural= n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " "&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +#: actions/accessadminpanel.php:54 lib/adminpanelaction.php:326 +msgid "Access" +msgstr "نفاذ" + +#: actions/accessadminpanel.php:65 +#, fuzzy +msgid "Site access settings" +msgstr "اذف إعدادت الموقع" + +#: actions/accessadminpanel.php:158 +#, fuzzy +msgid "Registration" +msgstr "سجّل" + +#: actions/accessadminpanel.php:161 +msgid "Private" +msgstr "خاص" + +#: actions/accessadminpanel.php:163 +msgid "Prohibit anonymous users (not logged in) from viewing site?" +msgstr "أأمنع المستخدمين المجهولين (غير الوالجين) من عرض الموقع؟" + +#: actions/accessadminpanel.php:167 +msgid "Invite only" +msgstr "بالدعوه فقط" + +#: actions/accessadminpanel.php:169 +msgid "Make registration invitation only." +msgstr "" + +#: actions/accessadminpanel.php:173 +msgid "Closed" +msgstr "مُغلق" + +#: actions/accessadminpanel.php:175 +msgid "Disable new registrations." +msgstr "عطّل التسجيل الجديد." + +#: actions/accessadminpanel.php:189 actions/designadminpanel.php:586 +#: actions/emailsettings.php:195 actions/imsettings.php:163 +#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 +#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 +#: actions/siteadminpanel.php:336 actions/smssettings.php:181 +#: actions/subscriptions.php:208 actions/tagother.php:154 +#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 lib/designsettings.php:256 +#: lib/groupeditform.php:202 +msgid "Save" +msgstr "أرسل" + +#: actions/accessadminpanel.php:189 +#, fuzzy +msgid "Save access settings" +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" @@ -34,25 +91,29 @@ msgstr "لا صفحه كهذه" #: 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:144 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apistatusesupdate.php:148 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:78 #: actions/apitimelinehome.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/otp.php:76 #: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154 -#: actions/replies.php:73 actions/repliesrss.php:38 +#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 #: 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:302 lib/command.php:355 #: lib/command.php:401 lib/command.php:462 lib/command.php:518 #: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 -#: lib/subs.php:34 lib/subs.php:125 msgid "No such user." msgstr "لا مستخدم كهذا." +#: actions/all.php:84 +#, php-format +msgid "%1$s and friends, page %2$d" +msgstr "%1$s و الصحاب, صفحه %2$d" + #: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 -#: actions/apitimelinefriends.php:115 actions/apitimelinehome.php:115 +#: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" @@ -93,7 +154,7 @@ msgid "" "his or her attention](%%%%action.newnotice%%%%?status_textarea=%3$s)." msgstr "" -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211 #, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " @@ -104,8 +165,8 @@ msgstr "" msgid "You and friends" msgstr "أنت والأصدقاء" -#: actions/allrss.php:119 actions/apitimelinefriends.php:122 -#: actions/apitimelinehome.php:122 +#: actions/allrss.php:119 actions/apitimelinefriends.php:119 +#: actions/apitimelinehome.php:120 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "" @@ -115,25 +176,25 @@ msgstr "" #: actions/apiaccountupdateprofile.php:97 #: actions/apiaccountupdateprofilebackgroundimage.php:94 #: actions/apiaccountupdateprofilecolors.php:118 -#: 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:136 actions/apigroupismember.php:114 -#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 -#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 -#: actions/apigroupmembership.php:106 actions/apigroupshow.php:105 -#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 -#: actions/apistatusesretweets.php:112 actions/apistatusesshow.php:108 -#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93 -#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:146 -#: actions/apitimelinefriends.php:156 actions/apitimelinegroup.php:150 -#: actions/apitimelinehome.php:156 actions/apitimelinementions.php:151 -#: actions/apitimelinepublic.php:131 actions/apitimelineretweetedbyme.php:122 +#: actions/apiaccountverifycredentials.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:128 actions/apigroupcreate.php:136 +#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 +#: actions/apigroupleave.php:141 actions/apigrouplist.php:132 +#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 +#: actions/apigroupshow.php:115 actions/apihelptest.php:88 +#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 +#: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 #: actions/apitimelineretweetedtome.php:121 -#: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141 -#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 +#: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 +#: actions/apitimelineuser.php:207 actions/apiusershow.php:101 msgid "API method not found." -msgstr "لم يتم العثور على وسيله API." +msgstr "الـ API method مش موجوده." #: actions/apiaccountupdatedeliverydevice.php:85 #: actions/apiaccountupdateprofile.php:89 @@ -145,7 +206,7 @@ msgstr "لم يتم العثور على وسيله API." #: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 #: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 #: actions/apigroupleave.php:91 actions/apistatusesretweet.php:65 -#: actions/apistatusesupdate.php:114 +#: actions/apistatusesupdate.php:118 msgid "This method requires a POST." msgstr "تتطلب هذه الطريقه POST." @@ -174,8 +235,9 @@ msgstr "لم يمكن حفظ الملف." #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:97 -#: actions/apistatusesupdate.php:127 actions/avatarsettings.php:257 -#: actions/designadminpanel.php:122 actions/newnotice.php:94 +#: actions/apistatusesupdate.php:131 actions/avatarsettings.php:257 +#: actions/designadminpanel.php:122 actions/editapplication.php:118 +#: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 #, php-format msgid "" @@ -200,7 +262,7 @@ msgstr "تعذّر تحديث تصميمك." #: actions/apiblockcreate.php:105 msgid "You cannot block yourself!" -msgstr "لا يمكنك منع نفسك!" +msgstr "ما ينفعش تمنع نفسك!" #: actions/apiblockcreate.php:126 msgid "Block user failed." @@ -253,18 +315,16 @@ msgid "No status found with that ID." msgstr "" #: actions/apifavoritecreate.php:119 -#, fuzzy msgid "This status is already a favorite." -msgstr "هذا الإشعار مفضله مسبقًا!" +msgstr "الحاله دى موجوده فعلا فى التفضيلات." #: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:176 msgid "Could not create favorite." msgstr "تعذّر إنشاء مفضله." #: actions/apifavoritedestroy.php:122 -#, fuzzy msgid "That status is not a favorite." -msgstr "تلك الحاله ليست مفضلة!" +msgstr "الحاله دى مش محطوطه فى التفضيلات." #: actions/apifavoritedestroy.php:134 actions/disfavor.php:87 msgid "Could not delete favorite." @@ -284,19 +344,18 @@ msgid "Could not unfollow user: User not found." msgstr "" #: actions/apifriendshipsdestroy.php:120 -#, fuzzy msgid "You cannot unfollow yourself." -msgstr "لا يمكنك منع نفسك!" +msgstr "ما ينفعش عدم متابعة نفسك." #: actions/apifriendshipsexists.php:94 msgid "Two user ids or screen_names must be supplied." msgstr "" -#: actions/apifriendshipsshow.php:135 +#: actions/apifriendshipsshow.php:134 msgid "Could not determine source user." msgstr "" -#: actions/apifriendshipsshow.php:143 +#: actions/apifriendshipsshow.php:142 msgid "Could not find target user." msgstr "تعذّر إيجاد المستخدم الهدف." @@ -318,7 +377,8 @@ msgstr "" msgid "Not a valid nickname." msgstr "ليس اسمًا مستعارًا صحيحًا." -#: actions/apigroupcreate.php:196 actions/editgroup.php:195 +#: actions/apigroupcreate.php:196 actions/editapplication.php:215 +#: actions/editgroup.php:195 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:217 msgid "Homepage is not a valid URL." @@ -330,7 +390,8 @@ msgstr "الصفحه الرئيسيه ليست عنونًا صالحًا." msgid "Full name is too long (max 255 chars)." msgstr "الاسم الكامل طويل جدا (الأقصى 255 حرفًا)" -#: actions/apigroupcreate.php:213 +#: actions/apigroupcreate.php:213 actions/editapplication.php:190 +#: actions/newapplication.php:172 #, php-format msgid "Description is too long (max %d chars)." msgstr "" @@ -366,7 +427,7 @@ msgstr "" #: actions/apigroupismember.php:95 actions/apigroupjoin.php:104 #: actions/apigroupleave.php:104 actions/apigroupmembership.php:91 -#: actions/apigroupshow.php:90 actions/apitimelinegroup.php:91 +#: actions/apigroupshow.php:82 actions/apitimelinegroup.php:91 msgid "Group not found!" msgstr "لم توجد المجموعة!" @@ -379,18 +440,18 @@ msgid "You have been blocked from that group by the admin." msgstr "" #: actions/apigroupjoin.php:138 actions/joingroup.php:124 -#, fuzzy, php-format +#, php-format msgid "Could not join user %1$s to group %2$s." -msgstr "تعذّر إنشاء المجموعه." +msgstr "ما نفعش يضم %1$s للجروپ %2$s." #: actions/apigroupleave.php:114 msgid "You are not a member of this group." msgstr "" #: actions/apigroupleave.php:124 actions/leavegroup.php:119 -#, fuzzy, php-format +#, php-format msgid "Could not remove user %1$s from group %2$s." -msgstr "تعذّر إنشاء المجموعه." +msgstr "ما نفعش يتشال اليوزر %1$s من الجروپ %2$s." #: actions/apigrouplist.php:95 #, php-format @@ -407,6 +468,113 @@ msgstr "مجموعات %s" msgid "groups on %s" msgstr "مجموعات %s" +#: actions/apioauthauthorize.php:101 +msgid "No oauth_token parameter provided." +msgstr "" + +#: actions/apioauthauthorize.php:106 +#, fuzzy +msgid "Invalid token." +msgstr "حجم غير صالح." + +#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 +#: actions/deletenotice.php:157 actions/disfavor.php:74 +#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54 +#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupunblock.php:66 actions/imsettings.php:206 +#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 +#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 +#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135 +#: actions/othersettings.php:145 actions/passwordsettings.php:138 +#: actions/profilesettings.php:194 actions/recoverpassword.php:337 +#: actions/register.php:165 actions/remotesubscribe.php:77 +#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 +#: actions/subscribe.php:86 actions/tagother.php:166 +#: 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/apioauthauthorize.php:135 +msgid "Invalid nickname / password!" +msgstr "نيكنيم / پاسوورد مش مظبوطه!" + +#: actions/apioauthauthorize.php:159 +#, fuzzy +msgid "Database error deleting OAuth application user." +msgstr "خطأ قاعده البيانات أثناء حذف المستخدم OAuth app" + +#: actions/apioauthauthorize.php:185 +#, fuzzy +msgid "Database error inserting OAuth application user." +msgstr "خطأ قاعده البيانات أثناء إدخال المستخدم OAuth app" + +#: actions/apioauthauthorize.php:214 +#, php-format +msgid "" +"The request token %s has been authorized. Please exchange it for an access " +"token." +msgstr "" + +#: actions/apioauthauthorize.php:227 +#, php-format +msgid "The request token %s has been denied and revoked." +msgstr "" + +#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 +#: actions/designadminpanel.php:103 actions/editapplication.php:139 +#: actions/emailsettings.php:256 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/newapplication.php:121 +#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 +#: actions/smssettings.php:248 lib/designsettings.php:304 +msgid "Unexpected form submission." +msgstr "" + +#: actions/apioauthauthorize.php:259 +msgid "An application would like to connect to your account" +msgstr "" + +#: actions/apioauthauthorize.php:276 +msgid "Allow or deny access" +msgstr "" + +#: actions/apioauthauthorize.php:292 +#, php-format +msgid "" +"The application %1$s by %2$s would like " +"the ability to %3$s your %4$s account data. You should only " +"give access to your %4$s account to third parties you trust." +msgstr "" + +#: actions/apioauthauthorize.php:310 lib/action.php:441 +msgid "Account" +msgstr "الحساب" + +#: actions/apioauthauthorize.php:313 actions/login.php:230 +#: actions/profilesettings.php:106 actions/register.php:424 +#: actions/showgroup.php:236 actions/tagother.php:94 +#: actions/userauthorization.php:145 lib/groupeditform.php:152 +#: lib/userprofile.php:131 +msgid "Nickname" +msgstr "الاسم المستعار" + +#: actions/apioauthauthorize.php:316 actions/login.php:233 +#: actions/register.php:429 lib/accountsettingsaction.php:116 +msgid "Password" +msgstr "كلمه السر" + +#: actions/apioauthauthorize.php:328 +msgid "Deny" +msgstr "ارفض" + +#: actions/apioauthauthorize.php:334 +msgid "Allow" +msgstr "اسمح" + +#: actions/apioauthauthorize.php:351 +msgid "Allow or deny access to your account information." +msgstr "" + #: actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." msgstr "" @@ -422,11 +590,11 @@ msgstr "لا إشعار كهذا." #: actions/apistatusesretweet.php:83 msgid "Cannot repeat your own notice." -msgstr "لا يمكنك تكرار ملحوظتك الخاصه." +msgstr "مش نافعه تتكرر الملاحظتك بتاعتك." #: actions/apistatusesretweet.php:91 msgid "Already repeated that notice." -msgstr "كرر بالفعل هذه الملاحظه." +msgstr "الملاحظه اتكررت فعلا." #: actions/apistatusesshow.php:138 msgid "Status deleted." @@ -436,17 +604,17 @@ msgstr "حُذِفت الحاله." msgid "No status with that ID found." msgstr "" -#: actions/apistatusesupdate.php:157 actions/newnotice.php:155 +#: actions/apistatusesupdate.php:161 actions/newnotice.php:155 #: lib/mailhandler.php:60 #, php-format msgid "That's too long. Max notice size is %d chars." msgstr "" -#: actions/apistatusesupdate.php:198 +#: actions/apistatusesupdate.php:202 msgid "Not found" msgstr "لم يوجد" -#: actions/apistatusesupdate.php:221 actions/newnotice.php:178 +#: actions/apistatusesupdate.php:225 actions/newnotice.php:178 #, php-format msgid "Max notice size is %d chars, including attachment URL." msgstr "" @@ -460,7 +628,7 @@ msgstr "نسق غير مدعوم." msgid "%1$s / Favorites from %2$s" msgstr "" -#: actions/apitimelinefavorites.php:120 +#: actions/apitimelinefavorites.php:117 #, php-format msgid "%1$s updates favorited by %2$s / %2$s." msgstr "" @@ -471,7 +639,7 @@ msgstr "" msgid "%s timeline" msgstr "مسار %s الزمني" -#: actions/apitimelinegroup.php:117 actions/apitimelineuser.php:126 +#: actions/apitimelinegroup.php:114 actions/apitimelineuser.php:126 #: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" @@ -487,27 +655,22 @@ msgstr "" msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "" -#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "مسار %s الزمنى العام" -#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "" -#: actions/apitimelineretweetedbyme.php:112 -#, php-format -msgid "Repeated by %s" -msgstr "" - #: actions/apitimelineretweetedtome.php:111 #, php-format msgid "Repeated to %s" msgstr "كرر إلى %s" -#: actions/apitimelineretweetsofme.php:112 +#: actions/apitimelineretweetsofme.php:114 #, php-format msgid "Repeats of %s" msgstr "تكرارات %s" @@ -517,7 +680,7 @@ msgstr "تكرارات %s" msgid "Notices tagged with %s" msgstr "الإشعارات الموسومه ب%s" -#: actions/apitimelinetag.php:108 actions/tagrss.php:64 +#: actions/apitimelinetag.php:104 actions/tagrss.php:64 #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "" @@ -577,8 +740,8 @@ msgstr "الأصلي" msgid "Preview" msgstr "عاين" -#: actions/avatarsettings.php:149 lib/deleteuserform.php:66 -#: lib/noticelist.php:611 +#: actions/avatarsettings.php:149 actions/showapplication.php:252 +#: lib/deleteuserform.php:66 lib/noticelist.php:637 msgid "Delete" msgstr "احذف" @@ -590,29 +753,6 @@ msgstr "ارفع" msgid "Crop" msgstr "" -#: actions/avatarsettings.php:268 actions/deletenotice.php:157 -#: actions/disfavor.php:74 actions/emailsettings.php:238 actions/favor.php:75 -#: actions/geocode.php:50 actions/groupblock.php:66 actions/grouplogo.php:309 -#: actions/groupunblock.php:66 actions/imsettings.php:206 -#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 -#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 -#: actions/othersettings.php:145 actions/passwordsettings.php:138 -#: actions/profilesettings.php:194 actions/recoverpassword.php:337 -#: actions/register.php:165 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 -#: actions/subscribe.php:46 actions/tagother.php:166 -#: 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/avatarsettings.php:281 actions/designadminpanel.php:103 -#: actions/emailsettings.php:256 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/avatarsettings.php:328 msgid "Pick a square area of the image to be your avatar" msgstr "" @@ -648,8 +788,9 @@ msgid "" "will not be notified of any @-replies from them." msgstr "" -#: actions/block.php:143 actions/deletenotice.php:145 -#: actions/deleteuser.php:147 actions/groupblock.php:178 +#: actions/block.php:143 actions/deleteapplication.php:153 +#: actions/deletenotice.php:145 actions/deleteuser.php:147 +#: actions/groupblock.php:178 msgid "No" msgstr "لا" @@ -657,13 +798,13 @@ msgstr "لا" msgid "Do not block this user" msgstr "لا تمنع هذا المستخدم" -#: actions/block.php:144 actions/deletenotice.php:146 -#: actions/deleteuser.php:148 actions/groupblock.php:179 -#: lib/repeatform.php:132 +#: actions/block.php:144 actions/deleteapplication.php:158 +#: actions/deletenotice.php:146 actions/deleteuser.php:148 +#: actions/groupblock.php:179 lib/repeatform.php:132 msgid "Yes" msgstr "نعم" -#: actions/block.php:144 actions/groupmembers.php:346 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80 msgid "Block this user" msgstr "امنع هذا المستخدم" @@ -687,9 +828,9 @@ msgid "%s blocked profiles" msgstr "" #: actions/blockedfromgroup.php:93 -#, fuzzy, php-format +#, php-format msgid "%1$s blocked profiles, page %2$d" -msgstr "مشتركو %s، الصفحه %d" +msgstr "%1$s فايلات معمول ليها بلوك, الصفحه %2$d" #: actions/blockedfromgroup.php:108 msgid "A list of the users blocked from joining this group." @@ -746,8 +887,8 @@ msgid "Couldn't delete email confirmation." msgstr "تعذّر حذف تأكيد البريد الإلكترونى." #: actions/confirmaddress.php:144 -msgid "Confirm Address" -msgstr "عنوان التأكيد" +msgid "Confirm address" +msgstr "اكد العنوان" #: actions/confirmaddress.php:159 #, php-format @@ -763,10 +904,53 @@ msgstr "محادثة" msgid "Notices" msgstr "الإشعارات" +#: actions/deleteapplication.php:63 +#, fuzzy +msgid "You must be logged in to delete an application." +msgstr "يجب أن تكون مسجل الدخول لتعدل تطبيقا." + +#: actions/deleteapplication.php:71 +#, fuzzy +msgid "Application not found." +msgstr "لم يوجد رمز التأكيد." + +#: actions/deleteapplication.php:78 actions/editapplication.php:77 +#: actions/showapplication.php:94 +msgid "You are not the owner of this application." +msgstr "انت مش بتملك الapplication دى." + +#: actions/deleteapplication.php:102 actions/editapplication.php:127 +#: actions/newapplication.php:110 actions/showapplication.php:118 +#: lib/action.php:1197 +msgid "There was a problem with your session token." +msgstr "" + +#: actions/deleteapplication.php:123 actions/deleteapplication.php:147 +#, fuzzy +msgid "Delete application" +msgstr "لا تطبيق كهذا." + +#: actions/deleteapplication.php:149 +msgid "" +"Are you sure you want to delete this application? This will clear all data " +"about the application from the database, including all existing user " +"connections." +msgstr "" + +#: actions/deleteapplication.php:156 +#, fuzzy +msgid "Do not delete this application" +msgstr "لا تحذف هذا الإشعار" + +#: actions/deleteapplication.php:160 +#, fuzzy +msgid "Delete this application" +msgstr "احذف هذا الإشعار" + #: 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/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 #: lib/adminpanelaction.php:72 lib/profileformaction.php:63 #: lib/settingsaction.php:72 @@ -795,7 +979,7 @@ msgstr "أمتأكد من أنك تريد حذف هذا الإشعار؟" msgid "Do not delete this notice" msgstr "لا تحذف هذا الإشعار" -#: actions/deletenotice.php:146 lib/noticelist.php:611 +#: actions/deletenotice.php:146 lib/noticelist.php:637 msgid "Delete this notice" msgstr "احذف هذا الإشعار" @@ -923,16 +1107,6 @@ msgstr "استعد التصميمات المبدئية" msgid "Reset back to default" msgstr "ارجع إلى المبدئي" -#: actions/designadminpanel.php:586 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 -#: actions/pathsadminpanel.php:324 actions/profilesettings.php:174 -#: actions/siteadminpanel.php:388 actions/smssettings.php:181 -#: actions/subscriptions.php:203 actions/tagother.php:154 -#: actions/useradminpanel.php:313 lib/designsettings.php:256 -#: lib/groupeditform.php:202 -msgid "Save" -msgstr "أرسل" - #: actions/designadminpanel.php:587 lib/designsettings.php:257 msgid "Save design" msgstr "احفظ التصميم" @@ -945,10 +1119,77 @@ msgstr "هذا الشعار ليس مفضلًا!" msgid "Add to favorites" msgstr "أضف إلى المفضلات" -#: actions/doc.php:69 -msgid "No such document." +#: actions/doc.php:158 +#, fuzzy, php-format +msgid "No such document \"%s\"" msgstr "لا مستند كهذا." +#: actions/editapplication.php:54 +#, fuzzy +msgid "Edit Application" +msgstr "تطبيقات OAuth" + +#: actions/editapplication.php:66 +msgid "You must be logged in to edit an application." +msgstr "لازم يكون متسجل دخولك علشان تعدّل application." + +#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:166 +#: actions/showapplication.php:87 +msgid "No such application." +msgstr "ما فيش application زى كده." + +#: actions/editapplication.php:161 +msgid "Use this form to edit your application." +msgstr "استعمل الفورمه دى علشان تعدّل الapplication بتاعتك." + +#: actions/editapplication.php:177 actions/newapplication.php:159 +msgid "Name is required." +msgstr "الاسم مطلوب." + +#: actions/editapplication.php:180 actions/newapplication.php:165 +msgid "Name is too long (max 255 chars)." +msgstr "الاسم طويل جدا (اكتر حاجه 255 رمز)." + +#: actions/editapplication.php:183 actions/newapplication.php:162 +msgid "Name already in use. Try another one." +msgstr "" + +#: actions/editapplication.php:186 actions/newapplication.php:168 +msgid "Description is required." +msgstr "الوصف مطلوب." + +#: actions/editapplication.php:194 +msgid "Source URL is too long." +msgstr "" + +#: actions/editapplication.php:200 actions/newapplication.php:185 +msgid "Source URL is not valid." +msgstr "الSource URL مش مظبوط." + +#: actions/editapplication.php:203 actions/newapplication.php:188 +msgid "Organization is required." +msgstr "" + +#: actions/editapplication.php:206 actions/newapplication.php:191 +msgid "Organization is too long (max 255 chars)." +msgstr "المنظمه طويله جدا (اكتر حاجه 255 رمز)." + +#: actions/editapplication.php:209 actions/newapplication.php:194 +msgid "Organization homepage is required." +msgstr "" + +#: actions/editapplication.php:218 actions/newapplication.php:206 +msgid "Callback is too long." +msgstr "" + +#: actions/editapplication.php:225 actions/newapplication.php:215 +msgid "Callback URL is not valid." +msgstr "" + +#: actions/editapplication.php:258 +msgid "Could not update application." +msgstr "ما نفعش تحديث الapplication." + #: actions/editgroup.php:56 #, php-format msgid "Edit %s group" @@ -960,9 +1201,8 @@ msgstr "يجب أن تكون والجًا لتنشئ مجموعه." #: 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 "يجب أن تكون إداريًا لتعدّل المجموعة" +msgstr "لازم تكون ادارى علشان تعدّل الجروپ." #: actions/editgroup.php:154 msgid "Use this form to edit the group." @@ -977,7 +1217,7 @@ msgstr "" msgid "Could not update group." msgstr "تعذر تحديث المجموعه." -#: actions/editgroup.php:259 classes/User_group.php:390 +#: actions/editgroup.php:259 classes/User_group.php:433 msgid "Could not create aliases." msgstr "تعذّر إنشاء الكنى." @@ -986,9 +1226,8 @@ msgid "Options saved." msgstr "حُفظت الخيارات." #: actions/emailsettings.php:60 -#, fuzzy msgid "Email settings" -msgstr "إعدادات البريد الإلكتروني" +msgstr "تظبيطات الايميل" #: actions/emailsettings.php:71 #, php-format @@ -1017,14 +1256,14 @@ msgid "" msgstr "" #: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 +#: actions/smssettings.php:126 lib/applicationeditform.php:331 +#: lib/applicationeditform.php:332 msgid "Cancel" msgstr "ألغِ" #: actions/emailsettings.php:121 -#, fuzzy msgid "Email address" -msgstr "عناوين البريد الإلكتروني" +msgstr "عنوان الايميل" #: actions/emailsettings.php:123 msgid "Email address, like \"UserName@example.org\"" @@ -1098,7 +1337,7 @@ msgid "Cannot normalize that email address" msgstr "" #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:157 +#: actions/siteadminpanel.php:143 msgid "Not a valid email address." msgstr "ليس عنوان بريد صالح." @@ -1110,7 +1349,7 @@ msgstr "هذا هو عنوان بريدك الإكترونى سابقًا." msgid "That email address already belongs to another user." msgstr "هذا البريد الإلكترونى ملك مستخدم آخر بالفعل." -#: actions/emailsettings.php:353 actions/imsettings.php:317 +#: actions/emailsettings.php:353 actions/imsettings.php:319 #: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." msgstr "تعذّر إدراج رمز التأكيد." @@ -1169,7 +1408,7 @@ msgstr "هذا الإشعار مفضله مسبقًا!" msgid "Disfavor favorite" msgstr "ألغِ تفضيل المفضلة" -#: actions/favorited.php:65 lib/popularnoticesection.php:88 +#: actions/favorited.php:65 lib/popularnoticesection.php:91 #: lib/publicgroupnav.php:93 msgid "Popular notices" msgstr "إشعارات مشهورة" @@ -1228,11 +1467,11 @@ msgstr "اختيار لبعض المستخدمين المتميزين على %s" #: actions/file.php:34 msgid "No notice ID." -msgstr "لا رقم ملاحظه." +msgstr "ما فيش ملاحظة ID." #: actions/file.php:38 msgid "No notice." -msgstr "لا ملاحظه." +msgstr "ما فيش ملاحظه." #: actions/file.php:42 msgid "No attachments." @@ -1240,7 +1479,7 @@ msgstr "لا مرفقات." #: actions/file.php:51 msgid "No uploaded attachments." -msgstr "لا مرفقات مرفوعه." +msgstr "ما فيش فايلات اتعمللها upload." #: actions/finishremotesubscribe.php:69 msgid "Not expecting this response!" @@ -1311,7 +1550,7 @@ msgstr "" msgid "User is not a member of group." msgstr "المستخدم ليس عضوًا فى المجموعه." -#: actions/groupblock.php:136 actions/groupmembers.php:314 +#: actions/groupblock.php:136 actions/groupmembers.php:316 msgid "Block user from group" msgstr "امنع المستخدم من المجموعة" @@ -1373,9 +1612,8 @@ msgid "" msgstr "" #: actions/grouplogo.php:178 -#, fuzzy msgid "User without matching profile." -msgstr "ليس للمستخدم ملف شخصى." +msgstr "يوزر من-غير پروفايل زيّه." #: actions/grouplogo.php:362 msgid "Pick a square area of the image to be the logo." @@ -1395,31 +1633,31 @@ msgid "%s group members" msgstr "أعضاء مجموعه %s" #: actions/groupmembers.php:96 -#, fuzzy, php-format +#, php-format msgid "%1$s group members, page %2$d" -msgstr "مجموعات %s، صفحه %d" +msgstr "%1$s اعضاء الجروپ, صفحه %2$d" #: actions/groupmembers.php:111 msgid "A list of the users in this group." msgstr "قائمه بمستخدمى هذه المجموعه." -#: actions/groupmembers.php:175 lib/action.php:442 lib/groupnav.php:107 +#: actions/groupmembers.php:175 lib/action.php:448 lib/groupnav.php:107 msgid "Admin" msgstr "إداري" -#: actions/groupmembers.php:346 lib/blockform.php:69 +#: actions/groupmembers.php:348 lib/blockform.php:69 msgid "Block" msgstr "امنع" -#: actions/groupmembers.php:441 +#: actions/groupmembers.php:443 msgid "Make user an admin of the group" msgstr "" -#: actions/groupmembers.php:473 +#: actions/groupmembers.php:475 msgid "Make Admin" msgstr "" -#: actions/groupmembers.php:473 +#: actions/groupmembers.php:475 msgid "Make this user an admin" msgstr "اجعل هذا المستخدم إداريًا" @@ -1495,9 +1733,8 @@ msgid "Error removing the block." msgstr "خطأ أثناء منع الحجب." #: actions/imsettings.php:59 -#, fuzzy msgid "IM settings" -msgstr "إعدادات المراسله الفورية" +msgstr "تظبيطات بعت الرسايل الفوريه" #: actions/imsettings.php:70 #, php-format @@ -1522,9 +1759,8 @@ msgid "" msgstr "" #: actions/imsettings.php:124 -#, fuzzy msgid "IM address" -msgstr "عنوان المراسله الفورية" +msgstr "عنوان الرساله الفوريه" #: actions/imsettings.php:126 #, php-format @@ -1580,6 +1816,11 @@ msgstr "" msgid "That is not your Jabber ID." msgstr "هذه ليست هويتك فى جابر." +#: actions/inbox.php:59 +#, php-format +msgid "Inbox for %1$s - page %2$d" +msgstr "" + #: actions/inbox.php:62 #, php-format msgid "Inbox for %s" @@ -1656,7 +1897,7 @@ msgstr "رساله شخصية" msgid "Optionally add a personal message to the invitation." msgstr "" -#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:237 +#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:236 msgid "Send" msgstr "أرسل" @@ -1701,9 +1942,9 @@ msgid "You must be logged in to join a group." msgstr "" #: actions/joingroup.php:131 -#, fuzzy, php-format +#, php-format msgid "%1$s joined group %2$s" -msgstr "%s انضم إلى مجموعه %s" +msgstr "%1$s دخل جروپ %2$s" #: actions/leavegroup.php:60 msgid "You must be logged in to leave a group." @@ -1714,9 +1955,9 @@ msgid "You are not a member of that group." msgstr "لست عضوا فى تلك المجموعه." #: actions/leavegroup.php:127 -#, fuzzy, php-format +#, php-format msgid "%1$s left group %2$s" -msgstr "%s انضم إلى مجموعه %s" +msgstr "%1$s ساب جروپ %2$s" #: actions/login.php:80 actions/otp.php:62 actions/register.php:137 msgid "Already logged in." @@ -1730,7 +1971,7 @@ msgstr "اسم المستخدم أو كلمه السر غير صحيحان." msgid "Error setting user. You are probably not authorized." msgstr "خطأ أثناء ضبط المستخدم. لست مُصرحًا على الأرجح." -#: actions/login.php:188 actions/login.php:241 lib/action.php:460 +#: actions/login.php:188 actions/login.php:241 lib/action.php:466 #: lib/logingroupnav.php:79 msgid "Login" msgstr "لُج" @@ -1739,17 +1980,6 @@ msgstr "لُج" msgid "Login to site" msgstr "لُج إلى الموقع" -#: actions/login.php:230 actions/profilesettings.php:106 -#: actions/register.php:424 actions/showgroup.php:236 actions/tagother.php:94 -#: lib/groupeditform.php:152 lib/userprofile.php:131 -msgid "Nickname" -msgstr "الاسم المستعار" - -#: actions/login.php:233 actions/register.php:429 -#: lib/accountsettingsaction.php:116 -msgid "Password" -msgstr "كلمه السر" - #: actions/login.php:236 actions/register.php:478 msgid "Remember me" msgstr "تذكّرني" @@ -1775,29 +2005,50 @@ msgid "" "(%%action.register%%) a new account." msgstr "" -#: actions/makeadmin.php:91 +#: actions/makeadmin.php:92 msgid "Only an admin can make another user an admin." msgstr "" -#: actions/makeadmin.php:95 +#: actions/makeadmin.php:96 #, php-format msgid "%1$s is already an admin for group \"%2$s\"." msgstr "" -#: actions/makeadmin.php:132 -#, fuzzy, php-format +#: actions/makeadmin.php:133 +#, php-format msgid "Can't get membership record for %1$s in group %2$s." -msgstr "تعذّر إنشاء المجموعه." +msgstr "مش نافع يتجاب سجل العضويه لـ%1$s فى جروپ %2$s." -#: actions/makeadmin.php:145 -#, fuzzy, php-format +#: actions/makeadmin.php:146 +#, php-format msgid "Can't make %1$s an admin for group %2$s." -msgstr "تعذّر إنشاء المجموعه." +msgstr "%1$s مش نافع يبقى ادارى لجروپ %2$s." #: actions/microsummary.php:69 msgid "No current status" msgstr "لا حاله حالية" +#: actions/newapplication.php:52 +#, fuzzy +msgid "New Application" +msgstr "لا تطبيق كهذا." + +#: actions/newapplication.php:64 +msgid "You must be logged in to register an application." +msgstr "لازم تكون مسجل دخوللك علشان تسجل application." + +#: actions/newapplication.php:143 +msgid "Use this form to register a new application." +msgstr "استعمل الفورمه دى علشان تسجل application جديد." + +#: actions/newapplication.php:176 +msgid "Source URL is required." +msgstr "" + +#: actions/newapplication.php:258 actions/newapplication.php:267 +msgid "Could not create application." +msgstr "مش ممكن إنشاء الapplication." + #: actions/newgroup.php:53 msgid "New group" msgstr "مجموعه جديدة" @@ -1833,9 +2084,9 @@ msgid "Message sent" msgstr "أُرسلت الرسالة" #: actions/newmessage.php:185 -#, fuzzy, php-format +#, php-format msgid "Direct message to %s sent." -msgstr "رساله مباشره %s" +msgstr "رساله مباشره اتبعتت لـ%s." #: actions/newmessage.php:210 actions/newnotice.php:245 lib/channel.php:170 msgid "Ajax Error" @@ -1861,9 +2112,9 @@ msgid "Text search" msgstr "بحث فى النصوص" #: actions/noticesearch.php:91 -#, fuzzy, php-format +#, php-format msgid "Search results for \"%1$s\" on %2$s" -msgstr "نتائج البحث عن \"%s\" فى %s" +msgstr "نتايج التدوير لـ\"%1$s\" على %2$s" #: actions/noticesearch.php:121 #, php-format @@ -1902,6 +2153,48 @@ msgstr "أرسل التنبيه" msgid "Nudge sent!" msgstr "أُرسل التنبيه!" +#: actions/oauthappssettings.php:59 +msgid "You must be logged in to list your applications." +msgstr "لازم تكون مسجل دخولك علشان تشوف ليستة الapplications بتاعتك." + +#: actions/oauthappssettings.php:74 +msgid "OAuth applications" +msgstr "OAuth applications" + +#: actions/oauthappssettings.php:85 +msgid "Applications you have registered" +msgstr "" + +#: actions/oauthappssettings.php:135 +#, php-format +msgid "You have not registered any applications yet." +msgstr "" + +#: actions/oauthconnectionssettings.php:72 +msgid "Connected applications" +msgstr "" + +#: actions/oauthconnectionssettings.php:83 +msgid "You have allowed the following applications to access you account." +msgstr "" + +#: actions/oauthconnectionssettings.php:175 +msgid "You are not a user of that application." +msgstr "انت مش يوزر للapplication دى." + +#: actions/oauthconnectionssettings.php:186 +msgid "Unable to revoke access for app: " +msgstr "" + +#: actions/oauthconnectionssettings.php:198 +#, php-format +msgid "You have not authorized any applications to use your account." +msgstr "" + +#: actions/oauthconnectionssettings.php:211 +msgid "Developers can edit the registration settings for their applications " +msgstr "" + #: actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" msgstr "" @@ -1919,22 +2212,22 @@ msgstr "نوع المحتوى " msgid "Only " msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1033 -#: lib/api.php:1061 lib/api.php:1171 +#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 +#: lib/api.php:1068 lib/api.php:1177 msgid "Not a supported data format." -msgstr "ليس نسق بيانات مدعوم." +msgstr " مش نظام بيانات مدعوم." #: actions/opensearch.php:64 msgid "People Search" -msgstr "بحث فى الأشخاص" +msgstr "تدوير فى الأشخاص" #: actions/opensearch.php:67 msgid "Notice Search" msgstr "بحث الإشعارات" #: actions/othersettings.php:60 -msgid "Other Settings" -msgstr "إعدادات أخرى" +msgid "Other settings" +msgstr "تظبيطات تانيه" #: actions/othersettings.php:71 msgid "Manage various other options." @@ -1965,29 +2258,29 @@ msgid "URL shortening service is too long (max 50 chars)." msgstr "" #: actions/otp.php:69 -#, fuzzy msgid "No user ID specified." -msgstr "لا مجموعه مُحدّده." +msgstr "ما فيش ID متحدد لليوزر." #: actions/otp.php:83 -#, fuzzy msgid "No login token specified." -msgstr "لا ملاحظه محدده." +msgstr "ما فيش امارة دخول متحدده." #: actions/otp.php:90 -#, fuzzy msgid "No login token requested." -msgstr "لا طلب استيثاق!" +msgstr "ما فيش طلب تسجيل دخول مطلوب." #: actions/otp.php:95 -#, fuzzy msgid "Invalid login token specified." -msgstr "لا ملاحظه محدده." +msgstr "امارة تسجيل الدخول اللى اتحطت مش موجوده." #: actions/otp.php:104 -#, fuzzy msgid "Login token expired." -msgstr "لُج إلى الموقع" +msgstr "تاريخ صلاحية الاماره خلص." + +#: actions/outbox.php:58 +#, php-format +msgid "Outbox for %1$s - page %2$d" +msgstr "" #: actions/outbox.php:61 #, php-format @@ -2059,7 +2352,7 @@ msgstr "تعذّر حفظ كلمه السر الجديده." msgid "Password saved." msgstr "حُفظت كلمه السر." -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:326 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:331 msgid "Paths" msgstr "المسارات" @@ -2067,133 +2360,148 @@ msgstr "المسارات" msgid "Path and server settings for this StatusNet site." msgstr "" -#: actions/pathsadminpanel.php:140 +#: actions/pathsadminpanel.php:157 #, php-format msgid "Theme directory not readable: %s" msgstr "لا يمكن قراءه دليل السمات: %s" -#: actions/pathsadminpanel.php:146 +#: actions/pathsadminpanel.php:163 #, php-format msgid "Avatar directory not writable: %s" msgstr "لا يمكن الكتابه فى دليل الأفتارات: %s" -#: actions/pathsadminpanel.php:152 +#: actions/pathsadminpanel.php:169 #, php-format msgid "Background directory not writable: %s" msgstr "لا يمكن الكتابه فى دليل الخلفيات: %s" -#: actions/pathsadminpanel.php:160 +#: actions/pathsadminpanel.php:177 #, php-format msgid "Locales directory not readable: %s" msgstr "لا يمكن قراءه دليل المحليات: %s" -#: actions/pathsadminpanel.php:166 +#: actions/pathsadminpanel.php:183 msgid "Invalid SSL server. The maximum length is 255 characters." msgstr "" -#: actions/pathsadminpanel.php:217 actions/siteadminpanel.php:58 +#: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58 #: lib/adminpanelaction.php:311 msgid "Site" msgstr "الموقع" -#: actions/pathsadminpanel.php:221 +#: actions/pathsadminpanel.php:238 +msgid "Server" +msgstr "خادوم" + +#: actions/pathsadminpanel.php:238 +msgid "Site's server hostname." +msgstr "اسم مضيف خادوم الموقع." + +#: actions/pathsadminpanel.php:242 msgid "Path" msgstr "المسار" -#: actions/pathsadminpanel.php:221 +#: actions/pathsadminpanel.php:242 msgid "Site path" msgstr "مسار الموقع" -#: actions/pathsadminpanel.php:225 +#: actions/pathsadminpanel.php:246 msgid "Path to locales" msgstr "مسار المحليات" -#: actions/pathsadminpanel.php:225 +#: actions/pathsadminpanel.php:246 msgid "Directory path to locales" msgstr "مسار دليل المحليات" -#: actions/pathsadminpanel.php:232 +#: actions/pathsadminpanel.php:250 +msgid "Fancy URLs" +msgstr "مسارات فاخرة" + +#: actions/pathsadminpanel.php:252 +msgid "Use fancy (more readable and memorable) URLs?" +msgstr "أأستخدم مسارات فاخره (يمكن قراءتها وتذكرها بسهوله أكبر)؟" + +#: actions/pathsadminpanel.php:259 msgid "Theme" msgstr "السمة" -#: actions/pathsadminpanel.php:237 +#: actions/pathsadminpanel.php:264 msgid "Theme server" msgstr "خادوم السمات" -#: actions/pathsadminpanel.php:241 +#: actions/pathsadminpanel.php:268 msgid "Theme path" msgstr "مسار السمات" -#: actions/pathsadminpanel.php:245 +#: actions/pathsadminpanel.php:272 msgid "Theme directory" msgstr "دليل السمات" -#: actions/pathsadminpanel.php:252 +#: actions/pathsadminpanel.php:279 msgid "Avatars" msgstr "أفتارات" -#: actions/pathsadminpanel.php:257 +#: actions/pathsadminpanel.php:284 msgid "Avatar server" msgstr "خادوم الأفتارات" -#: actions/pathsadminpanel.php:261 +#: actions/pathsadminpanel.php:288 msgid "Avatar path" msgstr "مسار الأفتارات" -#: actions/pathsadminpanel.php:265 +#: actions/pathsadminpanel.php:292 msgid "Avatar directory" msgstr "دليل الأفتار." -#: actions/pathsadminpanel.php:274 +#: actions/pathsadminpanel.php:301 msgid "Backgrounds" msgstr "خلفيات" -#: actions/pathsadminpanel.php:278 +#: actions/pathsadminpanel.php:305 msgid "Background server" msgstr "خادوم الخلفيات" -#: actions/pathsadminpanel.php:282 +#: actions/pathsadminpanel.php:309 msgid "Background path" msgstr "مسار الخلفيات" -#: actions/pathsadminpanel.php:286 +#: actions/pathsadminpanel.php:313 msgid "Background directory" msgstr "دليل الخلفيات" -#: actions/pathsadminpanel.php:293 +#: actions/pathsadminpanel.php:320 msgid "SSL" msgstr "SSL" -#: actions/pathsadminpanel.php:296 actions/siteadminpanel.php:346 +#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 msgid "Never" msgstr "مطلقا" -#: actions/pathsadminpanel.php:297 +#: actions/pathsadminpanel.php:324 msgid "Sometimes" msgstr "أحيانًا" -#: actions/pathsadminpanel.php:298 +#: actions/pathsadminpanel.php:325 msgid "Always" msgstr "دائمًا" -#: actions/pathsadminpanel.php:302 +#: actions/pathsadminpanel.php:329 msgid "Use SSL" msgstr "استخدم SSL" -#: actions/pathsadminpanel.php:303 +#: actions/pathsadminpanel.php:330 msgid "When to use SSL" msgstr "" -#: actions/pathsadminpanel.php:308 -#, fuzzy +#: actions/pathsadminpanel.php:335 msgid "SSL server" -msgstr "خادوم SSL" +msgstr "SSL server" -#: actions/pathsadminpanel.php:309 +#: actions/pathsadminpanel.php:336 msgid "Server to direct SSL requests to" msgstr "" -#: actions/pathsadminpanel.php:325 +#: actions/pathsadminpanel.php:352 msgid "Save paths" msgstr "احفظ المسارات" @@ -2251,7 +2559,7 @@ msgid "Full name" msgstr "الاسم الكامل" #: actions/profilesettings.php:115 actions/register.php:453 -#: lib/groupeditform.php:161 +#: lib/applicationeditform.php:228 lib/groupeditform.php:161 msgid "Homepage" msgstr "الصفحه الرئيسية" @@ -2274,7 +2582,7 @@ msgstr "السيرة" #: actions/profilesettings.php:132 actions/register.php:471 #: actions/showgroup.php:256 actions/tagother.php:112 -#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:164 msgid "Location" msgstr "الموقع" @@ -2298,7 +2606,7 @@ msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" -#: actions/profilesettings.php:151 actions/siteadminpanel.php:294 +#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 msgid "Language" msgstr "اللغة" @@ -2324,7 +2632,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "" -#: actions/profilesettings.php:235 actions/siteadminpanel.php:164 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 msgid "Timezone not selected." msgstr "لم تُختر المنطقه الزمنيه." @@ -2337,23 +2645,23 @@ msgstr "" msgid "Invalid tag: \"%s\"" msgstr "وسم غير صالح: \"%s\"" -#: actions/profilesettings.php:302 +#: actions/profilesettings.php:306 msgid "Couldn't update user for autosubscribe." msgstr "" -#: actions/profilesettings.php:359 +#: actions/profilesettings.php:363 msgid "Couldn't save location prefs." msgstr "لم يمكن حفظ تفضيلات الموقع." -#: actions/profilesettings.php:371 +#: actions/profilesettings.php:375 msgid "Couldn't save profile." msgstr "تعذّر حفظ الملف الشخصى." -#: actions/profilesettings.php:379 +#: actions/profilesettings.php:383 msgid "Couldn't save tags." msgstr "تعذّر حفظ الوسوم." -#: actions/profilesettings.php:387 lib/adminpanelaction.php:137 +#: actions/profilesettings.php:391 lib/adminpanelaction.php:137 msgid "Settings saved." msgstr "حُفظت الإعدادات." @@ -2375,36 +2683,36 @@ msgstr "المسار الزمنى العام، صفحه %d" msgid "Public timeline" msgstr "المسار الزمنى العام" -#: actions/public.php:151 +#: actions/public.php:159 msgid "Public Stream Feed (RSS 1.0)" msgstr "" -#: actions/public.php:155 +#: actions/public.php:163 msgid "Public Stream Feed (RSS 2.0)" msgstr "" -#: actions/public.php:159 +#: actions/public.php:167 msgid "Public Stream Feed (Atom)" msgstr "" -#: actions/public.php:179 +#: actions/public.php:187 #, php-format msgid "" "This is the public timeline for %%site.name%% but no one has posted anything " "yet." msgstr "" -#: actions/public.php:182 +#: actions/public.php:190 msgid "Be the first to post!" msgstr "كن أول من يُرسل!" -#: actions/public.php:186 +#: actions/public.php:194 #, php-format msgid "" "Why not [register an account](%%action.register%%) and be the first to post!" msgstr "" -#: actions/public.php:233 +#: actions/public.php:241 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2417,7 +2725,7 @@ msgstr "" "الآن](%%action.register%%) لتشارك اشعاراتك مع أصدقائك وعائلتك وزملائك! " "([اقرأ المزيد](%%doc.help%%))" -#: actions/public.php:238 +#: actions/public.php:246 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2452,7 +2760,7 @@ msgid "" "one!" msgstr "" -#: actions/publictagcloud.php:131 +#: actions/publictagcloud.php:134 msgid "Tag cloud" msgstr "سحابه الوسوم" @@ -2588,7 +2896,7 @@ msgstr "عذرا، رمز دعوه غير صالح." msgid "Registration successful" msgstr "نجح التسجيل" -#: actions/register.php:114 actions/register.php:503 lib/action.php:457 +#: actions/register.php:114 actions/register.php:503 lib/action.php:463 #: lib/logingroupnav.php:85 msgid "Register" msgstr "سجّل" @@ -2628,7 +2936,7 @@ msgid "Same as password above. Required." msgstr "نفس كلمه السر أعلاه. مطلوب." #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:270 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 msgid "Email" msgstr "البريد الإلكتروني" @@ -2712,7 +3020,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:365 +#: lib/userprofile.php:368 msgid "Subscribe" msgstr "اشترك" @@ -2738,17 +3046,17 @@ msgstr "" #: actions/repeat.php:64 actions/repeat.php:71 msgid "No notice specified." -msgstr "لا ملاحظه محدده." +msgstr "ما فيش ملاحظه متحدده." #: actions/repeat.php:76 msgid "You can't repeat your own notice." -msgstr "لا يمكنك تكرار ملاحظتك الشخصيه." +msgstr "ما ينفعش تكرر الملاحظه بتاعتك." #: actions/repeat.php:90 msgid "You already repeated that notice." -msgstr "أنت كررت هذه الملاحظه بالفعل." +msgstr "انت عيدت الملاحظه دى فعلا." -#: actions/repeat.php:114 lib/noticelist.php:629 +#: actions/repeat.php:114 lib/noticelist.php:656 msgid "Repeated" msgstr "مكرر" @@ -2762,6 +3070,11 @@ msgstr "مكرر!" msgid "Replies to %s" msgstr "الردود على %s" +#: actions/replies.php:127 +#, fuzzy, php-format +msgid "Replies to %1$s, page %2$d" +msgstr "الردود على %s" + #: actions/replies.php:144 #, php-format msgid "Replies feed for %s (RSS 1.0)" @@ -2803,6 +3116,10 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "" +#: actions/rsd.php:146 actions/version.php:157 +msgid "StatusNet" +msgstr "StatusNet" + #: actions/sandbox.php:65 actions/unsandbox.php:65 msgid "You cannot sandbox users on this site." msgstr "" @@ -2811,6 +3128,121 @@ msgstr "" msgid "User is already sandboxed." msgstr "" +#: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:336 +msgid "Sessions" +msgstr "الجلسات" + +#: actions/sessionsadminpanel.php:65 +#, fuzzy +msgid "Session settings for this StatusNet site." +msgstr "الإعدادات الأساسيه لموقع StatusNet هذا." + +#: actions/sessionsadminpanel.php:175 +msgid "Handle sessions" +msgstr "" + +#: actions/sessionsadminpanel.php:177 +msgid "Whether to handle sessions ourselves." +msgstr "" + +#: actions/sessionsadminpanel.php:181 +msgid "Session debugging" +msgstr "تنقيح الجلسة" + +#: actions/sessionsadminpanel.php:183 +msgid "Turn on debugging output for sessions." +msgstr "مكّن تنقيح مُخرجات الجلسه." + +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/useradminpanel.php:293 +msgid "Save site settings" +msgstr "اذف إعدادت الموقع" + +#: actions/showapplication.php:82 +msgid "You must be logged in to view an application." +msgstr "لازم تكون مسجل دخولك علشان تشوف اى application." + +#: actions/showapplication.php:157 +msgid "Application profile" +msgstr "" + +#: actions/showapplication.php:159 lib/applicationeditform.php:180 +msgid "Icon" +msgstr "" + +#: actions/showapplication.php:169 actions/version.php:195 +#: lib/applicationeditform.php:195 +msgid "Name" +msgstr "الاسم" + +#: actions/showapplication.php:178 lib/applicationeditform.php:222 +msgid "Organization" +msgstr "المنظمه" + +#: actions/showapplication.php:187 actions/version.php:198 +#: lib/applicationeditform.php:209 lib/groupeditform.php:172 +msgid "Description" +msgstr "الوصف" + +#: actions/showapplication.php:192 actions/showgroup.php:429 +#: lib/profileaction.php:174 +msgid "Statistics" +msgstr "إحصاءات" + +#: actions/showapplication.php:203 +#, php-format +msgid "Created by %1$s - %2$s access by default - %3$d users" +msgstr "" + +#: actions/showapplication.php:213 +msgid "Application actions" +msgstr "" + +#: actions/showapplication.php:236 +msgid "Reset key & secret" +msgstr "" + +#: actions/showapplication.php:261 +msgid "Application info" +msgstr "" + +#: actions/showapplication.php:263 +msgid "Consumer key" +msgstr "" + +#: actions/showapplication.php:268 +msgid "Consumer secret" +msgstr "" + +#: actions/showapplication.php:273 +msgid "Request token URL" +msgstr "" + +#: actions/showapplication.php:278 +msgid "Access token URL" +msgstr "" + +#: actions/showapplication.php:283 +msgid "Authorize URL" +msgstr "اسمح للURL" + +#: actions/showapplication.php:288 +msgid "" +"Note: We support HMAC-SHA1 signatures. We do not support the plaintext " +"signature method." +msgstr "" + +#: actions/showapplication.php:309 +#, fuzzy +msgid "Are you sure you want to reset your consumer key and secret?" +msgstr "أمتأكد من أنك تريد حذف هذا الإشعار؟" + +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%1$s's favorite notices, page %2$d" +msgstr "إشعارات %s المُفضلة" + #: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "" @@ -2864,17 +3296,22 @@ msgstr "إنها إحدى وسائل مشاركه ما تحب." msgid "%s group" msgstr "مجموعه %s" +#: actions/showgroup.php:84 +#, fuzzy, php-format +msgid "%1$s group, page %2$d" +msgstr "%1$s أعضاء المجموعة, الصفحه %2$d" + #: actions/showgroup.php:218 msgid "Group profile" msgstr "ملف المجموعه الشخصي" #: actions/showgroup.php:263 actions/tagother.php:118 -#: actions/userauthorization.php:167 lib/userprofile.php:177 +#: actions/userauthorization.php:175 lib/userprofile.php:177 msgid "URL" msgstr "مسار" #: actions/showgroup.php:274 actions/tagother.php:128 -#: actions/userauthorization.php:179 lib/userprofile.php:194 +#: actions/userauthorization.php:187 lib/userprofile.php:194 msgid "Note" msgstr "ملاحظة" @@ -2920,10 +3357,6 @@ msgstr "(لا شيء)" msgid "All members" msgstr "جميع الأعضاء" -#: actions/showgroup.php:429 lib/profileaction.php:174 -msgid "Statistics" -msgstr "إحصاءات" - #: actions/showgroup.php:432 msgid "Created" msgstr "أنشئ" @@ -2978,6 +3411,11 @@ msgstr "حُذف الإشعار." msgid " tagged %s" msgstr "" +#: actions/showstream.php:79 +#, fuzzy, php-format +msgid "%1$s, page %2$d" +msgstr "%1$s والأصدقاء, الصفحه %2$d" + #: actions/showstream.php:122 #, php-format msgid "Notice feed for %1$s tagged %2$s (RSS 1.0)" @@ -3003,25 +3441,25 @@ msgstr "" msgid "FOAF for %s" msgstr "" -#: actions/showstream.php:191 +#: actions/showstream.php:200 #, php-format msgid "This is the timeline for %1$s but %2$s hasn't posted anything yet." msgstr "" -#: actions/showstream.php:196 +#: actions/showstream.php:205 msgid "" "Seen anything interesting recently? You haven't posted any notices yet, now " "would be a good time to start :)" msgstr "" -#: actions/showstream.php:198 +#: actions/showstream.php:207 #, php-format msgid "" "You can try to nudge %1$s or [post something to his or her attention](%%%%" "action.newnotice%%%%?status_textarea=%2$s)." msgstr "" -#: actions/showstream.php:234 +#: actions/showstream.php:243 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3030,7 +3468,7 @@ msgid "" "follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showstream.php:239 +#: actions/showstream.php:248 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3038,7 +3476,7 @@ msgid "" "[StatusNet](http://status.net/) tool. " msgstr "" -#: actions/showstream.php:313 +#: actions/showstream.php:305 #, php-format msgid "Repeat of %s" msgstr "تكرارات %s" @@ -3055,200 +3493,146 @@ msgstr "المستخدم مسكت من قبل." msgid "Basic settings for this StatusNet site." msgstr "الإعدادات الأساسيه لموقع StatusNet هذا." -#: actions/siteadminpanel.php:146 +#: actions/siteadminpanel.php:132 msgid "Site name must have non-zero length." msgstr "يجب ألا يكون طول اسم الموقع صفرًا." -#: actions/siteadminpanel.php:154 -#, fuzzy +#: actions/siteadminpanel.php:140 msgid "You must have a valid contact email address." -msgstr "يجب أن تملك عنوان بريد إلكترونى صالح للاتصال" +msgstr "لازم يكون عندك عنوان ايميل صالح." -#: actions/siteadminpanel.php:172 -#, fuzzy, php-format +#: actions/siteadminpanel.php:158 +#, php-format msgid "Unknown language \"%s\"." -msgstr "لغه غير معروفه \"%s\"" +msgstr "لغه مش معروفه \"%s\"." -#: actions/siteadminpanel.php:179 +#: actions/siteadminpanel.php:165 msgid "Invalid snapshot report URL." msgstr "" -#: actions/siteadminpanel.php:185 +#: actions/siteadminpanel.php:171 msgid "Invalid snapshot run value." msgstr "" -#: actions/siteadminpanel.php:191 +#: actions/siteadminpanel.php:177 msgid "Snapshot frequency must be a number." msgstr "" -#: actions/siteadminpanel.php:197 +#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "حد النص الأدنى هو 140 حرفًا." -#: actions/siteadminpanel.php:203 +#: actions/siteadminpanel.php:189 msgid "Dupe limit must 1 or more seconds." msgstr "" -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:239 msgid "General" msgstr "عام" -#: actions/siteadminpanel.php:256 +#: actions/siteadminpanel.php:242 msgid "Site name" msgstr "اسم الموقع" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:243 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "اسم موقعك، \"التدوين المصغر لشركتك\" مثلا" -#: actions/siteadminpanel.php:261 +#: actions/siteadminpanel.php:247 msgid "Brought by" msgstr "" -#: actions/siteadminpanel.php:262 +#: actions/siteadminpanel.php:248 msgid "Text used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:266 +#: actions/siteadminpanel.php:252 msgid "Brought by URL" msgstr "" -#: actions/siteadminpanel.php:267 +#: actions/siteadminpanel.php:253 msgid "URL used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:271 +#: actions/siteadminpanel.php:257 msgid "Contact email address for your site" msgstr "عنوان البريد الإلكترونى للاتصال بموقعك" -#: actions/siteadminpanel.php:277 +#: actions/siteadminpanel.php:263 msgid "Local" msgstr "محلي" -#: actions/siteadminpanel.php:288 +#: actions/siteadminpanel.php:274 msgid "Default timezone" msgstr "المنطقه الزمنيه المبدئية" -#: actions/siteadminpanel.php:289 +#: actions/siteadminpanel.php:275 msgid "Default timezone for the site; usually UTC." msgstr "المنطقه الزمنيه المبدئيه للموقع؛ ت‌ع‌م عاده." -#: actions/siteadminpanel.php:295 +#: actions/siteadminpanel.php:281 msgid "Default site language" msgstr "لغه الموقع المبدئية" -#: actions/siteadminpanel.php:303 -msgid "URLs" -msgstr "مسارات" - -#: actions/siteadminpanel.php:306 -msgid "Server" -msgstr "خادوم" - -#: actions/siteadminpanel.php:306 -msgid "Site's server hostname." -msgstr "اسم مضيف خادوم الموقع." - -#: actions/siteadminpanel.php:310 -msgid "Fancy URLs" -msgstr "مسارات فاخرة" - -#: actions/siteadminpanel.php:312 -msgid "Use fancy (more readable and memorable) URLs?" -msgstr "أأستخدم مسارات فاخره (يمكن قراءتها وتذكرها بسهوله أكبر)؟" - -#: actions/siteadminpanel.php:318 -msgid "Access" -msgstr "نفاذ" - -#: actions/siteadminpanel.php:321 -msgid "Private" -msgstr "خاص" - -#: actions/siteadminpanel.php:323 -msgid "Prohibit anonymous users (not logged in) from viewing site?" -msgstr "أأمنع المستخدمين المجهولين (غير الوالجين) من عرض الموقع؟" - -#: actions/siteadminpanel.php:327 -msgid "Invite only" -msgstr "بالدعوه فقط" - -#: actions/siteadminpanel.php:329 -msgid "Make registration invitation only." -msgstr "" - -#: actions/siteadminpanel.php:333 -msgid "Closed" -msgstr "مُغلق" - -#: actions/siteadminpanel.php:335 -msgid "Disable new registrations." -msgstr "عطّل التسجيل الجديد." - -#: actions/siteadminpanel.php:341 +#: actions/siteadminpanel.php:289 msgid "Snapshots" msgstr "" -#: actions/siteadminpanel.php:344 +#: actions/siteadminpanel.php:292 msgid "Randomly during Web hit" msgstr "" -#: actions/siteadminpanel.php:345 +#: actions/siteadminpanel.php:293 msgid "In a scheduled job" msgstr "فى مهمه مُجدولة" -#: actions/siteadminpanel.php:347 +#: actions/siteadminpanel.php:295 msgid "Data snapshots" msgstr "" -#: actions/siteadminpanel.php:348 +#: actions/siteadminpanel.php:296 msgid "When to send statistical data to status.net servers" msgstr "" -#: actions/siteadminpanel.php:353 +#: actions/siteadminpanel.php:301 msgid "Frequency" msgstr "التكرار" -#: actions/siteadminpanel.php:354 +#: actions/siteadminpanel.php:302 msgid "Snapshots will be sent once every N web hits" msgstr "" -#: actions/siteadminpanel.php:359 +#: actions/siteadminpanel.php:307 msgid "Report URL" msgstr "بلّغ عن المسار" -#: actions/siteadminpanel.php:360 +#: actions/siteadminpanel.php:308 msgid "Snapshots will be sent to this URL" msgstr "" -#: actions/siteadminpanel.php:367 +#: actions/siteadminpanel.php:315 msgid "Limits" msgstr "الحدود" -#: actions/siteadminpanel.php:370 +#: actions/siteadminpanel.php:318 msgid "Text limit" msgstr "حد النص" -#: actions/siteadminpanel.php:370 +#: actions/siteadminpanel.php:318 msgid "Maximum number of characters for notices." msgstr "أقصى عدد للحروف فى الإشعارات." -#: actions/siteadminpanel.php:374 +#: actions/siteadminpanel.php:322 msgid "Dupe limit" msgstr "" -#: actions/siteadminpanel.php:374 +#: actions/siteadminpanel.php:322 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" -#: actions/siteadminpanel.php:388 actions/useradminpanel.php:313 -msgid "Save site settings" -msgstr "اذف إعدادت الموقع" - #: actions/smssettings.php:58 -#, fuzzy msgid "SMS settings" -msgstr "إعدادات الرسائل القصيرة" +msgstr "تظبيطات الـSMS" #: actions/smssettings.php:69 #, php-format @@ -3276,9 +3660,8 @@ msgid "Enter the code you received on your phone." msgstr "" #: actions/smssettings.php:138 -#, fuzzy msgid "SMS phone number" -msgstr "لا رقم هاتف." +msgstr "نمرة تليفون الـSMS" #: actions/smssettings.php:140 msgid "Phone number, no punctuation or spaces, with area code" @@ -3343,15 +3726,25 @@ msgstr "" msgid "You are not subscribed to that profile." msgstr "" -#: actions/subedit.php:83 +#: actions/subedit.php:83 classes/Subscription.php:89 +#: classes/Subscription.php:116 msgid "Could not save subscription." msgstr "تعذّر حفظ الاشتراك." -#: actions/subscribe.php:55 -msgid "Not a local user." -msgstr "ليس مُستخدمًا محليًا." +#: actions/subscribe.php:77 +msgid "This action only accepts POST requests." +msgstr "" -#: actions/subscribe.php:69 +#: actions/subscribe.php:107 +#, fuzzy +msgid "No such profile." +msgstr "لا ملف كهذا." + +#: actions/subscribe.php:117 +msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." +msgstr "" + +#: actions/subscribe.php:145 msgid "Subscribed" msgstr "مُشترك" @@ -3361,9 +3754,9 @@ msgid "%s subscribers" msgstr "مشتركو %s" #: actions/subscribers.php:52 -#, fuzzy, php-format +#, php-format msgid "%1$s subscribers, page %2$d" -msgstr "مشتركو %s، الصفحه %d" +msgstr "%1$s مشتركين, صفحه %2$d" #: actions/subscribers.php:63 msgid "These are the people who listen to your notices." @@ -3398,9 +3791,9 @@ msgid "%s subscriptions" msgstr "اشتراكات %s" #: actions/subscriptions.php:54 -#, fuzzy, php-format +#, php-format msgid "%1$s subscriptions, page %2$d" -msgstr "اشتراكات %s، الصفحه %d" +msgstr "%1$s اشتراكات, صفحه %2$d" #: actions/subscriptions.php:65 msgid "These are the people whose notices you listen to." @@ -3411,7 +3804,7 @@ msgstr "هؤلاء الأشخاص الذى تستمع إليهم." msgid "These are the people whose notices %s listens to." msgstr "هؤلاء الأشخاص الذى يستمع %s إليهم." -#: actions/subscriptions.php:121 +#: actions/subscriptions.php:126 #, php-format msgid "" "You're not listening to anyone's notices right now, try subscribing to " @@ -3421,19 +3814,24 @@ msgid "" "automatically subscribe to people you already follow there." msgstr "" -#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#: actions/subscriptions.php:128 actions/subscriptions.php:132 #, php-format msgid "%s is not listening to anyone." msgstr "" -#: actions/subscriptions.php:194 +#: actions/subscriptions.php:199 msgid "Jabber" msgstr "جابر" -#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:204 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "رسائل قصيرة" +#: actions/tag.php:68 +#, fuzzy, php-format +msgid "Notices tagged with %1$s, page %2$d" +msgstr "الإشعارات الموسومه ب%s" + #: actions/tag.php:86 #, php-format msgid "Notice feed for tag %s (RSS 1.0)" @@ -3462,13 +3860,14 @@ msgstr "" msgid "User profile" msgstr "ملف المستخدم الشخصي" -#: actions/tagother.php:81 lib/userprofile.php:102 +#: actions/tagother.php:81 actions/userauthorization.php:132 +#: lib/userprofile.php:102 msgid "Photo" msgstr "صورة" #: actions/tagother.php:141 msgid "Tag user" -msgstr "اوسم المستخدم" +msgstr "اعمل tag لليوزر" #: actions/tagother.php:151 msgid "" @@ -3503,7 +3902,7 @@ msgstr "لم تمنع هذا المستخدم." #: actions/unsandbox.php:72 msgid "User is not sandboxed." -msgstr "المستخدم ليس فى صندوق الرمل." +msgstr "اليوزر مش فى السبوره." #: actions/unsilence.php:72 msgid "User is not silenced." @@ -3517,7 +3916,7 @@ msgstr "" msgid "Unsubscribed" msgstr "" -#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#: actions/updateprofile.php:62 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -3532,84 +3931,64 @@ msgstr "المستخدم" msgid "User settings for this StatusNet site." msgstr "" -#: actions/useradminpanel.php:149 +#: actions/useradminpanel.php:148 msgid "Invalid bio limit. Must be numeric." msgstr "" -#: actions/useradminpanel.php:155 +#: actions/useradminpanel.php:154 msgid "Invalid welcome text. Max length is 255 characters." msgstr "رساله ترحيب غير صالحه. أقصى طول هو 255 حرف." -#: actions/useradminpanel.php:165 +#: actions/useradminpanel.php:164 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 +#: actions/useradminpanel.php:217 lib/accountsettingsaction.php:108 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "الملف الشخصي" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:221 msgid "Bio Limit" msgstr "حد السيرة" -#: actions/useradminpanel.php:223 +#: actions/useradminpanel.php:222 msgid "Maximum length of a profile bio in characters." msgstr "" -#: actions/useradminpanel.php:231 +#: actions/useradminpanel.php:230 msgid "New users" msgstr "مستخدمون جدد" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:234 msgid "New user welcome" msgstr "ترحيب المستخدمين الجدد" -#: actions/useradminpanel.php:236 +#: actions/useradminpanel.php:235 msgid "Welcome text for new users (Max 255 chars)." msgstr "نص الترحيب بالمستخدمين الجدد (255 حرفًا كحد أقصى)." -#: actions/useradminpanel.php:241 +#: actions/useradminpanel.php:240 msgid "Default subscription" msgstr "الاشتراك المبدئي" -#: actions/useradminpanel.php:242 +#: actions/useradminpanel.php:241 msgid "Automatically subscribe new users to this user." msgstr "أشرك المستخدمين الجدد بهذا المستخدم تلقائيًا." -#: actions/useradminpanel.php:251 +#: actions/useradminpanel.php:250 msgid "Invitations" msgstr "الدعوات" -#: actions/useradminpanel.php:256 +#: actions/useradminpanel.php:255 msgid "Invitations enabled" msgstr "الدعوات مُفعلة" -#: actions/useradminpanel.php:258 +#: actions/useradminpanel.php:257 msgid "Whether to allow users to invite new users." msgstr "" -#: actions/useradminpanel.php:265 -msgid "Sessions" -msgstr "الجلسات" - -#: actions/useradminpanel.php:270 -msgid "Handle sessions" -msgstr "" - -#: actions/useradminpanel.php:272 -msgid "Whether to handle sessions ourselves." -msgstr "" - -#: actions/useradminpanel.php:276 -msgid "Session debugging" -msgstr "تنقيح الجلسة" - -#: actions/useradminpanel.php:278 -msgid "Turn on debugging output for sessions." -msgstr "مكّن تنقيح مُخرجات الجلسه." - #: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "" @@ -3621,84 +4000,84 @@ msgid "" "click “Reject”." msgstr "" -#: actions/userauthorization.php:188 actions/version.php:165 +#: actions/userauthorization.php:196 actions/version.php:165 msgid "License" msgstr "الرخصة" -#: actions/userauthorization.php:209 +#: actions/userauthorization.php:217 msgid "Accept" msgstr "اقبل" -#: actions/userauthorization.php:210 lib/subscribeform.php:115 +#: actions/userauthorization.php:218 lib/subscribeform.php:115 #: lib/subscribeform.php:139 msgid "Subscribe to this user" msgstr "اشترك بهذا المستخدم" -#: actions/userauthorization.php:211 +#: actions/userauthorization.php:219 msgid "Reject" msgstr "ارفض" -#: actions/userauthorization.php:212 +#: actions/userauthorization.php:220 msgid "Reject this subscription" msgstr "ارفض هذا الاشتراك" -#: actions/userauthorization.php:225 +#: actions/userauthorization.php:232 msgid "No authorization request!" msgstr "لا طلب استيثاق!" -#: actions/userauthorization.php:247 +#: actions/userauthorization.php:254 msgid "Subscription authorized" msgstr "" -#: actions/userauthorization.php:249 +#: actions/userauthorization.php:256 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 +#: actions/userauthorization.php:266 msgid "Subscription rejected" msgstr "رُفض الاشتراك" -#: actions/userauthorization.php:261 +#: actions/userauthorization.php:268 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 +#: actions/userauthorization.php:303 #, php-format msgid "Listener URI ‘%s’ not found here." msgstr "" -#: actions/userauthorization.php:301 +#: actions/userauthorization.php:308 #, php-format msgid "Listenee URI ‘%s’ is too long." msgstr "" -#: actions/userauthorization.php:307 +#: actions/userauthorization.php:314 #, php-format msgid "Listenee URI ‘%s’ is a local user." msgstr "" -#: actions/userauthorization.php:322 +#: actions/userauthorization.php:329 #, php-format msgid "Profile URL ‘%s’ is for a local user." msgstr "" -#: actions/userauthorization.php:338 +#: actions/userauthorization.php:345 #, php-format msgid "Avatar URL ‘%s’ is not valid." msgstr "" -#: actions/userauthorization.php:343 +#: actions/userauthorization.php:350 #, php-format msgid "Can’t read avatar URL ‘%s’." msgstr "" -#: actions/userauthorization.php:348 +#: actions/userauthorization.php:355 #, php-format msgid "Wrong image type for avatar URL ‘%s’." msgstr "" @@ -3717,6 +4096,11 @@ msgstr "" msgid "Enjoy your hotdog!" msgstr "استمتع بالنقانق!" +#: actions/usergroups.php:64 +#, fuzzy, php-format +msgid "%1$s groups, page %2$d" +msgstr "%1$s أعضاء المجموعة, الصفحه %2$d" + #: actions/usergroups.php:130 msgid "Search for more groups" msgstr "" @@ -3732,9 +4116,9 @@ msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" #: actions/version.php:73 -#, fuzzy, php-format +#, php-format msgid "StatusNet %s" -msgstr "إحصاءات" +msgstr "StatusNet %s" #: actions/version.php:153 #, php-format @@ -3743,11 +4127,6 @@ msgid "" "Inc. and contributors." msgstr "" -#: actions/version.php:157 -#, fuzzy -msgid "StatusNet" -msgstr "حُذِفت الحاله." - #: actions/version.php:161 msgid "Contributors" msgstr "" @@ -3779,24 +4158,13 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:195 -#, fuzzy -msgid "Name" -msgstr "الاسم المستعار" - -#: actions/version.php:196 lib/action.php:741 -#, fuzzy +#: actions/version.php:196 lib/action.php:747 msgid "Version" -msgstr "الجلسات" +msgstr "النسخه" #: actions/version.php:197 -#, fuzzy msgid "Author(s)" -msgstr "المؤلف" - -#: actions/version.php:198 lib/groupeditform.php:172 -msgid "Description" -msgstr "الوصف" +msgstr "المؤلف/ين" #: classes/File.php:144 #, php-format @@ -3816,24 +4184,21 @@ msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" #: classes/Group_member.php:41 -#, fuzzy msgid "Group join failed." -msgstr "ملف المجموعه الشخصي" +msgstr "دخول الجروپ فشل." #: classes/Group_member.php:53 -#, fuzzy msgid "Not part of group." -msgstr "تعذر تحديث المجموعه." +msgstr "مش جزء من الجروپ." #: classes/Group_member.php:60 -#, fuzzy msgid "Group leave failed." -msgstr "ملف المجموعه الشخصي" +msgstr "الخروج من الجروپ فشل." #: classes/Login_token.php:76 #, php-format msgid "Could not create login token for %s" -msgstr "لم يمكن إنشاء توكن الولوج ل%s" +msgstr "ما نفعش يتعمل امارة تسجيل دخول لـ %s" #: classes/Message.php:45 msgid "You are banned from sending direct messages." @@ -3847,58 +4212,82 @@ msgstr "تعذّر إدراج الرساله." msgid "Could not update message with new URI." msgstr "" -#: classes/Notice.php:171 +#: classes/Notice.php:157 #, php-format msgid "DB error inserting hashtag: %s" msgstr "" -#: classes/Notice.php:225 +#: classes/Notice.php:222 msgid "Problem saving notice. Too long." msgstr "مشكله فى حفظ الإشعار. طويل جدًا." -#: classes/Notice.php:229 +#: classes/Notice.php:226 msgid "Problem saving notice. Unknown user." msgstr "مشكله فى حفظ الإشعار. مستخدم غير معروف." -#: classes/Notice.php:234 +#: classes/Notice.php:231 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: classes/Notice.php:240 +#: classes/Notice.php:237 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." msgstr "" -#: classes/Notice.php:246 +#: classes/Notice.php:243 msgid "You are banned from posting notices on this site." msgstr "" -#: classes/Notice.php:305 classes/Notice.php:330 +#: classes/Notice.php:309 classes/Notice.php:335 msgid "Problem saving notice." msgstr "مشكله أثناء حفظ الإشعار." -#: classes/Notice.php:1052 -#, php-format -msgid "DB error inserting reply: %s" -msgstr "" +#: classes/Notice.php:882 +#, fuzzy +msgid "Problem saving group inbox." +msgstr "مشكله أثناء حفظ الإشعار." -#: classes/Notice.php:1423 +#: classes/Notice.php:1407 #, php-format msgid "RT @%1$s %2$s" msgstr "آر تى @%1$s %2$s" -#: classes/User.php:382 +#: classes/Subscription.php:66 lib/oauthstore.php:465 +msgid "You have been banned from subscribing." +msgstr "" + +#: classes/Subscription.php:70 +msgid "Already subscribed!" +msgstr "مُشترك أصلا!" + +#: classes/Subscription.php:74 +msgid "User has blocked you." +msgstr "لقد منعك المستخدم." + +#: classes/Subscription.php:157 +msgid "Not subscribed!" +msgstr "غير مشترك!" + +#: classes/Subscription.php:163 +msgid "Couldn't delete self-subscription." +msgstr "ما نفعش يمسح الاشتراك الشخصى." + +#: classes/Subscription.php:179 lib/subs.php:69 +msgid "Couldn't delete subscription." +msgstr "تعذّر حذف الاشتراك." + +#: classes/User.php:372 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "أهلا بكم فى %1$s يا @%2$s!" -#: classes/User_group.php:380 +#: classes/User_group.php:423 msgid "Could not create group." msgstr "تعذّر إنشاء المجموعه." -#: classes/User_group.php:409 +#: classes/User_group.php:452 msgid "Could not set group membership." msgstr "تعذّر ضبط عضويه المجموعه." @@ -3931,136 +4320,132 @@ msgid "Other options" msgstr "خيارات أخرى" #: lib/action.php:144 -#, fuzzy, php-format +#, php-format msgid "%1$s - %2$s" -msgstr "%1$s (%2$s)" +msgstr "%1$s - %2$s" #: lib/action.php:159 msgid "Untitled page" msgstr "صفحه غير مُعنونة" -#: lib/action.php:427 +#: lib/action.php:433 msgid "Primary site navigation" msgstr "" -#: lib/action.php:433 +#: lib/action.php:439 msgid "Home" msgstr "الرئيسية" -#: lib/action.php:433 +#: lib/action.php:439 msgid "Personal profile and friends timeline" msgstr "الملف الشخصى ومسار الأصدقاء الزمني" -#: lib/action.php:435 -msgid "Account" -msgstr "الحساب" - -#: lib/action.php:435 +#: lib/action.php:441 msgid "Change your email, avatar, password, profile" msgstr "" -#: lib/action.php:438 +#: lib/action.php:444 msgid "Connect" msgstr "اتصل" -#: lib/action.php:438 +#: lib/action.php:444 msgid "Connect to services" msgstr "" -#: lib/action.php:442 +#: lib/action.php:448 msgid "Change site configuration" msgstr "غيّر ضبط الموقع" -#: lib/action.php:446 lib/subgroupnav.php:105 +#: lib/action.php:452 lib/subgroupnav.php:105 msgid "Invite" msgstr "ادعُ" -#: lib/action.php:447 lib/subgroupnav.php:106 +#: lib/action.php:453 lib/subgroupnav.php:106 #, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "" -#: lib/action.php:452 +#: lib/action.php:458 msgid "Logout" msgstr "اخرج" -#: lib/action.php:452 +#: lib/action.php:458 msgid "Logout from the site" msgstr "اخرج من الموقع" -#: lib/action.php:457 +#: lib/action.php:463 msgid "Create an account" msgstr "أنشئ حسابًا" -#: lib/action.php:460 +#: lib/action.php:466 msgid "Login to the site" msgstr "لُج إلى الموقع" -#: lib/action.php:463 lib/action.php:726 +#: lib/action.php:469 lib/action.php:732 msgid "Help" msgstr "مساعدة" -#: lib/action.php:463 +#: lib/action.php:469 msgid "Help me!" msgstr "ساعدني!" -#: lib/action.php:466 lib/searchaction.php:127 +#: lib/action.php:472 lib/searchaction.php:127 msgid "Search" msgstr "ابحث" -#: lib/action.php:466 +#: lib/action.php:472 msgid "Search for people or text" msgstr "ابحث عن أشخاص أو نص" -#: lib/action.php:487 +#: lib/action.php:493 msgid "Site notice" msgstr "إشعار الموقع" -#: lib/action.php:553 +#: lib/action.php:559 msgid "Local views" msgstr "المشاهدات المحلية" -#: lib/action.php:619 +#: lib/action.php:625 msgid "Page notice" msgstr "إشعار الصفحة" -#: lib/action.php:721 +#: lib/action.php:727 msgid "Secondary site navigation" msgstr "" -#: lib/action.php:728 +#: lib/action.php:734 msgid "About" msgstr "عن" -#: lib/action.php:730 +#: lib/action.php:736 msgid "FAQ" msgstr "الأسئله المكررة" -#: lib/action.php:734 +#: lib/action.php:740 msgid "TOS" msgstr "الشروط" -#: lib/action.php:737 +#: lib/action.php:743 msgid "Privacy" msgstr "خصوصية" -#: lib/action.php:739 +#: lib/action.php:745 msgid "Source" msgstr "المصدر" -#: lib/action.php:743 +#: lib/action.php:749 msgid "Contact" msgstr "اتصل" -#: lib/action.php:745 +#: lib/action.php:751 msgid "Badge" msgstr "" -#: lib/action.php:773 +#: lib/action.php:779 msgid "StatusNet software license" msgstr "" -#: lib/action.php:776 +#: lib/action.php:782 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4069,12 +4454,12 @@ msgstr "" "**%%site.name%%** خدمه تدوين مصغر يقدمها لك [%%site.broughtby%%](%%site." "broughtbyurl%%). " -#: lib/action.php:778 +#: lib/action.php:784 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "" -#: lib/action.php:780 +#: lib/action.php:786 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4085,32 +4470,54 @@ msgstr "" "المتوفر تحت [رخصه غنو أفيرو العمومية](http://www.fsf.org/licensing/licenses/" "agpl-3.0.html)." -#: lib/action.php:794 +#: lib/action.php:801 msgid "Site content license" msgstr "رخصه محتوى الموقع" -#: lib/action.php:803 +#: lib/action.php:806 +#, php-format +msgid "Content and data of %1$s are private and confidential." +msgstr "" + +#: lib/action.php:811 +#, php-format +msgid "Content and data copyright by %1$s. All rights reserved." +msgstr "" + +#: lib/action.php:814 +msgid "Content and data copyright by contributors. All rights reserved." +msgstr "" + +#: lib/action.php:827 msgid "All " msgstr "" -#: lib/action.php:808 +#: lib/action.php:833 msgid "license." msgstr "الرخصه." -#: lib/action.php:1102 +#: lib/action.php:1132 msgid "Pagination" msgstr "" -#: lib/action.php:1111 +#: lib/action.php:1141 msgid "After" msgstr "بعد" -#: lib/action.php:1119 +#: lib/action.php:1149 msgid "Before" msgstr "قبل" -#: lib/action.php:1167 -msgid "There was a problem with your session token." +#: lib/activity.php:382 +msgid "Can't handle remote content yet." +msgstr "" + +#: lib/activity.php:410 +msgid "Can't handle embedded XML content yet." +msgstr "" + +#: lib/activity.php:414 +msgid "Can't handle embedded Base64 content yet." msgstr "" #: lib/adminpanelaction.php:96 @@ -4118,9 +4525,8 @@ msgid "You cannot make changes to this site." msgstr "" #: lib/adminpanelaction.php:107 -#, fuzzy msgid "Changes to that panel are not allowed." -msgstr "لا يُسمح بالتسجيل." +msgstr "التغييرات مش مسموحه للـ لوحه دى." #: lib/adminpanelaction.php:206 msgid "showForm() not implemented." @@ -4142,10 +4548,99 @@ msgstr "ضبط الموقع الأساسي" msgid "Design configuration" msgstr "ضبط التصميم" -#: lib/adminpanelaction.php:322 lib/adminpanelaction.php:327 +#: lib/adminpanelaction.php:322 +#, fuzzy +msgid "User configuration" +msgstr "ضبط المسارات" + +#: lib/adminpanelaction.php:327 +#, fuzzy +msgid "Access configuration" +msgstr "ضبط التصميم" + +#: lib/adminpanelaction.php:332 msgid "Paths configuration" msgstr "ضبط المسارات" +#: lib/adminpanelaction.php:337 +#, fuzzy +msgid "Sessions configuration" +msgstr "ضبط التصميم" + +#: lib/apiauth.php:95 +msgid "API resource requires read-write access, but you only have read access." +msgstr "" + +#: lib/apiauth.php:273 +#, php-format +msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" +msgstr "" + +#: lib/applicationeditform.php:136 +msgid "Edit application" +msgstr "" + +#: lib/applicationeditform.php:184 +msgid "Icon for this application" +msgstr "" + +#: lib/applicationeditform.php:204 +#, php-format +msgid "Describe your application in %d characters" +msgstr "" + +#: lib/applicationeditform.php:207 +msgid "Describe your application" +msgstr "اوصف الapplication بتاعتك" + +#: lib/applicationeditform.php:216 +msgid "Source URL" +msgstr "Source URL" + +#: lib/applicationeditform.php:218 +msgid "URL of the homepage of this application" +msgstr "" + +#: lib/applicationeditform.php:224 +msgid "Organization responsible for this application" +msgstr "" + +#: lib/applicationeditform.php:230 +msgid "URL for the homepage of the organization" +msgstr "" + +#: lib/applicationeditform.php:236 +msgid "URL to redirect to after authentication" +msgstr "" + +#: lib/applicationeditform.php:258 +msgid "Browser" +msgstr "" + +#: lib/applicationeditform.php:274 +msgid "Desktop" +msgstr "" + +#: lib/applicationeditform.php:275 +msgid "Type of application, browser or desktop" +msgstr "" + +#: lib/applicationeditform.php:297 +msgid "Read-only" +msgstr "" + +#: lib/applicationeditform.php:315 +msgid "Read-write" +msgstr "" + +#: lib/applicationeditform.php:316 +msgid "Default access for this application: read-only, or read-write" +msgstr "" + +#: lib/applicationlist.php:154 +msgid "Revoke" +msgstr "بطّل" + #: lib/attachmentlist.php:87 msgid "Attachments" msgstr "مرفقات" @@ -4166,15 +4661,13 @@ msgstr "" msgid "Tags for this attachment" msgstr "وسوم هذا المرفق" -#: lib/authenticationplugin.php:182 lib/authenticationplugin.php:187 -#, fuzzy +#: lib/authenticationplugin.php:218 lib/authenticationplugin.php:223 msgid "Password changing failed" -msgstr "تغيير كلمه السر" +msgstr "تغيير الپاسوورد فشل" -#: lib/authenticationplugin.php:197 -#, fuzzy +#: lib/authenticationplugin.php:233 msgid "Password changing is not allowed" -msgstr "تغيير كلمه السر" +msgstr "تغيير الپاسوورد مش مسموح" #: lib/channel.php:138 lib/channel.php:158 msgid "Command results" @@ -4193,18 +4686,18 @@ msgid "Sorry, this command is not yet implemented." msgstr "" #: lib/command.php:88 -#, fuzzy, php-format +#, php-format msgid "Could not find a user with nickname %s" -msgstr "تعذّر إيجاد المستخدم الهدف." +msgstr "ما نفعش يلاقى يوزر بإسم %s" #: lib/command.php:92 msgid "It does not make a lot of sense to nudge yourself!" msgstr "" #: lib/command.php:99 -#, fuzzy, php-format +#, php-format msgid "Nudge sent to %s" -msgstr "أرسل التنبيه" +msgstr "Nudge اتبعتت لـ %s" #: lib/command.php:126 #, php-format @@ -4218,9 +4711,8 @@ msgstr "" "الإشعارات: %3$s" #: lib/command.php:152 lib/command.php:390 lib/command.php:451 -#, fuzzy msgid "Notice with that id does not exist" -msgstr "لا ملف بهذه الهويه." +msgstr "الملاحظه بالـID ده مالهاش وجود" #: lib/command.php:168 lib/command.php:406 lib/command.php:467 #: lib/command.php:523 @@ -4232,14 +4724,13 @@ msgid "Notice marked as fave." msgstr "" #: lib/command.php:217 -#, fuzzy msgid "You are already a member of that group" -msgstr "لست عضوا فى تلك المجموعه." +msgstr "انت اصلا عضو فى الجروپ ده" #: lib/command.php:231 -#, fuzzy, php-format +#, php-format msgid "Could not join user %s to group %s" -msgstr "تعذّر إنشاء المجموعه." +msgstr "ما نفعش يدخل اليوزر %s لجروپ %s" #: lib/command.php:236 #, php-format @@ -4247,14 +4738,14 @@ msgid "%s joined group %s" msgstr "%s انضم إلى مجموعه %s" #: lib/command.php:275 -#, fuzzy, php-format +#, php-format msgid "Could not remove user %s to group %s" -msgstr "تعذّر إنشاء المجموعه." +msgstr "ما نفعش يشيل اليوزر %s لجروپ %s" #: lib/command.php:280 -#, fuzzy, php-format +#, php-format msgid "%s left group %s" -msgstr "%s انضم إلى مجموعه %s" +msgstr "%s ساب الجروپ %s" #: lib/command.php:309 #, php-format @@ -4282,18 +4773,17 @@ msgid "Message too long - maximum is %d characters, you sent %d" msgstr "" #: lib/command.php:367 -#, fuzzy, php-format +#, php-format msgid "Direct message to %s sent" -msgstr "رساله مباشره %s" +msgstr "رساله مباشره اتبعتت لـ %s" #: lib/command.php:369 msgid "Error sending direct message." msgstr "" #: lib/command.php:413 -#, fuzzy msgid "Cannot repeat your own notice" -msgstr "لا يمكنك تكرار ملحوظتك الخاصه." +msgstr "الملاحظه بتاعتك مش نافعه تتكرر" #: lib/command.php:418 msgid "Already repeated that notice" @@ -4326,54 +4816,64 @@ msgstr "خطأ أثناء حفظ الإشعار." msgid "Specify the name of the user to subscribe to" msgstr "" -#: lib/command.php:554 +#: lib/command.php:554 lib/command.php:589 +#, fuzzy +msgid "No such user" +msgstr "لا مستخدم كهذا." + +#: lib/command.php:561 #, php-format msgid "Subscribed to %s" msgstr "مُشترك ب%s" -#: lib/command.php:575 +#: lib/command.php:582 lib/command.php:685 msgid "Specify the name of the user to unsubscribe from" msgstr "" -#: lib/command.php:582 +#: lib/command.php:595 #, php-format msgid "Unsubscribed from %s" msgstr "" -#: lib/command.php:600 lib/command.php:623 +#: lib/command.php:613 lib/command.php:636 msgid "Command not yet implemented." msgstr "" -#: lib/command.php:603 +#: lib/command.php:616 msgid "Notification off." msgstr "" -#: lib/command.php:605 +#: lib/command.php:618 msgid "Can't turn off notification." msgstr "" -#: lib/command.php:626 +#: lib/command.php:639 msgid "Notification on." msgstr "" -#: lib/command.php:628 +#: lib/command.php:641 msgid "Can't turn on notification." msgstr "" -#: lib/command.php:641 +#: lib/command.php:654 msgid "Login command is disabled" msgstr "" -#: lib/command.php:652 +#: lib/command.php:665 #, php-format msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "" -#: lib/command.php:668 +#: lib/command.php:692 +#, fuzzy, php-format +msgid "Unsubscribed %s" +msgstr "ألغِ الاشتراك" + +#: lib/command.php:709 msgid "You are not subscribed to anyone." msgstr "لست مُشتركًا بأى أحد." -#: lib/command.php:670 +#: lib/command.php:711 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "لست مشتركًا بأحد." @@ -4383,11 +4883,11 @@ msgstr[3] "أنت مشترك بهؤلاء الأشخاص:" msgstr[4] "" msgstr[5] "" -#: lib/command.php:690 +#: lib/command.php:731 msgid "No one is subscribed to you." msgstr "لا أحد مشترك بك." -#: lib/command.php:692 +#: lib/command.php:733 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "لا أحد مشترك بك." @@ -4397,11 +4897,11 @@ msgstr[3] "هؤلاء الأشخاص مشتركون بك:" msgstr[4] "" msgstr[5] "" -#: lib/command.php:712 +#: lib/command.php:753 msgid "You are not a member of any groups." msgstr "لست عضوًا فى أى مجموعه." -#: lib/command.php:714 +#: lib/command.php:755 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "لست عضوًا فى أى مجموعه." @@ -4411,7 +4911,7 @@ msgstr[3] "أنت عضو فى هذه المجموعات:" msgstr[4] "" msgstr[5] "" -#: lib/command.php:728 +#: lib/command.php:769 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -4425,6 +4925,7 @@ msgid "" "d - direct message to user\n" "get - get last notice from user\n" "whois - get profile info on user\n" +"lose - force user to stop following you\n" "fav - add user's last notice as a 'fave'\n" "fav # - add notice with the given id as a 'fave'\n" "repeat # - repeat a notice with a given id\n" @@ -4452,19 +4953,19 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:131 +#: lib/common.php:136 msgid "No configuration file found. " msgstr "" -#: lib/common.php:132 +#: lib/common.php:137 msgid "I looked for configuration files in the following places: " msgstr "" -#: lib/common.php:134 +#: lib/common.php:139 msgid "You may wish to run the installer to fix this." msgstr "" -#: lib/common.php:135 +#: lib/common.php:140 msgid "Go to the installer." msgstr "اذهب إلى المُثبّت." @@ -4480,6 +4981,14 @@ msgstr "" msgid "Updates by SMS" msgstr "" +#: lib/connectsettingsaction.php:120 +msgid "Connections" +msgstr "كونيكشونات (Connections)" + +#: lib/connectsettingsaction.php:121 +msgid "Authorized connected applications" +msgstr "" + #: lib/dberroraction.php:60 msgid "Database error" msgstr "خطأ قاعده بيانات" @@ -4662,15 +5171,15 @@ msgstr "ميجابايت" msgid "kB" msgstr "كيلوبايت" -#: lib/jabber.php:202 +#: lib/jabber.php:220 #, php-format msgid "[%s]" msgstr "[%s]" -#: lib/jabber.php:385 -#, fuzzy, php-format +#: lib/jabber.php:400 +#, php-format msgid "Unknown inbox source %d." -msgstr "لغه غير معروفه \"%s\"" +msgstr "مصدر الـinbox مش معروف %d." #: lib/joinform.php:114 msgid "Join" @@ -4730,9 +5239,9 @@ msgid "" msgstr "" #: lib/mail.php:258 -#, fuzzy, php-format +#, php-format msgid "Bio: %s" -msgstr "السيرة: %s\n" +msgstr "عن نفسك: %s" #: lib/mail.php:286 #, php-format @@ -4862,7 +5371,7 @@ msgid "" "users in conversation. People can send you messages for your eyes only." msgstr "" -#: lib/mailbox.php:227 lib/noticelist.php:477 +#: lib/mailbox.php:227 lib/noticelist.php:482 msgid "from" msgstr "من" @@ -4883,9 +5392,9 @@ msgid "Sorry, no incoming email allowed." msgstr "" #: lib/mailhandler.php:228 -#, fuzzy, php-format +#, php-format msgid "Unsupported message type: %s" -msgstr "نسق غير مدعوم." +msgstr "نوع رساله مش مدعوم: %s" #: lib/mediafile.php:98 lib/mediafile.php:123 msgid "There was a database error while saving your file. Please try again." @@ -4926,9 +5435,8 @@ 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 "تعذّر حذف المفضله." +msgstr "مش نافع يتحدد نوع الـMIME بتاع الفايل." #: lib/mediafile.php:270 #, php-format @@ -4970,67 +5478,61 @@ msgid "Attach a file" msgstr "أرفق ملفًا" #: lib/noticeform.php:212 -#, fuzzy msgid "Share my location" -msgstr "لم يمكن حفظ تفضيلات الموقع." +msgstr "اعمل مشاركه لمكانى" #: lib/noticeform.php:215 -#, fuzzy msgid "Do not share my location" -msgstr "لم يمكن حفظ تفضيلات الموقع." +msgstr "ما تعملش مشاركه لمكانى" #: lib/noticeform.php:216 -msgid "Hide this info" -msgstr "" - -#: lib/noticeform.php:217 msgid "" "Sorry, retrieving your geo location is taking longer than expected, please " "try again later" msgstr "" -#: lib/noticelist.php:428 +#: lib/noticelist.php:429 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "" -#: lib/noticelist.php:429 +#: lib/noticelist.php:430 msgid "N" msgstr "ش" -#: lib/noticelist.php:429 +#: lib/noticelist.php:430 msgid "S" msgstr "ج" -#: lib/noticelist.php:430 +#: lib/noticelist.php:431 msgid "E" msgstr "ر" -#: lib/noticelist.php:430 +#: lib/noticelist.php:431 msgid "W" msgstr "غ" -#: lib/noticelist.php:436 +#: lib/noticelist.php:438 msgid "at" msgstr "في" -#: lib/noticelist.php:531 +#: lib/noticelist.php:558 msgid "in context" msgstr "فى السياق" -#: lib/noticelist.php:556 +#: lib/noticelist.php:583 msgid "Repeated by" -msgstr "مكرر بواسطة" +msgstr "متكرر من" -#: lib/noticelist.php:585 +#: lib/noticelist.php:610 msgid "Reply to this notice" msgstr "رُد على هذا الإشعار" -#: lib/noticelist.php:586 +#: lib/noticelist.php:611 msgid "Reply" msgstr "رُد" -#: lib/noticelist.php:628 +#: lib/noticelist.php:655 msgid "Notice repeated" msgstr "الإشعار مكرر" @@ -5062,11 +5564,7 @@ msgstr "خطأ أثناء إدراج الملف الشخصى البعيد" msgid "Duplicate notice" msgstr "ضاعف الإشعار" -#: lib/oauthstore.php:466 lib/subs.php:48 -msgid "You have been banned from subscribing." -msgstr "" - -#: lib/oauthstore.php:491 +#: lib/oauthstore.php:490 msgid "Couldn't insert new subscription." msgstr "تعذّر إدراج اشتراك جديد." @@ -5082,19 +5580,19 @@ msgstr "الردود" msgid "Favorites" msgstr "المفضلات" -#: lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "صندوق الوارد" -#: lib/personalgroupnav.php:125 +#: lib/personalgroupnav.php:126 msgid "Your incoming messages" msgstr "رسائلك الواردة" -#: lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 msgid "Outbox" msgstr "صندوق الصادر" -#: lib/personalgroupnav.php:130 +#: lib/personalgroupnav.php:131 msgid "Your sent messages" msgstr "رسائلك المُرسلة" @@ -5104,9 +5602,8 @@ msgid "Tags in %s's notices" msgstr "" #: lib/plugin.php:114 -#, fuzzy msgid "Unknown" -msgstr "إجراء غير معروف" +msgstr "مش معروف" #: lib/profileaction.php:109 lib/profileaction.php:192 lib/subgroupnav.php:82 msgid "Subscriptions" @@ -5172,6 +5669,10 @@ msgstr "كرر هذا الإشعار؟" msgid "Repeat this notice" msgstr "كرر هذا الإشعار" +#: lib/router.php:665 +msgid "No single user defined for single-user mode." +msgstr "" + #: lib/sandboxform.php:67 msgid "Sandbox" msgstr "" @@ -5239,34 +5740,6 @@ msgstr "الأشخاص المشتركون ب%s" msgid "Groups %s is a member of" msgstr "المجموعات التى %s عضو فيها" -#: lib/subs.php:52 -msgid "Already subscribed!" -msgstr "مُشترك أصلا!" - -#: lib/subs.php:56 -msgid "User has blocked you." -msgstr "لقد منعك المستخدم." - -#: lib/subs.php:63 -msgid "Could not subscribe." -msgstr "تعذّر الاشتراك." - -#: lib/subs.php:82 -msgid "Could not subscribe other to you." -msgstr "" - -#: lib/subs.php:137 -msgid "Not subscribed!" -msgstr "غير مشترك!" - -#: lib/subs.php:142 -msgid "Couldn't delete self-subscription." -msgstr "لم يمكن حذف اشتراك ذاتى." - -#: lib/subs.php:158 -msgid "Couldn't delete subscription." -msgstr "تعذّر حذف الاشتراك." - #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -5317,67 +5790,67 @@ msgstr "عدّل الأفتار" msgid "User actions" msgstr "تصرفات المستخدم" -#: lib/userprofile.php:248 +#: lib/userprofile.php:251 msgid "Edit profile settings" msgstr "عدّل إعدادات الملف الشخصي" -#: lib/userprofile.php:249 +#: lib/userprofile.php:252 msgid "Edit" msgstr "عدّل" -#: lib/userprofile.php:272 +#: lib/userprofile.php:275 msgid "Send a direct message to this user" msgstr "أرسل رساله مباشره إلى هذا المستخدم" -#: lib/userprofile.php:273 +#: lib/userprofile.php:276 msgid "Message" msgstr "رسالة" -#: lib/userprofile.php:311 +#: lib/userprofile.php:314 msgid "Moderate" msgstr "" -#: lib/util.php:877 +#: lib/util.php:952 msgid "a few seconds ago" msgstr "قبل لحظات قليلة" -#: lib/util.php:879 +#: lib/util.php:954 msgid "about a minute ago" msgstr "قبل دقيقه تقريبًا" -#: lib/util.php:881 +#: lib/util.php:956 #, php-format msgid "about %d minutes ago" msgstr "" -#: lib/util.php:883 +#: lib/util.php:958 msgid "about an hour ago" msgstr "قبل ساعه تقريبًا" -#: lib/util.php:885 +#: lib/util.php:960 #, php-format msgid "about %d hours ago" msgstr "" -#: lib/util.php:887 +#: lib/util.php:962 msgid "about a day ago" msgstr "قبل يوم تقريبا" -#: lib/util.php:889 +#: lib/util.php:964 #, php-format msgid "about %d days ago" msgstr "" -#: lib/util.php:891 +#: lib/util.php:966 msgid "about a month ago" msgstr "قبل شهر تقريبًا" -#: lib/util.php:893 +#: lib/util.php:968 #, php-format msgid "about %d months ago" msgstr "" -#: lib/util.php:895 +#: lib/util.php:970 msgid "about a year ago" msgstr "قبل سنه تقريبًا" @@ -5391,7 +5864,7 @@ msgstr "%s ليس لونًا صحيحًا!" msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "" -#: scripts/xmppdaemon.php:301 +#: lib/xmppmanager.php:402 #, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "" diff --git a/locale/bg/LC_MESSAGES/statusnet.po b/locale/bg/LC_MESSAGES/statusnet.po index 7fe8ac423c..3cb1216285 100644 --- a/locale/bg/LC_MESSAGES/statusnet.po +++ b/locale/bg/LC_MESSAGES/statusnet.po @@ -9,17 +9,69 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-01-13 22:04+0000\n" -"PO-Revision-Date: 2010-01-13 22:04:47+0000\n" +"POT-Creation-Date: 2010-02-24 23:49+0000\n" +"PO-Revision-Date: 2010-02-24 23:50:11+0000\n" "Language-Team: Bulgarian\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha (r61027); Translate extension (2010-01-04)\n" +"X-Generator: MediaWiki 1.17alpha (r62925); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: bg\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: actions/accessadminpanel.php:54 lib/adminpanelaction.php:326 +msgid "Access" +msgstr "Достъп" + +#: actions/accessadminpanel.php:65 +msgid "Site access settings" +msgstr "Настройки за достъп до сайта" + +#: actions/accessadminpanel.php:158 +msgid "Registration" +msgstr "Регистриране" + +#: actions/accessadminpanel.php:161 +msgid "Private" +msgstr "Частен" + +#: actions/accessadminpanel.php:163 +msgid "Prohibit anonymous users (not logged in) from viewing site?" +msgstr "" + +#: actions/accessadminpanel.php:167 +msgid "Invite only" +msgstr "Само с покани" + +#: actions/accessadminpanel.php:169 +msgid "Make registration invitation only." +msgstr "Новите регистрации да са само с покани." + +#: actions/accessadminpanel.php:173 +msgid "Closed" +msgstr "Затворен" + +#: actions/accessadminpanel.php:175 +msgid "Disable new registrations." +msgstr "Изключване на новите регистрации." + +#: actions/accessadminpanel.php:189 actions/designadminpanel.php:586 +#: actions/emailsettings.php:195 actions/imsettings.php:163 +#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 +#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 +#: actions/siteadminpanel.php:336 actions/smssettings.php:181 +#: actions/subscriptions.php:208 actions/tagother.php:154 +#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 lib/designsettings.php:256 +#: lib/groupeditform.php:202 +msgid "Save" +msgstr "Запазване" + +#: actions/accessadminpanel.php:189 +msgid "Save access settings" +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" @@ -34,25 +86,29 @@ msgstr "Няма такака страница." #: 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:144 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apistatusesupdate.php:148 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:78 #: actions/apitimelinehome.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/otp.php:76 #: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154 -#: actions/replies.php:73 actions/repliesrss.php:38 +#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 #: 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:302 lib/command.php:355 #: lib/command.php:401 lib/command.php:462 lib/command.php:518 #: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 -#: lib/subs.php:34 lib/subs.php:125 msgid "No such user." msgstr "Няма такъв потребител" +#: actions/all.php:84 +#, php-format +msgid "%1$s and friends, page %2$d" +msgstr "%1$s и приятели, страница %2$d" + #: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 -#: actions/apitimelinefriends.php:115 actions/apitimelinehome.php:115 +#: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" @@ -93,7 +149,7 @@ msgid "" "his or her attention](%%%%action.newnotice%%%%?status_textarea=%3$s)." msgstr "" -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211 #, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " @@ -104,8 +160,8 @@ msgstr "" msgid "You and friends" msgstr "Вие и приятелите" -#: actions/allrss.php:119 actions/apitimelinefriends.php:122 -#: actions/apitimelinehome.php:122 +#: actions/allrss.php:119 actions/apitimelinefriends.php:119 +#: actions/apitimelinehome.php:120 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Бележки от %1$s и приятели в %2$s." @@ -115,23 +171,23 @@ msgstr "Бележки от %1$s и приятели в %2$s." #: actions/apiaccountupdateprofile.php:97 #: actions/apiaccountupdateprofilebackgroundimage.php:94 #: actions/apiaccountupdateprofilecolors.php:118 -#: 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:136 actions/apigroupismember.php:114 -#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 -#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 -#: actions/apigroupmembership.php:106 actions/apigroupshow.php:105 -#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 -#: actions/apistatusesretweets.php:112 actions/apistatusesshow.php:108 -#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93 -#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:146 -#: actions/apitimelinefriends.php:156 actions/apitimelinegroup.php:150 -#: actions/apitimelinehome.php:156 actions/apitimelinementions.php:151 -#: actions/apitimelinepublic.php:131 actions/apitimelineretweetedbyme.php:122 +#: actions/apiaccountverifycredentials.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:128 actions/apigroupcreate.php:136 +#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 +#: actions/apigroupleave.php:141 actions/apigrouplist.php:132 +#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 +#: actions/apigroupshow.php:115 actions/apihelptest.php:88 +#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 +#: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 #: actions/apitimelineretweetedtome.php:121 -#: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141 -#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 +#: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 +#: actions/apitimelineuser.php:207 actions/apiusershow.php:101 msgid "API method not found." msgstr "Не е открит методът в API." @@ -145,7 +201,7 @@ msgstr "Не е открит методът в API." #: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 #: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 #: actions/apigroupleave.php:91 actions/apistatusesretweet.php:65 -#: actions/apistatusesupdate.php:114 +#: actions/apistatusesupdate.php:118 msgid "This method requires a POST." msgstr "Този метод изисква заявка POST." @@ -174,8 +230,9 @@ msgstr "Грешка при запазване на профила." #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:97 -#: actions/apistatusesupdate.php:127 actions/avatarsettings.php:257 -#: actions/designadminpanel.php:122 actions/newnotice.php:94 +#: actions/apistatusesupdate.php:131 actions/avatarsettings.php:257 +#: actions/designadminpanel.php:122 actions/editapplication.php:118 +#: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 #, php-format msgid "" @@ -296,12 +353,12 @@ msgstr "Не можете да спрете да следите себе си!" msgid "Two user ids or screen_names must be supplied." msgstr "Трябва да се дадат два идентификатора или имена на потребители." -#: actions/apifriendshipsshow.php:135 +#: actions/apifriendshipsshow.php:134 #, fuzzy msgid "Could not determine source user." msgstr "Грешка при изтегляне на общия поток" -#: actions/apifriendshipsshow.php:143 +#: actions/apifriendshipsshow.php:142 msgid "Could not find target user." msgstr "Целевият потребител не беше открит." @@ -325,7 +382,8 @@ msgstr "Опитайте друг псевдоним, този вече е за msgid "Not a valid nickname." msgstr "Неправилен псевдоним." -#: actions/apigroupcreate.php:196 actions/editgroup.php:195 +#: actions/apigroupcreate.php:196 actions/editapplication.php:215 +#: actions/editgroup.php:195 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:217 msgid "Homepage is not a valid URL." @@ -337,7 +395,8 @@ msgstr "Адресът на личната страница не е правил msgid "Full name is too long (max 255 chars)." msgstr "Пълното име е твърде дълго (макс. 255 знака)" -#: actions/apigroupcreate.php:213 +#: actions/apigroupcreate.php:213 actions/editapplication.php:190 +#: actions/newapplication.php:172 #, php-format msgid "Description is too long (max %d chars)." msgstr "Описанието е твърде дълго (до %d символа)." @@ -362,9 +421,9 @@ msgstr "Неправилен псевдоним: \"%s\"" #: actions/apigroupcreate.php:273 actions/editgroup.php:228 #: actions/newgroup.php:172 -#, fuzzy, php-format +#, php-format msgid "Alias \"%s\" already in use. Try another one." -msgstr "Опитайте друг псевдоним, този вече е зает." +msgstr "Псевдонимът \"%s\" вече е зает. Опитайте друг." #: actions/apigroupcreate.php:286 actions/editgroup.php:234 #: actions/newgroup.php:178 @@ -373,7 +432,7 @@ msgstr "" #: actions/apigroupismember.php:95 actions/apigroupjoin.php:104 #: actions/apigroupleave.php:104 actions/apigroupmembership.php:91 -#: actions/apigroupshow.php:90 actions/apitimelinegroup.php:91 +#: actions/apigroupshow.php:82 actions/apitimelinegroup.php:91 msgid "Group not found!" msgstr "Групата не е открита." @@ -414,6 +473,115 @@ msgstr "Групи на %s" msgid "groups on %s" msgstr "групи в %s" +#: actions/apioauthauthorize.php:101 +msgid "No oauth_token parameter provided." +msgstr "" + +#: actions/apioauthauthorize.php:106 +#, fuzzy +msgid "Invalid token." +msgstr "Неправилен размер." + +#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 +#: actions/deletenotice.php:157 actions/disfavor.php:74 +#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54 +#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupunblock.php:66 actions/imsettings.php:206 +#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 +#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 +#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135 +#: actions/othersettings.php:145 actions/passwordsettings.php:138 +#: actions/profilesettings.php:194 actions/recoverpassword.php:337 +#: actions/register.php:165 actions/remotesubscribe.php:77 +#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 +#: actions/subscribe.php:86 actions/tagother.php:166 +#: 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/apioauthauthorize.php:135 +#, fuzzy +msgid "Invalid nickname / password!" +msgstr "Неправилно име или парола." + +#: actions/apioauthauthorize.php:159 +#, fuzzy +msgid "Database error deleting OAuth application user." +msgstr "Грешка в настройките на потребителя." + +#: actions/apioauthauthorize.php:185 +#, fuzzy +msgid "Database error inserting OAuth application user." +msgstr "Грешка в базата от данни — отговор при вмъкването: %s" + +#: actions/apioauthauthorize.php:214 +#, php-format +msgid "" +"The request token %s has been authorized. Please exchange it for an access " +"token." +msgstr "" + +#: actions/apioauthauthorize.php:227 +#, php-format +msgid "The request token %s has been denied and revoked." +msgstr "" + +#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 +#: actions/designadminpanel.php:103 actions/editapplication.php:139 +#: actions/emailsettings.php:256 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/newapplication.php:121 +#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 +#: actions/smssettings.php:248 lib/designsettings.php:304 +msgid "Unexpected form submission." +msgstr "Неочаквано изпращане на форма." + +#: actions/apioauthauthorize.php:259 +msgid "An application would like to connect to your account" +msgstr "" + +#: actions/apioauthauthorize.php:276 +msgid "Allow or deny access" +msgstr "" + +#: actions/apioauthauthorize.php:292 +#, php-format +msgid "" +"The application %1$s by %2$s would like " +"the ability to %3$s your %4$s account data. You should only " +"give access to your %4$s account to third parties you trust." +msgstr "" + +#: actions/apioauthauthorize.php:310 lib/action.php:441 +msgid "Account" +msgstr "Сметка" + +#: actions/apioauthauthorize.php:313 actions/login.php:230 +#: actions/profilesettings.php:106 actions/register.php:424 +#: actions/showgroup.php:236 actions/tagother.php:94 +#: actions/userauthorization.php:145 lib/groupeditform.php:152 +#: lib/userprofile.php:131 +msgid "Nickname" +msgstr "Псевдоним" + +#: actions/apioauthauthorize.php:316 actions/login.php:233 +#: actions/register.php:429 lib/accountsettingsaction.php:116 +msgid "Password" +msgstr "Парола" + +#: actions/apioauthauthorize.php:328 +msgid "Deny" +msgstr "" + +#: actions/apioauthauthorize.php:334 +#, fuzzy +msgid "Allow" +msgstr "Всички" + +#: actions/apioauthauthorize.php:351 +msgid "Allow or deny access to your account information." +msgstr "" + #: actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." msgstr "Този метод изисква заявка POST или DELETE." @@ -443,17 +611,17 @@ msgstr "Бележката е изтрита." msgid "No status with that ID found." msgstr "Не е открита бележка с такъв идентификатор." -#: actions/apistatusesupdate.php:157 actions/newnotice.php:155 +#: actions/apistatusesupdate.php:161 actions/newnotice.php:155 #: lib/mailhandler.php:60 #, fuzzy, php-format msgid "That's too long. Max notice size is %d chars." msgstr "Твърде дълга бележка. Трябва да е най-много 140 знака." -#: actions/apistatusesupdate.php:198 +#: actions/apistatusesupdate.php:202 msgid "Not found" msgstr "Не е открито." -#: actions/apistatusesupdate.php:221 actions/newnotice.php:178 +#: actions/apistatusesupdate.php:225 actions/newnotice.php:178 #, php-format msgid "Max notice size is %d chars, including attachment URL." msgstr "" @@ -467,7 +635,7 @@ msgstr "Неподдържан формат." msgid "%1$s / Favorites from %2$s" msgstr "%s / Отбелязани като любими от %s" -#: actions/apitimelinefavorites.php:120 +#: actions/apitimelinefavorites.php:117 #, fuzzy, php-format msgid "%1$s updates favorited by %2$s / %2$s." msgstr "%s бележки отбелязани като любими от %s / %s." @@ -478,7 +646,7 @@ msgstr "%s бележки отбелязани като любими от %s / % msgid "%s timeline" msgstr "Поток на %s" -#: actions/apitimelinegroup.php:117 actions/apitimelineuser.php:126 +#: actions/apitimelinegroup.php:114 actions/apitimelineuser.php:126 #: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" @@ -494,27 +662,22 @@ msgstr "%1$s / Реплики на %2$s" msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "%1$s реплики на съобщения от %2$s / %3$s." -#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "Общ поток на %s" -#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "" -#: actions/apitimelineretweetedbyme.php:112 -#, php-format -msgid "Repeated by %s" -msgstr "Повторено от %s" - #: actions/apitimelineretweetedtome.php:111 #, php-format msgid "Repeated to %s" msgstr "Повторено за %s" -#: actions/apitimelineretweetsofme.php:112 +#: actions/apitimelineretweetsofme.php:114 #, php-format msgid "Repeats of %s" msgstr "Повторения на %s" @@ -524,7 +687,7 @@ msgstr "Повторения на %s" msgid "Notices tagged with %s" msgstr "Бележки с етикет %s" -#: actions/apitimelinetag.php:108 actions/tagrss.php:64 +#: actions/apitimelinetag.php:104 actions/tagrss.php:64 #, fuzzy, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Бележки от %1$s в %2$s." @@ -586,8 +749,8 @@ msgstr "Оригинал" msgid "Preview" msgstr "Преглед" -#: actions/avatarsettings.php:149 lib/deleteuserform.php:66 -#: lib/noticelist.php:611 +#: actions/avatarsettings.php:149 actions/showapplication.php:252 +#: lib/deleteuserform.php:66 lib/noticelist.php:637 msgid "Delete" msgstr "Изтриване" @@ -599,29 +762,6 @@ msgstr "Качване" msgid "Crop" msgstr "Изрязване" -#: actions/avatarsettings.php:268 actions/deletenotice.php:157 -#: actions/disfavor.php:74 actions/emailsettings.php:238 actions/favor.php:75 -#: actions/geocode.php:50 actions/groupblock.php:66 actions/grouplogo.php:309 -#: actions/groupunblock.php:66 actions/imsettings.php:206 -#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 -#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 -#: actions/othersettings.php:145 actions/passwordsettings.php:138 -#: actions/profilesettings.php:194 actions/recoverpassword.php:337 -#: actions/register.php:165 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 -#: actions/subscribe.php:46 actions/tagother.php:166 -#: 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/avatarsettings.php:281 actions/designadminpanel.php:103 -#: actions/emailsettings.php:256 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/avatarsettings.php:328 msgid "Pick a square area of the image to be your avatar" msgstr "Изберете квадратна област от изображението за аватар" @@ -657,8 +797,9 @@ msgid "" "will not be notified of any @-replies from them." msgstr "" -#: actions/block.php:143 actions/deletenotice.php:145 -#: actions/deleteuser.php:147 actions/groupblock.php:178 +#: actions/block.php:143 actions/deleteapplication.php:153 +#: actions/deletenotice.php:145 actions/deleteuser.php:147 +#: actions/groupblock.php:178 msgid "No" msgstr "Не" @@ -666,13 +807,13 @@ msgstr "Не" msgid "Do not block this user" msgstr "Да не се блокира този потребител" -#: actions/block.php:144 actions/deletenotice.php:146 -#: actions/deleteuser.php:148 actions/groupblock.php:179 -#: lib/repeatform.php:132 +#: actions/block.php:144 actions/deleteapplication.php:158 +#: actions/deletenotice.php:146 actions/deleteuser.php:148 +#: actions/groupblock.php:179 lib/repeatform.php:132 msgid "Yes" msgstr "Да" -#: actions/block.php:144 actions/groupmembers.php:346 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80 msgid "Block this user" msgstr "Блокиране на потребителя" @@ -757,8 +898,8 @@ msgid "Couldn't delete email confirmation." msgstr "Грешка при изтриване потвърждението по е-поща." #: actions/confirmaddress.php:144 -msgid "Confirm Address" -msgstr "Потвърждаване на адреса" +msgid "Confirm address" +msgstr "Потвърждаване на адрес" #: actions/confirmaddress.php:159 #, php-format @@ -774,10 +915,54 @@ msgstr "Разговор" msgid "Notices" msgstr "Бележки" +#: actions/deleteapplication.php:63 +#, fuzzy +msgid "You must be logged in to delete an application." +msgstr "За да редактирате група, трябва да сте влезли." + +#: actions/deleteapplication.php:71 +#, fuzzy +msgid "Application not found." +msgstr "Бележката няма профил" + +#: actions/deleteapplication.php:78 actions/editapplication.php:77 +#: actions/showapplication.php:94 +#, fuzzy +msgid "You are not the owner of this application." +msgstr "Не членувате в тази група." + +#: actions/deleteapplication.php:102 actions/editapplication.php:127 +#: actions/newapplication.php:110 actions/showapplication.php:118 +#: lib/action.php:1197 +msgid "There was a problem with your session token." +msgstr "Имаше проблем със сесията ви в сайта." + +#: actions/deleteapplication.php:123 actions/deleteapplication.php:147 +#, fuzzy +msgid "Delete application" +msgstr "Няма такава бележка." + +#: actions/deleteapplication.php:149 +msgid "" +"Are you sure you want to delete this application? This will clear all data " +"about the application from the database, including all existing user " +"connections." +msgstr "" + +#: actions/deleteapplication.php:156 +#, fuzzy +msgid "Do not delete this application" +msgstr "Да не се изтрива бележката" + +#: actions/deleteapplication.php:160 +#, fuzzy +msgid "Delete this application" +msgstr "Изтриване на бележката" + #: 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/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 #: lib/adminpanelaction.php:72 lib/profileformaction.php:63 #: lib/settingsaction.php:72 @@ -806,7 +991,7 @@ msgstr "Наистина ли искате да изтриете тази бел msgid "Do not delete this notice" msgstr "Да не се изтрива бележката" -#: actions/deletenotice.php:146 lib/noticelist.php:611 +#: actions/deletenotice.php:146 lib/noticelist.php:637 msgid "Delete this notice" msgstr "Изтриване на бележката" @@ -939,16 +1124,6 @@ msgstr "" msgid "Reset back to default" msgstr "" -#: actions/designadminpanel.php:586 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 -#: actions/pathsadminpanel.php:324 actions/profilesettings.php:174 -#: actions/siteadminpanel.php:388 actions/smssettings.php:181 -#: actions/subscriptions.php:203 actions/tagother.php:154 -#: actions/useradminpanel.php:313 lib/designsettings.php:256 -#: lib/groupeditform.php:202 -msgid "Save" -msgstr "Запазване" - #: actions/designadminpanel.php:587 lib/designsettings.php:257 msgid "Save design" msgstr "" @@ -961,10 +1136,87 @@ msgstr "Тази бележка не е отбелязана като любим msgid "Add to favorites" msgstr "Добавяне към любимите" -#: actions/doc.php:69 -msgid "No such document." +#: actions/doc.php:158 +#, fuzzy, php-format +msgid "No such document \"%s\"" msgstr "Няма такъв документ." +#: actions/editapplication.php:54 +#, fuzzy +msgid "Edit Application" +msgstr "Други настройки" + +#: actions/editapplication.php:66 +#, fuzzy +msgid "You must be logged in to edit an application." +msgstr "За да редактирате група, трябва да сте влезли." + +#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:166 +#: actions/showapplication.php:87 +#, fuzzy +msgid "No such application." +msgstr "Няма такава бележка." + +#: actions/editapplication.php:161 +#, fuzzy +msgid "Use this form to edit your application." +msgstr "Използвайте тази бланка за създаване на нова група." + +#: actions/editapplication.php:177 actions/newapplication.php:159 +#, fuzzy +msgid "Name is required." +msgstr "Същото като паролата по-горе. Задължително поле." + +#: actions/editapplication.php:180 actions/newapplication.php:165 +#, fuzzy +msgid "Name is too long (max 255 chars)." +msgstr "Пълното име е твърде дълго (макс. 255 знака)" + +#: actions/editapplication.php:183 actions/newapplication.php:162 +#, fuzzy +msgid "Name already in use. Try another one." +msgstr "Опитайте друг псевдоним, този вече е зает." + +#: actions/editapplication.php:186 actions/newapplication.php:168 +#, fuzzy +msgid "Description is required." +msgstr "Описание" + +#: actions/editapplication.php:194 +msgid "Source URL is too long." +msgstr "" + +#: actions/editapplication.php:200 actions/newapplication.php:185 +#, fuzzy +msgid "Source URL is not valid." +msgstr "Адресът на личната страница не е правилен URL." + +#: actions/editapplication.php:203 actions/newapplication.php:188 +msgid "Organization is required." +msgstr "" + +#: actions/editapplication.php:206 actions/newapplication.php:191 +#, fuzzy +msgid "Organization is too long (max 255 chars)." +msgstr "Името на местоположението е твърде дълго (макс. 255 знака)." + +#: actions/editapplication.php:209 actions/newapplication.php:194 +msgid "Organization homepage is required." +msgstr "" + +#: actions/editapplication.php:218 actions/newapplication.php:206 +msgid "Callback is too long." +msgstr "" + +#: actions/editapplication.php:225 actions/newapplication.php:215 +msgid "Callback URL is not valid." +msgstr "" + +#: actions/editapplication.php:258 +#, fuzzy +msgid "Could not update application." +msgstr "Грешка при обновяване на групата." + #: actions/editgroup.php:56 #, php-format msgid "Edit %s group" @@ -993,7 +1245,7 @@ msgstr "Описанието е твърде дълго (до %d символа) msgid "Could not update group." msgstr "Грешка при обновяване на групата." -#: actions/editgroup.php:259 classes/User_group.php:390 +#: actions/editgroup.php:259 classes/User_group.php:433 #, fuzzy msgid "Could not create aliases." msgstr "Грешка при отбелязване като любима." @@ -1003,7 +1255,6 @@ msgid "Options saved." msgstr "Настройките са запазени." #: actions/emailsettings.php:60 -#, fuzzy msgid "Email settings" msgstr "Настройки на е-поща" @@ -1036,14 +1287,14 @@ msgstr "" "спам) за съобщение с указания." #: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 +#: actions/smssettings.php:126 lib/applicationeditform.php:331 +#: lib/applicationeditform.php:332 msgid "Cancel" msgstr "Отказ" #: actions/emailsettings.php:121 -#, fuzzy msgid "Email address" -msgstr "Адреси на е-поща" +msgstr "Адрес на е-поща" #: actions/emailsettings.php:123 msgid "Email address, like \"UserName@example.org\"" @@ -1118,7 +1369,7 @@ msgid "Cannot normalize that email address" msgstr "Грешка при нормализиране адреса на е-пощата" #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:157 +#: actions/siteadminpanel.php:143 msgid "Not a valid email address." msgstr "Неправилен адрес на е-поща." @@ -1130,7 +1381,7 @@ msgstr "Това и сега е адресът на е-пощата ви." msgid "That email address already belongs to another user." msgstr "Тази е-поща вече се използва от друг потребител." -#: actions/emailsettings.php:353 actions/imsettings.php:317 +#: actions/emailsettings.php:353 actions/imsettings.php:319 #: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." msgstr "Не може да се вмъкне код за потвърждение." @@ -1193,7 +1444,7 @@ msgstr "Тази бележка вече е отбелязана като люб msgid "Disfavor favorite" msgstr "Нелюбимо" -#: actions/favorited.php:65 lib/popularnoticesection.php:88 +#: actions/favorited.php:65 lib/popularnoticesection.php:91 #: lib/publicgroupnav.php:93 msgid "Popular notices" msgstr "Популярни бележки" @@ -1340,7 +1591,7 @@ msgstr "Потребителят вече е блокиран за групат msgid "User is not a member of group." msgstr "Потребителят не членува в групата." -#: actions/groupblock.php:136 actions/groupmembers.php:314 +#: actions/groupblock.php:136 actions/groupmembers.php:316 #, fuzzy msgid "Block user from group" msgstr "Блокиране на потребителя" @@ -1439,24 +1690,24 @@ msgstr "Членове на групата %s, страница %d" msgid "A list of the users in this group." msgstr "Списък с потребителите в тази група." -#: actions/groupmembers.php:175 lib/action.php:442 lib/groupnav.php:107 +#: actions/groupmembers.php:175 lib/action.php:448 lib/groupnav.php:107 msgid "Admin" msgstr "Настройки" -#: actions/groupmembers.php:346 lib/blockform.php:69 +#: actions/groupmembers.php:348 lib/blockform.php:69 msgid "Block" msgstr "Блокиране" -#: actions/groupmembers.php:441 +#: actions/groupmembers.php:443 #, fuzzy msgid "Make user an admin of the group" msgstr "За да редактирате групата, трябва да сте й администратор." -#: actions/groupmembers.php:473 +#: actions/groupmembers.php:475 msgid "Make Admin" msgstr "" -#: actions/groupmembers.php:473 +#: actions/groupmembers.php:475 msgid "Make this user an admin" msgstr "" @@ -1630,6 +1881,11 @@ msgstr "" msgid "That is not your Jabber ID." msgstr "Това не е вашият Jabber ID." +#: actions/inbox.php:59 +#, fuzzy, php-format +msgid "Inbox for %1$s - page %2$d" +msgstr "Входяща кутия за %s" + #: actions/inbox.php:62 #, php-format msgid "Inbox for %s" @@ -1710,7 +1966,7 @@ msgstr "Лично съобщение" msgid "Optionally add a personal message to the invitation." msgstr "Може да добавите и лично съобщение към поканата." -#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:237 +#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:236 msgid "Send" msgstr "Прати" @@ -1794,9 +2050,9 @@ msgid "You are not a member of that group." msgstr "Не членувате в тази група." #: actions/leavegroup.php:127 -#, fuzzy, php-format +#, php-format msgid "%1$s left group %2$s" -msgstr "%s напусна групата %s" +msgstr "%1$s напусна групата %2$s" #: actions/login.php:80 actions/otp.php:62 actions/register.php:137 msgid "Already logged in." @@ -1811,25 +2067,14 @@ msgstr "Грешно име или парола." msgid "Error setting user. You are probably not authorized." msgstr "Забранено." -#: actions/login.php:188 actions/login.php:241 lib/action.php:460 +#: actions/login.php:188 actions/login.php:241 lib/action.php:466 #: lib/logingroupnav.php:79 msgid "Login" msgstr "Вход" #: actions/login.php:227 msgid "Login to site" -msgstr "" - -#: actions/login.php:230 actions/profilesettings.php:106 -#: actions/register.php:424 actions/showgroup.php:236 actions/tagother.php:94 -#: lib/groupeditform.php:152 lib/userprofile.php:131 -msgid "Nickname" -msgstr "Псевдоним" - -#: actions/login.php:233 actions/register.php:429 -#: lib/accountsettingsaction.php:116 -msgid "Password" -msgstr "Парола" +msgstr "Вход в сайта" #: actions/login.php:236 actions/register.php:478 msgid "Remember me" @@ -1860,21 +2105,21 @@ msgstr "" "Влезте с име и парола. Нямате такива? [Регистрирайте](%%action.register%%) " "нова сметка или опитайте с [OpenID](%%action.openidlogin%%). " -#: actions/makeadmin.php:91 +#: actions/makeadmin.php:92 msgid "Only an admin can make another user an admin." msgstr "" -#: actions/makeadmin.php:95 +#: actions/makeadmin.php:96 #, fuzzy, php-format msgid "%1$s is already an admin for group \"%2$s\"." msgstr "Потребителят вече е блокиран за групата." -#: actions/makeadmin.php:132 +#: actions/makeadmin.php:133 #, fuzzy, php-format msgid "Can't get membership record for %1$s in group %2$s." msgstr "Грешка при проследяване — потребителят не е намерен." -#: actions/makeadmin.php:145 +#: actions/makeadmin.php:146 #, fuzzy, php-format msgid "Can't make %1$s an admin for group %2$s." msgstr "За да редактирате групата, трябва да сте й администратор." @@ -1883,6 +2128,30 @@ msgstr "За да редактирате групата, трябва да ст msgid "No current status" msgstr "" +#: actions/newapplication.php:52 +#, fuzzy +msgid "New Application" +msgstr "Няма такава бележка." + +#: actions/newapplication.php:64 +#, fuzzy +msgid "You must be logged in to register an application." +msgstr "За да създавате група, трябва да сте влезли." + +#: actions/newapplication.php:143 +#, fuzzy +msgid "Use this form to register a new application." +msgstr "Използвайте тази бланка за създаване на нова група." + +#: actions/newapplication.php:176 +msgid "Source URL is required." +msgstr "" + +#: actions/newapplication.php:258 actions/newapplication.php:267 +#, fuzzy +msgid "Could not create application." +msgstr "Грешка при отбелязване като любима." + #: actions/newgroup.php:53 msgid "New group" msgstr "Нова група" @@ -1991,6 +2260,51 @@ msgstr "Побутването е изпратено" msgid "Nudge sent!" msgstr "Побутването е изпратено!" +#: actions/oauthappssettings.php:59 +#, fuzzy +msgid "You must be logged in to list your applications." +msgstr "За да редактирате група, трябва да сте влезли." + +#: actions/oauthappssettings.php:74 +#, fuzzy +msgid "OAuth applications" +msgstr "Други настройки" + +#: actions/oauthappssettings.php:85 +msgid "Applications you have registered" +msgstr "" + +#: actions/oauthappssettings.php:135 +#, php-format +msgid "You have not registered any applications yet." +msgstr "" + +#: actions/oauthconnectionssettings.php:72 +msgid "Connected applications" +msgstr "" + +#: actions/oauthconnectionssettings.php:83 +msgid "You have allowed the following applications to access you account." +msgstr "" + +#: actions/oauthconnectionssettings.php:175 +#, fuzzy +msgid "You are not a user of that application." +msgstr "Не членувате в тази група." + +#: actions/oauthconnectionssettings.php:186 +msgid "Unable to revoke access for app: " +msgstr "" + +#: actions/oauthconnectionssettings.php:198 +#, php-format +msgid "You have not authorized any applications to use your account." +msgstr "" + +#: actions/oauthconnectionssettings.php:211 +msgid "Developers can edit the registration settings for their applications " +msgstr "" + #: actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" msgstr "Бележката няма профил" @@ -2008,8 +2322,8 @@ msgstr "вид съдържание " msgid "Only " msgstr "Само " -#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1033 -#: lib/api.php:1061 lib/api.php:1171 +#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 +#: lib/api.php:1068 lib/api.php:1177 msgid "Not a supported data format." msgstr "Неподдържан формат на данните" @@ -2022,7 +2336,7 @@ msgid "Notice Search" msgstr "Търсене на бележки" #: actions/othersettings.php:60 -msgid "Other Settings" +msgid "Other settings" msgstr "Други настройки" #: actions/othersettings.php:71 @@ -2079,6 +2393,11 @@ msgstr "Невалидно съдържание на бележка" msgid "Login token expired." msgstr "Влизане в сайта" +#: actions/outbox.php:58 +#, fuzzy, php-format +msgid "Outbox for %1$s - page %2$d" +msgstr "Изходяща кутия за %s" + #: actions/outbox.php:61 #, php-format msgid "Outbox for %s" @@ -2150,7 +2469,7 @@ msgstr "Грешка при запазване на новата парола." msgid "Password saved." msgstr "Паролата е записана." -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:326 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:331 msgid "Paths" msgstr "Пътища" @@ -2158,133 +2477,148 @@ msgstr "Пътища" msgid "Path and server settings for this StatusNet site." msgstr "Пътища и сървърни настройки за тази инсталация на StatusNet." -#: actions/pathsadminpanel.php:140 +#: actions/pathsadminpanel.php:157 #, fuzzy, php-format msgid "Theme directory not readable: %s" msgstr "Страницата не е достъпна във вида медия, който приемате" -#: actions/pathsadminpanel.php:146 +#: actions/pathsadminpanel.php:163 #, php-format msgid "Avatar directory not writable: %s" msgstr "" -#: actions/pathsadminpanel.php:152 +#: actions/pathsadminpanel.php:169 #, php-format msgid "Background directory not writable: %s" msgstr "" -#: actions/pathsadminpanel.php:160 +#: actions/pathsadminpanel.php:177 #, php-format msgid "Locales directory not readable: %s" msgstr "" -#: actions/pathsadminpanel.php:166 +#: actions/pathsadminpanel.php:183 msgid "Invalid SSL server. The maximum length is 255 characters." msgstr "" -#: actions/pathsadminpanel.php:217 actions/siteadminpanel.php:58 +#: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58 #: lib/adminpanelaction.php:311 msgid "Site" msgstr "Сайт" -#: actions/pathsadminpanel.php:221 +#: actions/pathsadminpanel.php:238 +msgid "Server" +msgstr "Сървър" + +#: actions/pathsadminpanel.php:238 +msgid "Site's server hostname." +msgstr "" + +#: actions/pathsadminpanel.php:242 msgid "Path" msgstr "Път" -#: actions/pathsadminpanel.php:221 +#: actions/pathsadminpanel.php:242 msgid "Site path" msgstr "Път до сайта" -#: actions/pathsadminpanel.php:225 +#: actions/pathsadminpanel.php:246 msgid "Path to locales" msgstr "" -#: actions/pathsadminpanel.php:225 +#: actions/pathsadminpanel.php:246 msgid "Directory path to locales" msgstr "" -#: actions/pathsadminpanel.php:232 +#: actions/pathsadminpanel.php:250 +msgid "Fancy URLs" +msgstr "Кратки URL-адреси" + +#: actions/pathsadminpanel.php:252 +msgid "Use fancy (more readable and memorable) URLs?" +msgstr "" + +#: actions/pathsadminpanel.php:259 msgid "Theme" msgstr "" -#: actions/pathsadminpanel.php:237 +#: actions/pathsadminpanel.php:264 msgid "Theme server" msgstr "" -#: actions/pathsadminpanel.php:241 +#: actions/pathsadminpanel.php:268 msgid "Theme path" msgstr "" -#: actions/pathsadminpanel.php:245 +#: actions/pathsadminpanel.php:272 msgid "Theme directory" msgstr "" -#: actions/pathsadminpanel.php:252 +#: actions/pathsadminpanel.php:279 msgid "Avatars" msgstr "Аватари" -#: actions/pathsadminpanel.php:257 +#: actions/pathsadminpanel.php:284 msgid "Avatar server" msgstr "Сървър на аватара" -#: actions/pathsadminpanel.php:261 +#: actions/pathsadminpanel.php:288 msgid "Avatar path" msgstr "Път до аватара" -#: actions/pathsadminpanel.php:265 +#: actions/pathsadminpanel.php:292 msgid "Avatar directory" msgstr "Директория на аватара" -#: actions/pathsadminpanel.php:274 +#: actions/pathsadminpanel.php:301 msgid "Backgrounds" msgstr "Фонове" -#: actions/pathsadminpanel.php:278 +#: actions/pathsadminpanel.php:305 msgid "Background server" msgstr "Сървър на фона" -#: actions/pathsadminpanel.php:282 +#: actions/pathsadminpanel.php:309 msgid "Background path" msgstr "Път до фона" -#: actions/pathsadminpanel.php:286 +#: actions/pathsadminpanel.php:313 msgid "Background directory" msgstr "Директория на фона" -#: actions/pathsadminpanel.php:293 +#: actions/pathsadminpanel.php:320 msgid "SSL" msgstr "SSL" -#: actions/pathsadminpanel.php:296 actions/siteadminpanel.php:346 +#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 msgid "Never" msgstr "Никога" -#: actions/pathsadminpanel.php:297 +#: actions/pathsadminpanel.php:324 msgid "Sometimes" msgstr "Понякога" -#: actions/pathsadminpanel.php:298 +#: actions/pathsadminpanel.php:325 msgid "Always" msgstr "Винаги" -#: actions/pathsadminpanel.php:302 +#: actions/pathsadminpanel.php:329 msgid "Use SSL" msgstr "Използване на SSL" -#: actions/pathsadminpanel.php:303 +#: actions/pathsadminpanel.php:330 msgid "When to use SSL" msgstr "Кога да се използва SSL" -#: actions/pathsadminpanel.php:308 -#, fuzzy +#: actions/pathsadminpanel.php:335 msgid "SSL server" msgstr "SSL-сървър" -#: actions/pathsadminpanel.php:309 +#: actions/pathsadminpanel.php:336 msgid "Server to direct SSL requests to" msgstr "" -#: actions/pathsadminpanel.php:325 +#: actions/pathsadminpanel.php:352 msgid "Save paths" msgstr "Запазване на пътищата" @@ -2344,7 +2678,7 @@ msgid "Full name" msgstr "Пълно име" #: actions/profilesettings.php:115 actions/register.php:453 -#: lib/groupeditform.php:161 +#: lib/applicationeditform.php:228 lib/groupeditform.php:161 msgid "Homepage" msgstr "Лична страница" @@ -2367,7 +2701,7 @@ msgstr "За мен" #: actions/profilesettings.php:132 actions/register.php:471 #: actions/showgroup.php:256 actions/tagother.php:112 -#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:164 msgid "Location" msgstr "Местоположение" @@ -2391,7 +2725,7 @@ msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" -#: actions/profilesettings.php:151 actions/siteadminpanel.php:294 +#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 msgid "Language" msgstr "Език" @@ -2419,7 +2753,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "Биографията е твърде дълга (до %d символа)." -#: actions/profilesettings.php:235 actions/siteadminpanel.php:164 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 msgid "Timezone not selected." msgstr "Не е избран часови пояс" @@ -2432,24 +2766,24 @@ msgstr "Името на езика е твърде дълго (може да е msgid "Invalid tag: \"%s\"" msgstr "Неправилен етикет: \"%s\"" -#: actions/profilesettings.php:302 +#: actions/profilesettings.php:306 msgid "Couldn't update user for autosubscribe." msgstr "" -#: actions/profilesettings.php:359 +#: actions/profilesettings.php:363 #, fuzzy msgid "Couldn't save location prefs." msgstr "Грешка при запазване етикетите." -#: actions/profilesettings.php:371 +#: actions/profilesettings.php:375 msgid "Couldn't save profile." msgstr "Грешка при запазване на профила." -#: actions/profilesettings.php:379 +#: actions/profilesettings.php:383 msgid "Couldn't save tags." msgstr "Грешка при запазване етикетите." -#: actions/profilesettings.php:387 lib/adminpanelaction.php:137 +#: actions/profilesettings.php:391 lib/adminpanelaction.php:137 msgid "Settings saved." msgstr "Настройките са запазени." @@ -2471,36 +2805,36 @@ msgstr "Общ поток, страница %d" msgid "Public timeline" msgstr "Общ поток" -#: actions/public.php:151 +#: actions/public.php:159 msgid "Public Stream Feed (RSS 1.0)" msgstr "Емисия на общия поток (RSS 1.0)" -#: actions/public.php:155 +#: actions/public.php:163 msgid "Public Stream Feed (RSS 2.0)" msgstr "Емисия на общия поток (RSS 2.0)" -#: actions/public.php:159 +#: actions/public.php:167 msgid "Public Stream Feed (Atom)" msgstr "Емисия на общия поток (Atom)" -#: actions/public.php:179 +#: actions/public.php:187 #, php-format msgid "" "This is the public timeline for %%site.name%% but no one has posted anything " "yet." msgstr "" -#: actions/public.php:182 +#: actions/public.php:190 msgid "Be the first to post!" msgstr "" -#: actions/public.php:186 +#: actions/public.php:194 #, php-format msgid "" "Why not [register an account](%%action.register%%) and be the first to post!" msgstr "" -#: actions/public.php:233 +#: actions/public.php:241 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2509,7 +2843,7 @@ msgid "" "friends, family, and colleagues! ([Read more](%%doc.help%%))" msgstr "" -#: actions/public.php:238 +#: actions/public.php:246 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2543,7 +2877,7 @@ msgid "" "one!" msgstr "" -#: actions/publictagcloud.php:131 +#: actions/publictagcloud.php:134 msgid "Tag cloud" msgstr "" @@ -2682,7 +3016,7 @@ msgstr "Грешка в кода за потвърждение." msgid "Registration successful" msgstr "Записването е успешно." -#: actions/register.php:114 actions/register.php:503 lib/action.php:457 +#: actions/register.php:114 actions/register.php:503 lib/action.php:463 #: lib/logingroupnav.php:85 msgid "Register" msgstr "Регистриране" @@ -2724,7 +3058,7 @@ msgid "Same as password above. Required." msgstr "Същото като паролата по-горе. Задължително поле." #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:270 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 msgid "Email" msgstr "Е-поща" @@ -2752,7 +3086,7 @@ msgid "" msgstr " освен тези лични данни: парола, е-поща, месинджър, телефон." #: actions/register.php:538 -#, fuzzy, php-format +#, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " "want to...\n" @@ -2769,9 +3103,9 @@ msgid "" "\n" "Thanks for signing up and we hope you enjoy using this service." msgstr "" -"Поздравления, %s! И добре дошли в %%%%site.name%%%%! от тук можете да...\n" +"Поздравления, %1$s! И добре дошли в %%%%site.name%%%%! от тук можете да...\n" "\n" -"* Отидете в [профила си](%s) и да публикувате първата си бележка.\n" +"* Отидете в [профила си](%2$s) и да публикувате първата си бележка.\n" "* Добавите [адрес в Jabber/GTalk](%%%%action.imsettings%%%%), за да " "изпращате бележки от програмата си за моментни съобщения.\n" "* [Търсите хора](%%%%action.peoplesearch%%%%), които познавате или с които " @@ -2829,7 +3163,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "Адрес на профила ви в друга, съвместима услуга за микроблогване" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:365 +#: lib/userprofile.php:368 msgid "Subscribe" msgstr "Абониране" @@ -2867,7 +3201,7 @@ msgstr "Не можете да повтаряте собствена бележ msgid "You already repeated that notice." msgstr "Вече сте повторили тази бележка." -#: actions/repeat.php:114 lib/noticelist.php:629 +#: actions/repeat.php:114 lib/noticelist.php:656 msgid "Repeated" msgstr "Повторено" @@ -2881,6 +3215,11 @@ msgstr "Повторено!" msgid "Replies to %s" msgstr "Отговори на %s" +#: actions/replies.php:127 +#, fuzzy, php-format +msgid "Replies to %1$s, page %2$d" +msgstr "Отговори до %1$s в %2$s!" + #: actions/replies.php:144 #, php-format msgid "Replies feed for %s (RSS 1.0)" @@ -2922,6 +3261,10 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "Отговори до %1$s в %2$s!" +#: actions/rsd.php:146 actions/version.php:157 +msgid "StatusNet" +msgstr "StatusNet" + #: actions/sandbox.php:65 actions/unsandbox.php:65 #, fuzzy msgid "You cannot sandbox users on this site." @@ -2932,6 +3275,124 @@ msgstr "Не може да изпращате съобщения до този msgid "User is already sandboxed." msgstr "Потребителят ви е блокирал." +#: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:336 +msgid "Sessions" +msgstr "Сесии" + +#: actions/sessionsadminpanel.php:65 +#, fuzzy +msgid "Session settings for this StatusNet site." +msgstr "Основни настройки на тази инсталация на StatusNet." + +#: actions/sessionsadminpanel.php:175 +msgid "Handle sessions" +msgstr "Управление на сесии" + +#: actions/sessionsadminpanel.php:177 +msgid "Whether to handle sessions ourselves." +msgstr "" + +#: actions/sessionsadminpanel.php:181 +msgid "Session debugging" +msgstr "" + +#: actions/sessionsadminpanel.php:183 +msgid "Turn on debugging output for sessions." +msgstr "" + +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/useradminpanel.php:293 +msgid "Save site settings" +msgstr "Запазване настройките на сайта" + +#: actions/showapplication.php:82 +#, fuzzy +msgid "You must be logged in to view an application." +msgstr "За напуснете група, трябва да сте влезли." + +#: actions/showapplication.php:157 +#, fuzzy +msgid "Application profile" +msgstr "Бележката няма профил" + +#: actions/showapplication.php:159 lib/applicationeditform.php:180 +msgid "Icon" +msgstr "Икона" + +#: actions/showapplication.php:169 actions/version.php:195 +#: lib/applicationeditform.php:195 +msgid "Name" +msgstr "Име" + +#: actions/showapplication.php:178 lib/applicationeditform.php:222 +msgid "Organization" +msgstr "Организация" + +#: actions/showapplication.php:187 actions/version.php:198 +#: lib/applicationeditform.php:209 lib/groupeditform.php:172 +msgid "Description" +msgstr "Описание" + +#: actions/showapplication.php:192 actions/showgroup.php:429 +#: lib/profileaction.php:174 +msgid "Statistics" +msgstr "Статистики" + +#: actions/showapplication.php:203 +#, php-format +msgid "Created by %1$s - %2$s access by default - %3$d users" +msgstr "" + +#: actions/showapplication.php:213 +msgid "Application actions" +msgstr "" + +#: actions/showapplication.php:236 +msgid "Reset key & secret" +msgstr "" + +#: actions/showapplication.php:261 +msgid "Application info" +msgstr "" + +#: actions/showapplication.php:263 +msgid "Consumer key" +msgstr "" + +#: actions/showapplication.php:268 +msgid "Consumer secret" +msgstr "" + +#: actions/showapplication.php:273 +msgid "Request token URL" +msgstr "" + +#: actions/showapplication.php:278 +msgid "Access token URL" +msgstr "" + +#: actions/showapplication.php:283 +#, fuzzy +msgid "Authorize URL" +msgstr "Автор" + +#: actions/showapplication.php:288 +msgid "" +"Note: We support HMAC-SHA1 signatures. We do not support the plaintext " +"signature method." +msgstr "" + +#: actions/showapplication.php:309 +#, fuzzy +msgid "Are you sure you want to reset your consumer key and secret?" +msgstr "Наистина ли искате да изтриете тази бележка?" + +#: actions/showfavorites.php:79 +#, php-format +msgid "%1$s's favorite notices, page %2$d" +msgstr "Любими бележки на %1$s, страница %2$d" + #: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "Грешка при изтегляне на любимите бележки" @@ -2981,23 +3442,28 @@ msgstr "Така можете да споделите какво харесва msgid "%s group" msgstr "Група %s" +#: actions/showgroup.php:84 +#, fuzzy, php-format +msgid "%1$s group, page %2$d" +msgstr "Членове на групата %s, страница %d" + #: actions/showgroup.php:218 msgid "Group profile" msgstr "Профил на групата" #: actions/showgroup.php:263 actions/tagother.php:118 -#: actions/userauthorization.php:167 lib/userprofile.php:177 +#: actions/userauthorization.php:175 lib/userprofile.php:177 msgid "URL" -msgstr "" +msgstr "URL" #: actions/showgroup.php:274 actions/tagother.php:128 -#: actions/userauthorization.php:179 lib/userprofile.php:194 +#: actions/userauthorization.php:187 lib/userprofile.php:194 msgid "Note" msgstr "Бележка" #: actions/showgroup.php:284 lib/groupeditform.php:184 msgid "Aliases" -msgstr "" +msgstr "Псевдоними" #: actions/showgroup.php:293 msgid "Group actions" @@ -3037,10 +3503,6 @@ msgstr "" msgid "All members" msgstr "Всички членове" -#: actions/showgroup.php:429 lib/profileaction.php:174 -msgid "Statistics" -msgstr "Статистики" - #: actions/showgroup.php:432 msgid "Created" msgstr "Създадена на" @@ -3095,6 +3557,11 @@ msgstr "Бележката е изтрита." msgid " tagged %s" msgstr "Бележки с етикет %s" +#: actions/showstream.php:79 +#, php-format +msgid "%1$s, page %2$d" +msgstr "%1$s, страница %2$d" + #: actions/showstream.php:122 #, fuzzy, php-format msgid "Notice feed for %1$s tagged %2$s (RSS 1.0)" @@ -3120,25 +3587,25 @@ msgstr "Емисия с бележки на %s (Atom)" msgid "FOAF for %s" msgstr "FOAF за %s" -#: actions/showstream.php:191 +#: actions/showstream.php:200 #, php-format msgid "This is the timeline for %1$s but %2$s hasn't posted anything yet." msgstr "" -#: actions/showstream.php:196 +#: actions/showstream.php:205 msgid "" "Seen anything interesting recently? You haven't posted any notices yet, now " "would be a good time to start :)" msgstr "" -#: actions/showstream.php:198 +#: actions/showstream.php:207 #, php-format msgid "" "You can try to nudge %1$s or [post something to his or her attention](%%%%" "action.newnotice%%%%?status_textarea=%2$s)." msgstr "" -#: actions/showstream.php:234 +#: actions/showstream.php:243 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3147,7 +3614,7 @@ msgid "" "follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showstream.php:239 +#: actions/showstream.php:248 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3155,7 +3622,7 @@ msgid "" "[StatusNet](http://status.net/) tool. " msgstr "" -#: actions/showstream.php:313 +#: actions/showstream.php:305 #, fuzzy, php-format msgid "Repeat of %s" msgstr "Отговори на %s" @@ -3172,199 +3639,146 @@ msgstr "Потребителят вече е заглушен." msgid "Basic settings for this StatusNet site." msgstr "Основни настройки на тази инсталация на StatusNet." -#: actions/siteadminpanel.php:146 +#: actions/siteadminpanel.php:132 msgid "Site name must have non-zero length." msgstr "Името на сайта е задължително." -#: actions/siteadminpanel.php:154 +#: actions/siteadminpanel.php:140 #, fuzzy msgid "You must have a valid contact email address." msgstr "Адресът на е-поща за контакт е задължителен" -#: actions/siteadminpanel.php:172 -#, fuzzy, php-format +#: actions/siteadminpanel.php:158 +#, php-format msgid "Unknown language \"%s\"." -msgstr "Непознат език \"%s\"" +msgstr "Непознат език \"%s\"." -#: actions/siteadminpanel.php:179 +#: actions/siteadminpanel.php:165 msgid "Invalid snapshot report URL." msgstr "" -#: actions/siteadminpanel.php:185 +#: actions/siteadminpanel.php:171 msgid "Invalid snapshot run value." msgstr "" -#: actions/siteadminpanel.php:191 +#: actions/siteadminpanel.php:177 msgid "Snapshot frequency must be a number." msgstr "" -#: actions/siteadminpanel.php:197 +#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "Минималното ограничение на текста е 140 знака." -#: actions/siteadminpanel.php:203 +#: actions/siteadminpanel.php:189 msgid "Dupe limit must 1 or more seconds." msgstr "" -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:239 msgid "General" msgstr "Общи" -#: actions/siteadminpanel.php:256 +#: actions/siteadminpanel.php:242 msgid "Site name" msgstr "Име на сайта" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:243 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "" -#: actions/siteadminpanel.php:261 +#: actions/siteadminpanel.php:247 msgid "Brought by" msgstr "" -#: actions/siteadminpanel.php:262 +#: actions/siteadminpanel.php:248 msgid "Text used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:266 +#: actions/siteadminpanel.php:252 msgid "Brought by URL" msgstr "" -#: actions/siteadminpanel.php:267 +#: actions/siteadminpanel.php:253 msgid "URL used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:271 +#: actions/siteadminpanel.php:257 msgid "Contact email address for your site" msgstr "Адрес на е-поща за контакт със сайта" -#: actions/siteadminpanel.php:277 +#: actions/siteadminpanel.php:263 #, fuzzy msgid "Local" msgstr "Местоположение" -#: actions/siteadminpanel.php:288 +#: actions/siteadminpanel.php:274 msgid "Default timezone" msgstr "Часови пояс по подразбиране" -#: actions/siteadminpanel.php:289 +#: actions/siteadminpanel.php:275 msgid "Default timezone for the site; usually UTC." msgstr "Часови пояс по подразбиране за сайта (обикновено UTC)." -#: actions/siteadminpanel.php:295 +#: actions/siteadminpanel.php:281 msgid "Default site language" msgstr "Език по подразбиране за сайта" -#: actions/siteadminpanel.php:303 -msgid "URLs" -msgstr "" - -#: actions/siteadminpanel.php:306 -msgid "Server" -msgstr "Сървър" - -#: actions/siteadminpanel.php:306 -msgid "Site's server hostname." -msgstr "" - -#: actions/siteadminpanel.php:310 -msgid "Fancy URLs" -msgstr "Кратки URL-адреси" - -#: actions/siteadminpanel.php:312 -msgid "Use fancy (more readable and memorable) URLs?" -msgstr "" - -#: actions/siteadminpanel.php:318 -msgid "Access" -msgstr "Достъп" - -#: actions/siteadminpanel.php:321 -msgid "Private" -msgstr "Частен" - -#: actions/siteadminpanel.php:323 -msgid "Prohibit anonymous users (not logged in) from viewing site?" -msgstr "" - -#: actions/siteadminpanel.php:327 -msgid "Invite only" -msgstr "Само с покани" - -#: actions/siteadminpanel.php:329 -msgid "Make registration invitation only." -msgstr "Новите регистрации да са само с покани." - -#: actions/siteadminpanel.php:333 -msgid "Closed" -msgstr "Затворен" - -#: actions/siteadminpanel.php:335 -msgid "Disable new registrations." -msgstr "Изключване на новите регистрации." - -#: actions/siteadminpanel.php:341 +#: actions/siteadminpanel.php:289 msgid "Snapshots" msgstr "" -#: actions/siteadminpanel.php:344 +#: actions/siteadminpanel.php:292 msgid "Randomly during Web hit" msgstr "" -#: actions/siteadminpanel.php:345 +#: actions/siteadminpanel.php:293 msgid "In a scheduled job" msgstr "" -#: actions/siteadminpanel.php:347 +#: actions/siteadminpanel.php:295 msgid "Data snapshots" msgstr "" -#: actions/siteadminpanel.php:348 +#: actions/siteadminpanel.php:296 msgid "When to send statistical data to status.net servers" msgstr "" -#: actions/siteadminpanel.php:353 +#: actions/siteadminpanel.php:301 msgid "Frequency" msgstr "Честота" -#: actions/siteadminpanel.php:354 +#: actions/siteadminpanel.php:302 msgid "Snapshots will be sent once every N web hits" msgstr "" -#: actions/siteadminpanel.php:359 +#: actions/siteadminpanel.php:307 msgid "Report URL" msgstr "" -#: actions/siteadminpanel.php:360 +#: actions/siteadminpanel.php:308 msgid "Snapshots will be sent to this URL" msgstr "" -#: actions/siteadminpanel.php:367 +#: actions/siteadminpanel.php:315 msgid "Limits" msgstr "Ограничения" -#: actions/siteadminpanel.php:370 +#: actions/siteadminpanel.php:318 msgid "Text limit" msgstr "" -#: actions/siteadminpanel.php:370 +#: actions/siteadminpanel.php:318 msgid "Maximum number of characters for notices." msgstr "" -#: actions/siteadminpanel.php:374 +#: actions/siteadminpanel.php:322 msgid "Dupe limit" msgstr "" -#: actions/siteadminpanel.php:374 +#: actions/siteadminpanel.php:322 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" -#: actions/siteadminpanel.php:388 actions/useradminpanel.php:313 -msgid "Save site settings" -msgstr "Запазване настройките на сайта" - #: actions/smssettings.php:58 -#, fuzzy msgid "SMS settings" msgstr "Настройки за SMS" @@ -3395,7 +3809,6 @@ msgid "Enter the code you received on your phone." msgstr "Въведете кода, който получихте по телефона." #: actions/smssettings.php:138 -#, fuzzy msgid "SMS phone number" msgstr "Телефонен номер за SMS" @@ -3470,16 +3883,27 @@ msgstr "Не е въведен код." msgid "You are not subscribed to that profile." msgstr "Не сте абонирани за този профил" -#: actions/subedit.php:83 +#: actions/subedit.php:83 classes/Subscription.php:89 +#: classes/Subscription.php:116 #, fuzzy msgid "Could not save subscription." msgstr "Грешка при създаване на нов абонамент." -#: actions/subscribe.php:55 -msgid "Not a local user." -msgstr "Не е локален потребител." +#: actions/subscribe.php:77 +msgid "This action only accepts POST requests." +msgstr "" -#: actions/subscribe.php:69 +#: actions/subscribe.php:107 +#, fuzzy +msgid "No such profile." +msgstr "Няма такъв файл." + +#: actions/subscribe.php:117 +#, fuzzy +msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." +msgstr "Не сте абонирани за този профил" + +#: actions/subscribe.php:145 #, fuzzy msgid "Subscribed" msgstr "Абониране" @@ -3540,7 +3964,7 @@ msgstr "Няма хора, чийто бележки четете." msgid "These are the people whose notices %s listens to." msgstr "Хора, чийто бележки %s чете." -#: actions/subscriptions.php:121 +#: actions/subscriptions.php:126 #, php-format msgid "" "You're not listening to anyone's notices right now, try subscribing to " @@ -3550,19 +3974,24 @@ msgid "" "automatically subscribe to people you already follow there." msgstr "" -#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#: actions/subscriptions.php:128 actions/subscriptions.php:132 #, php-format msgid "%s is not listening to anyone." msgstr "%s не получава ничии бележки." -#: actions/subscriptions.php:194 +#: actions/subscriptions.php:199 msgid "Jabber" msgstr "Jabber" -#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:204 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "SMS" +#: actions/tag.php:68 +#, fuzzy, php-format +msgid "Notices tagged with %1$s, page %2$d" +msgstr "Бележки с етикет %s, страница %d" + #: actions/tag.php:86 #, fuzzy, php-format msgid "Notice feed for tag %s (RSS 1.0)" @@ -3592,7 +4021,8 @@ msgstr "Етикети" msgid "User profile" msgstr "Потребителски профил" -#: actions/tagother.php:81 lib/userprofile.php:102 +#: actions/tagother.php:81 actions/userauthorization.php:132 +#: lib/userprofile.php:102 msgid "Photo" msgstr "Снимка" @@ -3651,7 +4081,7 @@ msgstr "Сървърът не е върнал адрес на профила." msgid "Unsubscribed" msgstr "Отписване" -#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#: actions/updateprofile.php:62 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -3666,88 +4096,68 @@ msgstr "Потребител" msgid "User settings for this StatusNet site." msgstr "" -#: actions/useradminpanel.php:149 +#: actions/useradminpanel.php:148 msgid "Invalid bio limit. Must be numeric." msgstr "" -#: actions/useradminpanel.php:155 +#: actions/useradminpanel.php:154 msgid "Invalid welcome text. Max length is 255 characters." msgstr "" -#: actions/useradminpanel.php:165 +#: actions/useradminpanel.php:164 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 +#: actions/useradminpanel.php:217 lib/accountsettingsaction.php:108 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Профил" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:221 msgid "Bio Limit" msgstr "" -#: actions/useradminpanel.php:223 +#: actions/useradminpanel.php:222 msgid "Maximum length of a profile bio in characters." msgstr "" -#: actions/useradminpanel.php:231 +#: actions/useradminpanel.php:230 msgid "New users" msgstr "Нови потребители" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:234 msgid "New user welcome" msgstr "" -#: actions/useradminpanel.php:236 +#: actions/useradminpanel.php:235 msgid "Welcome text for new users (Max 255 chars)." msgstr "" -#: actions/useradminpanel.php:241 +#: actions/useradminpanel.php:240 #, fuzzy msgid "Default subscription" msgstr "Всички абонаменти" -#: actions/useradminpanel.php:242 +#: actions/useradminpanel.php:241 #, fuzzy msgid "Automatically subscribe new users to this user." msgstr "" "Автоматично абониране за всеки, който се абонира за мен (подходящо за " "ботове)." -#: actions/useradminpanel.php:251 +#: actions/useradminpanel.php:250 msgid "Invitations" msgstr "Покани" -#: actions/useradminpanel.php:256 +#: actions/useradminpanel.php:255 msgid "Invitations enabled" msgstr "Поканите са включени" -#: actions/useradminpanel.php:258 +#: actions/useradminpanel.php:257 msgid "Whether to allow users to invite new users." msgstr "" -#: actions/useradminpanel.php:265 -msgid "Sessions" -msgstr "Сесии" - -#: actions/useradminpanel.php:270 -msgid "Handle sessions" -msgstr "Управление на сесии" - -#: actions/useradminpanel.php:272 -msgid "Whether to handle sessions ourselves." -msgstr "" - -#: actions/useradminpanel.php:276 -msgid "Session debugging" -msgstr "" - -#: actions/useradminpanel.php:278 -msgid "Turn on debugging output for sessions." -msgstr "" - #: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Одобряване на абонамента" @@ -3762,37 +4172,37 @@ msgstr "" "Проверете тези детайли и се уверете, че искате да се абонирате за бележките " "на този потребител. Ако не искате абонамента, натиснете \"Cancel\" (Отказ)." -#: actions/userauthorization.php:188 actions/version.php:165 +#: actions/userauthorization.php:196 actions/version.php:165 msgid "License" msgstr "Лиценз" -#: actions/userauthorization.php:209 +#: actions/userauthorization.php:217 msgid "Accept" msgstr "Приемане" -#: actions/userauthorization.php:210 lib/subscribeform.php:115 +#: actions/userauthorization.php:218 lib/subscribeform.php:115 #: lib/subscribeform.php:139 msgid "Subscribe to this user" msgstr "Абониране за този потребител" -#: actions/userauthorization.php:211 +#: actions/userauthorization.php:219 msgid "Reject" msgstr "Охвърляне" -#: actions/userauthorization.php:212 +#: actions/userauthorization.php:220 #, fuzzy msgid "Reject this subscription" msgstr "Абонаменти на %s" -#: actions/userauthorization.php:225 +#: actions/userauthorization.php:232 msgid "No authorization request!" msgstr "Няма заявка за одобрение." -#: actions/userauthorization.php:247 +#: actions/userauthorization.php:254 msgid "Subscription authorized" msgstr "Абонаментът е одобрен" -#: actions/userauthorization.php:249 +#: actions/userauthorization.php:256 #, fuzzy msgid "" "The subscription has been authorized, but no callback URL was passed. Check " @@ -3802,11 +4212,11 @@ msgstr "" "Абонаментът е одобрен, но не е зададен callback URL. За да завършите " "одобряването, проверете инструкциите на сайта. Вашият token за абонамент е:" -#: actions/userauthorization.php:259 +#: actions/userauthorization.php:266 msgid "Subscription rejected" msgstr "Абонаментът е отказан" -#: actions/userauthorization.php:261 +#: actions/userauthorization.php:268 #, fuzzy msgid "" "The subscription has been rejected, but no callback URL was passed. Check " @@ -3816,37 +4226,37 @@ msgstr "" "Абонаментът е отказан, но не е зададен callback URL. За да откажете напълно " "абонамента, проверете инструкциите на сайта." -#: actions/userauthorization.php:296 +#: actions/userauthorization.php:303 #, php-format msgid "Listener URI ‘%s’ not found here." msgstr "" -#: actions/userauthorization.php:301 +#: actions/userauthorization.php:308 #, php-format msgid "Listenee URI ‘%s’ is too long." msgstr "" -#: actions/userauthorization.php:307 +#: actions/userauthorization.php:314 #, php-format msgid "Listenee URI ‘%s’ is a local user." msgstr "" -#: actions/userauthorization.php:322 +#: actions/userauthorization.php:329 #, php-format msgid "Profile URL ‘%s’ is for a local user." msgstr "" -#: actions/userauthorization.php:338 +#: actions/userauthorization.php:345 #, php-format msgid "Avatar URL ‘%s’ is not valid." msgstr "" -#: actions/userauthorization.php:343 +#: actions/userauthorization.php:350 #, fuzzy, php-format msgid "Can’t read avatar URL ‘%s’." msgstr "Грешка при четене адреса на аватара '%s'" -#: actions/userauthorization.php:348 +#: actions/userauthorization.php:355 #, fuzzy, php-format msgid "Wrong image type for avatar URL ‘%s’." msgstr "Грешен вид изображение за '%s'" @@ -3866,10 +4276,14 @@ msgstr "" msgid "Enjoy your hotdog!" msgstr "" +#: actions/usergroups.php:64 +#, fuzzy, php-format +msgid "%1$s groups, page %2$d" +msgstr "Членове на групата %s, страница %d" + #: actions/usergroups.php:130 -#, fuzzy msgid "Search for more groups" -msgstr "Търсене за хора или бележки" +msgstr "Търсене на още групи" #: actions/usergroups.php:153 #, php-format @@ -3882,9 +4296,9 @@ msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" #: actions/version.php:73 -#, fuzzy, php-format +#, php-format msgid "StatusNet %s" -msgstr "Статистики" +msgstr "StatusNet %s" #: actions/version.php:153 #, php-format @@ -3893,11 +4307,6 @@ msgid "" "Inc. and contributors." msgstr "" -#: actions/version.php:157 -#, fuzzy -msgid "StatusNet" -msgstr "Бележката е изтрита." - #: actions/version.php:161 msgid "Contributors" msgstr "" @@ -3927,26 +4336,15 @@ msgstr "" #: actions/version.php:189 msgid "Plugins" -msgstr "" +msgstr "Приставки" -#: actions/version.php:195 -#, fuzzy -msgid "Name" -msgstr "Псевдоним" - -#: actions/version.php:196 lib/action.php:741 -#, fuzzy +#: actions/version.php:196 lib/action.php:747 msgid "Version" -msgstr "Сесии" +msgstr "Версия" #: actions/version.php:197 -#, fuzzy msgid "Author(s)" -msgstr "Автор" - -#: actions/version.php:198 lib/groupeditform.php:172 -msgid "Description" -msgstr "Описание" +msgstr "Автор(и)" #: classes/File.php:144 #, php-format @@ -3998,28 +4396,28 @@ msgstr "Грешка при вмъкване на съобщението." msgid "Could not update message with new URI." msgstr "Грешка при обновяване на бележката с нов URL-адрес." -#: classes/Notice.php:171 +#: classes/Notice.php:157 #, php-format msgid "DB error inserting hashtag: %s" msgstr "" -#: classes/Notice.php:225 +#: classes/Notice.php:222 #, fuzzy msgid "Problem saving notice. Too long." msgstr "Проблем при записване на бележката." -#: classes/Notice.php:229 +#: classes/Notice.php:226 msgid "Problem saving notice. Unknown user." msgstr "Грешка при записване на бележката. Непознат потребител." -#: classes/Notice.php:234 +#: classes/Notice.php:231 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" "Твърде много бележки за кратко време. Спрете, поемете дъх и публикувайте " "отново след няколко минути." -#: classes/Notice.php:240 +#: classes/Notice.php:237 #, fuzzy msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " @@ -4028,34 +4426,61 @@ msgstr "" "Твърде много бележки за кратко време. Спрете, поемете дъх и публикувайте " "отново след няколко минути." -#: classes/Notice.php:246 +#: classes/Notice.php:243 msgid "You are banned from posting notices on this site." msgstr "Забранено ви е да публикувате бележки в този сайт." -#: classes/Notice.php:305 classes/Notice.php:330 +#: classes/Notice.php:309 classes/Notice.php:335 msgid "Problem saving notice." msgstr "Проблем при записване на бележката." -#: classes/Notice.php:1052 -#, php-format -msgid "DB error inserting reply: %s" -msgstr "Грешка в базата от данни — отговор при вмъкването: %s" +#: classes/Notice.php:882 +#, fuzzy +msgid "Problem saving group inbox." +msgstr "Проблем при записване на бележката." -#: classes/Notice.php:1423 +#: classes/Notice.php:1407 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" -#: classes/User.php:382 +#: classes/Subscription.php:66 lib/oauthstore.php:465 +#, fuzzy +msgid "You have been banned from subscribing." +msgstr "Потребителят е забранил да се абонирате за него." + +#: classes/Subscription.php:70 +msgid "Already subscribed!" +msgstr "" + +#: classes/Subscription.php:74 +msgid "User has blocked you." +msgstr "Потребителят ви е блокирал." + +#: classes/Subscription.php:157 +#, fuzzy +msgid "Not subscribed!" +msgstr "Не сте абонирани!" + +#: classes/Subscription.php:163 +#, fuzzy +msgid "Couldn't delete self-subscription." +msgstr "Грешка при изтриване на абонамента." + +#: classes/Subscription.php:179 lib/subs.php:69 +msgid "Couldn't delete subscription." +msgstr "Грешка при изтриване на абонамента." + +#: classes/User.php:372 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "Добре дошли в %1$s, @%2$s!" -#: classes/User_group.php:380 +#: classes/User_group.php:423 msgid "Could not create group." msgstr "Грешка при създаване на групата." -#: classes/User_group.php:409 +#: classes/User_group.php:452 #, fuzzy msgid "Could not set group membership." msgstr "Грешка при създаване на нов абонамент." @@ -4090,140 +4515,136 @@ msgid "Other options" msgstr "Други настройки" #: lib/action.php:144 -#, fuzzy, php-format +#, php-format msgid "%1$s - %2$s" -msgstr "%1$s (%2$s)" +msgstr "%1$s - %2$s" #: lib/action.php:159 msgid "Untitled page" msgstr "Неозаглавена страница" -#: lib/action.php:427 +#: lib/action.php:433 msgid "Primary site navigation" msgstr "" -#: lib/action.php:433 +#: lib/action.php:439 msgid "Home" msgstr "Начало" -#: lib/action.php:433 +#: lib/action.php:439 msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:435 -msgid "Account" -msgstr "Сметка" - -#: lib/action.php:435 +#: lib/action.php:441 msgid "Change your email, avatar, password, profile" msgstr "Промяна на поща, аватар, парола, профил" -#: lib/action.php:438 +#: lib/action.php:444 msgid "Connect" msgstr "Свързване" -#: lib/action.php:438 +#: lib/action.php:444 msgid "Connect to services" msgstr "Свързване към услуги" -#: lib/action.php:442 +#: lib/action.php:448 msgid "Change site configuration" msgstr "Промяна настройките на сайта" -#: lib/action.php:446 lib/subgroupnav.php:105 +#: lib/action.php:452 lib/subgroupnav.php:105 msgid "Invite" msgstr "Покани" -#: lib/action.php:447 lib/subgroupnav.php:106 +#: lib/action.php:453 lib/subgroupnav.php:106 #, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "Поканете приятели и колеги да се присъединят към вас в %s" -#: lib/action.php:452 +#: lib/action.php:458 msgid "Logout" msgstr "Изход" -#: lib/action.php:452 +#: lib/action.php:458 msgid "Logout from the site" msgstr "Излизане от сайта" -#: lib/action.php:457 +#: lib/action.php:463 msgid "Create an account" msgstr "Създаване на нова сметка" -#: lib/action.php:460 +#: lib/action.php:466 msgid "Login to the site" msgstr "Влизане в сайта" -#: lib/action.php:463 lib/action.php:726 +#: lib/action.php:469 lib/action.php:732 msgid "Help" msgstr "Помощ" -#: lib/action.php:463 +#: lib/action.php:469 #, fuzzy msgid "Help me!" msgstr "Помощ" -#: lib/action.php:466 lib/searchaction.php:127 +#: lib/action.php:472 lib/searchaction.php:127 msgid "Search" msgstr "Търсене" -#: lib/action.php:466 +#: lib/action.php:472 msgid "Search for people or text" msgstr "Търсене за хора или бележки" -#: lib/action.php:487 +#: lib/action.php:493 #, fuzzy msgid "Site notice" msgstr "Нова бележка" -#: lib/action.php:553 +#: lib/action.php:559 msgid "Local views" msgstr "" -#: lib/action.php:619 +#: lib/action.php:625 #, fuzzy msgid "Page notice" msgstr "Нова бележка" -#: lib/action.php:721 +#: lib/action.php:727 #, fuzzy msgid "Secondary site navigation" msgstr "Абонаменти" -#: lib/action.php:728 +#: lib/action.php:734 msgid "About" msgstr "Относно" -#: lib/action.php:730 +#: lib/action.php:736 msgid "FAQ" msgstr "Въпроси" -#: lib/action.php:734 +#: lib/action.php:740 msgid "TOS" msgstr "Условия" -#: lib/action.php:737 +#: lib/action.php:743 msgid "Privacy" msgstr "Поверителност" -#: lib/action.php:739 +#: lib/action.php:745 msgid "Source" msgstr "Изходен код" -#: lib/action.php:743 +#: lib/action.php:749 msgid "Contact" msgstr "Контакт" -#: lib/action.php:745 +#: lib/action.php:751 msgid "Badge" msgstr "Табелка" -#: lib/action.php:773 +#: lib/action.php:779 msgid "StatusNet software license" msgstr "Лиценз на програмата StatusNet" -#: lib/action.php:776 +#: lib/action.php:782 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4232,12 +4653,12 @@ msgstr "" "**%%site.name%%** е услуга за микроблогване, предоставена ви от [%%site." "broughtby%%](%%site.broughtbyurl%%). " -#: lib/action.php:778 +#: lib/action.php:784 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** е услуга за микроблогване. " -#: lib/action.php:780 +#: lib/action.php:786 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4248,33 +4669,55 @@ msgstr "" "достъпна под [GNU Affero General Public License](http://www.fsf.org/" "licensing/licenses/agpl-3.0.html)." -#: lib/action.php:794 +#: lib/action.php:801 msgid "Site content license" msgstr "Лиценз на съдържанието" -#: lib/action.php:803 +#: lib/action.php:806 +#, php-format +msgid "Content and data of %1$s are private and confidential." +msgstr "" + +#: lib/action.php:811 +#, php-format +msgid "Content and data copyright by %1$s. All rights reserved." +msgstr "" + +#: lib/action.php:814 +msgid "Content and data copyright by contributors. All rights reserved." +msgstr "" + +#: lib/action.php:827 msgid "All " msgstr "Всички " -#: lib/action.php:808 +#: lib/action.php:833 msgid "license." msgstr "лиценз." -#: lib/action.php:1102 +#: lib/action.php:1132 msgid "Pagination" msgstr "Страниране" -#: lib/action.php:1111 +#: lib/action.php:1141 msgid "After" msgstr "След" -#: lib/action.php:1119 +#: lib/action.php:1149 msgid "Before" msgstr "Преди" -#: lib/action.php:1167 -msgid "There was a problem with your session token." -msgstr "Имаше проблем със сесията ви в сайта." +#: lib/activity.php:382 +msgid "Can't handle remote content yet." +msgstr "" + +#: lib/activity.php:410 +msgid "Can't handle embedded XML content yet." +msgstr "" + +#: lib/activity.php:414 +msgid "Can't handle embedded Base64 content yet." +msgstr "" #: lib/adminpanelaction.php:96 msgid "You cannot make changes to this site." @@ -4308,10 +4751,104 @@ msgstr "Основна настройка на сайта" msgid "Design configuration" msgstr "Настройка на оформлението" -#: lib/adminpanelaction.php:322 lib/adminpanelaction.php:327 +#: lib/adminpanelaction.php:322 +#, fuzzy +msgid "User configuration" +msgstr "Настройка на пътищата" + +#: lib/adminpanelaction.php:327 +#, fuzzy +msgid "Access configuration" +msgstr "Настройка на оформлението" + +#: lib/adminpanelaction.php:332 msgid "Paths configuration" msgstr "Настройка на пътищата" +#: lib/adminpanelaction.php:337 +#, fuzzy +msgid "Sessions configuration" +msgstr "Настройка на оформлението" + +#: lib/apiauth.php:95 +msgid "API resource requires read-write access, but you only have read access." +msgstr "" + +#: lib/apiauth.php:273 +#, php-format +msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" +msgstr "" + +#: lib/applicationeditform.php:136 +msgid "Edit application" +msgstr "" + +#: lib/applicationeditform.php:184 +msgid "Icon for this application" +msgstr "" + +#: lib/applicationeditform.php:204 +#, fuzzy, php-format +msgid "Describe your application in %d characters" +msgstr "Опишете групата или темата в до %d букви" + +#: lib/applicationeditform.php:207 +#, fuzzy +msgid "Describe your application" +msgstr "Опишете групата или темата" + +#: lib/applicationeditform.php:216 +#, fuzzy +msgid "Source URL" +msgstr "Изходен код" + +#: lib/applicationeditform.php:218 +#, fuzzy +msgid "URL of the homepage of this application" +msgstr "Адрес на страница, блог или профил в друг сайт на групата" + +#: lib/applicationeditform.php:224 +msgid "Organization responsible for this application" +msgstr "" + +#: lib/applicationeditform.php:230 +#, fuzzy +msgid "URL for the homepage of the organization" +msgstr "Адрес на страница, блог или профил в друг сайт на групата" + +#: lib/applicationeditform.php:236 +msgid "URL to redirect to after authentication" +msgstr "" + +#: lib/applicationeditform.php:258 +msgid "Browser" +msgstr "" + +#: lib/applicationeditform.php:274 +msgid "Desktop" +msgstr "" + +#: lib/applicationeditform.php:275 +msgid "Type of application, browser or desktop" +msgstr "" + +#: lib/applicationeditform.php:297 +msgid "Read-only" +msgstr "" + +#: lib/applicationeditform.php:315 +msgid "Read-write" +msgstr "" + +#: lib/applicationeditform.php:316 +msgid "Default access for this application: read-only, or read-write" +msgstr "" + +#: lib/applicationlist.php:154 +#, fuzzy +msgid "Revoke" +msgstr "Премахване" + #: lib/attachmentlist.php:87 msgid "Attachments" msgstr "" @@ -4332,12 +4869,12 @@ msgstr "" msgid "Tags for this attachment" msgstr "" -#: lib/authenticationplugin.php:182 lib/authenticationplugin.php:187 +#: lib/authenticationplugin.php:218 lib/authenticationplugin.php:223 #, fuzzy msgid "Password changing failed" msgstr "Паролата е записана." -#: lib/authenticationplugin.php:197 +#: lib/authenticationplugin.php:233 #, fuzzy msgid "Password changing is not allowed" msgstr "Паролата е записана." @@ -4492,80 +5029,89 @@ msgstr "Грешка при записване на бележката." msgid "Specify the name of the user to subscribe to" msgstr "Уточнете името на потребителя, за когото се абонирате." -#: lib/command.php:554 +#: lib/command.php:554 lib/command.php:589 +msgid "No such user" +msgstr "Няма такъв потребител" + +#: lib/command.php:561 #, php-format msgid "Subscribed to %s" msgstr "Абонирани сте за %s." -#: lib/command.php:575 +#: lib/command.php:582 lib/command.php:685 msgid "Specify the name of the user to unsubscribe from" msgstr "Уточнете името на потребителя, от когото се отписвате." -#: lib/command.php:582 +#: lib/command.php:595 #, php-format msgid "Unsubscribed from %s" msgstr "Отписани сте от %s." -#: lib/command.php:600 lib/command.php:623 +#: lib/command.php:613 lib/command.php:636 msgid "Command not yet implemented." msgstr "Командата все още не се поддържа." -#: lib/command.php:603 +#: lib/command.php:616 msgid "Notification off." msgstr "Уведомлението е изключено." -#: lib/command.php:605 +#: lib/command.php:618 msgid "Can't turn off notification." msgstr "Грешка при изключване на уведомлението." -#: lib/command.php:626 +#: lib/command.php:639 msgid "Notification on." msgstr "Уведомлението е включено." -#: lib/command.php:628 +#: lib/command.php:641 msgid "Can't turn on notification." msgstr "Грешка при включване на уведомлението." -#: lib/command.php:641 +#: lib/command.php:654 msgid "Login command is disabled" msgstr "" -#: lib/command.php:652 +#: lib/command.php:665 #, php-format msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "" -#: lib/command.php:668 +#: lib/command.php:692 +#, fuzzy, php-format +msgid "Unsubscribed %s" +msgstr "Отписани сте от %s." + +#: lib/command.php:709 msgid "You are not subscribed to anyone." msgstr "Не сте абонирани за никого." -#: lib/command.php:670 +#: lib/command.php:711 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "Вече сте абонирани за следните потребители:" msgstr[1] "Вече сте абонирани за следните потребители:" -#: lib/command.php:690 +#: lib/command.php:731 msgid "No one is subscribed to you." msgstr "Никой не е абониран за вас." -#: lib/command.php:692 +#: lib/command.php:733 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "Грешка при абониране на друг потребител за вас." msgstr[1] "Грешка при абониране на друг потребител за вас." -#: lib/command.php:712 +#: lib/command.php:753 msgid "You are not a member of any groups." msgstr "Не членувате в нито една група." -#: lib/command.php:714 +#: lib/command.php:755 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "Не членувате в тази група." msgstr[1] "Не членувате в тази група." -#: lib/command.php:728 +#: lib/command.php:769 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -4579,6 +5125,7 @@ msgid "" "d - direct message to user\n" "get - get last notice from user\n" "whois - get profile info on user\n" +"lose - force user to stop following you\n" "fav - add user's last notice as a 'fave'\n" "fav # - add notice with the given id as a 'fave'\n" "repeat # - repeat a notice with a given id\n" @@ -4606,19 +5153,19 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:131 +#: lib/common.php:136 msgid "No configuration file found. " msgstr "Не е открит файл с настройки. " -#: lib/common.php:132 +#: lib/common.php:137 msgid "I looked for configuration files in the following places: " msgstr "" -#: lib/common.php:134 +#: lib/common.php:139 msgid "You may wish to run the installer to fix this." msgstr "" -#: lib/common.php:135 +#: lib/common.php:140 #, fuzzy msgid "Go to the installer." msgstr "Влизане в сайта" @@ -4635,6 +5182,15 @@ msgstr "Бележки през месинджър (IM)" msgid "Updates by SMS" msgstr "Бележки през SMS" +#: lib/connectsettingsaction.php:120 +#, fuzzy +msgid "Connections" +msgstr "Свързване" + +#: lib/connectsettingsaction.php:121 +msgid "Authorized connected applications" +msgstr "" + #: lib/dberroraction.php:60 msgid "Database error" msgstr "Грешка в базата от данни" @@ -4822,12 +5378,12 @@ msgstr "MB" msgid "kB" msgstr "kB" -#: lib/jabber.php:202 +#: lib/jabber.php:220 #, php-format msgid "[%s]" msgstr "" -#: lib/jabber.php:385 +#: lib/jabber.php:400 #, fuzzy, php-format msgid "Unknown inbox source %d." msgstr "Непознат език \"%s\"" @@ -4900,11 +5456,9 @@ msgstr "" "Може да смените адреса и настройките за уведомяване по е-поща на %8$s\n" #: lib/mail.php:258 -#, fuzzy, php-format +#, php-format msgid "Bio: %s" -msgstr "" -"Биография: %s\n" -"\n" +msgstr "Биография: %s" #: lib/mail.php:286 #, php-format @@ -5034,7 +5588,7 @@ msgid "" "users in conversation. People can send you messages for your eyes only." msgstr "" -#: lib/mailbox.php:227 lib/noticelist.php:477 +#: lib/mailbox.php:227 lib/noticelist.php:482 msgid "from" msgstr "от" @@ -5152,57 +5706,53 @@ msgid "Do not share my location" msgstr "Грешка при запазване етикетите." #: lib/noticeform.php:216 -msgid "Hide this info" -msgstr "" - -#: lib/noticeform.php:217 msgid "" "Sorry, retrieving your geo location is taking longer than expected, please " "try again later" msgstr "" -#: lib/noticelist.php:428 +#: lib/noticelist.php:429 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "" -#: lib/noticelist.php:429 +#: lib/noticelist.php:430 msgid "N" msgstr "С" -#: lib/noticelist.php:429 +#: lib/noticelist.php:430 msgid "S" msgstr "Ю" -#: lib/noticelist.php:430 +#: lib/noticelist.php:431 msgid "E" msgstr "И" -#: lib/noticelist.php:430 +#: lib/noticelist.php:431 msgid "W" msgstr "З" -#: lib/noticelist.php:436 +#: lib/noticelist.php:438 msgid "at" msgstr "" -#: lib/noticelist.php:531 +#: lib/noticelist.php:558 msgid "in context" msgstr "в контекст" -#: lib/noticelist.php:556 +#: lib/noticelist.php:583 msgid "Repeated by" msgstr "Повторено от" -#: lib/noticelist.php:585 +#: lib/noticelist.php:610 msgid "Reply to this notice" msgstr "Отговаряне на тази бележка" -#: lib/noticelist.php:586 +#: lib/noticelist.php:611 msgid "Reply" msgstr "Отговор" -#: lib/noticelist.php:628 +#: lib/noticelist.php:655 msgid "Notice repeated" msgstr "Бележката е повторена." @@ -5235,12 +5785,7 @@ msgstr "Грешка при вмъкване на отдалечен профи msgid "Duplicate notice" msgstr "Изтриване на бележката" -#: lib/oauthstore.php:466 lib/subs.php:48 -#, fuzzy -msgid "You have been banned from subscribing." -msgstr "Потребителят е забранил да се абонирате за него." - -#: lib/oauthstore.php:491 +#: lib/oauthstore.php:490 msgid "Couldn't insert new subscription." msgstr "Грешка при добавяне на нов абонамент." @@ -5256,19 +5801,19 @@ msgstr "Отговори" msgid "Favorites" msgstr "Любими" -#: lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "Входящи" -#: lib/personalgroupnav.php:125 +#: lib/personalgroupnav.php:126 msgid "Your incoming messages" msgstr "Получените от вас съобщения" -#: lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 msgid "Outbox" msgstr "Изходящи" -#: lib/personalgroupnav.php:130 +#: lib/personalgroupnav.php:131 msgid "Your sent messages" msgstr "Изпратените от вас съобщения" @@ -5348,6 +5893,10 @@ msgstr "Повтаряне на тази бележка" msgid "Repeat this notice" msgstr "Повтаряне на тази бележка" +#: lib/router.php:665 +msgid "No single user defined for single-user mode." +msgstr "" + #: lib/sandboxform.php:67 #, fuzzy msgid "Sandbox" @@ -5419,36 +5968,6 @@ msgstr "Абонирани за %s" msgid "Groups %s is a member of" msgstr "Групи, в които участва %s" -#: lib/subs.php:52 -msgid "Already subscribed!" -msgstr "" - -#: lib/subs.php:56 -msgid "User has blocked you." -msgstr "Потребителят ви е блокирал." - -#: lib/subs.php:63 -msgid "Could not subscribe." -msgstr "Грешка при абониране." - -#: lib/subs.php:82 -msgid "Could not subscribe other to you." -msgstr "Грешка при абониране на друг потребител за вас." - -#: lib/subs.php:137 -#, fuzzy -msgid "Not subscribed!" -msgstr "Не сте абонирани!" - -#: lib/subs.php:142 -#, fuzzy -msgid "Couldn't delete self-subscription." -msgstr "Грешка при изтриване на абонамента." - -#: lib/subs.php:158 -msgid "Couldn't delete subscription." -msgstr "Грешка при изтриване на абонамента." - #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -5501,67 +6020,67 @@ msgstr "Редактиране на аватара" msgid "User actions" msgstr "Потребителски действия" -#: lib/userprofile.php:248 +#: lib/userprofile.php:251 msgid "Edit profile settings" msgstr "Редактиране на профила" -#: lib/userprofile.php:249 +#: lib/userprofile.php:252 msgid "Edit" msgstr "Редактиране" -#: lib/userprofile.php:272 +#: lib/userprofile.php:275 msgid "Send a direct message to this user" msgstr "Изпращате на пряко съобщение до този потребител." -#: lib/userprofile.php:273 +#: lib/userprofile.php:276 msgid "Message" msgstr "Съобщение" -#: lib/userprofile.php:311 +#: lib/userprofile.php:314 msgid "Moderate" msgstr "" -#: lib/util.php:877 +#: lib/util.php:952 msgid "a few seconds ago" msgstr "преди няколко секунди" -#: lib/util.php:879 +#: lib/util.php:954 msgid "about a minute ago" msgstr "преди около минута" -#: lib/util.php:881 +#: lib/util.php:956 #, php-format msgid "about %d minutes ago" msgstr "преди около %d минути" -#: lib/util.php:883 +#: lib/util.php:958 msgid "about an hour ago" msgstr "преди около час" -#: lib/util.php:885 +#: lib/util.php:960 #, php-format msgid "about %d hours ago" msgstr "преди около %d часа" -#: lib/util.php:887 +#: lib/util.php:962 msgid "about a day ago" msgstr "преди около ден" -#: lib/util.php:889 +#: lib/util.php:964 #, php-format msgid "about %d days ago" msgstr "преди около %d дни" -#: lib/util.php:891 +#: lib/util.php:966 msgid "about a month ago" msgstr "преди около месец" -#: lib/util.php:893 +#: lib/util.php:968 #, php-format msgid "about %d months ago" msgstr "преди около %d месеца" -#: lib/util.php:895 +#: lib/util.php:970 msgid "about a year ago" msgstr "преди около година" @@ -5575,7 +6094,7 @@ msgstr "%s не е допустим цвят!" msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "%s не е допустим цвят! Използвайте 3 или 6 шестнадесетични знака." -#: scripts/xmppdaemon.php:301 +#: lib/xmppmanager.php:402 #, fuzzy, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "" diff --git a/locale/ca/LC_MESSAGES/statusnet.po b/locale/ca/LC_MESSAGES/statusnet.po index 8ad8d18eca..d94ad84310 100644 --- a/locale/ca/LC_MESSAGES/statusnet.po +++ b/locale/ca/LC_MESSAGES/statusnet.po @@ -1,5 +1,6 @@ # Translation of StatusNet to Catalan # +# Author@translatewiki.net: Aleator # Author@translatewiki.net: McDutchie # Author@translatewiki.net: Toniher # -- @@ -9,17 +10,74 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-01-13 22:04+0000\n" -"PO-Revision-Date: 2010-01-13 22:04:50+0000\n" +"POT-Creation-Date: 2010-02-24 23:49+0000\n" +"PO-Revision-Date: 2010-02-24 23:50:15+0000\n" "Language-Team: Catalan\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha (r61027); Translate extension (2010-01-04)\n" +"X-Generator: MediaWiki 1.17alpha (r62925); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: actions/accessadminpanel.php:54 lib/adminpanelaction.php:326 +msgid "Access" +msgstr "Accés" + +#: actions/accessadminpanel.php:65 +#, fuzzy +msgid "Site access settings" +msgstr "Desa els paràmetres del lloc" + +#: actions/accessadminpanel.php:158 +#, fuzzy +msgid "Registration" +msgstr "Registre" + +#: actions/accessadminpanel.php:161 +msgid "Private" +msgstr "Privat" + +#: actions/accessadminpanel.php:163 +msgid "Prohibit anonymous users (not logged in) from viewing site?" +msgstr "" +"Voleu prohibir als usuaris anònims (que no han iniciat cap sessió) " +"visualitzar el lloc?" + +#: actions/accessadminpanel.php:167 +msgid "Invite only" +msgstr "Només invitació" + +#: actions/accessadminpanel.php:169 +msgid "Make registration invitation only." +msgstr "Fes que el registre sigui només amb invitacions." + +#: actions/accessadminpanel.php:173 +msgid "Closed" +msgstr "Tancat" + +#: actions/accessadminpanel.php:175 +msgid "Disable new registrations." +msgstr "Inhabilita els nous registres." + +#: actions/accessadminpanel.php:189 actions/designadminpanel.php:586 +#: actions/emailsettings.php:195 actions/imsettings.php:163 +#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 +#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 +#: actions/siteadminpanel.php:336 actions/smssettings.php:181 +#: actions/subscriptions.php:208 actions/tagother.php:154 +#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 lib/designsettings.php:256 +#: lib/groupeditform.php:202 +msgid "Save" +msgstr "Guardar" + +#: actions/accessadminpanel.php:189 +#, fuzzy +msgid "Save access settings" +msgstr "Desa els paràmetres del lloc" + #: actions/all.php:63 actions/public.php:97 actions/replies.php:92 #: actions/showfavorites.php:137 actions/tag.php:51 msgid "No such page" @@ -34,25 +92,29 @@ msgstr "No existeix la pàgina." #: 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:144 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apistatusesupdate.php:148 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:78 #: actions/apitimelinehome.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/otp.php:76 #: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154 -#: actions/replies.php:73 actions/repliesrss.php:38 +#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 #: 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:302 lib/command.php:355 #: lib/command.php:401 lib/command.php:462 lib/command.php:518 #: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 -#: lib/subs.php:34 lib/subs.php:125 msgid "No such user." msgstr "No existeix aquest usuari." +#: actions/all.php:84 +#, fuzzy, php-format +msgid "%1$s and friends, page %2$d" +msgstr "%s perfils blocats, pàgina %d" + #: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 -#: actions/apitimelinefriends.php:115 actions/apitimelinehome.php:115 +#: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" @@ -95,7 +157,7 @@ msgid "" "his or her attention](%%%%action.newnotice%%%%?status_textarea=%3$s)." msgstr "" -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211 #, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " @@ -106,8 +168,8 @@ msgstr "" msgid "You and friends" msgstr "Un mateix i amics" -#: actions/allrss.php:119 actions/apitimelinefriends.php:122 -#: actions/apitimelinehome.php:122 +#: actions/allrss.php:119 actions/apitimelinefriends.php:119 +#: actions/apitimelinehome.php:120 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Actualitzacions de %1$s i amics a %2$s!" @@ -117,23 +179,23 @@ msgstr "Actualitzacions de %1$s i amics a %2$s!" #: actions/apiaccountupdateprofile.php:97 #: actions/apiaccountupdateprofilebackgroundimage.php:94 #: actions/apiaccountupdateprofilecolors.php:118 -#: 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:136 actions/apigroupismember.php:114 -#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 -#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 -#: actions/apigroupmembership.php:106 actions/apigroupshow.php:105 -#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 -#: actions/apistatusesretweets.php:112 actions/apistatusesshow.php:108 -#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93 -#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:146 -#: actions/apitimelinefriends.php:156 actions/apitimelinegroup.php:150 -#: actions/apitimelinehome.php:156 actions/apitimelinementions.php:151 -#: actions/apitimelinepublic.php:131 actions/apitimelineretweetedbyme.php:122 +#: actions/apiaccountverifycredentials.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:128 actions/apigroupcreate.php:136 +#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 +#: actions/apigroupleave.php:141 actions/apigrouplist.php:132 +#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 +#: actions/apigroupshow.php:115 actions/apihelptest.php:88 +#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 +#: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 #: actions/apitimelineretweetedtome.php:121 -#: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141 -#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 +#: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 +#: actions/apitimelineuser.php:207 actions/apiusershow.php:101 #, fuzzy msgid "API method not found." msgstr "No s'ha trobat el mètode API!" @@ -148,7 +210,7 @@ msgstr "No s'ha trobat el mètode API!" #: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 #: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 #: actions/apigroupleave.php:91 actions/apistatusesretweet.php:65 -#: actions/apistatusesupdate.php:114 +#: actions/apistatusesupdate.php:118 msgid "This method requires a POST." msgstr "Aquest mètode requereix POST." @@ -179,8 +241,9 @@ msgstr "No s'ha pogut guardar el perfil." #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:97 -#: actions/apistatusesupdate.php:127 actions/avatarsettings.php:257 -#: actions/designadminpanel.php:122 actions/newnotice.php:94 +#: actions/apistatusesupdate.php:131 actions/avatarsettings.php:257 +#: actions/designadminpanel.php:122 actions/editapplication.php:118 +#: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 #, php-format msgid "" @@ -304,11 +367,11 @@ msgstr "No podeu suprimir els usuaris." msgid "Two user ids or screen_names must be supplied." msgstr "Dos ids d'usuari o screen_names has de ser substituïts." -#: actions/apifriendshipsshow.php:135 +#: actions/apifriendshipsshow.php:134 msgid "Could not determine source user." msgstr "No s'ha pogut determinar l'usuari d'origen." -#: actions/apifriendshipsshow.php:143 +#: actions/apifriendshipsshow.php:142 #, fuzzy msgid "Could not find target user." msgstr "No es pot trobar cap estatus." @@ -333,7 +396,8 @@ msgstr "Aquest sobrenom ja existeix. Prova un altre. " msgid "Not a valid nickname." msgstr "Sobrenom no vàlid." -#: actions/apigroupcreate.php:196 actions/editgroup.php:195 +#: actions/apigroupcreate.php:196 actions/editapplication.php:215 +#: actions/editgroup.php:195 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:217 msgid "Homepage is not a valid URL." @@ -345,7 +409,8 @@ msgstr "La pàgina personal no és un URL vàlid." msgid "Full name is too long (max 255 chars)." msgstr "El teu nom és massa llarg (màx. 255 caràcters)." -#: actions/apigroupcreate.php:213 +#: actions/apigroupcreate.php:213 actions/editapplication.php:190 +#: actions/newapplication.php:172 #, php-format msgid "Description is too long (max %d chars)." msgstr "La descripció és massa llarga (màx. %d caràcters)." @@ -381,7 +446,7 @@ msgstr "L'àlies no pot ser el mateix que el sobrenom." #: actions/apigroupismember.php:95 actions/apigroupjoin.php:104 #: actions/apigroupleave.php:104 actions/apigroupmembership.php:91 -#: actions/apigroupshow.php:90 actions/apitimelinegroup.php:91 +#: actions/apigroupshow.php:82 actions/apitimelinegroup.php:91 msgid "Group not found!" msgstr "No s'ha trobat el grup!" @@ -422,6 +487,118 @@ msgstr "%s grups" msgid "groups on %s" msgstr "grups sobre %s" +#: actions/apioauthauthorize.php:101 +msgid "No oauth_token parameter provided." +msgstr "" + +#: actions/apioauthauthorize.php:106 +#, fuzzy +msgid "Invalid token." +msgstr "Mida invàlida." + +#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 +#: actions/deletenotice.php:157 actions/disfavor.php:74 +#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54 +#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupunblock.php:66 actions/imsettings.php:206 +#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 +#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 +#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135 +#: actions/othersettings.php:145 actions/passwordsettings.php:138 +#: actions/profilesettings.php:194 actions/recoverpassword.php:337 +#: actions/register.php:165 actions/remotesubscribe.php:77 +#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 +#: actions/subscribe.php:86 actions/tagother.php:166 +#: 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/apioauthauthorize.php:135 +#, fuzzy +msgid "Invalid nickname / password!" +msgstr "Nom d'usuari o contrasenya invàlids." + +#: actions/apioauthauthorize.php:159 +#, fuzzy +msgid "Database error deleting OAuth application user." +msgstr "Error en configurar l'usuari." + +#: actions/apioauthauthorize.php:185 +#, fuzzy +msgid "Database error inserting OAuth application user." +msgstr "Hashtag de l'error de la base de dades:%s" + +#: actions/apioauthauthorize.php:214 +#, php-format +msgid "" +"The request token %s has been authorized. Please exchange it for an access " +"token." +msgstr "" + +#: actions/apioauthauthorize.php:227 +#, php-format +msgid "The request token %s has been denied and revoked." +msgstr "" + +#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 +#: actions/designadminpanel.php:103 actions/editapplication.php:139 +#: actions/emailsettings.php:256 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/newapplication.php:121 +#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 +#: actions/smssettings.php:248 lib/designsettings.php:304 +msgid "Unexpected form submission." +msgstr "Enviament de formulari inesperat." + +#: actions/apioauthauthorize.php:259 +msgid "An application would like to connect to your account" +msgstr "" + +#: actions/apioauthauthorize.php:276 +msgid "Allow or deny access" +msgstr "" + +#: actions/apioauthauthorize.php:292 +#, php-format +msgid "" +"The application %1$s by %2$s would like " +"the ability to %3$s your %4$s account data. You should only " +"give access to your %4$s account to third parties you trust." +msgstr "" + +#: actions/apioauthauthorize.php:310 lib/action.php:441 +msgid "Account" +msgstr "Compte" + +#: actions/apioauthauthorize.php:313 actions/login.php:230 +#: actions/profilesettings.php:106 actions/register.php:424 +#: actions/showgroup.php:236 actions/tagother.php:94 +#: actions/userauthorization.php:145 lib/groupeditform.php:152 +#: lib/userprofile.php:131 +msgid "Nickname" +msgstr "Sobrenom" + +#: actions/apioauthauthorize.php:316 actions/login.php:233 +#: actions/register.php:429 lib/accountsettingsaction.php:116 +msgid "Password" +msgstr "Contrasenya" + +#: actions/apioauthauthorize.php:328 +#, fuzzy +msgid "Deny" +msgstr "Disseny" + +#: actions/apioauthauthorize.php:334 +#, fuzzy +msgid "Allow" +msgstr "Tot" + +#: actions/apioauthauthorize.php:351 +msgid "Allow or deny access to your account information." +msgstr "" + #: actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." msgstr "Aquest mètode requereix POST o DELETE." @@ -453,17 +630,17 @@ msgstr "S'ha suprimit l'estat." msgid "No status with that ID found." msgstr "No s'ha trobat cap estatus amb la ID trobada." -#: actions/apistatusesupdate.php:157 actions/newnotice.php:155 +#: actions/apistatusesupdate.php:161 actions/newnotice.php:155 #: lib/mailhandler.php:60 #, php-format msgid "That's too long. Max notice size is %d chars." msgstr "Massa llarg. La longitud màxima és de %d caràcters." -#: actions/apistatusesupdate.php:198 +#: actions/apistatusesupdate.php:202 msgid "Not found" msgstr "No s'ha trobat" -#: actions/apistatusesupdate.php:221 actions/newnotice.php:178 +#: actions/apistatusesupdate.php:225 actions/newnotice.php:178 #, php-format msgid "Max notice size is %d chars, including attachment URL." msgstr "" @@ -477,7 +654,7 @@ msgstr "El format no està implementat." msgid "%1$s / Favorites from %2$s" msgstr "%s / Preferits de %s" -#: actions/apitimelinefavorites.php:120 +#: actions/apitimelinefavorites.php:117 #, fuzzy, php-format msgid "%1$s updates favorited by %2$s / %2$s." msgstr "%s actualitzacions favorites per %s / %s." @@ -488,7 +665,7 @@ msgstr "%s actualitzacions favorites per %s / %s." msgid "%s timeline" msgstr "%s línia temporal" -#: actions/apitimelinegroup.php:117 actions/apitimelineuser.php:126 +#: actions/apitimelinegroup.php:114 actions/apitimelineuser.php:126 #: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" @@ -504,27 +681,22 @@ msgstr "%1$s / Notificacions contestant a %2$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/apitimelinepublic.php:107 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "%s línia temporal pública" -#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "%s notificacions de tots!" -#: actions/apitimelineretweetedbyme.php:112 -#, php-format -msgid "Repeated by %s" -msgstr "Repetit per %s" - #: actions/apitimelineretweetedtome.php:111 #, fuzzy, php-format msgid "Repeated to %s" msgstr "Respostes a %s" -#: actions/apitimelineretweetsofme.php:112 +#: actions/apitimelineretweetsofme.php:114 #, php-format msgid "Repeats of %s" msgstr "Repeticions de %s" @@ -534,7 +706,7 @@ msgstr "Repeticions de %s" msgid "Notices tagged with %s" msgstr "Aviso etiquetats amb %s" -#: actions/apitimelinetag.php:108 actions/tagrss.php:64 +#: actions/apitimelinetag.php:104 actions/tagrss.php:64 #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Actualitzacions etiquetades amb %1$s el %2$s!" @@ -595,8 +767,8 @@ msgstr "Original" msgid "Preview" msgstr "Vista prèvia" -#: actions/avatarsettings.php:149 lib/deleteuserform.php:66 -#: lib/noticelist.php:611 +#: actions/avatarsettings.php:149 actions/showapplication.php:252 +#: lib/deleteuserform.php:66 lib/noticelist.php:637 msgid "Delete" msgstr "Suprimeix" @@ -608,31 +780,6 @@ msgstr "Puja" msgid "Crop" msgstr "Retalla" -#: actions/avatarsettings.php:268 actions/deletenotice.php:157 -#: actions/disfavor.php:74 actions/emailsettings.php:238 actions/favor.php:75 -#: actions/geocode.php:50 actions/groupblock.php:66 actions/grouplogo.php:309 -#: actions/groupunblock.php:66 actions/imsettings.php:206 -#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 -#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 -#: actions/othersettings.php:145 actions/passwordsettings.php:138 -#: actions/profilesettings.php:194 actions/recoverpassword.php:337 -#: actions/register.php:165 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 -#: actions/subscribe.php:46 actions/tagother.php:166 -#: 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/avatarsettings.php:281 actions/designadminpanel.php:103 -#: actions/emailsettings.php:256 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/avatarsettings.php:328 msgid "Pick a square area of the image to be your avatar" msgstr "" @@ -670,8 +817,9 @@ msgid "" "will not be notified of any @-replies from them." msgstr "" -#: actions/block.php:143 actions/deletenotice.php:145 -#: actions/deleteuser.php:147 actions/groupblock.php:178 +#: actions/block.php:143 actions/deleteapplication.php:153 +#: actions/deletenotice.php:145 actions/deleteuser.php:147 +#: actions/groupblock.php:178 msgid "No" msgstr "No" @@ -679,13 +827,13 @@ msgstr "No" msgid "Do not block this user" msgstr "No bloquis l'usuari" -#: actions/block.php:144 actions/deletenotice.php:146 -#: actions/deleteuser.php:148 actions/groupblock.php:179 -#: lib/repeatform.php:132 +#: actions/block.php:144 actions/deleteapplication.php:158 +#: actions/deletenotice.php:146 actions/deleteuser.php:148 +#: actions/groupblock.php:179 lib/repeatform.php:132 msgid "Yes" msgstr "Sí" -#: actions/block.php:144 actions/groupmembers.php:346 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80 msgid "Block this user" msgstr "Bloquejar aquest usuari" @@ -769,7 +917,8 @@ msgid "Couldn't delete email confirmation." msgstr "No s'ha pogut eliminar la confirmació de correu electrònic." #: actions/confirmaddress.php:144 -msgid "Confirm Address" +#, fuzzy +msgid "Confirm address" msgstr "Confirmar adreça" #: actions/confirmaddress.php:159 @@ -786,10 +935,54 @@ msgstr "Conversa" msgid "Notices" msgstr "Avisos" +#: actions/deleteapplication.php:63 +#, fuzzy +msgid "You must be logged in to delete an application." +msgstr "Heu d'iniciar una sessió per editar un grup." + +#: actions/deleteapplication.php:71 +#, fuzzy +msgid "Application not found." +msgstr "Avís sense perfil" + +#: actions/deleteapplication.php:78 actions/editapplication.php:77 +#: actions/showapplication.php:94 +#, fuzzy +msgid "You are not the owner of this application." +msgstr "No sou un membre del grup." + +#: actions/deleteapplication.php:102 actions/editapplication.php:127 +#: actions/newapplication.php:110 actions/showapplication.php:118 +#: lib/action.php:1197 +msgid "There was a problem with your session token." +msgstr "Ha ocorregut algun problema amb la teva sessió." + +#: actions/deleteapplication.php:123 actions/deleteapplication.php:147 +#, fuzzy +msgid "Delete application" +msgstr "No existeix aquest avís." + +#: actions/deleteapplication.php:149 +msgid "" +"Are you sure you want to delete this application? This will clear all data " +"about the application from the database, including all existing user " +"connections." +msgstr "" + +#: actions/deleteapplication.php:156 +#, fuzzy +msgid "Do not delete this application" +msgstr "No es pot esborrar la notificació." + +#: actions/deleteapplication.php:160 +#, fuzzy +msgid "Delete this application" +msgstr "Eliminar aquesta nota" + #: 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/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 #: lib/adminpanelaction.php:72 lib/profileformaction.php:63 #: lib/settingsaction.php:72 @@ -822,7 +1015,7 @@ msgstr "N'estàs segur que vols eliminar aquesta notificació?" msgid "Do not delete this notice" msgstr "No es pot esborrar la notificació." -#: actions/deletenotice.php:146 lib/noticelist.php:611 +#: actions/deletenotice.php:146 lib/noticelist.php:637 msgid "Delete this notice" msgstr "Eliminar aquesta nota" @@ -951,16 +1144,6 @@ msgstr "" msgid "Reset back to default" msgstr "" -#: actions/designadminpanel.php:586 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 -#: actions/pathsadminpanel.php:324 actions/profilesettings.php:174 -#: actions/siteadminpanel.php:388 actions/smssettings.php:181 -#: actions/subscriptions.php:203 actions/tagother.php:154 -#: actions/useradminpanel.php:313 lib/designsettings.php:256 -#: lib/groupeditform.php:202 -msgid "Save" -msgstr "Guardar" - #: actions/designadminpanel.php:587 lib/designsettings.php:257 msgid "Save design" msgstr "Desa el disseny" @@ -973,10 +1156,87 @@ msgstr "Aquesta notificació no és un favorit!" msgid "Add to favorites" msgstr "Afegeix als preferits" -#: actions/doc.php:69 -msgid "No such document." +#: actions/doc.php:158 +#, fuzzy, php-format +msgid "No such document \"%s\"" msgstr "No existeix aquest document." +#: actions/editapplication.php:54 +#, fuzzy +msgid "Edit Application" +msgstr "Altres opcions" + +#: actions/editapplication.php:66 +#, fuzzy +msgid "You must be logged in to edit an application." +msgstr "Heu d'iniciar una sessió per editar un grup." + +#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:166 +#: actions/showapplication.php:87 +#, fuzzy +msgid "No such application." +msgstr "No existeix aquest avís." + +#: actions/editapplication.php:161 +#, fuzzy +msgid "Use this form to edit your application." +msgstr "Utilitza aquest formulari per editar el grup." + +#: actions/editapplication.php:177 actions/newapplication.php:159 +#, fuzzy +msgid "Name is required." +msgstr "Igual a la contrasenya de dalt. Requerit." + +#: actions/editapplication.php:180 actions/newapplication.php:165 +#, fuzzy +msgid "Name is too long (max 255 chars)." +msgstr "El teu nom és massa llarg (màx. 255 caràcters)." + +#: actions/editapplication.php:183 actions/newapplication.php:162 +#, fuzzy +msgid "Name already in use. Try another one." +msgstr "Aquest sobrenom ja existeix. Prova un altre. " + +#: actions/editapplication.php:186 actions/newapplication.php:168 +#, fuzzy +msgid "Description is required." +msgstr "Descripció" + +#: actions/editapplication.php:194 +msgid "Source URL is too long." +msgstr "" + +#: actions/editapplication.php:200 actions/newapplication.php:185 +#, fuzzy +msgid "Source URL is not valid." +msgstr "La pàgina personal no és un URL vàlid." + +#: actions/editapplication.php:203 actions/newapplication.php:188 +msgid "Organization is required." +msgstr "" + +#: actions/editapplication.php:206 actions/newapplication.php:191 +#, fuzzy +msgid "Organization is too long (max 255 chars)." +msgstr "La ubicació és massa llarga (màx. 255 caràcters)." + +#: actions/editapplication.php:209 actions/newapplication.php:194 +msgid "Organization homepage is required." +msgstr "" + +#: actions/editapplication.php:218 actions/newapplication.php:206 +msgid "Callback is too long." +msgstr "" + +#: actions/editapplication.php:225 actions/newapplication.php:215 +msgid "Callback URL is not valid." +msgstr "" + +#: actions/editapplication.php:258 +#, fuzzy +msgid "Could not update application." +msgstr "No s'ha pogut actualitzar el grup." + #: actions/editgroup.php:56 #, php-format msgid "Edit %s group" @@ -1005,7 +1265,7 @@ msgstr "la descripció és massa llarga (màx. %d caràcters)." msgid "Could not update group." msgstr "No s'ha pogut actualitzar el grup." -#: actions/editgroup.php:259 classes/User_group.php:390 +#: actions/editgroup.php:259 classes/User_group.php:433 msgid "Could not create aliases." msgstr "No s'han pogut crear els àlies." @@ -1047,7 +1307,8 @@ msgstr "" "carpeta de spam!) per al missatge amb les instruccions." #: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 +#: actions/smssettings.php:126 lib/applicationeditform.php:331 +#: lib/applicationeditform.php:332 msgid "Cancel" msgstr "Cancel·la" @@ -1133,7 +1394,7 @@ msgid "Cannot normalize that email address" msgstr "No es pot normalitzar l'adreça electrònica." #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:157 +#: actions/siteadminpanel.php:143 msgid "Not a valid email address." msgstr "Adreça de correu electrònic no vàlida." @@ -1145,7 +1406,7 @@ msgstr "Ja és la vostra adreça electrònica." msgid "That email address already belongs to another user." msgstr "L'adreça electrònica ja pertany a un altre usuari." -#: actions/emailsettings.php:353 actions/imsettings.php:317 +#: actions/emailsettings.php:353 actions/imsettings.php:319 #: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." msgstr "No s'ha pogut inserir el codi de confirmació." @@ -1207,7 +1468,7 @@ msgstr "Aquesta nota ja és favorita." msgid "Disfavor favorite" msgstr "Desfavoritar favorit" -#: actions/favorited.php:65 lib/popularnoticesection.php:88 +#: actions/favorited.php:65 lib/popularnoticesection.php:91 #: lib/publicgroupnav.php:93 msgid "Popular notices" msgstr "Notificacions populars" @@ -1352,7 +1613,7 @@ msgstr "Un usuari t'ha bloquejat." msgid "User is not a member of group." msgstr "L'usuari no és membre del grup." -#: actions/groupblock.php:136 actions/groupmembers.php:314 +#: actions/groupblock.php:136 actions/groupmembers.php:316 msgid "Block user from group" msgstr "Bloca l'usuari del grup" @@ -1449,23 +1710,23 @@ msgstr "%s membre/s en el grup, pàgina %d" msgid "A list of the users in this group." msgstr "La llista dels usuaris d'aquest grup." -#: actions/groupmembers.php:175 lib/action.php:442 lib/groupnav.php:107 +#: actions/groupmembers.php:175 lib/action.php:448 lib/groupnav.php:107 msgid "Admin" msgstr "Admin" -#: actions/groupmembers.php:346 lib/blockform.php:69 +#: actions/groupmembers.php:348 lib/blockform.php:69 msgid "Block" msgstr "Bloca" -#: actions/groupmembers.php:441 +#: actions/groupmembers.php:443 msgid "Make user an admin of the group" msgstr "Fes l'usuari un administrador del grup" -#: actions/groupmembers.php:473 +#: actions/groupmembers.php:475 msgid "Make Admin" msgstr "Fes-lo administrador" -#: actions/groupmembers.php:473 +#: actions/groupmembers.php:475 msgid "Make this user an admin" msgstr "Fes l'usuari administrador" @@ -1638,6 +1899,11 @@ msgstr "" msgid "That is not your Jabber ID." msgstr "Aquest no és el teu Jabber ID." +#: actions/inbox.php:59 +#, fuzzy, php-format +msgid "Inbox for %1$s - page %2$d" +msgstr "Safata d'entrada per %s" + #: actions/inbox.php:62 #, php-format msgid "Inbox for %s" @@ -1723,7 +1989,7 @@ msgstr "Missatge personal" msgid "Optionally add a personal message to the invitation." msgstr "Opcionalment pots afegir un missatge a la invitació." -#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:237 +#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:236 msgid "Send" msgstr "Envia" @@ -1824,7 +2090,7 @@ msgstr "Nom d'usuari o contrasenya incorrectes." msgid "Error setting user. You are probably not authorized." msgstr "No autoritzat." -#: actions/login.php:188 actions/login.php:241 lib/action.php:460 +#: actions/login.php:188 actions/login.php:241 lib/action.php:466 #: lib/logingroupnav.php:79 msgid "Login" msgstr "Inici de sessió" @@ -1833,17 +2099,6 @@ msgstr "Inici de sessió" msgid "Login to site" msgstr "Accedir al lloc" -#: actions/login.php:230 actions/profilesettings.php:106 -#: actions/register.php:424 actions/showgroup.php:236 actions/tagother.php:94 -#: lib/groupeditform.php:152 lib/userprofile.php:131 -msgid "Nickname" -msgstr "Sobrenom" - -#: actions/login.php:233 actions/register.php:429 -#: lib/accountsettingsaction.php:116 -msgid "Password" -msgstr "Contrasenya" - #: actions/login.php:236 actions/register.php:478 msgid "Remember me" msgstr "Recorda'm" @@ -1876,21 +2131,21 @@ msgstr "" "tens un nom d'usuari? [Crea](%%action.register%%) un nou compte o prova " "[OpenID] (%%action.openidlogin%%)." -#: actions/makeadmin.php:91 +#: actions/makeadmin.php:92 msgid "Only an admin can make another user an admin." msgstr "Només un administrador poc fer a un altre usuari administrador." -#: actions/makeadmin.php:95 +#: actions/makeadmin.php:96 #, fuzzy, php-format msgid "%1$s is already an admin for group \"%2$s\"." msgstr "%s ja és un administrador del grup «%s»." -#: actions/makeadmin.php:132 +#: actions/makeadmin.php:133 #, fuzzy, php-format msgid "Can't get membership record for %1$s in group %2$s." msgstr "No s'ha pogut eliminar l'usuari %s del grup %s" -#: actions/makeadmin.php:145 +#: actions/makeadmin.php:146 #, fuzzy, php-format msgid "Can't make %1$s an admin for group %2$s." msgstr "No es pot fer %s un administrador del grup %s" @@ -1899,6 +2154,30 @@ msgstr "No es pot fer %s un administrador del grup %s" msgid "No current status" msgstr "No té cap estatus ara mateix" +#: actions/newapplication.php:52 +#, fuzzy +msgid "New Application" +msgstr "No existeix aquest avís." + +#: actions/newapplication.php:64 +#, fuzzy +msgid "You must be logged in to register an application." +msgstr "Has d'haver entrat per crear un grup." + +#: actions/newapplication.php:143 +#, fuzzy +msgid "Use this form to register a new application." +msgstr "Utilitza aquest formulari per crear un nou grup." + +#: actions/newapplication.php:176 +msgid "Source URL is required." +msgstr "" + +#: actions/newapplication.php:258 actions/newapplication.php:267 +#, fuzzy +msgid "Could not create application." +msgstr "No s'han pogut crear els àlies." + #: actions/newgroup.php:53 msgid "New group" msgstr "Nou grup" @@ -2008,6 +2287,51 @@ msgstr "Reclamació enviada" msgid "Nudge sent!" msgstr "Reclamació enviada!" +#: actions/oauthappssettings.php:59 +#, fuzzy +msgid "You must be logged in to list your applications." +msgstr "Heu d'iniciar una sessió per editar un grup." + +#: actions/oauthappssettings.php:74 +#, fuzzy +msgid "OAuth applications" +msgstr "Altres opcions" + +#: actions/oauthappssettings.php:85 +msgid "Applications you have registered" +msgstr "" + +#: actions/oauthappssettings.php:135 +#, php-format +msgid "You have not registered any applications yet." +msgstr "" + +#: actions/oauthconnectionssettings.php:72 +msgid "Connected applications" +msgstr "" + +#: actions/oauthconnectionssettings.php:83 +msgid "You have allowed the following applications to access you account." +msgstr "" + +#: actions/oauthconnectionssettings.php:175 +#, fuzzy +msgid "You are not a user of that application." +msgstr "No ets membre d'aquest grup." + +#: actions/oauthconnectionssettings.php:186 +msgid "Unable to revoke access for app: " +msgstr "" + +#: actions/oauthconnectionssettings.php:198 +#, php-format +msgid "You have not authorized any applications to use your account." +msgstr "" + +#: actions/oauthconnectionssettings.php:211 +msgid "Developers can edit the registration settings for their applications " +msgstr "" + #: actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" msgstr "Avís sense perfil" @@ -2025,8 +2349,8 @@ msgstr "tipus de contingut " msgid "Only " msgstr "Només " -#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1033 -#: lib/api.php:1061 lib/api.php:1171 +#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 +#: lib/api.php:1068 lib/api.php:1177 msgid "Not a supported data format." msgstr "Format de data no suportat." @@ -2039,7 +2363,8 @@ msgid "Notice Search" msgstr "Cerca de notificacions" #: actions/othersettings.php:60 -msgid "Other Settings" +#, fuzzy +msgid "Other settings" msgstr "Altres configuracions" #: actions/othersettings.php:71 @@ -2096,6 +2421,11 @@ msgstr "El contingut de l'avís és invàlid" msgid "Login token expired." msgstr "Accedir al lloc" +#: actions/outbox.php:58 +#, fuzzy, php-format +msgid "Outbox for %1$s - page %2$d" +msgstr "Safata de sortida per %s" + #: actions/outbox.php:61 #, php-format msgid "Outbox for %s" @@ -2168,7 +2498,7 @@ msgstr "No es pot guardar la nova contrasenya." msgid "Password saved." msgstr "Contrasenya guardada." -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:326 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:331 msgid "Paths" msgstr "Camins" @@ -2176,133 +2506,149 @@ msgstr "Camins" msgid "Path and server settings for this StatusNet site." msgstr "" -#: actions/pathsadminpanel.php:140 +#: actions/pathsadminpanel.php:157 #, fuzzy, php-format msgid "Theme directory not readable: %s" msgstr "Aquesta pàgina no està disponible en " -#: actions/pathsadminpanel.php:146 +#: actions/pathsadminpanel.php:163 #, php-format msgid "Avatar directory not writable: %s" msgstr "" -#: actions/pathsadminpanel.php:152 +#: actions/pathsadminpanel.php:169 #, php-format msgid "Background directory not writable: %s" msgstr "No es pot escriure al directori de fons: %s" -#: actions/pathsadminpanel.php:160 +#: actions/pathsadminpanel.php:177 #, php-format msgid "Locales directory not readable: %s" msgstr "" -#: actions/pathsadminpanel.php:166 +#: actions/pathsadminpanel.php:183 msgid "Invalid SSL server. The maximum length is 255 characters." msgstr "" -#: actions/pathsadminpanel.php:217 actions/siteadminpanel.php:58 +#: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58 #: lib/adminpanelaction.php:311 msgid "Site" msgstr "Lloc" -#: actions/pathsadminpanel.php:221 +#: actions/pathsadminpanel.php:238 +msgid "Server" +msgstr "Servidor" + +#: actions/pathsadminpanel.php:238 +msgid "Site's server hostname." +msgstr "Servidor central del lloc." + +#: actions/pathsadminpanel.php:242 msgid "Path" msgstr "Camí" -#: actions/pathsadminpanel.php:221 +#: actions/pathsadminpanel.php:242 msgid "Site path" msgstr "Camí del lloc" -#: actions/pathsadminpanel.php:225 +#: actions/pathsadminpanel.php:246 msgid "Path to locales" msgstr "" -#: actions/pathsadminpanel.php:225 +#: actions/pathsadminpanel.php:246 msgid "Directory path to locales" msgstr "" -#: actions/pathsadminpanel.php:232 +#: actions/pathsadminpanel.php:250 +msgid "Fancy URLs" +msgstr "" + +#: actions/pathsadminpanel.php:252 +msgid "Use fancy (more readable and memorable) URLs?" +msgstr "" + +#: actions/pathsadminpanel.php:259 msgid "Theme" msgstr "Tema" -#: actions/pathsadminpanel.php:237 +#: actions/pathsadminpanel.php:264 msgid "Theme server" msgstr "Servidor dels temes" -#: actions/pathsadminpanel.php:241 +#: actions/pathsadminpanel.php:268 msgid "Theme path" msgstr "Camí dels temes" -#: actions/pathsadminpanel.php:245 +#: actions/pathsadminpanel.php:272 msgid "Theme directory" msgstr "Directori de temes" -#: actions/pathsadminpanel.php:252 +#: actions/pathsadminpanel.php:279 msgid "Avatars" msgstr "Avatars" -#: actions/pathsadminpanel.php:257 +#: actions/pathsadminpanel.php:284 msgid "Avatar server" msgstr "Servidor d'avatars" -#: actions/pathsadminpanel.php:261 +#: actions/pathsadminpanel.php:288 msgid "Avatar path" msgstr "Camí de l'avatar" -#: actions/pathsadminpanel.php:265 +#: actions/pathsadminpanel.php:292 msgid "Avatar directory" msgstr "Directori d'avatars" -#: actions/pathsadminpanel.php:274 +#: actions/pathsadminpanel.php:301 msgid "Backgrounds" msgstr "Fons" -#: actions/pathsadminpanel.php:278 +#: actions/pathsadminpanel.php:305 msgid "Background server" msgstr "Servidor de fons" -#: actions/pathsadminpanel.php:282 +#: actions/pathsadminpanel.php:309 msgid "Background path" msgstr "Camí dels fons" -#: actions/pathsadminpanel.php:286 +#: actions/pathsadminpanel.php:313 msgid "Background directory" msgstr "Directori de fons" -#: actions/pathsadminpanel.php:293 +#: actions/pathsadminpanel.php:320 msgid "SSL" msgstr "SSL" -#: actions/pathsadminpanel.php:296 actions/siteadminpanel.php:346 +#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 msgid "Never" msgstr "Mai" -#: actions/pathsadminpanel.php:297 +#: actions/pathsadminpanel.php:324 msgid "Sometimes" msgstr "A vegades" -#: actions/pathsadminpanel.php:298 +#: actions/pathsadminpanel.php:325 msgid "Always" msgstr "Sempre" -#: actions/pathsadminpanel.php:302 +#: actions/pathsadminpanel.php:329 msgid "Use SSL" msgstr "Utilitza l'SSL" -#: actions/pathsadminpanel.php:303 +#: actions/pathsadminpanel.php:330 msgid "When to use SSL" msgstr "" -#: actions/pathsadminpanel.php:308 +#: actions/pathsadminpanel.php:335 #, fuzzy msgid "SSL server" msgstr "Servidor SSL" -#: actions/pathsadminpanel.php:309 +#: actions/pathsadminpanel.php:336 msgid "Server to direct SSL requests to" msgstr "" -#: actions/pathsadminpanel.php:325 +#: actions/pathsadminpanel.php:352 #, fuzzy msgid "Save paths" msgstr "Avís del lloc" @@ -2366,7 +2712,7 @@ msgid "Full name" msgstr "Nom complet" #: actions/profilesettings.php:115 actions/register.php:453 -#: lib/groupeditform.php:161 +#: lib/applicationeditform.php:228 lib/groupeditform.php:161 msgid "Homepage" msgstr "Pàgina personal" @@ -2390,7 +2736,7 @@ msgstr "Biografia" #: actions/profilesettings.php:132 actions/register.php:471 #: actions/showgroup.php:256 actions/tagother.php:112 -#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:164 msgid "Location" msgstr "Ubicació" @@ -2416,7 +2762,7 @@ msgstr "" "Etiquetes per a tu mateix (lletres, números, -, ., i _), per comes o separat " "por espais" -#: actions/profilesettings.php:151 actions/siteadminpanel.php:294 +#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 msgid "Language" msgstr "Idioma" @@ -2444,7 +2790,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "La biografia és massa llarga (màx. %d caràcters)." -#: actions/profilesettings.php:235 actions/siteadminpanel.php:164 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 msgid "Timezone not selected." msgstr "Franja horària no seleccionada." @@ -2457,23 +2803,23 @@ msgstr "L'idioma és massa llarg (màx 50 caràcters)." msgid "Invalid tag: \"%s\"" msgstr "Etiqueta no vàlida: \"%s\"" -#: actions/profilesettings.php:302 +#: actions/profilesettings.php:306 msgid "Couldn't update user for autosubscribe." msgstr "No es pot actualitzar l'usuari per autosubscriure." -#: actions/profilesettings.php:359 +#: actions/profilesettings.php:363 msgid "Couldn't save location prefs." msgstr "No s'han pogut desar les preferències d'ubicació." -#: actions/profilesettings.php:371 +#: actions/profilesettings.php:375 msgid "Couldn't save profile." msgstr "No s'ha pogut guardar el perfil." -#: actions/profilesettings.php:379 +#: actions/profilesettings.php:383 msgid "Couldn't save tags." msgstr "No s'han pogut guardar les etiquetes." -#: actions/profilesettings.php:387 lib/adminpanelaction.php:137 +#: actions/profilesettings.php:391 lib/adminpanelaction.php:137 msgid "Settings saved." msgstr "Configuració guardada." @@ -2495,19 +2841,19 @@ msgstr "Línia temporal pública, pàgina %d" msgid "Public timeline" msgstr "Línia temporal pública" -#: actions/public.php:151 +#: actions/public.php:159 msgid "Public Stream Feed (RSS 1.0)" msgstr "Flux de canal públic (RSS 1.0)" -#: actions/public.php:155 +#: actions/public.php:163 msgid "Public Stream Feed (RSS 2.0)" msgstr "Flux de canal públic (RSS 2.0)" -#: actions/public.php:159 +#: actions/public.php:167 msgid "Public Stream Feed (Atom)" msgstr "Flux de canal públic (Atom)" -#: actions/public.php:179 +#: actions/public.php:187 #, php-format msgid "" "This is the public timeline for %%site.name%% but no one has posted anything " @@ -2516,11 +2862,11 @@ msgstr "" "Aquesta és la línia temporal pública de %%site.name%%, però ningú no hi ha " "enviat res encara." -#: actions/public.php:182 +#: actions/public.php:190 msgid "Be the first to post!" msgstr "Sigueu el primer en escriure-hi!" -#: actions/public.php:186 +#: actions/public.php:194 #, php-format msgid "" "Why not [register an account](%%action.register%%) and be the first to post!" @@ -2528,7 +2874,7 @@ msgstr "" "Per què no [registreu un compte](%%action.register%%) i sou el primer en " "escriure-hi!" -#: actions/public.php:233 +#: actions/public.php:241 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2537,7 +2883,7 @@ msgid "" "friends, family, and colleagues! ([Read more](%%doc.help%%))" msgstr "" -#: actions/public.php:238 +#: actions/public.php:246 #, fuzzy, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2572,7 +2918,7 @@ msgid "" "one!" msgstr "" -#: actions/publictagcloud.php:131 +#: actions/publictagcloud.php:134 msgid "Tag cloud" msgstr "Núvol d'etiquetes" @@ -2714,7 +3060,7 @@ msgstr "El codi d'invitació no és vàlid." msgid "Registration successful" msgstr "Registre satisfactori" -#: actions/register.php:114 actions/register.php:503 lib/action.php:457 +#: actions/register.php:114 actions/register.php:503 lib/action.php:463 #: lib/logingroupnav.php:85 msgid "Register" msgstr "Registre" @@ -2757,7 +3103,7 @@ msgid "Same as password above. Required." msgstr "Igual a la contrasenya de dalt. Requerit." #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:270 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 msgid "Email" msgstr "Correu electrònic" @@ -2863,7 +3209,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "URL del teu perfil en un altre servei de microblogging compatible" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:365 +#: lib/userprofile.php:368 msgid "Subscribe" msgstr "Subscriure's" @@ -2906,7 +3252,7 @@ msgstr "No pots registrar-te si no estàs d'acord amb la llicència." msgid "You already repeated that notice." msgstr "Ja heu blocat l'usuari." -#: actions/repeat.php:114 lib/noticelist.php:629 +#: actions/repeat.php:114 lib/noticelist.php:656 msgid "Repeated" msgstr "Repetit" @@ -2920,6 +3266,11 @@ msgstr "Repetit!" msgid "Replies to %s" msgstr "Respostes a %s" +#: actions/replies.php:127 +#, fuzzy, php-format +msgid "Replies to %1$s, page %2$d" +msgstr "Respostes a %1$s el %2$s!" + #: actions/replies.php:144 #, fuzzy, php-format msgid "Replies feed for %s (RSS 1.0)" @@ -2963,6 +3314,11 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "Respostes a %1$s el %2$s!" +#: actions/rsd.php:146 actions/version.php:157 +#, fuzzy +msgid "StatusNet" +msgstr "S'ha suprimit l'estat." + #: actions/sandbox.php:65 actions/unsandbox.php:65 #, fuzzy msgid "You cannot sandbox users on this site." @@ -2973,6 +3329,125 @@ msgstr "No pots enviar un missatge a aquest usuari." msgid "User is already sandboxed." msgstr "Un usuari t'ha bloquejat." +#: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:336 +msgid "Sessions" +msgstr "Sessions" + +#: actions/sessionsadminpanel.php:65 +#, fuzzy +msgid "Session settings for this StatusNet site." +msgstr "Paràmetres de disseny d'aquest lloc StatusNet." + +#: actions/sessionsadminpanel.php:175 +msgid "Handle sessions" +msgstr "Gestiona les sessions" + +#: actions/sessionsadminpanel.php:177 +msgid "Whether to handle sessions ourselves." +msgstr "" + +#: actions/sessionsadminpanel.php:181 +msgid "Session debugging" +msgstr "Depuració de la sessió" + +#: actions/sessionsadminpanel.php:183 +msgid "Turn on debugging output for sessions." +msgstr "Activa la sortida de depuració per a les sessions." + +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/useradminpanel.php:293 +msgid "Save site settings" +msgstr "Desa els paràmetres del lloc" + +#: actions/showapplication.php:82 +#, fuzzy +msgid "You must be logged in to view an application." +msgstr "Has d'haver entrat per a poder marxar d'un grup." + +#: actions/showapplication.php:157 +#, fuzzy +msgid "Application profile" +msgstr "Avís sense perfil" + +#: actions/showapplication.php:159 lib/applicationeditform.php:180 +msgid "Icon" +msgstr "" + +#: actions/showapplication.php:169 actions/version.php:195 +#: lib/applicationeditform.php:195 +msgid "Name" +msgstr "Nom" + +#: actions/showapplication.php:178 lib/applicationeditform.php:222 +#, fuzzy +msgid "Organization" +msgstr "Paginació" + +#: actions/showapplication.php:187 actions/version.php:198 +#: lib/applicationeditform.php:209 lib/groupeditform.php:172 +msgid "Description" +msgstr "Descripció" + +#: actions/showapplication.php:192 actions/showgroup.php:429 +#: lib/profileaction.php:174 +msgid "Statistics" +msgstr "Estadístiques" + +#: actions/showapplication.php:203 +#, php-format +msgid "Created by %1$s - %2$s access by default - %3$d users" +msgstr "" + +#: actions/showapplication.php:213 +msgid "Application actions" +msgstr "" + +#: actions/showapplication.php:236 +msgid "Reset key & secret" +msgstr "" + +#: actions/showapplication.php:261 +msgid "Application info" +msgstr "" + +#: actions/showapplication.php:263 +msgid "Consumer key" +msgstr "" + +#: actions/showapplication.php:268 +msgid "Consumer secret" +msgstr "" + +#: actions/showapplication.php:273 +msgid "Request token URL" +msgstr "" + +#: actions/showapplication.php:278 +msgid "Access token URL" +msgstr "" + +#: actions/showapplication.php:283 +#, fuzzy +msgid "Authorize URL" +msgstr "Autoria" + +#: actions/showapplication.php:288 +msgid "" +"Note: We support HMAC-SHA1 signatures. We do not support the plaintext " +"signature method." +msgstr "" + +#: actions/showapplication.php:309 +#, fuzzy +msgid "Are you sure you want to reset your consumer key and secret?" +msgstr "N'estàs segur que vols eliminar aquesta notificació?" + +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%1$s's favorite notices, page %2$d" +msgstr "%s's notes favorites" + #: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "No s'han pogut recuperar els avisos preferits." @@ -3022,17 +3497,22 @@ msgstr "És una forma de compartir allò que us agrada." msgid "%s group" msgstr "%s grup" +#: actions/showgroup.php:84 +#, fuzzy, php-format +msgid "%1$s group, page %2$d" +msgstr "%s membre/s en el grup, pàgina %d" + #: actions/showgroup.php:218 msgid "Group profile" msgstr "Perfil del grup" #: actions/showgroup.php:263 actions/tagother.php:118 -#: actions/userauthorization.php:167 lib/userprofile.php:177 +#: actions/userauthorization.php:175 lib/userprofile.php:177 msgid "URL" msgstr "URL" #: actions/showgroup.php:274 actions/tagother.php:128 -#: actions/userauthorization.php:179 lib/userprofile.php:194 +#: actions/userauthorization.php:187 lib/userprofile.php:194 msgid "Note" msgstr "Avisos" @@ -3078,10 +3558,6 @@ msgstr "(Cap)" msgid "All members" msgstr "Tots els membres" -#: actions/showgroup.php:429 lib/profileaction.php:174 -msgid "Statistics" -msgstr "Estadístiques" - #: actions/showgroup.php:432 msgid "Created" msgstr "S'ha creat" @@ -3139,6 +3615,11 @@ msgstr "Notificació publicada" msgid " tagged %s" msgstr "Aviso etiquetats amb %s" +#: actions/showstream.php:79 +#, fuzzy, php-format +msgid "%1$s, page %2$d" +msgstr "%s perfils blocats, pàgina %d" + #: actions/showstream.php:122 #, fuzzy, php-format msgid "Notice feed for %1$s tagged %2$s (RSS 1.0)" @@ -3164,27 +3645,27 @@ msgstr "Feed d'avisos de %s" msgid "FOAF for %s" msgstr "Safata de sortida per %s" -#: actions/showstream.php:191 +#: actions/showstream.php:200 #, fuzzy, php-format msgid "This is the timeline for %1$s but %2$s hasn't posted anything yet." msgstr "" "Aquesta és la línia temporal de %s i amics, però ningú hi ha enviat res " "encara." -#: actions/showstream.php:196 +#: actions/showstream.php:205 msgid "" "Seen anything interesting recently? You haven't posted any notices yet, now " "would be a good time to start :)" msgstr "" -#: actions/showstream.php:198 +#: actions/showstream.php:207 #, php-format msgid "" "You can try to nudge %1$s or [post something to his or her attention](%%%%" "action.newnotice%%%%?status_textarea=%2$s)." msgstr "" -#: actions/showstream.php:234 +#: actions/showstream.php:243 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3193,7 +3674,7 @@ msgid "" "follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showstream.php:239 +#: actions/showstream.php:248 #, fuzzy, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3203,7 +3684,7 @@ msgstr "" "**%s** té un compte a %%%%site.name%%%%, un servei de [microblogging](http://" "ca.wikipedia.org/wiki/Microblogging) " -#: actions/showstream.php:313 +#: actions/showstream.php:305 #, php-format msgid "Repeat of %s" msgstr "Repetició de %s" @@ -3220,204 +3701,149 @@ msgstr "L'usuari ja està silenciat." msgid "Basic settings for this StatusNet site." msgstr "Paràmetres bàsic d'aquest lloc basat en l'StatusNet." -#: actions/siteadminpanel.php:146 +#: actions/siteadminpanel.php:132 msgid "Site name must have non-zero length." msgstr "El nom del lloc ha de tenir una longitud superior a zero." -#: actions/siteadminpanel.php:154 +#: actions/siteadminpanel.php:140 #, fuzzy msgid "You must have a valid contact email address." msgstr "Heu de tenir una adreça electrònica de contacte vàlida" -#: actions/siteadminpanel.php:172 +#: actions/siteadminpanel.php:158 #, fuzzy, php-format msgid "Unknown language \"%s\"." msgstr "Llengua desconeguda «%s»" -#: actions/siteadminpanel.php:179 +#: actions/siteadminpanel.php:165 msgid "Invalid snapshot report URL." msgstr "" -#: actions/siteadminpanel.php:185 +#: actions/siteadminpanel.php:171 msgid "Invalid snapshot run value." msgstr "" -#: actions/siteadminpanel.php:191 +#: actions/siteadminpanel.php:177 msgid "Snapshot frequency must be a number." msgstr "" -#: actions/siteadminpanel.php:197 +#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "" -#: actions/siteadminpanel.php:203 +#: actions/siteadminpanel.php:189 msgid "Dupe limit must 1 or more seconds." msgstr "" -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:239 msgid "General" msgstr "General" -#: actions/siteadminpanel.php:256 +#: actions/siteadminpanel.php:242 msgid "Site name" msgstr "Nom del lloc" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:243 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "El nom del vostre lloc, com ara «El microblog de l'empresa»" -#: actions/siteadminpanel.php:261 +#: actions/siteadminpanel.php:247 msgid "Brought by" msgstr "" -#: actions/siteadminpanel.php:262 +#: actions/siteadminpanel.php:248 msgid "Text used for credits link in footer of each page" msgstr "El text que s'utilitza a l'enllaç dels crèdits al peu de cada pàgina" -#: actions/siteadminpanel.php:266 +#: actions/siteadminpanel.php:252 msgid "Brought by URL" msgstr "" -#: actions/siteadminpanel.php:267 +#: actions/siteadminpanel.php:253 msgid "URL used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:271 +#: actions/siteadminpanel.php:257 msgid "Contact email address for your site" msgstr "Adreça electrònica de contacte del vostre lloc" -#: actions/siteadminpanel.php:277 +#: actions/siteadminpanel.php:263 msgid "Local" msgstr "Local" -#: actions/siteadminpanel.php:288 +#: actions/siteadminpanel.php:274 msgid "Default timezone" msgstr "Fus horari per defecte" -#: actions/siteadminpanel.php:289 +#: actions/siteadminpanel.php:275 msgid "Default timezone for the site; usually UTC." msgstr "Fus horari per defecte del lloc; normalment UTC." -#: actions/siteadminpanel.php:295 +#: actions/siteadminpanel.php:281 msgid "Default site language" msgstr "Llengua per defecte del lloc" -#: actions/siteadminpanel.php:303 -msgid "URLs" -msgstr "URL" - -#: actions/siteadminpanel.php:306 -msgid "Server" -msgstr "Servidor" - -#: actions/siteadminpanel.php:306 -msgid "Site's server hostname." -msgstr "Servidor central del lloc." - -#: actions/siteadminpanel.php:310 -msgid "Fancy URLs" -msgstr "" - -#: actions/siteadminpanel.php:312 -msgid "Use fancy (more readable and memorable) URLs?" -msgstr "" - -#: actions/siteadminpanel.php:318 -msgid "Access" -msgstr "Accés" - -#: actions/siteadminpanel.php:321 -msgid "Private" -msgstr "Privat" - -#: actions/siteadminpanel.php:323 -msgid "Prohibit anonymous users (not logged in) from viewing site?" -msgstr "" -"Voleu prohibir als usuaris anònims (que no han iniciat cap sessió) " -"visualitzar el lloc?" - -#: actions/siteadminpanel.php:327 -msgid "Invite only" -msgstr "Només invitació" - -#: actions/siteadminpanel.php:329 -msgid "Make registration invitation only." -msgstr "Fes que el registre sigui només amb invitacions." - -#: actions/siteadminpanel.php:333 -msgid "Closed" -msgstr "Tancat" - -#: actions/siteadminpanel.php:335 -msgid "Disable new registrations." -msgstr "Inhabilita els nous registres." - -#: actions/siteadminpanel.php:341 +#: actions/siteadminpanel.php:289 msgid "Snapshots" msgstr "Instantànies" -#: actions/siteadminpanel.php:344 +#: actions/siteadminpanel.php:292 msgid "Randomly during Web hit" msgstr "" -#: actions/siteadminpanel.php:345 +#: actions/siteadminpanel.php:293 msgid "In a scheduled job" msgstr "En una tasca planificada" -#: actions/siteadminpanel.php:347 +#: actions/siteadminpanel.php:295 msgid "Data snapshots" msgstr "Instantànies de dades" -#: actions/siteadminpanel.php:348 +#: actions/siteadminpanel.php:296 msgid "When to send statistical data to status.net servers" msgstr "" -#: actions/siteadminpanel.php:353 +#: actions/siteadminpanel.php:301 msgid "Frequency" msgstr "Freqüència" -#: actions/siteadminpanel.php:354 +#: actions/siteadminpanel.php:302 msgid "Snapshots will be sent once every N web hits" msgstr "" -#: actions/siteadminpanel.php:359 +#: actions/siteadminpanel.php:307 msgid "Report URL" msgstr "" -#: actions/siteadminpanel.php:360 +#: actions/siteadminpanel.php:308 msgid "Snapshots will be sent to this URL" msgstr "Les instantànies s'enviaran a aquest URL" -#: actions/siteadminpanel.php:367 +#: actions/siteadminpanel.php:315 msgid "Limits" msgstr "Límits" -#: actions/siteadminpanel.php:370 +#: actions/siteadminpanel.php:318 msgid "Text limit" msgstr "Límits del text" -#: actions/siteadminpanel.php:370 +#: actions/siteadminpanel.php:318 msgid "Maximum number of characters for notices." msgstr "" -#: actions/siteadminpanel.php:374 +#: actions/siteadminpanel.php:322 msgid "Dupe limit" msgstr "Límit de duplicats" -#: actions/siteadminpanel.php:374 +#: actions/siteadminpanel.php:322 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" "Quant de temps cal que esperin els usuaris (en segons) per enviar el mateix " "de nou." -#: actions/siteadminpanel.php:388 actions/useradminpanel.php:313 -msgid "Save site settings" -msgstr "Desa els paràmetres del lloc" - #: actions/smssettings.php:58 -#, fuzzy msgid "SMS settings" -msgstr "Configuració SMS" +msgstr "Paràmetres de l'SMS" #: actions/smssettings.php:69 #, php-format @@ -3447,9 +3873,8 @@ msgid "Enter the code you received on your phone." msgstr "Escriu el codi que has rebut en el teu telèfon mòbil." #: actions/smssettings.php:138 -#, fuzzy msgid "SMS phone number" -msgstr "Número de telèfon pels SMS" +msgstr "Número de telèfon per als SMS" #: actions/smssettings.php:140 msgid "Phone number, no punctuation or spaces, with area code" @@ -3523,15 +3948,26 @@ msgstr "No hi ha cap codi entrat" msgid "You are not subscribed to that profile." msgstr "No estàs subscrit a aquest perfil." -#: actions/subedit.php:83 +#: actions/subedit.php:83 classes/Subscription.php:89 +#: classes/Subscription.php:116 msgid "Could not save subscription." msgstr "No s'ha pogut guardar la subscripció." -#: actions/subscribe.php:55 -msgid "Not a local user." -msgstr "No existeix aquest usuari." +#: actions/subscribe.php:77 +msgid "This action only accepts POST requests." +msgstr "" -#: actions/subscribe.php:69 +#: actions/subscribe.php:107 +#, fuzzy +msgid "No such profile." +msgstr "No existeix el fitxer." + +#: actions/subscribe.php:117 +#, fuzzy +msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." +msgstr "No estàs subscrit a aquest perfil." + +#: actions/subscribe.php:145 msgid "Subscribed" msgstr "Subscrit" @@ -3595,7 +4031,7 @@ msgstr "Aquestes són les persones que escoltes." msgid "These are the people whose notices %s listens to." msgstr "Aquestes són les persones que %s escolta." -#: actions/subscriptions.php:121 +#: actions/subscriptions.php:126 #, php-format msgid "" "You're not listening to anyone's notices right now, try subscribing to " @@ -3605,19 +4041,24 @@ msgid "" "automatically subscribe to people you already follow there." msgstr "" -#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#: actions/subscriptions.php:128 actions/subscriptions.php:132 #, php-format msgid "%s is not listening to anyone." msgstr "%s no escolta a ningú." -#: actions/subscriptions.php:194 +#: actions/subscriptions.php:199 msgid "Jabber" msgstr "Jabber" -#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:204 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "SMS" +#: actions/tag.php:68 +#, fuzzy, php-format +msgid "Notices tagged with %1$s, page %2$d" +msgstr "Usuaris que s'han etiquetat %s - pàgina %d" + #: actions/tag.php:86 #, fuzzy, php-format msgid "Notice feed for tag %s (RSS 1.0)" @@ -3647,7 +4088,8 @@ msgstr "Etiqueta %s" msgid "User profile" msgstr "Perfil de l'usuari" -#: actions/tagother.php:81 lib/userprofile.php:102 +#: actions/tagother.php:81 actions/userauthorization.php:132 +#: lib/userprofile.php:102 msgid "Photo" msgstr "Foto" @@ -3709,7 +4151,7 @@ msgstr "No id en el perfil sol·licitat." msgid "Unsubscribed" msgstr "No subscrit" -#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#: actions/updateprofile.php:62 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -3724,84 +4166,64 @@ msgstr "Usuari" msgid "User settings for this StatusNet site." msgstr "" -#: actions/useradminpanel.php:149 +#: actions/useradminpanel.php:148 msgid "Invalid bio limit. Must be numeric." msgstr "" -#: actions/useradminpanel.php:155 +#: actions/useradminpanel.php:154 msgid "Invalid welcome text. Max length is 255 characters." msgstr "" -#: actions/useradminpanel.php:165 +#: actions/useradminpanel.php:164 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 +#: actions/useradminpanel.php:217 lib/accountsettingsaction.php:108 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Perfil" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:221 msgid "Bio Limit" msgstr "Límit de la biografia" -#: actions/useradminpanel.php:223 +#: actions/useradminpanel.php:222 msgid "Maximum length of a profile bio in characters." msgstr "Límit màxim de la biografia d'un perfil (en caràcters)." -#: actions/useradminpanel.php:231 +#: actions/useradminpanel.php:230 msgid "New users" msgstr "Usuaris nous" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:234 msgid "New user welcome" msgstr "Benvinguda als usuaris nous" -#: actions/useradminpanel.php:236 +#: actions/useradminpanel.php:235 msgid "Welcome text for new users (Max 255 chars)." msgstr "" -#: actions/useradminpanel.php:241 +#: actions/useradminpanel.php:240 msgid "Default subscription" msgstr "Subscripció per defecte" -#: actions/useradminpanel.php:242 +#: actions/useradminpanel.php:241 msgid "Automatically subscribe new users to this user." msgstr "Subscriviu automàticament els usuaris nous a aquest usuari." -#: actions/useradminpanel.php:251 +#: actions/useradminpanel.php:250 msgid "Invitations" msgstr "Invitacions" -#: actions/useradminpanel.php:256 +#: actions/useradminpanel.php:255 msgid "Invitations enabled" msgstr "S'han habilitat les invitacions" -#: actions/useradminpanel.php:258 +#: actions/useradminpanel.php:257 msgid "Whether to allow users to invite new users." msgstr "" -#: actions/useradminpanel.php:265 -msgid "Sessions" -msgstr "Sessions" - -#: actions/useradminpanel.php:270 -msgid "Handle sessions" -msgstr "Gestiona les sessions" - -#: actions/useradminpanel.php:272 -msgid "Whether to handle sessions ourselves." -msgstr "" - -#: actions/useradminpanel.php:276 -msgid "Session debugging" -msgstr "Depuració de la sessió" - -#: actions/useradminpanel.php:278 -msgid "Turn on debugging output for sessions." -msgstr "Activa la sortida de depuració per a les sessions." - #: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Autoritzar subscripció" @@ -3817,36 +4239,36 @@ msgstr "" "subscriure't als avisos d'aquest usuari. Si no has demanat subscriure't als " "avisos de ningú, clica \"Cancel·lar\"." -#: actions/userauthorization.php:188 actions/version.php:165 +#: actions/userauthorization.php:196 actions/version.php:165 msgid "License" msgstr "Llicència" -#: actions/userauthorization.php:209 +#: actions/userauthorization.php:217 msgid "Accept" msgstr "Accepta" -#: actions/userauthorization.php:210 lib/subscribeform.php:115 +#: actions/userauthorization.php:218 lib/subscribeform.php:115 #: lib/subscribeform.php:139 msgid "Subscribe to this user" msgstr "Subscriure's a aquest usuari" -#: actions/userauthorization.php:211 +#: actions/userauthorization.php:219 msgid "Reject" msgstr "Rebutja" -#: actions/userauthorization.php:212 +#: actions/userauthorization.php:220 msgid "Reject this subscription" msgstr "Rebutja la subscripció" -#: actions/userauthorization.php:225 +#: actions/userauthorization.php:232 msgid "No authorization request!" msgstr "Cap petició d'autorització!" -#: actions/userauthorization.php:247 +#: actions/userauthorization.php:254 msgid "Subscription authorized" msgstr "Subscripció autoritzada" -#: actions/userauthorization.php:249 +#: actions/userauthorization.php:256 #, fuzzy msgid "" "The subscription has been authorized, but no callback URL was passed. Check " @@ -3857,11 +4279,11 @@ msgstr "" "Llegeix de nou les instruccions per a saber com autoritzar la subscripció. " "El teu identificador de subscripció és:" -#: actions/userauthorization.php:259 +#: actions/userauthorization.php:266 msgid "Subscription rejected" msgstr "Subscripció rebutjada" -#: actions/userauthorization.php:261 +#: actions/userauthorization.php:268 #, fuzzy msgid "" "The subscription has been rejected, but no callback URL was passed. Check " @@ -3871,37 +4293,37 @@ 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 +#: actions/userauthorization.php:303 #, php-format msgid "Listener URI ‘%s’ not found here." msgstr "" -#: actions/userauthorization.php:301 +#: actions/userauthorization.php:308 #, php-format msgid "Listenee URI ‘%s’ is too long." msgstr "" -#: actions/userauthorization.php:307 +#: actions/userauthorization.php:314 #, php-format msgid "Listenee URI ‘%s’ is a local user." msgstr "" -#: actions/userauthorization.php:322 +#: actions/userauthorization.php:329 #, php-format msgid "Profile URL ‘%s’ is for a local user." msgstr "" -#: actions/userauthorization.php:338 +#: actions/userauthorization.php:345 #, php-format msgid "Avatar URL ‘%s’ is not valid." msgstr "" -#: actions/userauthorization.php:343 +#: actions/userauthorization.php:350 #, 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 +#: actions/userauthorization.php:355 #, fuzzy, php-format msgid "Wrong image type for avatar URL ‘%s’." msgstr "Tipus d'imatge incorrecte per a '%s'" @@ -3922,6 +4344,11 @@ msgstr "" msgid "Enjoy your hotdog!" msgstr "Gaudiu de l'entrepà!" +#: actions/usergroups.php:64 +#, fuzzy, php-format +msgid "%1$s groups, page %2$d" +msgstr "%s membre/s en el grup, pàgina %d" + #: actions/usergroups.php:130 msgid "Search for more groups" msgstr "Cerca més grups" @@ -3948,11 +4375,6 @@ msgid "" "Inc. and contributors." msgstr "" -#: actions/version.php:157 -#, fuzzy -msgid "StatusNet" -msgstr "S'ha suprimit l'estat." - #: actions/version.php:161 msgid "Contributors" msgstr "Col·laboració" @@ -3984,11 +4406,7 @@ msgstr "" msgid "Plugins" msgstr "Connectors" -#: actions/version.php:195 -msgid "Name" -msgstr "Nom" - -#: actions/version.php:196 lib/action.php:741 +#: actions/version.php:196 lib/action.php:747 #, fuzzy msgid "Version" msgstr "Sessions" @@ -3998,10 +4416,6 @@ msgstr "Sessions" msgid "Author(s)" msgstr "Autoria" -#: actions/version.php:198 lib/groupeditform.php:172 -msgid "Description" -msgstr "Descripció" - #: classes/File.php:144 #, php-format msgid "" @@ -4051,28 +4465,28 @@ msgstr "No s'ha pogut inserir el missatge." msgid "Could not update message with new URI." msgstr "No s'ha pogut inserir el missatge amb la nova URI." -#: classes/Notice.php:171 +#: classes/Notice.php:157 #, php-format msgid "DB error inserting hashtag: %s" msgstr "Hashtag de l'error de la base de dades:%s" -#: classes/Notice.php:225 +#: classes/Notice.php:222 #, fuzzy msgid "Problem saving notice. Too long." msgstr "Problema en guardar l'avís." -#: classes/Notice.php:229 +#: classes/Notice.php:226 msgid "Problem saving notice. Unknown user." msgstr "Problema al guardar la notificació. Usuari desconegut." -#: classes/Notice.php:234 +#: classes/Notice.php:231 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." -#: classes/Notice.php:240 +#: classes/Notice.php:237 #, fuzzy msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " @@ -4081,34 +4495,60 @@ msgstr "" "Masses notificacions massa ràpid; pren un respir i publica de nou en uns " "minuts." -#: classes/Notice.php:246 +#: classes/Notice.php:243 msgid "You are banned from posting notices on this site." msgstr "Ha estat bandejat de publicar notificacions en aquest lloc." -#: classes/Notice.php:305 classes/Notice.php:330 +#: classes/Notice.php:309 classes/Notice.php:335 msgid "Problem saving notice." msgstr "Problema en guardar l'avís." -#: classes/Notice.php:1052 -#, php-format -msgid "DB error inserting reply: %s" -msgstr "Error de BD en inserir resposta: %s" +#: classes/Notice.php:882 +#, fuzzy +msgid "Problem saving group inbox." +msgstr "Problema en guardar l'avís." -#: classes/Notice.php:1423 +#: classes/Notice.php:1407 #, fuzzy, php-format msgid "RT @%1$s %2$s" msgstr "%1$s (%2$s)" -#: classes/User.php:382 +#: classes/Subscription.php:66 lib/oauthstore.php:465 +msgid "You have been banned from subscribing." +msgstr "Se us ha banejat la subscripció." + +#: classes/Subscription.php:70 +msgid "Already subscribed!" +msgstr "Ja hi esteu subscrit!" + +#: classes/Subscription.php:74 +msgid "User has blocked you." +msgstr "Un usuari t'ha bloquejat." + +#: classes/Subscription.php:157 +#, fuzzy +msgid "Not subscribed!" +msgstr "No estàs subscrit!" + +#: classes/Subscription.php:163 +#, fuzzy +msgid "Couldn't delete self-subscription." +msgstr "No s'ha pogut eliminar la subscripció." + +#: classes/Subscription.php:179 lib/subs.php:69 +msgid "Couldn't delete subscription." +msgstr "No s'ha pogut eliminar la subscripció." + +#: classes/User.php:372 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "Us donem la benvinguda a %1$s, @%2$s!" -#: classes/User_group.php:380 +#: classes/User_group.php:423 msgid "Could not create group." msgstr "No s'ha pogut crear el grup." -#: classes/User_group.php:409 +#: classes/User_group.php:452 msgid "Could not set group membership." msgstr "No s'ha pogut establir la pertinença d'aquest grup." @@ -4150,129 +4590,125 @@ msgstr "%1$s (%2$s)" msgid "Untitled page" msgstr "Pàgina sense titol" -#: lib/action.php:427 +#: lib/action.php:433 msgid "Primary site navigation" msgstr "Navegació primària del lloc" -#: lib/action.php:433 +#: lib/action.php:439 msgid "Home" msgstr "Inici" -#: lib/action.php:433 +#: lib/action.php:439 msgid "Personal profile and friends timeline" msgstr "Perfil personal i línia temporal dels amics" -#: lib/action.php:435 -msgid "Account" -msgstr "Compte" - -#: lib/action.php:435 +#: lib/action.php:441 msgid "Change your email, avatar, password, profile" msgstr "Canviar correu electrònic, avatar, contrasenya, perfil" -#: lib/action.php:438 +#: lib/action.php:444 msgid "Connect" msgstr "Connexió" -#: lib/action.php:438 +#: lib/action.php:444 #, fuzzy msgid "Connect to services" msgstr "No s'ha pogut redirigir al servidor: %s" -#: lib/action.php:442 +#: lib/action.php:448 msgid "Change site configuration" msgstr "Canvia la configuració del lloc" -#: lib/action.php:446 lib/subgroupnav.php:105 +#: lib/action.php:452 lib/subgroupnav.php:105 msgid "Invite" msgstr "Convida" -#: lib/action.php:447 lib/subgroupnav.php:106 +#: lib/action.php:453 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" -#: lib/action.php:452 +#: lib/action.php:458 msgid "Logout" msgstr "Finalitza la sessió" -#: lib/action.php:452 +#: lib/action.php:458 msgid "Logout from the site" msgstr "Finalitza la sessió del lloc" -#: lib/action.php:457 +#: lib/action.php:463 msgid "Create an account" msgstr "Crea un compte" -#: lib/action.php:460 +#: lib/action.php:466 msgid "Login to the site" msgstr "Inicia una sessió al lloc" -#: lib/action.php:463 lib/action.php:726 +#: lib/action.php:469 lib/action.php:732 msgid "Help" msgstr "Ajuda" -#: lib/action.php:463 +#: lib/action.php:469 msgid "Help me!" msgstr "Ajuda'm" -#: lib/action.php:466 lib/searchaction.php:127 +#: lib/action.php:472 lib/searchaction.php:127 msgid "Search" msgstr "Cerca" -#: lib/action.php:466 +#: lib/action.php:472 msgid "Search for people or text" msgstr "Cerca gent o text" -#: lib/action.php:487 +#: lib/action.php:493 msgid "Site notice" msgstr "Avís del lloc" -#: lib/action.php:553 +#: lib/action.php:559 msgid "Local views" msgstr "Vistes locals" -#: lib/action.php:619 +#: lib/action.php:625 msgid "Page notice" msgstr "Notificació pàgina" -#: lib/action.php:721 +#: lib/action.php:727 msgid "Secondary site navigation" msgstr "Navegació del lloc secundària" -#: lib/action.php:728 +#: lib/action.php:734 msgid "About" msgstr "Quant a" -#: lib/action.php:730 +#: lib/action.php:736 msgid "FAQ" msgstr "Preguntes més freqüents" -#: lib/action.php:734 +#: lib/action.php:740 msgid "TOS" msgstr "" -#: lib/action.php:737 +#: lib/action.php:743 msgid "Privacy" msgstr "Privadesa" -#: lib/action.php:739 +#: lib/action.php:745 msgid "Source" msgstr "Font" -#: lib/action.php:743 +#: lib/action.php:749 msgid "Contact" msgstr "Contacte" -#: lib/action.php:745 +#: lib/action.php:751 msgid "Badge" msgstr "Insígnia" -#: lib/action.php:773 +#: lib/action.php:779 msgid "StatusNet software license" msgstr "Llicència del programari StatusNet" -#: lib/action.php:776 +#: lib/action.php:782 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4281,12 +4717,12 @@ msgstr "" "**%%site.name%%** és un servei de microblogging de [%%site.broughtby%%**](%%" "site.broughtbyurl%%)." -#: lib/action.php:778 +#: lib/action.php:784 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** és un servei de microblogging." -#: lib/action.php:780 +#: lib/action.php:786 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4297,33 +4733,55 @@ msgstr "" "%s, disponible sota la [GNU Affero General Public License](http://www.fsf." "org/licensing/licenses/agpl-3.0.html)." -#: lib/action.php:794 +#: lib/action.php:801 msgid "Site content license" msgstr "Llicència de contingut del lloc" -#: lib/action.php:803 +#: lib/action.php:806 +#, php-format +msgid "Content and data of %1$s are private and confidential." +msgstr "" + +#: lib/action.php:811 +#, php-format +msgid "Content and data copyright by %1$s. All rights reserved." +msgstr "" + +#: lib/action.php:814 +msgid "Content and data copyright by contributors. All rights reserved." +msgstr "" + +#: lib/action.php:827 msgid "All " msgstr "Tot " -#: lib/action.php:808 +#: lib/action.php:833 msgid "license." msgstr "llicència." -#: lib/action.php:1102 +#: lib/action.php:1132 msgid "Pagination" msgstr "Paginació" -#: lib/action.php:1111 +#: lib/action.php:1141 msgid "After" msgstr "Posteriors" -#: lib/action.php:1119 +#: lib/action.php:1149 msgid "Before" msgstr "Anteriors" -#: lib/action.php:1167 -msgid "There was a problem with your session token." -msgstr "Ha ocorregut algun problema amb la teva sessió." +#: lib/activity.php:382 +msgid "Can't handle remote content yet." +msgstr "" + +#: lib/activity.php:410 +msgid "Can't handle embedded XML content yet." +msgstr "" + +#: lib/activity.php:414 +msgid "Can't handle embedded Base64 content yet." +msgstr "" #: lib/adminpanelaction.php:96 msgid "You cannot make changes to this site." @@ -4357,10 +4815,104 @@ msgstr "Configuració bàsica del lloc" msgid "Design configuration" msgstr "Configuració del disseny" -#: lib/adminpanelaction.php:322 lib/adminpanelaction.php:327 +#: lib/adminpanelaction.php:322 +#, fuzzy +msgid "User configuration" +msgstr "Configuració dels camins" + +#: lib/adminpanelaction.php:327 +#, fuzzy +msgid "Access configuration" +msgstr "Configuració del disseny" + +#: lib/adminpanelaction.php:332 msgid "Paths configuration" msgstr "Configuració dels camins" +#: lib/adminpanelaction.php:337 +#, fuzzy +msgid "Sessions configuration" +msgstr "Configuració del disseny" + +#: lib/apiauth.php:95 +msgid "API resource requires read-write access, but you only have read access." +msgstr "" + +#: lib/apiauth.php:273 +#, php-format +msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" +msgstr "" + +#: lib/applicationeditform.php:136 +msgid "Edit application" +msgstr "" + +#: lib/applicationeditform.php:184 +msgid "Icon for this application" +msgstr "" + +#: lib/applicationeditform.php:204 +#, fuzzy, php-format +msgid "Describe your application in %d characters" +msgstr "Descriu el grup amb 140 caràcters" + +#: lib/applicationeditform.php:207 +#, fuzzy +msgid "Describe your application" +msgstr "Descriu el grup amb 140 caràcters" + +#: lib/applicationeditform.php:216 +#, fuzzy +msgid "Source URL" +msgstr "Font" + +#: lib/applicationeditform.php:218 +#, fuzzy +msgid "URL of the homepage of this application" +msgstr "URL del teu web, blog del grup u tema" + +#: lib/applicationeditform.php:224 +msgid "Organization responsible for this application" +msgstr "" + +#: lib/applicationeditform.php:230 +#, fuzzy +msgid "URL for the homepage of the organization" +msgstr "URL del teu web, blog del grup u tema" + +#: lib/applicationeditform.php:236 +msgid "URL to redirect to after authentication" +msgstr "" + +#: lib/applicationeditform.php:258 +msgid "Browser" +msgstr "" + +#: lib/applicationeditform.php:274 +msgid "Desktop" +msgstr "" + +#: lib/applicationeditform.php:275 +msgid "Type of application, browser or desktop" +msgstr "" + +#: lib/applicationeditform.php:297 +msgid "Read-only" +msgstr "" + +#: lib/applicationeditform.php:315 +msgid "Read-write" +msgstr "" + +#: lib/applicationeditform.php:316 +msgid "Default access for this application: read-only, or read-write" +msgstr "" + +#: lib/applicationlist.php:154 +#, fuzzy +msgid "Revoke" +msgstr "Suprimeix" + #: lib/attachmentlist.php:87 msgid "Attachments" msgstr "Adjuncions" @@ -4381,11 +4933,11 @@ msgstr "" msgid "Tags for this attachment" msgstr "Etiquetes de l'adjunció" -#: lib/authenticationplugin.php:182 lib/authenticationplugin.php:187 +#: lib/authenticationplugin.php:218 lib/authenticationplugin.php:223 msgid "Password changing failed" msgstr "El canvi de contrasenya ha fallat" -#: lib/authenticationplugin.php:197 +#: lib/authenticationplugin.php:233 #, fuzzy msgid "Password changing is not allowed" msgstr "Contrasenya canviada." @@ -4539,82 +5091,91 @@ msgstr "Problema en guardar l'avís." msgid "Specify the name of the user to subscribe to" msgstr "Especifica el nom de l'usuari a que vols subscriure't" -#: lib/command.php:554 +#: lib/command.php:554 lib/command.php:589 +msgid "No such user" +msgstr "No existeix aquest usuari." + +#: lib/command.php:561 #, php-format msgid "Subscribed to %s" msgstr "Subscrit a %s" -#: lib/command.php:575 +#: lib/command.php:582 lib/command.php:685 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/command.php:582 +#: lib/command.php:595 #, php-format msgid "Unsubscribed from %s" msgstr "Has deixat d'estar subscrit a %s" -#: lib/command.php:600 lib/command.php:623 +#: lib/command.php:613 lib/command.php:636 msgid "Command not yet implemented." msgstr "Comanda encara no implementada." -#: lib/command.php:603 +#: lib/command.php:616 msgid "Notification off." msgstr "Notificacions off." -#: lib/command.php:605 +#: lib/command.php:618 msgid "Can't turn off notification." msgstr "No es poden posar en off les notificacions." -#: lib/command.php:626 +#: lib/command.php:639 msgid "Notification on." msgstr "Notificacions on." -#: lib/command.php:628 +#: lib/command.php:641 msgid "Can't turn on notification." msgstr "No es poden posar en on les notificacions." -#: lib/command.php:641 +#: lib/command.php:654 msgid "Login command is disabled" msgstr "" -#: lib/command.php:652 +#: lib/command.php:665 #, php-format msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "" -#: lib/command.php:668 +#: lib/command.php:692 +#, fuzzy, php-format +msgid "Unsubscribed %s" +msgstr "Has deixat d'estar subscrit a %s" + +#: lib/command.php:709 #, fuzzy msgid "You are not subscribed to anyone." msgstr "No estàs subscrit a aquest perfil." -#: lib/command.php:670 +#: lib/command.php:711 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "Ja estàs subscrit a aquests usuaris:" msgstr[1] "Ja estàs subscrit a aquests usuaris:" -#: lib/command.php:690 +#: lib/command.php:731 #, fuzzy msgid "No one is subscribed to you." msgstr "No pots subscriure a un altre a tu mateix." -#: lib/command.php:692 +#: lib/command.php:733 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "No pots subscriure a un altre a tu mateix." msgstr[1] "No pots subscriure a un altre a tu mateix." -#: lib/command.php:712 +#: lib/command.php:753 msgid "You are not a member of any groups." msgstr "No sou membre de cap grup." -#: lib/command.php:714 +#: lib/command.php:755 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" -msgstr[0] "No sou un membre del grup." -msgstr[1] "No sou un membre del grup." +msgstr[0] "Sou un membre d'aquest grup:" +msgstr[1] "Sou un membre d'aquests grups:" -#: lib/command.php:728 +#: lib/command.php:769 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -4628,6 +5189,7 @@ msgid "" "d - direct message to user\n" "get - get last notice from user\n" "whois - get profile info on user\n" +"lose - force user to stop following you\n" "fav - add user's last notice as a 'fave'\n" "fav # - add notice with the given id as a 'fave'\n" "repeat # - repeat a notice with a given id\n" @@ -4655,19 +5217,19 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:131 +#: lib/common.php:136 msgid "No configuration file found. " msgstr "No s'ha trobat cap fitxer de configuració. " -#: lib/common.php:132 +#: lib/common.php:137 msgid "I looked for configuration files in the following places: " msgstr "" -#: lib/common.php:134 +#: lib/common.php:139 msgid "You may wish to run the installer to fix this." msgstr "Podeu voler executar l'instal·lador per a corregir-ho." -#: lib/common.php:135 +#: lib/common.php:140 msgid "Go to the installer." msgstr "Vés a l'instal·lador." @@ -4683,6 +5245,14 @@ msgstr "Actualitzacions per Missatgeria Instantània" msgid "Updates by SMS" msgstr "Actualitzacions per SMS" +#: lib/connectsettingsaction.php:120 +msgid "Connections" +msgstr "Connexions" + +#: lib/connectsettingsaction.php:121 +msgid "Authorized connected applications" +msgstr "Aplicacions de connexió autoritzades" + #: lib/dberroraction.php:60 msgid "Database error" msgstr "Error de la base de dades" @@ -4742,9 +5312,8 @@ msgid "All" msgstr "Tot" #: lib/galleryaction.php:139 -#, fuzzy msgid "Select tag to filter" -msgstr "Selecciona un transport" +msgstr "Seleccioneu l'etiqueta per filtrar" #: lib/galleryaction.php:140 msgid "Tag" @@ -4763,14 +5332,13 @@ 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:168 -#, fuzzy msgid "Describe the group or topic" -msgstr "Descriu el grup amb 140 caràcters" +msgstr "Descriviu el grup o el tema" #: lib/groupeditform.php:170 -#, fuzzy, php-format +#, php-format msgid "Describe the group or topic in %d characters" -msgstr "Descriu el grup amb 140 caràcters" +msgstr "Descriviu el grup o el tema en %d caràcters" #: lib/groupeditform.php:179 msgid "" @@ -4792,9 +5360,9 @@ msgid "Blocked" msgstr "Blocat" #: lib/groupnav.php:102 -#, fuzzy, php-format +#, php-format msgid "%s blocked users" -msgstr "Usuari bloquejat." +msgstr "%susuaris blocats" #: lib/groupnav.php:108 #, php-format @@ -4811,9 +5379,9 @@ msgid "Add or edit %s logo" msgstr "Afegir o editar logo %s" #: lib/groupnav.php:120 -#, fuzzy, php-format +#, php-format msgid "Add or edit %s design" -msgstr "Afegir o editar logo %s" +msgstr "Afegeix o edita el disseny %s" #: lib/groupsbymemberssection.php:71 msgid "Groups with most members" @@ -4863,18 +5431,18 @@ msgstr "Tipus de fitxer desconegut" #: lib/imagefile.php:217 msgid "MB" -msgstr "" +msgstr "MB" #: lib/imagefile.php:219 msgid "kB" -msgstr "" +msgstr "kB" -#: lib/jabber.php:202 +#: lib/jabber.php:220 #, php-format msgid "[%s]" msgstr "" -#: lib/jabber.php:385 +#: lib/jabber.php:400 #, fuzzy, php-format msgid "Unknown inbox source %d." msgstr "Llengua desconeguda «%s»" @@ -5085,7 +5653,7 @@ msgid "" "users in conversation. People can send you messages for your eyes only." msgstr "" -#: lib/mailbox.php:227 lib/noticelist.php:477 +#: lib/mailbox.php:227 lib/noticelist.php:482 msgid "from" msgstr "de" @@ -5203,58 +5771,54 @@ msgid "Do not share my location" msgstr "Comparteix la vostra ubicació" #: lib/noticeform.php:216 -msgid "Hide this info" -msgstr "" - -#: lib/noticeform.php:217 msgid "" "Sorry, retrieving your geo location is taking longer than expected, please " "try again later" msgstr "" -#: lib/noticelist.php:428 +#: lib/noticelist.php:429 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "" -#: lib/noticelist.php:429 +#: lib/noticelist.php:430 #, fuzzy msgid "N" msgstr "No" -#: lib/noticelist.php:429 +#: lib/noticelist.php:430 msgid "S" msgstr "" -#: lib/noticelist.php:430 +#: lib/noticelist.php:431 msgid "E" msgstr "" -#: lib/noticelist.php:430 +#: lib/noticelist.php:431 msgid "W" msgstr "" -#: lib/noticelist.php:436 +#: lib/noticelist.php:438 msgid "at" msgstr "" -#: lib/noticelist.php:531 +#: lib/noticelist.php:558 msgid "in context" msgstr "en context" -#: lib/noticelist.php:556 +#: lib/noticelist.php:583 msgid "Repeated by" msgstr "Repetit per" -#: lib/noticelist.php:585 +#: lib/noticelist.php:610 msgid "Reply to this notice" msgstr "respondre a aquesta nota" -#: lib/noticelist.php:586 +#: lib/noticelist.php:611 msgid "Reply" msgstr "Respon" -#: lib/noticelist.php:628 +#: lib/noticelist.php:655 #, fuzzy msgid "Notice repeated" msgstr "Notificació publicada" @@ -5288,11 +5852,7 @@ msgstr "Error en inserir perfil remot" msgid "Duplicate notice" msgstr "Eliminar nota." -#: lib/oauthstore.php:466 lib/subs.php:48 -msgid "You have been banned from subscribing." -msgstr "Se us ha banejat la subscripció." - -#: lib/oauthstore.php:491 +#: lib/oauthstore.php:490 msgid "Couldn't insert new subscription." msgstr "No s'ha pogut inserir una nova subscripció." @@ -5308,19 +5868,19 @@ msgstr "Respostes" msgid "Favorites" msgstr "Preferits" -#: lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "Safata d'entrada" -#: lib/personalgroupnav.php:125 +#: lib/personalgroupnav.php:126 msgid "Your incoming messages" msgstr "Els teus missatges rebuts" -#: lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 msgid "Outbox" msgstr "Safata de sortida" -#: lib/personalgroupnav.php:130 +#: lib/personalgroupnav.php:131 msgid "Your sent messages" msgstr "Els teus missatges enviats" @@ -5400,6 +5960,10 @@ msgstr "Repeteix l'avís" msgid "Repeat this notice" msgstr "Repeteix l'avís" +#: lib/router.php:665 +msgid "No single user defined for single-user mode." +msgstr "" + #: lib/sandboxform.php:67 #, fuzzy msgid "Sandbox" @@ -5469,36 +6033,6 @@ msgstr "Persones subscrites a %s" msgid "Groups %s is a member of" msgstr "%s grups són membres de" -#: lib/subs.php:52 -msgid "Already subscribed!" -msgstr "Ja hi esteu subscrit!" - -#: lib/subs.php:56 -msgid "User has blocked you." -msgstr "Un usuari t'ha bloquejat." - -#: lib/subs.php:63 -msgid "Could not subscribe." -msgstr "No pots subscriure." - -#: lib/subs.php:82 -msgid "Could not subscribe other to you." -msgstr "No pots subscriure a un altre a tu mateix." - -#: lib/subs.php:137 -#, fuzzy -msgid "Not subscribed!" -msgstr "No estàs subscrit!" - -#: lib/subs.php:142 -#, fuzzy -msgid "Couldn't delete self-subscription." -msgstr "No s'ha pogut eliminar la subscripció." - -#: lib/subs.php:158 -msgid "Couldn't delete subscription." -msgstr "No s'ha pogut eliminar la subscripció." - #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -5550,67 +6084,67 @@ msgstr "Edita l'avatar" msgid "User actions" msgstr "Accions de l'usuari" -#: lib/userprofile.php:248 +#: lib/userprofile.php:251 msgid "Edit profile settings" msgstr "Edita la configuració del perfil" -#: lib/userprofile.php:249 +#: lib/userprofile.php:252 msgid "Edit" msgstr "Edita" -#: lib/userprofile.php:272 +#: lib/userprofile.php:275 msgid "Send a direct message to this user" msgstr "Enviar un missatge directe a aquest usuari" -#: lib/userprofile.php:273 +#: lib/userprofile.php:276 msgid "Message" msgstr "Missatge" -#: lib/userprofile.php:311 +#: lib/userprofile.php:314 msgid "Moderate" msgstr "Modera" -#: lib/util.php:877 +#: lib/util.php:952 msgid "a few seconds ago" msgstr "fa pocs segons" -#: lib/util.php:879 +#: lib/util.php:954 msgid "about a minute ago" msgstr "fa un minut" -#: lib/util.php:881 +#: lib/util.php:956 #, php-format msgid "about %d minutes ago" msgstr "fa %d minuts" -#: lib/util.php:883 +#: lib/util.php:958 msgid "about an hour ago" msgstr "fa una hora" -#: lib/util.php:885 +#: lib/util.php:960 #, php-format msgid "about %d hours ago" msgstr "fa %d hores" -#: lib/util.php:887 +#: lib/util.php:962 msgid "about a day ago" msgstr "fa un dia" -#: lib/util.php:889 +#: lib/util.php:964 #, php-format msgid "about %d days ago" msgstr "fa %d dies" -#: lib/util.php:891 +#: lib/util.php:966 msgid "about a month ago" msgstr "fa un mes" -#: lib/util.php:893 +#: lib/util.php:968 #, php-format msgid "about %d months ago" msgstr "fa %d mesos" -#: lib/util.php:895 +#: lib/util.php:970 msgid "about a year ago" msgstr "fa un any" @@ -5624,7 +6158,7 @@ msgstr "%s no és un color vàlid!" msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "%s no és un color vàlid! Feu servir 3 o 6 caràcters hexadecimals." -#: scripts/xmppdaemon.php:301 +#: lib/xmppmanager.php:402 #, fuzzy, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "Missatge massa llarg - màxim és 140 caràcters, tu has enviat %d" diff --git a/locale/cs/LC_MESSAGES/statusnet.po b/locale/cs/LC_MESSAGES/statusnet.po index 6d4ee65b64..dd51424e69 100644 --- a/locale/cs/LC_MESSAGES/statusnet.po +++ b/locale/cs/LC_MESSAGES/statusnet.po @@ -9,17 +9,75 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-01-13 22:04+0000\n" -"PO-Revision-Date: 2010-01-13 22:04:54+0000\n" +"POT-Creation-Date: 2010-02-24 23:49+0000\n" +"PO-Revision-Date: 2010-02-24 23:50:18+0000\n" "Language-Team: Czech\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha (r61027); Translate extension (2010-01-04)\n" +"X-Generator: MediaWiki 1.17alpha (r62925); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: cs\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n< =4) ? 1 : 2 ;\n" +#: actions/accessadminpanel.php:54 lib/adminpanelaction.php:326 +#, fuzzy +msgid "Access" +msgstr "Přijmout" + +#: actions/accessadminpanel.php:65 +#, fuzzy +msgid "Site access settings" +msgstr "Nastavení" + +#: actions/accessadminpanel.php:158 +#, fuzzy +msgid "Registration" +msgstr "Registrovat" + +#: actions/accessadminpanel.php:161 +#, fuzzy +msgid "Private" +msgstr "Soukromí" + +#: actions/accessadminpanel.php:163 +msgid "Prohibit anonymous users (not logged in) from viewing site?" +msgstr "" + +#: actions/accessadminpanel.php:167 +msgid "Invite only" +msgstr "" + +#: actions/accessadminpanel.php:169 +msgid "Make registration invitation only." +msgstr "" + +#: actions/accessadminpanel.php:173 +#, fuzzy +msgid "Closed" +msgstr "Žádný takový uživatel." + +#: actions/accessadminpanel.php:175 +msgid "Disable new registrations." +msgstr "" + +#: actions/accessadminpanel.php:189 actions/designadminpanel.php:586 +#: actions/emailsettings.php:195 actions/imsettings.php:163 +#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 +#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 +#: actions/siteadminpanel.php:336 actions/smssettings.php:181 +#: actions/subscriptions.php:208 actions/tagother.php:154 +#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 lib/designsettings.php:256 +#: lib/groupeditform.php:202 +msgid "Save" +msgstr "Uložit" + +#: actions/accessadminpanel.php:189 +#, fuzzy +msgid "Save access settings" +msgstr "Nastavení" + #: actions/all.php:63 actions/public.php:97 actions/replies.php:92 #: actions/showfavorites.php:137 actions/tag.php:51 #, fuzzy @@ -35,25 +93,29 @@ msgstr "Žádné takové oznámení." #: 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:144 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apistatusesupdate.php:148 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:78 #: actions/apitimelinehome.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/otp.php:76 #: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154 -#: actions/replies.php:73 actions/repliesrss.php:38 +#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 #: 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:302 lib/command.php:355 #: lib/command.php:401 lib/command.php:462 lib/command.php:518 #: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 -#: lib/subs.php:34 lib/subs.php:125 msgid "No such user." msgstr "Žádný takový uživatel." +#: actions/all.php:84 +#, fuzzy, php-format +msgid "%1$s and friends, page %2$d" +msgstr "%s a přátelé" + #: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 -#: actions/apitimelinefriends.php:115 actions/apitimelinehome.php:115 +#: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" @@ -94,7 +156,7 @@ msgid "" "his or her attention](%%%%action.newnotice%%%%?status_textarea=%3$s)." msgstr "" -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211 #, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " @@ -106,8 +168,8 @@ msgstr "" msgid "You and friends" msgstr "%s a přátelé" -#: actions/allrss.php:119 actions/apitimelinefriends.php:122 -#: actions/apitimelinehome.php:122 +#: actions/allrss.php:119 actions/apitimelinefriends.php:119 +#: actions/apitimelinehome.php:120 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "" @@ -117,23 +179,23 @@ msgstr "" #: actions/apiaccountupdateprofile.php:97 #: actions/apiaccountupdateprofilebackgroundimage.php:94 #: actions/apiaccountupdateprofilecolors.php:118 -#: 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:136 actions/apigroupismember.php:114 -#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 -#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 -#: actions/apigroupmembership.php:106 actions/apigroupshow.php:105 -#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 -#: actions/apistatusesretweets.php:112 actions/apistatusesshow.php:108 -#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93 -#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:146 -#: actions/apitimelinefriends.php:156 actions/apitimelinegroup.php:150 -#: actions/apitimelinehome.php:156 actions/apitimelinementions.php:151 -#: actions/apitimelinepublic.php:131 actions/apitimelineretweetedbyme.php:122 +#: actions/apiaccountverifycredentials.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:128 actions/apigroupcreate.php:136 +#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 +#: actions/apigroupleave.php:141 actions/apigrouplist.php:132 +#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 +#: actions/apigroupshow.php:115 actions/apihelptest.php:88 +#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 +#: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 #: actions/apitimelineretweetedtome.php:121 -#: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141 -#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 +#: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 +#: actions/apitimelineuser.php:207 actions/apiusershow.php:101 #, fuzzy msgid "API method not found." msgstr "Potvrzující kód nebyl nalezen" @@ -148,7 +210,7 @@ msgstr "Potvrzující kód nebyl nalezen" #: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 #: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 #: actions/apigroupleave.php:91 actions/apistatusesretweet.php:65 -#: actions/apistatusesupdate.php:114 +#: actions/apistatusesupdate.php:118 msgid "This method requires a POST." msgstr "" @@ -179,8 +241,9 @@ msgstr "Nelze uložit profil" #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:97 -#: actions/apistatusesupdate.php:127 actions/avatarsettings.php:257 -#: actions/designadminpanel.php:122 actions/newnotice.php:94 +#: actions/apistatusesupdate.php:131 actions/avatarsettings.php:257 +#: actions/designadminpanel.php:122 actions/editapplication.php:118 +#: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 #, php-format msgid "" @@ -299,12 +362,12 @@ msgstr "Nelze aktualizovat uživatele" msgid "Two user ids or screen_names must be supplied." msgstr "" -#: actions/apifriendshipsshow.php:135 +#: actions/apifriendshipsshow.php:134 #, fuzzy msgid "Could not determine source user." msgstr "Nelze aktualizovat uživatele" -#: actions/apifriendshipsshow.php:143 +#: actions/apifriendshipsshow.php:142 #, fuzzy msgid "Could not find target user." msgstr "Nelze aktualizovat uživatele" @@ -327,7 +390,8 @@ msgstr "Přezdívku již někdo používá. Zkuste jinou" msgid "Not a valid nickname." msgstr "Není platnou přezdívkou." -#: actions/apigroupcreate.php:196 actions/editgroup.php:195 +#: actions/apigroupcreate.php:196 actions/editapplication.php:215 +#: actions/editgroup.php:195 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:217 msgid "Homepage is not a valid URL." @@ -339,7 +403,8 @@ msgstr "Stránka není platnou URL." msgid "Full name is too long (max 255 chars)." msgstr "Jméno je moc dlouhé (maximální délka je 255 znaků)" -#: actions/apigroupcreate.php:213 +#: actions/apigroupcreate.php:213 actions/editapplication.php:190 +#: actions/newapplication.php:172 #, fuzzy, php-format msgid "Description is too long (max %d chars)." msgstr "Text je příliš dlouhý (maximální délka je 140 zanků)" @@ -375,7 +440,7 @@ msgstr "" #: actions/apigroupismember.php:95 actions/apigroupjoin.php:104 #: actions/apigroupleave.php:104 actions/apigroupmembership.php:91 -#: actions/apigroupshow.php:90 actions/apitimelinegroup.php:91 +#: actions/apigroupshow.php:82 actions/apitimelinegroup.php:91 #, fuzzy msgid "Group not found!" msgstr "Žádný požadavek nebyl nalezen!" @@ -419,6 +484,116 @@ msgstr "" msgid "groups on %s" msgstr "" +#: actions/apioauthauthorize.php:101 +msgid "No oauth_token parameter provided." +msgstr "" + +#: actions/apioauthauthorize.php:106 +#, fuzzy +msgid "Invalid token." +msgstr "Neplatná velikost" + +#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 +#: actions/deletenotice.php:157 actions/disfavor.php:74 +#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54 +#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupunblock.php:66 actions/imsettings.php:206 +#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 +#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 +#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135 +#: actions/othersettings.php:145 actions/passwordsettings.php:138 +#: actions/profilesettings.php:194 actions/recoverpassword.php:337 +#: actions/register.php:165 actions/remotesubscribe.php:77 +#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 +#: actions/subscribe.php:86 actions/tagother.php:166 +#: 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/apioauthauthorize.php:135 +#, fuzzy +msgid "Invalid nickname / password!" +msgstr "Neplatné jméno nebo heslo" + +#: actions/apioauthauthorize.php:159 +#, fuzzy +msgid "Database error deleting OAuth application user." +msgstr "Chyba nastavení uživatele" + +#: actions/apioauthauthorize.php:185 +#, fuzzy +msgid "Database error inserting OAuth application user." +msgstr "Chyba v DB při vkládání odpovědi: %s" + +#: actions/apioauthauthorize.php:214 +#, php-format +msgid "" +"The request token %s has been authorized. Please exchange it for an access " +"token." +msgstr "" + +#: actions/apioauthauthorize.php:227 +#, php-format +msgid "The request token %s has been denied and revoked." +msgstr "" + +#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 +#: actions/designadminpanel.php:103 actions/editapplication.php:139 +#: actions/emailsettings.php:256 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/newapplication.php:121 +#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 +#: actions/smssettings.php:248 lib/designsettings.php:304 +msgid "Unexpected form submission." +msgstr "Nečekaná forma submission." + +#: actions/apioauthauthorize.php:259 +msgid "An application would like to connect to your account" +msgstr "" + +#: actions/apioauthauthorize.php:276 +msgid "Allow or deny access" +msgstr "" + +#: actions/apioauthauthorize.php:292 +#, php-format +msgid "" +"The application %1$s by %2$s would like " +"the ability to %3$s your %4$s account data. You should only " +"give access to your %4$s account to third parties you trust." +msgstr "" + +#: actions/apioauthauthorize.php:310 lib/action.php:441 +#, fuzzy +msgid "Account" +msgstr "O nás" + +#: actions/apioauthauthorize.php:313 actions/login.php:230 +#: actions/profilesettings.php:106 actions/register.php:424 +#: actions/showgroup.php:236 actions/tagother.php:94 +#: actions/userauthorization.php:145 lib/groupeditform.php:152 +#: lib/userprofile.php:131 +msgid "Nickname" +msgstr "Přezdívka" + +#: actions/apioauthauthorize.php:316 actions/login.php:233 +#: actions/register.php:429 lib/accountsettingsaction.php:116 +msgid "Password" +msgstr "Heslo" + +#: actions/apioauthauthorize.php:328 +#, fuzzy +msgid "Deny" +msgstr "Vzhled" + +#: actions/apioauthauthorize.php:334 +msgid "Allow" +msgstr "" + +#: actions/apioauthauthorize.php:351 +msgid "Allow or deny access to your account information." +msgstr "" + #: actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." msgstr "" @@ -451,17 +626,17 @@ msgstr "Obrázek nahrán" msgid "No status with that ID found." msgstr "" -#: actions/apistatusesupdate.php:157 actions/newnotice.php:155 +#: actions/apistatusesupdate.php:161 actions/newnotice.php:155 #: lib/mailhandler.php:60 #, 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:198 +#: actions/apistatusesupdate.php:202 msgid "Not found" msgstr "" -#: actions/apistatusesupdate.php:221 actions/newnotice.php:178 +#: actions/apistatusesupdate.php:225 actions/newnotice.php:178 #, php-format msgid "Max notice size is %d chars, including attachment URL." msgstr "" @@ -476,7 +651,7 @@ msgstr "Nepodporovaný formát obrázku." msgid "%1$s / Favorites from %2$s" msgstr "%1 statusů na %2" -#: actions/apitimelinefavorites.php:120 +#: actions/apitimelinefavorites.php:117 #, fuzzy, php-format msgid "%1$s updates favorited by %2$s / %2$s." msgstr "Mikroblog od %s" @@ -487,7 +662,7 @@ msgstr "Mikroblog od %s" msgid "%s timeline" msgstr "" -#: actions/apitimelinegroup.php:117 actions/apitimelineuser.php:126 +#: actions/apitimelinegroup.php:114 actions/apitimelineuser.php:126 #: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" @@ -503,27 +678,22 @@ msgstr "%1 statusů na %2" msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "" -#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "" -#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "" -#: actions/apitimelineretweetedbyme.php:112 -#, php-format -msgid "Repeated by %s" -msgstr "" - #: actions/apitimelineretweetedtome.php:111 #, fuzzy, php-format msgid "Repeated to %s" msgstr "Odpovědi na %s" -#: actions/apitimelineretweetsofme.php:112 +#: actions/apitimelineretweetsofme.php:114 #, fuzzy, php-format msgid "Repeats of %s" msgstr "Odpovědi na %s" @@ -533,7 +703,7 @@ msgstr "Odpovědi na %s" msgid "Notices tagged with %s" msgstr "" -#: actions/apitimelinetag.php:108 actions/tagrss.php:64 +#: actions/apitimelinetag.php:104 actions/tagrss.php:64 #, fuzzy, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Mikroblog od %s" @@ -596,8 +766,8 @@ msgstr "" msgid "Preview" msgstr "" -#: actions/avatarsettings.php:149 lib/deleteuserform.php:66 -#: lib/noticelist.php:611 +#: actions/avatarsettings.php:149 actions/showapplication.php:252 +#: lib/deleteuserform.php:66 lib/noticelist.php:637 msgid "Delete" msgstr "Odstranit" @@ -609,29 +779,6 @@ msgstr "Upload" msgid "Crop" msgstr "" -#: actions/avatarsettings.php:268 actions/deletenotice.php:157 -#: actions/disfavor.php:74 actions/emailsettings.php:238 actions/favor.php:75 -#: actions/geocode.php:50 actions/groupblock.php:66 actions/grouplogo.php:309 -#: actions/groupunblock.php:66 actions/imsettings.php:206 -#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 -#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 -#: actions/othersettings.php:145 actions/passwordsettings.php:138 -#: actions/profilesettings.php:194 actions/recoverpassword.php:337 -#: actions/register.php:165 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 -#: actions/subscribe.php:46 actions/tagother.php:166 -#: 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/avatarsettings.php:281 actions/designadminpanel.php:103 -#: actions/emailsettings.php:256 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." - #: actions/avatarsettings.php:328 msgid "Pick a square area of the image to be your avatar" msgstr "" @@ -669,8 +816,9 @@ msgid "" "will not be notified of any @-replies from them." msgstr "" -#: actions/block.php:143 actions/deletenotice.php:145 -#: actions/deleteuser.php:147 actions/groupblock.php:178 +#: actions/block.php:143 actions/deleteapplication.php:153 +#: actions/deletenotice.php:145 actions/deleteuser.php:147 +#: actions/groupblock.php:178 msgid "No" msgstr "Ne" @@ -679,13 +827,13 @@ msgstr "Ne" msgid "Do not block this user" msgstr "Žádný takový uživatel." -#: actions/block.php:144 actions/deletenotice.php:146 -#: actions/deleteuser.php:148 actions/groupblock.php:179 -#: lib/repeatform.php:132 +#: actions/block.php:144 actions/deleteapplication.php:158 +#: actions/deletenotice.php:146 actions/deleteuser.php:148 +#: actions/groupblock.php:179 lib/repeatform.php:132 msgid "Yes" msgstr "Ano" -#: actions/block.php:144 actions/groupmembers.php:346 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80 msgid "Block this user" msgstr "Zablokovat tohoto uživatele" @@ -771,7 +919,8 @@ msgid "Couldn't delete email confirmation." msgstr "Nelze smazat potvrzení emailu" #: actions/confirmaddress.php:144 -msgid "Confirm Address" +#, fuzzy +msgid "Confirm address" msgstr "Potvrď adresu" #: actions/confirmaddress.php:159 @@ -789,10 +938,54 @@ msgstr "Umístění" msgid "Notices" msgstr "Sdělení" +#: actions/deleteapplication.php:63 +#, fuzzy +msgid "You must be logged in to delete an application." +msgstr "Nelze aktualizovat uživatele" + +#: actions/deleteapplication.php:71 +#, fuzzy +msgid "Application not found." +msgstr "Sdělení nemá profil" + +#: actions/deleteapplication.php:78 actions/editapplication.php:77 +#: actions/showapplication.php:94 +#, fuzzy +msgid "You are not the owner of this application." +msgstr "Neodeslal jste nám profil" + +#: actions/deleteapplication.php:102 actions/editapplication.php:127 +#: actions/newapplication.php:110 actions/showapplication.php:118 +#: lib/action.php:1197 +msgid "There was a problem with your session token." +msgstr "" + +#: actions/deleteapplication.php:123 actions/deleteapplication.php:147 +#, fuzzy +msgid "Delete application" +msgstr "Žádné takové oznámení." + +#: actions/deleteapplication.php:149 +msgid "" +"Are you sure you want to delete this application? This will clear all data " +"about the application from the database, including all existing user " +"connections." +msgstr "" + +#: actions/deleteapplication.php:156 +#, fuzzy +msgid "Do not delete this application" +msgstr "Žádné takové oznámení." + +#: actions/deleteapplication.php:160 +#, fuzzy +msgid "Delete this application" +msgstr "Odstranit toto oznámení" + #: 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/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 #: lib/adminpanelaction.php:72 lib/profileformaction.php:63 #: lib/settingsaction.php:72 @@ -822,7 +1015,7 @@ msgstr "" msgid "Do not delete this notice" msgstr "Žádné takové oznámení." -#: actions/deletenotice.php:146 lib/noticelist.php:611 +#: actions/deletenotice.php:146 lib/noticelist.php:637 msgid "Delete this notice" msgstr "Odstranit toto oznámení" @@ -958,16 +1151,6 @@ msgstr "" msgid "Reset back to default" msgstr "" -#: actions/designadminpanel.php:586 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 -#: actions/pathsadminpanel.php:324 actions/profilesettings.php:174 -#: actions/siteadminpanel.php:388 actions/smssettings.php:181 -#: actions/subscriptions.php:203 actions/tagother.php:154 -#: actions/useradminpanel.php:313 lib/designsettings.php:256 -#: lib/groupeditform.php:202 -msgid "Save" -msgstr "Uložit" - #: actions/designadminpanel.php:587 lib/designsettings.php:257 msgid "Save design" msgstr "" @@ -980,10 +1163,84 @@ msgstr "" msgid "Add to favorites" msgstr "Přidat do oblíbených" -#: actions/doc.php:69 -msgid "No such document." +#: actions/doc.php:158 +#, fuzzy, php-format +msgid "No such document \"%s\"" msgstr "Žádný takový dokument." +#: actions/editapplication.php:54 +#, fuzzy +msgid "Edit Application" +msgstr "Sdělení nemá profil" + +#: actions/editapplication.php:66 +msgid "You must be logged in to edit an application." +msgstr "" + +#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:166 +#: actions/showapplication.php:87 +#, fuzzy +msgid "No such application." +msgstr "Žádné takové oznámení." + +#: actions/editapplication.php:161 +msgid "Use this form to edit your application." +msgstr "" + +#: actions/editapplication.php:177 actions/newapplication.php:159 +msgid "Name is required." +msgstr "" + +#: actions/editapplication.php:180 actions/newapplication.php:165 +#, fuzzy +msgid "Name is too long (max 255 chars)." +msgstr "Jméno je moc dlouhé (maximální délka je 255 znaků)" + +#: actions/editapplication.php:183 actions/newapplication.php:162 +#, fuzzy +msgid "Name already in use. Try another one." +msgstr "Přezdívku již někdo používá. Zkuste jinou" + +#: actions/editapplication.php:186 actions/newapplication.php:168 +#, fuzzy +msgid "Description is required." +msgstr "Odběry" + +#: actions/editapplication.php:194 +msgid "Source URL is too long." +msgstr "" + +#: actions/editapplication.php:200 actions/newapplication.php:185 +#, fuzzy +msgid "Source URL is not valid." +msgstr "Stránka není platnou URL." + +#: actions/editapplication.php:203 actions/newapplication.php:188 +msgid "Organization is required." +msgstr "" + +#: actions/editapplication.php:206 actions/newapplication.php:191 +#, fuzzy +msgid "Organization is too long (max 255 chars)." +msgstr "Umístění příliš dlouhé (maximálně 255 znaků)" + +#: actions/editapplication.php:209 actions/newapplication.php:194 +msgid "Organization homepage is required." +msgstr "" + +#: actions/editapplication.php:218 actions/newapplication.php:206 +msgid "Callback is too long." +msgstr "" + +#: actions/editapplication.php:225 actions/newapplication.php:215 +msgid "Callback URL is not valid." +msgstr "" + +#: actions/editapplication.php:258 +#, fuzzy +msgid "Could not update application." +msgstr "Nelze aktualizovat uživatele" + #: actions/editgroup.php:56 #, php-format msgid "Edit %s group" @@ -1012,7 +1269,7 @@ msgstr "Text je příliš dlouhý (maximální délka je 140 zanků)" msgid "Could not update group." msgstr "Nelze aktualizovat uživatele" -#: actions/editgroup.php:259 classes/User_group.php:390 +#: actions/editgroup.php:259 classes/User_group.php:433 #, fuzzy msgid "Could not create aliases." msgstr "Nelze uložin informace o obrázku" @@ -1053,7 +1310,8 @@ msgid "" msgstr "" #: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 +#: actions/smssettings.php:126 lib/applicationeditform.php:331 +#: lib/applicationeditform.php:332 msgid "Cancel" msgstr "Zrušit" @@ -1134,7 +1392,7 @@ msgid "Cannot normalize that email address" msgstr "" #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:157 +#: actions/siteadminpanel.php:143 msgid "Not a valid email address." msgstr "Není platnou mailovou adresou." @@ -1146,7 +1404,7 @@ msgstr "" msgid "That email address already belongs to another user." msgstr "" -#: actions/emailsettings.php:353 actions/imsettings.php:317 +#: actions/emailsettings.php:353 actions/imsettings.php:319 #: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." msgstr "Nelze vložit potvrzující kód" @@ -1205,7 +1463,7 @@ msgstr "" msgid "Disfavor favorite" msgstr "" -#: actions/favorited.php:65 lib/popularnoticesection.php:88 +#: actions/favorited.php:65 lib/popularnoticesection.php:91 #: lib/publicgroupnav.php:93 #, fuzzy msgid "Popular notices" @@ -1360,7 +1618,7 @@ msgstr "Uživatel nemá profil." msgid "User is not a member of group." msgstr "Neodeslal jste nám profil" -#: actions/groupblock.php:136 actions/groupmembers.php:314 +#: actions/groupblock.php:136 actions/groupmembers.php:316 #, fuzzy msgid "Block user from group" msgstr "Žádný takový uživatel." @@ -1460,23 +1718,23 @@ msgstr "" msgid "A list of the users in this group." msgstr "" -#: actions/groupmembers.php:175 lib/action.php:442 lib/groupnav.php:107 +#: actions/groupmembers.php:175 lib/action.php:448 lib/groupnav.php:107 msgid "Admin" msgstr "" -#: actions/groupmembers.php:346 lib/blockform.php:69 +#: actions/groupmembers.php:348 lib/blockform.php:69 msgid "Block" msgstr "" -#: actions/groupmembers.php:441 +#: actions/groupmembers.php:443 msgid "Make user an admin of the group" msgstr "" -#: actions/groupmembers.php:473 +#: actions/groupmembers.php:475 msgid "Make Admin" msgstr "" -#: actions/groupmembers.php:473 +#: actions/groupmembers.php:475 msgid "Make this user an admin" msgstr "" @@ -1653,6 +1911,11 @@ msgstr "" msgid "That is not your Jabber ID." msgstr "Toto není váš Jabber" +#: actions/inbox.php:59 +#, php-format +msgid "Inbox for %1$s - page %2$d" +msgstr "" + #: actions/inbox.php:62 #, php-format msgid "Inbox for %s" @@ -1729,7 +1992,7 @@ msgstr "" msgid "Optionally add a personal message to the invitation." msgstr "" -#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:237 +#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:236 msgid "Send" msgstr "Odeslat" @@ -1805,7 +2068,7 @@ msgstr "Neplatné jméno nebo heslo" msgid "Error setting user. You are probably not authorized." msgstr "Neautorizován." -#: actions/login.php:188 actions/login.php:241 lib/action.php:460 +#: actions/login.php:188 actions/login.php:241 lib/action.php:466 #: lib/logingroupnav.php:79 msgid "Login" msgstr "Přihlásit" @@ -1814,17 +2077,6 @@ msgstr "Přihlásit" msgid "Login to site" msgstr "" -#: actions/login.php:230 actions/profilesettings.php:106 -#: actions/register.php:424 actions/showgroup.php:236 actions/tagother.php:94 -#: lib/groupeditform.php:152 lib/userprofile.php:131 -msgid "Nickname" -msgstr "Přezdívka" - -#: actions/login.php:233 actions/register.php:429 -#: lib/accountsettingsaction.php:116 -msgid "Password" -msgstr "Heslo" - #: actions/login.php:236 actions/register.php:478 msgid "Remember me" msgstr "Zapamatuj si mě" @@ -1853,21 +2105,21 @@ msgstr "" "[Registrovat](%%action.register%%) nový účet, nebo vyzkoušejte [OpenID](%%" "action.openidlogin%%)." -#: actions/makeadmin.php:91 +#: actions/makeadmin.php:92 msgid "Only an admin can make another user an admin." msgstr "" -#: actions/makeadmin.php:95 +#: actions/makeadmin.php:96 #, fuzzy, php-format msgid "%1$s is already an admin for group \"%2$s\"." msgstr "Uživatel nemá profil." -#: actions/makeadmin.php:132 +#: actions/makeadmin.php:133 #, fuzzy, php-format msgid "Can't get membership record for %1$s in group %2$s." msgstr "Nelze vytvořit OpenID z: %s" -#: actions/makeadmin.php:145 +#: actions/makeadmin.php:146 #, fuzzy, php-format msgid "Can't make %1$s an admin for group %2$s." msgstr "Uživatel nemá profil." @@ -1876,6 +2128,28 @@ msgstr "Uživatel nemá profil." msgid "No current status" msgstr "" +#: actions/newapplication.php:52 +#, fuzzy +msgid "New Application" +msgstr "Žádné takové oznámení." + +#: actions/newapplication.php:64 +msgid "You must be logged in to register an application." +msgstr "" + +#: actions/newapplication.php:143 +msgid "Use this form to register a new application." +msgstr "" + +#: actions/newapplication.php:176 +msgid "Source URL is required." +msgstr "" + +#: actions/newapplication.php:258 actions/newapplication.php:267 +#, fuzzy +msgid "Could not create application." +msgstr "Nelze uložin informace o obrázku" + #: actions/newgroup.php:53 msgid "New group" msgstr "Nová skupina" @@ -1983,6 +2257,49 @@ msgstr "" msgid "Nudge sent!" msgstr "" +#: actions/oauthappssettings.php:59 +msgid "You must be logged in to list your applications." +msgstr "" + +#: actions/oauthappssettings.php:74 +msgid "OAuth applications" +msgstr "" + +#: actions/oauthappssettings.php:85 +msgid "Applications you have registered" +msgstr "" + +#: actions/oauthappssettings.php:135 +#, php-format +msgid "You have not registered any applications yet." +msgstr "" + +#: actions/oauthconnectionssettings.php:72 +msgid "Connected applications" +msgstr "" + +#: actions/oauthconnectionssettings.php:83 +msgid "You have allowed the following applications to access you account." +msgstr "" + +#: actions/oauthconnectionssettings.php:175 +#, fuzzy +msgid "You are not a user of that application." +msgstr "Neodeslal jste nám profil" + +#: actions/oauthconnectionssettings.php:186 +msgid "Unable to revoke access for app: " +msgstr "" + +#: actions/oauthconnectionssettings.php:198 +#, php-format +msgid "You have not authorized any applications to use your account." +msgstr "" + +#: actions/oauthconnectionssettings.php:211 +msgid "Developers can edit the registration settings for their applications " +msgstr "" + #: actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" msgstr "Sdělení nemá profil" @@ -2001,8 +2318,8 @@ msgstr "Připojit" msgid "Only " msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1033 -#: lib/api.php:1061 lib/api.php:1171 +#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 +#: lib/api.php:1068 lib/api.php:1177 msgid "Not a supported data format." msgstr "" @@ -2016,7 +2333,7 @@ msgstr "" #: actions/othersettings.php:60 #, fuzzy -msgid "Other Settings" +msgid "Other settings" msgstr "Nastavení" #: actions/othersettings.php:71 @@ -2073,6 +2390,11 @@ msgstr "Neplatný obsah sdělení" msgid "Login token expired." msgstr "" +#: actions/outbox.php:58 +#, php-format +msgid "Outbox for %1$s - page %2$d" +msgstr "" + #: actions/outbox.php:61 #, php-format msgid "Outbox for %s" @@ -2145,7 +2467,7 @@ msgstr "Nelze uložit nové heslo" msgid "Password saved." msgstr "Heslo uloženo" -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:326 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:331 msgid "Paths" msgstr "" @@ -2153,140 +2475,157 @@ msgstr "" msgid "Path and server settings for this StatusNet site." msgstr "" -#: actions/pathsadminpanel.php:140 +#: actions/pathsadminpanel.php:157 #, fuzzy, php-format msgid "Theme directory not readable: %s" msgstr "Tato stránka není k dispozici v typu média která přijímáte." -#: actions/pathsadminpanel.php:146 +#: actions/pathsadminpanel.php:163 #, php-format msgid "Avatar directory not writable: %s" msgstr "" -#: actions/pathsadminpanel.php:152 +#: actions/pathsadminpanel.php:169 #, php-format msgid "Background directory not writable: %s" msgstr "" -#: actions/pathsadminpanel.php:160 +#: actions/pathsadminpanel.php:177 #, php-format msgid "Locales directory not readable: %s" msgstr "" -#: actions/pathsadminpanel.php:166 +#: actions/pathsadminpanel.php:183 msgid "Invalid SSL server. The maximum length is 255 characters." msgstr "" -#: actions/pathsadminpanel.php:217 actions/siteadminpanel.php:58 +#: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58 #: lib/adminpanelaction.php:311 msgid "Site" msgstr "" -#: actions/pathsadminpanel.php:221 +#: actions/pathsadminpanel.php:238 +#, fuzzy +msgid "Server" +msgstr "Obnovit" + +#: actions/pathsadminpanel.php:238 +msgid "Site's server hostname." +msgstr "" + +#: actions/pathsadminpanel.php:242 msgid "Path" msgstr "" -#: actions/pathsadminpanel.php:221 +#: actions/pathsadminpanel.php:242 #, fuzzy msgid "Site path" msgstr "Nové sdělení" -#: actions/pathsadminpanel.php:225 +#: actions/pathsadminpanel.php:246 msgid "Path to locales" msgstr "" -#: actions/pathsadminpanel.php:225 +#: actions/pathsadminpanel.php:246 msgid "Directory path to locales" msgstr "" -#: actions/pathsadminpanel.php:232 -msgid "Theme" -msgstr "" - -#: actions/pathsadminpanel.php:237 -msgid "Theme server" -msgstr "" - -#: actions/pathsadminpanel.php:241 -msgid "Theme path" -msgstr "" - -#: actions/pathsadminpanel.php:245 -msgid "Theme directory" +#: actions/pathsadminpanel.php:250 +msgid "Fancy URLs" msgstr "" #: actions/pathsadminpanel.php:252 +msgid "Use fancy (more readable and memorable) URLs?" +msgstr "" + +#: actions/pathsadminpanel.php:259 +msgid "Theme" +msgstr "" + +#: actions/pathsadminpanel.php:264 +msgid "Theme server" +msgstr "" + +#: actions/pathsadminpanel.php:268 +msgid "Theme path" +msgstr "" + +#: actions/pathsadminpanel.php:272 +msgid "Theme directory" +msgstr "" + +#: actions/pathsadminpanel.php:279 #, fuzzy msgid "Avatars" msgstr "Obrázek" -#: actions/pathsadminpanel.php:257 +#: actions/pathsadminpanel.php:284 #, fuzzy msgid "Avatar server" msgstr "Nastavení" -#: actions/pathsadminpanel.php:261 +#: actions/pathsadminpanel.php:288 #, fuzzy msgid "Avatar path" msgstr "Obrázek nahrán" -#: actions/pathsadminpanel.php:265 +#: actions/pathsadminpanel.php:292 #, fuzzy msgid "Avatar directory" msgstr "Obrázek nahrán" -#: actions/pathsadminpanel.php:274 +#: actions/pathsadminpanel.php:301 msgid "Backgrounds" msgstr "" -#: actions/pathsadminpanel.php:278 +#: actions/pathsadminpanel.php:305 msgid "Background server" msgstr "" -#: actions/pathsadminpanel.php:282 +#: actions/pathsadminpanel.php:309 msgid "Background path" msgstr "" -#: actions/pathsadminpanel.php:286 +#: actions/pathsadminpanel.php:313 msgid "Background directory" msgstr "" -#: actions/pathsadminpanel.php:293 +#: actions/pathsadminpanel.php:320 msgid "SSL" msgstr "" -#: actions/pathsadminpanel.php:296 actions/siteadminpanel.php:346 +#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 #, fuzzy msgid "Never" msgstr "Obnovit" -#: actions/pathsadminpanel.php:297 +#: actions/pathsadminpanel.php:324 #, fuzzy msgid "Sometimes" msgstr "Sdělení" -#: actions/pathsadminpanel.php:298 +#: actions/pathsadminpanel.php:325 msgid "Always" msgstr "" -#: actions/pathsadminpanel.php:302 +#: actions/pathsadminpanel.php:329 msgid "Use SSL" msgstr "" -#: actions/pathsadminpanel.php:303 +#: actions/pathsadminpanel.php:330 msgid "When to use SSL" msgstr "" -#: actions/pathsadminpanel.php:308 +#: actions/pathsadminpanel.php:335 #, fuzzy msgid "SSL server" msgstr "Obnovit" -#: actions/pathsadminpanel.php:309 +#: actions/pathsadminpanel.php:336 msgid "Server to direct SSL requests to" msgstr "" -#: actions/pathsadminpanel.php:325 +#: actions/pathsadminpanel.php:352 #, fuzzy msgid "Save paths" msgstr "Nové sdělení" @@ -2350,7 +2689,7 @@ msgid "Full name" msgstr "Celé jméno" #: actions/profilesettings.php:115 actions/register.php:453 -#: lib/groupeditform.php:161 +#: lib/applicationeditform.php:228 lib/groupeditform.php:161 msgid "Homepage" msgstr "Moje stránky" @@ -2373,7 +2712,7 @@ msgstr "O mě" #: actions/profilesettings.php:132 actions/register.php:471 #: actions/showgroup.php:256 actions/tagother.php:112 -#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:164 msgid "Location" msgstr "Umístění" @@ -2397,7 +2736,7 @@ msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" -#: actions/profilesettings.php:151 actions/siteadminpanel.php:294 +#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 msgid "Language" msgstr "Jazyk" @@ -2423,7 +2762,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "Text je příliš dlouhý (maximální délka je 140 zanků)" -#: actions/profilesettings.php:235 actions/siteadminpanel.php:164 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 msgid "Timezone not selected." msgstr "" @@ -2436,25 +2775,25 @@ msgstr "" msgid "Invalid tag: \"%s\"" msgstr "Neplatná adresa '%s'" -#: actions/profilesettings.php:302 +#: actions/profilesettings.php:306 msgid "Couldn't update user for autosubscribe." msgstr "" -#: actions/profilesettings.php:359 +#: actions/profilesettings.php:363 #, fuzzy msgid "Couldn't save location prefs." msgstr "Nelze uložit profil" -#: actions/profilesettings.php:371 +#: actions/profilesettings.php:375 msgid "Couldn't save profile." msgstr "Nelze uložit profil" -#: actions/profilesettings.php:379 +#: actions/profilesettings.php:383 #, fuzzy msgid "Couldn't save tags." msgstr "Nelze uložit profil" -#: actions/profilesettings.php:387 lib/adminpanelaction.php:137 +#: actions/profilesettings.php:391 lib/adminpanelaction.php:137 msgid "Settings saved." msgstr "Nastavení uloženo" @@ -2476,39 +2815,39 @@ msgstr "Veřejné zprávy" msgid "Public timeline" msgstr "Veřejné zprávy" -#: actions/public.php:151 +#: actions/public.php:159 #, fuzzy msgid "Public Stream Feed (RSS 1.0)" msgstr "Veřejný Stream Feed" -#: actions/public.php:155 +#: actions/public.php:163 #, fuzzy msgid "Public Stream Feed (RSS 2.0)" msgstr "Veřejný Stream Feed" -#: actions/public.php:159 +#: actions/public.php:167 #, fuzzy msgid "Public Stream Feed (Atom)" msgstr "Veřejný Stream Feed" -#: actions/public.php:179 +#: actions/public.php:187 #, php-format msgid "" "This is the public timeline for %%site.name%% but no one has posted anything " "yet." msgstr "" -#: actions/public.php:182 +#: actions/public.php:190 msgid "Be the first to post!" msgstr "" -#: actions/public.php:186 +#: actions/public.php:194 #, php-format msgid "" "Why not [register an account](%%action.register%%) and be the first to post!" msgstr "" -#: actions/public.php:233 +#: actions/public.php:241 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2517,7 +2856,7 @@ msgid "" "friends, family, and colleagues! ([Read more](%%doc.help%%))" msgstr "" -#: actions/public.php:238 +#: actions/public.php:246 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2551,7 +2890,7 @@ msgid "" "one!" msgstr "" -#: actions/publictagcloud.php:131 +#: actions/publictagcloud.php:134 msgid "Tag cloud" msgstr "" @@ -2690,7 +3029,7 @@ msgstr "Chyba v ověřovacím kódu" msgid "Registration successful" msgstr "Registrace úspěšná" -#: actions/register.php:114 actions/register.php:503 lib/action.php:457 +#: actions/register.php:114 actions/register.php:503 lib/action.php:463 #: lib/logingroupnav.php:85 msgid "Register" msgstr "Registrovat" @@ -2730,7 +3069,7 @@ msgid "Same as password above. Required." msgstr "" #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:270 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 msgid "Email" msgstr "Email" @@ -2821,7 +3160,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "Adresa profilu na jiných kompatibilních mikroblozích." #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:365 +#: lib/userprofile.php:368 msgid "Subscribe" msgstr "Odebírat" @@ -2862,7 +3201,7 @@ msgstr "Nemůžete se registrovat, pokud nesouhlasíte s licencí." msgid "You already repeated that notice." msgstr "Již jste přihlášen" -#: actions/repeat.php:114 lib/noticelist.php:629 +#: actions/repeat.php:114 lib/noticelist.php:656 #, fuzzy msgid "Repeated" msgstr "Vytvořit" @@ -2878,6 +3217,11 @@ msgstr "Vytvořit" msgid "Replies to %s" msgstr "Odpovědi na %s" +#: actions/replies.php:127 +#, fuzzy, php-format +msgid "Replies to %1$s, page %2$d" +msgstr "Odpovědi na %s" + #: actions/replies.php:144 #, fuzzy, php-format msgid "Replies feed for %s (RSS 1.0)" @@ -2919,6 +3263,11 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "Odpovědi na %s" +#: actions/rsd.php:146 actions/version.php:157 +#, fuzzy +msgid "StatusNet" +msgstr "Obrázek nahrán" + #: actions/sandbox.php:65 actions/unsandbox.php:65 #, fuzzy msgid "You cannot sandbox users on this site." @@ -2929,6 +3278,124 @@ msgstr "Neodeslal jste nám profil" msgid "User is already sandboxed." msgstr "Uživatel nemá profil." +#: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:336 +msgid "Sessions" +msgstr "" + +#: actions/sessionsadminpanel.php:65 +msgid "Session settings for this StatusNet site." +msgstr "" + +#: actions/sessionsadminpanel.php:175 +msgid "Handle sessions" +msgstr "" + +#: actions/sessionsadminpanel.php:177 +msgid "Whether to handle sessions ourselves." +msgstr "" + +#: actions/sessionsadminpanel.php:181 +msgid "Session debugging" +msgstr "" + +#: actions/sessionsadminpanel.php:183 +msgid "Turn on debugging output for sessions." +msgstr "" + +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/useradminpanel.php:293 +#, fuzzy +msgid "Save site settings" +msgstr "Nastavení" + +#: actions/showapplication.php:82 +msgid "You must be logged in to view an application." +msgstr "" + +#: actions/showapplication.php:157 +#, fuzzy +msgid "Application profile" +msgstr "Sdělení nemá profil" + +#: actions/showapplication.php:159 lib/applicationeditform.php:180 +msgid "Icon" +msgstr "" + +#: actions/showapplication.php:169 actions/version.php:195 +#: lib/applicationeditform.php:195 +#, fuzzy +msgid "Name" +msgstr "Přezdívka" + +#: actions/showapplication.php:178 lib/applicationeditform.php:222 +#, fuzzy +msgid "Organization" +msgstr "Umístění" + +#: actions/showapplication.php:187 actions/version.php:198 +#: lib/applicationeditform.php:209 lib/groupeditform.php:172 +#, fuzzy +msgid "Description" +msgstr "Odběry" + +#: actions/showapplication.php:192 actions/showgroup.php:429 +#: lib/profileaction.php:174 +msgid "Statistics" +msgstr "Statistiky" + +#: actions/showapplication.php:203 +#, php-format +msgid "Created by %1$s - %2$s access by default - %3$d users" +msgstr "" + +#: actions/showapplication.php:213 +msgid "Application actions" +msgstr "" + +#: actions/showapplication.php:236 +msgid "Reset key & secret" +msgstr "" + +#: actions/showapplication.php:261 +msgid "Application info" +msgstr "" + +#: actions/showapplication.php:263 +msgid "Consumer key" +msgstr "" + +#: actions/showapplication.php:268 +msgid "Consumer secret" +msgstr "" + +#: actions/showapplication.php:273 +msgid "Request token URL" +msgstr "" + +#: actions/showapplication.php:278 +msgid "Access token URL" +msgstr "" + +#: actions/showapplication.php:283 +msgid "Authorize URL" +msgstr "" + +#: actions/showapplication.php:288 +msgid "" +"Note: We support HMAC-SHA1 signatures. We do not support the plaintext " +"signature method." +msgstr "" + +#: actions/showapplication.php:309 +msgid "Are you sure you want to reset your consumer key and secret?" +msgstr "" + +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%1$s's favorite notices, page %2$d" +msgstr "%s a přátelé" + #: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "" @@ -2978,18 +3445,23 @@ msgstr "" msgid "%s group" msgstr "" +#: actions/showgroup.php:84 +#, fuzzy, php-format +msgid "%1$s group, page %2$d" +msgstr "Všechny odběry" + #: 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 +#: actions/userauthorization.php:175 lib/userprofile.php:177 msgid "URL" msgstr "" #: actions/showgroup.php:274 actions/tagother.php:128 -#: actions/userauthorization.php:179 lib/userprofile.php:194 +#: actions/userauthorization.php:187 lib/userprofile.php:194 msgid "Note" msgstr "Poznámka" @@ -3036,10 +3508,6 @@ msgstr "" msgid "All members" msgstr "" -#: actions/showgroup.php:429 lib/profileaction.php:174 -msgid "Statistics" -msgstr "Statistiky" - #: actions/showgroup.php:432 #, fuzzy msgid "Created" @@ -3096,6 +3564,11 @@ msgstr "Sdělení" msgid " tagged %s" msgstr "" +#: actions/showstream.php:79 +#, fuzzy, php-format +msgid "%1$s, page %2$d" +msgstr "%s a přátelé" + #: actions/showstream.php:122 #, fuzzy, php-format msgid "Notice feed for %1$s tagged %2$s (RSS 1.0)" @@ -3121,25 +3594,25 @@ msgstr "Feed sdělení pro %s" msgid "FOAF for %s" msgstr "" -#: actions/showstream.php:191 +#: actions/showstream.php:200 #, php-format msgid "This is the timeline for %1$s but %2$s hasn't posted anything yet." msgstr "" -#: actions/showstream.php:196 +#: actions/showstream.php:205 msgid "" "Seen anything interesting recently? You haven't posted any notices yet, now " "would be a good time to start :)" msgstr "" -#: actions/showstream.php:198 +#: actions/showstream.php:207 #, php-format msgid "" "You can try to nudge %1$s or [post something to his or her attention](%%%%" "action.newnotice%%%%?status_textarea=%2$s)." msgstr "" -#: actions/showstream.php:234 +#: actions/showstream.php:243 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3148,7 +3621,7 @@ msgid "" "follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showstream.php:239 +#: actions/showstream.php:248 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3156,7 +3629,7 @@ msgid "" "[StatusNet](http://status.net/) tool. " msgstr "" -#: actions/showstream.php:313 +#: actions/showstream.php:305 #, fuzzy, php-format msgid "Repeat of %s" msgstr "Odpovědi na %s" @@ -3174,204 +3647,147 @@ msgstr "Uživatel nemá profil." msgid "Basic settings for this StatusNet site." msgstr "" -#: actions/siteadminpanel.php:146 +#: actions/siteadminpanel.php:132 msgid "Site name must have non-zero length." msgstr "" -#: actions/siteadminpanel.php:154 +#: actions/siteadminpanel.php:140 #, fuzzy msgid "You must have a valid contact email address." msgstr "Není platnou mailovou adresou." -#: actions/siteadminpanel.php:172 +#: actions/siteadminpanel.php:158 #, php-format msgid "Unknown language \"%s\"." msgstr "" -#: actions/siteadminpanel.php:179 +#: actions/siteadminpanel.php:165 msgid "Invalid snapshot report URL." msgstr "" -#: actions/siteadminpanel.php:185 +#: actions/siteadminpanel.php:171 msgid "Invalid snapshot run value." msgstr "" -#: actions/siteadminpanel.php:191 +#: actions/siteadminpanel.php:177 msgid "Snapshot frequency must be a number." msgstr "" -#: actions/siteadminpanel.php:197 +#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "" -#: actions/siteadminpanel.php:203 +#: actions/siteadminpanel.php:189 msgid "Dupe limit must 1 or more seconds." msgstr "" -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:239 msgid "General" msgstr "" -#: actions/siteadminpanel.php:256 +#: actions/siteadminpanel.php:242 #, fuzzy msgid "Site name" msgstr "Nové sdělení" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:243 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "" -#: actions/siteadminpanel.php:261 +#: actions/siteadminpanel.php:247 msgid "Brought by" msgstr "" -#: actions/siteadminpanel.php:262 +#: actions/siteadminpanel.php:248 msgid "Text used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:266 +#: actions/siteadminpanel.php:252 msgid "Brought by URL" msgstr "" -#: actions/siteadminpanel.php:267 +#: actions/siteadminpanel.php:253 msgid "URL used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:271 +#: actions/siteadminpanel.php:257 #, fuzzy msgid "Contact email address for your site" msgstr "Žádný registrovaný email pro tohoto uživatele." -#: actions/siteadminpanel.php:277 +#: actions/siteadminpanel.php:263 #, fuzzy msgid "Local" msgstr "Umístění" -#: actions/siteadminpanel.php:288 +#: actions/siteadminpanel.php:274 msgid "Default timezone" msgstr "" -#: actions/siteadminpanel.php:289 +#: actions/siteadminpanel.php:275 msgid "Default timezone for the site; usually UTC." msgstr "" -#: actions/siteadminpanel.php:295 +#: actions/siteadminpanel.php:281 msgid "Default site language" msgstr "" -#: actions/siteadminpanel.php:303 -msgid "URLs" -msgstr "" - -#: actions/siteadminpanel.php:306 -#, fuzzy -msgid "Server" -msgstr "Obnovit" - -#: actions/siteadminpanel.php:306 -msgid "Site's server hostname." -msgstr "" - -#: actions/siteadminpanel.php:310 -msgid "Fancy URLs" -msgstr "" - -#: actions/siteadminpanel.php:312 -msgid "Use fancy (more readable and memorable) URLs?" -msgstr "" - -#: actions/siteadminpanel.php:318 -#, fuzzy -msgid "Access" -msgstr "Přijmout" - -#: actions/siteadminpanel.php:321 -#, fuzzy -msgid "Private" -msgstr "Soukromí" - -#: actions/siteadminpanel.php:323 -msgid "Prohibit anonymous users (not logged in) from viewing site?" -msgstr "" - -#: actions/siteadminpanel.php:327 -msgid "Invite only" -msgstr "" - -#: actions/siteadminpanel.php:329 -msgid "Make registration invitation only." -msgstr "" - -#: actions/siteadminpanel.php:333 -#, fuzzy -msgid "Closed" -msgstr "Žádný takový uživatel." - -#: actions/siteadminpanel.php:335 -msgid "Disable new registrations." -msgstr "" - -#: actions/siteadminpanel.php:341 +#: actions/siteadminpanel.php:289 msgid "Snapshots" msgstr "" -#: actions/siteadminpanel.php:344 +#: actions/siteadminpanel.php:292 msgid "Randomly during Web hit" msgstr "" -#: actions/siteadminpanel.php:345 +#: actions/siteadminpanel.php:293 msgid "In a scheduled job" msgstr "" -#: actions/siteadminpanel.php:347 +#: actions/siteadminpanel.php:295 msgid "Data snapshots" msgstr "" -#: actions/siteadminpanel.php:348 +#: actions/siteadminpanel.php:296 msgid "When to send statistical data to status.net servers" msgstr "" -#: actions/siteadminpanel.php:353 +#: actions/siteadminpanel.php:301 msgid "Frequency" msgstr "" -#: actions/siteadminpanel.php:354 +#: actions/siteadminpanel.php:302 msgid "Snapshots will be sent once every N web hits" msgstr "" -#: actions/siteadminpanel.php:359 +#: actions/siteadminpanel.php:307 msgid "Report URL" msgstr "" -#: actions/siteadminpanel.php:360 +#: actions/siteadminpanel.php:308 msgid "Snapshots will be sent to this URL" msgstr "" -#: actions/siteadminpanel.php:367 +#: actions/siteadminpanel.php:315 msgid "Limits" msgstr "" -#: actions/siteadminpanel.php:370 +#: actions/siteadminpanel.php:318 msgid "Text limit" msgstr "" -#: actions/siteadminpanel.php:370 +#: actions/siteadminpanel.php:318 msgid "Maximum number of characters for notices." msgstr "" -#: actions/siteadminpanel.php:374 +#: actions/siteadminpanel.php:322 msgid "Dupe limit" msgstr "" -#: actions/siteadminpanel.php:374 +#: actions/siteadminpanel.php:322 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" -#: actions/siteadminpanel.php:388 actions/useradminpanel.php:313 -#, fuzzy -msgid "Save site settings" -msgstr "Nastavení" - #: actions/smssettings.php:58 #, fuzzy msgid "SMS settings" @@ -3473,17 +3889,27 @@ msgstr "" msgid "You are not subscribed to that profile." msgstr "Neodeslal jste nám profil" -#: actions/subedit.php:83 +#: actions/subedit.php:83 classes/Subscription.php:89 +#: classes/Subscription.php:116 #, 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:77 +msgid "This action only accepts POST requests." +msgstr "" -#: actions/subscribe.php:69 +#: actions/subscribe.php:107 +#, fuzzy +msgid "No such profile." +msgstr "Žádné takové oznámení." + +#: actions/subscribe.php:117 +#, fuzzy +msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." +msgstr "Neodeslal jste nám profil" + +#: actions/subscribe.php:145 #, fuzzy msgid "Subscribed" msgstr "Odebírat" @@ -3544,7 +3970,7 @@ msgstr "Toto jsou lidé, jejiž sdělením nasloucháte" msgid "These are the people whose notices %s listens to." msgstr "Toto jsou lidé, jejiž sdělením %s naslouchá" -#: actions/subscriptions.php:121 +#: actions/subscriptions.php:126 #, php-format msgid "" "You're not listening to anyone's notices right now, try subscribing to " @@ -3554,20 +3980,25 @@ msgid "" "automatically subscribe to people you already follow there." msgstr "" -#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#: actions/subscriptions.php:128 actions/subscriptions.php:132 #, fuzzy, php-format msgid "%s is not listening to anyone." msgstr "%1 od teď naslouchá tvým sdělením v %2" -#: actions/subscriptions.php:194 +#: actions/subscriptions.php:199 #, fuzzy msgid "Jabber" msgstr "Žádné Jabber ID." -#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:204 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "" +#: actions/tag.php:68 +#, fuzzy, php-format +msgid "Notices tagged with %1$s, page %2$d" +msgstr "Mikroblog od %s" + #: actions/tag.php:86 #, fuzzy, php-format msgid "Notice feed for tag %s (RSS 1.0)" @@ -3598,7 +4029,8 @@ msgstr "" msgid "User profile" msgstr "Uživatel nemá profil." -#: actions/tagother.php:81 lib/userprofile.php:102 +#: actions/tagother.php:81 actions/userauthorization.php:132 +#: lib/userprofile.php:102 msgid "Photo" msgstr "" @@ -3660,7 +4092,7 @@ msgstr "Nebylo vráceno žádné URL profilu od servu." msgid "Unsubscribed" msgstr "Odhlásit" -#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#: actions/updateprofile.php:62 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -3675,87 +4107,67 @@ msgstr "" msgid "User settings for this StatusNet site." msgstr "" -#: actions/useradminpanel.php:149 +#: actions/useradminpanel.php:148 msgid "Invalid bio limit. Must be numeric." msgstr "" -#: actions/useradminpanel.php:155 +#: actions/useradminpanel.php:154 msgid "Invalid welcome text. Max length is 255 characters." msgstr "" -#: actions/useradminpanel.php:165 +#: actions/useradminpanel.php:164 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 +#: actions/useradminpanel.php:217 lib/accountsettingsaction.php:108 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Profil" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:221 msgid "Bio Limit" msgstr "" -#: actions/useradminpanel.php:223 +#: actions/useradminpanel.php:222 msgid "Maximum length of a profile bio in characters." msgstr "" -#: actions/useradminpanel.php:231 +#: actions/useradminpanel.php:230 msgid "New users" msgstr "" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:234 msgid "New user welcome" msgstr "" -#: actions/useradminpanel.php:236 +#: actions/useradminpanel.php:235 msgid "Welcome text for new users (Max 255 chars)." msgstr "" -#: actions/useradminpanel.php:241 +#: actions/useradminpanel.php:240 #, fuzzy msgid "Default subscription" msgstr "Všechny odběry" -#: actions/useradminpanel.php:242 +#: actions/useradminpanel.php:241 #, fuzzy msgid "Automatically subscribe new users to this user." msgstr "Odběr autorizován" -#: actions/useradminpanel.php:251 +#: actions/useradminpanel.php:250 #, fuzzy msgid "Invitations" msgstr "Umístění" -#: actions/useradminpanel.php:256 +#: actions/useradminpanel.php:255 msgid "Invitations enabled" msgstr "" -#: actions/useradminpanel.php:258 +#: actions/useradminpanel.php:257 msgid "Whether to allow users to invite new users." msgstr "" -#: actions/useradminpanel.php:265 -msgid "Sessions" -msgstr "" - -#: actions/useradminpanel.php:270 -msgid "Handle sessions" -msgstr "" - -#: actions/useradminpanel.php:272 -msgid "Whether to handle sessions ourselves." -msgstr "" - -#: actions/useradminpanel.php:276 -msgid "Session debugging" -msgstr "" - -#: actions/useradminpanel.php:278 -msgid "Turn on debugging output for sessions." -msgstr "" - #: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Autorizovaný odběr" @@ -3771,38 +4183,38 @@ msgstr "" "sdělení tohoto uživatele. Pokud ne, ask to subscribe to somone's notices, " "klikněte na \"Zrušit\"" -#: actions/userauthorization.php:188 actions/version.php:165 +#: actions/userauthorization.php:196 actions/version.php:165 msgid "License" msgstr "Licence" -#: actions/userauthorization.php:209 +#: actions/userauthorization.php:217 msgid "Accept" msgstr "Přijmout" -#: actions/userauthorization.php:210 lib/subscribeform.php:115 +#: actions/userauthorization.php:218 lib/subscribeform.php:115 #: lib/subscribeform.php:139 #, fuzzy msgid "Subscribe to this user" msgstr "Odběr autorizován" -#: actions/userauthorization.php:211 +#: actions/userauthorization.php:219 msgid "Reject" msgstr "Odmítnout" -#: actions/userauthorization.php:212 +#: actions/userauthorization.php:220 #, fuzzy msgid "Reject this subscription" msgstr "Všechny odběry" -#: actions/userauthorization.php:225 +#: actions/userauthorization.php:232 msgid "No authorization request!" msgstr "Žádné potvrení!" -#: actions/userauthorization.php:247 +#: actions/userauthorization.php:254 msgid "Subscription authorized" msgstr "Odběr autorizován" -#: actions/userauthorization.php:249 +#: actions/userauthorization.php:256 #, fuzzy msgid "" "The subscription has been authorized, but no callback URL was passed. Check " @@ -3813,11 +4225,11 @@ msgstr "" "nápovědě jak správně postupovat při potvrzování odběru. Váš řetězec odběru " "je:" -#: actions/userauthorization.php:259 +#: actions/userauthorization.php:266 msgid "Subscription rejected" msgstr "Odběr odmítnut" -#: actions/userauthorization.php:261 +#: actions/userauthorization.php:268 #, fuzzy msgid "" "The subscription has been rejected, but no callback URL was passed. Check " @@ -3827,37 +4239,37 @@ 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 +#: actions/userauthorization.php:303 #, php-format msgid "Listener URI ‘%s’ not found here." msgstr "" -#: actions/userauthorization.php:301 +#: actions/userauthorization.php:308 #, php-format msgid "Listenee URI ‘%s’ is too long." msgstr "" -#: actions/userauthorization.php:307 +#: actions/userauthorization.php:314 #, php-format msgid "Listenee URI ‘%s’ is a local user." msgstr "" -#: actions/userauthorization.php:322 +#: actions/userauthorization.php:329 #, php-format msgid "Profile URL ‘%s’ is for a local user." msgstr "" -#: actions/userauthorization.php:338 +#: actions/userauthorization.php:345 #, php-format msgid "Avatar URL ‘%s’ is not valid." msgstr "" -#: actions/userauthorization.php:343 +#: actions/userauthorization.php:350 #, fuzzy, php-format msgid "Can’t read avatar URL ‘%s’." msgstr "Nelze přečíst adresu obrázku '%s'" -#: actions/userauthorization.php:348 +#: actions/userauthorization.php:355 #, fuzzy, php-format msgid "Wrong image type for avatar URL ‘%s’." msgstr "Neplatný typ obrázku pro '%s'" @@ -3877,6 +4289,11 @@ msgstr "" msgid "Enjoy your hotdog!" msgstr "" +#: actions/usergroups.php:64 +#, fuzzy, php-format +msgid "%1$s groups, page %2$d" +msgstr "Všechny odběry" + #: actions/usergroups.php:130 msgid "Search for more groups" msgstr "" @@ -3903,11 +4320,6 @@ msgid "" "Inc. and contributors." msgstr "" -#: actions/version.php:157 -#, fuzzy -msgid "StatusNet" -msgstr "Obrázek nahrán" - #: actions/version.php:161 msgid "Contributors" msgstr "" @@ -3939,12 +4351,7 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:195 -#, fuzzy -msgid "Name" -msgstr "Přezdívka" - -#: actions/version.php:196 lib/action.php:741 +#: actions/version.php:196 lib/action.php:747 #, fuzzy msgid "Version" msgstr "Osobní" @@ -3953,11 +4360,6 @@ msgstr "Osobní" msgid "Author(s)" msgstr "" -#: actions/version.php:198 lib/groupeditform.php:172 -#, fuzzy -msgid "Description" -msgstr "Odběry" - #: classes/File.php:144 #, php-format msgid "" @@ -4007,61 +4409,88 @@ msgstr "" msgid "Could not update message with new URI." msgstr "" -#: classes/Notice.php:171 +#: classes/Notice.php:157 #, php-format msgid "DB error inserting hashtag: %s" msgstr "" -#: classes/Notice.php:225 +#: classes/Notice.php:222 #, fuzzy msgid "Problem saving notice. Too long." msgstr "Problém při ukládání sdělení" -#: classes/Notice.php:229 +#: classes/Notice.php:226 #, fuzzy msgid "Problem saving notice. Unknown user." msgstr "Problém při ukládání sdělení" -#: classes/Notice.php:234 +#: classes/Notice.php:231 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: classes/Notice.php:240 +#: classes/Notice.php:237 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." msgstr "" -#: classes/Notice.php:246 +#: classes/Notice.php:243 msgid "You are banned from posting notices on this site." msgstr "" -#: classes/Notice.php:305 classes/Notice.php:330 +#: classes/Notice.php:309 classes/Notice.php:335 msgid "Problem saving notice." msgstr "Problém při ukládání sdělení" -#: classes/Notice.php:1052 -#, php-format -msgid "DB error inserting reply: %s" -msgstr "Chyba v DB při vkládání odpovědi: %s" +#: classes/Notice.php:882 +#, fuzzy +msgid "Problem saving group inbox." +msgstr "Problém při ukládání sdělení" -#: classes/Notice.php:1423 +#: classes/Notice.php:1407 #, php-format msgid "RT @%1$s %2$s" msgstr "" -#: classes/User.php:382 +#: classes/Subscription.php:66 lib/oauthstore.php:465 +msgid "You have been banned from subscribing." +msgstr "" + +#: classes/Subscription.php:70 +msgid "Already subscribed!" +msgstr "" + +#: classes/Subscription.php:74 +#, fuzzy +msgid "User has blocked you." +msgstr "Uživatel nemá profil." + +#: classes/Subscription.php:157 +#, fuzzy +msgid "Not subscribed!" +msgstr "Nepřihlášen!" + +#: classes/Subscription.php:163 +#, fuzzy +msgid "Couldn't delete self-subscription." +msgstr "Nelze smazat odebírání" + +#: classes/Subscription.php:179 lib/subs.php:69 +msgid "Couldn't delete subscription." +msgstr "Nelze smazat odebírání" + +#: classes/User.php:372 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "" -#: classes/User_group.php:380 +#: classes/User_group.php:423 #, fuzzy msgid "Could not create group." msgstr "Nelze uložin informace o obrázku" -#: classes/User_group.php:409 +#: classes/User_group.php:452 #, fuzzy msgid "Could not set group membership." msgstr "Nelze vytvořit odebírat" @@ -4105,135 +4534,130 @@ msgstr "%1 statusů na %2" msgid "Untitled page" msgstr "" -#: lib/action.php:427 +#: lib/action.php:433 msgid "Primary site navigation" msgstr "" -#: lib/action.php:433 +#: lib/action.php:439 msgid "Home" msgstr "Domů" -#: lib/action.php:433 +#: lib/action.php:439 msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:435 -#, fuzzy -msgid "Account" -msgstr "O nás" - -#: lib/action.php:435 +#: lib/action.php:441 msgid "Change your email, avatar, password, profile" msgstr "" -#: lib/action.php:438 +#: lib/action.php:444 msgid "Connect" msgstr "Připojit" -#: lib/action.php:438 +#: lib/action.php:444 #, fuzzy msgid "Connect to services" msgstr "Nelze přesměrovat na server: %s" -#: lib/action.php:442 +#: lib/action.php:448 #, fuzzy msgid "Change site configuration" msgstr "Odběry" -#: lib/action.php:446 lib/subgroupnav.php:105 +#: lib/action.php:452 lib/subgroupnav.php:105 msgid "Invite" msgstr "" -#: lib/action.php:447 lib/subgroupnav.php:106 +#: lib/action.php:453 lib/subgroupnav.php:106 #, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "" -#: lib/action.php:452 +#: lib/action.php:458 msgid "Logout" msgstr "Odhlásit" -#: lib/action.php:452 +#: lib/action.php:458 msgid "Logout from the site" msgstr "" -#: lib/action.php:457 +#: lib/action.php:463 #, fuzzy msgid "Create an account" msgstr "Vytvořit nový účet" -#: lib/action.php:460 +#: lib/action.php:466 msgid "Login to the site" msgstr "" -#: lib/action.php:463 lib/action.php:726 +#: lib/action.php:469 lib/action.php:732 msgid "Help" msgstr "Nápověda" -#: lib/action.php:463 +#: lib/action.php:469 msgid "Help me!" msgstr "Pomoci mi!" -#: lib/action.php:466 lib/searchaction.php:127 +#: lib/action.php:472 lib/searchaction.php:127 msgid "Search" msgstr "Hledat" -#: lib/action.php:466 +#: lib/action.php:472 msgid "Search for people or text" msgstr "" -#: lib/action.php:487 +#: lib/action.php:493 #, fuzzy msgid "Site notice" msgstr "Nové sdělení" -#: lib/action.php:553 +#: lib/action.php:559 msgid "Local views" msgstr "" -#: lib/action.php:619 +#: lib/action.php:625 #, fuzzy msgid "Page notice" msgstr "Nové sdělení" -#: lib/action.php:721 +#: lib/action.php:727 #, fuzzy msgid "Secondary site navigation" msgstr "Odběry" -#: lib/action.php:728 +#: lib/action.php:734 msgid "About" msgstr "O nás" -#: lib/action.php:730 +#: lib/action.php:736 msgid "FAQ" msgstr "FAQ" -#: lib/action.php:734 +#: lib/action.php:740 msgid "TOS" msgstr "" -#: lib/action.php:737 +#: lib/action.php:743 msgid "Privacy" msgstr "Soukromí" -#: lib/action.php:739 +#: lib/action.php:745 msgid "Source" msgstr "Zdroj" -#: lib/action.php:743 +#: lib/action.php:749 msgid "Contact" msgstr "Kontakt" -#: lib/action.php:745 +#: lib/action.php:751 msgid "Badge" msgstr "" -#: lib/action.php:773 +#: lib/action.php:779 msgid "StatusNet software license" msgstr "" -#: lib/action.php:776 +#: lib/action.php:782 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4242,12 +4666,12 @@ msgstr "" "**%%site.name%%** je služba microblogů, kterou pro vás poskytuje [%%site." "broughtby%%](%%site.broughtbyurl%%). " -#: lib/action.php:778 +#: lib/action.php:784 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** je služba mikroblogů." -#: lib/action.php:780 +#: lib/action.php:786 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4258,35 +4682,57 @@ msgstr "" "dostupná pod [GNU Affero General Public License](http://www.fsf.org/" "licensing/licenses/agpl-3.0.html)." -#: lib/action.php:794 +#: lib/action.php:801 #, fuzzy msgid "Site content license" msgstr "Nové sdělení" -#: lib/action.php:803 +#: lib/action.php:806 +#, php-format +msgid "Content and data of %1$s are private and confidential." +msgstr "" + +#: lib/action.php:811 +#, php-format +msgid "Content and data copyright by %1$s. All rights reserved." +msgstr "" + +#: lib/action.php:814 +msgid "Content and data copyright by contributors. All rights reserved." +msgstr "" + +#: lib/action.php:827 msgid "All " msgstr "" -#: lib/action.php:808 +#: lib/action.php:833 msgid "license." msgstr "" -#: lib/action.php:1102 +#: lib/action.php:1132 msgid "Pagination" msgstr "" -#: lib/action.php:1111 +#: lib/action.php:1141 #, fuzzy msgid "After" msgstr "« Novější" -#: lib/action.php:1119 +#: lib/action.php:1149 #, fuzzy msgid "Before" msgstr "Starší »" -#: lib/action.php:1167 -msgid "There was a problem with your session token." +#: lib/activity.php:382 +msgid "Can't handle remote content yet." +msgstr "" + +#: lib/activity.php:410 +msgid "Can't handle embedded XML content yet." +msgstr "" + +#: lib/activity.php:414 +msgid "Can't handle embedded Base64 content yet." msgstr "" #: lib/adminpanelaction.php:96 @@ -4319,11 +4765,105 @@ msgstr "Potvrzení emailové adresy" msgid "Design configuration" msgstr "Potvrzení emailové adresy" -#: lib/adminpanelaction.php:322 lib/adminpanelaction.php:327 +#: lib/adminpanelaction.php:322 +#, fuzzy +msgid "User configuration" +msgstr "Potvrzení emailové adresy" + +#: lib/adminpanelaction.php:327 +#, fuzzy +msgid "Access configuration" +msgstr "Potvrzení emailové adresy" + +#: lib/adminpanelaction.php:332 #, fuzzy msgid "Paths configuration" msgstr "Potvrzení emailové adresy" +#: lib/adminpanelaction.php:337 +#, fuzzy +msgid "Sessions configuration" +msgstr "Potvrzení emailové adresy" + +#: lib/apiauth.php:95 +msgid "API resource requires read-write access, but you only have read access." +msgstr "" + +#: lib/apiauth.php:273 +#, php-format +msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" +msgstr "" + +#: lib/applicationeditform.php:136 +msgid "Edit application" +msgstr "" + +#: lib/applicationeditform.php:184 +msgid "Icon for this application" +msgstr "" + +#: lib/applicationeditform.php:204 +#, fuzzy, php-format +msgid "Describe your application in %d characters" +msgstr "Popiš sebe a své zájmy ve 140 znacích" + +#: lib/applicationeditform.php:207 +#, fuzzy +msgid "Describe your application" +msgstr "Popiš sebe a své zájmy ve 140 znacích" + +#: lib/applicationeditform.php:216 +#, fuzzy +msgid "Source URL" +msgstr "Zdroj" + +#: lib/applicationeditform.php:218 +#, fuzzy +msgid "URL of the homepage of this application" +msgstr "Adresa vašich stránek, blogu nebo profilu na jiných stránkách." + +#: lib/applicationeditform.php:224 +msgid "Organization responsible for this application" +msgstr "" + +#: lib/applicationeditform.php:230 +#, fuzzy +msgid "URL for the homepage of the organization" +msgstr "Adresa vašich stránek, blogu nebo profilu na jiných stránkách." + +#: lib/applicationeditform.php:236 +msgid "URL to redirect to after authentication" +msgstr "" + +#: lib/applicationeditform.php:258 +msgid "Browser" +msgstr "" + +#: lib/applicationeditform.php:274 +msgid "Desktop" +msgstr "" + +#: lib/applicationeditform.php:275 +msgid "Type of application, browser or desktop" +msgstr "" + +#: lib/applicationeditform.php:297 +msgid "Read-only" +msgstr "" + +#: lib/applicationeditform.php:315 +msgid "Read-write" +msgstr "" + +#: lib/applicationeditform.php:316 +msgid "Default access for this application: read-only, or read-write" +msgstr "" + +#: lib/applicationlist.php:154 +#, fuzzy +msgid "Revoke" +msgstr "Odstranit" + #: lib/attachmentlist.php:87 msgid "Attachments" msgstr "" @@ -4344,12 +4884,12 @@ msgstr "" msgid "Tags for this attachment" msgstr "" -#: lib/authenticationplugin.php:182 lib/authenticationplugin.php:187 +#: lib/authenticationplugin.php:218 lib/authenticationplugin.php:223 #, fuzzy msgid "Password changing failed" msgstr "Heslo uloženo" -#: lib/authenticationplugin.php:197 +#: lib/authenticationplugin.php:233 #, fuzzy msgid "Password changing is not allowed" msgstr "Heslo uloženo" @@ -4505,86 +5045,96 @@ msgstr "Problém při ukládání sdělení" msgid "Specify the name of the user to subscribe to" msgstr "" -#: lib/command.php:554 +#: lib/command.php:554 lib/command.php:589 +#, fuzzy +msgid "No such user" +msgstr "Žádný takový uživatel." + +#: lib/command.php:561 #, php-format msgid "Subscribed to %s" msgstr "" -#: lib/command.php:575 +#: lib/command.php:582 lib/command.php:685 msgid "Specify the name of the user to unsubscribe from" msgstr "" -#: lib/command.php:582 +#: lib/command.php:595 #, php-format msgid "Unsubscribed from %s" msgstr "" -#: lib/command.php:600 lib/command.php:623 +#: lib/command.php:613 lib/command.php:636 msgid "Command not yet implemented." msgstr "" -#: lib/command.php:603 +#: lib/command.php:616 msgid "Notification off." msgstr "" -#: lib/command.php:605 +#: lib/command.php:618 msgid "Can't turn off notification." msgstr "" -#: lib/command.php:626 +#: lib/command.php:639 msgid "Notification on." msgstr "" -#: lib/command.php:628 +#: lib/command.php:641 msgid "Can't turn on notification." msgstr "" -#: lib/command.php:641 +#: lib/command.php:654 msgid "Login command is disabled" msgstr "" -#: lib/command.php:652 +#: lib/command.php:665 #, php-format msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "" -#: lib/command.php:668 +#: lib/command.php:692 +#, fuzzy, php-format +msgid "Unsubscribed %s" +msgstr "Odhlásit" + +#: lib/command.php:709 #, fuzzy msgid "You are not subscribed to anyone." msgstr "Neodeslal jste nám profil" -#: lib/command.php:670 +#: lib/command.php:711 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "Neodeslal jste nám profil" msgstr[1] "Neodeslal jste nám profil" msgstr[2] "" -#: lib/command.php:690 +#: lib/command.php:731 #, fuzzy msgid "No one is subscribed to you." msgstr "Vzdálený odběr" -#: lib/command.php:692 +#: lib/command.php:733 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "Vzdálený odběr" msgstr[1] "Vzdálený odběr" msgstr[2] "" -#: lib/command.php:712 +#: lib/command.php:753 #, fuzzy msgid "You are not a member of any groups." msgstr "Neodeslal jste nám profil" -#: lib/command.php:714 +#: lib/command.php:755 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "Neodeslal jste nám profil" msgstr[1] "Neodeslal jste nám profil" msgstr[2] "" -#: lib/command.php:728 +#: lib/command.php:769 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -4598,6 +5148,7 @@ msgid "" "d - direct message to user\n" "get - get last notice from user\n" "whois - get profile info on user\n" +"lose - force user to stop following you\n" "fav - add user's last notice as a 'fave'\n" "fav # - add notice with the given id as a 'fave'\n" "repeat # - repeat a notice with a given id\n" @@ -4625,20 +5176,20 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:131 +#: lib/common.php:136 #, fuzzy msgid "No configuration file found. " msgstr "Žádný potvrzující kód." -#: lib/common.php:132 +#: lib/common.php:137 msgid "I looked for configuration files in the following places: " msgstr "" -#: lib/common.php:134 +#: lib/common.php:139 msgid "You may wish to run the installer to fix this." msgstr "" -#: lib/common.php:135 +#: lib/common.php:140 msgid "Go to the installer." msgstr "" @@ -4654,6 +5205,15 @@ msgstr "" msgid "Updates by SMS" msgstr "" +#: lib/connectsettingsaction.php:120 +#, fuzzy +msgid "Connections" +msgstr "Připojit" + +#: lib/connectsettingsaction.php:121 +msgid "Authorized connected applications" +msgstr "" + #: lib/dberroraction.php:60 msgid "Database error" msgstr "" @@ -4844,12 +5404,12 @@ msgstr "" msgid "kB" msgstr "" -#: lib/jabber.php:202 +#: lib/jabber.php:220 #, php-format msgid "[%s]" msgstr "" -#: lib/jabber.php:385 +#: lib/jabber.php:400 #, php-format msgid "Unknown inbox source %d." msgstr "" @@ -5053,7 +5613,7 @@ msgid "" "users in conversation. People can send you messages for your eyes only." msgstr "" -#: lib/mailbox.php:227 lib/noticelist.php:477 +#: lib/mailbox.php:227 lib/noticelist.php:482 #, fuzzy msgid "from" msgstr " od " @@ -5174,60 +5734,56 @@ msgid "Do not share my location" msgstr "Nelze uložit profil" #: lib/noticeform.php:216 -msgid "Hide this info" -msgstr "" - -#: lib/noticeform.php:217 msgid "" "Sorry, retrieving your geo location is taking longer than expected, please " "try again later" msgstr "" -#: lib/noticelist.php:428 +#: lib/noticelist.php:429 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "" -#: lib/noticelist.php:429 +#: lib/noticelist.php:430 msgid "N" msgstr "" -#: lib/noticelist.php:429 +#: lib/noticelist.php:430 msgid "S" msgstr "" -#: lib/noticelist.php:430 +#: lib/noticelist.php:431 msgid "E" msgstr "" -#: lib/noticelist.php:430 +#: lib/noticelist.php:431 msgid "W" msgstr "" -#: lib/noticelist.php:436 +#: lib/noticelist.php:438 msgid "at" msgstr "" -#: lib/noticelist.php:531 +#: lib/noticelist.php:558 #, fuzzy msgid "in context" msgstr "Žádný obsah!" -#: lib/noticelist.php:556 +#: lib/noticelist.php:583 #, fuzzy msgid "Repeated by" msgstr "Vytvořit" -#: lib/noticelist.php:585 +#: lib/noticelist.php:610 msgid "Reply to this notice" msgstr "" -#: lib/noticelist.php:586 +#: lib/noticelist.php:611 #, fuzzy msgid "Reply" msgstr "odpověď" -#: lib/noticelist.php:628 +#: lib/noticelist.php:655 #, fuzzy msgid "Notice repeated" msgstr "Sdělení" @@ -5261,11 +5817,7 @@ msgstr "Chyba při vkládaní vzdáleného profilu" msgid "Duplicate notice" msgstr "Nové sdělení" -#: lib/oauthstore.php:466 lib/subs.php:48 -msgid "You have been banned from subscribing." -msgstr "" - -#: lib/oauthstore.php:491 +#: lib/oauthstore.php:490 msgid "Couldn't insert new subscription." msgstr "Nelze vložit odebírání" @@ -5281,19 +5833,19 @@ msgstr "Odpovědi" msgid "Favorites" msgstr "Oblíbené" -#: lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "" -#: lib/personalgroupnav.php:125 +#: lib/personalgroupnav.php:126 msgid "Your incoming messages" msgstr "" -#: lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 msgid "Outbox" msgstr "" -#: lib/personalgroupnav.php:130 +#: lib/personalgroupnav.php:131 msgid "Your sent messages" msgstr "" @@ -5374,6 +5926,10 @@ msgstr "Odstranit toto oznámení" msgid "Repeat this notice" msgstr "Odstranit toto oznámení" +#: lib/router.php:665 +msgid "No single user defined for single-user mode." +msgstr "" + #: lib/sandboxform.php:67 msgid "Sandbox" msgstr "" @@ -5446,37 +6002,6 @@ msgstr "Vzdálený odběr" msgid "Groups %s is a member of" msgstr "" -#: lib/subs.php:52 -msgid "Already subscribed!" -msgstr "" - -#: lib/subs.php:56 -#, fuzzy -msgid "User has blocked you." -msgstr "Uživatel nemá profil." - -#: lib/subs.php:63 -msgid "Could not subscribe." -msgstr "" - -#: lib/subs.php:82 -msgid "Could not subscribe other to you." -msgstr "" - -#: lib/subs.php:137 -#, fuzzy -msgid "Not subscribed!" -msgstr "Nepřihlášen!" - -#: lib/subs.php:142 -#, fuzzy -msgid "Couldn't delete self-subscription." -msgstr "Nelze smazat odebírání" - -#: lib/subs.php:158 -msgid "Couldn't delete subscription." -msgstr "Nelze smazat odebírání" - #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -5529,68 +6054,68 @@ msgstr "Upravit avatar" msgid "User actions" msgstr "Akce uživatele" -#: lib/userprofile.php:248 +#: lib/userprofile.php:251 #, fuzzy msgid "Edit profile settings" msgstr "Nastavené Profilu" -#: lib/userprofile.php:249 +#: lib/userprofile.php:252 msgid "Edit" msgstr "" -#: lib/userprofile.php:272 +#: lib/userprofile.php:275 msgid "Send a direct message to this user" msgstr "" -#: lib/userprofile.php:273 +#: lib/userprofile.php:276 msgid "Message" msgstr "Zpráva" -#: lib/userprofile.php:311 +#: lib/userprofile.php:314 msgid "Moderate" msgstr "" -#: lib/util.php:877 +#: lib/util.php:952 msgid "a few seconds ago" msgstr "před pár sekundami" -#: lib/util.php:879 +#: lib/util.php:954 msgid "about a minute ago" msgstr "asi před minutou" -#: lib/util.php:881 +#: lib/util.php:956 #, php-format msgid "about %d minutes ago" msgstr "asi před %d minutami" -#: lib/util.php:883 +#: lib/util.php:958 msgid "about an hour ago" msgstr "asi před hodinou" -#: lib/util.php:885 +#: lib/util.php:960 #, php-format msgid "about %d hours ago" msgstr "asi před %d hodinami" -#: lib/util.php:887 +#: lib/util.php:962 msgid "about a day ago" msgstr "asi přede dnem" -#: lib/util.php:889 +#: lib/util.php:964 #, php-format msgid "about %d days ago" msgstr "před %d dny" -#: lib/util.php:891 +#: lib/util.php:966 msgid "about a month ago" msgstr "asi před měsícem" -#: lib/util.php:893 +#: lib/util.php:968 #, php-format msgid "about %d months ago" msgstr "asi před %d mesíci" -#: lib/util.php:895 +#: lib/util.php:970 msgid "about a year ago" msgstr "asi před rokem" @@ -5604,7 +6129,7 @@ msgstr "Stránka není platnou URL." msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "" -#: scripts/xmppdaemon.php:301 +#: lib/xmppmanager.php:402 #, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "" diff --git a/locale/de/LC_MESSAGES/statusnet.po b/locale/de/LC_MESSAGES/statusnet.po index d8572b2447..053187a860 100644 --- a/locale/de/LC_MESSAGES/statusnet.po +++ b/locale/de/LC_MESSAGES/statusnet.po @@ -3,6 +3,7 @@ # Author@translatewiki.net: Bavatar # Author@translatewiki.net: Lutzgh # Author@translatewiki.net: March +# Author@translatewiki.net: McDutchie # Author@translatewiki.net: Pill # Author@translatewiki.net: Umherirrender # -- @@ -12,17 +13,70 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-01-13 22:04+0000\n" -"PO-Revision-Date: 2010-01-13 22:04:57+0000\n" +"POT-Creation-Date: 2010-02-24 23:49+0000\n" +"PO-Revision-Date: 2010-02-24 23:50:21+0000\n" "Language-Team: German\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha (r61027); Translate extension (2010-01-04)\n" +"X-Generator: MediaWiki 1.17alpha (r62925); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: actions/accessadminpanel.php:54 lib/adminpanelaction.php:326 +msgid "Access" +msgstr "Zugang" + +#: actions/accessadminpanel.php:65 +msgid "Site access settings" +msgstr "Zugangseinstellungen speichern" + +#: actions/accessadminpanel.php:158 +msgid "Registration" +msgstr "Registrieren" + +#: actions/accessadminpanel.php:161 +msgid "Private" +msgstr "Privat" + +#: actions/accessadminpanel.php:163 +msgid "Prohibit anonymous users (not logged in) from viewing site?" +msgstr "" +"Anonymen (nicht eingeloggten) Nutzern das Betrachten der Seite verbieten?" + +#: actions/accessadminpanel.php:167 +msgid "Invite only" +msgstr "Nur auf Einladung" + +#: actions/accessadminpanel.php:169 +msgid "Make registration invitation only." +msgstr "Registrierung nur bei vorheriger Einladung erlauben." + +#: actions/accessadminpanel.php:173 +msgid "Closed" +msgstr "Geschlossen" + +#: actions/accessadminpanel.php:175 +msgid "Disable new registrations." +msgstr "Neuregistrierungen deaktivieren." + +#: actions/accessadminpanel.php:189 actions/designadminpanel.php:586 +#: actions/emailsettings.php:195 actions/imsettings.php:163 +#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 +#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 +#: actions/siteadminpanel.php:336 actions/smssettings.php:181 +#: actions/subscriptions.php:208 actions/tagother.php:154 +#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 lib/designsettings.php:256 +#: lib/groupeditform.php:202 +msgid "Save" +msgstr "Speichern" + +#: actions/accessadminpanel.php:189 +msgid "Save access settings" +msgstr "Zugangs-Einstellungen speichern" + #: actions/all.php:63 actions/public.php:97 actions/replies.php:92 #: actions/showfavorites.php:137 actions/tag.php:51 msgid "No such page" @@ -37,25 +91,29 @@ msgstr "Seite nicht vorhanden" #: 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:144 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apistatusesupdate.php:148 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:78 #: actions/apitimelinehome.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/otp.php:76 #: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154 -#: actions/replies.php:73 actions/repliesrss.php:38 +#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 #: 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:302 lib/command.php:355 #: lib/command.php:401 lib/command.php:462 lib/command.php:518 #: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 -#: lib/subs.php:34 lib/subs.php:125 msgid "No such user." msgstr "Unbekannter Benutzer." +#: actions/all.php:84 +#, php-format +msgid "%1$s and friends, page %2$d" +msgstr "%1$s und Freunde, Seite% 2$d" + #: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 -#: actions/apitimelinefriends.php:115 actions/apitimelinehome.php:115 +#: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" @@ -103,7 +161,7 @@ msgstr "" "posten](%%%%action.newnotice%%%%?status_textarea=%s) um seine Aufmerksamkeit " "zu erregen." -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211 #, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " @@ -117,8 +175,8 @@ msgstr "" msgid "You and friends" msgstr "Du und Freunde" -#: actions/allrss.php:119 actions/apitimelinefriends.php:122 -#: actions/apitimelinehome.php:122 +#: actions/allrss.php:119 actions/apitimelinefriends.php:119 +#: actions/apitimelinehome.php:120 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Aktualisierungen von %1$s und Freunden auf %2$s!" @@ -128,23 +186,23 @@ msgstr "Aktualisierungen von %1$s und Freunden auf %2$s!" #: actions/apiaccountupdateprofile.php:97 #: actions/apiaccountupdateprofilebackgroundimage.php:94 #: actions/apiaccountupdateprofilecolors.php:118 -#: 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:136 actions/apigroupismember.php:114 -#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 -#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 -#: actions/apigroupmembership.php:106 actions/apigroupshow.php:105 -#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 -#: actions/apistatusesretweets.php:112 actions/apistatusesshow.php:108 -#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93 -#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:146 -#: actions/apitimelinefriends.php:156 actions/apitimelinegroup.php:150 -#: actions/apitimelinehome.php:156 actions/apitimelinementions.php:151 -#: actions/apitimelinepublic.php:131 actions/apitimelineretweetedbyme.php:122 +#: actions/apiaccountverifycredentials.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:128 actions/apigroupcreate.php:136 +#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 +#: actions/apigroupleave.php:141 actions/apigrouplist.php:132 +#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 +#: actions/apigroupshow.php:115 actions/apihelptest.php:88 +#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 +#: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 #: actions/apitimelineretweetedtome.php:121 -#: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141 -#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 +#: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 +#: actions/apitimelineuser.php:207 actions/apiusershow.php:101 msgid "API method not found." msgstr "API-Methode nicht gefunden." @@ -158,7 +216,7 @@ msgstr "API-Methode nicht gefunden." #: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 #: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 #: actions/apigroupleave.php:91 actions/apistatusesretweet.php:65 -#: actions/apistatusesupdate.php:114 +#: actions/apistatusesupdate.php:118 msgid "This method requires a POST." msgstr "Diese Methode benötigt ein POST." @@ -187,8 +245,9 @@ msgstr "Konnte Profil nicht speichern." #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:97 -#: actions/apistatusesupdate.php:127 actions/avatarsettings.php:257 -#: actions/designadminpanel.php:122 actions/newnotice.php:94 +#: actions/apistatusesupdate.php:131 actions/avatarsettings.php:257 +#: actions/designadminpanel.php:122 actions/editapplication.php:118 +#: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 #, php-format msgid "" @@ -305,11 +364,11 @@ msgstr "Du kannst dich nicht selbst entfolgen!" msgid "Two user ids or screen_names must be supplied." msgstr "Zwei IDs oder Benutzernamen müssen angegeben werden." -#: actions/apifriendshipsshow.php:135 +#: actions/apifriendshipsshow.php:134 msgid "Could not determine source user." msgstr "Konnte öffentlichen Stream nicht abrufen." -#: actions/apifriendshipsshow.php:143 +#: actions/apifriendshipsshow.php:142 msgid "Could not find target user." msgstr "Konnte keine Statusmeldungen finden." @@ -333,7 +392,8 @@ msgstr "Nutzername wird bereits verwendet. Suche dir einen anderen aus." msgid "Not a valid nickname." msgstr "Ungültiger Nutzername." -#: actions/apigroupcreate.php:196 actions/editgroup.php:195 +#: actions/apigroupcreate.php:196 actions/editapplication.php:215 +#: actions/editgroup.php:195 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:217 msgid "Homepage is not a valid URL." @@ -346,7 +406,8 @@ msgstr "" msgid "Full name is too long (max 255 chars)." msgstr "Der vollständige Name ist zu lang (maximal 255 Zeichen)." -#: actions/apigroupcreate.php:213 +#: actions/apigroupcreate.php:213 actions/editapplication.php:190 +#: actions/newapplication.php:172 #, php-format msgid "Description is too long (max %d chars)." msgstr "Die Beschreibung ist zu lang (max. %d Zeichen)." @@ -382,7 +443,7 @@ msgstr "Alias kann nicht das gleiche wie der Spitznamen sein." #: actions/apigroupismember.php:95 actions/apigroupjoin.php:104 #: actions/apigroupleave.php:104 actions/apigroupmembership.php:91 -#: actions/apigroupshow.php:90 actions/apitimelinegroup.php:91 +#: actions/apigroupshow.php:82 actions/apitimelinegroup.php:91 msgid "Group not found!" msgstr "Gruppe nicht gefunden!" @@ -404,9 +465,9 @@ msgid "You are not a member of this group." msgstr "Du bist kein Mitglied dieser Gruppe." #: actions/apigroupleave.php:124 actions/leavegroup.php:119 -#, fuzzy, php-format +#, php-format msgid "Could not remove user %1$s from group %2$s." -msgstr "Konnte Benutzer %s nicht aus der Gruppe %s entfernen." +msgstr "Konnte Benutzer %1$s nicht aus der Gruppe %2$s entfernen." #: actions/apigrouplist.php:95 #, php-format @@ -423,6 +484,114 @@ msgstr "%s Gruppen" msgid "groups on %s" msgstr "Gruppen von %s" +#: actions/apioauthauthorize.php:101 +msgid "No oauth_token parameter provided." +msgstr "" + +#: actions/apioauthauthorize.php:106 +#, fuzzy +msgid "Invalid token." +msgstr "Ungültige Größe." + +#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 +#: actions/deletenotice.php:157 actions/disfavor.php:74 +#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54 +#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupunblock.php:66 actions/imsettings.php:206 +#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 +#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 +#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135 +#: actions/othersettings.php:145 actions/passwordsettings.php:138 +#: actions/profilesettings.php:194 actions/recoverpassword.php:337 +#: actions/register.php:165 actions/remotesubscribe.php:77 +#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 +#: actions/subscribe.php:86 actions/tagother.php:166 +#: 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/apioauthauthorize.php:135 +msgid "Invalid nickname / password!" +msgstr "Benutzername oder Passwort falsch." + +#: actions/apioauthauthorize.php:159 +#, fuzzy +msgid "Database error deleting OAuth application user." +msgstr "Fehler bei den Nutzereinstellungen." + +#: actions/apioauthauthorize.php:185 +#, fuzzy +msgid "Database error inserting OAuth application user." +msgstr "Datenbankfehler beim Einfügen des Hashtags: %s" + +#: actions/apioauthauthorize.php:214 +#, php-format +msgid "" +"The request token %s has been authorized. Please exchange it for an access " +"token." +msgstr "" + +#: actions/apioauthauthorize.php:227 +#, php-format +msgid "The request token %s has been denied and revoked." +msgstr "" + +#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 +#: actions/designadminpanel.php:103 actions/editapplication.php:139 +#: actions/emailsettings.php:256 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/newapplication.php:121 +#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 +#: actions/smssettings.php:248 lib/designsettings.php:304 +msgid "Unexpected form submission." +msgstr "Unerwartete Formulareingabe." + +#: actions/apioauthauthorize.php:259 +msgid "An application would like to connect to your account" +msgstr "" + +#: actions/apioauthauthorize.php:276 +msgid "Allow or deny access" +msgstr "" + +#: actions/apioauthauthorize.php:292 +#, php-format +msgid "" +"The application %1$s by %2$s would like " +"the ability to %3$s your %4$s account data. You should only " +"give access to your %4$s account to third parties you trust." +msgstr "" + +#: actions/apioauthauthorize.php:310 lib/action.php:441 +msgid "Account" +msgstr "Konto" + +#: actions/apioauthauthorize.php:313 actions/login.php:230 +#: actions/profilesettings.php:106 actions/register.php:424 +#: actions/showgroup.php:236 actions/tagother.php:94 +#: actions/userauthorization.php:145 lib/groupeditform.php:152 +#: lib/userprofile.php:131 +msgid "Nickname" +msgstr "Nutzername" + +#: actions/apioauthauthorize.php:316 actions/login.php:233 +#: actions/register.php:429 lib/accountsettingsaction.php:116 +msgid "Password" +msgstr "Passwort" + +#: actions/apioauthauthorize.php:328 +msgid "Deny" +msgstr "" + +#: actions/apioauthauthorize.php:334 +#, fuzzy +msgid "Allow" +msgstr "Alle" + +#: actions/apioauthauthorize.php:351 +msgid "Allow or deny access to your account information." +msgstr "" + #: actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." msgstr "Diese Methode benötigt ein POST oder DELETE." @@ -452,18 +621,18 @@ msgstr "Status gelöscht." msgid "No status with that ID found." msgstr "Keine Nachricht mit dieser ID gefunden." -#: actions/apistatusesupdate.php:157 actions/newnotice.php:155 +#: actions/apistatusesupdate.php:161 actions/newnotice.php:155 #: lib/mailhandler.php:60 #, php-format msgid "That's too long. Max notice size is %d chars." msgstr "" "Das war zu lang. Die Länge einer Nachricht ist auf %d Zeichen beschränkt." -#: actions/apistatusesupdate.php:198 +#: actions/apistatusesupdate.php:202 msgid "Not found" msgstr "Nicht gefunden" -#: actions/apistatusesupdate.php:221 actions/newnotice.php:178 +#: actions/apistatusesupdate.php:225 actions/newnotice.php:178 #, php-format msgid "Max notice size is %d chars, including attachment URL." msgstr "" @@ -479,7 +648,7 @@ msgstr "Bildformat wird nicht unterstützt." msgid "%1$s / Favorites from %2$s" msgstr "%s / Favoriten von %s" -#: actions/apitimelinefavorites.php:120 +#: actions/apitimelinefavorites.php:117 #, fuzzy, php-format msgid "%1$s updates favorited by %2$s / %2$s." msgstr "%s Aktualisierung in den Favoriten von %s / %s." @@ -490,7 +659,7 @@ msgstr "%s Aktualisierung in den Favoriten von %s / %s." msgid "%s timeline" msgstr "%s Zeitleiste" -#: actions/apitimelinegroup.php:117 actions/apitimelineuser.php:126 +#: actions/apitimelinegroup.php:114 actions/apitimelineuser.php:126 #: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" @@ -506,27 +675,22 @@ msgstr "%1$s / Aktualisierungen erwähnen %2$s" 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/apitimelinepublic.php:107 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "%s öffentliche Zeitleiste" -#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "%s Nachrichten von allen!" -#: actions/apitimelineretweetedbyme.php:112 -#, php-format -msgid "Repeated by %s" -msgstr "Von %s wiederholt" - #: actions/apitimelineretweetedtome.php:111 #, fuzzy, php-format msgid "Repeated to %s" msgstr "Antworten an %s" -#: actions/apitimelineretweetsofme.php:112 +#: actions/apitimelineretweetsofme.php:114 #, fuzzy, php-format msgid "Repeats of %s" msgstr "Antworten an %s" @@ -536,7 +700,7 @@ msgstr "Antworten an %s" msgid "Notices tagged with %s" msgstr "Nachrichten, die mit %s getagt sind" -#: actions/apitimelinetag.php:108 actions/tagrss.php:64 +#: actions/apitimelinetag.php:104 actions/tagrss.php:64 #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Aktualisierungen mit %1$s getagt auf %2$s!" @@ -597,8 +761,8 @@ msgstr "Original" msgid "Preview" msgstr "Vorschau" -#: actions/avatarsettings.php:149 lib/deleteuserform.php:66 -#: lib/noticelist.php:611 +#: actions/avatarsettings.php:149 actions/showapplication.php:252 +#: lib/deleteuserform.php:66 lib/noticelist.php:637 msgid "Delete" msgstr "Löschen" @@ -610,29 +774,6 @@ msgstr "Hochladen" msgid "Crop" msgstr "Zuschneiden" -#: actions/avatarsettings.php:268 actions/deletenotice.php:157 -#: actions/disfavor.php:74 actions/emailsettings.php:238 actions/favor.php:75 -#: actions/geocode.php:50 actions/groupblock.php:66 actions/grouplogo.php:309 -#: actions/groupunblock.php:66 actions/imsettings.php:206 -#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 -#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 -#: actions/othersettings.php:145 actions/passwordsettings.php:138 -#: actions/profilesettings.php:194 actions/recoverpassword.php:337 -#: actions/register.php:165 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 -#: actions/subscribe.php:46 actions/tagother.php:166 -#: 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/avatarsettings.php:281 actions/designadminpanel.php:103 -#: actions/emailsettings.php:256 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/avatarsettings.php:328 msgid "Pick a square area of the image to be your avatar" msgstr "" @@ -669,8 +810,9 @@ msgid "" "will not be notified of any @-replies from them." msgstr "" -#: actions/block.php:143 actions/deletenotice.php:145 -#: actions/deleteuser.php:147 actions/groupblock.php:178 +#: actions/block.php:143 actions/deleteapplication.php:153 +#: actions/deletenotice.php:145 actions/deleteuser.php:147 +#: actions/groupblock.php:178 msgid "No" msgstr "Nein" @@ -678,13 +820,13 @@ msgstr "Nein" msgid "Do not block this user" msgstr "Diesen Benutzer freigeben" -#: actions/block.php:144 actions/deletenotice.php:146 -#: actions/deleteuser.php:148 actions/groupblock.php:179 -#: lib/repeatform.php:132 +#: actions/block.php:144 actions/deleteapplication.php:158 +#: actions/deletenotice.php:146 actions/deleteuser.php:148 +#: actions/groupblock.php:179 lib/repeatform.php:132 msgid "Yes" msgstr "Ja" -#: actions/block.php:144 actions/groupmembers.php:346 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80 msgid "Block this user" msgstr "Diesen Benutzer blockieren" @@ -767,7 +909,8 @@ msgid "Couldn't delete email confirmation." msgstr "Konnte E-Mail-Bestätigung nicht löschen." #: actions/confirmaddress.php:144 -msgid "Confirm Address" +#, fuzzy +msgid "Confirm address" msgstr "Adresse bestätigen" #: actions/confirmaddress.php:159 @@ -784,10 +927,54 @@ msgstr "Unterhaltung" msgid "Notices" msgstr "Nachrichten" +#: actions/deleteapplication.php:63 +#, fuzzy +msgid "You must be logged in to delete an application." +msgstr "Du musst angemeldet sein, um eine Gruppe zu bearbeiten." + +#: actions/deleteapplication.php:71 +#, fuzzy +msgid "Application not found." +msgstr "Nachricht hat kein Profil" + +#: actions/deleteapplication.php:78 actions/editapplication.php:77 +#: actions/showapplication.php:94 +#, fuzzy +msgid "You are not the owner of this application." +msgstr "Du bist kein Mitglied dieser Gruppe." + +#: actions/deleteapplication.php:102 actions/editapplication.php:127 +#: actions/newapplication.php:110 actions/showapplication.php:118 +#: lib/action.php:1197 +msgid "There was a problem with your session token." +msgstr "Es gab ein Problem mit deinem Sessiontoken." + +#: actions/deleteapplication.php:123 actions/deleteapplication.php:147 +#, fuzzy +msgid "Delete application" +msgstr "Unbekannte Nachricht." + +#: actions/deleteapplication.php:149 +msgid "" +"Are you sure you want to delete this application? This will clear all data " +"about the application from the database, including all existing user " +"connections." +msgstr "" + +#: actions/deleteapplication.php:156 +#, fuzzy +msgid "Do not delete this application" +msgstr "Diese Nachricht nicht löschen" + +#: actions/deleteapplication.php:160 +#, fuzzy +msgid "Delete this application" +msgstr "Nachricht löschen" + #: 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/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 #: lib/adminpanelaction.php:72 lib/profileformaction.php:63 #: lib/settingsaction.php:72 @@ -818,7 +1005,7 @@ msgstr "Bist du sicher, dass du diese Nachricht löschen möchtest?" msgid "Do not delete this notice" msgstr "Diese Nachricht nicht löschen" -#: actions/deletenotice.php:146 lib/noticelist.php:611 +#: actions/deletenotice.php:146 lib/noticelist.php:637 msgid "Delete this notice" msgstr "Nachricht löschen" @@ -948,16 +1135,6 @@ msgstr "Standard-Design wiederherstellen" msgid "Reset back to default" msgstr "Standard wiederherstellen" -#: actions/designadminpanel.php:586 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 -#: actions/pathsadminpanel.php:324 actions/profilesettings.php:174 -#: actions/siteadminpanel.php:388 actions/smssettings.php:181 -#: actions/subscriptions.php:203 actions/tagother.php:154 -#: actions/useradminpanel.php:313 lib/designsettings.php:256 -#: lib/groupeditform.php:202 -msgid "Save" -msgstr "Speichern" - #: actions/designadminpanel.php:587 lib/designsettings.php:257 msgid "Save design" msgstr "Design speichern" @@ -970,10 +1147,88 @@ msgstr "Diese Nachricht ist kein Favorit!" msgid "Add to favorites" msgstr "Zu Favoriten hinzufügen" -#: actions/doc.php:69 -msgid "No such document." +#: actions/doc.php:158 +#, fuzzy, php-format +msgid "No such document \"%s\"" msgstr "Unbekanntes Dokument." +#: actions/editapplication.php:54 +#, fuzzy +msgid "Edit Application" +msgstr "Sonstige Optionen" + +#: actions/editapplication.php:66 +#, fuzzy +msgid "You must be logged in to edit an application." +msgstr "Du musst angemeldet sein, um eine Gruppe zu bearbeiten." + +#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:166 +#: actions/showapplication.php:87 +#, fuzzy +msgid "No such application." +msgstr "Unbekannte Nachricht." + +#: actions/editapplication.php:161 +#, fuzzy +msgid "Use this form to edit your application." +msgstr "Benutze dieses Formular, um die Gruppe zu bearbeiten." + +#: actions/editapplication.php:177 actions/newapplication.php:159 +#, fuzzy +msgid "Name is required." +msgstr "Gleiches Passwort wie zuvor. Pflichteingabe." + +#: actions/editapplication.php:180 actions/newapplication.php:165 +#, fuzzy +msgid "Name is too long (max 255 chars)." +msgstr "Der vollständige Name ist zu lang (maximal 255 Zeichen)." + +#: actions/editapplication.php:183 actions/newapplication.php:162 +#, fuzzy +msgid "Name already in use. Try another one." +msgstr "Nutzername wird bereits verwendet. Suche dir einen anderen aus." + +#: actions/editapplication.php:186 actions/newapplication.php:168 +#, fuzzy +msgid "Description is required." +msgstr "Beschreibung" + +#: actions/editapplication.php:194 +msgid "Source URL is too long." +msgstr "" + +#: actions/editapplication.php:200 actions/newapplication.php:185 +#, fuzzy +msgid "Source URL is not valid." +msgstr "" +"Homepage ist keine gültige URL. URL’s müssen ein Präfix wie http enthalten." + +#: actions/editapplication.php:203 actions/newapplication.php:188 +msgid "Organization is required." +msgstr "" + +#: actions/editapplication.php:206 actions/newapplication.php:191 +#, fuzzy +msgid "Organization is too long (max 255 chars)." +msgstr "Der eingegebene Aufenthaltsort ist zu lang (maximal 255 Zeichen)." + +#: actions/editapplication.php:209 actions/newapplication.php:194 +msgid "Organization homepage is required." +msgstr "" + +#: actions/editapplication.php:218 actions/newapplication.php:206 +msgid "Callback is too long." +msgstr "" + +#: actions/editapplication.php:225 actions/newapplication.php:215 +msgid "Callback URL is not valid." +msgstr "" + +#: actions/editapplication.php:258 +#, fuzzy +msgid "Could not update application." +msgstr "Konnte Gruppe nicht aktualisieren." + #: actions/editgroup.php:56 #, php-format msgid "Edit %s group" @@ -1002,7 +1257,7 @@ msgstr "Die Beschreibung ist zu lang (max. %d Zeichen)." msgid "Could not update group." msgstr "Konnte Gruppe nicht aktualisieren." -#: actions/editgroup.php:259 classes/User_group.php:390 +#: actions/editgroup.php:259 classes/User_group.php:433 msgid "Could not create aliases." msgstr "Konnte keinen Favoriten erstellen." @@ -1044,7 +1299,8 @@ msgstr "" "(auch den Spam-Ordner) auf eine Nachricht mit weiteren Instruktionen." #: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 +#: actions/smssettings.php:126 lib/applicationeditform.php:331 +#: lib/applicationeditform.php:332 msgid "Cancel" msgstr "Abbrechen" @@ -1129,7 +1385,7 @@ msgid "Cannot normalize that email address" msgstr "Konnte diese E-Mail-Adresse nicht normalisieren" #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:157 +#: actions/siteadminpanel.php:143 msgid "Not a valid email address." msgstr "Ungültige E-Mail-Adresse." @@ -1141,7 +1397,7 @@ msgstr "Dies ist bereits deine E-Mail-Adresse." msgid "That email address already belongs to another user." msgstr "Diese E-Mail-Adresse gehört einem anderen Nutzer." -#: actions/emailsettings.php:353 actions/imsettings.php:317 +#: actions/emailsettings.php:353 actions/imsettings.php:319 #: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." msgstr "Konnte keinen Bestätigungscode einfügen." @@ -1203,7 +1459,7 @@ msgstr "Diese Nachricht ist bereits ein Favorit!" msgid "Disfavor favorite" msgstr "Aus Favoriten entfernen" -#: actions/favorited.php:65 lib/popularnoticesection.php:88 +#: actions/favorited.php:65 lib/popularnoticesection.php:91 #: lib/publicgroupnav.php:93 msgid "Popular notices" msgstr "Beliebte Nachrichten" @@ -1345,7 +1601,7 @@ msgstr "Dieser Nutzer ist bereits von der Gruppe gesperrt" msgid "User is not a member of group." msgstr "Nutzer ist kein Mitglied dieser Gruppe." -#: actions/groupblock.php:136 actions/groupmembers.php:314 +#: actions/groupblock.php:136 actions/groupmembers.php:316 msgid "Block user from group" msgstr "Benutzerzugang zu der Gruppe blockieren" @@ -1440,23 +1696,23 @@ msgstr "%s Gruppen-Mitglieder, Seite %d" msgid "A list of the users in this group." msgstr "Liste der Benutzer in dieser Gruppe." -#: actions/groupmembers.php:175 lib/action.php:442 lib/groupnav.php:107 +#: actions/groupmembers.php:175 lib/action.php:448 lib/groupnav.php:107 msgid "Admin" msgstr "Admin" -#: actions/groupmembers.php:346 lib/blockform.php:69 +#: actions/groupmembers.php:348 lib/blockform.php:69 msgid "Block" msgstr "Blockieren" -#: actions/groupmembers.php:441 +#: actions/groupmembers.php:443 msgid "Make user an admin of the group" msgstr "Benutzer zu einem Admin dieser Gruppe ernennen" -#: actions/groupmembers.php:473 +#: actions/groupmembers.php:475 msgid "Make Admin" msgstr "Zum Admin ernennen" -#: actions/groupmembers.php:473 +#: actions/groupmembers.php:475 msgid "Make this user an admin" msgstr "Diesen Benutzer zu einem Admin ernennen" @@ -1636,6 +1892,11 @@ msgstr "" msgid "That is not your Jabber ID." msgstr "Dies ist nicht deine JabberID." +#: actions/inbox.php:59 +#, fuzzy, php-format +msgid "Inbox for %1$s - page %2$d" +msgstr "Posteingang von %s" + #: actions/inbox.php:62 #, php-format msgid "Inbox for %s" @@ -1723,7 +1984,7 @@ msgstr "" "Wenn du möchtest kannst du zu der Einladung eine persönliche Nachricht " "anfügen." -#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:237 +#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:236 msgid "Send" msgstr "Senden" @@ -1823,7 +2084,7 @@ msgid "Error setting user. You are probably not authorized." msgstr "" "Fehler beim setzen des Benutzers. Du bist vermutlich nicht autorisiert." -#: actions/login.php:188 actions/login.php:241 lib/action.php:460 +#: actions/login.php:188 actions/login.php:241 lib/action.php:466 #: lib/logingroupnav.php:79 msgid "Login" msgstr "Anmelden" @@ -1832,17 +2093,6 @@ msgstr "Anmelden" msgid "Login to site" msgstr "An Seite anmelden" -#: actions/login.php:230 actions/profilesettings.php:106 -#: actions/register.php:424 actions/showgroup.php:236 actions/tagother.php:94 -#: lib/groupeditform.php:152 lib/userprofile.php:131 -msgid "Nickname" -msgstr "Nutzername" - -#: actions/login.php:233 actions/register.php:429 -#: lib/accountsettingsaction.php:116 -msgid "Password" -msgstr "Passwort" - #: actions/login.php:236 actions/register.php:478 msgid "Remember me" msgstr "Anmeldedaten merken" @@ -1872,21 +2122,21 @@ msgstr "" "Melde dich mit Nutzernamen und Passwort an. Du hast noch keinen Nutzernamen? " "[Registriere](%%action.register%%) ein neues Konto." -#: actions/makeadmin.php:91 +#: actions/makeadmin.php:92 msgid "Only an admin can make another user an admin." msgstr "Nur Administratoren können andere Nutzer zu Administratoren ernennen." -#: actions/makeadmin.php:95 +#: actions/makeadmin.php:96 #, fuzzy, php-format msgid "%1$s is already an admin for group \"%2$s\"." msgstr "%s ist bereits ein Administrator der Gruppe „%s“." -#: actions/makeadmin.php:132 +#: actions/makeadmin.php:133 #, fuzzy, php-format msgid "Can't get membership record for %1$s in group %2$s." msgstr "Konnte Benutzer %s aus der Gruppe %s nicht entfernen" -#: actions/makeadmin.php:145 +#: actions/makeadmin.php:146 #, fuzzy, php-format msgid "Can't make %1$s an admin for group %2$s." msgstr "Konnte %s nicht zum Administrator der Gruppe %s machen" @@ -1895,6 +2145,30 @@ msgstr "Konnte %s nicht zum Administrator der Gruppe %s machen" msgid "No current status" msgstr "Kein aktueller Status" +#: actions/newapplication.php:52 +#, fuzzy +msgid "New Application" +msgstr "Unbekannte Nachricht." + +#: actions/newapplication.php:64 +#, fuzzy +msgid "You must be logged in to register an application." +msgstr "Du musst angemeldet sein, um eine Gruppe zu erstellen." + +#: actions/newapplication.php:143 +#, fuzzy +msgid "Use this form to register a new application." +msgstr "Benutzer dieses Formular, um eine neue Gruppe zu erstellen." + +#: actions/newapplication.php:176 +msgid "Source URL is required." +msgstr "" + +#: actions/newapplication.php:258 actions/newapplication.php:267 +#, fuzzy +msgid "Could not create application." +msgstr "Konnte keinen Favoriten erstellen." + #: actions/newgroup.php:53 msgid "New group" msgstr "Neue Gruppe" @@ -2005,6 +2279,51 @@ msgstr "Stups abgeschickt" msgid "Nudge sent!" msgstr "Stups gesendet!" +#: actions/oauthappssettings.php:59 +#, fuzzy +msgid "You must be logged in to list your applications." +msgstr "Du musst angemeldet sein, um eine Gruppe zu bearbeiten." + +#: actions/oauthappssettings.php:74 +#, fuzzy +msgid "OAuth applications" +msgstr "Sonstige Optionen" + +#: actions/oauthappssettings.php:85 +msgid "Applications you have registered" +msgstr "" + +#: actions/oauthappssettings.php:135 +#, php-format +msgid "You have not registered any applications yet." +msgstr "" + +#: actions/oauthconnectionssettings.php:72 +msgid "Connected applications" +msgstr "" + +#: actions/oauthconnectionssettings.php:83 +msgid "You have allowed the following applications to access you account." +msgstr "" + +#: actions/oauthconnectionssettings.php:175 +#, fuzzy +msgid "You are not a user of that application." +msgstr "Du bist kein Mitglied dieser Gruppe." + +#: actions/oauthconnectionssettings.php:186 +msgid "Unable to revoke access for app: " +msgstr "" + +#: actions/oauthconnectionssettings.php:198 +#, php-format +msgid "You have not authorized any applications to use your account." +msgstr "" + +#: actions/oauthconnectionssettings.php:211 +msgid "Developers can edit the registration settings for their applications " +msgstr "" + #: actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" msgstr "Nachricht hat kein Profil" @@ -2022,8 +2341,8 @@ msgstr "Content-Typ " msgid "Only " msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1033 -#: lib/api.php:1061 lib/api.php:1171 +#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 +#: lib/api.php:1068 lib/api.php:1177 msgid "Not a supported data format." msgstr "Kein unterstütztes Datenformat." @@ -2036,7 +2355,7 @@ msgid "Notice Search" msgstr "Nachrichtensuche" #: actions/othersettings.php:60 -msgid "Other Settings" +msgid "Other settings" msgstr "Andere Einstellungen" #: actions/othersettings.php:71 @@ -2061,16 +2380,15 @@ msgstr "Profil-Einstellungen ansehen" #: actions/othersettings.php:123 msgid "Show or hide profile designs." -msgstr "" +msgstr "Prifil-Designs anzeigen oder verstecken." #: actions/othersettings.php:153 msgid "URL shortening service is too long (max 50 chars)." msgstr "URL-Auto-Kürzungs-Dienst ist zu lang (max. 50 Zeichen)." #: actions/otp.php:69 -#, fuzzy msgid "No user ID specified." -msgstr "Keine Gruppe angegeben" +msgstr "Keine Benutzer ID angegeben" #: actions/otp.php:83 #, fuzzy @@ -2092,6 +2410,11 @@ msgstr "Token ungültig oder abgelaufen." msgid "Login token expired." msgstr "An Seite anmelden" +#: actions/outbox.php:58 +#, php-format +msgid "Outbox for %1$s - page %2$d" +msgstr "Postausgang für %1$s - Seite %2$d" + #: actions/outbox.php:61 #, php-format msgid "Outbox for %s" @@ -2163,7 +2486,7 @@ msgstr "Konnte neues Passwort nicht speichern" msgid "Password saved." msgstr "Passwort gespeichert." -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:326 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:331 msgid "Paths" msgstr "" @@ -2171,134 +2494,148 @@ msgstr "" msgid "Path and server settings for this StatusNet site." msgstr "" -#: actions/pathsadminpanel.php:140 +#: actions/pathsadminpanel.php:157 #, php-format msgid "Theme directory not readable: %s" msgstr "Theme-Verzeichnis nicht lesbar: %s" -#: actions/pathsadminpanel.php:146 +#: actions/pathsadminpanel.php:163 #, php-format msgid "Avatar directory not writable: %s" msgstr "Avatar-Verzeichnis ist nicht beschreibbar: %s" -#: actions/pathsadminpanel.php:152 +#: actions/pathsadminpanel.php:169 #, php-format msgid "Background directory not writable: %s" msgstr "Hintergrund Verzeichnis ist nicht beschreibbar: %s" -#: actions/pathsadminpanel.php:160 +#: actions/pathsadminpanel.php:177 #, php-format msgid "Locales directory not readable: %s" msgstr "" -#: actions/pathsadminpanel.php:166 +#: actions/pathsadminpanel.php:183 msgid "Invalid SSL server. The maximum length is 255 characters." msgstr "Ungültiger SSL-Server. Die maximale Länge ist 255 Zeichen." -#: actions/pathsadminpanel.php:217 actions/siteadminpanel.php:58 +#: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58 #: lib/adminpanelaction.php:311 msgid "Site" msgstr "Seite" -#: actions/pathsadminpanel.php:221 +#: actions/pathsadminpanel.php:238 +msgid "Server" +msgstr "Server" + +#: actions/pathsadminpanel.php:238 +msgid "Site's server hostname." +msgstr "Server Name der Seite" + +#: actions/pathsadminpanel.php:242 msgid "Path" msgstr "Pfad" -#: actions/pathsadminpanel.php:221 +#: actions/pathsadminpanel.php:242 msgid "Site path" msgstr "Seitenpfad" -#: actions/pathsadminpanel.php:225 +#: actions/pathsadminpanel.php:246 msgid "Path to locales" msgstr "" -#: actions/pathsadminpanel.php:225 +#: actions/pathsadminpanel.php:246 msgid "Directory path to locales" msgstr "" -#: actions/pathsadminpanel.php:232 +#: actions/pathsadminpanel.php:250 +msgid "Fancy URLs" +msgstr "Schicke URLs." + +#: actions/pathsadminpanel.php:252 +msgid "Use fancy (more readable and memorable) URLs?" +msgstr "Schicke URLs (lesbarer und besser zu merken) verwenden?" + +#: actions/pathsadminpanel.php:259 msgid "Theme" msgstr "" -#: actions/pathsadminpanel.php:237 +#: actions/pathsadminpanel.php:264 msgid "Theme server" msgstr "" -#: actions/pathsadminpanel.php:241 +#: actions/pathsadminpanel.php:268 msgid "Theme path" msgstr "" -#: actions/pathsadminpanel.php:245 +#: actions/pathsadminpanel.php:272 msgid "Theme directory" msgstr "Theme-Verzeichnis" -#: actions/pathsadminpanel.php:252 +#: actions/pathsadminpanel.php:279 msgid "Avatars" msgstr "Avatare" -#: actions/pathsadminpanel.php:257 +#: actions/pathsadminpanel.php:284 msgid "Avatar server" msgstr "Avatar-Server" -#: actions/pathsadminpanel.php:261 +#: actions/pathsadminpanel.php:288 msgid "Avatar path" msgstr "Avatarpfad" -#: actions/pathsadminpanel.php:265 +#: actions/pathsadminpanel.php:292 msgid "Avatar directory" msgstr "Avatarverzeichnis" -#: actions/pathsadminpanel.php:274 +#: actions/pathsadminpanel.php:301 msgid "Backgrounds" -msgstr "" +msgstr "Hintergrundbilder" -#: actions/pathsadminpanel.php:278 +#: actions/pathsadminpanel.php:305 msgid "Background server" -msgstr "" +msgstr "Server für Hintergrundbilder" -#: actions/pathsadminpanel.php:282 +#: actions/pathsadminpanel.php:309 msgid "Background path" -msgstr "" +msgstr "Pfad zu den Hintergrundbildern" -#: actions/pathsadminpanel.php:286 +#: actions/pathsadminpanel.php:313 msgid "Background directory" msgstr "Hintergrund Verzeichnis" -#: actions/pathsadminpanel.php:293 +#: actions/pathsadminpanel.php:320 msgid "SSL" msgstr "SSL" -#: actions/pathsadminpanel.php:296 actions/siteadminpanel.php:346 -#, fuzzy +#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 msgid "Never" -msgstr "Wiederherstellung" +msgstr "Nie" -#: actions/pathsadminpanel.php:297 +#: actions/pathsadminpanel.php:324 msgid "Sometimes" msgstr "Manchmal" -#: actions/pathsadminpanel.php:298 +#: actions/pathsadminpanel.php:325 msgid "Always" msgstr "Immer" -#: actions/pathsadminpanel.php:302 +#: actions/pathsadminpanel.php:329 msgid "Use SSL" msgstr "SSL verwenden" -#: actions/pathsadminpanel.php:303 +#: actions/pathsadminpanel.php:330 msgid "When to use SSL" msgstr "Wann soll SSL verwendet werden" -#: actions/pathsadminpanel.php:308 -#, fuzzy +#: actions/pathsadminpanel.php:335 msgid "SSL server" msgstr "SSL-Server" -#: actions/pathsadminpanel.php:309 +#: actions/pathsadminpanel.php:336 msgid "Server to direct SSL requests to" msgstr "Server an den SSL Anfragen gerichtet werden sollen" -#: actions/pathsadminpanel.php:325 +#: actions/pathsadminpanel.php:352 msgid "Save paths" msgstr "Speicherpfade" @@ -2322,20 +2659,20 @@ msgid "Not a valid people tag: %s" msgstr "Ungültiger Personen-Tag: %s" #: actions/peopletag.php:144 -#, fuzzy, php-format +#, php-format msgid "Users self-tagged with %1$s - page %2$d" -msgstr "Benutzer die sich selbst mit %s getagged haben - Seite %d" +msgstr "Benutzer die sich selbst mit %1$s getagged haben - Seite %2$d" #: actions/postnotice.php:84 msgid "Invalid notice content" msgstr "Ungültiger Nachrichteninhalt" #: actions/postnotice.php:90 -#, fuzzy, php-format +#, php-format msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" -"Die Nachrichtenlizenz '%s' ist nicht kompatibel mit der Lizenz der Seite '%" -"s'." +"Die Nachrichtenlizenz '%1$s' ist nicht kompatibel mit der Lizenz der Seite '%" +"2$s'." #: actions/profilesettings.php:60 msgid "Profile settings" @@ -2363,7 +2700,7 @@ msgid "Full name" msgstr "Vollständiger Name" #: actions/profilesettings.php:115 actions/register.php:453 -#: lib/groupeditform.php:161 +#: lib/applicationeditform.php:228 lib/groupeditform.php:161 msgid "Homepage" msgstr "Homepage" @@ -2387,7 +2724,7 @@ msgstr "Biografie" #: actions/profilesettings.php:132 actions/register.php:471 #: actions/showgroup.php:256 actions/tagother.php:112 -#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:164 msgid "Location" msgstr "Aufenthaltsort" @@ -2398,7 +2735,7 @@ msgstr "Wo du bist, beispielsweise „Stadt, Gebiet, Land“" #: actions/profilesettings.php:138 msgid "Share my current location when posting notices" -msgstr "" +msgstr "Teile meine aktuelle Position wenn ich Nachrichten sende" #: actions/profilesettings.php:145 actions/tagother.php:149 #: actions/tagother.php:209 lib/subscriptionlist.php:106 @@ -2413,7 +2750,7 @@ msgstr "" "Tags über dich selbst (Buchstaben, Zahlen, -, ., und _) durch Kommas oder " "Leerzeichen getrennt" -#: actions/profilesettings.php:151 actions/siteadminpanel.php:294 +#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 msgid "Language" msgstr "Sprache" @@ -2441,7 +2778,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "Die Biografie ist zu lang (max. %d Zeichen)" -#: actions/profilesettings.php:235 actions/siteadminpanel.php:164 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 msgid "Timezone not selected." msgstr "Keine Zeitzone ausgewählt." @@ -2454,31 +2791,30 @@ msgstr "Die eingegebene Sprache ist zu lang (maximal 50 Zeichen)" msgid "Invalid tag: \"%s\"" msgstr "Ungültiger Tag: „%s“" -#: actions/profilesettings.php:302 +#: actions/profilesettings.php:306 msgid "Couldn't update user for autosubscribe." msgstr "Autosubscribe konnte nicht aktiviert werden." -#: actions/profilesettings.php:359 -#, fuzzy +#: actions/profilesettings.php:363 msgid "Couldn't save location prefs." -msgstr "Konnte Tags nicht speichern." +msgstr "Konnte Positions-Einstellungen nicht speichern." -#: actions/profilesettings.php:371 +#: actions/profilesettings.php:375 msgid "Couldn't save profile." msgstr "Konnte Profil nicht speichern." -#: actions/profilesettings.php:379 +#: actions/profilesettings.php:383 msgid "Couldn't save tags." msgstr "Konnte Tags nicht speichern." -#: actions/profilesettings.php:387 lib/adminpanelaction.php:137 +#: actions/profilesettings.php:391 lib/adminpanelaction.php:137 msgid "Settings saved." msgstr "Einstellungen gespeichert." #: actions/public.php:83 #, php-format msgid "Beyond the page limit (%s)" -msgstr "" +msgstr "Jenseits des Seitenlimits (%s)" #: actions/public.php:92 msgid "Could not retrieve public stream." @@ -2493,36 +2829,38 @@ msgstr "Öffentliche Zeitleiste, Seite %d" msgid "Public timeline" msgstr "Öffentliche Zeitleiste" -#: actions/public.php:151 +#: actions/public.php:159 msgid "Public Stream Feed (RSS 1.0)" msgstr "Feed des öffentlichen Streams (RSS 1.0)" -#: actions/public.php:155 +#: actions/public.php:163 msgid "Public Stream Feed (RSS 2.0)" msgstr "Feed des öffentlichen Streams (RSS 2.0)" -#: actions/public.php:159 +#: actions/public.php:167 msgid "Public Stream Feed (Atom)" msgstr "Feed des öffentlichen Streams (Atom)" -#: actions/public.php:179 +#: actions/public.php:187 #, php-format msgid "" "This is the public timeline for %%site.name%% but no one has posted anything " "yet." msgstr "" +"Dies ist die öffentliche Zeitlinie von %%site.name%% es wurde allerdings " +"noch nichts gepostet." -#: actions/public.php:182 +#: actions/public.php:190 msgid "Be the first to post!" -msgstr "" +msgstr "Sei der erste der etwas schreibt!" -#: actions/public.php:186 +#: actions/public.php:194 #, php-format msgid "" "Why not [register an account](%%action.register%%) and be the first to post!" msgstr "" -#: actions/public.php:233 +#: actions/public.php:241 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2531,7 +2869,7 @@ msgid "" "friends, family, and colleagues! ([Read more](%%doc.help%%))" msgstr "" -#: actions/public.php:238 +#: actions/public.php:246 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2555,6 +2893,8 @@ msgstr "Das sind die beliebtesten Tags auf %s " #, php-format msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." msgstr "" +"Bis jetzt hat noch niemand eine Nachricht mit dem Tag [hashtag](%%doc.tags%" +"%) gepostet." #: actions/publictagcloud.php:72 msgid "Be the first to post one!" @@ -2567,7 +2907,7 @@ msgid "" "one!" msgstr "" -#: actions/publictagcloud.php:131 +#: actions/publictagcloud.php:134 msgid "Tag cloud" msgstr "Tag-Wolke" @@ -2615,7 +2955,7 @@ msgstr "" #: actions/recoverpassword.php:191 msgid "Nickname or email address" -msgstr "" +msgstr "Spitzname oder e-mail Adresse" #: actions/recoverpassword.php:193 msgid "Your nickname on this server, or your registered email address." @@ -2705,7 +3045,7 @@ msgstr "Entschuldigung, ungültiger Bestätigungscode." msgid "Registration successful" msgstr "Registrierung erfolgreich" -#: actions/register.php:114 actions/register.php:503 lib/action.php:457 +#: actions/register.php:114 actions/register.php:503 lib/action.php:463 #: lib/logingroupnav.php:85 msgid "Register" msgstr "Registrieren" @@ -2748,7 +3088,7 @@ msgid "Same as password above. Required." msgstr "Gleiches Passwort wie zuvor. Pflichteingabe." #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:270 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 msgid "Email" msgstr "E-Mail" @@ -2857,7 +3197,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "Profil-URL bei einem anderen kompatiblen Microbloggingdienst" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:365 +#: lib/userprofile.php:368 msgid "Subscribe" msgstr "Abonnieren" @@ -2879,27 +3219,23 @@ msgid "Couldn’t get a request token." msgstr "Konnte keinen Anfrage-Token bekommen." #: actions/repeat.php:57 -#, fuzzy msgid "Only logged-in users can repeat notices." -msgstr "Nur der Benutzer selbst kann seinen Posteingang lesen." +msgstr "Nur angemeldete Nutzer können Nachrichten wiederholen." #: actions/repeat.php:64 actions/repeat.php:71 -#, fuzzy msgid "No notice specified." -msgstr "Kein Profil angegeben." +msgstr "Keine Nachricht angegeen." #: actions/repeat.php:76 -#, fuzzy msgid "You can't repeat your own notice." -msgstr "" -"Du kannst dich nicht registrieren, wenn du die Lizenz nicht akzeptierst." +msgstr "Du kannst deine eigene Nachricht nicht wiederholen." #: actions/repeat.php:90 #, fuzzy msgid "You already repeated that notice." msgstr "Du hast diesen Benutzer bereits blockiert." -#: actions/repeat.php:114 lib/noticelist.php:629 +#: actions/repeat.php:114 lib/noticelist.php:656 #, fuzzy msgid "Repeated" msgstr "Erstellt" @@ -2915,6 +3251,11 @@ msgstr "Erstellt" msgid "Replies to %s" msgstr "Antworten an %s" +#: actions/replies.php:127 +#, php-format +msgid "Replies to %1$s, page %2$d" +msgstr "Antworten an %1$s, Seite %2$d" + #: actions/replies.php:144 #, php-format msgid "Replies feed for %s (RSS 1.0)" @@ -2961,6 +3302,10 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "Antworten an %1$s auf %2$s!" +#: actions/rsd.php:146 actions/version.php:157 +msgid "StatusNet" +msgstr "StatusNet" + #: actions/sandbox.php:65 actions/unsandbox.php:65 #, fuzzy msgid "You cannot sandbox users on this site." @@ -2971,6 +3316,125 @@ msgstr "Du kannst diesem Benutzer keine Nachricht schicken." msgid "User is already sandboxed." msgstr "Dieser Benutzer hat dich blockiert." +#: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:336 +msgid "Sessions" +msgstr "" + +#: actions/sessionsadminpanel.php:65 +#, fuzzy +msgid "Session settings for this StatusNet site." +msgstr "Design-Einstellungen für diese StatusNet-Website." + +#: actions/sessionsadminpanel.php:175 +msgid "Handle sessions" +msgstr "" + +#: actions/sessionsadminpanel.php:177 +msgid "Whether to handle sessions ourselves." +msgstr "" + +#: actions/sessionsadminpanel.php:181 +msgid "Session debugging" +msgstr "" + +#: actions/sessionsadminpanel.php:183 +msgid "Turn on debugging output for sessions." +msgstr "" + +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/useradminpanel.php:293 +msgid "Save site settings" +msgstr "Site-Einstellungen speichern" + +#: actions/showapplication.php:82 +#, fuzzy +msgid "You must be logged in to view an application." +msgstr "Du musst angemeldet sein, um aus einer Gruppe auszutreten." + +#: actions/showapplication.php:157 +#, fuzzy +msgid "Application profile" +msgstr "Nachricht hat kein Profil" + +#: actions/showapplication.php:159 lib/applicationeditform.php:180 +msgid "Icon" +msgstr "" + +#: actions/showapplication.php:169 actions/version.php:195 +#: lib/applicationeditform.php:195 +msgid "Name" +msgstr "Name" + +#: actions/showapplication.php:178 lib/applicationeditform.php:222 +#, fuzzy +msgid "Organization" +msgstr "Seitenerstellung" + +#: actions/showapplication.php:187 actions/version.php:198 +#: lib/applicationeditform.php:209 lib/groupeditform.php:172 +msgid "Description" +msgstr "Beschreibung" + +#: actions/showapplication.php:192 actions/showgroup.php:429 +#: lib/profileaction.php:174 +msgid "Statistics" +msgstr "Statistiken" + +#: actions/showapplication.php:203 +#, php-format +msgid "Created by %1$s - %2$s access by default - %3$d users" +msgstr "" + +#: actions/showapplication.php:213 +msgid "Application actions" +msgstr "" + +#: actions/showapplication.php:236 +msgid "Reset key & secret" +msgstr "" + +#: actions/showapplication.php:261 +msgid "Application info" +msgstr "" + +#: actions/showapplication.php:263 +msgid "Consumer key" +msgstr "" + +#: actions/showapplication.php:268 +msgid "Consumer secret" +msgstr "" + +#: actions/showapplication.php:273 +msgid "Request token URL" +msgstr "" + +#: actions/showapplication.php:278 +msgid "Access token URL" +msgstr "" + +#: actions/showapplication.php:283 +#, fuzzy +msgid "Authorize URL" +msgstr "Autor" + +#: actions/showapplication.php:288 +msgid "" +"Note: We support HMAC-SHA1 signatures. We do not support the plaintext " +"signature method." +msgstr "" + +#: actions/showapplication.php:309 +#, fuzzy +msgid "Are you sure you want to reset your consumer key and secret?" +msgstr "Bist du sicher, dass du diese Nachricht löschen möchtest?" + +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%1$s's favorite notices, page %2$d" +msgstr "%ss favorisierte Nachrichten" + #: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "Konnte Favoriten nicht abrufen." @@ -3013,24 +3477,29 @@ msgstr "" #: actions/showfavorites.php:242 msgid "This is a way to share what you like." -msgstr "" +msgstr "Dies ist ein Weg Dinge zu teilen die dir gefallen." #: actions/showgroup.php:82 lib/groupnav.php:86 #, php-format msgid "%s group" msgstr "%s Gruppe" +#: actions/showgroup.php:84 +#, fuzzy, php-format +msgid "%1$s group, page %2$d" +msgstr "%s Gruppen-Mitglieder, Seite %d" + #: actions/showgroup.php:218 msgid "Group profile" msgstr "Gruppenprofil" #: actions/showgroup.php:263 actions/tagother.php:118 -#: actions/userauthorization.php:167 lib/userprofile.php:177 +#: actions/userauthorization.php:175 lib/userprofile.php:177 msgid "URL" msgstr "URL" #: actions/showgroup.php:274 actions/tagother.php:128 -#: actions/userauthorization.php:179 lib/userprofile.php:194 +#: actions/userauthorization.php:187 lib/userprofile.php:194 msgid "Note" msgstr "Nachricht" @@ -3076,10 +3545,6 @@ msgstr "(Kein)" msgid "All members" msgstr "Alle Mitglieder" -#: actions/showgroup.php:429 lib/profileaction.php:174 -msgid "Statistics" -msgstr "Statistiken" - #: actions/showgroup.php:432 msgid "Created" msgstr "Erstellt" @@ -3138,6 +3603,11 @@ msgstr "Nachricht gelöscht." msgid " tagged %s" msgstr "Nachrichten, die mit %s getagt sind" +#: actions/showstream.php:79 +#, fuzzy, php-format +msgid "%1$s, page %2$d" +msgstr "%s blockierte Benutzerprofile, Seite %d" + #: actions/showstream.php:122 #, fuzzy, php-format msgid "Notice feed for %1$s tagged %2$s (RSS 1.0)" @@ -3163,20 +3633,20 @@ msgstr "Feed der Nachrichten von %s (Atom)" msgid "FOAF for %s" msgstr "FOAF von %s" -#: actions/showstream.php:191 +#: actions/showstream.php:200 #, fuzzy, php-format msgid "This is the timeline for %1$s but %2$s hasn't posted anything yet." msgstr "" "Dies ist die Zeitleiste für %s und Freunde aber bisher hat niemand etwas " "gepostet." -#: actions/showstream.php:196 +#: actions/showstream.php:205 msgid "" "Seen anything interesting recently? You haven't posted any notices yet, now " "would be a good time to start :)" msgstr "" -#: actions/showstream.php:198 +#: actions/showstream.php:207 #, fuzzy, php-format msgid "" "You can try to nudge %1$s or [post something to his or her attention](%%%%" @@ -3186,7 +3656,7 @@ msgstr "" "posten](%%%%action.newnotice%%%%?status_textarea=%s) um seine Aufmerksamkeit " "zu erregen." -#: actions/showstream.php:234 +#: actions/showstream.php:243 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3195,7 +3665,7 @@ msgid "" "follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showstream.php:239 +#: actions/showstream.php:248 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3206,224 +3676,162 @@ msgstr "" "(http://de.wikipedia.org/wiki/Mikro-blogging) basierend auf der Freien " "Software [StatusNet](http://status.net/). " -#: actions/showstream.php:313 -#, fuzzy, php-format +#: actions/showstream.php:305 +#, php-format msgid "Repeat of %s" -msgstr "Antworten an %s" +msgstr "Wiederholung von %s" #: actions/silence.php:65 actions/unsilence.php:65 -#, fuzzy msgid "You cannot silence users on this site." -msgstr "Du kannst diesem Benutzer keine Nachricht schicken." +msgstr "Du kannst Nutzer dieser Seite nicht ruhig stellen." #: actions/silence.php:72 -#, fuzzy msgid "User is already silenced." -msgstr "Dieser Benutzer hat dich blockiert." +msgstr "Nutzer ist bereits ruhig gestellt." #: actions/siteadminpanel.php:69 msgid "Basic settings for this StatusNet site." -msgstr "" +msgstr "Grundeinstellungen für diese StatusNet Seite." -#: actions/siteadminpanel.php:146 +#: actions/siteadminpanel.php:132 msgid "Site name must have non-zero length." -msgstr "" +msgstr "Der Seiten Name darf nicht leer sein." -#: actions/siteadminpanel.php:154 -#, fuzzy +#: actions/siteadminpanel.php:140 msgid "You must have a valid contact email address." -msgstr "Du musst eine gültige E-Mail-Adresse haben" +msgstr "Du musst eine gültige E-Mail-Adresse haben." -#: actions/siteadminpanel.php:172 -#, fuzzy, php-format +#: actions/siteadminpanel.php:158 +#, php-format msgid "Unknown language \"%s\"." msgstr "Unbekannte Sprache „%s“" -#: actions/siteadminpanel.php:179 +#: actions/siteadminpanel.php:165 msgid "Invalid snapshot report URL." msgstr "" -#: actions/siteadminpanel.php:185 +#: actions/siteadminpanel.php:171 msgid "Invalid snapshot run value." msgstr "" -#: actions/siteadminpanel.php:191 +#: actions/siteadminpanel.php:177 msgid "Snapshot frequency must be a number." msgstr "" -#: actions/siteadminpanel.php:197 +#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." -msgstr "" +msgstr "Minimale Textlänge ist 140 Zeichen." -#: actions/siteadminpanel.php:203 +#: actions/siteadminpanel.php:189 msgid "Dupe limit must 1 or more seconds." msgstr "" -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:239 msgid "General" msgstr "" -#: actions/siteadminpanel.php:256 -#, fuzzy +#: actions/siteadminpanel.php:242 msgid "Site name" -msgstr "Seitennachricht" +msgstr "Seitenname" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:243 msgid "The name of your site, like \"Yourcompany Microblog\"" -msgstr "" +msgstr "Der Name deiner Seite, sowas wie \"DeinUnternehmen Mircoblog\"" -#: actions/siteadminpanel.php:261 +#: actions/siteadminpanel.php:247 msgid "Brought by" msgstr "" -#: actions/siteadminpanel.php:262 +#: actions/siteadminpanel.php:248 msgid "Text used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:266 +#: actions/siteadminpanel.php:252 msgid "Brought by URL" msgstr "" -#: actions/siteadminpanel.php:267 +#: actions/siteadminpanel.php:253 msgid "URL used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:271 +#: actions/siteadminpanel.php:257 msgid "Contact email address for your site" msgstr "Kontakt-E-Mail-Adresse für Deine Site." -#: actions/siteadminpanel.php:277 +#: actions/siteadminpanel.php:263 #, fuzzy msgid "Local" msgstr "Lokale Ansichten" -#: actions/siteadminpanel.php:288 +#: actions/siteadminpanel.php:274 msgid "Default timezone" msgstr "" -#: actions/siteadminpanel.php:289 +#: actions/siteadminpanel.php:275 msgid "Default timezone for the site; usually UTC." msgstr "" -#: actions/siteadminpanel.php:295 +#: actions/siteadminpanel.php:281 #, fuzzy msgid "Default site language" msgstr "Bevorzugte Sprache" -#: actions/siteadminpanel.php:303 -#, fuzzy -msgid "URLs" -msgstr "URL" - -#: actions/siteadminpanel.php:306 -#, fuzzy -msgid "Server" -msgstr "Wiederherstellung" - -#: actions/siteadminpanel.php:306 -msgid "Site's server hostname." -msgstr "" - -#: actions/siteadminpanel.php:310 -msgid "Fancy URLs" -msgstr "Schicke URLs." - -#: actions/siteadminpanel.php:312 -msgid "Use fancy (more readable and memorable) URLs?" -msgstr "Schicke URLs (lesbarer und besser zu merken) verwenden?" - -#: actions/siteadminpanel.php:318 -#, fuzzy -msgid "Access" -msgstr "Akzeptieren" - -#: actions/siteadminpanel.php:321 -#, fuzzy -msgid "Private" -msgstr "Privatsphäre" - -#: actions/siteadminpanel.php:323 -msgid "Prohibit anonymous users (not logged in) from viewing site?" -msgstr "" - -#: actions/siteadminpanel.php:327 -#, fuzzy -msgid "Invite only" -msgstr "Einladen" - -#: actions/siteadminpanel.php:329 -msgid "Make registration invitation only." -msgstr "" - -#: actions/siteadminpanel.php:333 -#, fuzzy -msgid "Closed" -msgstr "Blockieren" - -#: actions/siteadminpanel.php:335 -msgid "Disable new registrations." -msgstr "" - -#: actions/siteadminpanel.php:341 +#: actions/siteadminpanel.php:289 msgid "Snapshots" msgstr "" -#: actions/siteadminpanel.php:344 +#: actions/siteadminpanel.php:292 msgid "Randomly during Web hit" msgstr "" -#: actions/siteadminpanel.php:345 +#: actions/siteadminpanel.php:293 msgid "In a scheduled job" msgstr "" -#: actions/siteadminpanel.php:347 +#: actions/siteadminpanel.php:295 msgid "Data snapshots" msgstr "" -#: actions/siteadminpanel.php:348 +#: actions/siteadminpanel.php:296 msgid "When to send statistical data to status.net servers" msgstr "" -#: actions/siteadminpanel.php:353 +#: actions/siteadminpanel.php:301 msgid "Frequency" msgstr "Frequenz" -#: actions/siteadminpanel.php:354 +#: actions/siteadminpanel.php:302 msgid "Snapshots will be sent once every N web hits" msgstr "" -#: actions/siteadminpanel.php:359 +#: actions/siteadminpanel.php:307 msgid "Report URL" msgstr "" -#: actions/siteadminpanel.php:360 +#: actions/siteadminpanel.php:308 msgid "Snapshots will be sent to this URL" msgstr "" -#: actions/siteadminpanel.php:367 +#: actions/siteadminpanel.php:315 msgid "Limits" msgstr "" -#: actions/siteadminpanel.php:370 +#: actions/siteadminpanel.php:318 msgid "Text limit" msgstr "" -#: actions/siteadminpanel.php:370 +#: actions/siteadminpanel.php:318 msgid "Maximum number of characters for notices." msgstr "" -#: actions/siteadminpanel.php:374 +#: actions/siteadminpanel.php:322 msgid "Dupe limit" msgstr "" -#: actions/siteadminpanel.php:374 +#: actions/siteadminpanel.php:322 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" -#: actions/siteadminpanel.php:388 actions/useradminpanel.php:313 -msgid "Save site settings" -msgstr "Site-Einstellungen speichern" - #: actions/smssettings.php:58 #, fuzzy msgid "SMS settings" @@ -3531,15 +3939,26 @@ msgstr "Kein Code eingegeben" msgid "You are not subscribed to that profile." msgstr "Du hast dieses Profil nicht abonniert." -#: actions/subedit.php:83 +#: actions/subedit.php:83 classes/Subscription.php:89 +#: classes/Subscription.php:116 msgid "Could not save subscription." msgstr "Konnte Abonnement nicht erstellen." -#: actions/subscribe.php:55 -msgid "Not a local user." -msgstr "Kein lokaler Benutzer." +#: actions/subscribe.php:77 +msgid "This action only accepts POST requests." +msgstr "" -#: actions/subscribe.php:69 +#: actions/subscribe.php:107 +#, fuzzy +msgid "No such profile." +msgstr "Datei nicht gefunden." + +#: actions/subscribe.php:117 +#, fuzzy +msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." +msgstr "Du hast dieses Profil nicht abonniert." + +#: actions/subscribe.php:145 msgid "Subscribed" msgstr "Abonniert" @@ -3549,9 +3968,9 @@ msgid "%s subscribers" msgstr "%s Abonnenten" #: actions/subscribers.php:52 -#, fuzzy, php-format +#, php-format msgid "%1$s subscribers, page %2$d" -msgstr "%s Abonnenten, Seite %d" +msgstr "%1$s Abonnenten, Seite %2$d" #: actions/subscribers.php:63 msgid "These are the people who listen to your notices." @@ -3590,9 +4009,9 @@ msgid "%s subscriptions" msgstr "%s Abonnements" #: actions/subscriptions.php:54 -#, fuzzy, php-format +#, php-format msgid "%1$s subscriptions, page %2$d" -msgstr "%s Abonnements, Seite %d" +msgstr "%1$s Abonnements, Seite %2$d" #: actions/subscriptions.php:65 msgid "These are the people whose notices you listen to." @@ -3603,7 +4022,7 @@ msgstr "Dies sind die Leute, deren Nachrichten du liest." msgid "These are the people whose notices %s listens to." msgstr "Dies sind die Leute, deren Nachrichten %s liest." -#: actions/subscriptions.php:121 +#: actions/subscriptions.php:126 #, php-format msgid "" "You're not listening to anyone's notices right now, try subscribing to " @@ -3613,33 +4032,38 @@ msgid "" "automatically subscribe to people you already follow there." msgstr "" -#: actions/subscriptions.php:123 actions/subscriptions.php:127 -#, fuzzy, php-format +#: actions/subscriptions.php:128 actions/subscriptions.php:132 +#, php-format msgid "%s is not listening to anyone." -msgstr "%1$s liest ab sofort " +msgstr "%s hat niemanden abonniert." -#: actions/subscriptions.php:194 +#: actions/subscriptions.php:199 msgid "Jabber" msgstr "Jabber" -#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:204 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "SMS" +#: actions/tag.php:68 +#, php-format +msgid "Notices tagged with %1$s, page %2$d" +msgstr "Mit %1$s gekennzeichnete Nachrichten, Seite %2$d" + #: actions/tag.php:86 -#, fuzzy, php-format +#, php-format msgid "Notice feed for tag %s (RSS 1.0)" -msgstr "Feed der Nachrichten von %s" +msgstr "Nachrichten Feed für Tag %s (RSS 1.0)" #: actions/tag.php:92 -#, fuzzy, php-format +#, php-format msgid "Notice feed for tag %s (RSS 2.0)" -msgstr "Feed der Nachrichten von %s" +msgstr "Nachrichten Feed für Tag %s (RSS 2.0)" #: actions/tag.php:98 -#, fuzzy, php-format +#, php-format msgid "Notice feed for tag %s (Atom)" -msgstr "Feed der Nachrichten von %s" +msgstr "Nachrichten Feed für Tag %s (Atom)" #: actions/tagother.php:39 #, fuzzy @@ -3655,7 +4079,8 @@ msgstr "Tag %s" msgid "User profile" msgstr "Benutzerprofil" -#: actions/tagother.php:81 lib/userprofile.php:102 +#: actions/tagother.php:81 actions/userauthorization.php:132 +#: lib/userprofile.php:102 msgid "Photo" msgstr "Foto" @@ -3706,9 +4131,8 @@ msgid "User is not sandboxed." msgstr "Dieser Benutzer hat dich blockiert." #: actions/unsilence.php:72 -#, fuzzy msgid "User is not silenced." -msgstr "Benutzer hat kein Profil." +msgstr "Der Benutzer ist nicht ruhig gestellt." #: actions/unsubscribe.php:77 msgid "No profile id in request." @@ -3718,7 +4142,7 @@ msgstr "Keine Profil-ID in der Anfrage." msgid "Unsubscribed" msgstr "Abbestellt" -#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#: actions/updateprofile.php:62 actions/userauthorization.php:337 #, fuzzy, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -3733,91 +4157,65 @@ msgstr "Benutzer" #: actions/useradminpanel.php:69 msgid "User settings for this StatusNet site." -msgstr "" +msgstr "Nutzer Einstellungen dieser StatusNet Seite." -#: actions/useradminpanel.php:149 +#: actions/useradminpanel.php:148 msgid "Invalid bio limit. Must be numeric." -msgstr "" +msgstr "Das Zeichenlimit der Biografie muss numerisch sein!" -#: actions/useradminpanel.php:155 +#: actions/useradminpanel.php:154 msgid "Invalid welcome text. Max length is 255 characters." -msgstr "" +msgstr "Willkommens-Nachricht ungültig. Maximale Länge sind 255 Zeichen." -#: actions/useradminpanel.php:165 +#: actions/useradminpanel.php:164 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 +#: actions/useradminpanel.php:217 lib/accountsettingsaction.php:108 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Profil" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:221 msgid "Bio Limit" msgstr "" -#: actions/useradminpanel.php:223 +#: actions/useradminpanel.php:222 msgid "Maximum length of a profile bio in characters." msgstr "" -#: actions/useradminpanel.php:231 +#: actions/useradminpanel.php:230 msgid "New users" msgstr "Neue Nutzer" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:234 msgid "New user welcome" msgstr "" -#: actions/useradminpanel.php:236 +#: actions/useradminpanel.php:235 msgid "Welcome text for new users (Max 255 chars)." -msgstr "" +msgstr "Willkommens-Nachricht für neue Nutzer (maximal 255 Zeichen)." + +#: actions/useradminpanel.php:240 +msgid "Default subscription" +msgstr "Standard Abonnement" #: actions/useradminpanel.php:241 -#, fuzzy -msgid "Default subscription" -msgstr "Alle Abonnements" - -#: actions/useradminpanel.php:242 -#, fuzzy msgid "Automatically subscribe new users to this user." -msgstr "" -"Abonniere automatisch alle Kontakte, die mich abonnieren (sinnvoll für Nicht-" -"Menschen)" +msgstr "Neue Nutzer abonnieren automatisch diesen Nutzer" -#: actions/useradminpanel.php:251 -#, fuzzy +#: actions/useradminpanel.php:250 msgid "Invitations" -msgstr "Einladung(en) verschickt" +msgstr "Einladungen" -#: actions/useradminpanel.php:256 -#, fuzzy +#: actions/useradminpanel.php:255 msgid "Invitations enabled" -msgstr "Einladung(en) verschickt" +msgstr "Einladungen aktivieren" -#: actions/useradminpanel.php:258 +#: actions/useradminpanel.php:257 msgid "Whether to allow users to invite new users." -msgstr "" - -#: actions/useradminpanel.php:265 -msgid "Sessions" -msgstr "" - -#: actions/useradminpanel.php:270 -msgid "Handle sessions" -msgstr "" - -#: actions/useradminpanel.php:272 -msgid "Whether to handle sessions ourselves." -msgstr "" - -#: actions/useradminpanel.php:276 -msgid "Session debugging" -msgstr "" - -#: actions/useradminpanel.php:278 -msgid "Turn on debugging output for sessions." -msgstr "" +msgstr "Ist es Nutzern erlaubt neue Nutzer einzuladen." #: actions/userauthorization.php:105 msgid "Authorize subscription" @@ -3833,38 +4231,37 @@ msgstr "" "dieses Nutzers abonnieren möchtest. Wenn du das nicht wolltest, klicke auf " "„Abbrechen“." -#: actions/userauthorization.php:188 actions/version.php:165 +#: actions/userauthorization.php:196 actions/version.php:165 msgid "License" msgstr "Lizenz" -#: actions/userauthorization.php:209 +#: actions/userauthorization.php:217 msgid "Accept" msgstr "Akzeptieren" -#: actions/userauthorization.php:210 lib/subscribeform.php:115 +#: actions/userauthorization.php:218 lib/subscribeform.php:115 #: lib/subscribeform.php:139 -#, fuzzy msgid "Subscribe to this user" msgstr "Abonniere diesen Benutzer" -#: actions/userauthorization.php:211 +#: actions/userauthorization.php:219 msgid "Reject" msgstr "Ablehnen" -#: actions/userauthorization.php:212 +#: actions/userauthorization.php:220 #, fuzzy msgid "Reject this subscription" msgstr "%s Abonnements" -#: actions/userauthorization.php:225 +#: actions/userauthorization.php:232 msgid "No authorization request!" msgstr "Keine Bestätigungsanfrage!" -#: actions/userauthorization.php:247 +#: actions/userauthorization.php:254 msgid "Subscription authorized" msgstr "Abonnement autorisiert" -#: actions/userauthorization.php:249 +#: actions/userauthorization.php:256 #, fuzzy msgid "" "The subscription has been authorized, but no callback URL was passed. Check " @@ -3875,11 +4272,11 @@ msgstr "" "zurückgegeben. Lies nochmal die Anweisungen der Site, wie Abonnements " "bestätigt werden. Dein Abonnement-Token ist:" -#: actions/userauthorization.php:259 +#: actions/userauthorization.php:266 msgid "Subscription rejected" msgstr "Abonnement abgelehnt" -#: actions/userauthorization.php:261 +#: actions/userauthorization.php:268 #, fuzzy msgid "" "The subscription has been rejected, but no callback URL was passed. Check " @@ -3890,37 +4287,37 @@ msgstr "" "zurückgegeben. Lies nochmal die Anweisungen der Site, wie Abonnements " "vollständig abgelehnt werden. Dein Abonnement-Token ist:" -#: actions/userauthorization.php:296 +#: actions/userauthorization.php:303 #, php-format msgid "Listener URI ‘%s’ not found here." msgstr "" -#: actions/userauthorization.php:301 +#: actions/userauthorization.php:308 #, php-format msgid "Listenee URI ‘%s’ is too long." msgstr "" -#: actions/userauthorization.php:307 +#: actions/userauthorization.php:314 #, php-format msgid "Listenee URI ‘%s’ is a local user." msgstr "" -#: actions/userauthorization.php:322 +#: actions/userauthorization.php:329 #, php-format msgid "Profile URL ‘%s’ is for a local user." msgstr "" -#: actions/userauthorization.php:338 +#: actions/userauthorization.php:345 #, php-format msgid "Avatar URL ‘%s’ is not valid." msgstr "" -#: actions/userauthorization.php:343 +#: actions/userauthorization.php:350 #, php-format msgid "Can’t read avatar URL ‘%s’." msgstr "Konnte Avatar-URL nicht öffnen „%s“" -#: actions/userauthorization.php:348 +#: actions/userauthorization.php:355 #, php-format msgid "Wrong image type for avatar URL ‘%s’." msgstr "Falscher Bildtyp für „%s“" @@ -3939,6 +4336,11 @@ msgstr "" msgid "Enjoy your hotdog!" msgstr "" +#: actions/usergroups.php:64 +#, fuzzy, php-format +msgid "%1$s groups, page %2$d" +msgstr "%s Gruppen-Mitglieder, Seite %d" + #: actions/usergroups.php:130 msgid "Search for more groups" msgstr "Suche nach weiteren Gruppen" @@ -3965,11 +4367,6 @@ msgid "" "Inc. and contributors." msgstr "" -#: actions/version.php:157 -#, fuzzy -msgid "StatusNet" -msgstr "Status gelöscht." - #: actions/version.php:161 msgid "Contributors" msgstr "" @@ -4001,12 +4398,7 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:195 -#, fuzzy -msgid "Name" -msgstr "Nutzername" - -#: actions/version.php:196 lib/action.php:741 +#: actions/version.php:196 lib/action.php:747 #, fuzzy msgid "Version" msgstr "Eigene" @@ -4016,10 +4408,6 @@ msgstr "Eigene" msgid "Author(s)" msgstr "Autor" -#: actions/version.php:198 lib/groupeditform.php:172 -msgid "Description" -msgstr "Beschreibung" - #: classes/File.php:144 #, php-format msgid "" @@ -4070,27 +4458,27 @@ msgstr "Konnte Nachricht nicht einfügen." msgid "Could not update message with new URI." msgstr "Konnte Nachricht nicht mit neuer URI versehen." -#: classes/Notice.php:171 +#: classes/Notice.php:157 #, php-format msgid "DB error inserting hashtag: %s" msgstr "Datenbankfehler beim Einfügen des Hashtags: %s" -#: classes/Notice.php:225 +#: classes/Notice.php:222 msgid "Problem saving notice. Too long." msgstr "Problem bei Speichern der Nachricht. Sie ist zu lang." -#: classes/Notice.php:229 +#: classes/Notice.php:226 msgid "Problem saving notice. Unknown user." msgstr "Problem bei Speichern der Nachricht. Unbekannter Benutzer." -#: classes/Notice.php:234 +#: classes/Notice.php:231 msgid "" "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." -#: classes/Notice.php:240 +#: classes/Notice.php:237 #, fuzzy msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " @@ -4099,35 +4487,61 @@ msgstr "" "Zu schnell zu viele Nachrichten; atme kurz durch und schicke sie erneut in " "ein paar Minuten ab." -#: classes/Notice.php:246 +#: classes/Notice.php:243 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:305 classes/Notice.php:330 +#: classes/Notice.php:309 classes/Notice.php:335 msgid "Problem saving notice." msgstr "Problem bei Speichern der Nachricht." -#: classes/Notice.php:1052 -#, php-format -msgid "DB error inserting reply: %s" -msgstr "Datenbankfehler beim Einfügen der Antwort: %s" +#: classes/Notice.php:882 +#, fuzzy +msgid "Problem saving group inbox." +msgstr "Problem bei Speichern der Nachricht." -#: classes/Notice.php:1423 +#: classes/Notice.php:1407 #, fuzzy, php-format msgid "RT @%1$s %2$s" msgstr "%1$s (%2$s)" -#: classes/User.php:382 +#: classes/Subscription.php:66 lib/oauthstore.php:465 +msgid "You have been banned from subscribing." +msgstr "Dieser Benutzer erlaubt dir nicht ihn zu abonnieren." + +#: classes/Subscription.php:70 +msgid "Already subscribed!" +msgstr "Bereits abonniert!" + +#: classes/Subscription.php:74 +msgid "User has blocked you." +msgstr "Dieser Benutzer hat dich blockiert." + +#: classes/Subscription.php:157 +#, fuzzy +msgid "Not subscribed!" +msgstr "Nicht abonniert!" + +#: classes/Subscription.php:163 +#, fuzzy +msgid "Couldn't delete self-subscription." +msgstr "Konnte Abonnement nicht löschen." + +#: classes/Subscription.php:179 lib/subs.php:69 +msgid "Couldn't delete subscription." +msgstr "Konnte Abonnement nicht löschen." + +#: classes/User.php:372 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "Herzlich willkommen bei %1$s, @%2$s!" -#: classes/User_group.php:380 +#: classes/User_group.php:423 msgid "Could not create group." msgstr "Konnte Gruppe nicht erstellen." -#: classes/User_group.php:409 +#: classes/User_group.php:452 msgid "Could not set group membership." msgstr "Konnte Gruppenmitgliedschaft nicht setzen." @@ -4169,131 +4583,127 @@ msgstr "%1$s (%2$s)" msgid "Untitled page" msgstr "Seite ohne Titel" -#: lib/action.php:427 +#: lib/action.php:433 msgid "Primary site navigation" msgstr "Hauptnavigation" -#: lib/action.php:433 +#: lib/action.php:439 msgid "Home" msgstr "Startseite" -#: lib/action.php:433 +#: lib/action.php:439 msgid "Personal profile and friends timeline" msgstr "Persönliches Profil und Freundes-Zeitleiste" -#: lib/action.php:435 -msgid "Account" -msgstr "Konto" - -#: lib/action.php:435 +#: lib/action.php:441 msgid "Change your email, avatar, password, profile" msgstr "Ändere deine E-Mail, dein Avatar, Passwort, Profil" -#: lib/action.php:438 +#: lib/action.php:444 msgid "Connect" msgstr "Verbinden" -#: lib/action.php:438 +#: lib/action.php:444 #, fuzzy msgid "Connect to services" msgstr "Konnte nicht zum Server umleiten: %s" -#: lib/action.php:442 +#: lib/action.php:448 #, fuzzy msgid "Change site configuration" msgstr "Hauptnavigation" -#: lib/action.php:446 lib/subgroupnav.php:105 +#: lib/action.php:452 lib/subgroupnav.php:105 msgid "Invite" msgstr "Einladen" -#: lib/action.php:447 lib/subgroupnav.php:106 +#: lib/action.php:453 lib/subgroupnav.php:106 #, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "Lade Freunde und Kollegen ein dir auf %s zu folgen" -#: lib/action.php:452 +#: lib/action.php:458 msgid "Logout" msgstr "Abmelden" -#: lib/action.php:452 +#: lib/action.php:458 msgid "Logout from the site" msgstr "Von der Seite abmelden" -#: lib/action.php:457 +#: lib/action.php:463 msgid "Create an account" msgstr "Neues Konto erstellen" -#: lib/action.php:460 +#: lib/action.php:466 msgid "Login to the site" msgstr "Auf der Seite anmelden" -#: lib/action.php:463 lib/action.php:726 +#: lib/action.php:469 lib/action.php:732 msgid "Help" msgstr "Hilfe" -#: lib/action.php:463 +#: lib/action.php:469 msgid "Help me!" msgstr "Hilf mir!" -#: lib/action.php:466 lib/searchaction.php:127 +#: lib/action.php:472 lib/searchaction.php:127 msgid "Search" msgstr "Suchen" -#: lib/action.php:466 +#: lib/action.php:472 msgid "Search for people or text" msgstr "Suche nach Leuten oder Text" -#: lib/action.php:487 +#: lib/action.php:493 msgid "Site notice" msgstr "Seitennachricht" -#: lib/action.php:553 +#: lib/action.php:559 msgid "Local views" msgstr "Lokale Ansichten" -#: lib/action.php:619 +#: lib/action.php:625 msgid "Page notice" msgstr "Neue Nachricht" -#: lib/action.php:721 +#: lib/action.php:727 msgid "Secondary site navigation" msgstr "Unternavigation" -#: lib/action.php:728 +#: lib/action.php:734 msgid "About" msgstr "Über" -#: lib/action.php:730 +#: lib/action.php:736 msgid "FAQ" msgstr "FAQ" -#: lib/action.php:734 +#: lib/action.php:740 msgid "TOS" msgstr "AGB" -#: lib/action.php:737 +#: lib/action.php:743 msgid "Privacy" msgstr "Privatsphäre" -#: lib/action.php:739 +#: lib/action.php:745 msgid "Source" msgstr "Quellcode" -#: lib/action.php:743 +#: lib/action.php:749 msgid "Contact" msgstr "Kontakt" -#: lib/action.php:745 +#: lib/action.php:751 #, fuzzy msgid "Badge" msgstr "Stups" -#: lib/action.php:773 +#: lib/action.php:779 msgid "StatusNet software license" msgstr "StatusNet-Software-Lizenz" -#: lib/action.php:776 +#: lib/action.php:782 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4302,12 +4712,12 @@ msgstr "" "**%%site.name%%** ist ein Microbloggingdienst von [%%site.broughtby%%](%%" "site.broughtbyurl%%)." -#: lib/action.php:778 +#: lib/action.php:784 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** ist ein Microbloggingdienst." -#: lib/action.php:780 +#: lib/action.php:786 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4318,34 +4728,56 @@ msgstr "" "(Version %s) betrieben, die unter der [GNU Affero General Public License]" "(http://www.fsf.org/licensing/licenses/agpl-3.0.html) erhältlich ist." -#: lib/action.php:794 +#: lib/action.php:801 msgid "Site content license" msgstr "StatusNet-Software-Lizenz" -#: lib/action.php:803 +#: lib/action.php:806 +#, php-format +msgid "Content and data of %1$s are private and confidential." +msgstr "" + +#: lib/action.php:811 +#, php-format +msgid "Content and data copyright by %1$s. All rights reserved." +msgstr "" + +#: lib/action.php:814 +msgid "Content and data copyright by contributors. All rights reserved." +msgstr "" + +#: lib/action.php:827 #, fuzzy msgid "All " msgstr "Alle " -#: lib/action.php:808 +#: lib/action.php:833 msgid "license." msgstr "Lizenz." -#: lib/action.php:1102 +#: lib/action.php:1132 msgid "Pagination" msgstr "Seitenerstellung" -#: lib/action.php:1111 +#: lib/action.php:1141 msgid "After" msgstr "Später" -#: lib/action.php:1119 +#: lib/action.php:1149 msgid "Before" msgstr "Vorher" -#: lib/action.php:1167 -msgid "There was a problem with your session token." -msgstr "Es gab ein Problem mit deinem Sessiontoken." +#: lib/activity.php:382 +msgid "Can't handle remote content yet." +msgstr "" + +#: lib/activity.php:410 +msgid "Can't handle embedded XML content yet." +msgstr "" + +#: lib/activity.php:414 +msgid "Can't handle embedded Base64 content yet." +msgstr "" #: lib/adminpanelaction.php:96 #, fuzzy @@ -4379,11 +4811,105 @@ msgstr "Bestätigung der E-Mail-Adresse" msgid "Design configuration" msgstr "SMS-Konfiguration" -#: lib/adminpanelaction.php:322 lib/adminpanelaction.php:327 +#: lib/adminpanelaction.php:322 +#, fuzzy +msgid "User configuration" +msgstr "SMS-Konfiguration" + +#: lib/adminpanelaction.php:327 +#, fuzzy +msgid "Access configuration" +msgstr "SMS-Konfiguration" + +#: lib/adminpanelaction.php:332 #, fuzzy msgid "Paths configuration" msgstr "SMS-Konfiguration" +#: lib/adminpanelaction.php:337 +#, fuzzy +msgid "Sessions configuration" +msgstr "SMS-Konfiguration" + +#: lib/apiauth.php:95 +msgid "API resource requires read-write access, but you only have read access." +msgstr "" + +#: lib/apiauth.php:273 +#, php-format +msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" +msgstr "" + +#: lib/applicationeditform.php:136 +msgid "Edit application" +msgstr "" + +#: lib/applicationeditform.php:184 +msgid "Icon for this application" +msgstr "" + +#: lib/applicationeditform.php:204 +#, fuzzy, php-format +msgid "Describe your application in %d characters" +msgstr "Beschreibe die Gruppe oder das Thema in 140 Zeichen" + +#: lib/applicationeditform.php:207 +#, fuzzy +msgid "Describe your application" +msgstr "Beschreibe die Gruppe oder das Thema in 140 Zeichen" + +#: lib/applicationeditform.php:216 +#, fuzzy +msgid "Source URL" +msgstr "Quellcode" + +#: lib/applicationeditform.php:218 +#, fuzzy +msgid "URL of the homepage of this application" +msgstr "URL der Homepage oder Blogs der Gruppe oder des Themas" + +#: lib/applicationeditform.php:224 +msgid "Organization responsible for this application" +msgstr "" + +#: lib/applicationeditform.php:230 +#, fuzzy +msgid "URL for the homepage of the organization" +msgstr "URL der Homepage oder Blogs der Gruppe oder des Themas" + +#: lib/applicationeditform.php:236 +msgid "URL to redirect to after authentication" +msgstr "" + +#: lib/applicationeditform.php:258 +msgid "Browser" +msgstr "" + +#: lib/applicationeditform.php:274 +msgid "Desktop" +msgstr "" + +#: lib/applicationeditform.php:275 +msgid "Type of application, browser or desktop" +msgstr "" + +#: lib/applicationeditform.php:297 +msgid "Read-only" +msgstr "" + +#: lib/applicationeditform.php:315 +msgid "Read-write" +msgstr "" + +#: lib/applicationeditform.php:316 +msgid "Default access for this application: read-only, or read-write" +msgstr "" + +#: lib/applicationlist.php:154 +#, fuzzy +msgid "Revoke" +msgstr "Entfernen" + #: lib/attachmentlist.php:87 msgid "Attachments" msgstr "Anhänge" @@ -4404,12 +4930,12 @@ msgstr "Nachrichten in denen dieser Anhang erscheint" msgid "Tags for this attachment" msgstr "Tags für diesen Anhang" -#: lib/authenticationplugin.php:182 lib/authenticationplugin.php:187 +#: lib/authenticationplugin.php:218 lib/authenticationplugin.php:223 #, fuzzy msgid "Password changing failed" msgstr "Passwort geändert" -#: lib/authenticationplugin.php:197 +#: lib/authenticationplugin.php:233 #, fuzzy msgid "Password changing is not allowed" msgstr "Passwort geändert" @@ -4559,81 +5085,90 @@ msgstr "Problem beim Speichern der Nachricht." msgid "Specify the name of the user to subscribe to" msgstr "Gib den Namen des Benutzers an, den du abonnieren möchtest" -#: lib/command.php:554 +#: lib/command.php:554 lib/command.php:589 +msgid "No such user" +msgstr "Unbekannter Benutzer." + +#: lib/command.php:561 #, php-format msgid "Subscribed to %s" msgstr "%s abonniert" -#: lib/command.php:575 +#: lib/command.php:582 lib/command.php:685 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:582 +#: lib/command.php:595 #, php-format msgid "Unsubscribed from %s" msgstr "%s nicht mehr abonniert" -#: lib/command.php:600 lib/command.php:623 +#: lib/command.php:613 lib/command.php:636 msgid "Command not yet implemented." msgstr "Befehl noch nicht implementiert." -#: lib/command.php:603 +#: lib/command.php:616 msgid "Notification off." msgstr "Benachrichtigung deaktiviert." -#: lib/command.php:605 +#: lib/command.php:618 msgid "Can't turn off notification." msgstr "Konnte Benachrichtigung nicht deaktivieren." -#: lib/command.php:626 +#: lib/command.php:639 msgid "Notification on." msgstr "Benachrichtigung aktiviert." -#: lib/command.php:628 +#: lib/command.php:641 msgid "Can't turn on notification." msgstr "Konnte Benachrichtigung nicht aktivieren." -#: lib/command.php:641 +#: lib/command.php:654 msgid "Login command is disabled" msgstr "" -#: lib/command.php:652 +#: lib/command.php:665 #, php-format msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "" -#: lib/command.php:668 +#: lib/command.php:692 +#, fuzzy, php-format +msgid "Unsubscribed %s" +msgstr "%s nicht mehr abonniert" + +#: lib/command.php:709 #, fuzzy msgid "You are not subscribed to anyone." msgstr "Du hast dieses Profil nicht abonniert." -#: lib/command.php:670 +#: lib/command.php:711 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "Du hast diese Benutzer bereits abonniert:" msgstr[1] "Du hast diese Benutzer bereits abonniert:" -#: lib/command.php:690 +#: lib/command.php:731 msgid "No one is subscribed to you." msgstr "Niemand hat Dich abonniert." -#: lib/command.php:692 +#: lib/command.php:733 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "Die Gegenseite konnte Dich nicht abonnieren." msgstr[1] "Die Gegenseite konnte Dich nicht abonnieren." -#: lib/command.php:712 +#: lib/command.php:753 msgid "You are not a member of any groups." msgstr "Du bist in keiner Gruppe Mitglied." -#: lib/command.php:714 +#: lib/command.php:755 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" -msgstr[0] "Du bist kein Mitglied dieser Gruppe." -msgstr[1] "Du bist kein Mitglied dieser Gruppe." +msgstr[0] "Du bist Mitglied dieser Gruppe:" +msgstr[1] "Du bist Mitglied dieser Gruppen:" -#: lib/command.php:728 +#: lib/command.php:769 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -4647,6 +5182,7 @@ msgid "" "d - direct message to user\n" "get - get last notice from user\n" "whois - get profile info on user\n" +"lose - force user to stop following you\n" "fav - add user's last notice as a 'fave'\n" "fav # - add notice with the given id as a 'fave'\n" "repeat # - repeat a notice with a given id\n" @@ -4674,19 +5210,19 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:131 +#: lib/common.php:136 msgid "No configuration file found. " msgstr "Keine Konfigurationsdatei gefunden." -#: lib/common.php:132 +#: lib/common.php:137 msgid "I looked for configuration files in the following places: " msgstr "Ich habe an folgenden Stellen nach Konfigurationsdateien gesucht: " -#: lib/common.php:134 +#: lib/common.php:139 msgid "You may wish to run the installer to fix this." msgstr "" -#: lib/common.php:135 +#: lib/common.php:140 #, fuzzy msgid "Go to the installer." msgstr "Auf der Seite anmelden" @@ -4703,6 +5239,15 @@ msgstr "Aktualisierungen via Instant Messenger (IM)" msgid "Updates by SMS" msgstr "Aktualisierungen via SMS" +#: lib/connectsettingsaction.php:120 +#, fuzzy +msgid "Connections" +msgstr "Verbinden" + +#: lib/connectsettingsaction.php:121 +msgid "Authorized connected applications" +msgstr "" + #: lib/dberroraction.php:60 msgid "Database error" msgstr "Datenbankfehler." @@ -4738,19 +5283,19 @@ msgstr "Zu Favoriten hinzufügen" #: lib/feed.php:85 msgid "RSS 1.0" -msgstr "" +msgstr "RSS 1.0" #: lib/feed.php:87 msgid "RSS 2.0" -msgstr "" +msgstr "RSS 2.0" #: lib/feed.php:89 msgid "Atom" -msgstr "" +msgstr "Atom" #: lib/feed.php:91 msgid "FOAF" -msgstr "" +msgstr "FOAF" #: lib/feedlist.php:64 msgid "Export data" @@ -4817,12 +5362,12 @@ msgid "Blocked" msgstr "Blockiert" #: lib/groupnav.php:102 -#, fuzzy, php-format +#, php-format msgid "%s blocked users" -msgstr "Benutzer blockieren" +msgstr "in %s blockierte Nutzer" #: lib/groupnav.php:108 -#, fuzzy, php-format +#, php-format msgid "Edit %s group properties" msgstr "%s Gruppeneinstellungen bearbeiten" @@ -4831,14 +5376,14 @@ msgid "Logo" msgstr "Logo" #: lib/groupnav.php:114 -#, fuzzy, php-format +#, php-format msgid "Add or edit %s logo" msgstr "%s Logo hinzufügen oder bearbeiten" #: lib/groupnav.php:120 -#, fuzzy, php-format +#, php-format msgid "Add or edit %s design" -msgstr "%s Logo hinzufügen oder bearbeiten" +msgstr "%s Design hinzufügen oder bearbeiten" #: lib/groupsbymemberssection.php:71 msgid "Groups with most members" @@ -4849,7 +5394,7 @@ msgid "Groups with most posts" msgstr "Gruppen mit den meisten Beiträgen" #: lib/grouptagcloudsection.php:56 -#, fuzzy, php-format +#, php-format msgid "Tags in %s group's notices" msgstr "Tags in den Nachrichten der Gruppe %s" @@ -4888,18 +5433,18 @@ msgstr "Unbekannter Dateityp" #: lib/imagefile.php:217 msgid "MB" -msgstr "" +msgstr "MB" #: lib/imagefile.php:219 msgid "kB" -msgstr "" +msgstr "kB" -#: lib/jabber.php:202 +#: lib/jabber.php:220 #, php-format msgid "[%s]" -msgstr "" +msgstr "[%s]" -#: lib/jabber.php:385 +#: lib/jabber.php:400 #, fuzzy, php-format msgid "Unknown inbox source %d." msgstr "Unbekannte Sprache „%s“" @@ -4913,14 +5458,12 @@ msgid "Leave" msgstr "Verlassen" #: lib/logingroupnav.php:80 -#, fuzzy msgid "Login with a username and password" -msgstr "Anmelden mit einem Benutzernamen und Passwort" +msgstr "Mit Nutzernamen und Passwort anmelden" #: lib/logingroupnav.php:86 -#, fuzzy msgid "Sign up for a new account" -msgstr "Für ein neues Konto registrieren" +msgstr "Registriere ein neues Nutzerkonto" #: lib/mail.php:172 msgid "Email address confirmation" @@ -4988,11 +5531,9 @@ msgstr "" "$s ändern.\n" #: lib/mail.php:258 -#, fuzzy, php-format +#, php-format msgid "Bio: %s" -msgstr "" -"Biografie: %s\n" -"\n" +msgstr "Biografie: %s" #: lib/mail.php:286 #, php-format @@ -5158,8 +5699,7 @@ msgstr "" "schicken, um sie in eine Konversation zu verwickeln. Andere Leute können Dir " "Nachrichten schicken, die nur Du sehen kannst." -#: lib/mailbox.php:227 lib/noticelist.php:477 -#, fuzzy +#: lib/mailbox.php:227 lib/noticelist.php:482 msgid "from" msgstr "von" @@ -5180,39 +5720,45 @@ msgid "Sorry, no incoming email allowed." msgstr "Sorry, keinen eingehenden E-Mails gestattet." #: lib/mailhandler.php:228 -#, fuzzy, php-format +#, php-format msgid "Unsupported message type: %s" -msgstr "Bildformat wird nicht unterstützt." +msgstr "Nachrichten-Typ %s wird nicht unterstützt." #: lib/mediafile.php:98 lib/mediafile.php:123 msgid "There was a database error while saving your file. Please try again." msgstr "" +"Beim Speichern der Datei trat ein Datenbank Fehler auf. Bitte versuche es " +"noch einmal." #: lib/mediafile.php:142 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" +"Die Größe der hoch geladenen Datei überschreitet die upload_max_filesize " +"Angabe in der php.ini." #: lib/mediafile.php:147 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" +"Die Größe der hoch geladenen Datei überschreitet die MAX_FILE_SIZE Angabe, " +"die im HTML Formular angegeben wurde." #: lib/mediafile.php:152 msgid "The uploaded file was only partially uploaded." -msgstr "" +msgstr "Die Datei wurde nur teilweise auf den Server geladen." #: lib/mediafile.php:159 msgid "Missing a temporary folder." -msgstr "" +msgstr "Kein temporäres Verzeichnis gefunden." #: lib/mediafile.php:162 msgid "Failed to write file to disk." -msgstr "" +msgstr "Konnte die Datei nicht auf die Festplatte schreiben." #: lib/mediafile.php:165 msgid "File upload stopped by extension." -msgstr "" +msgstr "Upload der Datei wurde wegen der Dateiendung gestoppt." #: lib/mediafile.php:179 lib/mediafile.php:216 msgid "File exceeds user's quota." @@ -5238,7 +5784,6 @@ msgid "%s is not a supported file type on this server." msgstr "" #: lib/messageform.php:120 -#, fuzzy msgid "Send a direct notice" msgstr "Versende eine direkte Nachricht" @@ -5247,14 +5792,12 @@ msgid "To" msgstr "An" #: lib/messageform.php:159 lib/noticeform.php:185 -#, fuzzy msgid "Available characters" msgstr "Verfügbare Zeichen" #: lib/noticeform.php:160 -#, fuzzy msgid "Send a notice" -msgstr "Nachricht versenden" +msgstr "Nachricht senden" #: lib/noticeform.php:173 #, php-format @@ -5270,72 +5813,63 @@ msgid "Attach a file" msgstr "" #: lib/noticeform.php:212 -#, fuzzy msgid "Share my location" -msgstr "Konnte Tags nicht speichern." +msgstr "Teile meinen Aufenthaltsort" #: lib/noticeform.php:215 -#, fuzzy msgid "Do not share my location" -msgstr "Konnte Tags nicht speichern." +msgstr "Teile meinen Aufenthaltsort nicht" #: lib/noticeform.php:216 -msgid "Hide this info" -msgstr "" - -#: lib/noticeform.php:217 msgid "" "Sorry, retrieving your geo location is taking longer than expected, please " "try again later" msgstr "" -#: lib/noticelist.php:428 +#: lib/noticelist.php:429 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "" -#: lib/noticelist.php:429 -#, fuzzy +#: lib/noticelist.php:430 msgid "N" -msgstr "Nein" +msgstr "N" -#: lib/noticelist.php:429 +#: lib/noticelist.php:430 msgid "S" -msgstr "" +msgstr "S" -#: lib/noticelist.php:430 +#: lib/noticelist.php:431 msgid "E" -msgstr "" +msgstr "O" -#: lib/noticelist.php:430 +#: lib/noticelist.php:431 msgid "W" -msgstr "" +msgstr "W" -#: lib/noticelist.php:436 +#: lib/noticelist.php:438 msgid "at" msgstr "" -#: lib/noticelist.php:531 +#: lib/noticelist.php:558 msgid "in context" msgstr "im Zusammenhang" -#: lib/noticelist.php:556 -#, fuzzy +#: lib/noticelist.php:583 msgid "Repeated by" -msgstr "Erstellt" +msgstr "Wiederholt von" -#: lib/noticelist.php:585 +#: lib/noticelist.php:610 msgid "Reply to this notice" msgstr "Auf diese Nachricht antworten" -#: lib/noticelist.php:586 +#: lib/noticelist.php:611 msgid "Reply" msgstr "Antworten" -#: lib/noticelist.php:628 -#, fuzzy +#: lib/noticelist.php:655 msgid "Notice repeated" -msgstr "Nachricht gelöscht." +msgstr "Nachricht wiederholt" #: lib/nudgeform.php:116 msgid "Nudge this user" @@ -5366,12 +5900,7 @@ msgstr "Fehler beim Einfügen des entfernten Profils" msgid "Duplicate notice" msgstr "Notiz löschen" -#: lib/oauthstore.php:466 lib/subs.php:48 -#, fuzzy -msgid "You have been banned from subscribing." -msgstr "Dieser Benutzer erlaubt dir nicht ihn zu abonnieren." - -#: lib/oauthstore.php:491 +#: lib/oauthstore.php:490 msgid "Couldn't insert new subscription." msgstr "Konnte neues Abonnement nicht eintragen." @@ -5387,24 +5916,24 @@ msgstr "Antworten" msgid "Favorites" msgstr "Favoriten" -#: lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "Posteingang" -#: lib/personalgroupnav.php:125 +#: lib/personalgroupnav.php:126 msgid "Your incoming messages" msgstr "Deine eingehenden Nachrichten" -#: lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 msgid "Outbox" msgstr "Postausgang" -#: lib/personalgroupnav.php:130 +#: lib/personalgroupnav.php:131 msgid "Your sent messages" msgstr "Deine gesendeten Nachrichten" #: lib/personaltagcloudsection.php:56 -#, fuzzy, php-format +#, php-format msgid "Tags in %s's notices" msgstr "Tags in %ss Nachrichten" @@ -5471,24 +6000,24 @@ msgid "Popular" msgstr "Beliebt" #: lib/repeatform.php:107 -#, fuzzy msgid "Repeat this notice?" -msgstr "Auf diese Nachricht antworten" +msgstr "Diese Nachricht wiederholen?" #: lib/repeatform.php:132 -#, fuzzy msgid "Repeat this notice" -msgstr "Auf diese Nachricht antworten" +msgstr "Diese Nachricht wiederholen" + +#: lib/router.php:665 +msgid "No single user defined for single-user mode." +msgstr "" #: lib/sandboxform.php:67 -#, fuzzy msgid "Sandbox" -msgstr "Posteingang" +msgstr "Spielwiese" #: lib/sandboxform.php:78 -#, fuzzy msgid "Sandbox this user" -msgstr "Benutzer freigeben" +msgstr "Diesen Nutzer auf die Spielwiese setzen" #: lib/searchaction.php:120 msgid "Search site" @@ -5528,14 +6057,12 @@ msgid "More..." msgstr "" #: lib/silenceform.php:67 -#, fuzzy msgid "Silence" -msgstr "Seitennachricht" +msgstr "Stummschalten" #: lib/silenceform.php:78 -#, fuzzy msgid "Silence this user" -msgstr "Benutzer blockieren" +msgstr "Nutzer verstummen lassen" #: lib/subgroupnav.php:83 #, php-format @@ -5552,36 +6079,6 @@ msgstr "Leute, die %s abonniert haben" msgid "Groups %s is a member of" msgstr "Gruppen in denen %s Mitglied ist" -#: lib/subs.php:52 -msgid "Already subscribed!" -msgstr "Bereits abonniert!" - -#: lib/subs.php:56 -msgid "User has blocked you." -msgstr "Dieser Benutzer hat dich blockiert." - -#: lib/subs.php:63 -msgid "Could not subscribe." -msgstr "Konnte nicht abbonieren." - -#: lib/subs.php:82 -msgid "Could not subscribe other to you." -msgstr "Die Gegenseite konnte Dich nicht abonnieren." - -#: lib/subs.php:137 -#, fuzzy -msgid "Not subscribed!" -msgstr "Nicht abonniert!" - -#: lib/subs.php:142 -#, fuzzy -msgid "Couldn't delete self-subscription." -msgstr "Konnte Abonnement nicht löschen." - -#: lib/subs.php:158 -msgid "Couldn't delete subscription." -msgstr "Konnte Abonnement nicht löschen." - #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -5602,19 +6099,17 @@ msgstr "Top-Schreiber" #: lib/unsandboxform.php:69 msgid "Unsandbox" -msgstr "" +msgstr "Von Spielwiese freigeben" #: lib/unsandboxform.php:80 -#, fuzzy msgid "Unsandbox this user" msgstr "Benutzer freigeben" #: lib/unsilenceform.php:67 msgid "Unsilence" -msgstr "" +msgstr "Stummschalten aufheben" #: lib/unsilenceform.php:78 -#, fuzzy msgid "Unsilence this user" msgstr "Benutzer freigeben" @@ -5634,67 +6129,67 @@ msgstr "Avatar bearbeiten" msgid "User actions" msgstr "Benutzeraktionen" -#: lib/userprofile.php:248 +#: lib/userprofile.php:251 msgid "Edit profile settings" msgstr "Profil Einstellungen ändern" -#: lib/userprofile.php:249 +#: lib/userprofile.php:252 msgid "Edit" -msgstr "" +msgstr "Bearbeiten" -#: lib/userprofile.php:272 +#: lib/userprofile.php:275 msgid "Send a direct message to this user" msgstr "Direkte Nachricht an Benutzer verschickt" -#: lib/userprofile.php:273 +#: lib/userprofile.php:276 msgid "Message" msgstr "Nachricht" -#: lib/userprofile.php:311 +#: lib/userprofile.php:314 msgid "Moderate" -msgstr "" +msgstr "Moderieren" -#: lib/util.php:877 +#: lib/util.php:952 msgid "a few seconds ago" msgstr "vor wenigen Sekunden" -#: lib/util.php:879 +#: lib/util.php:954 msgid "about a minute ago" msgstr "vor einer Minute" -#: lib/util.php:881 +#: lib/util.php:956 #, php-format msgid "about %d minutes ago" msgstr "vor %d Minuten" -#: lib/util.php:883 +#: lib/util.php:958 msgid "about an hour ago" msgstr "vor einer Stunde" -#: lib/util.php:885 +#: lib/util.php:960 #, php-format msgid "about %d hours ago" msgstr "vor %d Stunden" -#: lib/util.php:887 +#: lib/util.php:962 msgid "about a day ago" msgstr "vor einem Tag" -#: lib/util.php:889 +#: lib/util.php:964 #, php-format msgid "about %d days ago" msgstr "vor %d Tagen" -#: lib/util.php:891 +#: lib/util.php:966 msgid "about a month ago" msgstr "vor einem Monat" -#: lib/util.php:893 +#: lib/util.php:968 #, php-format msgid "about %d months ago" msgstr "vor %d Monaten" -#: lib/util.php:895 +#: lib/util.php:970 msgid "about a year ago" msgstr "vor einem Jahr" @@ -5708,7 +6203,8 @@ msgstr "%s ist keine gültige Farbe!" msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "%s ist keine gültige Farbe! Verwenden Sie 3 oder 6 Hex-Zeichen." -#: scripts/xmppdaemon.php:301 -#, fuzzy, php-format +#: lib/xmppmanager.php:402 +#, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." -msgstr "Nachricht zu lang - maximal %d Zeichen erlaubt, du hast %d gesendet" +msgstr "" +"Nachricht zu lang - maximal %1$d Zeichen erlaubt, du hast %2$d gesendet." diff --git a/locale/el/LC_MESSAGES/statusnet.po b/locale/el/LC_MESSAGES/statusnet.po index 2f9257945b..6ff718d453 100644 --- a/locale/el/LC_MESSAGES/statusnet.po +++ b/locale/el/LC_MESSAGES/statusnet.po @@ -9,21 +9,76 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-01-13 22:04+0000\n" -"PO-Revision-Date: 2010-01-13 22:05:00+0000\n" +"POT-Creation-Date: 2010-02-24 23:49+0000\n" +"PO-Revision-Date: 2010-02-24 23:50:24+0000\n" "Language-Team: Greek\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha (r61027); Translate extension (2010-01-04)\n" +"X-Generator: MediaWiki 1.17alpha (r62925); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: el\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: actions/accessadminpanel.php:54 lib/adminpanelaction.php:326 +msgid "Access" +msgstr "Πρόσβαση" + +#: actions/accessadminpanel.php:65 +#, fuzzy +msgid "Site access settings" +msgstr "Ρυθμίσεις OpenID" + +#: actions/accessadminpanel.php:158 +#, fuzzy +msgid "Registration" +msgstr "Περιγραφή" + +#: actions/accessadminpanel.php:161 +msgid "Private" +msgstr "" + +#: actions/accessadminpanel.php:163 +msgid "Prohibit anonymous users (not logged in) from viewing site?" +msgstr "" + +#: actions/accessadminpanel.php:167 +msgid "Invite only" +msgstr "" + +#: actions/accessadminpanel.php:169 +msgid "Make registration invitation only." +msgstr "" + +#: actions/accessadminpanel.php:173 +msgid "Closed" +msgstr "" + +#: actions/accessadminpanel.php:175 +msgid "Disable new registrations." +msgstr "" + +#: actions/accessadminpanel.php:189 actions/designadminpanel.php:586 +#: actions/emailsettings.php:195 actions/imsettings.php:163 +#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 +#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 +#: actions/siteadminpanel.php:336 actions/smssettings.php:181 +#: actions/subscriptions.php:208 actions/tagother.php:154 +#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 lib/designsettings.php:256 +#: lib/groupeditform.php:202 +msgid "Save" +msgstr "" + +#: actions/accessadminpanel.php:189 +#, fuzzy +msgid "Save access settings" +msgstr "Ρυθμίσεις OpenID" + #: 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 "Δεν υπάρχει τέτοιο σελίδα." +msgstr "Δεν υπάρχει τέτοια σελίδα" #: actions/all.php:74 actions/allrss.php:68 #: actions/apiaccountupdatedeliverydevice.php:113 @@ -34,25 +89,29 @@ msgstr "Δεν υπάρχει τέτοιο σελίδα." #: 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:144 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apistatusesupdate.php:148 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:78 #: actions/apitimelinehome.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/otp.php:76 #: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154 -#: actions/replies.php:73 actions/repliesrss.php:38 +#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 #: 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:302 lib/command.php:355 #: lib/command.php:401 lib/command.php:462 lib/command.php:518 #: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 -#: lib/subs.php:34 lib/subs.php:125 msgid "No such user." msgstr "Κανένας τέτοιος χρήστης." +#: actions/all.php:84 +#, fuzzy, php-format +msgid "%1$s and friends, page %2$d" +msgstr "%s και οι φίλοι του/της" + #: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 -#: actions/apitimelinefriends.php:115 actions/apitimelinehome.php:115 +#: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" @@ -93,7 +152,7 @@ msgid "" "his or her attention](%%%%action.newnotice%%%%?status_textarea=%3$s)." msgstr "" -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211 #, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " @@ -104,8 +163,8 @@ msgstr "" msgid "You and friends" msgstr "Εσείς και οι φίλοι σας" -#: actions/allrss.php:119 actions/apitimelinefriends.php:122 -#: actions/apitimelinehome.php:122 +#: actions/allrss.php:119 actions/apitimelinefriends.php:119 +#: actions/apitimelinehome.php:120 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "" @@ -115,23 +174,23 @@ msgstr "" #: actions/apiaccountupdateprofile.php:97 #: actions/apiaccountupdateprofilebackgroundimage.php:94 #: actions/apiaccountupdateprofilecolors.php:118 -#: 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:136 actions/apigroupismember.php:114 -#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 -#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 -#: actions/apigroupmembership.php:106 actions/apigroupshow.php:105 -#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 -#: actions/apistatusesretweets.php:112 actions/apistatusesshow.php:108 -#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93 -#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:146 -#: actions/apitimelinefriends.php:156 actions/apitimelinegroup.php:150 -#: actions/apitimelinehome.php:156 actions/apitimelinementions.php:151 -#: actions/apitimelinepublic.php:131 actions/apitimelineretweetedbyme.php:122 +#: actions/apiaccountverifycredentials.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:128 actions/apigroupcreate.php:136 +#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 +#: actions/apigroupleave.php:141 actions/apigrouplist.php:132 +#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 +#: actions/apigroupshow.php:115 actions/apihelptest.php:88 +#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 +#: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 #: actions/apitimelineretweetedtome.php:121 -#: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141 -#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 +#: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 +#: actions/apitimelineuser.php:207 actions/apiusershow.php:101 #, fuzzy msgid "API method not found." msgstr "Η μέθοδος του ΑΡΙ δε βρέθηκε!" @@ -146,7 +205,7 @@ msgstr "Η μέθοδος του ΑΡΙ δε βρέθηκε!" #: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 #: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 #: actions/apigroupleave.php:91 actions/apistatusesretweet.php:65 -#: actions/apistatusesupdate.php:114 +#: actions/apistatusesupdate.php:118 msgid "This method requires a POST." msgstr "" @@ -177,8 +236,9 @@ msgstr "Απέτυχε η αποθήκευση του προφίλ." #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:97 -#: actions/apistatusesupdate.php:127 actions/avatarsettings.php:257 -#: actions/designadminpanel.php:122 actions/newnotice.php:94 +#: actions/apistatusesupdate.php:131 actions/avatarsettings.php:257 +#: actions/designadminpanel.php:122 actions/editapplication.php:118 +#: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 #, php-format msgid "" @@ -204,7 +264,7 @@ msgstr "Απέτυχε η ενημέρωση του χρήστη." #: actions/apiblockcreate.php:105 msgid "You cannot block yourself!" -msgstr "Δεν μπορείτε να εμποδίσετε τον εαυτό σας!" +msgstr "Δεν μπορείτε να κάνετε φραγή στον εαυτό σας!" #: actions/apiblockcreate.php:126 msgid "Block user failed." @@ -296,12 +356,12 @@ msgstr "Δεν μπορείτε να εμποδίσετε τον εαυτό σα msgid "Two user ids or screen_names must be supplied." msgstr "" -#: actions/apifriendshipsshow.php:135 +#: actions/apifriendshipsshow.php:134 #, fuzzy msgid "Could not determine source user." msgstr "Απέτυχε η ενημέρωση του χρήστη." -#: actions/apifriendshipsshow.php:143 +#: actions/apifriendshipsshow.php:142 #, fuzzy msgid "Could not find target user." msgstr "Απέτυχε η εύρεση οποιασδήποτε κατάστασης." @@ -324,7 +384,8 @@ msgstr "Το ψευδώνυμο είναι ήδη σε χρήση. Δοκιμά msgid "Not a valid nickname." msgstr "" -#: actions/apigroupcreate.php:196 actions/editgroup.php:195 +#: actions/apigroupcreate.php:196 actions/editapplication.php:215 +#: actions/editgroup.php:195 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:217 msgid "Homepage is not a valid URL." @@ -336,7 +397,8 @@ msgstr "Η αρχική σελίδα δεν είναι έγκυρο URL." msgid "Full name is too long (max 255 chars)." msgstr "Το ονοματεπώνυμο είναι πολύ μεγάλο (μέγιστο 255 χαρακτ.)." -#: actions/apigroupcreate.php:213 +#: actions/apigroupcreate.php:213 actions/editapplication.php:190 +#: actions/newapplication.php:172 #, php-format msgid "Description is too long (max %d chars)." msgstr "Η περιγραφή είναι πολύ μεγάλη (μέγιστο %d χαρακτ.)." @@ -372,9 +434,9 @@ msgstr "" #: actions/apigroupismember.php:95 actions/apigroupjoin.php:104 #: actions/apigroupleave.php:104 actions/apigroupmembership.php:91 -#: actions/apigroupshow.php:90 actions/apitimelinegroup.php:91 +#: actions/apigroupshow.php:82 actions/apitimelinegroup.php:91 msgid "Group not found!" -msgstr "Ομάδα δεν βρέθηκε!" +msgstr "Η ομάδα δεν βρέθηκε!" #: actions/apigroupjoin.php:110 actions/joingroup.php:90 msgid "You are already a member of that group." @@ -413,6 +475,113 @@ msgstr "" msgid "groups on %s" msgstr "ομάδες του χρήστη %s" +#: actions/apioauthauthorize.php:101 +msgid "No oauth_token parameter provided." +msgstr "" + +#: actions/apioauthauthorize.php:106 +#, fuzzy +msgid "Invalid token." +msgstr "Μήνυμα" + +#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 +#: actions/deletenotice.php:157 actions/disfavor.php:74 +#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54 +#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupunblock.php:66 actions/imsettings.php:206 +#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 +#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 +#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135 +#: actions/othersettings.php:145 actions/passwordsettings.php:138 +#: actions/profilesettings.php:194 actions/recoverpassword.php:337 +#: actions/register.php:165 actions/remotesubscribe.php:77 +#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 +#: actions/subscribe.php:86 actions/tagother.php:166 +#: 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/apioauthauthorize.php:135 +msgid "Invalid nickname / password!" +msgstr "" + +#: actions/apioauthauthorize.php:159 +#, fuzzy +msgid "Database error deleting OAuth application user." +msgstr "Σφάλμα στη βάση δεδομένων κατά την εισαγωγή hashtag: %s" + +#: actions/apioauthauthorize.php:185 +#, fuzzy +msgid "Database error inserting OAuth application user." +msgstr "Σφάλμα στη βάση δεδομένων κατά την εισαγωγή hashtag: %s" + +#: actions/apioauthauthorize.php:214 +#, php-format +msgid "" +"The request token %s has been authorized. Please exchange it for an access " +"token." +msgstr "" + +#: actions/apioauthauthorize.php:227 +#, php-format +msgid "The request token %s has been denied and revoked." +msgstr "" + +#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 +#: actions/designadminpanel.php:103 actions/editapplication.php:139 +#: actions/emailsettings.php:256 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/newapplication.php:121 +#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 +#: actions/smssettings.php:248 lib/designsettings.php:304 +msgid "Unexpected form submission." +msgstr "" + +#: actions/apioauthauthorize.php:259 +msgid "An application would like to connect to your account" +msgstr "" + +#: actions/apioauthauthorize.php:276 +msgid "Allow or deny access" +msgstr "" + +#: actions/apioauthauthorize.php:292 +#, php-format +msgid "" +"The application %1$s by %2$s would like " +"the ability to %3$s your %4$s account data. You should only " +"give access to your %4$s account to third parties you trust." +msgstr "" + +#: actions/apioauthauthorize.php:310 lib/action.php:441 +msgid "Account" +msgstr "Λογαριασμός" + +#: actions/apioauthauthorize.php:313 actions/login.php:230 +#: actions/profilesettings.php:106 actions/register.php:424 +#: actions/showgroup.php:236 actions/tagother.php:94 +#: actions/userauthorization.php:145 lib/groupeditform.php:152 +#: lib/userprofile.php:131 +msgid "Nickname" +msgstr "Ψευδώνυμο" + +#: actions/apioauthauthorize.php:316 actions/login.php:233 +#: actions/register.php:429 lib/accountsettingsaction.php:116 +msgid "Password" +msgstr "Κωδικός" + +#: actions/apioauthauthorize.php:328 +msgid "Deny" +msgstr "" + +#: actions/apioauthauthorize.php:334 +msgid "Allow" +msgstr "" + +#: actions/apioauthauthorize.php:351 +msgid "Allow or deny access to your account information." +msgstr "" + #: actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." msgstr "" @@ -438,23 +607,23 @@ msgstr "Αδυναμία διαγραφής αυτού του μηνύματος #: actions/apistatusesshow.php:138 msgid "Status deleted." -msgstr "Η κατάσταση διαγράφεται." +msgstr "Η κατάσταση διεγράφη." #: actions/apistatusesshow.php:144 msgid "No status with that ID found." msgstr "" -#: actions/apistatusesupdate.php:157 actions/newnotice.php:155 +#: actions/apistatusesupdate.php:161 actions/newnotice.php:155 #: lib/mailhandler.php:60 #, php-format msgid "That's too long. Max notice size is %d chars." msgstr "" -#: actions/apistatusesupdate.php:198 +#: actions/apistatusesupdate.php:202 msgid "Not found" msgstr "" -#: actions/apistatusesupdate.php:221 actions/newnotice.php:178 +#: actions/apistatusesupdate.php:225 actions/newnotice.php:178 #, php-format msgid "Max notice size is %d chars, including attachment URL." msgstr "" @@ -468,7 +637,7 @@ msgstr "" msgid "%1$s / Favorites from %2$s" msgstr "" -#: actions/apitimelinefavorites.php:120 +#: actions/apitimelinefavorites.php:117 #, php-format msgid "%1$s updates favorited by %2$s / %2$s." msgstr "" @@ -479,7 +648,7 @@ msgstr "" msgid "%s timeline" msgstr "χρονοδιάγραμμα του χρήστη %s" -#: actions/apitimelinegroup.php:117 actions/apitimelineuser.php:126 +#: actions/apitimelinegroup.php:114 actions/apitimelineuser.php:126 #: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" @@ -495,27 +664,22 @@ msgstr "" msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "" -#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "" -#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "" -#: actions/apitimelineretweetedbyme.php:112 -#, php-format -msgid "Repeated by %s" -msgstr "" - #: actions/apitimelineretweetedtome.php:111 #, php-format msgid "Repeated to %s" msgstr "" -#: actions/apitimelineretweetsofme.php:112 +#: actions/apitimelineretweetsofme.php:114 #, php-format msgid "Repeats of %s" msgstr "" @@ -525,7 +689,7 @@ msgstr "" msgid "Notices tagged with %s" msgstr "" -#: actions/apitimelinetag.php:108 actions/tagrss.php:64 +#: actions/apitimelinetag.php:104 actions/tagrss.php:64 #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "" @@ -585,8 +749,8 @@ msgstr "" msgid "Preview" msgstr "" -#: actions/avatarsettings.php:149 lib/deleteuserform.php:66 -#: lib/noticelist.php:611 +#: actions/avatarsettings.php:149 actions/showapplication.php:252 +#: lib/deleteuserform.php:66 lib/noticelist.php:637 msgid "Delete" msgstr "Διαγραφή" @@ -598,29 +762,6 @@ msgstr "" msgid "Crop" msgstr "" -#: actions/avatarsettings.php:268 actions/deletenotice.php:157 -#: actions/disfavor.php:74 actions/emailsettings.php:238 actions/favor.php:75 -#: actions/geocode.php:50 actions/groupblock.php:66 actions/grouplogo.php:309 -#: actions/groupunblock.php:66 actions/imsettings.php:206 -#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 -#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 -#: actions/othersettings.php:145 actions/passwordsettings.php:138 -#: actions/profilesettings.php:194 actions/recoverpassword.php:337 -#: actions/register.php:165 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 -#: actions/subscribe.php:46 actions/tagother.php:166 -#: 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/avatarsettings.php:281 actions/designadminpanel.php:103 -#: actions/emailsettings.php:256 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/avatarsettings.php:328 msgid "Pick a square area of the image to be your avatar" msgstr "" @@ -658,8 +799,9 @@ msgid "" "will not be notified of any @-replies from them." msgstr "" -#: actions/block.php:143 actions/deletenotice.php:145 -#: actions/deleteuser.php:147 actions/groupblock.php:178 +#: actions/block.php:143 actions/deleteapplication.php:153 +#: actions/deletenotice.php:145 actions/deleteuser.php:147 +#: actions/groupblock.php:178 msgid "No" msgstr "Όχι" @@ -668,13 +810,13 @@ msgstr "Όχι" msgid "Do not block this user" msgstr "Αδυναμία διαγραφής αυτού του μηνύματος." -#: actions/block.php:144 actions/deletenotice.php:146 -#: actions/deleteuser.php:148 actions/groupblock.php:179 -#: lib/repeatform.php:132 +#: actions/block.php:144 actions/deleteapplication.php:158 +#: actions/deletenotice.php:146 actions/deleteuser.php:148 +#: actions/groupblock.php:179 lib/repeatform.php:132 msgid "Yes" -msgstr "Ναί" +msgstr "Ναι" -#: actions/block.php:144 actions/groupmembers.php:346 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80 msgid "Block this user" msgstr "" @@ -758,7 +900,8 @@ msgid "Couldn't delete email confirmation." msgstr "Απέτυχε η διαγραφή email επιβεβαίωσης." #: actions/confirmaddress.php:144 -msgid "Confirm Address" +#, fuzzy +msgid "Confirm address" msgstr "Επιβεβαίωση διεύθυνσης" #: actions/confirmaddress.php:159 @@ -775,10 +918,54 @@ msgstr "Συζήτηση" msgid "Notices" msgstr "" +#: actions/deleteapplication.php:63 +#, fuzzy +msgid "You must be logged in to delete an application." +msgstr "Αδύνατη η αποθήκευση του προφίλ." + +#: actions/deleteapplication.php:71 +#, fuzzy +msgid "Application not found." +msgstr "Ο κωδικός επιβεβαίωσης δεν βρέθηκε." + +#: actions/deleteapplication.php:78 actions/editapplication.php:77 +#: actions/showapplication.php:94 +#, fuzzy +msgid "You are not the owner of this application." +msgstr "Ομάδες με τα περισσότερα μέλη" + +#: actions/deleteapplication.php:102 actions/editapplication.php:127 +#: actions/newapplication.php:110 actions/showapplication.php:118 +#: lib/action.php:1197 +msgid "There was a problem with your session token." +msgstr "" + +#: actions/deleteapplication.php:123 actions/deleteapplication.php:147 +#, fuzzy +msgid "Delete application" +msgstr "Δεν υπάρχει τέτοιο σελίδα." + +#: actions/deleteapplication.php:149 +msgid "" +"Are you sure you want to delete this application? This will clear all data " +"about the application from the database, including all existing user " +"connections." +msgstr "" + +#: actions/deleteapplication.php:156 +#, fuzzy +msgid "Do not delete this application" +msgstr "Αδυναμία διαγραφής αυτού του μηνύματος." + +#: actions/deleteapplication.php:160 +#, fuzzy +msgid "Delete this application" +msgstr "Περιγράψτε την ομάδα ή το θέμα" + #: 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/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 #: lib/adminpanelaction.php:72 lib/profileformaction.php:63 #: lib/settingsaction.php:72 @@ -809,7 +996,7 @@ msgstr "Είσαι σίγουρος ότι θες να διαγράψεις αυ msgid "Do not delete this notice" msgstr "Αδυναμία διαγραφής αυτού του μηνύματος." -#: actions/deletenotice.php:146 lib/noticelist.php:611 +#: actions/deletenotice.php:146 lib/noticelist.php:637 msgid "Delete this notice" msgstr "" @@ -941,16 +1128,6 @@ msgstr "" msgid "Reset back to default" msgstr "" -#: actions/designadminpanel.php:586 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 -#: actions/pathsadminpanel.php:324 actions/profilesettings.php:174 -#: actions/siteadminpanel.php:388 actions/smssettings.php:181 -#: actions/subscriptions.php:203 actions/tagother.php:154 -#: actions/useradminpanel.php:313 lib/designsettings.php:256 -#: lib/groupeditform.php:202 -msgid "Save" -msgstr "" - #: actions/designadminpanel.php:587 lib/designsettings.php:257 msgid "Save design" msgstr "" @@ -963,10 +1140,84 @@ msgstr "" msgid "Add to favorites" msgstr "" -#: actions/doc.php:69 -msgid "No such document." +#: actions/doc.php:158 +#, php-format +msgid "No such document \"%s\"" msgstr "" +#: actions/editapplication.php:54 +#, fuzzy +msgid "Edit Application" +msgstr "Δεν υπάρχει τέτοιο σελίδα." + +#: actions/editapplication.php:66 +msgid "You must be logged in to edit an application." +msgstr "" + +#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:166 +#: actions/showapplication.php:87 +#, fuzzy +msgid "No such application." +msgstr "Δεν υπάρχει τέτοιο σελίδα." + +#: actions/editapplication.php:161 +msgid "Use this form to edit your application." +msgstr "" + +#: actions/editapplication.php:177 actions/newapplication.php:159 +msgid "Name is required." +msgstr "" + +#: actions/editapplication.php:180 actions/newapplication.php:165 +#, fuzzy +msgid "Name is too long (max 255 chars)." +msgstr "Το ονοματεπώνυμο είναι πολύ μεγάλο (μέγιστο 255 χαρακτ.)." + +#: actions/editapplication.php:183 actions/newapplication.php:162 +#, fuzzy +msgid "Name already in use. Try another one." +msgstr "Το ψευδώνυμο είναι ήδη σε χρήση. Δοκιμάστε κάποιο άλλο." + +#: actions/editapplication.php:186 actions/newapplication.php:168 +#, fuzzy +msgid "Description is required." +msgstr "Περιγραφή" + +#: actions/editapplication.php:194 +msgid "Source URL is too long." +msgstr "" + +#: actions/editapplication.php:200 actions/newapplication.php:185 +#, fuzzy +msgid "Source URL is not valid." +msgstr "Η αρχική σελίδα δεν είναι έγκυρο URL." + +#: actions/editapplication.php:203 actions/newapplication.php:188 +msgid "Organization is required." +msgstr "" + +#: actions/editapplication.php:206 actions/newapplication.php:191 +#, fuzzy +msgid "Organization is too long (max 255 chars)." +msgstr "Η τοποθεσία είναι πολύ μεγάλη (μέγιστο 255 χαρακτ.)." + +#: actions/editapplication.php:209 actions/newapplication.php:194 +msgid "Organization homepage is required." +msgstr "" + +#: actions/editapplication.php:218 actions/newapplication.php:206 +msgid "Callback is too long." +msgstr "" + +#: actions/editapplication.php:225 actions/newapplication.php:215 +msgid "Callback URL is not valid." +msgstr "" + +#: actions/editapplication.php:258 +#, fuzzy +msgid "Could not update application." +msgstr "Αδύνατη η αποθήκευση του προφίλ." + #: actions/editgroup.php:56 #, php-format msgid "Edit %s group" @@ -995,7 +1246,7 @@ msgstr "Το βιογραφικό είναι πολύ μεγάλο (μέγιστ msgid "Could not update group." msgstr "Αδύνατη η αποθήκευση του προφίλ." -#: actions/editgroup.php:259 classes/User_group.php:390 +#: actions/editgroup.php:259 classes/User_group.php:433 #, fuzzy msgid "Could not create aliases." msgstr "Αδύνατη η αποθήκευση του προφίλ." @@ -1039,7 +1290,8 @@ msgstr "" "φάκελο spam!) για μήνυμα με περαιτέρω οδηγίες. " #: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 +#: actions/smssettings.php:126 lib/applicationeditform.php:331 +#: lib/applicationeditform.php:332 msgid "Cancel" msgstr "Ακύρωση" @@ -1120,7 +1372,7 @@ msgid "Cannot normalize that email address" msgstr "Αδυναμία κανονικοποίησης αυτής της email διεύθυνσης" #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:157 +#: actions/siteadminpanel.php:143 msgid "Not a valid email address." msgstr "" @@ -1132,7 +1384,7 @@ msgstr "" msgid "That email address already belongs to another user." msgstr "" -#: actions/emailsettings.php:353 actions/imsettings.php:317 +#: actions/emailsettings.php:353 actions/imsettings.php:319 #: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." msgstr "Απέτυχε η εισαγωγή κωδικού επιβεβαίωσης." @@ -1194,7 +1446,7 @@ msgstr "" msgid "Disfavor favorite" msgstr "" -#: actions/favorited.php:65 lib/popularnoticesection.php:88 +#: actions/favorited.php:65 lib/popularnoticesection.php:91 #: lib/publicgroupnav.php:93 msgid "Popular notices" msgstr "" @@ -1341,7 +1593,7 @@ msgstr "" msgid "User is not a member of group." msgstr "" -#: actions/groupblock.php:136 actions/groupmembers.php:314 +#: actions/groupblock.php:136 actions/groupmembers.php:316 msgid "Block user from group" msgstr "" @@ -1435,24 +1687,24 @@ msgstr "" msgid "A list of the users in this group." msgstr "" -#: actions/groupmembers.php:175 lib/action.php:442 lib/groupnav.php:107 +#: actions/groupmembers.php:175 lib/action.php:448 lib/groupnav.php:107 msgid "Admin" msgstr "Διαχειριστής" -#: actions/groupmembers.php:346 lib/blockform.php:69 +#: actions/groupmembers.php:348 lib/blockform.php:69 msgid "Block" msgstr "" -#: actions/groupmembers.php:441 +#: actions/groupmembers.php:443 msgid "Make user an admin of the group" msgstr "" -#: actions/groupmembers.php:473 +#: actions/groupmembers.php:475 #, fuzzy msgid "Make Admin" msgstr "Διαχειριστής" -#: actions/groupmembers.php:473 +#: actions/groupmembers.php:475 msgid "Make this user an admin" msgstr "" @@ -1620,6 +1872,11 @@ msgstr "" msgid "That is not your Jabber ID." msgstr "" +#: actions/inbox.php:59 +#, php-format +msgid "Inbox for %1$s - page %2$d" +msgstr "" + #: actions/inbox.php:62 #, php-format msgid "Inbox for %s" @@ -1696,7 +1953,7 @@ msgstr "" msgid "Optionally add a personal message to the invitation." msgstr "" -#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:237 +#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:236 msgid "Send" msgstr "" @@ -1770,7 +2027,7 @@ msgstr "Λάθος όνομα χρήστη ή κωδικός" msgid "Error setting user. You are probably not authorized." msgstr "" -#: actions/login.php:188 actions/login.php:241 lib/action.php:460 +#: actions/login.php:188 actions/login.php:241 lib/action.php:466 #: lib/logingroupnav.php:79 msgid "Login" msgstr "Σύνδεση" @@ -1779,17 +2036,6 @@ msgstr "Σύνδεση" msgid "Login to site" msgstr "" -#: actions/login.php:230 actions/profilesettings.php:106 -#: actions/register.php:424 actions/showgroup.php:236 actions/tagother.php:94 -#: lib/groupeditform.php:152 lib/userprofile.php:131 -msgid "Nickname" -msgstr "Ψευδώνυμο" - -#: actions/login.php:233 actions/register.php:429 -#: lib/accountsettingsaction.php:116 -msgid "Password" -msgstr "Κωδικός" - #: actions/login.php:236 actions/register.php:478 msgid "Remember me" msgstr "" @@ -1820,21 +2066,21 @@ msgstr "" "ακόμα; Κάντε [εγγραφή](%%action.register%%) για ένα νέο λογαριασμό ή " "δοκιμάστε το [OpenID](%%action.openidlogin%%). " -#: actions/makeadmin.php:91 +#: actions/makeadmin.php:92 msgid "Only an admin can make another user an admin." msgstr "" -#: actions/makeadmin.php:95 +#: actions/makeadmin.php:96 #, php-format msgid "%1$s is already an admin for group \"%2$s\"." msgstr "" -#: actions/makeadmin.php:132 +#: actions/makeadmin.php:133 #, fuzzy, php-format msgid "Can't get membership record for %1$s in group %2$s." msgstr "Αδύνατη η αποθήκευση του προφίλ." -#: actions/makeadmin.php:145 +#: actions/makeadmin.php:146 #, fuzzy, php-format msgid "Can't make %1$s an admin for group %2$s." msgstr "Αδύνατη η αποθήκευση του προφίλ." @@ -1843,6 +2089,28 @@ msgstr "Αδύνατη η αποθήκευση του προφίλ." msgid "No current status" msgstr "" +#: actions/newapplication.php:52 +#, fuzzy +msgid "New Application" +msgstr "Δεν υπάρχει τέτοιο σελίδα." + +#: actions/newapplication.php:64 +msgid "You must be logged in to register an application." +msgstr "" + +#: actions/newapplication.php:143 +msgid "Use this form to register a new application." +msgstr "" + +#: actions/newapplication.php:176 +msgid "Source URL is required." +msgstr "" + +#: actions/newapplication.php:258 actions/newapplication.php:267 +#, fuzzy +msgid "Could not create application." +msgstr "Αδύνατη η αποθήκευση του προφίλ." + #: actions/newgroup.php:53 msgid "New group" msgstr "" @@ -1947,6 +2215,49 @@ msgstr "" msgid "Nudge sent!" msgstr "" +#: actions/oauthappssettings.php:59 +msgid "You must be logged in to list your applications." +msgstr "" + +#: actions/oauthappssettings.php:74 +msgid "OAuth applications" +msgstr "" + +#: actions/oauthappssettings.php:85 +msgid "Applications you have registered" +msgstr "" + +#: actions/oauthappssettings.php:135 +#, php-format +msgid "You have not registered any applications yet." +msgstr "" + +#: actions/oauthconnectionssettings.php:72 +msgid "Connected applications" +msgstr "" + +#: actions/oauthconnectionssettings.php:83 +msgid "You have allowed the following applications to access you account." +msgstr "" + +#: actions/oauthconnectionssettings.php:175 +#, fuzzy +msgid "You are not a user of that application." +msgstr "Δεν είστε μέλος καμίας ομάδας." + +#: actions/oauthconnectionssettings.php:186 +msgid "Unable to revoke access for app: " +msgstr "" + +#: actions/oauthconnectionssettings.php:198 +#, php-format +msgid "You have not authorized any applications to use your account." +msgstr "" + +#: actions/oauthconnectionssettings.php:211 +msgid "Developers can edit the registration settings for their applications " +msgstr "" + #: actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" msgstr "" @@ -1965,8 +2276,8 @@ msgstr "Σύνδεση" msgid "Only " msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1033 -#: lib/api.php:1061 lib/api.php:1171 +#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 +#: lib/api.php:1068 lib/api.php:1177 msgid "Not a supported data format." msgstr "" @@ -1980,7 +2291,7 @@ msgstr "" #: actions/othersettings.php:60 #, fuzzy -msgid "Other Settings" +msgid "Other settings" msgstr "Ρυθμίσεις OpenID" #: actions/othersettings.php:71 @@ -2035,6 +2346,11 @@ msgstr "Μήνυμα" msgid "Login token expired." msgstr "" +#: actions/outbox.php:58 +#, php-format +msgid "Outbox for %1$s - page %2$d" +msgstr "" + #: actions/outbox.php:61 #, php-format msgid "Outbox for %s" @@ -2107,7 +2423,7 @@ msgstr "Αδύνατη η αποθήκευση του νέου κωδικού" msgid "Password saved." msgstr "Ο κωδικός αποθηκεύτηκε." -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:326 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:331 msgid "Paths" msgstr "" @@ -2115,138 +2431,155 @@ msgstr "" msgid "Path and server settings for this StatusNet site." msgstr "" -#: actions/pathsadminpanel.php:140 +#: actions/pathsadminpanel.php:157 #, fuzzy, php-format msgid "Theme directory not readable: %s" msgstr "Η αρχική σελίδα δεν είναι έγκυρο URL." -#: actions/pathsadminpanel.php:146 +#: actions/pathsadminpanel.php:163 #, php-format msgid "Avatar directory not writable: %s" msgstr "" -#: actions/pathsadminpanel.php:152 +#: actions/pathsadminpanel.php:169 #, php-format msgid "Background directory not writable: %s" msgstr "" -#: actions/pathsadminpanel.php:160 +#: actions/pathsadminpanel.php:177 #, php-format msgid "Locales directory not readable: %s" msgstr "" -#: actions/pathsadminpanel.php:166 +#: actions/pathsadminpanel.php:183 msgid "Invalid SSL server. The maximum length is 255 characters." msgstr "" -#: actions/pathsadminpanel.php:217 actions/siteadminpanel.php:58 +#: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58 #: lib/adminpanelaction.php:311 msgid "Site" msgstr "" -#: actions/pathsadminpanel.php:221 +#: actions/pathsadminpanel.php:238 +#, fuzzy +msgid "Server" +msgstr "Αποχώρηση" + +#: actions/pathsadminpanel.php:238 +msgid "Site's server hostname." +msgstr "" + +#: actions/pathsadminpanel.php:242 msgid "Path" msgstr "" -#: actions/pathsadminpanel.php:221 +#: actions/pathsadminpanel.php:242 msgid "Site path" msgstr "" -#: actions/pathsadminpanel.php:225 +#: actions/pathsadminpanel.php:246 msgid "Path to locales" msgstr "" -#: actions/pathsadminpanel.php:225 +#: actions/pathsadminpanel.php:246 msgid "Directory path to locales" msgstr "" -#: actions/pathsadminpanel.php:232 -msgid "Theme" -msgstr "" - -#: actions/pathsadminpanel.php:237 -msgid "Theme server" -msgstr "" - -#: actions/pathsadminpanel.php:241 -msgid "Theme path" -msgstr "" - -#: actions/pathsadminpanel.php:245 -msgid "Theme directory" +#: actions/pathsadminpanel.php:250 +msgid "Fancy URLs" msgstr "" #: actions/pathsadminpanel.php:252 +msgid "Use fancy (more readable and memorable) URLs?" +msgstr "" + +#: actions/pathsadminpanel.php:259 +msgid "Theme" +msgstr "" + +#: actions/pathsadminpanel.php:264 +msgid "Theme server" +msgstr "" + +#: actions/pathsadminpanel.php:268 +msgid "Theme path" +msgstr "" + +#: actions/pathsadminpanel.php:272 +msgid "Theme directory" +msgstr "" + +#: actions/pathsadminpanel.php:279 #, fuzzy msgid "Avatars" msgstr "Ρυθμίσεις OpenID" -#: actions/pathsadminpanel.php:257 +#: actions/pathsadminpanel.php:284 #, fuzzy msgid "Avatar server" msgstr "Ρυθμίσεις OpenID" -#: actions/pathsadminpanel.php:261 +#: actions/pathsadminpanel.php:288 #, fuzzy msgid "Avatar path" msgstr "Ρυθμίσεις OpenID" -#: actions/pathsadminpanel.php:265 +#: actions/pathsadminpanel.php:292 #, fuzzy msgid "Avatar directory" msgstr "Ρυθμίσεις OpenID" -#: actions/pathsadminpanel.php:274 +#: actions/pathsadminpanel.php:301 msgid "Backgrounds" msgstr "" -#: actions/pathsadminpanel.php:278 +#: actions/pathsadminpanel.php:305 msgid "Background server" msgstr "" -#: actions/pathsadminpanel.php:282 +#: actions/pathsadminpanel.php:309 msgid "Background path" msgstr "" -#: actions/pathsadminpanel.php:286 +#: actions/pathsadminpanel.php:313 msgid "Background directory" msgstr "" -#: actions/pathsadminpanel.php:293 +#: actions/pathsadminpanel.php:320 msgid "SSL" msgstr "" -#: actions/pathsadminpanel.php:296 actions/siteadminpanel.php:346 +#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 #, fuzzy msgid "Never" msgstr "Αποχώρηση" -#: actions/pathsadminpanel.php:297 +#: actions/pathsadminpanel.php:324 msgid "Sometimes" msgstr "" -#: actions/pathsadminpanel.php:298 +#: actions/pathsadminpanel.php:325 msgid "Always" msgstr "" -#: actions/pathsadminpanel.php:302 +#: actions/pathsadminpanel.php:329 msgid "Use SSL" msgstr "" -#: actions/pathsadminpanel.php:303 +#: actions/pathsadminpanel.php:330 msgid "When to use SSL" msgstr "" -#: actions/pathsadminpanel.php:308 +#: actions/pathsadminpanel.php:335 #, fuzzy msgid "SSL server" msgstr "Αποχώρηση" -#: actions/pathsadminpanel.php:309 +#: actions/pathsadminpanel.php:336 msgid "Server to direct SSL requests to" msgstr "" -#: actions/pathsadminpanel.php:325 +#: actions/pathsadminpanel.php:352 msgid "Save paths" msgstr "" @@ -2304,7 +2637,7 @@ msgid "Full name" msgstr "Ονοματεπώνυμο" #: actions/profilesettings.php:115 actions/register.php:453 -#: lib/groupeditform.php:161 +#: lib/applicationeditform.php:228 lib/groupeditform.php:161 msgid "Homepage" msgstr "Αρχική σελίδα" @@ -2328,7 +2661,7 @@ msgstr "Βιογραφικό" #: actions/profilesettings.php:132 actions/register.php:471 #: actions/showgroup.php:256 actions/tagother.php:112 -#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:164 msgid "Location" msgstr "Τοποθεσία" @@ -2352,7 +2685,7 @@ msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" -#: actions/profilesettings.php:151 actions/siteadminpanel.php:294 +#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 msgid "Language" msgstr "" @@ -2381,7 +2714,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "Το βιογραφικό είναι πολύ μεγάλο (μέγιστο 140 χαρακτ.)." -#: actions/profilesettings.php:235 actions/siteadminpanel.php:164 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 msgid "Timezone not selected." msgstr "" @@ -2394,25 +2727,25 @@ msgstr "" msgid "Invalid tag: \"%s\"" msgstr "" -#: actions/profilesettings.php:302 +#: actions/profilesettings.php:306 msgid "Couldn't update user for autosubscribe." msgstr "Απέτυχε η ενημέρωση του χρήστη για την αυτόματη συνδρομή." -#: actions/profilesettings.php:359 +#: actions/profilesettings.php:363 #, fuzzy msgid "Couldn't save location prefs." msgstr "Αδύνατη η αποθήκευση του προφίλ." -#: actions/profilesettings.php:371 +#: actions/profilesettings.php:375 msgid "Couldn't save profile." msgstr "Απέτυχε η αποθήκευση του προφίλ." -#: actions/profilesettings.php:379 +#: actions/profilesettings.php:383 #, fuzzy msgid "Couldn't save tags." msgstr "Αδύνατη η αποθήκευση του προφίλ." -#: actions/profilesettings.php:387 lib/adminpanelaction.php:137 +#: actions/profilesettings.php:391 lib/adminpanelaction.php:137 msgid "Settings saved." msgstr "" @@ -2434,37 +2767,37 @@ msgstr "" msgid "Public timeline" msgstr "" -#: actions/public.php:151 +#: actions/public.php:159 msgid "Public Stream Feed (RSS 1.0)" msgstr "" -#: actions/public.php:155 +#: actions/public.php:163 msgid "Public Stream Feed (RSS 2.0)" msgstr "" -#: actions/public.php:159 +#: actions/public.php:167 #, fuzzy msgid "Public Stream Feed (Atom)" msgstr "Δημόσια ροή %s" -#: actions/public.php:179 +#: actions/public.php:187 #, php-format msgid "" "This is the public timeline for %%site.name%% but no one has posted anything " "yet." msgstr "" -#: actions/public.php:182 +#: actions/public.php:190 msgid "Be the first to post!" msgstr "" -#: actions/public.php:186 +#: actions/public.php:194 #, php-format msgid "" "Why not [register an account](%%action.register%%) and be the first to post!" msgstr "" -#: actions/public.php:233 +#: actions/public.php:241 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2473,7 +2806,7 @@ msgid "" "friends, family, and colleagues! ([Read more](%%doc.help%%))" msgstr "" -#: actions/public.php:238 +#: actions/public.php:246 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2506,7 +2839,7 @@ msgid "" "one!" msgstr "" -#: actions/publictagcloud.php:131 +#: actions/publictagcloud.php:134 msgid "Tag cloud" msgstr "" @@ -2644,7 +2977,7 @@ msgstr "" msgid "Registration successful" msgstr "" -#: actions/register.php:114 actions/register.php:503 lib/action.php:457 +#: actions/register.php:114 actions/register.php:503 lib/action.php:463 #: lib/logingroupnav.php:85 msgid "Register" msgstr "" @@ -2684,7 +3017,7 @@ msgid "Same as password above. Required." msgstr "" #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:270 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 msgid "Email" msgstr "Email" @@ -2789,7 +3122,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:365 +#: lib/userprofile.php:368 msgid "Subscribe" msgstr "" @@ -2828,7 +3161,7 @@ msgstr "" msgid "You already repeated that notice." msgstr "Αδυναμία διαγραφής αυτού του μηνύματος." -#: actions/repeat.php:114 lib/noticelist.php:629 +#: actions/repeat.php:114 lib/noticelist.php:656 #, fuzzy msgid "Repeated" msgstr "Δημιουργία" @@ -2844,6 +3177,11 @@ msgstr "Δημιουργία" msgid "Replies to %s" msgstr "" +#: actions/replies.php:127 +#, php-format +msgid "Replies to %1$s, page %2$d" +msgstr "" + #: actions/replies.php:144 #, fuzzy, php-format msgid "Replies feed for %s (RSS 1.0)" @@ -2885,6 +3223,11 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "" +#: actions/rsd.php:146 actions/version.php:157 +#, fuzzy +msgid "StatusNet" +msgstr "Η κατάσταση διαγράφεται." + #: actions/sandbox.php:65 actions/unsandbox.php:65 msgid "You cannot sandbox users on this site." msgstr "" @@ -2893,6 +3236,123 @@ msgstr "" msgid "User is already sandboxed." msgstr "" +#: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:336 +msgid "Sessions" +msgstr "" + +#: actions/sessionsadminpanel.php:65 +msgid "Session settings for this StatusNet site." +msgstr "" + +#: actions/sessionsadminpanel.php:175 +msgid "Handle sessions" +msgstr "" + +#: actions/sessionsadminpanel.php:177 +msgid "Whether to handle sessions ourselves." +msgstr "" + +#: actions/sessionsadminpanel.php:181 +msgid "Session debugging" +msgstr "" + +#: actions/sessionsadminpanel.php:183 +msgid "Turn on debugging output for sessions." +msgstr "" + +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/useradminpanel.php:293 +#, fuzzy +msgid "Save site settings" +msgstr "Ρυθμίσεις OpenID" + +#: actions/showapplication.php:82 +msgid "You must be logged in to view an application." +msgstr "" + +#: actions/showapplication.php:157 +msgid "Application profile" +msgstr "" + +#: actions/showapplication.php:159 lib/applicationeditform.php:180 +msgid "Icon" +msgstr "" + +#: actions/showapplication.php:169 actions/version.php:195 +#: lib/applicationeditform.php:195 +#, fuzzy +msgid "Name" +msgstr "Ψευδώνυμο" + +#: actions/showapplication.php:178 lib/applicationeditform.php:222 +#, fuzzy +msgid "Organization" +msgstr "Προσκλήσεις" + +#: actions/showapplication.php:187 actions/version.php:198 +#: lib/applicationeditform.php:209 lib/groupeditform.php:172 +msgid "Description" +msgstr "Περιγραφή" + +#: actions/showapplication.php:192 actions/showgroup.php:429 +#: lib/profileaction.php:174 +msgid "Statistics" +msgstr "" + +#: actions/showapplication.php:203 +#, php-format +msgid "Created by %1$s - %2$s access by default - %3$d users" +msgstr "" + +#: actions/showapplication.php:213 +msgid "Application actions" +msgstr "" + +#: actions/showapplication.php:236 +msgid "Reset key & secret" +msgstr "" + +#: actions/showapplication.php:261 +msgid "Application info" +msgstr "" + +#: actions/showapplication.php:263 +msgid "Consumer key" +msgstr "" + +#: actions/showapplication.php:268 +msgid "Consumer secret" +msgstr "" + +#: actions/showapplication.php:273 +msgid "Request token URL" +msgstr "" + +#: actions/showapplication.php:278 +msgid "Access token URL" +msgstr "" + +#: actions/showapplication.php:283 +msgid "Authorize URL" +msgstr "" + +#: actions/showapplication.php:288 +msgid "" +"Note: We support HMAC-SHA1 signatures. We do not support the plaintext " +"signature method." +msgstr "" + +#: actions/showapplication.php:309 +#, fuzzy +msgid "Are you sure you want to reset your consumer key and secret?" +msgstr "Είσαι σίγουρος ότι θες να διαγράψεις αυτό το μήνυμα;" + +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%1$s's favorite notices, page %2$d" +msgstr "%s και οι φίλοι του/της" + #: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "" @@ -2942,18 +3402,23 @@ msgstr "" msgid "%s group" msgstr "" +#: actions/showgroup.php:84 +#, fuzzy, php-format +msgid "%1$s group, page %2$d" +msgstr "Αδύνατη η αποθήκευση των νέων πληροφοριών του προφίλ" + #: actions/showgroup.php:218 #, fuzzy msgid "Group profile" msgstr "Αδύνατη η αποθήκευση του προφίλ." #: actions/showgroup.php:263 actions/tagother.php:118 -#: actions/userauthorization.php:167 lib/userprofile.php:177 +#: actions/userauthorization.php:175 lib/userprofile.php:177 msgid "URL" msgstr "" #: actions/showgroup.php:274 actions/tagother.php:128 -#: actions/userauthorization.php:179 lib/userprofile.php:194 +#: actions/userauthorization.php:187 lib/userprofile.php:194 msgid "Note" msgstr "" @@ -2999,10 +3464,6 @@ msgstr "" msgid "All members" msgstr "" -#: actions/showgroup.php:429 lib/profileaction.php:174 -msgid "Statistics" -msgstr "" - #: actions/showgroup.php:432 msgid "Created" msgstr "Δημιουργημένος" @@ -3058,6 +3519,11 @@ msgstr "Ρυθμίσεις OpenID" msgid " tagged %s" msgstr "" +#: actions/showstream.php:79 +#, fuzzy, php-format +msgid "%1$s, page %2$d" +msgstr "%s και οι φίλοι του/της" + #: actions/showstream.php:122 #, fuzzy, php-format msgid "Notice feed for %1$s tagged %2$s (RSS 1.0)" @@ -3083,25 +3549,25 @@ msgstr "" msgid "FOAF for %s" msgstr "" -#: actions/showstream.php:191 +#: actions/showstream.php:200 #, php-format msgid "This is the timeline for %1$s but %2$s hasn't posted anything yet." msgstr "" -#: actions/showstream.php:196 +#: actions/showstream.php:205 msgid "" "Seen anything interesting recently? You haven't posted any notices yet, now " "would be a good time to start :)" msgstr "" -#: actions/showstream.php:198 +#: actions/showstream.php:207 #, php-format msgid "" "You can try to nudge %1$s or [post something to his or her attention](%%%%" "action.newnotice%%%%?status_textarea=%2$s)." msgstr "" -#: actions/showstream.php:234 +#: actions/showstream.php:243 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3110,7 +3576,7 @@ msgid "" "follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showstream.php:239 +#: actions/showstream.php:248 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3118,7 +3584,7 @@ msgid "" "[StatusNet](http://status.net/) tool. " msgstr "" -#: actions/showstream.php:313 +#: actions/showstream.php:305 #, php-format msgid "Repeat of %s" msgstr "" @@ -3135,199 +3601,145 @@ msgstr "" msgid "Basic settings for this StatusNet site." msgstr "" -#: actions/siteadminpanel.php:146 +#: actions/siteadminpanel.php:132 msgid "Site name must have non-zero length." msgstr "" -#: actions/siteadminpanel.php:154 +#: actions/siteadminpanel.php:140 #, fuzzy msgid "You must have a valid contact email address." msgstr "Αδυναμία κανονικοποίησης αυτής της email διεύθυνσης" -#: actions/siteadminpanel.php:172 +#: actions/siteadminpanel.php:158 #, php-format msgid "Unknown language \"%s\"." msgstr "" -#: actions/siteadminpanel.php:179 +#: actions/siteadminpanel.php:165 msgid "Invalid snapshot report URL." msgstr "" -#: actions/siteadminpanel.php:185 +#: actions/siteadminpanel.php:171 msgid "Invalid snapshot run value." msgstr "" -#: actions/siteadminpanel.php:191 +#: actions/siteadminpanel.php:177 msgid "Snapshot frequency must be a number." msgstr "" -#: actions/siteadminpanel.php:197 +#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "" -#: actions/siteadminpanel.php:203 +#: actions/siteadminpanel.php:189 msgid "Dupe limit must 1 or more seconds." msgstr "" -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:239 msgid "General" msgstr "" -#: actions/siteadminpanel.php:256 +#: actions/siteadminpanel.php:242 msgid "Site name" msgstr "" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:243 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "" -#: actions/siteadminpanel.php:261 +#: actions/siteadminpanel.php:247 msgid "Brought by" msgstr "" -#: actions/siteadminpanel.php:262 +#: actions/siteadminpanel.php:248 msgid "Text used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:266 +#: actions/siteadminpanel.php:252 msgid "Brought by URL" msgstr "" -#: actions/siteadminpanel.php:267 +#: actions/siteadminpanel.php:253 msgid "URL used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:271 +#: actions/siteadminpanel.php:257 #, fuzzy msgid "Contact email address for your site" msgstr "Η διεύθυνση του εισερχόμενου email αφαιρέθηκε." -#: actions/siteadminpanel.php:277 +#: actions/siteadminpanel.php:263 msgid "Local" msgstr "Τοπικός" -#: actions/siteadminpanel.php:288 +#: actions/siteadminpanel.php:274 msgid "Default timezone" msgstr "" -#: actions/siteadminpanel.php:289 +#: actions/siteadminpanel.php:275 msgid "Default timezone for the site; usually UTC." msgstr "" -#: actions/siteadminpanel.php:295 +#: actions/siteadminpanel.php:281 msgid "Default site language" msgstr "" -#: actions/siteadminpanel.php:303 -msgid "URLs" -msgstr "" - -#: actions/siteadminpanel.php:306 -#, fuzzy -msgid "Server" -msgstr "Αποχώρηση" - -#: actions/siteadminpanel.php:306 -msgid "Site's server hostname." -msgstr "" - -#: actions/siteadminpanel.php:310 -msgid "Fancy URLs" -msgstr "" - -#: actions/siteadminpanel.php:312 -msgid "Use fancy (more readable and memorable) URLs?" -msgstr "" - -#: actions/siteadminpanel.php:318 -msgid "Access" -msgstr "Πρόσβαση" - -#: actions/siteadminpanel.php:321 -msgid "Private" -msgstr "" - -#: actions/siteadminpanel.php:323 -msgid "Prohibit anonymous users (not logged in) from viewing site?" -msgstr "" - -#: actions/siteadminpanel.php:327 -msgid "Invite only" -msgstr "" - -#: actions/siteadminpanel.php:329 -msgid "Make registration invitation only." -msgstr "" - -#: actions/siteadminpanel.php:333 -msgid "Closed" -msgstr "" - -#: actions/siteadminpanel.php:335 -msgid "Disable new registrations." -msgstr "" - -#: actions/siteadminpanel.php:341 +#: actions/siteadminpanel.php:289 msgid "Snapshots" msgstr "" -#: actions/siteadminpanel.php:344 +#: actions/siteadminpanel.php:292 msgid "Randomly during Web hit" msgstr "" -#: actions/siteadminpanel.php:345 +#: actions/siteadminpanel.php:293 msgid "In a scheduled job" msgstr "" -#: actions/siteadminpanel.php:347 +#: actions/siteadminpanel.php:295 msgid "Data snapshots" msgstr "" -#: actions/siteadminpanel.php:348 +#: actions/siteadminpanel.php:296 msgid "When to send statistical data to status.net servers" msgstr "" -#: actions/siteadminpanel.php:353 +#: actions/siteadminpanel.php:301 msgid "Frequency" msgstr "" -#: actions/siteadminpanel.php:354 +#: actions/siteadminpanel.php:302 msgid "Snapshots will be sent once every N web hits" msgstr "" -#: actions/siteadminpanel.php:359 +#: actions/siteadminpanel.php:307 msgid "Report URL" msgstr "" -#: actions/siteadminpanel.php:360 +#: actions/siteadminpanel.php:308 msgid "Snapshots will be sent to this URL" msgstr "" -#: actions/siteadminpanel.php:367 +#: actions/siteadminpanel.php:315 msgid "Limits" msgstr "" -#: actions/siteadminpanel.php:370 +#: actions/siteadminpanel.php:318 msgid "Text limit" msgstr "" -#: actions/siteadminpanel.php:370 +#: actions/siteadminpanel.php:318 msgid "Maximum number of characters for notices." msgstr "" -#: actions/siteadminpanel.php:374 +#: actions/siteadminpanel.php:322 msgid "Dupe limit" msgstr "" -#: actions/siteadminpanel.php:374 +#: actions/siteadminpanel.php:322 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" -#: actions/siteadminpanel.php:388 actions/useradminpanel.php:313 -#, fuzzy -msgid "Save site settings" -msgstr "Ρυθμίσεις OpenID" - #: actions/smssettings.php:58 #, fuzzy msgid "SMS settings" @@ -3430,16 +3842,26 @@ msgstr "" msgid "You are not subscribed to that profile." msgstr "" -#: actions/subedit.php:83 +#: actions/subedit.php:83 classes/Subscription.php:89 +#: classes/Subscription.php:116 #, fuzzy msgid "Could not save subscription." msgstr "Αδύνατη η αποθήκευση των νέων πληροφοριών του προφίλ" -#: actions/subscribe.php:55 -msgid "Not a local user." +#: actions/subscribe.php:77 +msgid "This action only accepts POST requests." msgstr "" -#: actions/subscribe.php:69 +#: actions/subscribe.php:107 +#, fuzzy +msgid "No such profile." +msgstr "Αδύνατη η αποθήκευση του προφίλ." + +#: actions/subscribe.php:117 +msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." +msgstr "" + +#: actions/subscribe.php:145 msgid "Subscribed" msgstr "" @@ -3499,7 +3921,7 @@ msgstr "" msgid "These are the people whose notices %s listens to." msgstr "" -#: actions/subscriptions.php:121 +#: actions/subscriptions.php:126 #, php-format msgid "" "You're not listening to anyone's notices right now, try subscribing to " @@ -3509,19 +3931,24 @@ msgid "" "automatically subscribe to people you already follow there." msgstr "" -#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#: actions/subscriptions.php:128 actions/subscriptions.php:132 #, php-format msgid "%s is not listening to anyone." msgstr "" -#: actions/subscriptions.php:194 +#: actions/subscriptions.php:199 msgid "Jabber" msgstr "" -#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:204 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "" +#: actions/tag.php:68 +#, php-format +msgid "Notices tagged with %1$s, page %2$d" +msgstr "" + #: actions/tag.php:86 #, php-format msgid "Notice feed for tag %s (RSS 1.0)" @@ -3550,7 +3977,8 @@ msgstr "" msgid "User profile" msgstr "Προφίλ χρήστη" -#: actions/tagother.php:81 lib/userprofile.php:102 +#: actions/tagother.php:81 actions/userauthorization.php:132 +#: lib/userprofile.php:102 msgid "Photo" msgstr "" @@ -3607,7 +4035,7 @@ msgstr "" msgid "Unsubscribed" msgstr "" -#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#: actions/updateprofile.php:62 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -3622,88 +4050,68 @@ msgstr "" msgid "User settings for this StatusNet site." msgstr "" -#: actions/useradminpanel.php:149 +#: actions/useradminpanel.php:148 msgid "Invalid bio limit. Must be numeric." msgstr "" -#: actions/useradminpanel.php:155 +#: actions/useradminpanel.php:154 msgid "Invalid welcome text. Max length is 255 characters." msgstr "" -#: actions/useradminpanel.php:165 +#: actions/useradminpanel.php:164 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 +#: actions/useradminpanel.php:217 lib/accountsettingsaction.php:108 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:221 msgid "Bio Limit" msgstr "" -#: actions/useradminpanel.php:223 +#: actions/useradminpanel.php:222 msgid "Maximum length of a profile bio in characters." msgstr "" -#: actions/useradminpanel.php:231 +#: actions/useradminpanel.php:230 msgid "New users" msgstr "Νέοι χρήστες" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:234 msgid "New user welcome" msgstr "" -#: actions/useradminpanel.php:236 +#: actions/useradminpanel.php:235 msgid "Welcome text for new users (Max 255 chars)." msgstr "" -#: actions/useradminpanel.php:241 +#: actions/useradminpanel.php:240 #, fuzzy msgid "Default subscription" msgstr "Όλες οι συνδρομές" -#: actions/useradminpanel.php:242 +#: actions/useradminpanel.php:241 #, fuzzy msgid "Automatically subscribe new users to this user." msgstr "" "Αυτόματα γίνε συνδρομητής σε όσους γίνονται συνδρομητές σε μένα (χρήση " "κυρίως από λογισμικό και όχι ανθρώπους)" -#: actions/useradminpanel.php:251 +#: actions/useradminpanel.php:250 msgid "Invitations" msgstr "Προσκλήσεις" -#: actions/useradminpanel.php:256 +#: actions/useradminpanel.php:255 msgid "Invitations enabled" msgstr "" -#: actions/useradminpanel.php:258 +#: actions/useradminpanel.php:257 msgid "Whether to allow users to invite new users." msgstr "" -#: actions/useradminpanel.php:265 -msgid "Sessions" -msgstr "" - -#: actions/useradminpanel.php:270 -msgid "Handle sessions" -msgstr "" - -#: actions/useradminpanel.php:272 -msgid "Whether to handle sessions ourselves." -msgstr "" - -#: actions/useradminpanel.php:276 -msgid "Session debugging" -msgstr "" - -#: actions/useradminpanel.php:278 -msgid "Turn on debugging output for sessions." -msgstr "" - #: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Εξουσιοδοτημένη συνδρομή" @@ -3715,85 +4123,85 @@ msgid "" "click “Reject”." msgstr "" -#: actions/userauthorization.php:188 actions/version.php:165 +#: actions/userauthorization.php:196 actions/version.php:165 msgid "License" msgstr "" -#: actions/userauthorization.php:209 +#: actions/userauthorization.php:217 msgid "Accept" msgstr "Αποδοχή" -#: actions/userauthorization.php:210 lib/subscribeform.php:115 +#: actions/userauthorization.php:218 lib/subscribeform.php:115 #: lib/subscribeform.php:139 msgid "Subscribe to this user" msgstr "Γίνε συνδρομητής αυτού του χρήστη" -#: actions/userauthorization.php:211 +#: actions/userauthorization.php:219 msgid "Reject" msgstr "" -#: actions/userauthorization.php:212 +#: actions/userauthorization.php:220 #, fuzzy msgid "Reject this subscription" msgstr "Αδύνατη η αποθήκευση των νέων πληροφοριών του προφίλ" -#: actions/userauthorization.php:225 +#: actions/userauthorization.php:232 msgid "No authorization request!" msgstr "" -#: actions/userauthorization.php:247 +#: actions/userauthorization.php:254 msgid "Subscription authorized" msgstr "" -#: actions/userauthorization.php:249 +#: actions/userauthorization.php:256 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 +#: actions/userauthorization.php:266 msgid "Subscription rejected" msgstr "" -#: actions/userauthorization.php:261 +#: actions/userauthorization.php:268 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 +#: actions/userauthorization.php:303 #, php-format msgid "Listener URI ‘%s’ not found here." msgstr "" -#: actions/userauthorization.php:301 +#: actions/userauthorization.php:308 #, php-format msgid "Listenee URI ‘%s’ is too long." msgstr "" -#: actions/userauthorization.php:307 +#: actions/userauthorization.php:314 #, php-format msgid "Listenee URI ‘%s’ is a local user." msgstr "" -#: actions/userauthorization.php:322 +#: actions/userauthorization.php:329 #, php-format msgid "Profile URL ‘%s’ is for a local user." msgstr "" -#: actions/userauthorization.php:338 +#: actions/userauthorization.php:345 #, php-format msgid "Avatar URL ‘%s’ is not valid." msgstr "" -#: actions/userauthorization.php:343 +#: actions/userauthorization.php:350 #, php-format msgid "Can’t read avatar URL ‘%s’." msgstr "" -#: actions/userauthorization.php:348 +#: actions/userauthorization.php:355 #, php-format msgid "Wrong image type for avatar URL ‘%s’." msgstr "" @@ -3812,6 +4220,11 @@ msgstr "" msgid "Enjoy your hotdog!" msgstr "" +#: actions/usergroups.php:64 +#, fuzzy, php-format +msgid "%1$s groups, page %2$d" +msgstr "Αδύνατη η αποθήκευση των νέων πληροφοριών του προφίλ" + #: actions/usergroups.php:130 msgid "Search for more groups" msgstr "" @@ -3838,11 +4251,6 @@ msgid "" "Inc. and contributors." msgstr "" -#: actions/version.php:157 -#, fuzzy -msgid "StatusNet" -msgstr "Η κατάσταση διαγράφεται." - #: actions/version.php:161 msgid "Contributors" msgstr "" @@ -3874,12 +4282,7 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:195 -#, fuzzy -msgid "Name" -msgstr "Ψευδώνυμο" - -#: actions/version.php:196 lib/action.php:741 +#: actions/version.php:196 lib/action.php:747 #, fuzzy msgid "Version" msgstr "Προσωπικά" @@ -3888,10 +4291,6 @@ msgstr "Προσωπικά" msgid "Author(s)" msgstr "" -#: actions/version.php:198 lib/groupeditform.php:172 -msgid "Description" -msgstr "Περιγραφή" - #: classes/File.php:144 #, php-format msgid "" @@ -3941,58 +4340,83 @@ msgstr "" msgid "Could not update message with new URI." msgstr "" -#: classes/Notice.php:171 +#: classes/Notice.php:157 #, php-format msgid "DB error inserting hashtag: %s" msgstr "Σφάλμα στη βάση δεδομένων κατά την εισαγωγή hashtag: %s" -#: classes/Notice.php:225 +#: classes/Notice.php:222 msgid "Problem saving notice. Too long." msgstr "" -#: classes/Notice.php:229 +#: classes/Notice.php:226 msgid "Problem saving notice. Unknown user." msgstr "" -#: classes/Notice.php:234 +#: classes/Notice.php:231 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: classes/Notice.php:240 +#: classes/Notice.php:237 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." msgstr "" -#: classes/Notice.php:246 +#: classes/Notice.php:243 msgid "You are banned from posting notices on this site." msgstr "" -#: classes/Notice.php:305 classes/Notice.php:330 +#: classes/Notice.php:309 classes/Notice.php:335 msgid "Problem saving notice." msgstr "" -#: classes/Notice.php:1052 -#, php-format -msgid "DB error inserting reply: %s" -msgstr "Σφάλμα βάσης δεδομένων κατά την εισαγωγή απάντησης: %s" +#: classes/Notice.php:882 +msgid "Problem saving group inbox." +msgstr "" -#: classes/Notice.php:1423 +#: classes/Notice.php:1407 #, php-format msgid "RT @%1$s %2$s" msgstr "" -#: classes/User.php:382 +#: classes/Subscription.php:66 lib/oauthstore.php:465 +msgid "You have been banned from subscribing." +msgstr "" + +#: classes/Subscription.php:70 +msgid "Already subscribed!" +msgstr "" + +#: classes/Subscription.php:74 +msgid "User has blocked you." +msgstr "" + +#: classes/Subscription.php:157 +#, fuzzy +msgid "Not subscribed!" +msgstr "Απέτυχε η συνδρομή." + +#: classes/Subscription.php:163 +#, fuzzy +msgid "Couldn't delete self-subscription." +msgstr "Απέτυχε η διαγραφή συνδρομής." + +#: classes/Subscription.php:179 lib/subs.php:69 +msgid "Couldn't delete subscription." +msgstr "Απέτυχε η διαγραφή συνδρομής." + +#: classes/User.php:372 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "" -#: classes/User_group.php:380 +#: classes/User_group.php:423 msgid "Could not create group." msgstr "Δεν ήταν δυνατή η δημιουργία ομάδας." -#: classes/User_group.php:409 +#: classes/User_group.php:452 #, fuzzy msgid "Could not set group membership." msgstr "Αδύνατη η αποθήκευση των νέων πληροφοριών του προφίλ" @@ -4034,129 +4458,125 @@ msgstr "" msgid "Untitled page" msgstr "" -#: lib/action.php:427 +#: lib/action.php:433 msgid "Primary site navigation" msgstr "" -#: lib/action.php:433 +#: lib/action.php:439 msgid "Home" msgstr "Αρχή" -#: lib/action.php:433 +#: lib/action.php:439 msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:435 -msgid "Account" -msgstr "Λογαριασμός" - -#: lib/action.php:435 +#: lib/action.php:441 msgid "Change your email, avatar, password, profile" msgstr "" -#: lib/action.php:438 +#: lib/action.php:444 msgid "Connect" msgstr "Σύνδεση" -#: lib/action.php:438 +#: lib/action.php:444 #, fuzzy msgid "Connect to services" msgstr "Αδυναμία ανακατεύθηνσης στο διακομιστή: %s" -#: lib/action.php:442 +#: lib/action.php:448 msgid "Change site configuration" msgstr "" -#: lib/action.php:446 lib/subgroupnav.php:105 +#: lib/action.php:452 lib/subgroupnav.php:105 msgid "Invite" msgstr "" -#: lib/action.php:447 lib/subgroupnav.php:106 +#: lib/action.php:453 lib/subgroupnav.php:106 #, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "Προσκάλεσε φίλους και συναδέλφους σου να γίνουν μέλη στο %s" -#: lib/action.php:452 +#: lib/action.php:458 msgid "Logout" msgstr "Αποσύνδεση" -#: lib/action.php:452 +#: lib/action.php:458 msgid "Logout from the site" msgstr "" -#: lib/action.php:457 +#: lib/action.php:463 msgid "Create an account" -msgstr "Δημιουργία έναν λογαριασμού" +msgstr "Δημιουργία ενός λογαριασμού" -#: lib/action.php:460 +#: lib/action.php:466 msgid "Login to the site" msgstr "" -#: lib/action.php:463 lib/action.php:726 +#: lib/action.php:469 lib/action.php:732 msgid "Help" msgstr "Βοήθεια" -#: lib/action.php:463 +#: lib/action.php:469 msgid "Help me!" msgstr "Βοηθήστε με!" -#: lib/action.php:466 lib/searchaction.php:127 +#: lib/action.php:472 lib/searchaction.php:127 msgid "Search" msgstr "" -#: lib/action.php:466 +#: lib/action.php:472 msgid "Search for people or text" msgstr "" -#: lib/action.php:487 +#: lib/action.php:493 msgid "Site notice" msgstr "" -#: lib/action.php:553 +#: lib/action.php:559 msgid "Local views" msgstr "" -#: lib/action.php:619 +#: lib/action.php:625 msgid "Page notice" msgstr "" -#: lib/action.php:721 +#: lib/action.php:727 msgid "Secondary site navigation" msgstr "" -#: lib/action.php:728 +#: lib/action.php:734 msgid "About" msgstr "Περί" -#: lib/action.php:730 +#: lib/action.php:736 msgid "FAQ" msgstr "Συχνές ερωτήσεις" -#: lib/action.php:734 +#: lib/action.php:740 msgid "TOS" msgstr "" -#: lib/action.php:737 +#: lib/action.php:743 msgid "Privacy" msgstr "" -#: lib/action.php:739 +#: lib/action.php:745 msgid "Source" msgstr "" -#: lib/action.php:743 +#: lib/action.php:749 msgid "Contact" msgstr "Επικοινωνία" -#: lib/action.php:745 +#: lib/action.php:751 msgid "Badge" msgstr "" -#: lib/action.php:773 +#: lib/action.php:779 msgid "StatusNet software license" msgstr "" -#: lib/action.php:776 +#: lib/action.php:782 #, fuzzy, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4165,13 +4585,13 @@ msgstr "" "To **%%site.name%%** είναι μία υπηρεσία microblogging (μικρο-ιστολογίου) που " "έφερε κοντά σας το [%%site.broughtby%%](%%site.broughtbyurl%%). " -#: lib/action.php:778 +#: lib/action.php:784 #, fuzzy, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "" "Το **%%site.name%%** είναι μία υπηρεσία microblogging (μικρο-ιστολογίου). " -#: lib/action.php:780 +#: lib/action.php:786 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4179,32 +4599,54 @@ msgid "" "org/licensing/licenses/agpl-3.0.html)." msgstr "" -#: lib/action.php:794 +#: lib/action.php:801 msgid "Site content license" msgstr "" -#: lib/action.php:803 +#: lib/action.php:806 +#, php-format +msgid "Content and data of %1$s are private and confidential." +msgstr "" + +#: lib/action.php:811 +#, php-format +msgid "Content and data copyright by %1$s. All rights reserved." +msgstr "" + +#: lib/action.php:814 +msgid "Content and data copyright by contributors. All rights reserved." +msgstr "" + +#: lib/action.php:827 msgid "All " msgstr "" -#: lib/action.php:808 +#: lib/action.php:833 msgid "license." msgstr "" -#: lib/action.php:1102 +#: lib/action.php:1132 msgid "Pagination" msgstr "" -#: lib/action.php:1111 +#: lib/action.php:1141 msgid "After" msgstr "" -#: lib/action.php:1119 +#: lib/action.php:1149 msgid "Before" msgstr "" -#: lib/action.php:1167 -msgid "There was a problem with your session token." +#: lib/activity.php:382 +msgid "Can't handle remote content yet." +msgstr "" + +#: lib/activity.php:410 +msgid "Can't handle embedded XML content yet." +msgstr "" + +#: lib/activity.php:414 +msgid "Can't handle embedded Base64 content yet." msgstr "" #: lib/adminpanelaction.php:96 @@ -4237,11 +4679,101 @@ msgstr "Επιβεβαίωση διεύθυνσης email" msgid "Design configuration" msgstr "Επιβεβαίωση διεύθυνσης email" -#: lib/adminpanelaction.php:322 lib/adminpanelaction.php:327 +#: lib/adminpanelaction.php:322 +#, fuzzy +msgid "User configuration" +msgstr "Επιβεβαίωση διεύθυνσης email" + +#: lib/adminpanelaction.php:327 +#, fuzzy +msgid "Access configuration" +msgstr "Επιβεβαίωση διεύθυνσης email" + +#: lib/adminpanelaction.php:332 #, fuzzy msgid "Paths configuration" msgstr "Επιβεβαίωση διεύθυνσης email" +#: lib/adminpanelaction.php:337 +#, fuzzy +msgid "Sessions configuration" +msgstr "Επιβεβαίωση διεύθυνσης email" + +#: lib/apiauth.php:95 +msgid "API resource requires read-write access, but you only have read access." +msgstr "" + +#: lib/apiauth.php:273 +#, php-format +msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" +msgstr "" + +#: lib/applicationeditform.php:136 +msgid "Edit application" +msgstr "" + +#: lib/applicationeditform.php:184 +msgid "Icon for this application" +msgstr "" + +#: lib/applicationeditform.php:204 +#, fuzzy, php-format +msgid "Describe your application in %d characters" +msgstr "Περιγράψτε την ομάδα ή το θέμα μέχρι %d χαρακτήρες" + +#: lib/applicationeditform.php:207 +#, fuzzy +msgid "Describe your application" +msgstr "Περιγράψτε την ομάδα ή το θέμα" + +#: lib/applicationeditform.php:216 +msgid "Source URL" +msgstr "" + +#: lib/applicationeditform.php:218 +msgid "URL of the homepage of this application" +msgstr "" + +#: lib/applicationeditform.php:224 +msgid "Organization responsible for this application" +msgstr "" + +#: lib/applicationeditform.php:230 +msgid "URL for the homepage of the organization" +msgstr "" + +#: lib/applicationeditform.php:236 +msgid "URL to redirect to after authentication" +msgstr "" + +#: lib/applicationeditform.php:258 +msgid "Browser" +msgstr "" + +#: lib/applicationeditform.php:274 +msgid "Desktop" +msgstr "" + +#: lib/applicationeditform.php:275 +msgid "Type of application, browser or desktop" +msgstr "" + +#: lib/applicationeditform.php:297 +msgid "Read-only" +msgstr "" + +#: lib/applicationeditform.php:315 +msgid "Read-write" +msgstr "" + +#: lib/applicationeditform.php:316 +msgid "Default access for this application: read-only, or read-write" +msgstr "" + +#: lib/applicationlist.php:154 +msgid "Revoke" +msgstr "" + #: lib/attachmentlist.php:87 msgid "Attachments" msgstr "" @@ -4262,12 +4794,12 @@ msgstr "" msgid "Tags for this attachment" msgstr "" -#: lib/authenticationplugin.php:182 lib/authenticationplugin.php:187 +#: lib/authenticationplugin.php:218 lib/authenticationplugin.php:223 #, fuzzy msgid "Password changing failed" msgstr "Ο κωδικός αποθηκεύτηκε." -#: lib/authenticationplugin.php:197 +#: lib/authenticationplugin.php:233 #, fuzzy msgid "Password changing is not allowed" msgstr "Ο κωδικός αποθηκεύτηκε." @@ -4419,82 +4951,92 @@ msgstr "" msgid "Specify the name of the user to subscribe to" msgstr "" -#: lib/command.php:554 +#: lib/command.php:554 lib/command.php:589 +#, fuzzy +msgid "No such user" +msgstr "Κανένας τέτοιος χρήστης." + +#: lib/command.php:561 #, php-format msgid "Subscribed to %s" msgstr "" -#: lib/command.php:575 +#: lib/command.php:582 lib/command.php:685 msgid "Specify the name of the user to unsubscribe from" msgstr "" -#: lib/command.php:582 +#: lib/command.php:595 #, php-format msgid "Unsubscribed from %s" msgstr "" -#: lib/command.php:600 lib/command.php:623 +#: lib/command.php:613 lib/command.php:636 msgid "Command not yet implemented." msgstr "" -#: lib/command.php:603 +#: lib/command.php:616 msgid "Notification off." msgstr "" -#: lib/command.php:605 +#: lib/command.php:618 msgid "Can't turn off notification." msgstr "" -#: lib/command.php:626 +#: lib/command.php:639 msgid "Notification on." msgstr "" -#: lib/command.php:628 +#: lib/command.php:641 msgid "Can't turn on notification." msgstr "" -#: lib/command.php:641 +#: lib/command.php:654 msgid "Login command is disabled" msgstr "" -#: lib/command.php:652 +#: lib/command.php:665 #, php-format msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "" -#: lib/command.php:668 +#: lib/command.php:692 +#, fuzzy, php-format +msgid "Unsubscribed %s" +msgstr "Απέτυχε η συνδρομή." + +#: lib/command.php:709 #, fuzzy msgid "You are not subscribed to anyone." msgstr "Δεν επιτρέπεται να κάνεις συνδρομητές του λογαριασμού σου άλλους." -#: lib/command.php:670 +#: lib/command.php:711 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "Δεν επιτρέπεται να κάνεις συνδρομητές του λογαριασμού σου άλλους." msgstr[1] "Δεν επιτρέπεται να κάνεις συνδρομητές του λογαριασμού σου άλλους." -#: lib/command.php:690 +#: lib/command.php:731 #, fuzzy msgid "No one is subscribed to you." msgstr "Δεν επιτρέπεται να κάνεις συνδρομητές του λογαριασμού σου άλλους." -#: lib/command.php:692 +#: lib/command.php:733 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "Δεν επιτρέπεται να κάνεις συνδρομητές του λογαριασμού σου άλλους." msgstr[1] "Δεν επιτρέπεται να κάνεις συνδρομητές του λογαριασμού σου άλλους." -#: lib/command.php:712 +#: lib/command.php:753 msgid "You are not a member of any groups." msgstr "Δεν είστε μέλος καμίας ομάδας." -#: lib/command.php:714 +#: lib/command.php:755 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "Ομάδες με τα περισσότερα μέλη" msgstr[1] "Ομάδες με τα περισσότερα μέλη" -#: lib/command.php:728 +#: lib/command.php:769 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -4508,6 +5050,7 @@ msgid "" "d - direct message to user\n" "get - get last notice from user\n" "whois - get profile info on user\n" +"lose - force user to stop following you\n" "fav - add user's last notice as a 'fave'\n" "fav # - add notice with the given id as a 'fave'\n" "repeat # - repeat a notice with a given id\n" @@ -4535,20 +5078,20 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:131 +#: lib/common.php:136 #, fuzzy msgid "No configuration file found. " msgstr "Ο κωδικός επιβεβαίωσης δεν βρέθηκε." -#: lib/common.php:132 +#: lib/common.php:137 msgid "I looked for configuration files in the following places: " msgstr "" -#: lib/common.php:134 +#: lib/common.php:139 msgid "You may wish to run the installer to fix this." msgstr "" -#: lib/common.php:135 +#: lib/common.php:140 msgid "Go to the installer." msgstr "" @@ -4564,6 +5107,15 @@ msgstr "" msgid "Updates by SMS" msgstr "" +#: lib/connectsettingsaction.php:120 +#, fuzzy +msgid "Connections" +msgstr "Σύνδεση" + +#: lib/connectsettingsaction.php:121 +msgid "Authorized connected applications" +msgstr "" + #: lib/dberroraction.php:60 msgid "Database error" msgstr "" @@ -4649,7 +5201,7 @@ msgstr "Περιγράψτε την ομάδα ή το θέμα" #: lib/groupeditform.php:170 #, php-format msgid "Describe the group or topic in %d characters" -msgstr "Περιγράψτε την ομάδα ή το θέμα μέχρι %d χαρακτήρες" +msgstr "Περιγράψτε την ομάδα ή το θέμα χρησιμοποιώντας μέχρι %d χαρακτήρες" #: lib/groupeditform.php:179 msgid "" @@ -4748,12 +5300,12 @@ msgstr "" msgid "kB" msgstr "" -#: lib/jabber.php:202 +#: lib/jabber.php:220 #, php-format msgid "[%s]" msgstr "" -#: lib/jabber.php:385 +#: lib/jabber.php:400 #, php-format msgid "Unknown inbox source %d." msgstr "" @@ -4950,7 +5502,7 @@ msgid "" "users in conversation. People can send you messages for your eyes only." msgstr "" -#: lib/mailbox.php:227 lib/noticelist.php:477 +#: lib/mailbox.php:227 lib/noticelist.php:482 msgid "from" msgstr "από" @@ -5068,57 +5620,53 @@ msgid "Do not share my location" msgstr "Αδύνατη η αποθήκευση του προφίλ." #: lib/noticeform.php:216 -msgid "Hide this info" -msgstr "" - -#: lib/noticeform.php:217 msgid "" "Sorry, retrieving your geo location is taking longer than expected, please " "try again later" msgstr "" -#: lib/noticelist.php:428 +#: lib/noticelist.php:429 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "" -#: lib/noticelist.php:429 +#: lib/noticelist.php:430 msgid "N" msgstr "" -#: lib/noticelist.php:429 +#: lib/noticelist.php:430 msgid "S" msgstr "" -#: lib/noticelist.php:430 +#: lib/noticelist.php:431 msgid "E" msgstr "" -#: lib/noticelist.php:430 +#: lib/noticelist.php:431 msgid "W" msgstr "" -#: lib/noticelist.php:436 +#: lib/noticelist.php:438 msgid "at" msgstr "" -#: lib/noticelist.php:531 +#: lib/noticelist.php:558 msgid "in context" msgstr "" -#: lib/noticelist.php:556 +#: lib/noticelist.php:583 msgid "Repeated by" msgstr "Επαναλαμβάνεται από" -#: lib/noticelist.php:585 +#: lib/noticelist.php:610 msgid "Reply to this notice" msgstr "" -#: lib/noticelist.php:586 +#: lib/noticelist.php:611 msgid "Reply" msgstr "" -#: lib/noticelist.php:628 +#: lib/noticelist.php:655 #, fuzzy msgid "Notice repeated" msgstr "Ρυθμίσεις OpenID" @@ -5152,11 +5700,7 @@ msgstr "" msgid "Duplicate notice" msgstr "Διαγραφή μηνύματος" -#: lib/oauthstore.php:466 lib/subs.php:48 -msgid "You have been banned from subscribing." -msgstr "" - -#: lib/oauthstore.php:491 +#: lib/oauthstore.php:490 msgid "Couldn't insert new subscription." msgstr "Απέτυχε η εισαγωγή νέας συνδρομής." @@ -5172,19 +5716,19 @@ msgstr "" msgid "Favorites" msgstr "" -#: lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "" -#: lib/personalgroupnav.php:125 +#: lib/personalgroupnav.php:126 msgid "Your incoming messages" msgstr "" -#: lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 msgid "Outbox" msgstr "" -#: lib/personalgroupnav.php:130 +#: lib/personalgroupnav.php:131 msgid "Your sent messages" msgstr "" @@ -5263,6 +5807,10 @@ msgstr "Αδυναμία διαγραφής αυτού του μηνύματος msgid "Repeat this notice" msgstr "Αδυναμία διαγραφής αυτού του μηνύματος." +#: lib/router.php:665 +msgid "No single user defined for single-user mode." +msgstr "" + #: lib/sandboxform.php:67 msgid "Sandbox" msgstr "" @@ -5332,36 +5880,6 @@ msgstr "" msgid "Groups %s is a member of" msgstr "" -#: lib/subs.php:52 -msgid "Already subscribed!" -msgstr "" - -#: lib/subs.php:56 -msgid "User has blocked you." -msgstr "" - -#: lib/subs.php:63 -msgid "Could not subscribe." -msgstr "Απέτυχε η συνδρομή." - -#: lib/subs.php:82 -msgid "Could not subscribe other to you." -msgstr "Δεν επιτρέπεται να κάνεις συνδρομητές του λογαριασμού σου άλλους." - -#: lib/subs.php:137 -#, fuzzy -msgid "Not subscribed!" -msgstr "Απέτυχε η συνδρομή." - -#: lib/subs.php:142 -#, fuzzy -msgid "Couldn't delete self-subscription." -msgstr "Απέτυχε η διαγραφή συνδρομής." - -#: lib/subs.php:158 -msgid "Couldn't delete subscription." -msgstr "Απέτυχε η διαγραφή συνδρομής." - #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -5414,81 +5932,81 @@ msgstr "" msgid "User actions" msgstr "" -#: lib/userprofile.php:248 +#: lib/userprofile.php:251 msgid "Edit profile settings" msgstr "Επεξεργασία ρυθμίσεων προφίλ" -#: lib/userprofile.php:249 +#: lib/userprofile.php:252 msgid "Edit" msgstr "Επεξεργασία" -#: lib/userprofile.php:272 +#: lib/userprofile.php:275 msgid "Send a direct message to this user" msgstr "" -#: lib/userprofile.php:273 +#: lib/userprofile.php:276 msgid "Message" msgstr "Μήνυμα" -#: lib/userprofile.php:311 +#: lib/userprofile.php:314 msgid "Moderate" msgstr "" -#: lib/util.php:877 +#: lib/util.php:952 msgid "a few seconds ago" msgstr "" -#: lib/util.php:879 +#: lib/util.php:954 msgid "about a minute ago" msgstr "" -#: lib/util.php:881 +#: lib/util.php:956 #, php-format msgid "about %d minutes ago" msgstr "" -#: lib/util.php:883 +#: lib/util.php:958 msgid "about an hour ago" msgstr "" -#: lib/util.php:885 +#: lib/util.php:960 #, php-format msgid "about %d hours ago" msgstr "" -#: lib/util.php:887 +#: lib/util.php:962 msgid "about a day ago" msgstr "" -#: lib/util.php:889 +#: lib/util.php:964 #, php-format msgid "about %d days ago" msgstr "" -#: lib/util.php:891 +#: lib/util.php:966 msgid "about a month ago" msgstr "" -#: lib/util.php:893 +#: lib/util.php:968 #, php-format msgid "about %d months ago" msgstr "" -#: lib/util.php:895 +#: lib/util.php:970 msgid "about a year ago" msgstr "" #: lib/webcolor.php:82 #, php-format msgid "%s is not a valid color!" -msgstr "%s δεν είναι ένα έγκυρο χρώμα!" +msgstr "Το %s δεν είναι ένα έγκυρο χρώμα!" #: lib/webcolor.php:123 #, php-format msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "" -#: scripts/xmppdaemon.php:301 +#: lib/xmppmanager.php:402 #, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "" diff --git a/locale/en_GB/LC_MESSAGES/statusnet.po b/locale/en_GB/LC_MESSAGES/statusnet.po index 407007fbf9..98e7790f2b 100644 --- a/locale/en_GB/LC_MESSAGES/statusnet.po +++ b/locale/en_GB/LC_MESSAGES/statusnet.po @@ -10,17 +10,69 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-01-13 22:04+0000\n" -"PO-Revision-Date: 2010-01-13 22:05:04+0000\n" +"POT-Creation-Date: 2010-02-24 23:49+0000\n" +"PO-Revision-Date: 2010-02-24 23:50:27+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 (r61027); Translate extension (2010-01-04)\n" +"X-Generator: MediaWiki 1.17alpha (r62925); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: en-gb\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: actions/accessadminpanel.php:54 lib/adminpanelaction.php:326 +msgid "Access" +msgstr "Access" + +#: actions/accessadminpanel.php:65 +msgid "Site access settings" +msgstr "Site access settings" + +#: actions/accessadminpanel.php:158 +msgid "Registration" +msgstr "Registration" + +#: actions/accessadminpanel.php:161 +msgid "Private" +msgstr "Private" + +#: actions/accessadminpanel.php:163 +msgid "Prohibit anonymous users (not logged in) from viewing site?" +msgstr "Prohibit anonymous users (not logged in) from viewing site?" + +#: actions/accessadminpanel.php:167 +msgid "Invite only" +msgstr "Invite only" + +#: actions/accessadminpanel.php:169 +msgid "Make registration invitation only." +msgstr "Make registration invitation only." + +#: actions/accessadminpanel.php:173 +msgid "Closed" +msgstr "Closed" + +#: actions/accessadminpanel.php:175 +msgid "Disable new registrations." +msgstr "Disable new registrations." + +#: actions/accessadminpanel.php:189 actions/designadminpanel.php:586 +#: actions/emailsettings.php:195 actions/imsettings.php:163 +#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 +#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 +#: actions/siteadminpanel.php:336 actions/smssettings.php:181 +#: actions/subscriptions.php:208 actions/tagother.php:154 +#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 lib/designsettings.php:256 +#: lib/groupeditform.php:202 +msgid "Save" +msgstr "Save" + +#: actions/accessadminpanel.php:189 +msgid "Save access settings" +msgstr "Save access 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" @@ -35,25 +87,29 @@ msgstr "No such page" #: 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:144 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apistatusesupdate.php:148 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:78 #: actions/apitimelinehome.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/otp.php:76 #: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154 -#: actions/replies.php:73 actions/repliesrss.php:38 +#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 #: 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:302 lib/command.php:355 #: lib/command.php:401 lib/command.php:462 lib/command.php:518 #: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 -#: lib/subs.php:34 lib/subs.php:125 msgid "No such user." msgstr "No such user." +#: actions/all.php:84 +#, php-format +msgid "%1$s and friends, page %2$d" +msgstr "%1$s and friends, page %2$d" + #: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 -#: actions/apitimelinefriends.php:115 actions/apitimelinehome.php:115 +#: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" @@ -91,15 +147,15 @@ msgstr "" "something yourself." #: actions/all.php:134 -#, fuzzy, php-format +#, php-format msgid "" "You can try to [nudge %1$s](../%2$s) from his profile or [post something to " "his or her attention](%%%%action.newnotice%%%%?status_textarea=%3$s)." msgstr "" -"You can try to [nudge %s](../%s) from his profile or [post something to his " -"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +"You can try to [nudge %1$s](../%2$s) from his profile or [post something to " +"his or her attention](%%%%action.newnotice%%%%?status_textarea=%3$s)." -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211 #, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " @@ -112,8 +168,8 @@ msgstr "" msgid "You and friends" msgstr "You and friends" -#: actions/allrss.php:119 actions/apitimelinefriends.php:122 -#: actions/apitimelinehome.php:122 +#: actions/allrss.php:119 actions/apitimelinefriends.php:119 +#: actions/apitimelinehome.php:120 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Updates from %1$s and friends on %2$s!" @@ -123,23 +179,23 @@ msgstr "Updates from %1$s and friends on %2$s!" #: actions/apiaccountupdateprofile.php:97 #: actions/apiaccountupdateprofilebackgroundimage.php:94 #: actions/apiaccountupdateprofilecolors.php:118 -#: 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:136 actions/apigroupismember.php:114 -#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 -#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 -#: actions/apigroupmembership.php:106 actions/apigroupshow.php:105 -#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 -#: actions/apistatusesretweets.php:112 actions/apistatusesshow.php:108 -#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93 -#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:146 -#: actions/apitimelinefriends.php:156 actions/apitimelinegroup.php:150 -#: actions/apitimelinehome.php:156 actions/apitimelinementions.php:151 -#: actions/apitimelinepublic.php:131 actions/apitimelineretweetedbyme.php:122 +#: actions/apiaccountverifycredentials.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:128 actions/apigroupcreate.php:136 +#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 +#: actions/apigroupleave.php:141 actions/apigrouplist.php:132 +#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 +#: actions/apigroupshow.php:115 actions/apihelptest.php:88 +#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 +#: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 #: actions/apitimelineretweetedtome.php:121 -#: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141 -#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 +#: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 +#: actions/apitimelineuser.php:207 actions/apiusershow.php:101 msgid "API method not found." msgstr "API method not found." @@ -153,7 +209,7 @@ msgstr "API method not found." #: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 #: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 #: actions/apigroupleave.php:91 actions/apistatusesretweet.php:65 -#: actions/apistatusesupdate.php:114 +#: actions/apistatusesupdate.php:118 msgid "This method requires a POST." msgstr "This method requires a POST." @@ -186,8 +242,9 @@ msgstr "Couldn't save profile." #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:97 -#: actions/apistatusesupdate.php:127 actions/avatarsettings.php:257 -#: actions/designadminpanel.php:122 actions/newnotice.php:94 +#: actions/apistatusesupdate.php:131 actions/avatarsettings.php:257 +#: actions/designadminpanel.php:122 actions/editapplication.php:118 +#: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 #, php-format msgid "" @@ -267,18 +324,16 @@ msgid "No status found with that ID." msgstr "No status found with that ID." #: actions/apifavoritecreate.php:119 -#, fuzzy msgid "This status is already a favorite." -msgstr "This status is already a favourite!" +msgstr "This status is already a favourite." #: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:176 msgid "Could not create favorite." msgstr "Could not create favourite." #: actions/apifavoritedestroy.php:122 -#, fuzzy msgid "That status is not a favorite." -msgstr "That status is not a favourite!" +msgstr "That status is not a favourite." #: actions/apifavoritedestroy.php:134 actions/disfavor.php:87 msgid "Could not delete favorite." @@ -298,19 +353,18 @@ msgid "Could not unfollow user: User not found." msgstr "Could not unfollow user: User not found." #: actions/apifriendshipsdestroy.php:120 -#, fuzzy msgid "You cannot unfollow yourself." -msgstr "You cannot unfollow yourself!" +msgstr "You cannot unfollow yourself." #: 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/apifriendshipsshow.php:135 +#: actions/apifriendshipsshow.php:134 msgid "Could not determine source user." msgstr "Could not determine source user." -#: actions/apifriendshipsshow.php:143 +#: actions/apifriendshipsshow.php:142 msgid "Could not find target user." msgstr "Could not find target user." @@ -332,7 +386,8 @@ msgstr "Nickname already in use. Try another one." msgid "Not a valid nickname." msgstr "Not a valid nickname." -#: actions/apigroupcreate.php:196 actions/editgroup.php:195 +#: actions/apigroupcreate.php:196 actions/editapplication.php:215 +#: actions/editgroup.php:195 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:217 msgid "Homepage is not a valid URL." @@ -344,7 +399,8 @@ msgstr "Homepage is not a valid URL." msgid "Full name is too long (max 255 chars)." msgstr "Full name is too long (max 255 chars)." -#: actions/apigroupcreate.php:213 +#: actions/apigroupcreate.php:213 actions/editapplication.php:190 +#: actions/newapplication.php:172 #, php-format msgid "Description is too long (max %d chars)." msgstr "Description is too long (max %d chars)" @@ -380,7 +436,7 @@ msgstr "Alias can't be the same as nickname." #: actions/apigroupismember.php:95 actions/apigroupjoin.php:104 #: actions/apigroupleave.php:104 actions/apigroupmembership.php:91 -#: actions/apigroupshow.php:90 actions/apitimelinegroup.php:91 +#: actions/apigroupshow.php:82 actions/apitimelinegroup.php:91 msgid "Group not found!" msgstr "Group not found!" @@ -393,18 +449,18 @@ msgid "You have been blocked from that group by the admin." msgstr "You have been blocked from that group by the admin." #: actions/apigroupjoin.php:138 actions/joingroup.php:124 -#, fuzzy, php-format +#, php-format msgid "Could not join user %1$s to group %2$s." -msgstr "Could not join user %s to group %s." +msgstr "Could not join user %1$s to group %2$s." #: actions/apigroupleave.php:114 msgid "You are not a member of this group." msgstr "You are not a member of this group." #: actions/apigroupleave.php:124 actions/leavegroup.php:119 -#, fuzzy, php-format +#, php-format msgid "Could not remove user %1$s from group %2$s." -msgstr "Could not remove user %s to group %s." +msgstr "Could not remove user %1$s to group %2$s." #: actions/apigrouplist.php:95 #, php-format @@ -421,6 +477,115 @@ msgstr "%s groups" msgid "groups on %s" msgstr "groups on %s" +#: actions/apioauthauthorize.php:101 +msgid "No oauth_token parameter provided." +msgstr "No oauth_token parameter provided." + +#: actions/apioauthauthorize.php:106 +msgid "Invalid token." +msgstr "Invalid token." + +#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 +#: actions/deletenotice.php:157 actions/disfavor.php:74 +#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54 +#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupunblock.php:66 actions/imsettings.php:206 +#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 +#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 +#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135 +#: actions/othersettings.php:145 actions/passwordsettings.php:138 +#: actions/profilesettings.php:194 actions/recoverpassword.php:337 +#: actions/register.php:165 actions/remotesubscribe.php:77 +#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 +#: actions/subscribe.php:86 actions/tagother.php:166 +#: 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/apioauthauthorize.php:135 +msgid "Invalid nickname / password!" +msgstr "Invalid nickname / password!" + +#: actions/apioauthauthorize.php:159 +msgid "Database error deleting OAuth application user." +msgstr "Database error deleting OAuth application user." + +#: actions/apioauthauthorize.php:185 +msgid "Database error inserting OAuth application user." +msgstr "Database error inserting OAuth application user." + +#: actions/apioauthauthorize.php:214 +#, php-format +msgid "" +"The request token %s has been authorized. Please exchange it for an access " +"token." +msgstr "" +"The request token %s has been authorised. Please exchange it for an access " +"token." + +#: actions/apioauthauthorize.php:227 +#, php-format +msgid "The request token %s has been denied and revoked." +msgstr "The request token %s has been denied and revoked." + +#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 +#: actions/designadminpanel.php:103 actions/editapplication.php:139 +#: actions/emailsettings.php:256 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/newapplication.php:121 +#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 +#: actions/smssettings.php:248 lib/designsettings.php:304 +msgid "Unexpected form submission." +msgstr "Unexpected form submission." + +#: actions/apioauthauthorize.php:259 +msgid "An application would like to connect to your account" +msgstr "An application would like to connect to your account" + +#: actions/apioauthauthorize.php:276 +msgid "Allow or deny access" +msgstr "Allow or deny access" + +#: actions/apioauthauthorize.php:292 +#, php-format +msgid "" +"The application %1$s by %2$s would like " +"the ability to %3$s your %4$s account data. You should only " +"give access to your %4$s account to third parties you trust." +msgstr "" +"The application %1$s by %2$s would like " +"the ability to %3$s your %4$s account data. You should only " +"give access to your %4$s account to third parties you trust." + +#: actions/apioauthauthorize.php:310 lib/action.php:441 +msgid "Account" +msgstr "Account" + +#: actions/apioauthauthorize.php:313 actions/login.php:230 +#: actions/profilesettings.php:106 actions/register.php:424 +#: actions/showgroup.php:236 actions/tagother.php:94 +#: actions/userauthorization.php:145 lib/groupeditform.php:152 +#: lib/userprofile.php:131 +msgid "Nickname" +msgstr "Nickname" + +#: actions/apioauthauthorize.php:316 actions/login.php:233 +#: actions/register.php:429 lib/accountsettingsaction.php:116 +msgid "Password" +msgstr "Password" + +#: actions/apioauthauthorize.php:328 +msgid "Deny" +msgstr "Deny" + +#: actions/apioauthauthorize.php:334 +msgid "Allow" +msgstr "Allow" + +#: actions/apioauthauthorize.php:351 +msgid "Allow or deny access to your account information." +msgstr "Allow or deny access to your account information." + #: actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." msgstr "This method requires a POST or DELETE." @@ -450,17 +615,17 @@ msgstr "Status deleted." msgid "No status with that ID found." msgstr "No status with that ID found." -#: actions/apistatusesupdate.php:157 actions/newnotice.php:155 +#: actions/apistatusesupdate.php:161 actions/newnotice.php:155 #: lib/mailhandler.php:60 #, php-format msgid "That's too long. Max notice size is %d chars." msgstr "That's too long. Max notice size is %d chars." -#: actions/apistatusesupdate.php:198 +#: actions/apistatusesupdate.php:202 msgid "Not found" msgstr "Not found" -#: actions/apistatusesupdate.php:221 actions/newnotice.php:178 +#: actions/apistatusesupdate.php:225 actions/newnotice.php:178 #, php-format msgid "Max notice size is %d chars, including attachment URL." msgstr "Max notice size is %d chars, including attachment URL." @@ -470,14 +635,14 @@ msgid "Unsupported format." msgstr "Unsupported format." #: actions/apitimelinefavorites.php:108 -#, fuzzy, php-format +#, php-format msgid "%1$s / Favorites from %2$s" -msgstr "%s / Favourites from %s" +msgstr "%1$s / Favourites from %2$s" -#: actions/apitimelinefavorites.php:120 -#, fuzzy, php-format +#: actions/apitimelinefavorites.php:117 +#, php-format msgid "%1$s updates favorited by %2$s / %2$s." -msgstr "%s updates favourited by %s / %s." +msgstr "%1$s updates favourited by %2$s / %2$s." #: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 #: actions/grouprss.php:131 actions/userrss.php:90 @@ -485,7 +650,7 @@ msgstr "%s updates favourited by %s / %s." msgid "%s timeline" msgstr "%s timeline" -#: actions/apitimelinegroup.php:117 actions/apitimelineuser.php:126 +#: actions/apitimelinegroup.php:114 actions/apitimelineuser.php:126 #: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" @@ -501,27 +666,22 @@ msgstr "%1$s / Updates mentioning %2$s" 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/apitimelinepublic.php:107 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "%s public timeline" -#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "%s updates from everyone!" -#: actions/apitimelineretweetedbyme.php:112 -#, php-format -msgid "Repeated by %s" -msgstr "Repeated by %s" - #: actions/apitimelineretweetedtome.php:111 #, php-format msgid "Repeated to %s" msgstr "Repeated to %s" -#: actions/apitimelineretweetsofme.php:112 +#: actions/apitimelineretweetsofme.php:114 #, php-format msgid "Repeats of %s" msgstr "Repeats of %s" @@ -531,7 +691,7 @@ msgstr "Repeats of %s" msgid "Notices tagged with %s" msgstr "Notices tagged with %s" -#: actions/apitimelinetag.php:108 actions/tagrss.php:64 +#: actions/apitimelinetag.php:104 actions/tagrss.php:64 #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Updates tagged with %1$s on %2$s!" @@ -591,8 +751,8 @@ msgstr "Original" msgid "Preview" msgstr "Preview" -#: actions/avatarsettings.php:149 lib/deleteuserform.php:66 -#: lib/noticelist.php:611 +#: actions/avatarsettings.php:149 actions/showapplication.php:252 +#: lib/deleteuserform.php:66 lib/noticelist.php:637 msgid "Delete" msgstr "Delete" @@ -604,29 +764,6 @@ msgstr "Upload" msgid "Crop" msgstr "Crop" -#: actions/avatarsettings.php:268 actions/deletenotice.php:157 -#: actions/disfavor.php:74 actions/emailsettings.php:238 actions/favor.php:75 -#: actions/geocode.php:50 actions/groupblock.php:66 actions/grouplogo.php:309 -#: actions/groupunblock.php:66 actions/imsettings.php:206 -#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 -#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 -#: actions/othersettings.php:145 actions/passwordsettings.php:138 -#: actions/profilesettings.php:194 actions/recoverpassword.php:337 -#: actions/register.php:165 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 -#: actions/subscribe.php:46 actions/tagother.php:166 -#: 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/avatarsettings.php:281 actions/designadminpanel.php:103 -#: actions/emailsettings.php:256 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/avatarsettings.php:328 msgid "Pick a square area of the image to be your avatar" msgstr "Pick a square area of the image to be your avatar" @@ -665,8 +802,9 @@ msgstr "" "unsubscribed from you, unable to subscribe to you in the future, and you " "will not be notified of any @-replies from them." -#: actions/block.php:143 actions/deletenotice.php:145 -#: actions/deleteuser.php:147 actions/groupblock.php:178 +#: actions/block.php:143 actions/deleteapplication.php:153 +#: actions/deletenotice.php:145 actions/deleteuser.php:147 +#: actions/groupblock.php:178 msgid "No" msgstr "No" @@ -674,13 +812,13 @@ msgstr "No" msgid "Do not block this user" msgstr "Do not block this user" -#: actions/block.php:144 actions/deletenotice.php:146 -#: actions/deleteuser.php:148 actions/groupblock.php:179 -#: lib/repeatform.php:132 +#: actions/block.php:144 actions/deleteapplication.php:158 +#: actions/deletenotice.php:146 actions/deleteuser.php:148 +#: actions/groupblock.php:179 lib/repeatform.php:132 msgid "Yes" msgstr "Yes" -#: actions/block.php:144 actions/groupmembers.php:346 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80 msgid "Block this user" msgstr "Block this user" @@ -704,9 +842,9 @@ msgid "%s blocked profiles" msgstr "%s blocked profiles" #: actions/blockedfromgroup.php:93 -#, fuzzy, php-format +#, php-format msgid "%1$s blocked profiles, page %2$d" -msgstr "%s blocked profiles, page %d" +msgstr "%1$s blocked profiles, page %2$d" #: actions/blockedfromgroup.php:108 msgid "A list of the users blocked from joining this group." @@ -763,8 +901,8 @@ msgid "Couldn't delete email confirmation." msgstr "Couldn't delete e-mail confirmation." #: actions/confirmaddress.php:144 -msgid "Confirm Address" -msgstr "Confirm Address" +msgid "Confirm address" +msgstr "Confirm address" #: actions/confirmaddress.php:159 #, php-format @@ -780,10 +918,51 @@ msgstr "Conversation" msgid "Notices" msgstr "Notices" +#: actions/deleteapplication.php:63 +msgid "You must be logged in to delete an application." +msgstr "You must be logged in to delete an application." + +#: actions/deleteapplication.php:71 +msgid "Application not found." +msgstr "Application not found." + +#: actions/deleteapplication.php:78 actions/editapplication.php:77 +#: actions/showapplication.php:94 +msgid "You are not the owner of this application." +msgstr "You are not the owner of this application." + +#: actions/deleteapplication.php:102 actions/editapplication.php:127 +#: actions/newapplication.php:110 actions/showapplication.php:118 +#: lib/action.php:1197 +msgid "There was a problem with your session token." +msgstr "There was a problem with your session token." + +#: actions/deleteapplication.php:123 actions/deleteapplication.php:147 +msgid "Delete application" +msgstr "Delete application" + +#: actions/deleteapplication.php:149 +msgid "" +"Are you sure you want to delete this application? This will clear all data " +"about the application from the database, including all existing user " +"connections." +msgstr "" +"Are you sure you want to delete this application? This will clear all data " +"about the application from the database, including all existing user " +"connections." + +#: actions/deleteapplication.php:156 +msgid "Do not delete this application" +msgstr "Do not delete this application" + +#: actions/deleteapplication.php:160 +msgid "Delete this application" +msgstr "Delete this application" + #: 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/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 #: lib/adminpanelaction.php:72 lib/profileformaction.php:63 #: lib/settingsaction.php:72 @@ -814,7 +993,7 @@ msgstr "Are you sure you want to delete this notice?" msgid "Do not delete this notice" msgstr "Do not delete this notice" -#: actions/deletenotice.php:146 lib/noticelist.php:611 +#: actions/deletenotice.php:146 lib/noticelist.php:637 msgid "Delete this notice" msgstr "Delete this notice" @@ -869,18 +1048,16 @@ msgid "Site logo" msgstr "Site logo" #: actions/designadminpanel.php:387 -#, fuzzy msgid "Change theme" -msgstr "Change" +msgstr "Change theme" #: actions/designadminpanel.php:404 msgid "Site theme" msgstr "Site theme" #: actions/designadminpanel.php:405 -#, fuzzy msgid "Theme for the site." -msgstr "Logout from the site" +msgstr "Theme for the site." #: actions/designadminpanel.php:417 lib/designsettings.php:101 msgid "Change background image" @@ -892,11 +1069,13 @@ msgid "Background" msgstr "Background" #: actions/designadminpanel.php:427 -#, fuzzy, php-format +#, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" "$s." -msgstr "You can upload a logo image for your group." +msgstr "" +"You can upload a background image for the site. The maximum file size is %1" +"$s." #: actions/designadminpanel.php:457 lib/designsettings.php:139 msgid "On" @@ -919,14 +1098,12 @@ msgid "Change colours" msgstr "Change colours" #: actions/designadminpanel.php:510 lib/designsettings.php:191 -#, fuzzy msgid "Content" -msgstr "Connect" +msgstr "Content" #: actions/designadminpanel.php:523 lib/designsettings.php:204 -#, fuzzy msgid "Sidebar" -msgstr "Search" +msgstr "Sidebar" #: actions/designadminpanel.php:536 lib/designsettings.php:217 msgid "Text" @@ -948,16 +1125,6 @@ msgstr "Restore default designs" msgid "Reset back to default" msgstr "Reset back to default" -#: actions/designadminpanel.php:586 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 -#: actions/pathsadminpanel.php:324 actions/profilesettings.php:174 -#: actions/siteadminpanel.php:388 actions/smssettings.php:181 -#: actions/subscriptions.php:203 actions/tagother.php:154 -#: actions/useradminpanel.php:313 lib/designsettings.php:256 -#: lib/groupeditform.php:202 -msgid "Save" -msgstr "Save" - #: actions/designadminpanel.php:587 lib/designsettings.php:257 msgid "Save design" msgstr "Save design" @@ -970,9 +1137,75 @@ msgstr "This notice is not a favourite!" msgid "Add to favorites" msgstr "Add to favourites" -#: actions/doc.php:69 -msgid "No such document." -msgstr "No such document." +#: actions/doc.php:158 +#, php-format +msgid "No such document \"%s\"" +msgstr "No such document \"%s\"" + +#: actions/editapplication.php:54 +msgid "Edit Application" +msgstr "Edit Application" + +#: actions/editapplication.php:66 +msgid "You must be logged in to edit an application." +msgstr "You must be logged in to edit an application." + +#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:166 +#: actions/showapplication.php:87 +msgid "No such application." +msgstr "No such application." + +#: actions/editapplication.php:161 +msgid "Use this form to edit your application." +msgstr "Use this form to edit your application." + +#: actions/editapplication.php:177 actions/newapplication.php:159 +msgid "Name is required." +msgstr "Name is required." + +#: actions/editapplication.php:180 actions/newapplication.php:165 +msgid "Name is too long (max 255 chars)." +msgstr "Name is too long (max 255 chars)." + +#: actions/editapplication.php:183 actions/newapplication.php:162 +msgid "Name already in use. Try another one." +msgstr "Name already in use. Try another one." + +#: actions/editapplication.php:186 actions/newapplication.php:168 +msgid "Description is required." +msgstr "Description is required." + +#: actions/editapplication.php:194 +msgid "Source URL is too long." +msgstr "Source URL is too long." + +#: actions/editapplication.php:200 actions/newapplication.php:185 +msgid "Source URL is not valid." +msgstr "Source URL is not valid." + +#: actions/editapplication.php:203 actions/newapplication.php:188 +msgid "Organization is required." +msgstr "Organisation is required." + +#: actions/editapplication.php:206 actions/newapplication.php:191 +msgid "Organization is too long (max 255 chars)." +msgstr "Organisation is too long (max 255 chars)." + +#: actions/editapplication.php:209 actions/newapplication.php:194 +msgid "Organization homepage is required." +msgstr "Organisation homepage is required." + +#: actions/editapplication.php:218 actions/newapplication.php:206 +msgid "Callback is too long." +msgstr "Callback is too long." + +#: actions/editapplication.php:225 actions/newapplication.php:215 +msgid "Callback URL is not valid." +msgstr "Callback URL is not valid." + +#: actions/editapplication.php:258 +msgid "Could not update application." +msgstr "Could not update application." #: actions/editgroup.php:56 #, php-format @@ -985,9 +1218,8 @@ msgstr "You must be logged in to create a group." #: 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 "You must be an admin to edit the group" +msgstr "You must be an admin to edit the group." #: actions/editgroup.php:154 msgid "Use this form to edit the group." @@ -1002,7 +1234,7 @@ msgstr "description is too long (max %d chars)." msgid "Could not update group." msgstr "Could not update group." -#: actions/editgroup.php:259 classes/User_group.php:390 +#: actions/editgroup.php:259 classes/User_group.php:433 msgid "Could not create aliases." msgstr "Could not create aliases" @@ -1011,9 +1243,8 @@ msgid "Options saved." msgstr "Options saved." #: actions/emailsettings.php:60 -#, fuzzy msgid "Email settings" -msgstr "E-mail Settings" +msgstr "E-mail settings" #: actions/emailsettings.php:71 #, php-format @@ -1044,14 +1275,14 @@ msgstr "" "a message with further instructions." #: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 +#: actions/smssettings.php:126 lib/applicationeditform.php:331 +#: lib/applicationeditform.php:332 msgid "Cancel" msgstr "Cancel" #: actions/emailsettings.php:121 -#, fuzzy msgid "Email address" -msgstr "E-mail addresses" +msgstr "E-mail address" #: actions/emailsettings.php:123 msgid "Email address, like \"UserName@example.org\"" @@ -1125,7 +1356,7 @@ msgid "Cannot normalize that email address" msgstr "Cannot normalise that e-mail address" #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:157 +#: actions/siteadminpanel.php:143 msgid "Not a valid email address." msgstr "Not a valid e-mail address." @@ -1137,7 +1368,7 @@ msgstr "That is already your e-mail address." msgid "That email address already belongs to another user." msgstr "That e-mail address already belongs to another user." -#: actions/emailsettings.php:353 actions/imsettings.php:317 +#: actions/emailsettings.php:353 actions/imsettings.php:319 #: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." msgstr "Couldn't insert confirmation code." @@ -1198,7 +1429,7 @@ msgstr "This notice is already a favourite!" msgid "Disfavor favorite" msgstr "Disfavor favourite" -#: actions/favorited.php:65 lib/popularnoticesection.php:88 +#: actions/favorited.php:65 lib/popularnoticesection.php:91 #: lib/publicgroupnav.php:93 msgid "Popular notices" msgstr "Popular notices" @@ -1256,29 +1487,25 @@ msgid "Featured users, page %d" msgstr "Featured users, page %d" #: actions/featured.php:99 -#, fuzzy, php-format +#, php-format msgid "A selection of some great users on %s" -msgstr "A selection of some of the great users on %s" +msgstr "A selection of some great users on %s" #: actions/file.php:34 -#, fuzzy msgid "No notice ID." -msgstr "No notice." +msgstr "No notice ID." #: actions/file.php:38 -#, fuzzy msgid "No notice." msgstr "No notice." #: actions/file.php:42 -#, fuzzy msgid "No attachments." -msgstr "No such document." +msgstr "No attachments." #: actions/file.php:51 -#, fuzzy msgid "No uploaded attachments." -msgstr "No such document." +msgstr "No uploaded attachments." #: actions/finishremotesubscribe.php:69 msgid "Not expecting this response!" @@ -1353,21 +1580,21 @@ msgstr "User is already blocked from group." msgid "User is not a member of group." msgstr "User is not a member of group." -#: actions/groupblock.php:136 actions/groupmembers.php:314 +#: actions/groupblock.php:136 actions/groupmembers.php:316 #, fuzzy msgid "Block user from group" msgstr "Block user" #: actions/groupblock.php:162 -#, fuzzy, php-format +#, php-format msgid "" "Are you sure you want to block user \"%1$s\" from the group \"%2$s\"? They " "will be removed from the group, unable to post, and unable to subscribe to " "the group in the future." msgstr "" -"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." +"Are you sure you want to block user \"%1$s\" from the group \"%2$s\"? They " +"will be removed from the group, unable to post and unable to subscribe to " +"the group in the future." #: actions/groupblock.php:178 msgid "Do not block this user from this group" @@ -1457,25 +1684,25 @@ msgstr "%s group members, page %d" msgid "A list of the users in this group." msgstr "A list of the users in this group." -#: actions/groupmembers.php:175 lib/action.php:442 lib/groupnav.php:107 +#: actions/groupmembers.php:175 lib/action.php:448 lib/groupnav.php:107 msgid "Admin" msgstr "Admin" -#: actions/groupmembers.php:346 lib/blockform.php:69 +#: actions/groupmembers.php:348 lib/blockform.php:69 msgid "Block" msgstr "Block" -#: actions/groupmembers.php:441 +#: actions/groupmembers.php:443 #, fuzzy msgid "Make user an admin of the group" msgstr "You must be an admin to edit the group" -#: actions/groupmembers.php:473 +#: actions/groupmembers.php:475 #, fuzzy msgid "Make Admin" msgstr "Admin" -#: actions/groupmembers.php:473 +#: actions/groupmembers.php:475 msgid "Make this user an admin" msgstr "" @@ -1503,6 +1730,11 @@ msgid "" "for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" "%%%%)" msgstr "" +"%%%%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/groups.php:107 actions/usergroups.php:124 lib/groupeditform.php:122 msgid "Create a new group" @@ -1585,9 +1817,8 @@ msgstr "" "message with further instructions. (Did you add %s to your buddy list?)" #: actions/imsettings.php:124 -#, fuzzy msgid "IM address" -msgstr "I.M. Address" +msgstr "IM address" #: actions/imsettings.php:126 #, php-format @@ -1648,6 +1879,11 @@ msgstr "" msgid "That is not your Jabber ID." msgstr "That is not your Jabber ID." +#: actions/inbox.php:59 +#, fuzzy, php-format +msgid "Inbox for %1$s - page %2$d" +msgstr "Inbox for %s" + #: actions/inbox.php:62 #, php-format msgid "Inbox for %s" @@ -1728,7 +1964,7 @@ msgstr "Personal message" msgid "Optionally add a personal message to the invitation." msgstr "Optionally add a personal message to the invitation." -#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:237 +#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:236 msgid "Send" msgstr "Send" @@ -1825,11 +2061,10 @@ msgid "Incorrect username or password." msgstr "Incorrect username or password." #: actions/login.php:132 actions/otp.php:120 -#, fuzzy msgid "Error setting user. You are probably not authorized." -msgstr "You are not authorised." +msgstr "Error setting user. You are probably not authorised." -#: actions/login.php:188 actions/login.php:241 lib/action.php:460 +#: actions/login.php:188 actions/login.php:241 lib/action.php:466 #: lib/logingroupnav.php:79 msgid "Login" msgstr "Login" @@ -1838,17 +2073,6 @@ msgstr "Login" msgid "Login to site" msgstr "Login to site" -#: actions/login.php:230 actions/profilesettings.php:106 -#: actions/register.php:424 actions/showgroup.php:236 actions/tagother.php:94 -#: lib/groupeditform.php:152 lib/userprofile.php:131 -msgid "Nickname" -msgstr "Nickname" - -#: actions/login.php:233 actions/register.php:429 -#: lib/accountsettingsaction.php:116 -msgid "Password" -msgstr "Password" - #: actions/login.php:236 actions/register.php:478 msgid "Remember me" msgstr "Remember me" @@ -1878,21 +2102,21 @@ msgstr "" "Login with your username and password. Don't have a username yet? [Register]" "(%%action.register%%) a new account." -#: actions/makeadmin.php:91 +#: actions/makeadmin.php:92 msgid "Only an admin can make another user an admin." msgstr "" -#: actions/makeadmin.php:95 +#: actions/makeadmin.php:96 #, fuzzy, php-format msgid "%1$s is already an admin for group \"%2$s\"." msgstr "User is already blocked from group." -#: actions/makeadmin.php:132 +#: actions/makeadmin.php:133 #, fuzzy, php-format msgid "Can't get membership record for %1$s in group %2$s." msgstr "Could not remove user %s to group %s" -#: actions/makeadmin.php:145 +#: actions/makeadmin.php:146 #, fuzzy, php-format msgid "Can't make %1$s an admin for group %2$s." msgstr "You must be an admin to edit the group" @@ -1901,6 +2125,30 @@ msgstr "You must be an admin to edit the group" msgid "No current status" msgstr "No current status" +#: actions/newapplication.php:52 +#, fuzzy +msgid "New Application" +msgstr "No such notice." + +#: actions/newapplication.php:64 +#, fuzzy +msgid "You must be logged in to register an application." +msgstr "You must be logged in to create a group." + +#: actions/newapplication.php:143 +#, fuzzy +msgid "Use this form to register a new application." +msgstr "Use this form to create a new group." + +#: actions/newapplication.php:176 +msgid "Source URL is required." +msgstr "" + +#: actions/newapplication.php:258 actions/newapplication.php:267 +#, fuzzy +msgid "Could not create application." +msgstr "Could not create aliases" + #: actions/newgroup.php:53 msgid "New group" msgstr "New group" @@ -1984,6 +2232,8 @@ msgid "" "Why not [register an account](%%%%action.register%%%%) and be the first to " "[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" msgstr "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" #: actions/noticesearchrss.php:96 #, php-format @@ -2009,6 +2259,51 @@ msgstr "Nudge sent" msgid "Nudge sent!" msgstr "Nudge sent!" +#: actions/oauthappssettings.php:59 +#, fuzzy +msgid "You must be logged in to list your applications." +msgstr "You must be logged in to create a group." + +#: actions/oauthappssettings.php:74 +#, fuzzy +msgid "OAuth applications" +msgstr "Other options" + +#: actions/oauthappssettings.php:85 +msgid "Applications you have registered" +msgstr "" + +#: actions/oauthappssettings.php:135 +#, php-format +msgid "You have not registered any applications yet." +msgstr "" + +#: actions/oauthconnectionssettings.php:72 +msgid "Connected applications" +msgstr "" + +#: actions/oauthconnectionssettings.php:83 +msgid "You have allowed the following applications to access you account." +msgstr "" + +#: actions/oauthconnectionssettings.php:175 +#, fuzzy +msgid "You are not a user of that application." +msgstr "You are not a member of that group." + +#: actions/oauthconnectionssettings.php:186 +msgid "Unable to revoke access for app: " +msgstr "" + +#: actions/oauthconnectionssettings.php:198 +#, php-format +msgid "You have not authorized any applications to use your account." +msgstr "You have not authorised any applications to use your account." + +#: actions/oauthconnectionssettings.php:211 +msgid "Developers can edit the registration settings for their applications " +msgstr "" + #: actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" msgstr "Notice has no profile" @@ -2027,8 +2322,8 @@ msgstr "Connect" msgid "Only " msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1033 -#: lib/api.php:1061 lib/api.php:1171 +#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 +#: lib/api.php:1068 lib/api.php:1177 msgid "Not a supported data format." msgstr "Not a supported data format." @@ -2041,7 +2336,8 @@ msgid "Notice Search" msgstr "Notice Search" #: actions/othersettings.php:60 -msgid "Other Settings" +#, fuzzy +msgid "Other settings" msgstr "Other Settings" #: actions/othersettings.php:71 @@ -2054,7 +2350,7 @@ msgstr "" #: actions/othersettings.php:116 msgid "Shorten URLs with" -msgstr "" +msgstr "Shorten URLs with" #: actions/othersettings.php:117 msgid "Automatic shortening service to use." @@ -2098,6 +2394,11 @@ msgstr "Invalid notice content" msgid "Login token expired." msgstr "Login to site" +#: actions/outbox.php:58 +#, fuzzy, php-format +msgid "Outbox for %1$s - page %2$d" +msgstr "Outbox for %s" + #: actions/outbox.php:61 #, php-format msgid "Outbox for %s" @@ -2168,7 +2469,7 @@ msgstr "Can't save new password." msgid "Password saved." msgstr "Password saved." -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:326 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:331 msgid "Paths" msgstr "" @@ -2176,138 +2477,154 @@ msgstr "" msgid "Path and server settings for this StatusNet site." msgstr "" -#: actions/pathsadminpanel.php:140 +#: actions/pathsadminpanel.php:157 #, php-format msgid "Theme directory not readable: %s" msgstr "Theme directory not readable: %s" -#: actions/pathsadminpanel.php:146 +#: actions/pathsadminpanel.php:163 #, php-format msgid "Avatar directory not writable: %s" msgstr "" -#: actions/pathsadminpanel.php:152 +#: actions/pathsadminpanel.php:169 #, php-format msgid "Background directory not writable: %s" msgstr "" -#: actions/pathsadminpanel.php:160 +#: actions/pathsadminpanel.php:177 #, php-format msgid "Locales directory not readable: %s" msgstr "" -#: actions/pathsadminpanel.php:166 +#: actions/pathsadminpanel.php:183 msgid "Invalid SSL server. The maximum length is 255 characters." msgstr "" -#: actions/pathsadminpanel.php:217 actions/siteadminpanel.php:58 +#: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58 #: lib/adminpanelaction.php:311 #, fuzzy msgid "Site" msgstr "Invite" -#: actions/pathsadminpanel.php:221 +#: actions/pathsadminpanel.php:238 +msgid "Server" +msgstr "Server" + +#: actions/pathsadminpanel.php:238 +msgid "Site's server hostname." +msgstr "" + +#: actions/pathsadminpanel.php:242 msgid "Path" msgstr "" -#: actions/pathsadminpanel.php:221 +#: actions/pathsadminpanel.php:242 msgid "Site path" msgstr "Site path" -#: actions/pathsadminpanel.php:225 +#: actions/pathsadminpanel.php:246 msgid "Path to locales" msgstr "" -#: actions/pathsadminpanel.php:225 +#: actions/pathsadminpanel.php:246 msgid "Directory path to locales" msgstr "" -#: actions/pathsadminpanel.php:232 -msgid "Theme" -msgstr "" - -#: actions/pathsadminpanel.php:237 -msgid "Theme server" -msgstr "" - -#: actions/pathsadminpanel.php:241 -msgid "Theme path" -msgstr "" - -#: actions/pathsadminpanel.php:245 -msgid "Theme directory" +#: actions/pathsadminpanel.php:250 +msgid "Fancy URLs" msgstr "" #: actions/pathsadminpanel.php:252 +msgid "Use fancy (more readable and memorable) URLs?" +msgstr "" + +#: actions/pathsadminpanel.php:259 +msgid "Theme" +msgstr "" + +#: actions/pathsadminpanel.php:264 +msgid "Theme server" +msgstr "" + +#: actions/pathsadminpanel.php:268 +msgid "Theme path" +msgstr "" + +#: actions/pathsadminpanel.php:272 +msgid "Theme directory" +msgstr "" + +#: actions/pathsadminpanel.php:279 #, fuzzy msgid "Avatars" msgstr "Avatar" -#: actions/pathsadminpanel.php:257 +#: actions/pathsadminpanel.php:284 #, fuzzy msgid "Avatar server" msgstr "Avatar settings" -#: actions/pathsadminpanel.php:261 +#: actions/pathsadminpanel.php:288 #, fuzzy msgid "Avatar path" msgstr "Avatar updated." -#: actions/pathsadminpanel.php:265 +#: actions/pathsadminpanel.php:292 #, fuzzy msgid "Avatar directory" msgstr "Avatar updated." -#: actions/pathsadminpanel.php:274 +#: actions/pathsadminpanel.php:301 msgid "Backgrounds" msgstr "" -#: actions/pathsadminpanel.php:278 +#: actions/pathsadminpanel.php:305 msgid "Background server" msgstr "" -#: actions/pathsadminpanel.php:282 +#: actions/pathsadminpanel.php:309 msgid "Background path" msgstr "" -#: actions/pathsadminpanel.php:286 +#: actions/pathsadminpanel.php:313 msgid "Background directory" msgstr "" -#: actions/pathsadminpanel.php:293 +#: actions/pathsadminpanel.php:320 msgid "SSL" msgstr "SSL" -#: actions/pathsadminpanel.php:296 actions/siteadminpanel.php:346 +#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 msgid "Never" msgstr "Never" -#: actions/pathsadminpanel.php:297 +#: actions/pathsadminpanel.php:324 msgid "Sometimes" msgstr "Sometimes" -#: actions/pathsadminpanel.php:298 +#: actions/pathsadminpanel.php:325 msgid "Always" msgstr "" -#: actions/pathsadminpanel.php:302 +#: actions/pathsadminpanel.php:329 msgid "Use SSL" msgstr "" -#: actions/pathsadminpanel.php:303 +#: actions/pathsadminpanel.php:330 msgid "When to use SSL" msgstr "" -#: actions/pathsadminpanel.php:308 +#: actions/pathsadminpanel.php:335 #, fuzzy msgid "SSL server" msgstr "Server" -#: actions/pathsadminpanel.php:309 +#: actions/pathsadminpanel.php:336 msgid "Server to direct SSL requests to" msgstr "" -#: actions/pathsadminpanel.php:325 +#: actions/pathsadminpanel.php:352 msgid "Save paths" msgstr "Save paths" @@ -2339,9 +2656,9 @@ msgid "Invalid notice content" msgstr "Invalid notice content" #: actions/postnotice.php:90 -#, fuzzy, php-format +#, php-format msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’." -msgstr "Notice licence ‘%s’ is not compatible with site licence ‘%s’." +msgstr "Notice licence ‘1%$s’ is not compatible with site licence ‘%2$s’." #: actions/profilesettings.php:60 msgid "Profile settings" @@ -2368,7 +2685,7 @@ msgid "Full name" msgstr "Full name" #: actions/profilesettings.php:115 actions/register.php:453 -#: lib/groupeditform.php:161 +#: lib/applicationeditform.php:228 lib/groupeditform.php:161 msgid "Homepage" msgstr "Homepage" @@ -2391,7 +2708,7 @@ msgstr "Bio" #: actions/profilesettings.php:132 actions/register.php:471 #: actions/showgroup.php:256 actions/tagother.php:112 -#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:164 msgid "Location" msgstr "Location" @@ -2416,7 +2733,7 @@ msgid "" msgstr "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" -#: actions/profilesettings.php:151 actions/siteadminpanel.php:294 +#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 msgid "Language" msgstr "Language" @@ -2443,7 +2760,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "Bio is too long (max %d chars)." -#: actions/profilesettings.php:235 actions/siteadminpanel.php:164 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 msgid "Timezone not selected." msgstr "Timezone not selected." @@ -2456,24 +2773,24 @@ msgstr "Language is too long (max 50 chars)." msgid "Invalid tag: \"%s\"" msgstr "Invalid tag: \"%s\"" -#: actions/profilesettings.php:302 +#: actions/profilesettings.php:306 msgid "Couldn't update user for autosubscribe." msgstr "Couldn't update user for autosubscribe." -#: actions/profilesettings.php:359 +#: actions/profilesettings.php:363 #, fuzzy msgid "Couldn't save location prefs." msgstr "Couldn't save tags." -#: actions/profilesettings.php:371 +#: actions/profilesettings.php:375 msgid "Couldn't save profile." msgstr "Couldn't save profile." -#: actions/profilesettings.php:379 +#: actions/profilesettings.php:383 msgid "Couldn't save tags." msgstr "Couldn't save tags." -#: actions/profilesettings.php:387 lib/adminpanelaction.php:137 +#: actions/profilesettings.php:391 lib/adminpanelaction.php:137 msgid "Settings saved." msgstr "Settings saved." @@ -2495,39 +2812,39 @@ msgstr "Public timeline, page %d" msgid "Public timeline" msgstr "Public timeline" -#: actions/public.php:151 +#: actions/public.php:159 #, fuzzy msgid "Public Stream Feed (RSS 1.0)" msgstr "Public Stream Feed" -#: actions/public.php:155 +#: actions/public.php:163 #, fuzzy msgid "Public Stream Feed (RSS 2.0)" msgstr "Public Stream Feed" -#: actions/public.php:159 +#: actions/public.php:167 #, fuzzy msgid "Public Stream Feed (Atom)" msgstr "Public Stream Feed" -#: actions/public.php:179 +#: actions/public.php:187 #, php-format msgid "" "This is the public timeline for %%site.name%% but no one has posted anything " "yet." msgstr "" -#: actions/public.php:182 +#: actions/public.php:190 msgid "Be the first to post!" msgstr "" -#: actions/public.php:186 +#: actions/public.php:194 #, php-format msgid "" "Why not [register an account](%%action.register%%) and be the first to post!" msgstr "" -#: actions/public.php:233 +#: actions/public.php:241 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2540,7 +2857,7 @@ msgstr "" "tool. [Join now](%%action.register%%) to share notices about yourself with " "friends, family, and colleagues! ([Read more](%%doc.help%%))" -#: actions/public.php:238 +#: actions/public.php:246 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2576,7 +2893,7 @@ msgid "" "one!" msgstr "" -#: actions/publictagcloud.php:131 +#: actions/publictagcloud.php:134 msgid "Tag cloud" msgstr "Tag cloud" @@ -2613,6 +2930,8 @@ 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 "" +"If you have 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 msgid "You have been identified. Enter a new password below. " @@ -2624,7 +2943,7 @@ msgstr "" #: actions/recoverpassword.php:191 msgid "Nickname or email address" -msgstr "" +msgstr "Nickname or e-mail address" #: actions/recoverpassword.php:193 msgid "Your nickname on this server, or your registered email address." @@ -2715,7 +3034,7 @@ msgstr "Error with confirmation code." msgid "Registration successful" msgstr "Registration successful" -#: actions/register.php:114 actions/register.php:503 lib/action.php:457 +#: actions/register.php:114 actions/register.php:503 lib/action.php:463 #: lib/logingroupnav.php:85 msgid "Register" msgstr "Register" @@ -2755,7 +3074,7 @@ msgid "Same as password above. Required." msgstr "Same as password above. Required." #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:270 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 msgid "Email" msgstr "E-mail" @@ -2785,7 +3104,7 @@ msgstr "" "number." #: actions/register.php:538 -#, fuzzy, php-format +#, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " "want to...\n" @@ -2802,18 +3121,18 @@ msgid "" "\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 " +"Congratulations, %1$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" +"* Go to [your profile](%2$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" +"share your interests.  \n" "* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " -"others more about you. \n" +"others more about you.  \n" "* Read over the [online docs](%%%%doc.help%%%%) for features you may have " -"missed. \n" +"missed.  \n" "\n" "Thanks for signing up and we hope you enjoy using this service." @@ -2862,7 +3181,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "URL of your profile on another compatible microblogging service" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:365 +#: lib/userprofile.php:368 msgid "Subscribe" msgstr "Subscribe" @@ -2904,7 +3223,7 @@ msgstr "You can't repeat your own notice." msgid "You already repeated that notice." msgstr "You have already blocked this user." -#: actions/repeat.php:114 lib/noticelist.php:629 +#: actions/repeat.php:114 lib/noticelist.php:656 #, fuzzy msgid "Repeated" msgstr "Created" @@ -2920,6 +3239,11 @@ msgstr "Created" msgid "Replies to %s" msgstr "Replies to %s" +#: actions/replies.php:127 +#, fuzzy, php-format +msgid "Replies to %1$s, page %2$d" +msgstr "Replies to %1$s on %2$s!" + #: actions/replies.php:144 #, php-format msgid "Replies feed for %s (RSS 1.0)" @@ -2964,6 +3288,11 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "Replies to %1$s on %2$s!" +#: actions/rsd.php:146 actions/version.php:157 +#, fuzzy +msgid "StatusNet" +msgstr "Status deleted." + #: actions/sandbox.php:65 actions/unsandbox.php:65 msgid "You cannot sandbox users on this site." msgstr "You cannot sandbox users on this site." @@ -2972,6 +3301,125 @@ msgstr "You cannot sandbox users on this site." msgid "User is already sandboxed." msgstr "User is already sandboxed." +#: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:336 +msgid "Sessions" +msgstr "" + +#: actions/sessionsadminpanel.php:65 +#, fuzzy +msgid "Session settings for this StatusNet site." +msgstr "Design settings for this StausNet site." + +#: actions/sessionsadminpanel.php:175 +msgid "Handle sessions" +msgstr "" + +#: actions/sessionsadminpanel.php:177 +msgid "Whether to handle sessions ourselves." +msgstr "" + +#: actions/sessionsadminpanel.php:181 +msgid "Session debugging" +msgstr "" + +#: actions/sessionsadminpanel.php:183 +msgid "Turn on debugging output for sessions." +msgstr "" + +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/useradminpanel.php:293 +msgid "Save site settings" +msgstr "Save site settings" + +#: actions/showapplication.php:82 +#, fuzzy +msgid "You must be logged in to view an application." +msgstr "You must be logged in to leave a group." + +#: actions/showapplication.php:157 +#, fuzzy +msgid "Application profile" +msgstr "Notice has no profile" + +#: actions/showapplication.php:159 lib/applicationeditform.php:180 +msgid "Icon" +msgstr "" + +#: actions/showapplication.php:169 actions/version.php:195 +#: lib/applicationeditform.php:195 +#, fuzzy +msgid "Name" +msgstr "Nickname" + +#: actions/showapplication.php:178 lib/applicationeditform.php:222 +#, fuzzy +msgid "Organization" +msgstr "Pagination" + +#: actions/showapplication.php:187 actions/version.php:198 +#: lib/applicationeditform.php:209 lib/groupeditform.php:172 +msgid "Description" +msgstr "Description" + +#: actions/showapplication.php:192 actions/showgroup.php:429 +#: lib/profileaction.php:174 +msgid "Statistics" +msgstr "Statistics" + +#: actions/showapplication.php:203 +#, php-format +msgid "Created by %1$s - %2$s access by default - %3$d users" +msgstr "" + +#: actions/showapplication.php:213 +msgid "Application actions" +msgstr "" + +#: actions/showapplication.php:236 +msgid "Reset key & secret" +msgstr "" + +#: actions/showapplication.php:261 +msgid "Application info" +msgstr "" + +#: actions/showapplication.php:263 +msgid "Consumer key" +msgstr "" + +#: actions/showapplication.php:268 +msgid "Consumer secret" +msgstr "" + +#: actions/showapplication.php:273 +msgid "Request token URL" +msgstr "" + +#: actions/showapplication.php:278 +msgid "Access token URL" +msgstr "" + +#: actions/showapplication.php:283 +msgid "Authorize URL" +msgstr "Authorise URL" + +#: actions/showapplication.php:288 +msgid "" +"Note: We support HMAC-SHA1 signatures. We do not support the plaintext " +"signature method." +msgstr "" + +#: actions/showapplication.php:309 +#, fuzzy +msgid "Are you sure you want to reset your consumer key and secret?" +msgstr "Are you sure you want to delete this notice?" + +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%1$s's favorite notices, page %2$d" +msgstr "%s's favourite notices" + #: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "Could not retrieve favourite notices." @@ -2996,6 +3444,8 @@ 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 "" +"You haven't chosen any favourite notices yet. Click the fave button on " +"notices you like to bookmark them for later or shed a spotlight on them." #: actions/showfavorites.php:207 #, php-format @@ -3003,6 +3453,8 @@ msgid "" "%s hasn't added any notices to his favorites yet. Post something interesting " "they would add to their favorites :)" msgstr "" +"%s hasn't added any notices to his favourites yet. Post something " +"interesting they would add to their favourites :)" #: actions/showfavorites.php:211 #, php-format @@ -3011,6 +3463,9 @@ msgid "" "account](%%%%action.register%%%%) and then post something interesting they " "would add to their favorites :)" msgstr "" +"%s hasn't added any notices to his favourites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favourites :)" #: actions/showfavorites.php:242 msgid "This is a way to share what you like." @@ -3021,17 +3476,22 @@ msgstr "" msgid "%s group" msgstr "%s group" +#: actions/showgroup.php:84 +#, fuzzy, php-format +msgid "%1$s group, page %2$d" +msgstr "%s group members, page %d" + #: actions/showgroup.php:218 msgid "Group profile" msgstr "Group profile" #: actions/showgroup.php:263 actions/tagother.php:118 -#: actions/userauthorization.php:167 lib/userprofile.php:177 +#: actions/userauthorization.php:175 lib/userprofile.php:177 msgid "URL" msgstr "URL" #: actions/showgroup.php:274 actions/tagother.php:128 -#: actions/userauthorization.php:179 lib/userprofile.php:194 +#: actions/userauthorization.php:187 lib/userprofile.php:194 msgid "Note" msgstr "Note" @@ -3077,10 +3537,6 @@ msgstr "(None)" msgid "All members" msgstr "All members" -#: actions/showgroup.php:429 lib/profileaction.php:174 -msgid "Statistics" -msgstr "Statistics" - #: actions/showgroup.php:432 msgid "Created" msgstr "Created" @@ -3094,6 +3550,11 @@ msgid "" "their life and interests. [Join now](%%%%action.register%%%%) to become part " "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. [Join now](%%%%action.register%%%%) to become part " +"of this group and many more! ([Read more](%%%%doc.help%%%%))" #: actions/showgroup.php:454 #, fuzzy, php-format @@ -3138,6 +3599,11 @@ msgstr "Notice deleted." msgid " tagged %s" msgstr " tagged %s" +#: actions/showstream.php:79 +#, fuzzy, php-format +msgid "%1$s, page %2$d" +msgstr "%1$s and friends, page %2$d" + #: actions/showstream.php:122 #, fuzzy, php-format msgid "Notice feed for %1$s tagged %2$s (RSS 1.0)" @@ -3163,19 +3629,19 @@ msgstr "Notice feed for %s" msgid "FOAF for %s" msgstr "FOAF for %s" -#: actions/showstream.php:191 +#: actions/showstream.php:200 #, fuzzy, php-format msgid "This is the timeline for %1$s but %2$s hasn't posted anything yet." msgstr "" "This is the timeline for %s and friends but no one has posted anything yet." -#: actions/showstream.php:196 +#: actions/showstream.php:205 msgid "" "Seen anything interesting recently? You haven't posted any notices yet, now " "would be a good time to start :)" msgstr "" -#: actions/showstream.php:198 +#: actions/showstream.php:207 #, fuzzy, php-format msgid "" "You can try to nudge %1$s or [post something to his or her attention](%%%%" @@ -3184,7 +3650,7 @@ msgstr "" "You can try to [nudge %s](../%s) from his profile or [post something to his " "or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." -#: actions/showstream.php:234 +#: actions/showstream.php:243 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3193,7 +3659,7 @@ msgid "" "follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showstream.php:239 +#: actions/showstream.php:248 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3204,7 +3670,7 @@ msgstr "" "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " "[StatusNet](http://status.net/) tool. " -#: actions/showstream.php:313 +#: actions/showstream.php:305 #, fuzzy, php-format msgid "Repeat of %s" msgstr "Replies to %s" @@ -3223,198 +3689,145 @@ msgstr "User is already blocked from group." msgid "Basic settings for this StatusNet site." msgstr "" -#: actions/siteadminpanel.php:146 +#: actions/siteadminpanel.php:132 msgid "Site name must have non-zero length." msgstr "" -#: actions/siteadminpanel.php:154 +#: actions/siteadminpanel.php:140 #, fuzzy msgid "You must have a valid contact email address." msgstr "Not a valid e-mail address." -#: actions/siteadminpanel.php:172 +#: actions/siteadminpanel.php:158 #, php-format msgid "Unknown language \"%s\"." msgstr "" -#: actions/siteadminpanel.php:179 +#: actions/siteadminpanel.php:165 msgid "Invalid snapshot report URL." msgstr "" -#: actions/siteadminpanel.php:185 +#: actions/siteadminpanel.php:171 msgid "Invalid snapshot run value." msgstr "" -#: actions/siteadminpanel.php:191 +#: actions/siteadminpanel.php:177 msgid "Snapshot frequency must be a number." msgstr "" -#: actions/siteadminpanel.php:197 +#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." -msgstr "" +msgstr "Minimum text limit is 140 characters." -#: actions/siteadminpanel.php:203 +#: actions/siteadminpanel.php:189 msgid "Dupe limit must 1 or more seconds." msgstr "" -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:239 msgid "General" msgstr "" -#: actions/siteadminpanel.php:256 +#: actions/siteadminpanel.php:242 msgid "Site name" msgstr "Site name" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:243 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "" -#: actions/siteadminpanel.php:261 +#: actions/siteadminpanel.php:247 msgid "Brought by" msgstr "" -#: actions/siteadminpanel.php:262 +#: actions/siteadminpanel.php:248 msgid "Text used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:266 +#: actions/siteadminpanel.php:252 msgid "Brought by URL" msgstr "" -#: actions/siteadminpanel.php:267 +#: actions/siteadminpanel.php:253 msgid "URL used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:271 -#, fuzzy +#: actions/siteadminpanel.php:257 msgid "Contact email address for your site" -msgstr "New e-mail address for posting to %s" +msgstr "Contact e-mail address for your site" -#: actions/siteadminpanel.php:277 +#: actions/siteadminpanel.php:263 #, fuzzy msgid "Local" msgstr "Local views" -#: actions/siteadminpanel.php:288 +#: actions/siteadminpanel.php:274 msgid "Default timezone" msgstr "" -#: actions/siteadminpanel.php:289 +#: actions/siteadminpanel.php:275 msgid "Default timezone for the site; usually UTC." msgstr "" -#: actions/siteadminpanel.php:295 +#: actions/siteadminpanel.php:281 msgid "Default site language" msgstr "Default site language" -#: actions/siteadminpanel.php:303 -msgid "URLs" -msgstr "URLs" - -#: actions/siteadminpanel.php:306 -msgid "Server" -msgstr "Server" - -#: actions/siteadminpanel.php:306 -msgid "Site's server hostname." -msgstr "" - -#: actions/siteadminpanel.php:310 -msgid "Fancy URLs" -msgstr "" - -#: actions/siteadminpanel.php:312 -msgid "Use fancy (more readable and memorable) URLs?" -msgstr "" - -#: actions/siteadminpanel.php:318 -msgid "Access" -msgstr "Access" - -#: actions/siteadminpanel.php:321 -msgid "Private" -msgstr "Private" - -#: actions/siteadminpanel.php:323 -msgid "Prohibit anonymous users (not logged in) from viewing site?" -msgstr "" - -#: actions/siteadminpanel.php:327 -msgid "Invite only" -msgstr "Invite only" - -#: actions/siteadminpanel.php:329 -msgid "Make registration invitation only." -msgstr "" - -#: actions/siteadminpanel.php:333 -msgid "Closed" -msgstr "Closed" - -#: actions/siteadminpanel.php:335 -msgid "Disable new registrations." -msgstr "" - -#: actions/siteadminpanel.php:341 +#: actions/siteadminpanel.php:289 msgid "Snapshots" msgstr "" -#: actions/siteadminpanel.php:344 +#: actions/siteadminpanel.php:292 msgid "Randomly during Web hit" msgstr "" -#: actions/siteadminpanel.php:345 +#: actions/siteadminpanel.php:293 msgid "In a scheduled job" msgstr "" -#: actions/siteadminpanel.php:347 +#: actions/siteadminpanel.php:295 msgid "Data snapshots" msgstr "" -#: actions/siteadminpanel.php:348 +#: actions/siteadminpanel.php:296 msgid "When to send statistical data to status.net servers" msgstr "" -#: actions/siteadminpanel.php:353 +#: actions/siteadminpanel.php:301 msgid "Frequency" msgstr "" -#: actions/siteadminpanel.php:354 +#: actions/siteadminpanel.php:302 msgid "Snapshots will be sent once every N web hits" msgstr "" -#: actions/siteadminpanel.php:359 +#: actions/siteadminpanel.php:307 msgid "Report URL" msgstr "" -#: actions/siteadminpanel.php:360 +#: actions/siteadminpanel.php:308 msgid "Snapshots will be sent to this URL" msgstr "" -#: actions/siteadminpanel.php:367 +#: actions/siteadminpanel.php:315 msgid "Limits" msgstr "" -#: actions/siteadminpanel.php:370 +#: actions/siteadminpanel.php:318 msgid "Text limit" msgstr "" -#: actions/siteadminpanel.php:370 +#: actions/siteadminpanel.php:318 msgid "Maximum number of characters for notices." msgstr "" -#: actions/siteadminpanel.php:374 +#: actions/siteadminpanel.php:322 msgid "Dupe limit" msgstr "" -#: actions/siteadminpanel.php:374 +#: actions/siteadminpanel.php:322 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" -#: actions/siteadminpanel.php:388 actions/useradminpanel.php:313 -msgid "Save site settings" -msgstr "Save site settings" - #: actions/smssettings.php:58 #, fuzzy msgid "SMS settings" @@ -3525,15 +3938,26 @@ msgstr "No code entered" msgid "You are not subscribed to that profile." msgstr "You are not subscribed to that profile." -#: actions/subedit.php:83 +#: actions/subedit.php:83 classes/Subscription.php:89 +#: classes/Subscription.php:116 msgid "Could not save subscription." msgstr "Could not save subscription." -#: actions/subscribe.php:55 -msgid "Not a local user." -msgstr "Not a local user." +#: actions/subscribe.php:77 +msgid "This action only accepts POST requests." +msgstr "" -#: actions/subscribe.php:69 +#: actions/subscribe.php:107 +#, fuzzy +msgid "No such profile." +msgstr "No such notice." + +#: actions/subscribe.php:117 +#, fuzzy +msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." +msgstr "You are not subscribed to that profile." + +#: actions/subscribe.php:145 msgid "Subscribed" msgstr "Subscribed" @@ -3593,7 +4017,7 @@ msgstr "These are the people whose notices you listen to." msgid "These are the people whose notices %s listens to." msgstr "These are the people whose notices %s listens to." -#: actions/subscriptions.php:121 +#: actions/subscriptions.php:126 #, php-format msgid "" "You're not listening to anyone's notices right now, try subscribing to " @@ -3603,19 +4027,24 @@ msgid "" "automatically subscribe to people you already follow there." msgstr "" -#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#: actions/subscriptions.php:128 actions/subscriptions.php:132 #, php-format msgid "%s is not listening to anyone." msgstr "%s is not listening to anyone." -#: actions/subscriptions.php:194 +#: actions/subscriptions.php:199 msgid "Jabber" msgstr "Jabber" -#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:204 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "SMS" +#: actions/tag.php:68 +#, fuzzy, php-format +msgid "Notices tagged with %1$s, page %2$d" +msgstr "Users self-tagged with %s - page %d" + #: actions/tag.php:86 #, fuzzy, php-format msgid "Notice feed for tag %s (RSS 1.0)" @@ -3645,7 +4074,8 @@ msgstr "Tag %s" msgid "User profile" msgstr "User profile" -#: actions/tagother.php:81 lib/userprofile.php:102 +#: actions/tagother.php:81 actions/userauthorization.php:132 +#: lib/userprofile.php:102 msgid "Photo" msgstr "Photo" @@ -3706,7 +4136,7 @@ msgstr "No profile id in request." msgid "Unsubscribed" msgstr "Unsubscribed" -#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#: actions/updateprofile.php:62 actions/userauthorization.php:337 #, fuzzy, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -3721,88 +4151,68 @@ msgstr "User" msgid "User settings for this StatusNet site." msgstr "" -#: actions/useradminpanel.php:149 +#: actions/useradminpanel.php:148 msgid "Invalid bio limit. Must be numeric." msgstr "" -#: actions/useradminpanel.php:155 +#: actions/useradminpanel.php:154 msgid "Invalid welcome text. Max length is 255 characters." msgstr "" -#: actions/useradminpanel.php:165 +#: actions/useradminpanel.php:164 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 +#: actions/useradminpanel.php:217 lib/accountsettingsaction.php:108 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Profile" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:221 msgid "Bio Limit" msgstr "" -#: actions/useradminpanel.php:223 +#: actions/useradminpanel.php:222 msgid "Maximum length of a profile bio in characters." msgstr "" -#: actions/useradminpanel.php:231 +#: actions/useradminpanel.php:230 msgid "New users" msgstr "New users" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:234 msgid "New user welcome" msgstr "" -#: actions/useradminpanel.php:236 +#: actions/useradminpanel.php:235 msgid "Welcome text for new users (Max 255 chars)." msgstr "" -#: actions/useradminpanel.php:241 +#: actions/useradminpanel.php:240 msgid "Default subscription" msgstr "Default subscription" -#: actions/useradminpanel.php:242 +#: actions/useradminpanel.php:241 #, fuzzy msgid "Automatically subscribe new users to this user." msgstr "" "Automatically subscribe to whoever subscribes to me (best for non-humans)" -#: actions/useradminpanel.php:251 +#: actions/useradminpanel.php:250 #, fuzzy msgid "Invitations" msgstr "Invitation(s) sent" -#: actions/useradminpanel.php:256 +#: actions/useradminpanel.php:255 #, fuzzy msgid "Invitations enabled" msgstr "Invitation(s) sent" -#: actions/useradminpanel.php:258 +#: actions/useradminpanel.php:257 msgid "Whether to allow users to invite new users." msgstr "" -#: actions/useradminpanel.php:265 -msgid "Sessions" -msgstr "" - -#: actions/useradminpanel.php:270 -msgid "Handle sessions" -msgstr "" - -#: actions/useradminpanel.php:272 -msgid "Whether to handle sessions ourselves." -msgstr "" - -#: actions/useradminpanel.php:276 -msgid "Session debugging" -msgstr "" - -#: actions/useradminpanel.php:278 -msgid "Turn on debugging output for sessions." -msgstr "" - #: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Authorise subscription" @@ -3818,36 +4228,36 @@ msgstr "" "user's notices. If you didn't just ask to subscribe to someone's notices, " "click \"Cancel\"." -#: actions/userauthorization.php:188 actions/version.php:165 +#: actions/userauthorization.php:196 actions/version.php:165 msgid "License" msgstr "License" -#: actions/userauthorization.php:209 +#: actions/userauthorization.php:217 msgid "Accept" msgstr "Accept" -#: actions/userauthorization.php:210 lib/subscribeform.php:115 +#: actions/userauthorization.php:218 lib/subscribeform.php:115 #: lib/subscribeform.php:139 msgid "Subscribe to this user" msgstr "Subscribe to this user" -#: actions/userauthorization.php:211 +#: actions/userauthorization.php:219 msgid "Reject" msgstr "Reject" -#: actions/userauthorization.php:212 +#: actions/userauthorization.php:220 msgid "Reject this subscription" msgstr "Reject this subscription" -#: actions/userauthorization.php:225 +#: actions/userauthorization.php:232 msgid "No authorization request!" msgstr "No authorisation request!" -#: actions/userauthorization.php:247 +#: actions/userauthorization.php:254 msgid "Subscription authorized" msgstr "Subscription authorised" -#: actions/userauthorization.php:249 +#: actions/userauthorization.php:256 #, fuzzy msgid "" "The subscription has been authorized, but no callback URL was passed. Check " @@ -3858,11 +4268,11 @@ msgstr "" "with the site's instructions for details on how to authorise the " "subscription. Your subscription token is:" -#: actions/userauthorization.php:259 +#: actions/userauthorization.php:266 msgid "Subscription rejected" msgstr "Subscription rejected" -#: actions/userauthorization.php:261 +#: actions/userauthorization.php:268 #, fuzzy msgid "" "The subscription has been rejected, but no callback URL was passed. Check " @@ -3873,37 +4283,37 @@ msgstr "" "with the site's instructions for details on how to fully reject the " "subscription." -#: actions/userauthorization.php:296 +#: actions/userauthorization.php:303 #, php-format msgid "Listener URI ‘%s’ not found here." msgstr "" -#: actions/userauthorization.php:301 +#: actions/userauthorization.php:308 #, php-format msgid "Listenee URI ‘%s’ is too long." msgstr "" -#: actions/userauthorization.php:307 +#: actions/userauthorization.php:314 #, php-format msgid "Listenee URI ‘%s’ is a local user." msgstr "" -#: actions/userauthorization.php:322 +#: actions/userauthorization.php:329 #, php-format msgid "Profile URL ‘%s’ is for a local user." msgstr "" -#: actions/userauthorization.php:338 +#: actions/userauthorization.php:345 #, php-format msgid "Avatar URL ‘%s’ is not valid." msgstr "" -#: actions/userauthorization.php:343 +#: actions/userauthorization.php:350 #, fuzzy, php-format msgid "Can’t read avatar URL ‘%s’." msgstr "Can't read avatar URL '%s'" -#: actions/userauthorization.php:348 +#: actions/userauthorization.php:355 #, fuzzy, php-format msgid "Wrong image type for avatar URL ‘%s’." msgstr "Wrong image type for '%s'" @@ -3923,6 +4333,11 @@ msgstr "" msgid "Enjoy your hotdog!" msgstr "" +#: actions/usergroups.php:64 +#, fuzzy, php-format +msgid "%1$s groups, page %2$d" +msgstr "%s group members, page %d" + #: actions/usergroups.php:130 #, fuzzy msgid "Search for more groups" @@ -3950,11 +4365,6 @@ msgid "" "Inc. and contributors." msgstr "" -#: actions/version.php:157 -#, fuzzy -msgid "StatusNet" -msgstr "Status deleted." - #: actions/version.php:161 msgid "Contributors" msgstr "" @@ -3966,6 +4376,10 @@ msgid "" "Software Foundation, either version 3 of the License, or (at your option) " "any later version. " msgstr "" +"StatusNet is free software: you can redistribute it and/or modify it under " +"the terms of the GNU Affero General Public Licence as published by the Free " +"Software Foundation, either version 3 of the Licence, or (at your option) " +"any later version. " #: actions/version.php:174 msgid "" @@ -3974,6 +4388,10 @@ msgid "" "FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License " "for more details. " msgstr "" +"This program is distributed in the hope that it will be useful, but WITHOUT " +"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " +"FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Affero General Public Licence " +"for more details. " #: actions/version.php:180 #, php-format @@ -3981,17 +4399,14 @@ msgid "" "You should have received a copy of the GNU Affero General Public License " "along with this program. If not, see %s." msgstr "" +"You should have received a copy of the GNU Affero General Public Licence " +"along with this program. If not, see %s." #: actions/version.php:189 msgid "Plugins" msgstr "" -#: actions/version.php:195 -#, fuzzy -msgid "Name" -msgstr "Nickname" - -#: actions/version.php:196 lib/action.php:741 +#: actions/version.php:196 lib/action.php:747 #, fuzzy msgid "Version" msgstr "Personal" @@ -4000,10 +4415,6 @@ msgstr "Personal" msgid "Author(s)" msgstr "" -#: actions/version.php:198 lib/groupeditform.php:172 -msgid "Description" -msgstr "Description" - #: classes/File.php:144 #, php-format msgid "" @@ -4054,27 +4465,27 @@ msgstr "Could not insert message." msgid "Could not update message with new URI." msgstr "Could not update message with new URI." -#: classes/Notice.php:171 +#: classes/Notice.php:157 #, php-format msgid "DB error inserting hashtag: %s" msgstr "DB error inserting hashtag: %s" -#: classes/Notice.php:225 +#: classes/Notice.php:222 #, fuzzy msgid "Problem saving notice. Too long." msgstr "Problem saving notice." -#: classes/Notice.php:229 +#: classes/Notice.php:226 msgid "Problem saving notice. Unknown user." msgstr "Problem saving notice. Unknown user." -#: classes/Notice.php:234 +#: classes/Notice.php:231 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." -#: classes/Notice.php:240 +#: classes/Notice.php:237 #, fuzzy msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " @@ -4082,34 +4493,60 @@ msgid "" msgstr "" "Too many notices too fast; take a breather and post again in a few minutes." -#: classes/Notice.php:246 +#: classes/Notice.php:243 msgid "You are banned from posting notices on this site." msgstr "You are banned from posting notices on this site." -#: classes/Notice.php:305 classes/Notice.php:330 +#: classes/Notice.php:309 classes/Notice.php:335 msgid "Problem saving notice." msgstr "Problem saving notice." -#: classes/Notice.php:1052 -#, php-format -msgid "DB error inserting reply: %s" -msgstr "DB error inserting reply: %s" +#: classes/Notice.php:882 +#, fuzzy +msgid "Problem saving group inbox." +msgstr "Problem saving notice." -#: classes/Notice.php:1423 +#: classes/Notice.php:1407 #, fuzzy, php-format msgid "RT @%1$s %2$s" msgstr "%1$s (%2$s)" -#: classes/User.php:382 +#: classes/Subscription.php:66 lib/oauthstore.php:465 +msgid "You have been banned from subscribing." +msgstr "You have been banned from subscribing." + +#: classes/Subscription.php:70 +msgid "Already subscribed!" +msgstr "" + +#: classes/Subscription.php:74 +msgid "User has blocked you." +msgstr "User has blocked you." + +#: classes/Subscription.php:157 +#, fuzzy +msgid "Not subscribed!" +msgstr "Not subscribed!" + +#: classes/Subscription.php:163 +#, fuzzy +msgid "Couldn't delete self-subscription." +msgstr "Couldn't delete subscription." + +#: classes/Subscription.php:179 lib/subs.php:69 +msgid "Couldn't delete subscription." +msgstr "Couldn't delete subscription." + +#: classes/User.php:372 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "Welcome to %1$s, @%2$s!" -#: classes/User_group.php:380 +#: classes/User_group.php:423 msgid "Could not create group." msgstr "Could not create group." -#: classes/User_group.php:409 +#: classes/User_group.php:452 msgid "Could not set group membership." msgstr "Could not set group membership." @@ -4150,130 +4587,126 @@ msgstr "%1$s (%2$s)" msgid "Untitled page" msgstr "Untitled page" -#: lib/action.php:427 +#: lib/action.php:433 msgid "Primary site navigation" msgstr "Primary site navigation" -#: lib/action.php:433 +#: lib/action.php:439 msgid "Home" msgstr "Home" -#: lib/action.php:433 +#: lib/action.php:439 msgid "Personal profile and friends timeline" msgstr "Personal profile and friends timeline" -#: lib/action.php:435 -msgid "Account" -msgstr "Account" - -#: lib/action.php:435 +#: lib/action.php:441 msgid "Change your email, avatar, password, profile" msgstr "Change your e-mail, avatar, password, profile" -#: lib/action.php:438 +#: lib/action.php:444 msgid "Connect" msgstr "Connect" -#: lib/action.php:438 +#: lib/action.php:444 #, fuzzy msgid "Connect to services" msgstr "Could not redirect to server: %s" -#: lib/action.php:442 +#: lib/action.php:448 #, fuzzy msgid "Change site configuration" msgstr "Primary site navigation" -#: lib/action.php:446 lib/subgroupnav.php:105 +#: lib/action.php:452 lib/subgroupnav.php:105 msgid "Invite" msgstr "Invite" -#: lib/action.php:447 lib/subgroupnav.php:106 +#: lib/action.php:453 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" -#: lib/action.php:452 +#: lib/action.php:458 msgid "Logout" msgstr "Logout" -#: lib/action.php:452 +#: lib/action.php:458 msgid "Logout from the site" msgstr "Logout from the site" -#: lib/action.php:457 +#: lib/action.php:463 msgid "Create an account" msgstr "Create an account" -#: lib/action.php:460 +#: lib/action.php:466 msgid "Login to the site" msgstr "Login to the site" -#: lib/action.php:463 lib/action.php:726 +#: lib/action.php:469 lib/action.php:732 msgid "Help" msgstr "Help" -#: lib/action.php:463 +#: lib/action.php:469 msgid "Help me!" msgstr "Help me!" -#: lib/action.php:466 lib/searchaction.php:127 +#: lib/action.php:472 lib/searchaction.php:127 msgid "Search" msgstr "Search" -#: lib/action.php:466 +#: lib/action.php:472 msgid "Search for people or text" msgstr "Search for people or text" -#: lib/action.php:487 +#: lib/action.php:493 msgid "Site notice" msgstr "Site notice" -#: lib/action.php:553 +#: lib/action.php:559 msgid "Local views" msgstr "Local views" -#: lib/action.php:619 +#: lib/action.php:625 msgid "Page notice" msgstr "Page notice" -#: lib/action.php:721 +#: lib/action.php:727 msgid "Secondary site navigation" msgstr "Secondary site navigation" -#: lib/action.php:728 +#: lib/action.php:734 msgid "About" msgstr "About" -#: lib/action.php:730 +#: lib/action.php:736 msgid "FAQ" msgstr "F.A.Q." -#: lib/action.php:734 +#: lib/action.php:740 msgid "TOS" msgstr "" -#: lib/action.php:737 +#: lib/action.php:743 msgid "Privacy" msgstr "Privacy" -#: lib/action.php:739 +#: lib/action.php:745 msgid "Source" msgstr "Source" -#: lib/action.php:743 +#: lib/action.php:749 msgid "Contact" msgstr "Contact" -#: lib/action.php:745 +#: lib/action.php:751 msgid "Badge" msgstr "Badge" -#: lib/action.php:773 +#: lib/action.php:779 msgid "StatusNet software license" msgstr "StatusNet software licence" -#: lib/action.php:776 +#: lib/action.php:782 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4282,12 +4715,12 @@ msgstr "" "**%%site.name%%** is a microblogging service brought to you by [%%site." "broughtby%%](%%site.broughtbyurl%%)." -#: lib/action.php:778 +#: lib/action.php:784 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** is a microblogging service." -#: lib/action.php:780 +#: lib/action.php:786 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4298,33 +4731,55 @@ msgstr "" "s, available under the [GNU Affero General Public Licence](http://www.fsf." "org/licensing/licenses/agpl-3.0.html)." -#: lib/action.php:794 +#: lib/action.php:801 msgid "Site content license" msgstr "Site content license" -#: lib/action.php:803 +#: lib/action.php:806 +#, php-format +msgid "Content and data of %1$s are private and confidential." +msgstr "" + +#: lib/action.php:811 +#, php-format +msgid "Content and data copyright by %1$s. All rights reserved." +msgstr "" + +#: lib/action.php:814 +msgid "Content and data copyright by contributors. All rights reserved." +msgstr "" + +#: lib/action.php:827 msgid "All " msgstr "All " -#: lib/action.php:808 +#: lib/action.php:833 msgid "license." msgstr "licence." -#: lib/action.php:1102 +#: lib/action.php:1132 msgid "Pagination" msgstr "Pagination" -#: lib/action.php:1111 +#: lib/action.php:1141 msgid "After" msgstr "After" -#: lib/action.php:1119 +#: lib/action.php:1149 msgid "Before" msgstr "Before" -#: lib/action.php:1167 -msgid "There was a problem with your session token." -msgstr "There was a problem with your session token." +#: lib/activity.php:382 +msgid "Can't handle remote content yet." +msgstr "" + +#: lib/activity.php:410 +msgid "Can't handle embedded XML content yet." +msgstr "" + +#: lib/activity.php:414 +msgid "Can't handle embedded Base64 content yet." +msgstr "" #: lib/adminpanelaction.php:96 #, fuzzy @@ -4360,11 +4815,104 @@ msgstr "E-mail address confirmation" msgid "Design configuration" msgstr "Design configuration" -#: lib/adminpanelaction.php:322 lib/adminpanelaction.php:327 +#: lib/adminpanelaction.php:322 +#, fuzzy +msgid "User configuration" +msgstr "SMS confirmation" + +#: lib/adminpanelaction.php:327 +#, fuzzy +msgid "Access configuration" +msgstr "Design configuration" + +#: lib/adminpanelaction.php:332 #, fuzzy msgid "Paths configuration" msgstr "SMS confirmation" +#: lib/adminpanelaction.php:337 +#, fuzzy +msgid "Sessions configuration" +msgstr "Design configuration" + +#: lib/apiauth.php:95 +msgid "API resource requires read-write access, but you only have read access." +msgstr "" + +#: lib/apiauth.php:273 +#, php-format +msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" +msgstr "" + +#: lib/applicationeditform.php:136 +msgid "Edit application" +msgstr "" + +#: lib/applicationeditform.php:184 +msgid "Icon for this application" +msgstr "" + +#: lib/applicationeditform.php:204 +#, fuzzy, php-format +msgid "Describe your application in %d characters" +msgstr "Describe the group or topic in %d characters" + +#: lib/applicationeditform.php:207 +#, fuzzy +msgid "Describe your application" +msgstr "Describe the group or topic" + +#: lib/applicationeditform.php:216 +#, fuzzy +msgid "Source URL" +msgstr "Source" + +#: lib/applicationeditform.php:218 +#, fuzzy +msgid "URL of the homepage of this application" +msgstr "URL of the homepage or blog of the group or topic" + +#: lib/applicationeditform.php:224 +msgid "Organization responsible for this application" +msgstr "Organisation responsible for this application" + +#: lib/applicationeditform.php:230 +msgid "URL for the homepage of the organization" +msgstr "URL for the homepage of the organisation" + +#: lib/applicationeditform.php:236 +msgid "URL to redirect to after authentication" +msgstr "" + +#: lib/applicationeditform.php:258 +msgid "Browser" +msgstr "" + +#: lib/applicationeditform.php:274 +msgid "Desktop" +msgstr "" + +#: lib/applicationeditform.php:275 +msgid "Type of application, browser or desktop" +msgstr "" + +#: lib/applicationeditform.php:297 +msgid "Read-only" +msgstr "" + +#: lib/applicationeditform.php:315 +msgid "Read-write" +msgstr "" + +#: lib/applicationeditform.php:316 +msgid "Default access for this application: read-only, or read-write" +msgstr "" + +#: lib/applicationlist.php:154 +#, fuzzy +msgid "Revoke" +msgstr "Remove" + #: lib/attachmentlist.php:87 msgid "Attachments" msgstr "" @@ -4386,12 +4934,12 @@ msgstr "" msgid "Tags for this attachment" msgstr "" -#: lib/authenticationplugin.php:182 lib/authenticationplugin.php:187 +#: lib/authenticationplugin.php:218 lib/authenticationplugin.php:223 #, fuzzy msgid "Password changing failed" msgstr "Password change" -#: lib/authenticationplugin.php:197 +#: lib/authenticationplugin.php:233 #, fuzzy msgid "Password changing is not allowed" msgstr "Password change" @@ -4542,83 +5090,92 @@ msgstr "Error saving notice." msgid "Specify the name of the user to subscribe to" msgstr "Specify the name of the user to subscribe to" -#: lib/command.php:554 +#: lib/command.php:554 lib/command.php:589 +msgid "No such user" +msgstr "No such user." + +#: lib/command.php:561 #, php-format msgid "Subscribed to %s" msgstr "Subscribed to %s" -#: lib/command.php:575 +#: lib/command.php:582 lib/command.php:685 msgid "Specify the name of the user to unsubscribe from" msgstr "Specify the name of the user to unsubscribe from" -#: lib/command.php:582 +#: lib/command.php:595 #, php-format msgid "Unsubscribed from %s" msgstr "Unsubscribed from %s" -#: lib/command.php:600 lib/command.php:623 +#: lib/command.php:613 lib/command.php:636 msgid "Command not yet implemented." msgstr "Command not yet implemented." -#: lib/command.php:603 +#: lib/command.php:616 msgid "Notification off." msgstr "Notification off." -#: lib/command.php:605 +#: lib/command.php:618 msgid "Can't turn off notification." msgstr "Can't turn off notification." -#: lib/command.php:626 +#: lib/command.php:639 msgid "Notification on." msgstr "Notification on." -#: lib/command.php:628 +#: lib/command.php:641 msgid "Can't turn on notification." msgstr "Can't turn on notification." -#: lib/command.php:641 +#: lib/command.php:654 msgid "Login command is disabled" msgstr "" -#: lib/command.php:652 +#: lib/command.php:665 #, php-format msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "" -#: lib/command.php:668 +#: lib/command.php:692 +#, fuzzy, php-format +msgid "Unsubscribed %s" +msgstr "Unsubscribed from %s" + +#: lib/command.php:709 #, fuzzy msgid "You are not subscribed to anyone." msgstr "You are not subscribed to that profile." -#: lib/command.php:670 +#: lib/command.php:711 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "You are already subscribed to these users:" msgstr[1] "You are already subscribed to these users:" -#: lib/command.php:690 +#: lib/command.php:731 #, fuzzy msgid "No one is subscribed to you." msgstr "Could not subscribe other to you." -#: lib/command.php:692 +#: lib/command.php:733 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "Could not subscribe other to you." msgstr[1] "Could not subscribe other to you." -#: lib/command.php:712 +#: lib/command.php:753 #, fuzzy msgid "You are not a member of any groups." msgstr "You are not a member of that group." -#: lib/command.php:714 +#: lib/command.php:755 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "You are not a member of that group." msgstr[1] "You are not a member of that group." -#: lib/command.php:728 +#: lib/command.php:769 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -4632,6 +5189,7 @@ msgid "" "d - direct message to user\n" "get - get last notice from user\n" "whois - get profile info on user\n" +"lose - force user to stop following you\n" "fav - add user's last notice as a 'fave'\n" "fav # - add notice with the given id as a 'fave'\n" "repeat # - repeat a notice with a given id\n" @@ -4659,19 +5217,19 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:131 +#: lib/common.php:136 msgid "No configuration file found. " msgstr "No configuration file found" -#: lib/common.php:132 +#: lib/common.php:137 msgid "I looked for configuration files in the following places: " msgstr "" -#: lib/common.php:134 +#: lib/common.php:139 msgid "You may wish to run the installer to fix this." msgstr "" -#: lib/common.php:135 +#: lib/common.php:140 msgid "Go to the installer." msgstr "Go to the installer." @@ -4687,6 +5245,15 @@ msgstr "Updates by instant messenger (I.M.)" msgid "Updates by SMS" msgstr "Updates by SMS" +#: lib/connectsettingsaction.php:120 +#, fuzzy +msgid "Connections" +msgstr "Connect" + +#: lib/connectsettingsaction.php:121 +msgid "Authorized connected applications" +msgstr "" + #: lib/dberroraction.php:60 msgid "Database error" msgstr "" @@ -4872,12 +5439,12 @@ msgstr "" msgid "kB" msgstr "" -#: lib/jabber.php:202 +#: lib/jabber.php:220 #, php-format msgid "[%s]" msgstr "" -#: lib/jabber.php:385 +#: lib/jabber.php:400 #, php-format msgid "Unknown inbox source %d." msgstr "" @@ -5092,7 +5659,7 @@ msgid "" "users in conversation. People can send you messages for your eyes only." msgstr "" -#: lib/mailbox.php:227 lib/noticelist.php:477 +#: lib/mailbox.php:227 lib/noticelist.php:482 #, fuzzy msgid "from" msgstr "from" @@ -5211,59 +5778,55 @@ msgid "Do not share my location" msgstr "Couldn't save tags." #: lib/noticeform.php:216 -msgid "Hide this info" -msgstr "" - -#: lib/noticeform.php:217 msgid "" "Sorry, retrieving your geo location is taking longer than expected, please " "try again later" msgstr "" -#: lib/noticelist.php:428 +#: lib/noticelist.php:429 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "" -#: lib/noticelist.php:429 +#: lib/noticelist.php:430 #, fuzzy msgid "N" msgstr "No" -#: lib/noticelist.php:429 +#: lib/noticelist.php:430 msgid "S" msgstr "" -#: lib/noticelist.php:430 +#: lib/noticelist.php:431 msgid "E" msgstr "" -#: lib/noticelist.php:430 +#: lib/noticelist.php:431 msgid "W" msgstr "" -#: lib/noticelist.php:436 +#: lib/noticelist.php:438 msgid "at" msgstr "" -#: lib/noticelist.php:531 +#: lib/noticelist.php:558 msgid "in context" msgstr "in context" -#: lib/noticelist.php:556 +#: lib/noticelist.php:583 #, fuzzy msgid "Repeated by" msgstr "Created" -#: lib/noticelist.php:585 +#: lib/noticelist.php:610 msgid "Reply to this notice" msgstr "Reply to this notice" -#: lib/noticelist.php:586 +#: lib/noticelist.php:611 msgid "Reply" msgstr "Reply" -#: lib/noticelist.php:628 +#: lib/noticelist.php:655 #, fuzzy msgid "Notice repeated" msgstr "Notice deleted." @@ -5296,11 +5859,7 @@ msgstr "Error inserting remote profile." msgid "Duplicate notice" msgstr "Duplicate notice" -#: lib/oauthstore.php:466 lib/subs.php:48 -msgid "You have been banned from subscribing." -msgstr "You have been banned from subscribing." - -#: lib/oauthstore.php:491 +#: lib/oauthstore.php:490 msgid "Couldn't insert new subscription." msgstr "Couldn't insert new subscription." @@ -5316,19 +5875,19 @@ msgstr "Replies" msgid "Favorites" msgstr "Favourites" -#: lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "Inbox" -#: lib/personalgroupnav.php:125 +#: lib/personalgroupnav.php:126 msgid "Your incoming messages" msgstr "Your incoming messages" -#: lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 msgid "Outbox" msgstr "Outbox" -#: lib/personalgroupnav.php:130 +#: lib/personalgroupnav.php:131 msgid "Your sent messages" msgstr "Your sent messages" @@ -5409,6 +5968,10 @@ msgstr "Reply to this notice" msgid "Repeat this notice" msgstr "Reply to this notice" +#: lib/router.php:665 +msgid "No single user defined for single-user mode." +msgstr "" + #: lib/sandboxform.php:67 msgid "Sandbox" msgstr "Sandbox" @@ -5477,36 +6040,6 @@ msgstr "People subscribed to %s" msgid "Groups %s is a member of" msgstr "Groups %s is a member of" -#: lib/subs.php:52 -msgid "Already subscribed!" -msgstr "" - -#: lib/subs.php:56 -msgid "User has blocked you." -msgstr "User has blocked you." - -#: lib/subs.php:63 -msgid "Could not subscribe." -msgstr "Could not subscribe." - -#: lib/subs.php:82 -msgid "Could not subscribe other to you." -msgstr "Could not subscribe other to you." - -#: lib/subs.php:137 -#, fuzzy -msgid "Not subscribed!" -msgstr "Not subscribed!" - -#: lib/subs.php:142 -#, fuzzy -msgid "Couldn't delete self-subscription." -msgstr "Couldn't delete subscription." - -#: lib/subs.php:158 -msgid "Couldn't delete subscription." -msgstr "Couldn't delete subscription." - #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -5557,67 +6090,67 @@ msgstr "Edit Avatar" msgid "User actions" msgstr "User actions" -#: lib/userprofile.php:248 +#: lib/userprofile.php:251 msgid "Edit profile settings" msgstr "Edit profile settings" -#: lib/userprofile.php:249 +#: lib/userprofile.php:252 msgid "Edit" msgstr "" -#: lib/userprofile.php:272 +#: lib/userprofile.php:275 msgid "Send a direct message to this user" msgstr "Send a direct message to this user" -#: lib/userprofile.php:273 +#: lib/userprofile.php:276 msgid "Message" msgstr "Message" -#: lib/userprofile.php:311 +#: lib/userprofile.php:314 msgid "Moderate" msgstr "" -#: lib/util.php:877 +#: lib/util.php:952 msgid "a few seconds ago" msgstr "a few seconds ago" -#: lib/util.php:879 +#: lib/util.php:954 msgid "about a minute ago" msgstr "about a minute ago" -#: lib/util.php:881 +#: lib/util.php:956 #, php-format msgid "about %d minutes ago" msgstr "about %d minutes ago" -#: lib/util.php:883 +#: lib/util.php:958 msgid "about an hour ago" msgstr "about an hour ago" -#: lib/util.php:885 +#: lib/util.php:960 #, php-format msgid "about %d hours ago" msgstr "about %d hours ago" -#: lib/util.php:887 +#: lib/util.php:962 msgid "about a day ago" msgstr "about a day ago" -#: lib/util.php:889 +#: lib/util.php:964 #, php-format msgid "about %d days ago" msgstr "about %d days ago" -#: lib/util.php:891 +#: lib/util.php:966 msgid "about a month ago" msgstr "about a month ago" -#: lib/util.php:893 +#: lib/util.php:968 #, php-format msgid "about %d months ago" msgstr "about %d months ago" -#: lib/util.php:895 +#: lib/util.php:970 msgid "about a year ago" msgstr "about a year ago" @@ -5631,7 +6164,7 @@ msgstr "%s is not a valid colour!" msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "%s is not a valid colour! Use 3 or 6 hex chars." -#: scripts/xmppdaemon.php:301 +#: lib/xmppmanager.php:402 #, fuzzy, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "Message too long - maximum is %d characters, you sent %d" diff --git a/locale/es/LC_MESSAGES/statusnet.po b/locale/es/LC_MESSAGES/statusnet.po index 76343bf66e..b5e0469b61 100644 --- a/locale/es/LC_MESSAGES/statusnet.po +++ b/locale/es/LC_MESSAGES/statusnet.po @@ -12,17 +12,69 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-01-13 22:04+0000\n" -"PO-Revision-Date: 2010-01-13 22:05:07+0000\n" +"POT-Creation-Date: 2010-02-24 23:49+0000\n" +"PO-Revision-Date: 2010-02-24 23:50:30+0000\n" "Language-Team: Spanish\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha (r61027); Translate extension (2010-01-04)\n" +"X-Generator: MediaWiki 1.17alpha (r62925); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: actions/accessadminpanel.php:54 lib/adminpanelaction.php:326 +msgid "Access" +msgstr "Acceder" + +#: actions/accessadminpanel.php:65 +msgid "Site access settings" +msgstr "Configuración de acceso de la web" + +#: actions/accessadminpanel.php:158 +msgid "Registration" +msgstr "Registro" + +#: actions/accessadminpanel.php:161 +msgid "Private" +msgstr "Privado" + +#: actions/accessadminpanel.php:163 +msgid "Prohibit anonymous users (not logged in) from viewing site?" +msgstr "¿Prohibir a los usuarios anónimos (no conectados) ver el sitio?" + +#: actions/accessadminpanel.php:167 +msgid "Invite only" +msgstr "Invitar sólo" + +#: actions/accessadminpanel.php:169 +msgid "Make registration invitation only." +msgstr "Haz que el registro sea sólo con invitaciones." + +#: actions/accessadminpanel.php:173 +msgid "Closed" +msgstr "Cerrado" + +#: actions/accessadminpanel.php:175 +msgid "Disable new registrations." +msgstr "Inhabilitar nuevos registros." + +#: actions/accessadminpanel.php:189 actions/designadminpanel.php:586 +#: actions/emailsettings.php:195 actions/imsettings.php:163 +#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 +#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 +#: actions/siteadminpanel.php:336 actions/smssettings.php:181 +#: actions/subscriptions.php:208 actions/tagother.php:154 +#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 lib/designsettings.php:256 +#: lib/groupeditform.php:202 +msgid "Save" +msgstr "Guardar" + +#: actions/accessadminpanel.php:189 +msgid "Save access settings" +msgstr "Guardar la configuración de acceso" + #: actions/all.php:63 actions/public.php:97 actions/replies.php:92 #: actions/showfavorites.php:137 actions/tag.php:51 msgid "No such page" @@ -37,25 +89,29 @@ msgstr "No existe tal página" #: 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:144 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apistatusesupdate.php:148 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:78 #: actions/apitimelinehome.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/otp.php:76 #: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154 -#: actions/replies.php:73 actions/repliesrss.php:38 +#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 #: 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:302 lib/command.php:355 #: lib/command.php:401 lib/command.php:462 lib/command.php:518 #: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 -#: lib/subs.php:34 lib/subs.php:125 msgid "No such user." msgstr "No existe ese usuario." +#: actions/all.php:84 +#, php-format +msgid "%1$s and friends, page %2$d" +msgstr "%1$s y amigos, página %2$d" + #: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 -#: actions/apitimelinefriends.php:115 actions/apitimelinehome.php:115 +#: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" @@ -81,6 +137,8 @@ msgstr "Feed de los amigos de %s (Atom)" msgid "" "This is the timeline for %s and friends but no one has posted anything yet." msgstr "" +"Esta es la línea temporal de %s y amistades, pero nadie ha publicado nada " +"todavía." #: actions/all.php:132 #, php-format @@ -88,6 +146,8 @@ msgid "" "Try subscribing to more people, [join a group](%%action.groups%%) or post " "something yourself." msgstr "" +"Esta es la línea temporal de %s y amistades, pero nadie ha publicado nada " +"todavía." #: actions/all.php:134 #, php-format @@ -95,20 +155,24 @@ msgid "" "You can try to [nudge %1$s](../%2$s) from his profile or [post something to " "his or her attention](%%%%action.newnotice%%%%?status_textarea=%3$s)." msgstr "" +"Trata de suscribirte a más personas, [unirte a un grupo] (%%action.groups%%) " +"o publicar algo." -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211 #, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " "post a notice to his or her attention." msgstr "" +"Puede intentar [guiñar a %1$s](../%2$s) desde su perfil o [publicar algo a " +"su atención ](%%%%action.newnotice%%%%?status_textarea=%3$s)." #: actions/all.php:165 msgid "You and friends" msgstr "Tú y amigos" -#: actions/allrss.php:119 actions/apitimelinefriends.php:122 -#: actions/apitimelinehome.php:122 +#: actions/allrss.php:119 actions/apitimelinefriends.php:119 +#: actions/apitimelinehome.php:120 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "¡Actualizaciones de %1$s y amigos en %2$s!" @@ -118,26 +182,25 @@ msgstr "¡Actualizaciones de %1$s y amigos en %2$s!" #: actions/apiaccountupdateprofile.php:97 #: actions/apiaccountupdateprofilebackgroundimage.php:94 #: actions/apiaccountupdateprofilecolors.php:118 -#: 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:136 actions/apigroupismember.php:114 -#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 -#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 -#: actions/apigroupmembership.php:106 actions/apigroupshow.php:105 -#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 -#: actions/apistatusesretweets.php:112 actions/apistatusesshow.php:108 -#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93 -#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:146 -#: actions/apitimelinefriends.php:156 actions/apitimelinegroup.php:150 -#: actions/apitimelinehome.php:156 actions/apitimelinementions.php:151 -#: actions/apitimelinepublic.php:131 actions/apitimelineretweetedbyme.php:122 +#: actions/apiaccountverifycredentials.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:128 actions/apigroupcreate.php:136 +#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 +#: actions/apigroupleave.php:141 actions/apigrouplist.php:132 +#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 +#: actions/apigroupshow.php:115 actions/apihelptest.php:88 +#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 +#: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 #: actions/apitimelineretweetedtome.php:121 -#: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141 -#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 -#, fuzzy +#: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 +#: actions/apitimelineuser.php:207 actions/apiusershow.php:101 msgid "API method not found." -msgstr "¡No se encontró el método de la API!" +msgstr "Método de API no encontrado." #: actions/apiaccountupdatedeliverydevice.php:85 #: actions/apiaccountupdateprofile.php:89 @@ -149,7 +212,7 @@ msgstr "¡No se encontró el método de la API!" #: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 #: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 #: actions/apigroupleave.php:91 actions/apistatusesretweet.php:65 -#: actions/apistatusesupdate.php:114 +#: actions/apistatusesupdate.php:118 msgid "This method requires a POST." msgstr "Este método requiere un POST." @@ -158,9 +221,10 @@ msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " "none" msgstr "" +"Tienes que especificar un parámetro llamdao 'dispositivo' con un valor a " +"elegir entre: sms, im, ninguno" #: actions/apiaccountupdatedeliverydevice.php:132 -#, fuzzy msgid "Could not update user." msgstr "No se pudo actualizar el usuario." @@ -174,14 +238,14 @@ msgid "User has no profile." msgstr "El usuario no tiene un perfil." #: actions/apiaccountupdateprofile.php:147 -#, fuzzy msgid "Could not save profile." msgstr "No se pudo guardar el perfil." #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:97 -#: actions/apistatusesupdate.php:127 actions/avatarsettings.php:257 -#: actions/designadminpanel.php:122 actions/newnotice.php:94 +#: actions/apistatusesupdate.php:131 actions/avatarsettings.php:257 +#: actions/designadminpanel.php:122 actions/editapplication.php:118 +#: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 #, php-format msgid "" @@ -198,15 +262,13 @@ msgstr "" #: actions/groupdesignsettings.php:287 actions/groupdesignsettings.php:297 #: 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!" +msgstr "No se pudo grabar tu configuración de diseño." #: actions/apiaccountupdateprofilebackgroundimage.php:187 #: actions/apiaccountupdateprofilecolors.php:142 -#, fuzzy msgid "Could not update your design." -msgstr "No se pudo actualizar el usuario." +msgstr "No se pudo actualizar tu diseño." #: actions/apiblockcreate.php:105 msgid "You cannot block yourself!" @@ -245,9 +307,9 @@ msgid "No message text!" msgstr "¡Sin texto de mensaje!" #: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 -#, fuzzy, php-format +#, php-format msgid "That's too long. Max message size is %d chars." -msgstr "Demasiado largo. Máximo 140 caracteres. " +msgstr "Demasiado largo. Tamaño máx. de los mensajes es %d caracteres." #: actions/apidirectmessagenew.php:146 msgid "Recipient user not found." @@ -299,11 +361,11 @@ msgstr "No puedes dejar de seguirte a ti mismo." msgid "Two user ids or screen_names must be supplied." msgstr "Deben proveerse dos identificaciones de usuario o nombres en pantalla." -#: actions/apifriendshipsshow.php:135 +#: actions/apifriendshipsshow.php:134 msgid "Could not determine source user." msgstr "No se pudo determinar el usuario fuente." -#: actions/apifriendshipsshow.php:143 +#: actions/apifriendshipsshow.php:142 msgid "Could not find target user." msgstr "No se pudo encontrar ningún usuario de destino." @@ -312,22 +374,23 @@ msgstr "No se pudo encontrar ningún usuario de destino." #: 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 " +"El usuario debe tener solamente letras minúsculas y números y no puede tener " "espacios." #: actions/apigroupcreate.php:173 actions/editgroup.php:186 #: actions/newgroup.php:130 actions/profilesettings.php:238 #: actions/register.php:208 msgid "Nickname already in use. Try another one." -msgstr "El apodo ya existe. Prueba otro." +msgstr "El usuario ya existe. Prueba con otro." #: actions/apigroupcreate.php:180 actions/editgroup.php:189 #: actions/newgroup.php:133 actions/profilesettings.php:218 #: actions/register.php:210 msgid "Not a valid nickname." -msgstr "Apodo no válido" +msgstr "Usuario inválido" -#: actions/apigroupcreate.php:196 actions/editgroup.php:195 +#: actions/apigroupcreate.php:196 actions/editapplication.php:215 +#: actions/editgroup.php:195 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:217 msgid "Homepage is not a valid URL." @@ -339,7 +402,8 @@ msgstr "La página de inicio no es un URL válido." msgid "Full name is too long (max 255 chars)." msgstr "Tu nombre es demasiado largo (max. 255 carac.)" -#: actions/apigroupcreate.php:213 +#: actions/apigroupcreate.php:213 actions/editapplication.php:190 +#: actions/newapplication.php:172 #, php-format msgid "Description is too long (max %d chars)." msgstr "La descripción es demasiado larga (máx. %d caracteres)." @@ -358,27 +422,26 @@ msgstr "¡Muchos seudónimos! El máximo es %d." #: actions/apigroupcreate.php:264 actions/editgroup.php:224 #: actions/newgroup.php:168 -#, fuzzy, php-format +#, php-format msgid "Invalid alias: \"%s\"" -msgstr "Tag no válido: '%s' " +msgstr "Alias inválido: \"%s\"" #: actions/apigroupcreate.php:273 actions/editgroup.php:228 #: actions/newgroup.php:172 -#, fuzzy, php-format +#, php-format msgid "Alias \"%s\" already in use. Try another one." -msgstr "El apodo ya existe. Prueba otro." +msgstr "El alias \"%s\" ya está en uso. Intenta usar otro." #: actions/apigroupcreate.php:286 actions/editgroup.php:234 #: actions/newgroup.php:178 msgid "Alias can't be the same as nickname." -msgstr "" +msgstr "El alias no puede ser el mismo que el usuario." #: actions/apigroupismember.php:95 actions/apigroupjoin.php:104 #: actions/apigroupleave.php:104 actions/apigroupmembership.php:91 -#: actions/apigroupshow.php:90 actions/apitimelinegroup.php:91 -#, fuzzy +#: actions/apigroupshow.php:82 actions/apitimelinegroup.php:91 msgid "Group not found!" -msgstr "¡No se encontró el método de la API!" +msgstr "¡No se ha encontrado el grupo!" #: actions/apigroupjoin.php:110 actions/joingroup.php:90 msgid "You are already a member of that group." @@ -386,21 +449,21 @@ msgstr "Ya eres miembro de ese grupo" #: actions/apigroupjoin.php:119 actions/joingroup.php:95 lib/command.php:221 msgid "You have been blocked from that group by the admin." -msgstr "" +msgstr "Has sido bloqueado de ese grupo por el administrador." #: actions/apigroupjoin.php:138 actions/joingroup.php:124 -#, fuzzy, php-format +#, php-format msgid "Could not join user %1$s to group %2$s." -msgstr "No se puede unir usuario %s a grupo %s" +msgstr "No se pudo unir el usuario %s al grupo %s" #: actions/apigroupleave.php:114 msgid "You are not a member of this group." msgstr "No eres miembro de este grupo." #: actions/apigroupleave.php:124 actions/leavegroup.php:119 -#, fuzzy, php-format +#, php-format msgid "Could not remove user %1$s from group %2$s." -msgstr "No se pudo eliminar a usuario %s de grupo %s" +msgstr "No se pudo eliminar al usuario %1$s del grupo %2$s." #: actions/apigrouplist.php:95 #, php-format @@ -417,6 +480,118 @@ msgstr "Grupos %s" msgid "groups on %s" msgstr "Grupos en %s" +#: actions/apioauthauthorize.php:101 +msgid "No oauth_token parameter provided." +msgstr "No se ha provisto de un parámetro oauth_token." + +#: actions/apioauthauthorize.php:106 +msgid "Invalid token." +msgstr "Token inválido." + +#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 +#: actions/deletenotice.php:157 actions/disfavor.php:74 +#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54 +#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupunblock.php:66 actions/imsettings.php:206 +#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 +#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 +#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135 +#: actions/othersettings.php:145 actions/passwordsettings.php:138 +#: actions/profilesettings.php:194 actions/recoverpassword.php:337 +#: actions/register.php:165 actions/remotesubscribe.php:77 +#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 +#: actions/subscribe.php:86 actions/tagother.php:166 +#: 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/apioauthauthorize.php:135 +msgid "Invalid nickname / password!" +msgstr "¡Apodo o contraseña inválidos!" + +#: actions/apioauthauthorize.php:159 +msgid "Database error deleting OAuth application user." +msgstr "" +"Error de la base de datos durante la eliminación del usuario de la " +"aplicación OAuth." + +#: actions/apioauthauthorize.php:185 +msgid "Database error inserting OAuth application user." +msgstr "Error de base de datos al insertar usuario de la aplicación OAuth." + +#: actions/apioauthauthorize.php:214 +#, php-format +msgid "" +"The request token %s has been authorized. Please exchange it for an access " +"token." +msgstr "" +"El token de solicitud %s ha sido autorizado. Por favor, cámbialo por un " +"token de acceso." + +#: actions/apioauthauthorize.php:227 +#, php-format +msgid "The request token %s has been denied and revoked." +msgstr "El token de solicitud %2 ha sido denegado y revocado." + +#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 +#: actions/designadminpanel.php:103 actions/editapplication.php:139 +#: actions/emailsettings.php:256 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/newapplication.php:121 +#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 +#: actions/smssettings.php:248 lib/designsettings.php:304 +msgid "Unexpected form submission." +msgstr "Envío de formulario inesperado." + +#: actions/apioauthauthorize.php:259 +msgid "An application would like to connect to your account" +msgstr "Una aplicación quisiera conectarse a tu cuenta" + +#: actions/apioauthauthorize.php:276 +msgid "Allow or deny access" +msgstr "Permitir o denegar el acceso" + +#: actions/apioauthauthorize.php:292 +#, php-format +msgid "" +"The application %1$s by %2$s would like " +"the ability to %3$s your %4$s account data. You should only " +"give access to your %4$s account to third parties you trust." +msgstr "" +"La aplicación %1$s por %2$s solicita " +"permiso para %3$s la información de tu cuenta %4$s. Sólo " +"debes dar acceso a tu cuenta %4$s a terceras partes en las que confíes." + +#: actions/apioauthauthorize.php:310 lib/action.php:441 +msgid "Account" +msgstr "Cuenta" + +#: actions/apioauthauthorize.php:313 actions/login.php:230 +#: actions/profilesettings.php:106 actions/register.php:424 +#: actions/showgroup.php:236 actions/tagother.php:94 +#: actions/userauthorization.php:145 lib/groupeditform.php:152 +#: lib/userprofile.php:131 +msgid "Nickname" +msgstr "Apodo" + +#: actions/apioauthauthorize.php:316 actions/login.php:233 +#: actions/register.php:429 lib/accountsettingsaction.php:116 +msgid "Password" +msgstr "Contraseña" + +#: actions/apioauthauthorize.php:328 +msgid "Deny" +msgstr "Denegar" + +#: actions/apioauthauthorize.php:334 +msgid "Allow" +msgstr "Permitir" + +#: actions/apioauthauthorize.php:351 +msgid "Allow or deny access to your account information." +msgstr "Permitir o denegar el acceso a la información de tu cuenta." + #: actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." msgstr "Este método requiere un PUBLICAR O ELIMINAR" @@ -431,14 +606,12 @@ msgid "No such notice." msgstr "No existe ese aviso." #: actions/apistatusesretweet.php:83 -#, fuzzy msgid "Cannot repeat your own notice." -msgstr "No se puede activar notificación." +msgstr "No puedes repetir tus propias notificaciones." #: actions/apistatusesretweet.php:91 -#, fuzzy msgid "Already repeated that notice." -msgstr "Borrar este aviso" +msgstr "Esta notificación ya se ha repetido." #: actions/apistatusesshow.php:138 msgid "Status deleted." @@ -448,34 +621,36 @@ msgstr "Status borrado." msgid "No status with that ID found." msgstr "No hay estado para ese ID" -#: actions/apistatusesupdate.php:157 actions/newnotice.php:155 +#: actions/apistatusesupdate.php:161 actions/newnotice.php:155 #: lib/mailhandler.php:60 -#, fuzzy, php-format +#, php-format msgid "That's too long. Max notice size is %d chars." -msgstr "Demasiado largo. La longitud máxima es de 140 caracteres. " +msgstr "La entrada es muy larga. El tamaño máximo es de %d caracteres." -#: actions/apistatusesupdate.php:198 +#: actions/apistatusesupdate.php:202 msgid "Not found" msgstr "No encontrado" -#: actions/apistatusesupdate.php:221 actions/newnotice.php:178 +#: actions/apistatusesupdate.php:225 actions/newnotice.php:178 #, php-format msgid "Max notice size is %d chars, including attachment URL." msgstr "" +"El tamaño máximo de la notificación es %d caracteres, incluyendo el URL " +"adjunto." #: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 msgid "Unsupported format." msgstr "Formato no soportado." #: actions/apitimelinefavorites.php:108 -#, fuzzy, php-format +#, php-format msgid "%1$s / Favorites from %2$s" -msgstr "%s / Favoritos desde %s" +msgstr "%1$s / Favoritos de %2$s" -#: actions/apitimelinefavorites.php:120 -#, fuzzy, php-format +#: actions/apitimelinefavorites.php:117 +#, php-format msgid "%1$s updates favorited by %2$s / %2$s." -msgstr "%s actualizaciones favoritas por %s / %s." +msgstr "%1$s actualizaciones favoritas de %2$s / %2$s." #: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 #: actions/grouprss.php:131 actions/userrss.php:90 @@ -483,66 +658,59 @@ msgstr "%s actualizaciones favoritas por %s / %s." msgid "%s timeline" msgstr "línea temporal de %s" -#: actions/apitimelinegroup.php:117 actions/apitimelineuser.php:126 +#: actions/apitimelinegroup.php:114 actions/apitimelineuser.php:126 #: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "¡Actualizaciones de %1$s en %2$s!" #: actions/apitimelinementions.php:117 -#, fuzzy, php-format +#, php-format msgid "%1$s / Updates mentioning %2$s" -msgstr "%1$s / Actualizaciones en respuesta a %2$s" +msgstr "%1$s / Actualizaciones que mencionan %2$s" #: actions/apitimelinementions.php:127 #, 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/apitimelinepublic.php:107 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "línea temporal pública de %s" -#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "¡Actualizaciones de todos en %s!" -#: actions/apitimelineretweetedbyme.php:112 -#, php-format -msgid "Repeated by %s" -msgstr "" - #: actions/apitimelineretweetedtome.php:111 -#, fuzzy, php-format +#, php-format msgid "Repeated to %s" -msgstr "Respuestas a %s" +msgstr "Repetido a %s" -#: actions/apitimelineretweetsofme.php:112 -#, fuzzy, php-format +#: actions/apitimelineretweetsofme.php:114 +#, php-format msgid "Repeats of %s" -msgstr "Respuestas a %s" +msgstr "Repeticiones de %s" #: actions/apitimelinetag.php:102 actions/tag.php:66 #, php-format msgid "Notices tagged with %s" msgstr "Avisos marcados con %s" -#: actions/apitimelinetag.php:108 actions/tagrss.php:64 -#, fuzzy, php-format +#: actions/apitimelinetag.php:104 actions/tagrss.php:64 +#, php-format msgid "Updates tagged with %1$s on %2$s!" -msgstr "¡Actualizaciones de %1$s en %2$s!" +msgstr "Actualizaciones etiquetadas con %1$s en %2$s!" #: actions/apiusershow.php:96 -#, fuzzy msgid "Not found." -msgstr "No se encontró." +msgstr "No encontrado." #: actions/attachment.php:73 -#, fuzzy msgid "No such attachment." -msgstr "No existe ese documento." +msgstr "No existe tal archivo adjunto." #: actions/avatarbynickname.php:59 actions/blockedfromgroup.php:73 #: actions/editgroup.php:84 actions/groupdesignsettings.php:84 @@ -566,9 +734,9 @@ msgid "Avatar" msgstr "Avatar" #: actions/avatarsettings.php:78 -#, fuzzy, php-format +#, php-format msgid "You can upload your personal avatar. The maximum file size is %s." -msgstr "Puedes cargar tu avatar personal." +msgstr "Puedes subir tu imagen personal. El tamaño máximo de archivo es %s." #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 #: actions/remotesubscribe.php:191 actions/userauthorization.php:72 @@ -591,8 +759,8 @@ msgstr "Original" msgid "Preview" msgstr "Vista previa" -#: actions/avatarsettings.php:149 lib/deleteuserform.php:66 -#: lib/noticelist.php:611 +#: actions/avatarsettings.php:149 actions/showapplication.php:252 +#: lib/deleteuserform.php:66 lib/noticelist.php:637 msgid "Delete" msgstr "Borrar" @@ -604,30 +772,6 @@ msgstr "Cargar" msgid "Crop" msgstr "Cortar" -#: actions/avatarsettings.php:268 actions/deletenotice.php:157 -#: actions/disfavor.php:74 actions/emailsettings.php:238 actions/favor.php:75 -#: actions/geocode.php:50 actions/groupblock.php:66 actions/grouplogo.php:309 -#: actions/groupunblock.php:66 actions/imsettings.php:206 -#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 -#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 -#: actions/othersettings.php:145 actions/passwordsettings.php:138 -#: actions/profilesettings.php:194 actions/recoverpassword.php:337 -#: actions/register.php:165 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 -#: actions/subscribe.php:46 actions/tagother.php:166 -#: 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/avatarsettings.php:281 actions/designadminpanel.php:103 -#: actions/emailsettings.php:256 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/avatarsettings.php:328 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" @@ -645,14 +789,12 @@ msgid "Failed updating avatar." msgstr "Error al actualizar avatar." #: actions/avatarsettings.php:393 -#, fuzzy msgid "Avatar deleted." -msgstr "Avatar actualizado" +msgstr "Avatar borrado." #: actions/block.php:69 -#, fuzzy msgid "You already blocked that user." -msgstr "Ya has bloqueado este usuario." +msgstr "Ya has bloqueado a este usuario." #: actions/block.php:105 actions/block.php:128 actions/groupblock.php:160 msgid "Block user" @@ -664,24 +806,27 @@ msgid "" "unsubscribed from you, unable to subscribe to you in the future, and you " "will not be notified of any @-replies from them." msgstr "" +"¿Realmente deseas bloquear a este usuario? Una vez que lo hagas, se " +"desuscribirá de tu cuenta, no podrá suscribirse a ella en el futuro y no se " +"te notificará de ninguna de sus respuestas @." -#: actions/block.php:143 actions/deletenotice.php:145 -#: actions/deleteuser.php:147 actions/groupblock.php:178 +#: actions/block.php:143 actions/deleteapplication.php:153 +#: actions/deletenotice.php:145 actions/deleteuser.php:147 +#: actions/groupblock.php:178 msgid "No" msgstr "No" #: actions/block.php:143 actions/deleteuser.php:147 -#, fuzzy msgid "Do not block this user" -msgstr "Desbloquear este usuario" +msgstr "No bloquear a este usuario" -#: actions/block.php:144 actions/deletenotice.php:146 -#: actions/deleteuser.php:148 actions/groupblock.php:179 -#: lib/repeatform.php:132 +#: actions/block.php:144 actions/deleteapplication.php:158 +#: actions/deletenotice.php:146 actions/deleteuser.php:148 +#: actions/groupblock.php:179 lib/repeatform.php:132 msgid "Yes" msgstr "Sí" -#: actions/block.php:144 actions/groupmembers.php:346 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80 msgid "Block this user" msgstr "Bloquear este usuario." @@ -700,19 +845,19 @@ msgid "No such group." msgstr "No existe ese grupo." #: actions/blockedfromgroup.php:90 -#, fuzzy, php-format +#, php-format msgid "%s blocked profiles" -msgstr "Perfil de usuario" +msgstr "%s perfiles bloqueados" #: actions/blockedfromgroup.php:93 -#, fuzzy, php-format +#, php-format msgid "%1$s blocked profiles, page %2$d" -msgstr "%s y amigos, página %d" +msgstr "%1$s perfiles bloqueados, página %2$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." +msgstr "" +"Una lista de los usuarios que han sido bloqueados para unirse a este grupo." #: actions/blockedfromgroup.php:281 msgid "Unblock user from group" @@ -765,7 +910,7 @@ msgid "Couldn't delete email confirmation." msgstr "No se pudo eliminar la confirmación de correo electrónico." #: actions/confirmaddress.php:144 -msgid "Confirm Address" +msgid "Confirm address" msgstr "Confirmar la dirección" #: actions/confirmaddress.php:159 @@ -782,10 +927,51 @@ msgstr "Conversación" msgid "Notices" msgstr "Avisos" +#: actions/deleteapplication.php:63 +msgid "You must be logged in to delete an application." +msgstr "Debes estar registrado para borrar una aplicación." + +#: actions/deleteapplication.php:71 +msgid "Application not found." +msgstr "Aplicación no encontrada." + +#: actions/deleteapplication.php:78 actions/editapplication.php:77 +#: actions/showapplication.php:94 +msgid "You are not the owner of this application." +msgstr "No eres el propietario de esta aplicación." + +#: actions/deleteapplication.php:102 actions/editapplication.php:127 +#: actions/newapplication.php:110 actions/showapplication.php:118 +#: lib/action.php:1197 +msgid "There was a problem with your session token." +msgstr "Hubo problemas con tu clave de sesión." + +#: actions/deleteapplication.php:123 actions/deleteapplication.php:147 +msgid "Delete application" +msgstr "Eliminar la aplicación" + +#: actions/deleteapplication.php:149 +msgid "" +"Are you sure you want to delete this application? This will clear all data " +"about the application from the database, including all existing user " +"connections." +msgstr "" +"¿Estás seguro de que quieres eliminar esta aplicación? Esto borrará todos " +"los datos acerca de la aplicación de la base de datos, incluyendo todas las " +"conexiones de usuario existente." + +#: actions/deleteapplication.php:156 +msgid "Do not delete this application" +msgstr "No eliminar esta aplicación" + +#: actions/deleteapplication.php:160 +msgid "Delete this application" +msgstr "Borrar esta aplicación" + #: 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/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 #: lib/adminpanelaction.php:72 lib/profileformaction.php:63 #: lib/settingsaction.php:72 @@ -797,13 +983,12 @@ msgid "Can't delete this notice." msgstr "No se puede eliminar este aviso." #: 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" +"Estás a punto de eliminar un mensaje permanentemente. Una vez hecho esto, no " +"lo puedes deshacer." #: actions/deletenotice.php:109 actions/deletenotice.php:141 msgid "Delete notice" @@ -814,11 +999,10 @@ msgid "Are you sure you want to delete this notice?" msgstr "¿Estás seguro de que quieres eliminar este aviso?" #: actions/deletenotice.php:145 -#, fuzzy msgid "Do not delete this notice" -msgstr "No se puede eliminar este aviso." +msgstr "No eliminar este mensaje" -#: actions/deletenotice.php:146 lib/noticelist.php:611 +#: actions/deletenotice.php:146 lib/noticelist.php:637 msgid "Delete this notice" msgstr "Borrar este aviso" @@ -827,9 +1011,8 @@ msgid "You cannot delete users." msgstr "No puedes borrar usuarios." #: actions/deleteuser.php:74 -#, fuzzy msgid "You can only delete local users." -msgstr "No puedes borrar el estado de otro usuario." +msgstr "Sólo puedes eliminar usuarios locales." #: actions/deleteuser.php:110 actions/deleteuser.php:133 msgid "Delete user" @@ -840,6 +1023,8 @@ msgid "" "Are you sure you want to delete this user? This will clear all data about " "the user from the database, without a backup." msgstr "" +"¿Realmente deseas eliminar este usuario? Esto borrará de la base de datos " +"todos los datos sobre el usuario, sin dejar una copia de seguridad." #: actions/deleteuser.php:148 lib/deleteuserform.php:77 msgid "Delete this user" @@ -848,16 +1033,15 @@ msgstr "Borrar este usuario" #: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 #: lib/adminpanelaction.php:316 lib/groupnav.php:119 msgid "Design" -msgstr "" +msgstr "Diseño" #: actions/designadminpanel.php:73 msgid "Design settings for this StatusNet site." -msgstr "" +msgstr "Configuración de diseño de este sitio StatusNet." #: actions/designadminpanel.php:275 -#, fuzzy msgid "Invalid logo URL." -msgstr "Tamaño inválido." +msgstr "URL de logotipo inválido." #: actions/designadminpanel.php:279 #, php-format @@ -869,56 +1053,54 @@ msgid "Change logo" msgstr "Cambiar logo" #: actions/designadminpanel.php:380 -#, fuzzy msgid "Site logo" -msgstr "Invitar" +msgstr "Logo del sitio" #: actions/designadminpanel.php:387 -#, fuzzy msgid "Change theme" -msgstr "Cambiar" +msgstr "Cambiar el tema" #: actions/designadminpanel.php:404 -#, fuzzy msgid "Site theme" -msgstr "Aviso de sitio" +msgstr "Tema del sitio" #: actions/designadminpanel.php:405 -#, fuzzy msgid "Theme for the site." -msgstr "Salir de sitio" +msgstr "Tema para el sitio." #: actions/designadminpanel.php:417 lib/designsettings.php:101 msgid "Change background image" -msgstr "" +msgstr "Cambiar la imagen de fondo" #: actions/designadminpanel.php:422 actions/designadminpanel.php:497 #: lib/designsettings.php:178 msgid "Background" -msgstr "" +msgstr "Fondo" #: actions/designadminpanel.php:427 -#, fuzzy, php-format +#, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" "$s." -msgstr "Puedes cargar una imagen de logo para tu grupo." +msgstr "" +"Puedes subir una imagen de fondo para el sitio. El tamaño máximo de archivo " +"es %1$s." #: actions/designadminpanel.php:457 lib/designsettings.php:139 msgid "On" -msgstr "" +msgstr "Activado" #: actions/designadminpanel.php:473 lib/designsettings.php:155 msgid "Off" -msgstr "" +msgstr "Desactivado" #: actions/designadminpanel.php:474 lib/designsettings.php:156 msgid "Turn background image on or off." -msgstr "" +msgstr "Activar o desactivar la imagen de fondo." #: actions/designadminpanel.php:479 lib/designsettings.php:161 msgid "Tile background image" -msgstr "" +msgstr "Imagen de fondo en mosaico" #: actions/designadminpanel.php:488 lib/designsettings.php:170 msgid "Change colours" @@ -929,9 +1111,8 @@ msgid "Content" msgstr "Contenido" #: actions/designadminpanel.php:523 lib/designsettings.php:204 -#, fuzzy msgid "Sidebar" -msgstr "Buscar" +msgstr "Barra lateral" #: actions/designadminpanel.php:536 lib/designsettings.php:217 msgid "Text" @@ -943,29 +1124,19 @@ msgstr "Vínculos" #: actions/designadminpanel.php:577 lib/designsettings.php:247 msgid "Use defaults" -msgstr "" +msgstr "Utilizar los valores predeterminados" #: actions/designadminpanel.php:578 lib/designsettings.php:248 msgid "Restore default designs" -msgstr "" +msgstr "Restaurar los diseños predeterminados" #: actions/designadminpanel.php:584 lib/designsettings.php:254 msgid "Reset back to default" -msgstr "" - -#: actions/designadminpanel.php:586 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 -#: actions/pathsadminpanel.php:324 actions/profilesettings.php:174 -#: actions/siteadminpanel.php:388 actions/smssettings.php:181 -#: actions/subscriptions.php:203 actions/tagother.php:154 -#: actions/useradminpanel.php:313 lib/designsettings.php:256 -#: lib/groupeditform.php:202 -msgid "Save" -msgstr "Guardar" +msgstr "Volver a los valores predeterminados" #: actions/designadminpanel.php:587 lib/designsettings.php:257 msgid "Save design" -msgstr "" +msgstr "Guardar el diseño" #: actions/disfavor.php:81 msgid "This notice is not a favorite!" @@ -975,9 +1146,75 @@ msgstr "¡Este aviso no es un favorito!" msgid "Add to favorites" msgstr "Agregar a favoritos" -#: actions/doc.php:69 -msgid "No such document." -msgstr "No existe ese documento." +#: actions/doc.php:158 +#, php-format +msgid "No such document \"%s\"" +msgstr "No existe tal documento \"%s\"" + +#: actions/editapplication.php:54 +msgid "Edit Application" +msgstr "Editar aplicación" + +#: actions/editapplication.php:66 +msgid "You must be logged in to edit an application." +msgstr "Debes haber iniciado sesión para editar una aplicación." + +#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:166 +#: actions/showapplication.php:87 +msgid "No such application." +msgstr "No existe tal aplicación." + +#: actions/editapplication.php:161 +msgid "Use this form to edit your application." +msgstr "Utiliza este formulario para editar tu aplicación." + +#: actions/editapplication.php:177 actions/newapplication.php:159 +msgid "Name is required." +msgstr "Se requiere un nombre" + +#: actions/editapplication.php:180 actions/newapplication.php:165 +msgid "Name is too long (max 255 chars)." +msgstr "El nombre es muy largo (máx. 255 carac.)" + +#: actions/editapplication.php:183 actions/newapplication.php:162 +msgid "Name already in use. Try another one." +msgstr "Ese nombre ya está en uso. Prueba con otro." + +#: actions/editapplication.php:186 actions/newapplication.php:168 +msgid "Description is required." +msgstr "Se requiere una descripción" + +#: actions/editapplication.php:194 +msgid "Source URL is too long." +msgstr "El URL fuente es muy largo." + +#: actions/editapplication.php:200 actions/newapplication.php:185 +msgid "Source URL is not valid." +msgstr "La URL fuente es inválida." + +#: actions/editapplication.php:203 actions/newapplication.php:188 +msgid "Organization is required." +msgstr "Se requiere una organización." + +#: actions/editapplication.php:206 actions/newapplication.php:191 +msgid "Organization is too long (max 255 chars)." +msgstr "El texto de organización es muy largo (máx. 255 caracteres)." + +#: actions/editapplication.php:209 actions/newapplication.php:194 +msgid "Organization homepage is required." +msgstr "Se requiere una página principal de organización" + +#: actions/editapplication.php:218 actions/newapplication.php:206 +msgid "Callback is too long." +msgstr "La devolución de llamada es muy larga." + +#: actions/editapplication.php:225 actions/newapplication.php:215 +msgid "Callback URL is not valid." +msgstr "El URL de devolución de llamada es inválido." + +#: actions/editapplication.php:258 +msgid "Could not update application." +msgstr "No fue posible actualizar la aplicación." #: actions/editgroup.php:56 #, php-format @@ -990,36 +1227,33 @@ msgstr "Debes estar conectado para crear un grupo" #: 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 ser un admin para editar el grupo" +msgstr "Para editar el grupo debes ser administrador." #: actions/editgroup.php:154 msgid "Use this form to edit the group." msgstr "Usa este formulario para editar el grupo." #: actions/editgroup.php:201 actions/newgroup.php:145 -#, fuzzy, php-format +#, php-format msgid "description is too long (max %d chars)." -msgstr "Descripción es demasiado larga (máx. 140 caracteres)." +msgstr "La descripción es muy larga (máx. %d caracteres)." #: actions/editgroup.php:253 msgid "Could not update group." msgstr "No se pudo actualizar el grupo." -#: actions/editgroup.php:259 classes/User_group.php:390 -#, fuzzy +#: actions/editgroup.php:259 classes/User_group.php:433 msgid "Could not create aliases." -msgstr "No se pudo crear favorito." +msgstr "No fue posible crear alias." #: actions/editgroup.php:269 msgid "Options saved." msgstr "Se guardó Opciones." #: actions/emailsettings.php:60 -#, fuzzy msgid "Email settings" -msgstr "Opciones de Email" +msgstr "Configuración del correo electrónico" #: actions/emailsettings.php:71 #, php-format @@ -1050,14 +1284,14 @@ msgstr "" "la de spam!) por un mensaje con las instrucciones." #: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 +#: actions/smssettings.php:126 lib/applicationeditform.php:331 +#: lib/applicationeditform.php:332 msgid "Cancel" msgstr "Cancelar" #: actions/emailsettings.php:121 -#, fuzzy msgid "Email address" -msgstr "Direcciones de correo electrónico" +msgstr "Dirección de correo electrónico" #: actions/emailsettings.php:123 msgid "Email address, like \"UserName@example.org\"" @@ -1104,10 +1338,9 @@ msgstr "" "Enviarme un correo electrónico cuando alguien me envía un mensaje privado." #: 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." +"Enviarme un correo electrónico cuando alguien me envíe una \"@-respuesta\"." #: actions/emailsettings.php:179 msgid "Allow friends to nudge me and send me an email." @@ -1135,7 +1368,7 @@ msgid "Cannot normalize that email address" msgstr "No se puede normalizar esta dirección de correo electrónico." #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:157 +#: actions/siteadminpanel.php:143 msgid "Not a valid email address." msgstr "Correo electrónico no válido" @@ -1147,7 +1380,7 @@ msgstr "Esa ya es tu dirección de correo electrónico" msgid "That email address already belongs to another user." msgstr "Esa dirección de correo pertenece a otro usuario." -#: actions/emailsettings.php:353 actions/imsettings.php:317 +#: actions/emailsettings.php:353 actions/imsettings.php:319 #: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." msgstr "No se pudo insertar el código de confirmación." @@ -1209,31 +1442,33 @@ msgstr "¡Este aviso ya está en favoritos!" msgid "Disfavor favorite" msgstr "Sacar favorito" -#: actions/favorited.php:65 lib/popularnoticesection.php:88 +#: actions/favorited.php:65 lib/popularnoticesection.php:91 #: lib/publicgroupnav.php:93 -#, fuzzy msgid "Popular notices" -msgstr "Avisos populares" +msgstr "Mensajes populares" #: actions/favorited.php:67 -#, fuzzy, php-format +#, php-format msgid "Popular notices, page %d" -msgstr "Avisos populares, página %d" +msgstr "Mensajes 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." +msgstr "Los mensajes más populares del sitio en este momento." #: actions/favorited.php:150 msgid "Favorite notices appear on this page but no one has favorited one yet." msgstr "" +"Los mensajes favoritos aparecen en esta página, pero todavía nadie ha " +"marcado algún mensaje como favorito." #: 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 "" +"Se la primera persona en añadir un mensaje a tus favoritos con el botón de " +"favoritos que se encuentra al lado de cualquier mensaje que te guste." #: actions/favorited.php:156 #, php-format @@ -1241,6 +1476,8 @@ msgid "" "Why not [register an account](%%action.register%%) and be the first to add a " "notice to your favorites!" msgstr "" +"¿Por qué no [registrar una cuenta](%%action.register%%) y ser la primera " +"persona en añadir un mensaje a tus favoritos?" #: actions/favoritesrss.php:111 actions/showfavorites.php:77 #: lib/personalgroupnav.php:115 @@ -1249,9 +1486,9 @@ msgid "%s's favorite notices" msgstr "Avisos favoritos de %s" #: actions/favoritesrss.php:115 -#, fuzzy, php-format +#, php-format msgid "Updates favored by %1$s on %2$s!" -msgstr "¡Actualizaciones de %1$s en %2$s!" +msgstr "¡Actualizaciones favorecidas por %1$ s en %2$s!" #: actions/featured.php:69 lib/featureduserssection.php:87 #: lib/publicgroupnav.php:89 @@ -1264,14 +1501,13 @@ msgid "Featured users, page %d" msgstr "Usuarios que figuran, página %d" #: actions/featured.php:99 -#, fuzzy, php-format +#, php-format msgid "A selection of some great users on %s" -msgstr "Una selección de algunos de los grandes usuarios en %s" +msgstr "Una selección de fantásticos usuarios en %s" #: actions/file.php:34 -#, fuzzy msgid "No notice ID." -msgstr "Nuevo aviso" +msgstr "No hay ID de mensaje." #: actions/file.php:38 msgid "No notice." @@ -1306,14 +1542,12 @@ msgid "You are not authorized." msgstr "No estás autorizado." #: actions/finishremotesubscribe.php:113 -#, fuzzy msgid "Could not convert request token to access token." -msgstr "No se pudieron convertir las clavesde petición a claves de acceso." +msgstr "No se pudo convertir el token de solicitud en token de acceso." #: actions/finishremotesubscribe.php:118 -#, fuzzy msgid "Remote service uses unknown version of OMB protocol." -msgstr "Versión desconocida del protocolo OMB." +msgstr "El servicio remoto utiliza una versión desconocida del protocolo OMB." #: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306 msgid "Error updating remote profile" @@ -1346,7 +1580,7 @@ msgstr "Grupo no especificado." #: actions/groupblock.php:91 msgid "Only an admin can block group members." -msgstr "" +msgstr "Sólo un administrador puede bloquear miembros de un grupo." #: actions/groupblock.php:95 msgid "User is already blocked from group." @@ -1356,7 +1590,7 @@ msgstr "Usuario ya está bloqueado del grupo." msgid "User is not a member of group." msgstr "Usuario no es miembro del grupo" -#: actions/groupblock.php:136 actions/groupmembers.php:314 +#: actions/groupblock.php:136 actions/groupmembers.php:316 msgid "Block user from group" msgstr "Bloquear usuario de grupo" @@ -1367,6 +1601,9 @@ msgid "" "will be removed from the group, unable to post, and unable to subscribe to " "the group in the future." msgstr "" +"¿Realmente deseas bloquear al usuario \"%1$s\" del grupo \"%2$s\"? Se " +"eliminará del grupo y no podrá publicar ni suscribirse al grupo en lo " +"sucesivo." #: actions/groupblock.php:178 msgid "Do not block this user from this group" @@ -1379,6 +1616,8 @@ msgstr "Bloquear este usuario de este grupo" #: actions/groupblock.php:196 msgid "Database error blocking user from group." msgstr "" +"Se ha producido un error en la base de datos al bloquear el usuario del " +"grupo." #: actions/groupbyid.php:74 actions/userbyid.php:70 msgid "No ID." @@ -1389,56 +1628,53 @@ msgid "You must be logged in to edit a group." msgstr "Debes estar conectado para editar un grupo." #: actions/groupdesignsettings.php:141 -#, fuzzy msgid "Group design" -msgstr "Grupos" +msgstr "Diseño de grupo" #: actions/groupdesignsettings.php:152 msgid "" "Customize the way your group looks with a background image and a colour " "palette of your choice." msgstr "" +"Personaliza el aspecto de tu grupo con una imagen de fondo y la paleta de " +"colores que prefieras." #: actions/groupdesignsettings.php:263 actions/userdesignsettings.php:186 #: lib/designsettings.php:391 lib/designsettings.php:413 -#, fuzzy msgid "Couldn't update your design." -msgstr "No se pudo actualizar el usuario." +msgstr "No fue posible actualizar tu diseño." #: actions/groupdesignsettings.php:308 actions/userdesignsettings.php:231 -#, fuzzy msgid "Design preferences saved." -msgstr "Preferencias de sincronización guardadas." +msgstr "Preferencias de diseño guardadas." #: actions/grouplogo.php:139 actions/grouplogo.php:192 msgid "Group logo" msgstr "Logo de grupo" #: actions/grouplogo.php:150 -#, fuzzy, php-format +#, 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." +msgstr "" +"Puedes subir una imagen de logo para tu grupo. El tamaño máximo del archivo " +"debe ser %s." #: actions/grouplogo.php:178 -#, fuzzy msgid "User without matching profile." -msgstr "Usuario sin perfil equivalente" +msgstr "Usuario sin perfil coincidente." #: 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" +msgstr "Elige un área cuadrada de la imagen para que sea tu logo." #: actions/grouplogo.php:396 -#, fuzzy msgid "Logo updated." -msgstr "SE actualizó logo." +msgstr "Logo actualizado." #: actions/grouplogo.php:398 -#, fuzzy msgid "Failed updating logo." -msgstr "Error al actualizar logo." +msgstr "Error al actualizar el logo." #: actions/groupmembers.php:93 lib/groupnav.php:92 #, php-format @@ -1446,40 +1682,38 @@ msgid "%s group members" msgstr "Miembros del grupo %s" #: actions/groupmembers.php:96 -#, fuzzy, php-format +#, php-format msgid "%1$s group members, page %2$d" -msgstr "Miembros del grupo %s, página %d" +msgstr "%1$s miembros de grupo, página %2$d" #: actions/groupmembers.php:111 msgid "A list of the users in this group." msgstr "Lista de los usuarios en este grupo." -#: actions/groupmembers.php:175 lib/action.php:442 lib/groupnav.php:107 +#: actions/groupmembers.php:175 lib/action.php:448 lib/groupnav.php:107 msgid "Admin" msgstr "Admin" -#: actions/groupmembers.php:346 lib/blockform.php:69 +#: actions/groupmembers.php:348 lib/blockform.php:69 msgid "Block" msgstr "Bloquear" -#: actions/groupmembers.php:441 -#, fuzzy +#: actions/groupmembers.php:443 msgid "Make user an admin of the group" -msgstr "Debes ser un admin para editar el grupo" +msgstr "Convertir al usuario en administrador del grupo" -#: actions/groupmembers.php:473 -#, fuzzy +#: actions/groupmembers.php:475 msgid "Make Admin" -msgstr "Admin" +msgstr "Convertir en administrador" -#: actions/groupmembers.php:473 +#: actions/groupmembers.php:475 msgid "Make this user an admin" -msgstr "" +msgstr "Convertir a este usuario en administrador" #: actions/grouprss.php:133 -#, fuzzy, php-format +#, php-format msgid "Updates from members of %1$s on %2$s!" -msgstr "¡Actualizaciones de %1$s en %2$s!" +msgstr "¡Actualizaciones de miembros de %1$s en %2$s!" #: actions/groups.php:62 lib/profileaction.php:210 lib/profileaction.php:230 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 @@ -1500,30 +1734,33 @@ msgid "" "for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" "%%%%)" msgstr "" +"Grupos %%%%site.name%%%% te permiten encontrar gente de intereses afines a " +"los tuyo y hablar con ellos. Después de unirte al grupo, podrás enviarle " +"mensajes a todos sus miembros mediante la sintaxis \"!groupname\". ¿No " +"encuentras un grupo que te guste? ¡Intenta [buscar otro](%%%%action." +"groupsearch%%%%) o [crea tú uno!](%%%%action.newgroup%%%%)" #: actions/groups.php:107 actions/usergroups.php:124 lib/groupeditform.php:122 msgid "Create a new group" msgstr "Crear un nuevo grupo" #: actions/groupsearch.php:52 -#, fuzzy, php-format +#, 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." +"Busca grupos en %%site.name%% por su nombre, ubicación o descripción. Separa " +"los términos con espacios. Los términos tienen que ser de 3 o más caracteres." #: actions/groupsearch.php:58 -#, fuzzy msgid "Group search" -msgstr "Buscador de grupos" +msgstr "Búsqueda en grupos" #: actions/groupsearch.php:79 actions/noticesearch.php:117 #: actions/peoplesearch.php:83 -#, fuzzy msgid "No results." -msgstr "Ningún resultado" +msgstr "No se obtuvo resultados." #: actions/groupsearch.php:82 #, php-format @@ -1531,6 +1768,8 @@ msgid "" "If you can't find the group you're looking for, you can [create it](%%action." "newgroup%%) yourself." msgstr "" +"Si no puedes encontrar el grupo que estás buscando, puedes [crearlo] (%%" +"action.newgroup%%) tú mismo." #: actions/groupsearch.php:85 #, php-format @@ -1538,23 +1777,22 @@ msgid "" "Why not [register an account](%%action.register%%) and [create the group](%%" "action.newgroup%%) yourself!" msgstr "" +"¿Por qué no [registras una cuenta](%%action.register%%) y [creas el grupo](%%" +"action.newgroup%%) tú mismo?" #: actions/groupunblock.php:91 msgid "Only an admin can unblock group members." -msgstr "" +msgstr "Sólo un administrador puede desbloquear miembros de grupos." #: actions/groupunblock.php:95 -#, fuzzy msgid "User is not blocked from group." -msgstr "El usuario te ha bloqueado." +msgstr "El usuario no está bloqueado del grupo." #: actions/groupunblock.php:128 actions/unblock.php:86 -#, fuzzy msgid "Error removing the block." -msgstr "Error al sacar bloqueo." +msgstr "Se ha producido un error al eliminar el bloque." #: actions/imsettings.php:59 -#, fuzzy msgid "IM settings" msgstr "Configuración de mensajería instantánea" @@ -1568,9 +1806,8 @@ msgstr "" "Jabber/GTalk. Configura tu dirección y opciones abajo." #: actions/imsettings.php:89 -#, fuzzy msgid "IM is not available." -msgstr "Esta página no está disponible en un " +msgstr "La mensajería instantánea no está disponible." #: actions/imsettings.php:106 msgid "Current confirmed Jabber/GTalk address." @@ -1587,7 +1824,6 @@ msgstr "" "de amigos?)" #: actions/imsettings.php:124 -#, fuzzy msgid "IM address" msgstr "Dirección de mensajería instantánea" @@ -1652,6 +1888,11 @@ msgstr "" msgid "That is not your Jabber ID." msgstr "Ese no es tu Jabber ID." +#: actions/inbox.php:59 +#, php-format +msgid "Inbox for %1$s - page %2$d" +msgstr "Bandeja de entrada de %1$s - página %2$d" + #: actions/inbox.php:62 #, php-format msgid "Inbox for %s" @@ -1664,7 +1905,7 @@ msgstr "" #: actions/invite.php:39 msgid "Invites have been disabled." -msgstr "" +msgstr "Se han inhabilitado las invitaciones." #: actions/invite.php:41 #, php-format @@ -1733,7 +1974,7 @@ msgstr "Mensaje Personal" 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:178 lib/noticeform.php:237 +#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:236 msgid "Send" msgstr "Enviar" @@ -1743,7 +1984,7 @@ 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/invite.php:228 -#, fuzzy, php-format +#, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" "\n" @@ -1772,55 +2013,54 @@ msgid "" "\n" "Sincerely, %2$s\n" msgstr "" -"%1$s te ha invitado a unirte a ellos en %2$s (%3$s).\n" +"%1$s te ha invitado a unirte a %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" +"%2$s es un servicio de microblogueo que te permite mantenerte al corriente " +"de las personas que sigues y que te interesan.\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" +"También puedes compartir noticias acerca de tí, tus pensamientos o tu vida " +"en línea con la gente que sabe de tí. También es una excelente herramienta " +"para conocer gente nueva que comparta tus intereses.\n" "\n" -"%1$s dijo:\n" +"%1$s ha dicho:\n" "\n" "%4$s\n" "\n" -"Puedes ver el perfil de %1$s en %2$s aquí:\n" +"Puedes ver el perfil de %1$s aquí en %2$s:\n" "\n" "%5$s\n" "\n" -"Si quieres inscribirte y probar el servicio, haz click en enlace debajo para " +"Si quieres probar el sevicio, haz clic en el vínculo a continuación 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" +"Si por el contrario, no quieres, ignora este mensaje. Muchas gracias por tu " +"paciencia y por tu tiempo.\n" "\n" -"Sinceramente, %2$s\n" +"Saludos cordiales, %2$s\n" #: 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:131 -#, fuzzy, php-format +#, php-format msgid "%1$s joined group %2$s" -msgstr "%s se unió a grupo %s" +msgstr "%1$s se ha unido al grupo %2$" #: 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:90 lib/command.php:265 -#, fuzzy msgid "You are not a member of that group." -msgstr "No eres miembro de ese grupo" +msgstr "No eres miembro de este grupo." #: actions/leavegroup.php:127 -#, fuzzy, php-format +#, php-format msgid "%1$s left group %2$s" -msgstr "%s dejó grupo %s" +msgstr "%1$s ha dejado el grupo %2$s" #: actions/login.php:80 actions/otp.php:62 actions/register.php:137 msgid "Already logged in." @@ -1831,11 +2071,10 @@ msgid "Incorrect username or password." msgstr "Nombre de usuario o contraseña incorrectos." #: actions/login.php:132 actions/otp.php:120 -#, fuzzy msgid "Error setting user. You are probably not authorized." -msgstr "No autorizado." +msgstr "Error al configurar el usuario. Posiblemente no tengas autorización." -#: actions/login.php:188 actions/login.php:241 lib/action.php:460 +#: actions/login.php:188 actions/login.php:241 lib/action.php:466 #: lib/logingroupnav.php:79 msgid "Login" msgstr "Inicio de sesión" @@ -1844,17 +2083,6 @@ msgstr "Inicio de sesión" msgid "Login to site" msgstr "Ingresar a sitio" -#: actions/login.php:230 actions/profilesettings.php:106 -#: actions/register.php:424 actions/showgroup.php:236 actions/tagother.php:94 -#: lib/groupeditform.php:152 lib/userprofile.php:131 -msgid "Nickname" -msgstr "Apodo" - -#: actions/login.php:233 actions/register.php:429 -#: lib/accountsettingsaction.php:116 -msgid "Password" -msgstr "Contraseña" - #: actions/login.php:236 actions/register.php:478 msgid "Remember me" msgstr "Recordarme" @@ -1878,38 +2106,58 @@ msgstr "" "contraseña antes de cambiar tu configuración." #: actions/login.php:270 -#, fuzzy, php-format +#, 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%%). " +"Inicia sesión con tu usuario y contraseña. ¿Aún no tienes usuario? [Crea](%%" +"action.register%%) una cuenta." -#: actions/makeadmin.php:91 +#: actions/makeadmin.php:92 msgid "Only an admin can make another user an admin." msgstr "" +"Sólo los administradores pueden convertir a un usuario en administrador." -#: actions/makeadmin.php:95 -#, fuzzy, php-format +#: actions/makeadmin.php:96 +#, php-format msgid "%1$s is already an admin for group \"%2$s\"." -msgstr "Usuario ya está bloqueado del grupo." +msgstr "%1$s ya es un administrador del grupo \"%2$s\"." -#: actions/makeadmin.php:132 -#, fuzzy, php-format +#: actions/makeadmin.php:133 +#, php-format msgid "Can't get membership record for %1$s in group %2$s." -msgstr "No se pudo eliminar a usuario %s de grupo %s" +msgstr "No se puede obtener el registro de membresía de %1$s en el grupo %2$s." -#: actions/makeadmin.php:145 -#, fuzzy, php-format +#: actions/makeadmin.php:146 +#, php-format msgid "Can't make %1$s an admin for group %2$s." -msgstr "Debes ser un admin para editar el grupo" +msgstr "No es posible convertir a %1$s en administrador del grupo %2$s." #: actions/microsummary.php:69 msgid "No current status" msgstr "No existe estado actual" +#: actions/newapplication.php:52 +msgid "New Application" +msgstr "Nueva aplicación" + +#: actions/newapplication.php:64 +msgid "You must be logged in to register an application." +msgstr "Debes conectarte para registrar una aplicación." + +#: actions/newapplication.php:143 +msgid "Use this form to register a new application." +msgstr "Utiliza este formulario para registrar una nueva aplicación." + +#: actions/newapplication.php:176 +msgid "Source URL is required." +msgstr "Se requiere la URL fuente." + +#: actions/newapplication.php:258 actions/newapplication.php:267 +msgid "Could not create application." +msgstr "No se pudo crear la aplicación." + #: actions/newgroup.php:53 msgid "New group" msgstr "Grupo nuevo " @@ -1941,14 +2189,13 @@ msgid "" msgstr "No te auto envíes un mensaje; dícetelo a ti mismo." #: actions/newmessage.php:181 -#, fuzzy msgid "Message sent" -msgstr "Mensaje" +msgstr "Mensaje enviado" #: actions/newmessage.php:185 -#, fuzzy, php-format +#, php-format msgid "Direct message to %s sent." -msgstr "Se envió mensaje directo a %s" +msgstr "Se ha enviado un mensaje directo a %s." #: actions/newmessage.php:210 actions/newnotice.php:245 lib/channel.php:170 msgid "Ajax Error" @@ -1959,9 +2206,8 @@ msgid "New notice" msgstr "Nuevo aviso" #: actions/newnotice.php:211 -#, fuzzy msgid "Notice posted" -msgstr "Aviso publicado" +msgstr "Mensaje publicado" #: actions/noticesearch.php:68 #, php-format @@ -1977,9 +2223,9 @@ msgid "Text search" msgstr "Búsqueda de texto" #: actions/noticesearch.php:91 -#, fuzzy, php-format +#, php-format msgid "Search results for \"%1$s\" on %2$s" -msgstr "Busca \"%s\" en la Corriente" +msgstr "Resultados de la búsqueda de \"%1$s\" en %2$s" #: actions/noticesearch.php:121 #, php-format @@ -1987,6 +2233,8 @@ msgid "" "Be the first to [post on this topic](%%%%action.newnotice%%%%?" "status_textarea=%s)!" msgstr "" +"Sé la primera persona en [publicar algo en este tema](%%%%action.newnotice%%%" +"%?status_textarea=%s)!" #: actions/noticesearch.php:124 #, php-format @@ -1994,16 +2242,20 @@ msgid "" "Why not [register an account](%%%%action.register%%%%) and be the first to " "[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" msgstr "" +"¿Por qué no [registras una cuenta](%%%%action.register%%%%) y te conviertes " +"en la primera persona en [publicar algo en este tema](%%%%action.newnotice%%%" +"%?status_textarea=%s)?" #: actions/noticesearchrss.php:96 -#, fuzzy, php-format +#, php-format msgid "Updates with \"%s\"" -msgstr "¡Actualizaciones de %1$s en %2$s!" +msgstr "Actualizaciones con \"%s\"" #: actions/noticesearchrss.php:98 -#, fuzzy, php-format +#, php-format msgid "Updates matching search term \"%1$s\" on %2$s!" -msgstr "Todas las actualizaciones que corresponden a la frase a buscar \"%s\"" +msgstr "" +"¡Actualizaciones que contienen el término de búsqueda \"%1$s\" en %2$s!" #: actions/nudge.php:85 msgid "" @@ -2017,9 +2269,52 @@ msgid "Nudge sent" msgstr "Se envió zumbido" #: actions/nudge.php:97 -#, fuzzy msgid "Nudge sent!" -msgstr "¡Zumbido enviado!" +msgstr "¡Codazo enviado!" + +#: actions/oauthappssettings.php:59 +msgid "You must be logged in to list your applications." +msgstr "Debes estar conectado para listar tus aplicaciones." + +#: actions/oauthappssettings.php:74 +msgid "OAuth applications" +msgstr "Aplicaciones OAuth" + +#: actions/oauthappssettings.php:85 +msgid "Applications you have registered" +msgstr "Aplicaciones que has registrado" + +#: actions/oauthappssettings.php:135 +#, php-format +msgid "You have not registered any applications yet." +msgstr "Aún no has registrado aplicación alguna." + +#: actions/oauthconnectionssettings.php:72 +msgid "Connected applications" +msgstr "Aplicaciones conectadas" + +#: actions/oauthconnectionssettings.php:83 +msgid "You have allowed the following applications to access you account." +msgstr "Has permitido a las siguientes aplicaciones acceder a tu cuenta." + +#: actions/oauthconnectionssettings.php:175 +msgid "You are not a user of that application." +msgstr "No eres un usuario de esa aplicación." + +#: actions/oauthconnectionssettings.php:186 +msgid "Unable to revoke access for app: " +msgstr "No se puede revocar el acceso para la aplicación: " + +#: actions/oauthconnectionssettings.php:198 +#, php-format +msgid "You have not authorized any applications to use your account." +msgstr "No has autorizado a ninguna aplicación utilizar tu cuenta." + +#: actions/oauthconnectionssettings.php:211 +msgid "Developers can edit the registration settings for their applications " +msgstr "" +"Los desarrolladores pueden editar la configuración de registro de sus " +"aplicaciones " #: actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" @@ -2031,16 +2326,15 @@ msgid "%1$s's status on %2$s" msgstr "estado de %1$s en %2$s" #: actions/oembed.php:157 -#, fuzzy msgid "content type " -msgstr "Conectarse" +msgstr "tipo de contenido " #: actions/oembed.php:160 msgid "Only " -msgstr "" +msgstr "Sólo " -#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1033 -#: lib/api.php:1061 lib/api.php:1171 +#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 +#: lib/api.php:1068 lib/api.php:1177 msgid "Not a supported data format." msgstr "No es un formato de dato soportado" @@ -2053,9 +2347,8 @@ msgid "Notice Search" msgstr "Búsqueda de avisos" #: actions/othersettings.php:60 -#, fuzzy -msgid "Other Settings" -msgstr "Otras configuraciones" +msgid "Other settings" +msgstr "Otros ajustes" #: actions/othersettings.php:71 msgid "Manage various other options." @@ -2063,54 +2356,52 @@ msgstr "Manejo de varias opciones adicionales." #: actions/othersettings.php:108 msgid " (free service)" -msgstr "" +msgstr "  (servicio gratuito)" #: actions/othersettings.php:116 msgid "Shorten URLs with" -msgstr "" +msgstr "Acortar las URL con" #: actions/othersettings.php:117 msgid "Automatic shortening service to use." msgstr "Servicio de acorte automático a usar." #: actions/othersettings.php:122 -#, fuzzy msgid "View profile designs" -msgstr "Configuración del perfil" +msgstr "Ver diseños de perfil" #: actions/othersettings.php:123 msgid "Show or hide profile designs." -msgstr "" +msgstr "Ocultar o mostrar diseños de perfil." #: 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)." +msgstr "El servicio de acortamiento de URL es muy largo (máx. 50 caracteres)." #: actions/otp.php:69 -#, fuzzy msgid "No user ID specified." -msgstr "Grupo no especificado." +msgstr "No se ha especificado ID de usuario." #: actions/otp.php:83 -#, fuzzy msgid "No login token specified." -msgstr "No se especificó perfil." +msgstr "No se ha especificado un token de acceso." #: actions/otp.php:90 -#, fuzzy msgid "No login token requested." -msgstr "Ningún perfil de Id en solicitud." +msgstr "Token de acceso solicitado." #: actions/otp.php:95 -#, fuzzy msgid "Invalid login token specified." -msgstr "El contenido del aviso es inválido" +msgstr "Token de acceso inválido especificado." #: actions/otp.php:104 -#, fuzzy msgid "Login token expired." -msgstr "Ingresar a sitio" +msgstr "Token de acceso caducado." + +#: actions/outbox.php:58 +#, php-format +msgid "Outbox for %1$s - page %2$d" +msgstr "Bandeja de salida de %1$s - página %2$d" #: actions/outbox.php:61 #, php-format @@ -2127,14 +2418,12 @@ msgid "Change password" msgstr "Cambiar contraseña" #: actions/passwordsettings.php:69 -#, fuzzy msgid "Change your password." -msgstr "Cambia tu contraseña." +msgstr "Cambia tu contraseña" #: actions/passwordsettings.php:96 actions/recoverpassword.php:231 -#, fuzzy msgid "Password change" -msgstr "Cambio de contraseña " +msgstr "Cambio de contraseña" #: actions/passwordsettings.php:104 msgid "Old password" @@ -2185,7 +2474,7 @@ msgstr "No se puede guardar la nueva contraseña." msgid "Password saved." msgstr "Se guardó Contraseña." -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:326 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:331 msgid "Paths" msgstr "" @@ -2193,142 +2482,150 @@ msgstr "" msgid "Path and server settings for this StatusNet site." msgstr "" -#: actions/pathsadminpanel.php:140 -#, fuzzy, php-format +#: actions/pathsadminpanel.php:157 +#, php-format msgid "Theme directory not readable: %s" -msgstr "Esta página no está disponible en un " +msgstr "Directorio de temas ilegible: %s" -#: actions/pathsadminpanel.php:146 +#: actions/pathsadminpanel.php:163 #, php-format msgid "Avatar directory not writable: %s" msgstr "" -#: actions/pathsadminpanel.php:152 +#: actions/pathsadminpanel.php:169 #, php-format msgid "Background directory not writable: %s" -msgstr "" +msgstr "Directorio de fondo ilegible: %s" -#: actions/pathsadminpanel.php:160 +#: actions/pathsadminpanel.php:177 #, php-format msgid "Locales directory not readable: %s" msgstr "" -#: actions/pathsadminpanel.php:166 +#: actions/pathsadminpanel.php:183 msgid "Invalid SSL server. The maximum length is 255 characters." +msgstr "Servidor SSL no válido. La longitud máxima es de 255 caracteres." + +#: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58 +#: lib/adminpanelaction.php:311 +msgid "Site" +msgstr "Sitio" + +#: actions/pathsadminpanel.php:238 +msgid "Server" +msgstr "Servidor" + +#: actions/pathsadminpanel.php:238 +msgid "Site's server hostname." msgstr "" -#: actions/pathsadminpanel.php:217 actions/siteadminpanel.php:58 -#: lib/adminpanelaction.php:311 -#, fuzzy -msgid "Site" -msgstr "Invitar" - -#: actions/pathsadminpanel.php:221 +#: actions/pathsadminpanel.php:242 msgid "Path" msgstr "" -#: actions/pathsadminpanel.php:221 +#: actions/pathsadminpanel.php:242 #, fuzzy msgid "Site path" msgstr "Aviso de sitio" -#: actions/pathsadminpanel.php:225 +#: actions/pathsadminpanel.php:246 msgid "Path to locales" msgstr "" -#: actions/pathsadminpanel.php:225 +#: actions/pathsadminpanel.php:246 msgid "Directory path to locales" msgstr "" -#: actions/pathsadminpanel.php:232 -msgid "Theme" -msgstr "" - -#: actions/pathsadminpanel.php:237 -msgid "Theme server" -msgstr "" - -#: actions/pathsadminpanel.php:241 -msgid "Theme path" -msgstr "" - -#: actions/pathsadminpanel.php:245 -msgid "Theme directory" +#: actions/pathsadminpanel.php:250 +msgid "Fancy URLs" msgstr "" #: actions/pathsadminpanel.php:252 -#, fuzzy +msgid "Use fancy (more readable and memorable) URLs?" +msgstr "" + +#: actions/pathsadminpanel.php:259 +msgid "Theme" +msgstr "Tema" + +#: actions/pathsadminpanel.php:264 +msgid "Theme server" +msgstr "Servidor de los temas" + +#: actions/pathsadminpanel.php:268 +msgid "Theme path" +msgstr "" + +#: actions/pathsadminpanel.php:272 +msgid "Theme directory" +msgstr "Directorio de temas" + +#: actions/pathsadminpanel.php:279 msgid "Avatars" -msgstr "Avatar" +msgstr "Avatares" -#: actions/pathsadminpanel.php:257 -#, fuzzy +#: actions/pathsadminpanel.php:284 msgid "Avatar server" -msgstr "Configuración de Avatar" +msgstr "Servidor del avatar" -#: actions/pathsadminpanel.php:261 +#: actions/pathsadminpanel.php:288 #, fuzzy msgid "Avatar path" msgstr "Avatar actualizado" -#: actions/pathsadminpanel.php:265 -#, fuzzy +#: actions/pathsadminpanel.php:292 msgid "Avatar directory" -msgstr "Avatar actualizado" +msgstr "Directorio del avatar" -#: actions/pathsadminpanel.php:274 +#: actions/pathsadminpanel.php:301 msgid "Backgrounds" -msgstr "" +msgstr "Fondos" -#: actions/pathsadminpanel.php:278 +#: actions/pathsadminpanel.php:305 msgid "Background server" -msgstr "" +msgstr "Servidor de fondo" -#: actions/pathsadminpanel.php:282 +#: actions/pathsadminpanel.php:309 msgid "Background path" msgstr "" -#: actions/pathsadminpanel.php:286 +#: actions/pathsadminpanel.php:313 msgid "Background directory" -msgstr "" +msgstr "Directorio del fondo" -#: actions/pathsadminpanel.php:293 -#, fuzzy +#: actions/pathsadminpanel.php:320 msgid "SSL" -msgstr "SMS" +msgstr "SSL" -#: actions/pathsadminpanel.php:296 actions/siteadminpanel.php:346 -#, fuzzy +#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 msgid "Never" -msgstr "Recuperar" +msgstr "Nunca" -#: actions/pathsadminpanel.php:297 -#, fuzzy +#: actions/pathsadminpanel.php:324 msgid "Sometimes" -msgstr "Avisos" - -#: actions/pathsadminpanel.php:298 -msgid "Always" -msgstr "" - -#: actions/pathsadminpanel.php:302 -msgid "Use SSL" -msgstr "" - -#: actions/pathsadminpanel.php:303 -msgid "When to use SSL" -msgstr "" - -#: actions/pathsadminpanel.php:308 -#, fuzzy -msgid "SSL server" -msgstr "Recuperar" - -#: actions/pathsadminpanel.php:309 -msgid "Server to direct SSL requests to" -msgstr "" +msgstr "A veces" #: actions/pathsadminpanel.php:325 +msgid "Always" +msgstr "Siempre" + +#: actions/pathsadminpanel.php:329 +msgid "Use SSL" +msgstr "Usar SSL" + +#: actions/pathsadminpanel.php:330 +msgid "When to use SSL" +msgstr "Cuándo utilizar SSL" + +#: actions/pathsadminpanel.php:335 +msgid "SSL server" +msgstr "Servidor SSL" + +#: actions/pathsadminpanel.php:336 +msgid "Server to direct SSL requests to" +msgstr "Servidor hacia el cual dirigir las solicitudes SSL" + +#: actions/pathsadminpanel.php:352 #, fuzzy msgid "Save paths" msgstr "Aviso de sitio" @@ -2347,9 +2644,9 @@ msgid "People search" msgstr "Buscador de gente" #: actions/peopletag.php:70 -#, fuzzy, php-format +#, php-format msgid "Not a valid people tag: %s" -msgstr "No es un tag de personas válido: %s" +msgstr "No es una etiqueta válida para personas: %s" #: actions/peopletag.php:144 #, fuzzy, php-format @@ -2377,9 +2674,8 @@ msgstr "" "sepa más sobre ti." #: actions/profilesettings.php:99 -#, fuzzy msgid "Profile information" -msgstr "Información de perfil " +msgstr "Información del perfil" #: actions/profilesettings.php:108 lib/groupeditform.php:154 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" @@ -2393,7 +2689,7 @@ msgid "Full name" msgstr "Nombre completo" #: actions/profilesettings.php:115 actions/register.php:453 -#: lib/groupeditform.php:161 +#: lib/applicationeditform.php:228 lib/groupeditform.php:161 msgid "Homepage" msgstr "Página de inicio" @@ -2402,14 +2698,13 @@ 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:461 -#, fuzzy, php-format +#, php-format msgid "Describe yourself and your interests in %d chars" -msgstr "Cuéntanos algo sobre ti y tus intereses en 140 caracteres" +msgstr "Descríbete y cuéntanos tus intereses en %d caracteres" #: actions/profilesettings.php:125 actions/register.php:464 -#, fuzzy msgid "Describe yourself and your interests" -msgstr "Descríbete y cuenta de tus " +msgstr "Descríbete y cuéntanos acerca de tus intereses" #: actions/profilesettings.php:127 actions/register.php:466 msgid "Bio" @@ -2417,7 +2712,7 @@ msgstr "Biografía" #: actions/profilesettings.php:132 actions/register.php:471 #: actions/showgroup.php:256 actions/tagother.php:112 -#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:164 msgid "Location" msgstr "Ubicación" @@ -2428,7 +2723,7 @@ msgstr "Dónde estás, por ejemplo \"Ciudad, Estado (o Región), País\"" #: actions/profilesettings.php:138 msgid "Share my current location when posting notices" -msgstr "" +msgstr "Compartir mi ubicación actual al publicar los mensajes" #: actions/profilesettings.php:145 actions/tagother.php:149 #: actions/tagother.php:209 lib/subscriptionlist.php:106 @@ -2441,7 +2736,7 @@ msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "Tags para ti (letras, números, -, ., y _), coma - o espacio - separado" -#: actions/profilesettings.php:151 actions/siteadminpanel.php:294 +#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 msgid "Language" msgstr "Idioma" @@ -2465,11 +2760,11 @@ msgstr "" "para no-humanos)" #: actions/profilesettings.php:228 actions/register.php:223 -#, fuzzy, php-format +#, php-format msgid "Bio is too long (max %d chars)." -msgstr "La biografía es demasiado larga (máx. 140 caracteres)." +msgstr "La biografía es muy larga (máx. %d caracteres)." -#: actions/profilesettings.php:235 actions/siteadminpanel.php:164 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 msgid "Timezone not selected." msgstr "Zona horaria no seleccionada" @@ -2478,83 +2773,83 @@ msgid "Language is too long (max 50 chars)." msgstr "Idioma es muy largo ( max 50 car.)" #: actions/profilesettings.php:253 actions/tagother.php:178 -#, fuzzy, php-format +#, php-format msgid "Invalid tag: \"%s\"" -msgstr "Tag no válido: '%s' " +msgstr "Etiqueta inválida: \"% s\"" -#: actions/profilesettings.php:302 +#: actions/profilesettings.php:306 msgid "Couldn't update user for autosubscribe." msgstr "No se pudo actualizar el usuario para autosuscribirse." -#: actions/profilesettings.php:359 -#, fuzzy +#: actions/profilesettings.php:363 msgid "Couldn't save location prefs." -msgstr "No se pudo guardar tags." +msgstr "No se han podido guardar las preferencias de ubicación." -#: actions/profilesettings.php:371 +#: actions/profilesettings.php:375 msgid "Couldn't save profile." msgstr "No se pudo guardar el perfil." -#: actions/profilesettings.php:379 -#, fuzzy +#: actions/profilesettings.php:383 msgid "Couldn't save tags." -msgstr "No se pudo guardar tags." +msgstr "No se pudo guardar las etiquetas." -#: actions/profilesettings.php:387 lib/adminpanelaction.php:137 +#: actions/profilesettings.php:391 lib/adminpanelaction.php:137 msgid "Settings saved." msgstr "Se guardó configuración." #: actions/public.php:83 #, php-format msgid "Beyond the page limit (%s)" -msgstr "" +msgstr "Más allá del límite de páginas (%s)" #: actions/public.php:92 msgid "Could not retrieve public stream." msgstr "No se pudo acceder a corriente pública." #: actions/public.php:129 -#, fuzzy, php-format +#, php-format msgid "Public timeline, page %d" -msgstr "Línea de tiempo pública, página %d" +msgstr "Línea temporal pública, página %d" #: actions/public.php:131 lib/publicgroupnav.php:79 msgid "Public timeline" msgstr "Línea temporal pública" -#: actions/public.php:151 +#: actions/public.php:159 #, fuzzy msgid "Public Stream Feed (RSS 1.0)" msgstr "Feed del flujo público" -#: actions/public.php:155 +#: actions/public.php:163 #, fuzzy msgid "Public Stream Feed (RSS 2.0)" msgstr "Feed del flujo público" -#: actions/public.php:159 +#: actions/public.php:167 #, fuzzy msgid "Public Stream Feed (Atom)" msgstr "Feed del flujo público" -#: actions/public.php:179 +#: actions/public.php:187 #, php-format msgid "" "This is the public timeline for %%site.name%% but no one has posted anything " "yet." msgstr "" +"Esta es la línea temporal pública de %%site.name%%, pero aún no se ha " +"publicado nada." -#: actions/public.php:182 +#: actions/public.php:190 msgid "Be the first to post!" -msgstr "" +msgstr "¡Sé la primera persona en publicar algo!" -#: actions/public.php:186 +#: actions/public.php:194 #, php-format msgid "" "Why not [register an account](%%action.register%%) and be the first to post!" msgstr "" -#: actions/public.php:233 +#: actions/public.php:241 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2563,7 +2858,7 @@ msgid "" "friends, family, and colleagues! ([Read more](%%doc.help%%))" msgstr "" -#: actions/public.php:238 +#: actions/public.php:246 #, fuzzy, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2574,9 +2869,8 @@ msgstr "" "wiki/Micro-blogging) " #: actions/publictagcloud.php:57 -#, fuzzy msgid "Public tag cloud" -msgstr "Nube de tags pública" +msgstr "Nube de etiquetas pública" #: actions/publictagcloud.php:63 #, php-format @@ -2590,7 +2884,7 @@ msgstr "" #: actions/publictagcloud.php:72 msgid "Be the first to post one!" -msgstr "" +msgstr "¡Sé la primera persona en publicar!" #: actions/publictagcloud.php:75 #, php-format @@ -2598,8 +2892,10 @@ msgid "" "Why not [register an account](%%action.register%%) and be the first to post " "one!" msgstr "" +"¿Por qué no [registras una cuenta](%%action.register%%) y te conviertes en " +"la primera persona en publicar uno?" -#: actions/publictagcloud.php:131 +#: actions/publictagcloud.php:134 msgid "Tag cloud" msgstr "Nube de tags" @@ -2642,14 +2938,16 @@ msgstr "" #: actions/recoverpassword.php:158 msgid "You have been identified. Enter a new password below. " msgstr "" +"Se te ha identificado. Por favor, escribe una nueva contraseña a " +"continuación. " #: actions/recoverpassword.php:188 msgid "Password recovery" -msgstr "" +msgstr "Recuperación de contraseña" #: actions/recoverpassword.php:191 msgid "Nickname or email address" -msgstr "" +msgstr "Nombre de usuario o dirección de correo electrónico" #: actions/recoverpassword.php:193 msgid "Your nickname on this server, or your registered email address." @@ -2734,15 +3032,14 @@ msgid "Sorry, only invited people can register." msgstr "Disculpa, sólo personas invitadas pueden registrarse." #: actions/register.php:92 -#, fuzzy msgid "Sorry, invalid invitation code." -msgstr "Error con el código de confirmación." +msgstr "El código de invitación no es válido." #: actions/register.php:112 msgid "Registration successful" msgstr "Registro exitoso." -#: actions/register.php:114 actions/register.php:503 lib/action.php:457 +#: actions/register.php:114 actions/register.php:503 lib/action.php:463 #: lib/logingroupnav.php:85 msgid "Register" msgstr "Registrarse" @@ -2784,7 +3081,7 @@ msgid "Same as password above. Required." msgstr "Igual a la contraseña de arriba. Requerida" #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:270 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 msgid "Email" msgstr "Correo electrónico" @@ -2806,16 +3103,15 @@ msgid "Creative Commons Attribution 3.0" msgstr "" #: actions/register.php:497 -#, 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." +"con excepción de esta información privada: contraseña, dirección de correo " +"electrónico, dirección de mensajería instantánea y número de teléfono." #: actions/register.php:538 -#, fuzzy, php-format +#, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " "want to...\n" @@ -2832,20 +3128,20 @@ msgid "" "\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" +"¡Felicitaciones, %1$s! Te damos la bienvenida a %%%%site.name%%%%. Desde " +"este momento, puede que quieras...\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" +"* Ir a [tu perfil](%2$s) y publicar tu primer mensaje.\n" +"* Añadir una [dirección Jabber/GTalk](%%%%action.imsettings%%%%) para poder " +"enviar mensajes a través de mensajería instantanea.\n" +"* [Buscar personas](%%%%action.peoplesearch%%%%) que conozcas o que " +"compartan tus intereses. \n" +"* Actualizar tu [configuración de perfil](%%%%action.profilesettings%%%%) " +"para contarle a otros más sobre tí. \n" +"* Leer los [documentos en línea](%%%%doc.help%%%%) para encontrar " +"características que te hayas podido perder. \n" "\n" -"Gracias por suscribirte y esperamos que disfrutes el uso de este servicio." +"¡Gracias por apuntarte! Esperamos que disfrutes usando este servicio." #: actions/register.php:562 msgid "" @@ -2872,17 +3168,16 @@ msgid "Remote subscribe" msgstr "Subscripción remota" #: actions/remotesubscribe.php:124 -#, fuzzy msgid "Subscribe to a remote user" -msgstr "Suscribirse a este usuario" +msgstr "Suscribirse a un usuario remoto" #: actions/remotesubscribe.php:129 msgid "User nickname" -msgstr "Apodo del usuario" +msgstr "Usuario" #: actions/remotesubscribe.php:130 msgid "Nickname of the user you want to follow" -msgstr "Apodo del usuario que quieres seguir" +msgstr "Usuario a quien quieres seguir" #: actions/remotesubscribe.php:133 msgid "Profile URL" @@ -2893,7 +3188,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "El URL de tu perfil en otro servicio de microblogueo compatible" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:365 +#: lib/userprofile.php:368 msgid "Subscribe" msgstr "Suscribirse" @@ -2902,49 +3197,42 @@ msgid "Invalid profile URL (bad format)" msgstr "El URL del perfil es inválido (formato incorrecto)" #: actions/remotesubscribe.php:168 -#, fuzzy msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)." -msgstr "URL de perfil no válido (ningún documento YADIS)." +msgstr "" +"No es un perfil válido URL (no se ha definido un documento YADIS o un XRDS " +"inválido)." #: actions/remotesubscribe.php:176 -#, fuzzy msgid "That’s a local profile! Login to subscribe." -msgstr "¡Es un perfil local! Ingresa para suscribirte" +msgstr "¡Este es un perfil local! Ingresa para suscribirte" #: actions/remotesubscribe.php:183 -#, fuzzy msgid "Couldn’t get a request token." -msgstr "No se pudo obtener la señal de petición." +msgstr "No se pudo obtener un token de solicitud" #: actions/repeat.php:57 -#, fuzzy msgid "Only logged-in users can repeat notices." -msgstr "Sólo el usuario puede leer sus bandejas de correo." +msgstr "Sólo los usuarios que hayan accedido pueden repetir mensajes." #: actions/repeat.php:64 actions/repeat.php:71 -#, fuzzy msgid "No notice specified." -msgstr "No se especificó perfil." +msgstr "No se ha especificado un mensaje." #: actions/repeat.php:76 -#, fuzzy msgid "You can't repeat your own notice." -msgstr "No puedes registrarte si no estás de acuerdo con la licencia." +msgstr "No puedes repetir tus propios mensajes." #: actions/repeat.php:90 -#, fuzzy msgid "You already repeated that notice." -msgstr "Ya has bloqueado este usuario." +msgstr "Ya has repetido este mensaje." -#: actions/repeat.php:114 lib/noticelist.php:629 -#, fuzzy +#: actions/repeat.php:114 lib/noticelist.php:656 msgid "Repeated" -msgstr "Crear" +msgstr "Repetido" #: actions/repeat.php:119 -#, fuzzy msgid "Repeated!" -msgstr "Crear" +msgstr "¡Repetido!" #: actions/replies.php:125 actions/repliesrss.php:68 #: lib/personalgroupnav.php:105 @@ -2952,6 +3240,11 @@ msgstr "Crear" msgid "Replies to %s" msgstr "Respuestas a %s" +#: actions/replies.php:127 +#, php-format +msgid "Replies to %1$s, page %2$d" +msgstr "Respuestas a %1$s, página %2$d" + #: actions/replies.php:144 #, fuzzy, php-format msgid "Replies feed for %s (RSS 1.0)" @@ -2993,6 +3286,10 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "Respuestas a %1$s en %2$s!" +#: actions/rsd.php:146 actions/version.php:157 +msgid "StatusNet" +msgstr "StatusNet" + #: actions/sandbox.php:65 actions/unsandbox.php:65 #, fuzzy msgid "You cannot sandbox users on this site." @@ -3003,6 +3300,121 @@ msgstr "No puedes enviar mensaje a este usuario." msgid "User is already sandboxed." msgstr "El usuario te ha bloqueado." +#: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:336 +msgid "Sessions" +msgstr "Sesiones" + +#: actions/sessionsadminpanel.php:65 +msgid "Session settings for this StatusNet site." +msgstr "Configuración de sesión para este sitio StatusNet." + +#: actions/sessionsadminpanel.php:175 +msgid "Handle sessions" +msgstr "Gestionar sesiones" + +#: actions/sessionsadminpanel.php:177 +msgid "Whether to handle sessions ourselves." +msgstr "" + +#: actions/sessionsadminpanel.php:181 +msgid "Session debugging" +msgstr "" + +#: actions/sessionsadminpanel.php:183 +msgid "Turn on debugging output for sessions." +msgstr "" + +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/useradminpanel.php:293 +msgid "Save site settings" +msgstr "Guardar la configuración del sitio" + +#: actions/showapplication.php:82 +#, fuzzy +msgid "You must be logged in to view an application." +msgstr "Debes estar conectado para dejar un grupo." + +#: actions/showapplication.php:157 +msgid "Application profile" +msgstr "Perfil de la aplicación" + +#: actions/showapplication.php:159 lib/applicationeditform.php:180 +msgid "Icon" +msgstr "Icono" + +#: actions/showapplication.php:169 actions/version.php:195 +#: lib/applicationeditform.php:195 +msgid "Name" +msgstr "Nombre" + +#: actions/showapplication.php:178 lib/applicationeditform.php:222 +msgid "Organization" +msgstr "Organización" + +#: actions/showapplication.php:187 actions/version.php:198 +#: lib/applicationeditform.php:209 lib/groupeditform.php:172 +msgid "Description" +msgstr "Descripción" + +#: actions/showapplication.php:192 actions/showgroup.php:429 +#: lib/profileaction.php:174 +msgid "Statistics" +msgstr "Estadísticas" + +#: actions/showapplication.php:203 +#, php-format +msgid "Created by %1$s - %2$s access by default - %3$d users" +msgstr "" + +#: actions/showapplication.php:213 +msgid "Application actions" +msgstr "Acciones de la aplicación" + +#: actions/showapplication.php:236 +msgid "Reset key & secret" +msgstr "" + +#: actions/showapplication.php:261 +msgid "Application info" +msgstr "Información de la aplicación" + +#: actions/showapplication.php:263 +msgid "Consumer key" +msgstr "" + +#: actions/showapplication.php:268 +msgid "Consumer secret" +msgstr "" + +#: actions/showapplication.php:273 +msgid "Request token URL" +msgstr "URL del token de solicitud" + +#: actions/showapplication.php:278 +msgid "Access token URL" +msgstr "URL del token de acceso" + +#: actions/showapplication.php:283 +msgid "Authorize URL" +msgstr "Autorizar URL" + +#: actions/showapplication.php:288 +msgid "" +"Note: We support HMAC-SHA1 signatures. We do not support the plaintext " +"signature method." +msgstr "" + +#: actions/showapplication.php:309 +#, fuzzy +msgid "Are you sure you want to reset your consumer key and secret?" +msgstr "¿Estás seguro de que quieres eliminar este aviso?" + +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%1$s's favorite notices, page %2$d" +msgstr "Avisos favoritos de %s" + #: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "No se pudo recibir avisos favoritos." @@ -3052,25 +3464,28 @@ msgstr "" msgid "%s group" msgstr "Grupo %s" +#: actions/showgroup.php:84 +#, fuzzy, php-format +msgid "%1$s group, page %2$d" +msgstr "Miembros del grupo %s, página %d" + #: actions/showgroup.php:218 -#, fuzzy msgid "Group profile" -msgstr "Perfil de grupo" +msgstr "Perfil del grupo" #: actions/showgroup.php:263 actions/tagother.php:118 -#: actions/userauthorization.php:167 lib/userprofile.php:177 +#: actions/userauthorization.php:175 lib/userprofile.php:177 msgid "URL" msgstr "URL" #: actions/showgroup.php:274 actions/tagother.php:128 -#: actions/userauthorization.php:179 lib/userprofile.php:194 -#, fuzzy +#: actions/userauthorization.php:187 lib/userprofile.php:194 msgid "Note" msgstr "Nota" #: actions/showgroup.php:284 lib/groupeditform.php:184 msgid "Aliases" -msgstr "" +msgstr "Alias" #: actions/showgroup.php:293 msgid "Group actions" @@ -3111,14 +3526,9 @@ msgstr "(Ninguno)" msgid "All members" msgstr "Todos los miembros" -#: actions/showgroup.php:429 lib/profileaction.php:174 -msgid "Statistics" -msgstr "Estadísticas" - #: actions/showgroup.php:432 -#, fuzzy msgid "Created" -msgstr "Crear" +msgstr "Creado" #: actions/showgroup.php:448 #, php-format @@ -3142,9 +3552,8 @@ msgstr "" "blogging](http://en.wikipedia.org/wiki/Micro-blogging) " #: actions/showgroup.php:482 -#, fuzzy msgid "Admins" -msgstr "Admin" +msgstr "Administradores" #: actions/showmessage.php:81 msgid "No such message." @@ -3169,9 +3578,14 @@ msgid "Notice deleted." msgstr "Aviso borrado" #: actions/showstream.php:73 -#, fuzzy, php-format +#, php-format msgid " tagged %s" -msgstr "Avisos marcados con %s" +msgstr "%s etiquetados" + +#: actions/showstream.php:79 +#, php-format +msgid "%1$s, page %2$d" +msgstr "%1$s, página %2$d" #: actions/showstream.php:122 #, fuzzy, php-format @@ -3198,25 +3612,25 @@ msgstr "Feed de avisos de %s" msgid "FOAF for %s" msgstr "Bandeja de salida para %s" -#: actions/showstream.php:191 +#: actions/showstream.php:200 #, php-format msgid "This is the timeline for %1$s but %2$s hasn't posted anything yet." msgstr "" -#: actions/showstream.php:196 +#: actions/showstream.php:205 msgid "" "Seen anything interesting recently? You haven't posted any notices yet, now " "would be a good time to start :)" msgstr "" -#: actions/showstream.php:198 +#: actions/showstream.php:207 #, php-format msgid "" "You can try to nudge %1$s or [post something to his or her attention](%%%%" "action.newnotice%%%%?status_textarea=%2$s)." msgstr "" -#: actions/showstream.php:234 +#: actions/showstream.php:243 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3225,20 +3639,21 @@ msgid "" "follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showstream.php:239 -#, fuzzy, php-format +#: actions/showstream.php:248 +#, 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** tiene una cuenta en %%%%site.name%%%%, un servicio [micro-blogging]" -"(http://en.wikipedia.org/wiki/Micro-blogging) " +"**% s ** tiene una cuenta en %%%%site.name%%%%, un servicio de " +"[microblogueo] (http://en.wikipedia.org/wiki/Micro-blogging), basado en la " +"herramienta de software libre [StatusNet] (http://status.net/). " -#: actions/showstream.php:313 -#, fuzzy, php-format +#: actions/showstream.php:305 +#, php-format msgid "Repeat of %s" -msgstr "Respuestas a %s" +msgstr "Repetición de %s" #: actions/silence.php:65 actions/unsilence.php:65 #, fuzzy @@ -3252,213 +3667,151 @@ msgstr "El usuario te ha bloqueado." #: actions/siteadminpanel.php:69 msgid "Basic settings for this StatusNet site." -msgstr "" +msgstr "Configuración básica de este sitio StatusNet." -#: actions/siteadminpanel.php:146 +#: actions/siteadminpanel.php:132 msgid "Site name must have non-zero length." msgstr "" -#: actions/siteadminpanel.php:154 +#: actions/siteadminpanel.php:140 #, fuzzy msgid "You must have a valid contact email address." msgstr "No es una dirección de correo electrónico válida" -#: actions/siteadminpanel.php:172 +#: actions/siteadminpanel.php:158 #, php-format msgid "Unknown language \"%s\"." -msgstr "" +msgstr "Idioma desconocido \"%s\"." -#: actions/siteadminpanel.php:179 +#: actions/siteadminpanel.php:165 msgid "Invalid snapshot report URL." msgstr "" -#: actions/siteadminpanel.php:185 +#: actions/siteadminpanel.php:171 msgid "Invalid snapshot run value." msgstr "" -#: actions/siteadminpanel.php:191 +#: actions/siteadminpanel.php:177 msgid "Snapshot frequency must be a number." -msgstr "" +msgstr "La frecuencia de captura debe ser un número." -#: actions/siteadminpanel.php:197 +#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "" -#: actions/siteadminpanel.php:203 +#: actions/siteadminpanel.php:189 msgid "Dupe limit must 1 or more seconds." msgstr "" -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:239 msgid "General" -msgstr "" +msgstr "General" -#: actions/siteadminpanel.php:256 -#, fuzzy +#: actions/siteadminpanel.php:242 msgid "Site name" -msgstr "Aviso de sitio" +msgstr "Nombre del sitio" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:243 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "" -#: actions/siteadminpanel.php:261 +#: actions/siteadminpanel.php:247 msgid "Brought by" msgstr "" -#: actions/siteadminpanel.php:262 +#: actions/siteadminpanel.php:248 msgid "Text used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:266 +#: actions/siteadminpanel.php:252 msgid "Brought by URL" msgstr "" -#: actions/siteadminpanel.php:267 +#: actions/siteadminpanel.php:253 msgid "URL used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:271 +#: actions/siteadminpanel.php:257 #, fuzzy msgid "Contact email address for your site" msgstr "Nueva dirección de correo para postear a %s" -#: actions/siteadminpanel.php:277 +#: actions/siteadminpanel.php:263 #, fuzzy msgid "Local" msgstr "Vistas locales" -#: actions/siteadminpanel.php:288 +#: actions/siteadminpanel.php:274 msgid "Default timezone" -msgstr "" +msgstr "Zona horaria predeterminada" + +#: actions/siteadminpanel.php:275 +msgid "Default timezone for the site; usually UTC." +msgstr "Zona horaria predeterminada del sitio; generalmente UTC." + +#: actions/siteadminpanel.php:281 +msgid "Default site language" +msgstr "Idioma predeterminado del sitio" #: actions/siteadminpanel.php:289 -msgid "Default timezone for the site; usually UTC." -msgstr "" - -#: actions/siteadminpanel.php:295 -#, fuzzy -msgid "Default site language" -msgstr "Lenguaje de preferencia" - -#: actions/siteadminpanel.php:303 -#, fuzzy -msgid "URLs" -msgstr "URL" - -#: actions/siteadminpanel.php:306 -#, fuzzy -msgid "Server" -msgstr "Recuperar" - -#: actions/siteadminpanel.php:306 -msgid "Site's server hostname." -msgstr "" - -#: actions/siteadminpanel.php:310 -msgid "Fancy URLs" -msgstr "" - -#: actions/siteadminpanel.php:312 -msgid "Use fancy (more readable and memorable) URLs?" -msgstr "" - -#: actions/siteadminpanel.php:318 -#, fuzzy -msgid "Access" -msgstr "Aceptar" - -#: actions/siteadminpanel.php:321 -#, fuzzy -msgid "Private" -msgstr "Privacidad" - -#: actions/siteadminpanel.php:323 -msgid "Prohibit anonymous users (not logged in) from viewing site?" -msgstr "" - -#: actions/siteadminpanel.php:327 -#, fuzzy -msgid "Invite only" -msgstr "Invitar" - -#: actions/siteadminpanel.php:329 -msgid "Make registration invitation only." -msgstr "" - -#: actions/siteadminpanel.php:333 -#, fuzzy -msgid "Closed" -msgstr "Bloqueado" - -#: actions/siteadminpanel.php:335 -msgid "Disable new registrations." -msgstr "" - -#: actions/siteadminpanel.php:341 msgid "Snapshots" -msgstr "" +msgstr "Capturas" -#: actions/siteadminpanel.php:344 +#: actions/siteadminpanel.php:292 msgid "Randomly during Web hit" msgstr "" -#: actions/siteadminpanel.php:345 +#: actions/siteadminpanel.php:293 msgid "In a scheduled job" -msgstr "" +msgstr "En un trabajo programado" -#: actions/siteadminpanel.php:347 +#: actions/siteadminpanel.php:295 msgid "Data snapshots" -msgstr "" +msgstr "Capturas de datos" -#: actions/siteadminpanel.php:348 +#: actions/siteadminpanel.php:296 msgid "When to send statistical data to status.net servers" msgstr "" -#: actions/siteadminpanel.php:353 +#: actions/siteadminpanel.php:301 msgid "Frequency" -msgstr "" +msgstr "Frecuencia" -#: actions/siteadminpanel.php:354 +#: actions/siteadminpanel.php:302 msgid "Snapshots will be sent once every N web hits" msgstr "" -#: actions/siteadminpanel.php:359 +#: actions/siteadminpanel.php:307 msgid "Report URL" msgstr "" -#: actions/siteadminpanel.php:360 +#: actions/siteadminpanel.php:308 msgid "Snapshots will be sent to this URL" -msgstr "" +msgstr "Las capturas se enviarán a este URL" -#: actions/siteadminpanel.php:367 +#: actions/siteadminpanel.php:315 msgid "Limits" -msgstr "" +msgstr "Límites" -#: actions/siteadminpanel.php:370 +#: actions/siteadminpanel.php:318 msgid "Text limit" -msgstr "" +msgstr "Límite de texto" -#: actions/siteadminpanel.php:370 +#: actions/siteadminpanel.php:318 msgid "Maximum number of characters for notices." -msgstr "" +msgstr "Cantidad máxima de caracteres para los mensajes." -#: actions/siteadminpanel.php:374 +#: actions/siteadminpanel.php:322 msgid "Dupe limit" msgstr "" -#: actions/siteadminpanel.php:374 +#: actions/siteadminpanel.php:322 msgid "How long users must wait (in seconds) to post the same thing again." -msgstr "" - -#: actions/siteadminpanel.php:388 actions/useradminpanel.php:313 -#, fuzzy -msgid "Save site settings" -msgstr "Configuración de Avatar" +msgstr "Cuántos segundos es necesario esperar para publicar lo mismo de nuevo." #: actions/smssettings.php:58 -#, fuzzy msgid "SMS settings" -msgstr "Preferencias SMS" +msgstr "Configuración de SMS" #: actions/smssettings.php:69 #, php-format @@ -3487,9 +3840,8 @@ msgid "Enter the code you received on your phone." msgstr "Ingrese el código recibido en su teléfono" #: actions/smssettings.php:138 -#, fuzzy msgid "SMS phone number" -msgstr "Número telefónico para sms" +msgstr "Número de teléfono de SMS" #: actions/smssettings.php:140 msgid "Phone number, no punctuation or spaces, with area code" @@ -3538,9 +3890,8 @@ msgid "That is not your phone number." msgstr "Ese no es tu número telefónico" #: actions/smssettings.php:465 -#, fuzzy msgid "Mobile carrier" -msgstr "Operador móvil" +msgstr "Operador de telefonía móvil" #: actions/smssettings.php:469 msgid "Select a carrier" @@ -3561,29 +3912,36 @@ msgid "No code entered" msgstr "No ingresó código" #: actions/subedit.php:70 -#, fuzzy msgid "You are not subscribed to that profile." -msgstr "No estás suscrito a ese perfil." +msgstr "No te has suscrito a ese perfil." -#: actions/subedit.php:83 -#, fuzzy +#: actions/subedit.php:83 classes/Subscription.php:89 +#: classes/Subscription.php:116 msgid "Could not save subscription." -msgstr "No se pudo guardar suscripción." +msgstr "No se ha podido guardar la suscripción." -#: actions/subscribe.php:55 -#, fuzzy -msgid "Not a local user." -msgstr "No es usuario local." +#: actions/subscribe.php:77 +msgid "This action only accepts POST requests." +msgstr "" -#: actions/subscribe.php:69 +#: actions/subscribe.php:107 #, fuzzy +msgid "No such profile." +msgstr "No existe tal archivo." + +#: actions/subscribe.php:117 +#, fuzzy +msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." +msgstr "No te has suscrito a ese perfil." + +#: actions/subscribe.php:145 msgid "Subscribed" msgstr "Suscrito" #: actions/subscribers.php:50 -#, fuzzy, php-format +#, php-format msgid "%s subscribers" -msgstr "Suscriptores %s" +msgstr "%s suscriptores" #: actions/subscribers.php:52 #, fuzzy, php-format @@ -3636,7 +3994,7 @@ msgstr "Estas son las personas que escuchas sus avisos." msgid "These are the people whose notices %s listens to." msgstr "Estas son las personas que %s escucha sus avisos." -#: actions/subscriptions.php:121 +#: actions/subscriptions.php:126 #, php-format msgid "" "You're not listening to anyone's notices right now, try subscribing to " @@ -3646,20 +4004,24 @@ msgid "" "automatically subscribe to people you already follow there." msgstr "" -#: actions/subscriptions.php:123 actions/subscriptions.php:127 -#, fuzzy, php-format +#: actions/subscriptions.php:128 actions/subscriptions.php:132 +#, php-format msgid "%s is not listening to anyone." -msgstr "%1$s ahora está escuchando " +msgstr "%s no está escuchando a nadie." -#: actions/subscriptions.php:194 -#, fuzzy +#: actions/subscriptions.php:199 msgid "Jabber" -msgstr "Jabber " +msgstr "Jabber" -#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:204 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "SMS" +#: actions/tag.php:68 +#, fuzzy, php-format +msgid "Notices tagged with %1$s, page %2$d" +msgstr "Usuarios auto marcados con %s - página %d" + #: actions/tag.php:86 #, fuzzy, php-format msgid "Notice feed for tag %s (RSS 1.0)" @@ -3686,11 +4048,11 @@ msgid "Tag %s" msgstr "%s tag" #: actions/tagother.php:77 lib/userprofile.php:75 -#, fuzzy msgid "User profile" msgstr "Perfil de usuario" -#: actions/tagother.php:81 lib/userprofile.php:102 +#: actions/tagother.php:81 actions/userauthorization.php:132 +#: lib/userprofile.php:102 msgid "Photo" msgstr "Foto" @@ -3713,9 +4075,8 @@ msgstr "" "suscritas a ti." #: actions/tagother.php:200 -#, fuzzy msgid "Could not save tags." -msgstr "No se pudo guardar tags." +msgstr "No se han podido guardar las etiquetas." #: actions/tagother.php:236 msgid "Use this form to add tags to your subscribers or subscriptions." @@ -3745,15 +4106,14 @@ msgid "User is not silenced." msgstr "El usuario no tiene un perfil." #: actions/unsubscribe.php:77 -#, fuzzy msgid "No profile id in request." -msgstr "Ningún perfil de Id en solicitud." +msgstr "No hay id de perfil solicitado." #: actions/unsubscribe.php:98 msgid "Unsubscribed" msgstr "Desuscrito" -#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#: actions/updateprofile.php:62 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -3766,91 +4126,66 @@ msgstr "Usuario" #: actions/useradminpanel.php:69 msgid "User settings for this StatusNet site." -msgstr "" +msgstr "Configuración de usuarios en este sitio StatusNet." -#: actions/useradminpanel.php:149 +#: actions/useradminpanel.php:148 msgid "Invalid bio limit. Must be numeric." -msgstr "" +msgstr "Límite para la bio inválido: Debe ser numérico." -#: actions/useradminpanel.php:155 +#: actions/useradminpanel.php:154 msgid "Invalid welcome text. Max length is 255 characters." -msgstr "" +msgstr "Texto de bienvenida inválido. La longitud máx. es de 255 caracteres." -#: actions/useradminpanel.php:165 +#: actions/useradminpanel.php:164 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." -msgstr "" +msgstr "Suscripción predeterminada inválida : '%1$s' no es un usuario" -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 +#: actions/useradminpanel.php:217 lib/accountsettingsaction.php:108 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Perfil" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:221 msgid "Bio Limit" -msgstr "" +msgstr "Límite de la bio" -#: actions/useradminpanel.php:223 +#: actions/useradminpanel.php:222 msgid "Maximum length of a profile bio in characters." -msgstr "" +msgstr "Longitud máxima de bio de perfil en caracteres." -#: actions/useradminpanel.php:231 +#: actions/useradminpanel.php:230 msgid "New users" msgstr "Nuevos usuarios" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:234 msgid "New user welcome" -msgstr "" +msgstr "Bienvenida a nuevos usuarios" -#: actions/useradminpanel.php:236 +#: actions/useradminpanel.php:235 msgid "Welcome text for new users (Max 255 chars)." -msgstr "" +msgstr "Texto de bienvenida para nuevos usuarios (máx. 255 caracteres)." + +#: actions/useradminpanel.php:240 +msgid "Default subscription" +msgstr "Suscripción predeterminada" #: actions/useradminpanel.php:241 -#, fuzzy -msgid "Default subscription" -msgstr "Todas las suscripciones" - -#: actions/useradminpanel.php:242 -#, fuzzy msgid "Automatically subscribe new users to this user." -msgstr "" -"Suscribirse automáticamente a quien quiera que se suscriba a mí (es mejor " -"para no-humanos)" +msgstr "Suscribir automáticamente nuevos usuarios a este usuario." -#: actions/useradminpanel.php:251 +#: actions/useradminpanel.php:250 msgid "Invitations" msgstr "Invitaciones" -#: actions/useradminpanel.php:256 -#, fuzzy +#: actions/useradminpanel.php:255 msgid "Invitations enabled" -msgstr "Invitacion(es) enviada(s)" +msgstr "Invitaciones habilitadas" -#: actions/useradminpanel.php:258 +#: actions/useradminpanel.php:257 msgid "Whether to allow users to invite new users." msgstr "" -#: actions/useradminpanel.php:265 -msgid "Sessions" -msgstr "Sesiones" - -#: actions/useradminpanel.php:270 -msgid "Handle sessions" -msgstr "" - -#: actions/useradminpanel.php:272 -msgid "Whether to handle sessions ourselves." -msgstr "" - -#: actions/useradminpanel.php:276 -msgid "Session debugging" -msgstr "" - -#: actions/useradminpanel.php:278 -msgid "Turn on debugging output for sessions." -msgstr "" - #: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Autorizar la suscripción" @@ -3865,37 +4200,36 @@ msgstr "" "avisos de este usuario. Si no pediste suscribirte a los avisos de alguien, " "haz clic en \"Cancelar\"." -#: actions/userauthorization.php:188 actions/version.php:165 +#: actions/userauthorization.php:196 actions/version.php:165 msgid "License" msgstr "Licencia" -#: actions/userauthorization.php:209 +#: actions/userauthorization.php:217 msgid "Accept" msgstr "Aceptar" -#: actions/userauthorization.php:210 lib/subscribeform.php:115 +#: actions/userauthorization.php:218 lib/subscribeform.php:115 #: lib/subscribeform.php:139 -#, fuzzy msgid "Subscribe to this user" msgstr "Suscribirse a este usuario" -#: actions/userauthorization.php:211 +#: actions/userauthorization.php:219 msgid "Reject" msgstr "Rechazar" -#: actions/userauthorization.php:212 +#: actions/userauthorization.php:220 msgid "Reject this subscription" msgstr "Rechazar esta suscripción" -#: actions/userauthorization.php:225 +#: actions/userauthorization.php:232 msgid "No authorization request!" msgstr "¡Ninguna petición de autorización!" -#: actions/userauthorization.php:247 +#: actions/userauthorization.php:254 msgid "Subscription authorized" msgstr "Suscripción autorizada" -#: actions/userauthorization.php:249 +#: actions/userauthorization.php:256 #, fuzzy msgid "" "The subscription has been authorized, but no callback URL was passed. Check " @@ -3906,11 +4240,11 @@ msgstr "" "Lee de nuevo las instrucciones para saber cómo autorizar la suscripción. Tu " "identificador de suscripción es:" -#: actions/userauthorization.php:259 +#: actions/userauthorization.php:266 msgid "Subscription rejected" msgstr "Suscripción rechazada" -#: actions/userauthorization.php:261 +#: actions/userauthorization.php:268 #, fuzzy msgid "" "The subscription has been rejected, but no callback URL was passed. Check " @@ -3921,45 +4255,44 @@ msgstr "" "de nuevo las instrucciones para saber cómo rechazar la suscripción " "completamente." -#: actions/userauthorization.php:296 +#: actions/userauthorization.php:303 #, php-format msgid "Listener URI ‘%s’ not found here." msgstr "" -#: actions/userauthorization.php:301 +#: actions/userauthorization.php:308 #, php-format msgid "Listenee URI ‘%s’ is too long." msgstr "" -#: actions/userauthorization.php:307 +#: actions/userauthorization.php:314 #, php-format msgid "Listenee URI ‘%s’ is a local user." msgstr "" -#: actions/userauthorization.php:322 +#: actions/userauthorization.php:329 #, php-format msgid "Profile URL ‘%s’ is for a local user." msgstr "" -#: actions/userauthorization.php:338 +#: actions/userauthorization.php:345 #, php-format msgid "Avatar URL ‘%s’ is not valid." msgstr "" -#: actions/userauthorization.php:343 +#: actions/userauthorization.php:350 #, fuzzy, php-format msgid "Can’t read avatar URL ‘%s’." msgstr "No se puede leer el URL del avatar '%s'" -#: actions/userauthorization.php:348 +#: actions/userauthorization.php:355 #, fuzzy, php-format msgid "Wrong image type for avatar URL ‘%s’." msgstr "Tipo de imagen incorrecto para '%s'" #: actions/userdesignsettings.php:76 lib/designsettings.php:65 -#, fuzzy msgid "Profile design" -msgstr "Configuración del perfil" +msgstr "Diseño del perfil" #: actions/userdesignsettings.php:87 lib/designsettings.php:76 msgid "" @@ -3971,10 +4304,14 @@ msgstr "" msgid "Enjoy your hotdog!" msgstr "" +#: actions/usergroups.php:64 +#, fuzzy, php-format +msgid "%1$s groups, page %2$d" +msgstr "Miembros del grupo %s, página %d" + #: actions/usergroups.php:130 -#, fuzzy msgid "Search for more groups" -msgstr "Buscar personas o texto" +msgstr "Buscar más grupos" #: actions/usergroups.php:153 #, fuzzy, php-format @@ -3997,15 +4334,12 @@ msgid "" "This site is powered by %1$s version %2$s, Copyright 2008-2010 StatusNet, " "Inc. and contributors." msgstr "" - -#: actions/version.php:157 -#, fuzzy -msgid "StatusNet" -msgstr "Status borrado." +"Este sitio ha sido desarrollado con %1$s, versión %2$s, Derechos Reservados " +"2008-2010 StatusNet, Inc. y sus colaboradores." #: actions/version.php:161 msgid "Contributors" -msgstr "" +msgstr "Colaboradores" #: actions/version.php:168 msgid "" @@ -4032,25 +4366,16 @@ msgstr "" #: actions/version.php:189 msgid "Plugins" -msgstr "" +msgstr "Complementos" -#: actions/version.php:195 -#, fuzzy -msgid "Name" -msgstr "Apodo" - -#: actions/version.php:196 lib/action.php:741 +#: actions/version.php:196 lib/action.php:747 #, fuzzy msgid "Version" msgstr "Sesiones" #: actions/version.php:197 msgid "Author(s)" -msgstr "" - -#: actions/version.php:198 lib/groupeditform.php:172 -msgid "Description" -msgstr "Descripción" +msgstr "Autor(es)" #: classes/File.php:144 #, php-format @@ -4075,9 +4400,8 @@ msgid "Group join failed." msgstr "Perfil de grupo" #: classes/Group_member.php:53 -#, fuzzy msgid "Not part of group." -msgstr "No se pudo actualizar el grupo." +msgstr "No es parte del grupo." #: classes/Group_member.php:60 #, fuzzy @@ -4090,9 +4414,8 @@ msgid "Could not create login token for %s" msgstr "No se pudo crear favorito." #: classes/Message.php:45 -#, fuzzy msgid "You are banned from sending direct messages." -msgstr "Error al enviar mensaje directo." +msgstr "Se te ha inhabilitado para enviar mensajes directos." #: classes/Message.php:61 msgid "Could not insert message." @@ -4102,29 +4425,27 @@ msgstr "No se pudo insertar mensaje." msgid "Could not update message with new URI." msgstr "No se pudo actualizar mensaje con nuevo URI." -#: classes/Notice.php:171 +#: classes/Notice.php:157 #, php-format msgid "DB error inserting hashtag: %s" msgstr "Error de la BD al insertar la etiqueta clave: %s" -#: classes/Notice.php:225 -#, fuzzy +#: classes/Notice.php:222 msgid "Problem saving notice. Too long." -msgstr "Hubo un problema al guardar el aviso." +msgstr "Ha habido un problema al guardar el mensaje. Es muy largo." -#: classes/Notice.php:229 -#, fuzzy +#: classes/Notice.php:226 msgid "Problem saving notice. Unknown user." -msgstr "Hubo problemas al guardar el aviso. Usuario desconocido." +msgstr "Ha habido un problema al guardar el mensaje. Usuario desconocido." -#: classes/Notice.php:234 +#: classes/Notice.php:231 msgid "" "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." -#: classes/Notice.php:240 +#: classes/Notice.php:237 #, fuzzy msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " @@ -4133,34 +4454,60 @@ msgstr "" "Demasiados avisos demasiado rápido; para y publicar nuevamente en unos " "minutos." -#: classes/Notice.php:246 +#: classes/Notice.php:243 msgid "You are banned from posting notices on this site." msgstr "Tienes prohibido publicar avisos en este sitio." -#: classes/Notice.php:305 classes/Notice.php:330 +#: classes/Notice.php:309 classes/Notice.php:335 msgid "Problem saving notice." msgstr "Hubo un problema al guardar el aviso." -#: classes/Notice.php:1052 -#, php-format -msgid "DB error inserting reply: %s" -msgstr "Error de BD al insertar respuesta: %s" +#: classes/Notice.php:882 +#, fuzzy +msgid "Problem saving group inbox." +msgstr "Hubo un problema al guardar el aviso." -#: classes/Notice.php:1423 +#: classes/Notice.php:1407 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" -#: classes/User.php:382 +#: classes/Subscription.php:66 lib/oauthstore.php:465 +msgid "You have been banned from subscribing." +msgstr "Se te ha prohibido la suscripción." + +#: classes/Subscription.php:70 +msgid "Already subscribed!" +msgstr "" + +#: classes/Subscription.php:74 +msgid "User has blocked you." +msgstr "El usuario te ha bloqueado." + +#: classes/Subscription.php:157 +#, fuzzy +msgid "Not subscribed!" +msgstr "¡No estás suscrito!" + +#: classes/Subscription.php:163 +#, fuzzy +msgid "Couldn't delete self-subscription." +msgstr "No se pudo eliminar la suscripción." + +#: classes/Subscription.php:179 lib/subs.php:69 +msgid "Couldn't delete subscription." +msgstr "No se pudo eliminar la suscripción." + +#: classes/User.php:372 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "Bienvenido a %1$s, @%2$s!" -#: classes/User_group.php:380 +#: classes/User_group.php:423 msgid "Could not create group." msgstr "No se pudo crear grupo." -#: classes/User_group.php:409 +#: classes/User_group.php:452 #, fuzzy msgid "Could not set group membership." msgstr "No se pudo configurar miembros de grupo." @@ -4194,137 +4541,132 @@ msgid "Other options" msgstr "Otras opciones" #: lib/action.php:144 -#, fuzzy, php-format +#, php-format msgid "%1$s - %2$s" -msgstr "%1$s (%2$s)" +msgstr "%1$s - %2$s" #: lib/action.php:159 msgid "Untitled page" msgstr "Página sin título" -#: lib/action.php:427 +#: lib/action.php:433 msgid "Primary site navigation" msgstr "Navegación de sitio primario" -#: lib/action.php:433 +#: lib/action.php:439 msgid "Home" msgstr "Inicio" -#: lib/action.php:433 +#: lib/action.php:439 msgid "Personal profile and friends timeline" msgstr "Perfil personal y línea de tiempo de amigos" -#: lib/action.php:435 -msgid "Account" -msgstr "Cuenta" - -#: lib/action.php:435 +#: lib/action.php:441 msgid "Change your email, avatar, password, profile" msgstr "Cambia tu correo electrónico, avatar, contraseña, perfil" -#: lib/action.php:438 +#: lib/action.php:444 msgid "Connect" msgstr "Conectarse" -#: lib/action.php:438 +#: lib/action.php:444 msgid "Connect to services" msgstr "Conectar a los servicios" -#: lib/action.php:442 -#, fuzzy +#: lib/action.php:448 msgid "Change site configuration" -msgstr "Navegación de sitio primario" +msgstr "Cambiar la configuración del sitio" -#: lib/action.php:446 lib/subgroupnav.php:105 +#: lib/action.php:452 lib/subgroupnav.php:105 msgid "Invite" msgstr "Invitar" -#: lib/action.php:447 lib/subgroupnav.php:106 +#: lib/action.php:453 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" -#: lib/action.php:452 +#: lib/action.php:458 msgid "Logout" msgstr "Salir" -#: lib/action.php:452 +#: lib/action.php:458 msgid "Logout from the site" msgstr "Salir de sitio" -#: lib/action.php:457 +#: lib/action.php:463 msgid "Create an account" msgstr "Crear una cuenta" -#: lib/action.php:460 +#: lib/action.php:466 msgid "Login to the site" msgstr "Ingresar a sitio" -#: lib/action.php:463 lib/action.php:726 +#: lib/action.php:469 lib/action.php:732 msgid "Help" msgstr "Ayuda" -#: lib/action.php:463 +#: lib/action.php:469 msgid "Help me!" msgstr "Ayúdame!" -#: lib/action.php:466 lib/searchaction.php:127 +#: lib/action.php:472 lib/searchaction.php:127 msgid "Search" msgstr "Buscar" -#: lib/action.php:466 +#: lib/action.php:472 msgid "Search for people or text" msgstr "Buscar personas o texto" -#: lib/action.php:487 +#: lib/action.php:493 msgid "Site notice" msgstr "Aviso de sitio" -#: lib/action.php:553 +#: lib/action.php:559 msgid "Local views" msgstr "Vistas locales" -#: lib/action.php:619 +#: lib/action.php:625 msgid "Page notice" msgstr "Aviso de página" -#: lib/action.php:721 +#: lib/action.php:727 msgid "Secondary site navigation" msgstr "Navegación de sitio secundario" -#: lib/action.php:728 +#: lib/action.php:734 msgid "About" msgstr "Acerca de" -#: lib/action.php:730 +#: lib/action.php:736 msgid "FAQ" msgstr "Preguntas Frecuentes" -#: lib/action.php:734 +#: lib/action.php:740 msgid "TOS" msgstr "" -#: lib/action.php:737 +#: lib/action.php:743 msgid "Privacy" msgstr "Privacidad" -#: lib/action.php:739 +#: lib/action.php:745 msgid "Source" msgstr "Fuente" -#: lib/action.php:743 +#: lib/action.php:749 msgid "Contact" msgstr "Ponerse en contacto" -#: lib/action.php:745 +#: lib/action.php:751 msgid "Badge" msgstr "Insignia" -#: lib/action.php:773 +#: lib/action.php:779 msgid "StatusNet software license" msgstr "Licencia de software de StatusNet" -#: lib/action.php:776 +#: lib/action.php:782 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4333,12 +4675,12 @@ msgstr "" "**%%site.name%%** es un servicio de microblogueo de [%%site.broughtby%%**](%%" "site.broughtbyurl%%)." -#: lib/action.php:778 +#: lib/action.php:784 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** es un servicio de microblogueo." -#: lib/action.php:780 +#: lib/action.php:786 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4349,38 +4691,61 @@ msgstr "" "disponible bajo la [GNU Affero General Public License](http://www.fsf.org/" "licensing/licenses/agpl-3.0.html)." -#: lib/action.php:794 +#: lib/action.php:801 msgid "Site content license" msgstr "Licencia de contenido del sitio" -#: lib/action.php:803 +#: lib/action.php:806 +#, php-format +msgid "Content and data of %1$s are private and confidential." +msgstr "" + +#: lib/action.php:811 +#, php-format +msgid "Content and data copyright by %1$s. All rights reserved." +msgstr "" + +#: lib/action.php:814 +msgid "Content and data copyright by contributors. All rights reserved." +msgstr "" +"Derechos de autor de contenido y datos por los colaboradores. Todos los " +"derechos reservados." + +#: lib/action.php:827 msgid "All " msgstr "Todo" -#: lib/action.php:808 +#: lib/action.php:833 msgid "license." msgstr "Licencia." -#: lib/action.php:1102 +#: lib/action.php:1132 msgid "Pagination" msgstr "Paginación" -#: lib/action.php:1111 +#: lib/action.php:1141 msgid "After" msgstr "Después" -#: lib/action.php:1119 +#: lib/action.php:1149 msgid "Before" msgstr "Antes" -#: lib/action.php:1167 -msgid "There was a problem with your session token." -msgstr "Hubo problemas con tu clave de sesión." +#: lib/activity.php:382 +msgid "Can't handle remote content yet." +msgstr "" + +#: lib/activity.php:410 +msgid "Can't handle embedded XML content yet." +msgstr "" + +#: lib/activity.php:414 +msgid "Can't handle embedded Base64 content yet." +msgstr "" #: lib/adminpanelaction.php:96 -#, fuzzy msgid "You cannot make changes to this site." -msgstr "No puedes enviar mensaje a este usuario." +msgstr "No puedes hacer cambios a este sitio." #: lib/adminpanelaction.php:107 #, fuzzy @@ -4403,27 +4768,114 @@ msgid "Unable to delete design setting." msgstr "¡No se pudo guardar tu configuración de Twitter!" #: lib/adminpanelaction.php:312 -#, fuzzy msgid "Basic site configuration" -msgstr "Confirmación de correo electrónico" +msgstr "Configuración básica del sitio" #: lib/adminpanelaction.php:317 -#, fuzzy msgid "Design configuration" -msgstr "SMS confirmación" +msgstr "Configuración del diseño" -#: lib/adminpanelaction.php:322 lib/adminpanelaction.php:327 +#: lib/adminpanelaction.php:322 +msgid "User configuration" +msgstr "Configuración de usuario" + +#: lib/adminpanelaction.php:327 +msgid "Access configuration" +msgstr "Configuración de acceso" + +#: lib/adminpanelaction.php:332 #, fuzzy msgid "Paths configuration" msgstr "SMS confirmación" +#: lib/adminpanelaction.php:337 +msgid "Sessions configuration" +msgstr "Configuración de sesiones" + +#: lib/apiauth.php:95 +msgid "API resource requires read-write access, but you only have read access." +msgstr "" + +#: lib/apiauth.php:273 +#, php-format +msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" +msgstr "" + +#: lib/applicationeditform.php:136 +msgid "Edit application" +msgstr "Editar aplicación" + +#: lib/applicationeditform.php:184 +msgid "Icon for this application" +msgstr "" + +#: lib/applicationeditform.php:204 +#, fuzzy, php-format +msgid "Describe your application in %d characters" +msgstr "Describir al grupo o tema en %d caracteres" + +#: lib/applicationeditform.php:207 +#, fuzzy +msgid "Describe your application" +msgstr "Describir al grupo o tema" + +#: lib/applicationeditform.php:216 +msgid "Source URL" +msgstr "La URL de origen" + +#: lib/applicationeditform.php:218 +#, fuzzy +msgid "URL of the homepage of this application" +msgstr "El URL de página de inicio o blog del grupo or tema" + +#: lib/applicationeditform.php:224 +msgid "Organization responsible for this application" +msgstr "Organización responsable de esta aplicación" + +#: lib/applicationeditform.php:230 +#, fuzzy +msgid "URL for the homepage of the organization" +msgstr "El URL de página de inicio o blog del grupo or tema" + +#: lib/applicationeditform.php:236 +msgid "URL to redirect to after authentication" +msgstr "" + +#: lib/applicationeditform.php:258 +msgid "Browser" +msgstr "Navegador" + +#: lib/applicationeditform.php:274 +msgid "Desktop" +msgstr "Escritorio" + +#: lib/applicationeditform.php:275 +msgid "Type of application, browser or desktop" +msgstr "Tipo de aplicación, de navegador o de escritorio" + +#: lib/applicationeditform.php:297 +msgid "Read-only" +msgstr "" + +#: lib/applicationeditform.php:315 +msgid "Read-write" +msgstr "" + +#: lib/applicationeditform.php:316 +msgid "Default access for this application: read-only, or read-write" +msgstr "" + +#: lib/applicationlist.php:154 +msgid "Revoke" +msgstr "Revocar" + #: lib/attachmentlist.php:87 msgid "Attachments" msgstr "" #: lib/attachmentlist.php:265 msgid "Author" -msgstr "" +msgstr "Autor" #: lib/attachmentlist.php:278 msgid "Provider" @@ -4431,18 +4883,17 @@ msgstr "Proveedor" #: lib/attachmentnoticesection.php:67 msgid "Notices where this attachment appears" -msgstr "" +msgstr "Mensajes donde aparece este adjunto" #: lib/attachmenttagcloudsection.php:48 msgid "Tags for this attachment" -msgstr "" +msgstr "Etiquetas de este archivo adjunto" -#: lib/authenticationplugin.php:182 lib/authenticationplugin.php:187 -#, fuzzy +#: lib/authenticationplugin.php:218 lib/authenticationplugin.php:223 msgid "Password changing failed" -msgstr "Cambio de contraseña " +msgstr "El cambio de contraseña ha fallado" -#: lib/authenticationplugin.php:197 +#: lib/authenticationplugin.php:233 #, fuzzy msgid "Password changing is not allowed" msgstr "Cambio de contraseña " @@ -4464,10 +4915,9 @@ msgid "Sorry, this command is not yet implemented." msgstr "Disculpa, todavía no se implementa este comando." #: lib/command.php:88 -#, fuzzy, php-format +#, 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." +msgstr "No se pudo encontrar a nadie con el nombre de usuario %s" #: lib/command.php:92 msgid "It does not make a lot of sense to nudge yourself!" @@ -4487,9 +4937,8 @@ msgid "" msgstr "" #: lib/command.php:152 lib/command.php:390 lib/command.php:451 -#, fuzzy msgid "Notice with that id does not exist" -msgstr "Ningún perfil con ese ID." +msgstr "No existe ningún mensaje con ese id" #: lib/command.php:168 lib/command.php:406 lib/command.php:467 #: lib/command.php:523 @@ -4598,80 +5047,89 @@ msgstr "Hubo un problema al guardar el aviso." msgid "Specify the name of the user to subscribe to" msgstr "Especificar el nombre del usuario a suscribir" -#: lib/command.php:554 +#: lib/command.php:554 lib/command.php:589 +msgid "No such user" +msgstr "No existe ese usuario." + +#: lib/command.php:561 #, php-format msgid "Subscribed to %s" msgstr "Suscrito a %s" -#: lib/command.php:575 +#: lib/command.php:582 lib/command.php:685 msgid "Specify the name of the user to unsubscribe from" msgstr "Especificar el nombre del usuario para desuscribirse de" -#: lib/command.php:582 +#: lib/command.php:595 #, php-format msgid "Unsubscribed from %s" msgstr "Desuscrito de %s" -#: lib/command.php:600 lib/command.php:623 +#: lib/command.php:613 lib/command.php:636 msgid "Command not yet implemented." msgstr "Todavía no se implementa comando." -#: lib/command.php:603 +#: lib/command.php:616 msgid "Notification off." msgstr "Notificación no activa." -#: lib/command.php:605 +#: lib/command.php:618 msgid "Can't turn off notification." msgstr "No se puede desactivar notificación." -#: lib/command.php:626 +#: lib/command.php:639 msgid "Notification on." msgstr "Notificación activada." -#: lib/command.php:628 +#: lib/command.php:641 msgid "Can't turn on notification." msgstr "No se puede activar notificación." -#: lib/command.php:641 +#: lib/command.php:654 msgid "Login command is disabled" msgstr "" -#: lib/command.php:652 +#: lib/command.php:665 #, php-format msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "" -#: lib/command.php:668 +#: lib/command.php:692 +#, fuzzy, php-format +msgid "Unsubscribed %s" +msgstr "Desuscrito de %s" + +#: lib/command.php:709 msgid "You are not subscribed to anyone." msgstr "No estás suscrito a nadie." -#: lib/command.php:670 +#: lib/command.php:711 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "Ya estás suscrito a estos usuarios:" msgstr[1] "Ya estás suscrito a estos usuarios:" -#: lib/command.php:690 +#: lib/command.php:731 msgid "No one is subscribed to you." msgstr "Nadie está suscrito a ti." -#: lib/command.php:692 +#: lib/command.php:733 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "No se pudo suscribir otro a ti." msgstr[1] "No se pudo suscribir otro a ti." -#: lib/command.php:712 +#: lib/command.php:753 msgid "You are not a member of any groups." msgstr "No eres miembro de ningún grupo" -#: lib/command.php:714 +#: lib/command.php:755 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" -msgstr[0] "No eres miembro de este grupo." -msgstr[1] "No eres miembro de este grupo." +msgstr[0] "Eres miembro de este grupo:" +msgstr[1] "Eres miembro de estos grupos:" -#: lib/command.php:728 +#: lib/command.php:769 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -4685,6 +5143,7 @@ msgid "" "d - direct message to user\n" "get - get last notice from user\n" "whois - get profile info on user\n" +"lose - force user to stop following you\n" "fav - add user's last notice as a 'fave'\n" "fav # - add notice with the given id as a 'fave'\n" "repeat # - repeat a notice with a given id\n" @@ -4712,19 +5171,19 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:131 +#: lib/common.php:136 msgid "No configuration file found. " msgstr "Ningún archivo de configuración encontrado. " -#: lib/common.php:132 +#: lib/common.php:137 msgid "I looked for configuration files in the following places: " msgstr "" -#: lib/common.php:134 +#: lib/common.php:139 msgid "You may wish to run the installer to fix this." msgstr "" -#: lib/common.php:135 +#: lib/common.php:140 msgid "Go to the installer." msgstr "Ir al instalador." @@ -4740,6 +5199,15 @@ msgstr "Actualizaciones por mensajería instantánea" msgid "Updates by SMS" msgstr "Actualizaciones por sms" +#: lib/connectsettingsaction.php:120 +#, fuzzy +msgid "Connections" +msgstr "Conectarse" + +#: lib/connectsettingsaction.php:121 +msgid "Authorized connected applications" +msgstr "" + #: lib/dberroraction.php:60 msgid "Database error" msgstr "" @@ -4773,11 +5241,11 @@ msgstr "Aceptar" #: lib/feed.php:85 msgid "RSS 1.0" -msgstr "" +msgstr "RSS 1.0" #: lib/feed.php:87 msgid "RSS 2.0" -msgstr "" +msgstr "RSS 2.0" #: lib/feed.php:89 msgid "Atom" @@ -4927,12 +5395,12 @@ msgstr "MB" msgid "kB" msgstr "kB" -#: lib/jabber.php:202 +#: lib/jabber.php:220 #, php-format msgid "[%s]" msgstr "" -#: lib/jabber.php:385 +#: lib/jabber.php:400 #, php-format msgid "Unknown inbox source %d." msgstr "" @@ -5143,7 +5611,7 @@ msgid "" "users in conversation. People can send you messages for your eyes only." msgstr "" -#: lib/mailbox.php:227 lib/noticelist.php:477 +#: lib/mailbox.php:227 lib/noticelist.php:482 msgid "from" msgstr "desde" @@ -5263,58 +5731,54 @@ msgid "Do not share my location" msgstr "No se pudo guardar tags." #: lib/noticeform.php:216 -msgid "Hide this info" -msgstr "" - -#: lib/noticeform.php:217 msgid "" "Sorry, retrieving your geo location is taking longer than expected, please " "try again later" msgstr "" -#: lib/noticelist.php:428 +#: lib/noticelist.php:429 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "" -#: lib/noticelist.php:429 +#: lib/noticelist.php:430 msgid "N" msgstr "N" -#: lib/noticelist.php:429 +#: lib/noticelist.php:430 msgid "S" msgstr "S" -#: lib/noticelist.php:430 +#: lib/noticelist.php:431 msgid "E" msgstr "E" -#: lib/noticelist.php:430 +#: lib/noticelist.php:431 msgid "W" msgstr "" -#: lib/noticelist.php:436 +#: lib/noticelist.php:438 msgid "at" msgstr "en" -#: lib/noticelist.php:531 +#: lib/noticelist.php:558 msgid "in context" msgstr "en contexto" -#: lib/noticelist.php:556 +#: lib/noticelist.php:583 #, fuzzy msgid "Repeated by" msgstr "Crear" -#: lib/noticelist.php:585 +#: lib/noticelist.php:610 msgid "Reply to this notice" msgstr "Responder este aviso." -#: lib/noticelist.php:586 +#: lib/noticelist.php:611 msgid "Reply" msgstr "Responder" -#: lib/noticelist.php:628 +#: lib/noticelist.php:655 #, fuzzy msgid "Notice repeated" msgstr "Aviso borrado" @@ -5347,11 +5811,7 @@ msgstr "Error al insertar perfil remoto" msgid "Duplicate notice" msgstr "Duplicar aviso" -#: lib/oauthstore.php:466 lib/subs.php:48 -msgid "You have been banned from subscribing." -msgstr "Se te ha prohibido la suscripción." - -#: lib/oauthstore.php:491 +#: lib/oauthstore.php:490 msgid "Couldn't insert new subscription." msgstr "No se pudo insertar una nueva suscripción." @@ -5367,19 +5827,19 @@ msgstr "Respuestas" msgid "Favorites" msgstr "Favoritos" -#: lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "Bandeja de Entrada" -#: lib/personalgroupnav.php:125 +#: lib/personalgroupnav.php:126 msgid "Your incoming messages" msgstr "Mensajes entrantes" -#: lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 msgid "Outbox" msgstr "Bandeja de Salida" -#: lib/personalgroupnav.php:130 +#: lib/personalgroupnav.php:131 msgid "Your sent messages" msgstr "Mensajes enviados" @@ -5461,6 +5921,10 @@ msgstr "Responder este aviso." msgid "Repeat this notice" msgstr "Responder este aviso." +#: lib/router.php:665 +msgid "No single user defined for single-user mode." +msgstr "" + #: lib/sandboxform.php:67 #, fuzzy msgid "Sandbox" @@ -5533,36 +5997,6 @@ msgstr "Personas suscritas a %s" msgid "Groups %s is a member of" msgstr "%s es miembro de los grupos" -#: lib/subs.php:52 -msgid "Already subscribed!" -msgstr "" - -#: lib/subs.php:56 -msgid "User has blocked you." -msgstr "El usuario te ha bloqueado." - -#: lib/subs.php:63 -msgid "Could not subscribe." -msgstr "No se pudo suscribir." - -#: lib/subs.php:82 -msgid "Could not subscribe other to you." -msgstr "No se pudo suscribir otro a ti." - -#: lib/subs.php:137 -#, fuzzy -msgid "Not subscribed!" -msgstr "¡No estás suscrito!" - -#: lib/subs.php:142 -#, fuzzy -msgid "Couldn't delete self-subscription." -msgstr "No se pudo eliminar la suscripción." - -#: lib/subs.php:158 -msgid "Couldn't delete subscription." -msgstr "No se pudo eliminar la suscripción." - #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -5615,67 +6049,67 @@ msgstr "editar avatar" msgid "User actions" msgstr "Acciones de usuario" -#: lib/userprofile.php:248 +#: lib/userprofile.php:251 msgid "Edit profile settings" msgstr "Editar configuración del perfil" -#: lib/userprofile.php:249 +#: lib/userprofile.php:252 msgid "Edit" msgstr "Editar" -#: lib/userprofile.php:272 +#: lib/userprofile.php:275 msgid "Send a direct message to this user" msgstr "Enviar un mensaje directo a este usuario" -#: lib/userprofile.php:273 +#: lib/userprofile.php:276 msgid "Message" msgstr "Mensaje" -#: lib/userprofile.php:311 +#: lib/userprofile.php:314 msgid "Moderate" msgstr "Moderar" -#: lib/util.php:877 +#: lib/util.php:952 msgid "a few seconds ago" msgstr "hace unos segundos" -#: lib/util.php:879 +#: lib/util.php:954 msgid "about a minute ago" msgstr "hace un minuto" -#: lib/util.php:881 +#: lib/util.php:956 #, php-format msgid "about %d minutes ago" msgstr "hace %d minutos" -#: lib/util.php:883 +#: lib/util.php:958 msgid "about an hour ago" msgstr "hace una hora" -#: lib/util.php:885 +#: lib/util.php:960 #, php-format msgid "about %d hours ago" msgstr "hace %d horas" -#: lib/util.php:887 +#: lib/util.php:962 msgid "about a day ago" msgstr "hace un día" -#: lib/util.php:889 +#: lib/util.php:964 #, php-format msgid "about %d days ago" msgstr "hace %d días" -#: lib/util.php:891 +#: lib/util.php:966 msgid "about a month ago" msgstr "hace un mes" -#: lib/util.php:893 +#: lib/util.php:968 #, php-format msgid "about %d months ago" msgstr "hace %d meses" -#: lib/util.php:895 +#: lib/util.php:970 msgid "about a year ago" msgstr "hace un año" @@ -5689,7 +6123,7 @@ msgstr "" msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "" -#: scripts/xmppdaemon.php:301 +#: lib/xmppmanager.php:402 #, fuzzy, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "Mensaje muy largo - máximo 140 caracteres, enviaste %d" diff --git a/locale/fa/LC_MESSAGES/statusnet.po b/locale/fa/LC_MESSAGES/statusnet.po index bd97b86b58..600323e436 100644 --- a/locale/fa/LC_MESSAGES/statusnet.po +++ b/locale/fa/LC_MESSAGES/statusnet.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-01-13 22:04+0000\n" -"PO-Revision-Date: 2010-01-13 22:05:13+0000\n" +"POT-Creation-Date: 2010-02-24 23:49+0000\n" +"PO-Revision-Date: 2010-02-24 23:50:38+0000\n" "Last-Translator: Ahmad Sufi Mahmudi\n" "Language-Team: Persian\n" "MIME-Version: 1.0\n" @@ -20,9 +20,64 @@ msgstr "" "X-Language-Code: fa\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: MediaWiki 1.16alpha (r61027); Translate extension (2010-01-04)\n" +"X-Generator: MediaWiki 1.17alpha (r62925); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +#: actions/accessadminpanel.php:54 lib/adminpanelaction.php:326 +msgid "Access" +msgstr "دسترسی" + +#: actions/accessadminpanel.php:65 +#, fuzzy +msgid "Site access settings" +msgstr "تنظیمات دیگر" + +#: actions/accessadminpanel.php:158 +#, fuzzy +msgid "Registration" +msgstr "ثبت نام" + +#: actions/accessadminpanel.php:161 +msgid "Private" +msgstr "خصوصی" + +#: actions/accessadminpanel.php:163 +msgid "Prohibit anonymous users (not logged in) from viewing site?" +msgstr "" + +#: actions/accessadminpanel.php:167 +msgid "Invite only" +msgstr "فقط دعوت کردن" + +#: actions/accessadminpanel.php:169 +msgid "Make registration invitation only." +msgstr "تنها آماده کردن دعوت نامه های ثبت نام." + +#: actions/accessadminpanel.php:173 +msgid "Closed" +msgstr "مسدود" + +#: actions/accessadminpanel.php:175 +msgid "Disable new registrations." +msgstr "غیر فعال کردن نام نوبسی جدید" + +#: actions/accessadminpanel.php:189 actions/designadminpanel.php:586 +#: actions/emailsettings.php:195 actions/imsettings.php:163 +#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 +#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 +#: actions/siteadminpanel.php:336 actions/smssettings.php:181 +#: actions/subscriptions.php:208 actions/tagother.php:154 +#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 lib/designsettings.php:256 +#: lib/groupeditform.php:202 +msgid "Save" +msgstr "ذخیره‌کردن" + +#: actions/accessadminpanel.php:189 +#, fuzzy +msgid "Save access settings" +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" @@ -37,25 +92,29 @@ msgstr "چنین صفحه‌ای وجود ندارد" #: 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:144 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apistatusesupdate.php:148 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:78 #: actions/apitimelinehome.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/otp.php:76 #: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154 -#: actions/replies.php:73 actions/repliesrss.php:38 +#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 #: 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:302 lib/command.php:355 #: lib/command.php:401 lib/command.php:462 lib/command.php:518 #: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 -#: lib/subs.php:34 lib/subs.php:125 msgid "No such user." msgstr "چنین کاربری وجود ندارد." +#: actions/all.php:84 +#, fuzzy, php-format +msgid "%1$s and friends, page %2$d" +msgstr "%s کاربران مسدود شده، صفحه‌ی %d" + #: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 -#: actions/apitimelinefriends.php:115 actions/apitimelinehome.php:115 +#: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" @@ -100,7 +159,7 @@ msgstr "" "اولین کسی باشید که در [این موضوع](%%%%action.newnotice%%%%?status_textarea=%" "s) پیام می‌فرستد." -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211 #, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " @@ -113,8 +172,8 @@ msgstr "" msgid "You and friends" msgstr "شما و دوستان" -#: actions/allrss.php:119 actions/apitimelinefriends.php:122 -#: actions/apitimelinehome.php:122 +#: actions/allrss.php:119 actions/apitimelinefriends.php:119 +#: actions/apitimelinehome.php:120 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "به روز رسانی از %1$ و دوستان در %2$" @@ -124,23 +183,23 @@ msgstr "به روز رسانی از %1$ و دوستان در %2$" #: actions/apiaccountupdateprofile.php:97 #: actions/apiaccountupdateprofilebackgroundimage.php:94 #: actions/apiaccountupdateprofilecolors.php:118 -#: 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:136 actions/apigroupismember.php:114 -#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 -#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 -#: actions/apigroupmembership.php:106 actions/apigroupshow.php:105 -#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 -#: actions/apistatusesretweets.php:112 actions/apistatusesshow.php:108 -#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93 -#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:146 -#: actions/apitimelinefriends.php:156 actions/apitimelinegroup.php:150 -#: actions/apitimelinehome.php:156 actions/apitimelinementions.php:151 -#: actions/apitimelinepublic.php:131 actions/apitimelineretweetedbyme.php:122 +#: actions/apiaccountverifycredentials.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:128 actions/apigroupcreate.php:136 +#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 +#: actions/apigroupleave.php:141 actions/apigrouplist.php:132 +#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 +#: actions/apigroupshow.php:115 actions/apihelptest.php:88 +#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 +#: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 #: actions/apitimelineretweetedtome.php:121 -#: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141 -#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 +#: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 +#: actions/apitimelineuser.php:207 actions/apiusershow.php:101 msgid "API method not found." msgstr "رابط مورد نظر پیدا نشد." @@ -154,7 +213,7 @@ msgstr "رابط مورد نظر پیدا نشد." #: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 #: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 #: actions/apigroupleave.php:91 actions/apistatusesretweet.php:65 -#: actions/apistatusesupdate.php:114 +#: actions/apistatusesupdate.php:118 msgid "This method requires a POST." msgstr "برای استفاده از این روش باید اطلاعات را به صورت پست بفرستید" @@ -183,8 +242,9 @@ msgstr "نمی‌توان شناس‌نامه را ذخیره کرد." #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:97 -#: actions/apistatusesupdate.php:127 actions/avatarsettings.php:257 -#: actions/designadminpanel.php:122 actions/newnotice.php:94 +#: actions/apistatusesupdate.php:131 actions/avatarsettings.php:257 +#: actions/designadminpanel.php:122 actions/editapplication.php:118 +#: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 #, php-format msgid "" @@ -302,11 +362,11 @@ msgstr "نمی‌توانید خودتان را دنبال نکنید!" msgid "Two user ids or screen_names must be supplied." msgstr "باید ۲ شناسه‌ی کاربر یا نام ظاهری وارد کنید." -#: actions/apifriendshipsshow.php:135 +#: actions/apifriendshipsshow.php:134 msgid "Could not determine source user." msgstr "نمی‌توان کاربر منبع را تعیین کرد." -#: actions/apifriendshipsshow.php:143 +#: actions/apifriendshipsshow.php:142 msgid "Could not find target user." msgstr "نمی‌توان کاربر هدف را پیدا کرد." @@ -328,7 +388,8 @@ msgstr "این لقب در حال حاضر ثبت شده است. لطفا یکی msgid "Not a valid nickname." msgstr "لقب نا معتبر." -#: actions/apigroupcreate.php:196 actions/editgroup.php:195 +#: actions/apigroupcreate.php:196 actions/editapplication.php:215 +#: actions/editgroup.php:195 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:217 msgid "Homepage is not a valid URL." @@ -340,7 +401,8 @@ msgstr "برگهٔ آغازین یک نشانی معتبر نیست." msgid "Full name is too long (max 255 chars)." msgstr "نام کامل طولانی است (۲۵۵ حرف در حالت بیشینه(." -#: actions/apigroupcreate.php:213 +#: actions/apigroupcreate.php:213 actions/editapplication.php:190 +#: actions/newapplication.php:172 #, php-format msgid "Description is too long (max %d chars)." msgstr "توصیف بسیار زیاد است (حداکثر %d حرف)." @@ -376,7 +438,7 @@ msgstr "نام و نام مستعار شما نمی تواند یکی باشد . #: actions/apigroupismember.php:95 actions/apigroupjoin.php:104 #: actions/apigroupleave.php:104 actions/apigroupmembership.php:91 -#: actions/apigroupshow.php:90 actions/apitimelinegroup.php:91 +#: actions/apigroupshow.php:82 actions/apitimelinegroup.php:91 msgid "Group not found!" msgstr "گروه یافت نشد!" @@ -417,6 +479,114 @@ msgstr "%s گروه" msgid "groups on %s" msgstr "گروه‌ها در %s" +#: actions/apioauthauthorize.php:101 +msgid "No oauth_token parameter provided." +msgstr "" + +#: actions/apioauthauthorize.php:106 +#, fuzzy +msgid "Invalid token." +msgstr "اندازه‌ی نادرست" + +#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 +#: actions/deletenotice.php:157 actions/disfavor.php:74 +#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54 +#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupunblock.php:66 actions/imsettings.php:206 +#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 +#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 +#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135 +#: actions/othersettings.php:145 actions/passwordsettings.php:138 +#: actions/profilesettings.php:194 actions/recoverpassword.php:337 +#: actions/register.php:165 actions/remotesubscribe.php:77 +#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 +#: actions/subscribe.php:86 actions/tagother.php:166 +#: 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/apioauthauthorize.php:135 +#, fuzzy +msgid "Invalid nickname / password!" +msgstr "نام کاربری یا کلمه ی عبور نا معتبر." + +#: actions/apioauthauthorize.php:159 +msgid "Database error deleting OAuth application user." +msgstr "" + +#: actions/apioauthauthorize.php:185 +msgid "Database error inserting OAuth application user." +msgstr "" + +#: actions/apioauthauthorize.php:214 +#, php-format +msgid "" +"The request token %s has been authorized. Please exchange it for an access " +"token." +msgstr "" + +#: actions/apioauthauthorize.php:227 +#, php-format +msgid "The request token %s has been denied and revoked." +msgstr "" + +#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 +#: actions/designadminpanel.php:103 actions/editapplication.php:139 +#: actions/emailsettings.php:256 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/newapplication.php:121 +#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 +#: actions/smssettings.php:248 lib/designsettings.php:304 +msgid "Unexpected form submission." +msgstr "ارسال غیر قابل انتظار فرم." + +#: actions/apioauthauthorize.php:259 +msgid "An application would like to connect to your account" +msgstr "" + +#: actions/apioauthauthorize.php:276 +msgid "Allow or deny access" +msgstr "" + +#: actions/apioauthauthorize.php:292 +#, php-format +msgid "" +"The application %1$s by %2$s would like " +"the ability to %3$s your %4$s account data. You should only " +"give access to your %4$s account to third parties you trust." +msgstr "" + +#: actions/apioauthauthorize.php:310 lib/action.php:441 +msgid "Account" +msgstr "حساب کاربری" + +#: actions/apioauthauthorize.php:313 actions/login.php:230 +#: actions/profilesettings.php:106 actions/register.php:424 +#: actions/showgroup.php:236 actions/tagother.php:94 +#: actions/userauthorization.php:145 lib/groupeditform.php:152 +#: lib/userprofile.php:131 +msgid "Nickname" +msgstr "نام کاربری" + +#: actions/apioauthauthorize.php:316 actions/login.php:233 +#: actions/register.php:429 lib/accountsettingsaction.php:116 +msgid "Password" +msgstr "گذرواژه" + +#: actions/apioauthauthorize.php:328 +#, fuzzy +msgid "Deny" +msgstr "طرح" + +#: actions/apioauthauthorize.php:334 +#, fuzzy +msgid "Allow" +msgstr "همه" + +#: actions/apioauthauthorize.php:351 +msgid "Allow or deny access to your account information." +msgstr "" + #: actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." msgstr "این روش نیازمند POST یا DELETE است." @@ -446,17 +616,17 @@ msgstr "وضعیت حذف شد." msgid "No status with that ID found." msgstr "هیچ وضعیتی با آن شناسه یافت نشد." -#: actions/apistatusesupdate.php:157 actions/newnotice.php:155 +#: actions/apistatusesupdate.php:161 actions/newnotice.php:155 #: lib/mailhandler.php:60 #, php-format msgid "That's too long. Max notice size is %d chars." msgstr "خیلی طولانی است. حداکثر طول مجاز پیام %d حرف است." -#: actions/apistatusesupdate.php:198 +#: actions/apistatusesupdate.php:202 msgid "Not found" msgstr "یافت نشد" -#: actions/apistatusesupdate.php:221 actions/newnotice.php:178 +#: actions/apistatusesupdate.php:225 actions/newnotice.php:178 #, php-format msgid "Max notice size is %d chars, including attachment URL." msgstr "حداکثر طول پیام %d حرف است که شامل ضمیمه نیز می‌باشد" @@ -470,7 +640,7 @@ msgstr "قالب پشتیبانی نشده." msgid "%1$s / Favorites from %2$s" msgstr "%s / دوست داشتنی از %s" -#: actions/apitimelinefavorites.php:120 +#: actions/apitimelinefavorites.php:117 #, fuzzy, php-format msgid "%1$s updates favorited by %2$s / %2$s." msgstr "%s به روز رسانی های دوست داشتنی %s / %s" @@ -481,7 +651,7 @@ msgstr "%s به روز رسانی های دوست داشتنی %s / %s" msgid "%s timeline" msgstr "خط زمانی %s" -#: actions/apitimelinegroup.php:117 actions/apitimelineuser.php:126 +#: actions/apitimelinegroup.php:114 actions/apitimelineuser.php:126 #: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" @@ -497,27 +667,22 @@ msgstr "%$1s / به روز رسانی های شامل %2$s" msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "%1$s به روز رسانی هایی که در پاسخ به $2$s / %3$s" -#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "%s خط‌زمانی عمومی" -#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "%s به روز رسانی های عموم" -#: actions/apitimelineretweetedbyme.php:112 -#, php-format -msgid "Repeated by %s" -msgstr "%s تکرار کرد" - #: actions/apitimelineretweetedtome.php:111 #, php-format msgid "Repeated to %s" msgstr "" -#: actions/apitimelineretweetsofme.php:112 +#: actions/apitimelineretweetsofme.php:114 #, php-format msgid "Repeats of %s" msgstr "تکرار %s" @@ -527,7 +692,7 @@ msgstr "تکرار %s" msgid "Notices tagged with %s" msgstr "پیام‌هایی که با %s نشانه گزاری شده اند." -#: actions/apitimelinetag.php:108 actions/tagrss.php:64 +#: actions/apitimelinetag.php:104 actions/tagrss.php:64 #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "پیام‌های نشانه گزاری شده با %1$s در %2$s" @@ -588,8 +753,8 @@ msgstr "اصلی" msgid "Preview" msgstr "پیش‌نمایش" -#: actions/avatarsettings.php:149 lib/deleteuserform.php:66 -#: lib/noticelist.php:611 +#: actions/avatarsettings.php:149 actions/showapplication.php:252 +#: lib/deleteuserform.php:66 lib/noticelist.php:637 msgid "Delete" msgstr "حذف" @@ -601,29 +766,6 @@ msgstr "پایین‌گذاری" msgid "Crop" msgstr "برش" -#: actions/avatarsettings.php:268 actions/deletenotice.php:157 -#: actions/disfavor.php:74 actions/emailsettings.php:238 actions/favor.php:75 -#: actions/geocode.php:50 actions/groupblock.php:66 actions/grouplogo.php:309 -#: actions/groupunblock.php:66 actions/imsettings.php:206 -#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 -#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 -#: actions/othersettings.php:145 actions/passwordsettings.php:138 -#: actions/profilesettings.php:194 actions/recoverpassword.php:337 -#: actions/register.php:165 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 -#: actions/subscribe.php:46 actions/tagother.php:166 -#: 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/avatarsettings.php:281 actions/designadminpanel.php:103 -#: actions/emailsettings.php:256 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/avatarsettings.php:328 msgid "Pick a square area of the image to be your avatar" msgstr "یک مربع از عکس خود را انتخاب کنید تا چهره‌ی شما باشد." @@ -663,8 +805,9 @@ msgstr "" "دنبال کند. همچنین دیگر شما از پیام‌هایی که در آن از شما یاد می‌کند با خبر " "نخواهید شد" -#: actions/block.php:143 actions/deletenotice.php:145 -#: actions/deleteuser.php:147 actions/groupblock.php:178 +#: actions/block.php:143 actions/deleteapplication.php:153 +#: actions/deletenotice.php:145 actions/deleteuser.php:147 +#: actions/groupblock.php:178 msgid "No" msgstr "خیر" @@ -672,13 +815,13 @@ msgstr "خیر" msgid "Do not block this user" msgstr "کاربر را مسدود نکن" -#: actions/block.php:144 actions/deletenotice.php:146 -#: actions/deleteuser.php:148 actions/groupblock.php:179 -#: lib/repeatform.php:132 +#: actions/block.php:144 actions/deleteapplication.php:158 +#: actions/deletenotice.php:146 actions/deleteuser.php:148 +#: actions/groupblock.php:179 lib/repeatform.php:132 msgid "Yes" msgstr "بله" -#: actions/block.php:144 actions/groupmembers.php:346 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80 msgid "Block this user" msgstr "کاربر را مسدود کن" @@ -761,7 +904,8 @@ msgid "Couldn't delete email confirmation." msgstr "نمی‌توان تصدیق پست الکترونیک را پاک کرد." #: actions/confirmaddress.php:144 -msgid "Confirm Address" +#, fuzzy +msgid "Confirm address" msgstr "تایید نشانی" #: actions/confirmaddress.php:159 @@ -778,10 +922,57 @@ msgstr "مکالمه" msgid "Notices" msgstr "پیام‌ها" +#: actions/deleteapplication.php:63 +#, fuzzy +msgid "You must be logged in to delete an application." +msgstr "برای ویرایش گروه باید وارد شوید." + +#: actions/deleteapplication.php:71 +#, fuzzy +msgid "Application not found." +msgstr "ابن خبر ذخیره ای ندارد ." + +#: actions/deleteapplication.php:78 actions/editapplication.php:77 +#: actions/showapplication.php:94 +#, fuzzy +msgid "You are not the owner of this application." +msgstr "شما یک عضو این گروه نیستید." + +#: actions/deleteapplication.php:102 actions/editapplication.php:127 +#: actions/newapplication.php:110 actions/showapplication.php:118 +#: lib/action.php:1197 +msgid "There was a problem with your session token." +msgstr "" + +#: actions/deleteapplication.php:123 actions/deleteapplication.php:147 +#, fuzzy +msgid "Delete application" +msgstr "چنین پیامی وجود ندارد." + +#: actions/deleteapplication.php:149 +#, fuzzy +msgid "" +"Are you sure you want to delete this application? This will clear all data " +"about the application from the database, including all existing user " +"connections." +msgstr "" +"آیا مطمئن هستید که می‌خواهید این کاربر را پاک کنید؟ با این کار تمام اطلاعات " +"پاک و بدون برگشت خواهند بود." + +#: actions/deleteapplication.php:156 +#, fuzzy +msgid "Do not delete this application" +msgstr "این پیام را پاک نکن" + +#: actions/deleteapplication.php:160 +#, fuzzy +msgid "Delete this application" +msgstr "این پیام را پاک کن" + #: 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/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 #: lib/adminpanelaction.php:72 lib/profileformaction.php:63 #: lib/settingsaction.php:72 @@ -812,7 +1003,7 @@ msgstr "آیا اطمینان دارید که می‌خواهید این پیا msgid "Do not delete this notice" msgstr "این پیام را پاک نکن" -#: actions/deletenotice.php:146 lib/noticelist.php:611 +#: actions/deletenotice.php:146 lib/noticelist.php:637 msgid "Delete this notice" msgstr "این پیام را پاک کن" @@ -944,16 +1135,6 @@ msgstr "بازگرداندن طرح‌های پیش‌فرض" msgid "Reset back to default" msgstr "برگشت به حالت پیش گزیده" -#: actions/designadminpanel.php:586 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 -#: actions/pathsadminpanel.php:324 actions/profilesettings.php:174 -#: actions/siteadminpanel.php:388 actions/smssettings.php:181 -#: actions/subscriptions.php:203 actions/tagother.php:154 -#: actions/useradminpanel.php:313 lib/designsettings.php:256 -#: lib/groupeditform.php:202 -msgid "Save" -msgstr "ذخیره‌کردن" - #: actions/designadminpanel.php:587 lib/designsettings.php:257 msgid "Save design" msgstr "ذخیره‌کردن طرح" @@ -966,10 +1147,85 @@ msgstr "این آگهی یک آگهی برگزیده نیست!" msgid "Add to favorites" msgstr "افزودن به علاقه‌مندی‌ها" -#: actions/doc.php:69 -msgid "No such document." +#: actions/doc.php:158 +#, fuzzy, php-format +msgid "No such document \"%s\"" msgstr "چنین سندی وجود ندارد." +#: actions/editapplication.php:54 +#, fuzzy +msgid "Edit Application" +msgstr "انتخابات دیگر" + +#: actions/editapplication.php:66 +#, fuzzy +msgid "You must be logged in to edit an application." +msgstr "برای ویرایش گروه باید وارد شوید." + +#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:166 +#: actions/showapplication.php:87 +#, fuzzy +msgid "No such application." +msgstr "چنین پیامی وجود ندارد." + +#: actions/editapplication.php:161 +#, fuzzy +msgid "Use this form to edit your application." +msgstr "از این روش برای ویرایش گروه استفاده کنید." + +#: actions/editapplication.php:177 actions/newapplication.php:159 +msgid "Name is required." +msgstr "" + +#: actions/editapplication.php:180 actions/newapplication.php:165 +#, fuzzy +msgid "Name is too long (max 255 chars)." +msgstr "نام کامل طولانی است (۲۵۵ حرف در حالت بیشینه(." + +#: actions/editapplication.php:183 actions/newapplication.php:162 +#, fuzzy +msgid "Name already in use. Try another one." +msgstr "این لقب در حال حاضر ثبت شده است. لطفا یکی دیگر انتخاب کنید." + +#: actions/editapplication.php:186 actions/newapplication.php:168 +msgid "Description is required." +msgstr "" + +#: actions/editapplication.php:194 +msgid "Source URL is too long." +msgstr "" + +#: actions/editapplication.php:200 actions/newapplication.php:185 +#, fuzzy +msgid "Source URL is not valid." +msgstr "برگهٔ آغازین یک نشانی معتبر نیست." + +#: actions/editapplication.php:203 actions/newapplication.php:188 +msgid "Organization is required." +msgstr "" + +#: actions/editapplication.php:206 actions/newapplication.php:191 +#, fuzzy +msgid "Organization is too long (max 255 chars)." +msgstr "مکان طولانی است (حداکثر ۲۵۵ حرف)" + +#: actions/editapplication.php:209 actions/newapplication.php:194 +msgid "Organization homepage is required." +msgstr "" + +#: actions/editapplication.php:218 actions/newapplication.php:206 +msgid "Callback is too long." +msgstr "" + +#: actions/editapplication.php:225 actions/newapplication.php:215 +msgid "Callback URL is not valid." +msgstr "" + +#: actions/editapplication.php:258 +#, fuzzy +msgid "Could not update application." +msgstr "نمی‌توان گروه را به‌هنگام‌سازی کرد." + #: actions/editgroup.php:56 #, php-format msgid "Edit %s group" @@ -998,7 +1254,7 @@ msgstr "توصیف بسیار زیاد است (حداکثر %d حرف)." msgid "Could not update group." msgstr "نمی‌توان گروه را به‌هنگام‌سازی کرد." -#: actions/editgroup.php:259 classes/User_group.php:390 +#: actions/editgroup.php:259 classes/User_group.php:433 msgid "Could not create aliases." msgstr "نمی‌توان نام‌های مستعار را ساخت." @@ -1038,7 +1294,8 @@ msgid "" msgstr "" #: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 +#: actions/smssettings.php:126 lib/applicationeditform.php:331 +#: lib/applicationeditform.php:332 msgid "Cancel" msgstr "انصراف" @@ -1120,7 +1377,7 @@ msgid "Cannot normalize that email address" msgstr "نمی‌توان نشانی را قانونی کرد" #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:157 +#: actions/siteadminpanel.php:143 msgid "Not a valid email address." msgstr "یک آدرس ایمیل معتبر نیست." @@ -1132,7 +1389,7 @@ msgstr "هم اکنون نشانی شما همین است." msgid "That email address already belongs to another user." msgstr "این نشانی در حال حاضر متعلق به فرد دیگری است." -#: actions/emailsettings.php:353 actions/imsettings.php:317 +#: actions/emailsettings.php:353 actions/imsettings.php:319 #: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." msgstr "نمی‌توان کد تایید را اضافه کرد." @@ -1193,7 +1450,7 @@ msgstr "این پیام هم اکنون دوست داشتنی شده است." msgid "Disfavor favorite" msgstr "دوست ندارم" -#: actions/favorited.php:65 lib/popularnoticesection.php:88 +#: actions/favorited.php:65 lib/popularnoticesection.php:91 #: lib/publicgroupnav.php:93 msgid "Popular notices" msgstr "آگهی‌های محبوب" @@ -1339,7 +1596,7 @@ msgstr "هم اکنون دسترسی کاربر به گروه مسدود شده msgid "User is not a member of group." msgstr "کاربر عضو گروه نیست." -#: actions/groupblock.php:136 actions/groupmembers.php:314 +#: actions/groupblock.php:136 actions/groupmembers.php:316 msgid "Block user from group" msgstr "دسترسی کاربر به گروه را مسدود کن" @@ -1431,23 +1688,23 @@ msgstr "اعضای گروه %s، صفحهٔ %d" msgid "A list of the users in this group." msgstr "یک فهرست از کاربران در این گروه" -#: actions/groupmembers.php:175 lib/action.php:442 lib/groupnav.php:107 +#: actions/groupmembers.php:175 lib/action.php:448 lib/groupnav.php:107 msgid "Admin" msgstr "مدیر" -#: actions/groupmembers.php:346 lib/blockform.php:69 +#: actions/groupmembers.php:348 lib/blockform.php:69 msgid "Block" msgstr "بازداشتن" -#: actions/groupmembers.php:441 +#: actions/groupmembers.php:443 msgid "Make user an admin of the group" msgstr "کاربر یک مدیر گروه شود" -#: actions/groupmembers.php:473 +#: actions/groupmembers.php:475 msgid "Make Admin" msgstr "مدیر شود" -#: actions/groupmembers.php:473 +#: actions/groupmembers.php:475 msgid "Make this user an admin" msgstr "این کاربر یک مدیر شود" @@ -1626,6 +1883,11 @@ msgstr "" msgid "That is not your Jabber ID." msgstr "این شناسه‌ی Jabber شما نیست." +#: actions/inbox.php:59 +#, fuzzy, php-format +msgid "Inbox for %1$s - page %2$d" +msgstr "صندوق ورودی %s" + #: actions/inbox.php:62 #, php-format msgid "Inbox for %s" @@ -1705,7 +1967,7 @@ msgstr "پیام خصوصی" msgid "Optionally add a personal message to the invitation." msgstr "اگر دوست دارید می‌توانید یک پیام به همراه دعوت نامه ارسال کنید." -#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:237 +#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:236 msgid "Send" msgstr "فرستادن" @@ -1779,7 +2041,7 @@ msgstr "نام کاربری یا رمز عبور نادرست." msgid "Error setting user. You are probably not authorized." msgstr "خطا در تنظیم کاربر. شما احتمالا اجازه ی این کار را ندارید." -#: actions/login.php:188 actions/login.php:241 lib/action.php:460 +#: actions/login.php:188 actions/login.php:241 lib/action.php:466 #: lib/logingroupnav.php:79 msgid "Login" msgstr "ورود" @@ -1788,17 +2050,6 @@ msgstr "ورود" msgid "Login to site" msgstr "ورود به وب‌گاه" -#: actions/login.php:230 actions/profilesettings.php:106 -#: actions/register.php:424 actions/showgroup.php:236 actions/tagother.php:94 -#: lib/groupeditform.php:152 lib/userprofile.php:131 -msgid "Nickname" -msgstr "نام کاربری" - -#: actions/login.php:233 actions/register.php:429 -#: lib/accountsettingsaction.php:116 -msgid "Password" -msgstr "گذرواژه" - #: actions/login.php:236 actions/register.php:478 msgid "Remember me" msgstr "مرا به یاد بسپار" @@ -1828,21 +2079,21 @@ msgstr "" "با نام‌کاربری و گذزواژه‌ی خود وارد شوید. نام‌کاربری ندارید؟ یک نام‌کاربری [ثبت ]" "(%%action.register%%) کنید." -#: actions/makeadmin.php:91 +#: actions/makeadmin.php:92 msgid "Only an admin can make another user an admin." msgstr "فقط یک مدیر می‌تواند کاربر دیگری را مدیر کند." -#: actions/makeadmin.php:95 +#: actions/makeadmin.php:96 #, fuzzy, php-format msgid "%1$s is already an admin for group \"%2$s\"." msgstr "%s از قبل مدیر گروه %s بود." -#: actions/makeadmin.php:132 +#: actions/makeadmin.php:133 #, fuzzy, php-format msgid "Can't get membership record for %1$s in group %2$s." msgstr "نمی‌توان اطلاعات عضویت %s را در گروه %s به دست آورد." -#: actions/makeadmin.php:145 +#: actions/makeadmin.php:146 #, fuzzy, php-format msgid "Can't make %1$s an admin for group %2$s." msgstr "نمی‌توان %s را مدیر گروه %s کرد." @@ -1851,6 +2102,30 @@ msgstr "نمی‌توان %s را مدیر گروه %s کرد." msgid "No current status" msgstr "بدون وضعیت فعلی" +#: actions/newapplication.php:52 +#, fuzzy +msgid "New Application" +msgstr "چنین پیامی وجود ندارد." + +#: actions/newapplication.php:64 +#, fuzzy +msgid "You must be logged in to register an application." +msgstr "برای ساخت یک گروه، باید وارد شده باشید." + +#: actions/newapplication.php:143 +#, fuzzy +msgid "Use this form to register a new application." +msgstr "از این فرم برای ساختن یک گروه جدید استفاده کنید" + +#: actions/newapplication.php:176 +msgid "Source URL is required." +msgstr "" + +#: actions/newapplication.php:258 actions/newapplication.php:267 +#, fuzzy +msgid "Could not create application." +msgstr "نمی‌توان نام‌های مستعار را ساخت." + #: actions/newgroup.php:53 msgid "New group" msgstr "گروه جدید" @@ -1963,6 +2238,51 @@ msgstr "فرتادن اژیر" msgid "Nudge sent!" msgstr "سقلمه فرستاده شد!" +#: actions/oauthappssettings.php:59 +#, fuzzy +msgid "You must be logged in to list your applications." +msgstr "برای ویرایش گروه باید وارد شوید." + +#: actions/oauthappssettings.php:74 +#, fuzzy +msgid "OAuth applications" +msgstr "انتخابات دیگر" + +#: actions/oauthappssettings.php:85 +msgid "Applications you have registered" +msgstr "" + +#: actions/oauthappssettings.php:135 +#, php-format +msgid "You have not registered any applications yet." +msgstr "" + +#: actions/oauthconnectionssettings.php:72 +msgid "Connected applications" +msgstr "" + +#: actions/oauthconnectionssettings.php:83 +msgid "You have allowed the following applications to access you account." +msgstr "" + +#: actions/oauthconnectionssettings.php:175 +#, fuzzy +msgid "You are not a user of that application." +msgstr "شما یک کاربر این گروه نیستید." + +#: actions/oauthconnectionssettings.php:186 +msgid "Unable to revoke access for app: " +msgstr "" + +#: actions/oauthconnectionssettings.php:198 +#, php-format +msgid "You have not authorized any applications to use your account." +msgstr "" + +#: actions/oauthconnectionssettings.php:211 +msgid "Developers can edit the registration settings for their applications " +msgstr "" + #: actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" msgstr "ابن خبر ذخیره ای ندارد ." @@ -1980,8 +2300,8 @@ msgstr "نوع محتوا " msgid "Only " msgstr " فقط" -#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1033 -#: lib/api.php:1061 lib/api.php:1171 +#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 +#: lib/api.php:1068 lib/api.php:1177 msgid "Not a supported data format." msgstr "یک قالب دادهٔ پشتیبانی‌شده نیست." @@ -1994,7 +2314,8 @@ msgid "Notice Search" msgstr "جست‌وجوی آگهی‌ها" #: actions/othersettings.php:60 -msgid "Other Settings" +#, fuzzy +msgid "Other settings" msgstr "تنظیمات دیگر" #: actions/othersettings.php:71 @@ -2049,6 +2370,11 @@ msgstr "علامت بی اعتبار یا منقضی." msgid "Login token expired." msgstr "ورود به وب‌گاه" +#: actions/outbox.php:58 +#, fuzzy, php-format +msgid "Outbox for %1$s - page %2$d" +msgstr "فرستاده‌های %s" + #: actions/outbox.php:61 #, php-format msgid "Outbox for %s" @@ -2121,7 +2447,7 @@ msgstr "نمی‌توان گذرواژه جدید را ذخیره کرد." msgid "Password saved." msgstr "گذرواژه ذخیره شد." -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:326 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:331 msgid "Paths" msgstr "مسیر ها" @@ -2129,133 +2455,149 @@ msgstr "مسیر ها" msgid "Path and server settings for this StatusNet site." msgstr "تنظیمات و نشانی محلی این سایت استاتوس‌نتی" -#: actions/pathsadminpanel.php:140 +#: actions/pathsadminpanel.php:157 #, php-format msgid "Theme directory not readable: %s" msgstr "شاخه‌ی پوسته‌ها خواندنی نیست: %s" -#: actions/pathsadminpanel.php:146 +#: actions/pathsadminpanel.php:163 #, php-format msgid "Avatar directory not writable: %s" msgstr "شاخه‌ی چهره‌ها نوشتنی نیست: %s" -#: actions/pathsadminpanel.php:152 +#: actions/pathsadminpanel.php:169 #, php-format msgid "Background directory not writable: %s" msgstr "شاخه‌ی پس زمینه‌ها نوشتنی نیست: %s" -#: actions/pathsadminpanel.php:160 +#: actions/pathsadminpanel.php:177 #, php-format msgid "Locales directory not readable: %s" msgstr "پوشه‌ی تنظیمات محلی خواندنی نیست: %s" -#: actions/pathsadminpanel.php:166 +#: actions/pathsadminpanel.php:183 msgid "Invalid SSL server. The maximum length is 255 characters." msgstr "" -#: actions/pathsadminpanel.php:217 actions/siteadminpanel.php:58 +#: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58 #: lib/adminpanelaction.php:311 msgid "Site" msgstr "سایت" -#: actions/pathsadminpanel.php:221 +#: actions/pathsadminpanel.php:238 +msgid "Server" +msgstr "کارگزار" + +#: actions/pathsadminpanel.php:238 +msgid "Site's server hostname." +msgstr "" + +#: actions/pathsadminpanel.php:242 msgid "Path" msgstr "مسیر" -#: actions/pathsadminpanel.php:221 +#: actions/pathsadminpanel.php:242 msgid "Site path" msgstr "مسیر وب‌گاه" -#: actions/pathsadminpanel.php:225 +#: actions/pathsadminpanel.php:246 msgid "Path to locales" msgstr "نشانی تنظیمات محلی" -#: actions/pathsadminpanel.php:225 +#: actions/pathsadminpanel.php:246 msgid "Directory path to locales" msgstr "" -#: actions/pathsadminpanel.php:232 +#: actions/pathsadminpanel.php:250 +msgid "Fancy URLs" +msgstr "" + +#: actions/pathsadminpanel.php:252 +msgid "Use fancy (more readable and memorable) URLs?" +msgstr "" + +#: actions/pathsadminpanel.php:259 msgid "Theme" msgstr "پوسته" -#: actions/pathsadminpanel.php:237 +#: actions/pathsadminpanel.php:264 msgid "Theme server" msgstr "کارگزار پوسته" -#: actions/pathsadminpanel.php:241 +#: actions/pathsadminpanel.php:268 msgid "Theme path" msgstr "مسیر پوسته" -#: actions/pathsadminpanel.php:245 +#: actions/pathsadminpanel.php:272 msgid "Theme directory" msgstr "شاخهٔ پوسته" -#: actions/pathsadminpanel.php:252 +#: actions/pathsadminpanel.php:279 msgid "Avatars" msgstr "چهره‌ها" -#: actions/pathsadminpanel.php:257 +#: actions/pathsadminpanel.php:284 msgid "Avatar server" msgstr "کارگزار نیم‌رخ" -#: actions/pathsadminpanel.php:261 +#: actions/pathsadminpanel.php:288 msgid "Avatar path" msgstr "مسیر نیم‌رخ" -#: actions/pathsadminpanel.php:265 +#: actions/pathsadminpanel.php:292 msgid "Avatar directory" msgstr "شاخهٔ نیم‌رخ" -#: actions/pathsadminpanel.php:274 +#: actions/pathsadminpanel.php:301 msgid "Backgrounds" msgstr "پس زمینه‌ها" -#: actions/pathsadminpanel.php:278 +#: actions/pathsadminpanel.php:305 msgid "Background server" msgstr "کارگذار تصاویر پیش‌زمینه" -#: actions/pathsadminpanel.php:282 +#: actions/pathsadminpanel.php:309 msgid "Background path" msgstr "مسیر تصاویر پیش‌زمینه" -#: actions/pathsadminpanel.php:286 +#: actions/pathsadminpanel.php:313 msgid "Background directory" msgstr "شاخهٔ تصاویر پیش‌زمینه" -#: actions/pathsadminpanel.php:293 +#: actions/pathsadminpanel.php:320 msgid "SSL" msgstr "" -#: actions/pathsadminpanel.php:296 actions/siteadminpanel.php:346 +#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 msgid "Never" msgstr "هیچ وقت" -#: actions/pathsadminpanel.php:297 +#: actions/pathsadminpanel.php:324 msgid "Sometimes" msgstr "گاهی اوقات" -#: actions/pathsadminpanel.php:298 +#: actions/pathsadminpanel.php:325 msgid "Always" msgstr "برای همیشه" -#: actions/pathsadminpanel.php:302 +#: actions/pathsadminpanel.php:329 msgid "Use SSL" msgstr "استفاده از SSL" -#: actions/pathsadminpanel.php:303 +#: actions/pathsadminpanel.php:330 msgid "When to use SSL" msgstr "" -#: actions/pathsadminpanel.php:308 +#: actions/pathsadminpanel.php:335 #, fuzzy msgid "SSL server" msgstr "کارگزار" -#: actions/pathsadminpanel.php:309 +#: actions/pathsadminpanel.php:336 msgid "Server to direct SSL requests to" msgstr "" -#: actions/pathsadminpanel.php:325 +#: actions/pathsadminpanel.php:352 msgid "Save paths" msgstr "نشانی ذخیره سازی" @@ -2317,7 +2659,7 @@ msgid "Full name" msgstr "نام‌کامل" #: actions/profilesettings.php:115 actions/register.php:453 -#: lib/groupeditform.php:161 +#: lib/applicationeditform.php:228 lib/groupeditform.php:161 msgid "Homepage" msgstr "صفحهٔ خانگی" @@ -2340,7 +2682,7 @@ msgstr "شرح‌حال" #: actions/profilesettings.php:132 actions/register.php:471 #: actions/showgroup.php:256 actions/tagother.php:112 -#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:164 msgid "Location" msgstr "موقعیت" @@ -2364,7 +2706,7 @@ msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" -#: actions/profilesettings.php:151 actions/siteadminpanel.php:294 +#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 msgid "Language" msgstr "زبان" @@ -2390,7 +2732,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "" -#: actions/profilesettings.php:235 actions/siteadminpanel.php:164 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 msgid "Timezone not selected." msgstr "منطقه‌ی زمانی انتخاب نشده است." @@ -2403,23 +2745,23 @@ msgstr "کلام بسیار طولانی است( حداکثر ۵۰ کاراکت msgid "Invalid tag: \"%s\"" msgstr "نشان نادرست »%s«" -#: actions/profilesettings.php:302 +#: actions/profilesettings.php:306 msgid "Couldn't update user for autosubscribe." msgstr "" -#: actions/profilesettings.php:359 +#: actions/profilesettings.php:363 msgid "Couldn't save location prefs." msgstr "نمی‌توان تنظیمات مکانی را تنظیم کرد." -#: actions/profilesettings.php:371 +#: actions/profilesettings.php:375 msgid "Couldn't save profile." msgstr "نمی‌توان شناسه را ذخیره کرد." -#: actions/profilesettings.php:379 +#: actions/profilesettings.php:383 msgid "Couldn't save tags." msgstr "نمی‌توان نشان را ذخیره کرد." -#: actions/profilesettings.php:387 lib/adminpanelaction.php:137 +#: actions/profilesettings.php:391 lib/adminpanelaction.php:137 msgid "Settings saved." msgstr "تنظیمات ذخیره شد." @@ -2441,36 +2783,36 @@ msgstr "خط زمانی عمومی، صفحه‌ی %d" msgid "Public timeline" msgstr "خط زمانی عمومی" -#: actions/public.php:151 +#: actions/public.php:159 msgid "Public Stream Feed (RSS 1.0)" msgstr "" -#: actions/public.php:155 +#: actions/public.php:163 msgid "Public Stream Feed (RSS 2.0)" msgstr "" -#: actions/public.php:159 +#: actions/public.php:167 msgid "Public Stream Feed (Atom)" msgstr "" -#: actions/public.php:179 +#: actions/public.php:187 #, php-format msgid "" "This is the public timeline for %%site.name%% but no one has posted anything " "yet." msgstr "" -#: actions/public.php:182 +#: actions/public.php:190 msgid "Be the first to post!" msgstr "اولین کسی باشید که پیام می‌فرستد!" -#: actions/public.php:186 +#: actions/public.php:194 #, php-format msgid "" "Why not [register an account](%%action.register%%) and be the first to post!" msgstr "چرا [ثبت نام](%%action.register%%) نمی‌کنید و اولین پیام را نمی‌فرستید؟" -#: actions/public.php:233 +#: actions/public.php:241 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2479,7 +2821,7 @@ msgid "" "friends, family, and colleagues! ([Read more](%%doc.help%%))" msgstr "" -#: actions/public.php:238 +#: actions/public.php:246 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2512,7 +2854,7 @@ msgid "" "one!" msgstr "" -#: actions/publictagcloud.php:131 +#: actions/publictagcloud.php:134 msgid "Tag cloud" msgstr "" @@ -2652,7 +2994,7 @@ msgstr "با عرض تاسف، کد دعوت نا معتبر است." msgid "Registration successful" msgstr "ثبت نام با موفقیت انجام شد." -#: actions/register.php:114 actions/register.php:503 lib/action.php:457 +#: actions/register.php:114 actions/register.php:503 lib/action.php:463 #: lib/logingroupnav.php:85 msgid "Register" msgstr "ثبت نام" @@ -2692,7 +3034,7 @@ msgid "Same as password above. Required." msgstr "" #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:270 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 msgid "Email" msgstr "پست الکترونیکی" @@ -2780,7 +3122,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:365 +#: lib/userprofile.php:368 msgid "Subscribe" msgstr "" @@ -2816,7 +3158,7 @@ msgstr "شما نمی توانید آگهی خودتان را تکرار کنی msgid "You already repeated that notice." msgstr "شما قبلا آن آگهی را تکرار کردید." -#: actions/repeat.php:114 lib/noticelist.php:629 +#: actions/repeat.php:114 lib/noticelist.php:656 msgid "Repeated" msgstr "" @@ -2830,6 +3172,11 @@ msgstr "" msgid "Replies to %s" msgstr "پاسخ‌های به %s" +#: actions/replies.php:127 +#, fuzzy, php-format +msgid "Replies to %1$s, page %2$d" +msgstr "پاسخ‌های به %s" + #: actions/replies.php:144 #, php-format msgid "Replies feed for %s (RSS 1.0)" @@ -2873,6 +3220,11 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "" +#: actions/rsd.php:146 actions/version.php:157 +#, fuzzy +msgid "StatusNet" +msgstr "وضعیت حذف شد." + #: actions/sandbox.php:65 actions/unsandbox.php:65 msgid "You cannot sandbox users on this site." msgstr "" @@ -2881,6 +3233,126 @@ msgstr "" msgid "User is already sandboxed." msgstr "" +#: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:336 +msgid "Sessions" +msgstr "" + +#: actions/sessionsadminpanel.php:65 +#, fuzzy +msgid "Session settings for this StatusNet site." +msgstr "تنظیمات ظاهری برای این سایت." + +#: actions/sessionsadminpanel.php:175 +msgid "Handle sessions" +msgstr "" + +#: actions/sessionsadminpanel.php:177 +msgid "Whether to handle sessions ourselves." +msgstr "" + +#: actions/sessionsadminpanel.php:181 +msgid "Session debugging" +msgstr "" + +#: actions/sessionsadminpanel.php:183 +msgid "Turn on debugging output for sessions." +msgstr "" + +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/useradminpanel.php:293 +msgid "Save site settings" +msgstr "" + +#: actions/showapplication.php:82 +#, fuzzy +msgid "You must be logged in to view an application." +msgstr "برای ترک یک گروه، شما باید وارد شده باشید." + +#: actions/showapplication.php:157 +#, fuzzy +msgid "Application profile" +msgstr "ابن خبر ذخیره ای ندارد ." + +#: actions/showapplication.php:159 lib/applicationeditform.php:180 +msgid "Icon" +msgstr "" + +#: actions/showapplication.php:169 actions/version.php:195 +#: lib/applicationeditform.php:195 +#, fuzzy +msgid "Name" +msgstr "نام کاربری" + +#: actions/showapplication.php:178 lib/applicationeditform.php:222 +#, fuzzy +msgid "Organization" +msgstr "صفحه بندى" + +#: actions/showapplication.php:187 actions/version.php:198 +#: lib/applicationeditform.php:209 lib/groupeditform.php:172 +msgid "Description" +msgstr "" + +#: actions/showapplication.php:192 actions/showgroup.php:429 +#: lib/profileaction.php:174 +msgid "Statistics" +msgstr "آمار" + +#: actions/showapplication.php:203 +#, php-format +msgid "Created by %1$s - %2$s access by default - %3$d users" +msgstr "" + +#: actions/showapplication.php:213 +msgid "Application actions" +msgstr "" + +#: actions/showapplication.php:236 +msgid "Reset key & secret" +msgstr "" + +#: actions/showapplication.php:261 +msgid "Application info" +msgstr "" + +#: actions/showapplication.php:263 +msgid "Consumer key" +msgstr "" + +#: actions/showapplication.php:268 +msgid "Consumer secret" +msgstr "" + +#: actions/showapplication.php:273 +msgid "Request token URL" +msgstr "" + +#: actions/showapplication.php:278 +msgid "Access token URL" +msgstr "" + +#: actions/showapplication.php:283 +#, fuzzy +msgid "Authorize URL" +msgstr "مؤلف" + +#: actions/showapplication.php:288 +msgid "" +"Note: We support HMAC-SHA1 signatures. We do not support the plaintext " +"signature method." +msgstr "" + +#: actions/showapplication.php:309 +#, fuzzy +msgid "Are you sure you want to reset your consumer key and secret?" +msgstr "آیا اطمینان دارید که می‌خواهید این پیام را پاک کنید؟" + +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%1$s's favorite notices, page %2$d" +msgstr "دوست داشتنی های %s" + #: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "ناتوان در بازیابی آگهی های محبوب." @@ -2930,17 +3402,22 @@ msgstr "این یک راه است برای به اشتراک گذاشتن آنچ msgid "%s group" msgstr "" +#: actions/showgroup.php:84 +#, fuzzy, php-format +msgid "%1$s group, page %2$d" +msgstr "اعضای گروه %s، صفحهٔ %d" + #: actions/showgroup.php:218 msgid "Group profile" msgstr "" #: actions/showgroup.php:263 actions/tagother.php:118 -#: actions/userauthorization.php:167 lib/userprofile.php:177 +#: actions/userauthorization.php:175 lib/userprofile.php:177 msgid "URL" msgstr "" #: actions/showgroup.php:274 actions/tagother.php:128 -#: actions/userauthorization.php:179 lib/userprofile.php:194 +#: actions/userauthorization.php:187 lib/userprofile.php:194 msgid "Note" msgstr "" @@ -2986,10 +3463,6 @@ msgstr "هیچ" msgid "All members" msgstr "همه ی اعضا" -#: actions/showgroup.php:429 lib/profileaction.php:174 -msgid "Statistics" -msgstr "آمار" - #: actions/showgroup.php:432 msgid "Created" msgstr "ساخته شد" @@ -3044,6 +3517,11 @@ msgstr "" msgid " tagged %s" msgstr "" +#: actions/showstream.php:79 +#, fuzzy, php-format +msgid "%1$s, page %2$d" +msgstr "%s کاربران مسدود شده، صفحه‌ی %d" + #: actions/showstream.php:122 #, fuzzy, php-format msgid "Notice feed for %1$s tagged %2$s (RSS 1.0)" @@ -3069,12 +3547,12 @@ msgstr "" msgid "FOAF for %s" msgstr "" -#: actions/showstream.php:191 +#: actions/showstream.php:200 #, fuzzy, php-format msgid "This is the timeline for %1$s but %2$s hasn't posted anything yet." msgstr "این خط‌زمانی %s و دوستانش است، اما هیچ‌یک تاکنون چیزی پست نکرده‌اند." -#: actions/showstream.php:196 +#: actions/showstream.php:205 msgid "" "Seen anything interesting recently? You haven't posted any notices yet, now " "would be a good time to start :)" @@ -3082,7 +3560,7 @@ msgstr "" "اخیرا چیز جالب توجه ای دیده اید؟ شما تا کنون آگهی ارسال نکرده اید، الان می " "تواند زمان خوبی برای شروع باشد :)" -#: actions/showstream.php:198 +#: actions/showstream.php:207 #, fuzzy, php-format msgid "" "You can try to nudge %1$s or [post something to his or her attention](%%%%" @@ -3091,7 +3569,7 @@ msgstr "" "اولین کسی باشید که در [این موضوع](%%%%action.newnotice%%%%?status_textarea=%" "s) پیام می‌فرستد." -#: actions/showstream.php:234 +#: actions/showstream.php:243 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3100,7 +3578,7 @@ msgid "" "follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showstream.php:239 +#: actions/showstream.php:248 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3108,7 +3586,7 @@ msgid "" "[StatusNet](http://status.net/) tool. " msgstr "" -#: actions/showstream.php:313 +#: actions/showstream.php:305 #, php-format msgid "Repeat of %s" msgstr "" @@ -3125,198 +3603,146 @@ msgstr "کاربر قبلا ساکت شده است." msgid "Basic settings for this StatusNet site." msgstr "تنظیمات پایه ای برای این سایت StatusNet." -#: actions/siteadminpanel.php:146 +#: actions/siteadminpanel.php:132 msgid "Site name must have non-zero length." msgstr "نام سایت باید طولی غیر صفر داشته باشد." -#: actions/siteadminpanel.php:154 +#: actions/siteadminpanel.php:140 #, fuzzy msgid "You must have a valid contact email address." msgstr "شما باید یک آدرس ایمیل قابل قبول برای ارتباط داشته باشید" -#: actions/siteadminpanel.php:172 +#: actions/siteadminpanel.php:158 #, php-format msgid "Unknown language \"%s\"." msgstr "" -#: actions/siteadminpanel.php:179 +#: actions/siteadminpanel.php:165 msgid "Invalid snapshot report URL." msgstr "" -#: actions/siteadminpanel.php:185 +#: actions/siteadminpanel.php:171 msgid "Invalid snapshot run value." msgstr "" -#: actions/siteadminpanel.php:191 +#: actions/siteadminpanel.php:177 msgid "Snapshot frequency must be a number." msgstr "" -#: actions/siteadminpanel.php:197 +#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "" -#: actions/siteadminpanel.php:203 +#: actions/siteadminpanel.php:189 msgid "Dupe limit must 1 or more seconds." msgstr "" -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:239 msgid "General" msgstr "" -#: actions/siteadminpanel.php:256 +#: actions/siteadminpanel.php:242 msgid "Site name" msgstr "نام وب‌گاه" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:243 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "نام وب‌گاه شما، مانند «میکروبلاگ شرکت شما»" -#: actions/siteadminpanel.php:261 +#: actions/siteadminpanel.php:247 msgid "Brought by" msgstr "أورده شده به وسیله ی" -#: actions/siteadminpanel.php:262 +#: actions/siteadminpanel.php:248 msgid "Text used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:266 +#: actions/siteadminpanel.php:252 msgid "Brought by URL" msgstr "" -#: actions/siteadminpanel.php:267 +#: actions/siteadminpanel.php:253 msgid "URL used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:271 +#: actions/siteadminpanel.php:257 msgid "Contact email address for your site" msgstr "" -#: actions/siteadminpanel.php:277 +#: actions/siteadminpanel.php:263 msgid "Local" msgstr "محلی" -#: actions/siteadminpanel.php:288 +#: actions/siteadminpanel.php:274 msgid "Default timezone" msgstr "منطقه ی زمانی پیش فرض" -#: actions/siteadminpanel.php:289 +#: actions/siteadminpanel.php:275 msgid "Default timezone for the site; usually UTC." msgstr "منظقه ی زمانی پیش فرض برای سایت؛ معمولا UTC." -#: actions/siteadminpanel.php:295 +#: actions/siteadminpanel.php:281 msgid "Default site language" msgstr "زبان پیش فرض سایت" -#: actions/siteadminpanel.php:303 -msgid "URLs" -msgstr "" - -#: actions/siteadminpanel.php:306 -msgid "Server" -msgstr "کارگزار" - -#: actions/siteadminpanel.php:306 -msgid "Site's server hostname." -msgstr "" - -#: actions/siteadminpanel.php:310 -msgid "Fancy URLs" -msgstr "" - -#: actions/siteadminpanel.php:312 -msgid "Use fancy (more readable and memorable) URLs?" -msgstr "" - -#: actions/siteadminpanel.php:318 -msgid "Access" -msgstr "دسترسی" - -#: actions/siteadminpanel.php:321 -msgid "Private" -msgstr "خصوصی" - -#: actions/siteadminpanel.php:323 -msgid "Prohibit anonymous users (not logged in) from viewing site?" -msgstr "" - -#: actions/siteadminpanel.php:327 -msgid "Invite only" -msgstr "فقط دعوت کردن" - -#: actions/siteadminpanel.php:329 -msgid "Make registration invitation only." -msgstr "تنها آماده کردن دعوت نامه های ثبت نام." - -#: actions/siteadminpanel.php:333 -msgid "Closed" -msgstr "مسدود" - -#: actions/siteadminpanel.php:335 -msgid "Disable new registrations." -msgstr "غیر فعال کردن نام نوبسی جدید" - -#: actions/siteadminpanel.php:341 +#: actions/siteadminpanel.php:289 msgid "Snapshots" msgstr "" -#: actions/siteadminpanel.php:344 +#: actions/siteadminpanel.php:292 msgid "Randomly during Web hit" msgstr "" -#: actions/siteadminpanel.php:345 +#: actions/siteadminpanel.php:293 msgid "In a scheduled job" msgstr "" -#: actions/siteadminpanel.php:347 +#: actions/siteadminpanel.php:295 msgid "Data snapshots" msgstr "" -#: actions/siteadminpanel.php:348 +#: actions/siteadminpanel.php:296 msgid "When to send statistical data to status.net servers" msgstr "" -#: actions/siteadminpanel.php:353 +#: actions/siteadminpanel.php:301 msgid "Frequency" msgstr "" -#: actions/siteadminpanel.php:354 +#: actions/siteadminpanel.php:302 msgid "Snapshots will be sent once every N web hits" msgstr "" -#: actions/siteadminpanel.php:359 +#: actions/siteadminpanel.php:307 msgid "Report URL" msgstr "" -#: actions/siteadminpanel.php:360 +#: actions/siteadminpanel.php:308 msgid "Snapshots will be sent to this URL" msgstr "" -#: actions/siteadminpanel.php:367 +#: actions/siteadminpanel.php:315 msgid "Limits" msgstr "محدودیت ها" -#: actions/siteadminpanel.php:370 +#: actions/siteadminpanel.php:318 msgid "Text limit" msgstr "محدودیت متن" -#: actions/siteadminpanel.php:370 +#: actions/siteadminpanel.php:318 msgid "Maximum number of characters for notices." msgstr "بیشینهٔ تعداد حروف برای آگهی‌ها" -#: actions/siteadminpanel.php:374 +#: actions/siteadminpanel.php:322 msgid "Dupe limit" msgstr "" -#: actions/siteadminpanel.php:374 +#: actions/siteadminpanel.php:322 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" "چه مدت کاربران باید منتظر بمانند ( به ثانیه ) تا همان چیز را مجددا ارسال " "کنند." -#: actions/siteadminpanel.php:388 actions/useradminpanel.php:313 -msgid "Save site settings" -msgstr "" - #: actions/smssettings.php:58 #, fuzzy msgid "SMS settings" @@ -3417,15 +3843,26 @@ msgstr "کدی وارد نشد" msgid "You are not subscribed to that profile." msgstr "شما به این پروفيل متعهد نشدید" -#: actions/subedit.php:83 +#: actions/subedit.php:83 classes/Subscription.php:89 +#: classes/Subscription.php:116 msgid "Could not save subscription." msgstr "" -#: actions/subscribe.php:55 -msgid "Not a local user." +#: actions/subscribe.php:77 +msgid "This action only accepts POST requests." msgstr "" -#: actions/subscribe.php:69 +#: actions/subscribe.php:107 +#, fuzzy +msgid "No such profile." +msgstr "چنین پرونده‌ای وجود ندارد." + +#: actions/subscribe.php:117 +#, fuzzy +msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." +msgstr "شما به این پروفيل متعهد نشدید" + +#: actions/subscribe.php:145 msgid "Subscribed" msgstr "" @@ -3485,7 +3922,7 @@ msgstr "" msgid "These are the people whose notices %s listens to." msgstr "" -#: actions/subscriptions.php:121 +#: actions/subscriptions.php:126 #, php-format msgid "" "You're not listening to anyone's notices right now, try subscribing to " @@ -3495,19 +3932,24 @@ msgid "" "automatically subscribe to people you already follow there." msgstr "" -#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#: actions/subscriptions.php:128 actions/subscriptions.php:132 #, php-format msgid "%s is not listening to anyone." msgstr "" -#: actions/subscriptions.php:194 +#: actions/subscriptions.php:199 msgid "Jabber" msgstr "" -#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:204 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "" +#: actions/tag.php:68 +#, fuzzy, php-format +msgid "Notices tagged with %1$s, page %2$d" +msgstr "کاربران خود برچسب‌گذاری شده با %s - صفحهٔ %d" + #: actions/tag.php:86 #, php-format msgid "Notice feed for tag %s (RSS 1.0)" @@ -3536,7 +3978,8 @@ msgstr "" msgid "User profile" msgstr "پروفایل کاربر" -#: actions/tagother.php:81 lib/userprofile.php:102 +#: actions/tagother.php:81 actions/userauthorization.php:132 +#: lib/userprofile.php:102 msgid "Photo" msgstr "" @@ -3591,7 +4034,7 @@ msgstr "" msgid "Unsubscribed" msgstr "" -#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#: actions/updateprofile.php:62 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -3606,84 +4049,64 @@ msgstr "کاربر" msgid "User settings for this StatusNet site." msgstr "" -#: actions/useradminpanel.php:149 +#: actions/useradminpanel.php:148 msgid "Invalid bio limit. Must be numeric." msgstr "" -#: actions/useradminpanel.php:155 +#: actions/useradminpanel.php:154 msgid "Invalid welcome text. Max length is 255 characters." msgstr "" -#: actions/useradminpanel.php:165 +#: actions/useradminpanel.php:164 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 +#: actions/useradminpanel.php:217 lib/accountsettingsaction.php:108 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:221 msgid "Bio Limit" msgstr "" -#: actions/useradminpanel.php:223 +#: actions/useradminpanel.php:222 msgid "Maximum length of a profile bio in characters." msgstr "حداکثر طول یک زندگی نامه(در پروفایل) بر حسب کاراکتر." -#: actions/useradminpanel.php:231 +#: actions/useradminpanel.php:230 msgid "New users" msgstr "" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:234 msgid "New user welcome" msgstr "خوشامدگویی کاربر جدید" -#: actions/useradminpanel.php:236 +#: actions/useradminpanel.php:235 msgid "Welcome text for new users (Max 255 chars)." msgstr "پیام خوشامدگویی برای کاربران جدید( حداکثر 255 کاراکتر)" -#: actions/useradminpanel.php:241 +#: actions/useradminpanel.php:240 msgid "Default subscription" msgstr "" -#: actions/useradminpanel.php:242 +#: actions/useradminpanel.php:241 msgid "Automatically subscribe new users to this user." msgstr "" -#: actions/useradminpanel.php:251 +#: actions/useradminpanel.php:250 msgid "Invitations" msgstr "دعوت نامه ها" -#: actions/useradminpanel.php:256 +#: actions/useradminpanel.php:255 msgid "Invitations enabled" msgstr "دعوت نامه ها فعال شدند" -#: actions/useradminpanel.php:258 +#: actions/useradminpanel.php:257 msgid "Whether to allow users to invite new users." msgstr "خواه به کاربران اجازه ی دعوت کردن کاربران جدید داده شود." -#: actions/useradminpanel.php:265 -msgid "Sessions" -msgstr "" - -#: actions/useradminpanel.php:270 -msgid "Handle sessions" -msgstr "" - -#: actions/useradminpanel.php:272 -msgid "Whether to handle sessions ourselves." -msgstr "" - -#: actions/useradminpanel.php:276 -msgid "Session debugging" -msgstr "" - -#: actions/useradminpanel.php:278 -msgid "Turn on debugging output for sessions." -msgstr "" - #: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "" @@ -3695,84 +4118,84 @@ msgid "" "click “Reject”." msgstr "" -#: actions/userauthorization.php:188 actions/version.php:165 +#: actions/userauthorization.php:196 actions/version.php:165 msgid "License" msgstr "لیسانس" -#: actions/userauthorization.php:209 +#: actions/userauthorization.php:217 msgid "Accept" msgstr "پذیرفتن" -#: actions/userauthorization.php:210 lib/subscribeform.php:115 +#: actions/userauthorization.php:218 lib/subscribeform.php:115 #: lib/subscribeform.php:139 msgid "Subscribe to this user" msgstr "تصویب این کاریر" -#: actions/userauthorization.php:211 +#: actions/userauthorization.php:219 msgid "Reject" msgstr "رد کردن" -#: actions/userauthorization.php:212 +#: actions/userauthorization.php:220 msgid "Reject this subscription" msgstr "" -#: actions/userauthorization.php:225 +#: actions/userauthorization.php:232 msgid "No authorization request!" msgstr "" -#: actions/userauthorization.php:247 +#: actions/userauthorization.php:254 msgid "Subscription authorized" msgstr "" -#: actions/userauthorization.php:249 +#: actions/userauthorization.php:256 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 +#: actions/userauthorization.php:266 msgid "Subscription rejected" msgstr "" -#: actions/userauthorization.php:261 +#: actions/userauthorization.php:268 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 +#: actions/userauthorization.php:303 #, php-format msgid "Listener URI ‘%s’ not found here." msgstr "" -#: actions/userauthorization.php:301 +#: actions/userauthorization.php:308 #, php-format msgid "Listenee URI ‘%s’ is too long." msgstr "" -#: actions/userauthorization.php:307 +#: actions/userauthorization.php:314 #, php-format msgid "Listenee URI ‘%s’ is a local user." msgstr "" -#: actions/userauthorization.php:322 +#: actions/userauthorization.php:329 #, php-format msgid "Profile URL ‘%s’ is for a local user." msgstr "" -#: actions/userauthorization.php:338 +#: actions/userauthorization.php:345 #, php-format msgid "Avatar URL ‘%s’ is not valid." msgstr "" -#: actions/userauthorization.php:343 +#: actions/userauthorization.php:350 #, php-format msgid "Can’t read avatar URL ‘%s’." msgstr "" -#: actions/userauthorization.php:348 +#: actions/userauthorization.php:355 #, php-format msgid "Wrong image type for avatar URL ‘%s’." msgstr "" @@ -3791,6 +4214,11 @@ msgstr "" msgid "Enjoy your hotdog!" msgstr "از هات داگ خود لذت ببرید!" +#: actions/usergroups.php:64 +#, fuzzy, php-format +msgid "%1$s groups, page %2$d" +msgstr "اعضای گروه %s، صفحهٔ %d" + #: actions/usergroups.php:130 msgid "Search for more groups" msgstr "جستجو برای گروه های بیشتر" @@ -3817,11 +4245,6 @@ msgid "" "Inc. and contributors." msgstr "" -#: actions/version.php:157 -#, fuzzy -msgid "StatusNet" -msgstr "وضعیت حذف شد." - #: actions/version.php:161 msgid "Contributors" msgstr "" @@ -3853,12 +4276,7 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:195 -#, fuzzy -msgid "Name" -msgstr "نام کاربری" - -#: actions/version.php:196 lib/action.php:741 +#: actions/version.php:196 lib/action.php:747 #, fuzzy msgid "Version" msgstr "شخصی" @@ -3868,10 +4286,6 @@ msgstr "شخصی" msgid "Author(s)" msgstr "مؤلف" -#: actions/version.php:198 lib/groupeditform.php:172 -msgid "Description" -msgstr "" - #: classes/File.php:144 #, php-format msgid "" @@ -3919,27 +4333,27 @@ msgstr "پیغام نمی تواند درج گردد" msgid "Could not update message with new URI." msgstr "" -#: classes/Notice.php:171 +#: classes/Notice.php:157 #, php-format msgid "DB error inserting hashtag: %s" msgstr "" -#: classes/Notice.php:225 +#: classes/Notice.php:222 msgid "Problem saving notice. Too long." msgstr "مشکل در ذخیره کردن پیام. بسیار طولانی." -#: classes/Notice.php:229 +#: classes/Notice.php:226 msgid "Problem saving notice. Unknown user." msgstr "مشکل در ذخیره کردن پیام. کاربر نا شناخته." -#: classes/Notice.php:234 +#: classes/Notice.php:231 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" "تعداد خیلی زیاد آگهی و بسیار سریع؛ استراحت کنید و مجددا دقایقی دیگر ارسال " "کنید." -#: classes/Notice.php:240 +#: classes/Notice.php:237 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." @@ -3947,34 +4361,58 @@ msgstr "" "تعداد زیاد پیام های دو نسخه ای و بسرعت؛ استراحت کنید و دقایقی دیگر مجددا " "ارسال کنید." -#: classes/Notice.php:246 +#: classes/Notice.php:243 msgid "You are banned from posting notices on this site." msgstr "شما از فرستادن پست در این سایت مردود شدید ." -#: classes/Notice.php:305 classes/Notice.php:330 +#: classes/Notice.php:309 classes/Notice.php:335 msgid "Problem saving notice." msgstr "مشکل در ذخیره کردن آگهی." -#: classes/Notice.php:1052 -#, php-format -msgid "DB error inserting reply: %s" -msgstr "" +#: classes/Notice.php:882 +#, fuzzy +msgid "Problem saving group inbox." +msgstr "مشکل در ذخیره کردن آگهی." -#: classes/Notice.php:1423 +#: classes/Notice.php:1407 #, php-format msgid "RT @%1$s %2$s" msgstr "" -#: classes/User.php:382 +#: classes/Subscription.php:66 lib/oauthstore.php:465 +msgid "You have been banned from subscribing." +msgstr "" + +#: classes/Subscription.php:70 +msgid "Already subscribed!" +msgstr "قبلا تایید شده !" + +#: classes/Subscription.php:74 +msgid "User has blocked you." +msgstr "" + +#: classes/Subscription.php:157 +msgid "Not subscribed!" +msgstr "تایید نشده!" + +#: classes/Subscription.php:163 +msgid "Couldn't delete self-subscription." +msgstr "" + +#: classes/Subscription.php:179 lib/subs.php:69 +msgid "Couldn't delete subscription." +msgstr "" + +#: classes/User.php:372 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "خوش امدید به %1$s , @%2$s!" -#: classes/User_group.php:380 +#: classes/User_group.php:423 msgid "Could not create group." msgstr "نمیتوان گروه را تشکیل داد" -#: classes/User_group.php:409 +#: classes/User_group.php:452 msgid "Could not set group membership." msgstr "" @@ -4015,140 +4453,136 @@ msgstr "%s گروه %s را ترک کرد." msgid "Untitled page" msgstr "صفحه ی بدون عنوان" -#: lib/action.php:427 +#: lib/action.php:433 msgid "Primary site navigation" msgstr "" -#: lib/action.php:433 +#: lib/action.php:439 msgid "Home" msgstr "خانه" -#: lib/action.php:433 +#: lib/action.php:439 msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:435 -msgid "Account" -msgstr "حساب کاربری" - -#: lib/action.php:435 +#: lib/action.php:441 msgid "Change your email, avatar, password, profile" msgstr "آدرس ایمیل، آواتار، کلمه ی عبور، پروفایل خود را تغییر دهید" -#: lib/action.php:438 +#: lib/action.php:444 msgid "Connect" msgstr "وصل‌شدن" -#: lib/action.php:438 +#: lib/action.php:444 msgid "Connect to services" msgstr "متصل شدن به خدمات" -#: lib/action.php:442 +#: lib/action.php:448 msgid "Change site configuration" msgstr "تغییر پیکربندی سایت" -#: lib/action.php:446 lib/subgroupnav.php:105 +#: lib/action.php:452 lib/subgroupnav.php:105 msgid "Invite" msgstr "دعوت‌کردن" -#: lib/action.php:447 lib/subgroupnav.php:106 +#: lib/action.php:453 lib/subgroupnav.php:106 #, php-format msgid "Invite friends and colleagues to join you on %s" msgstr " به شما ملحق شوند %s دوستان و همکاران را دعوت کنید تا در" -#: lib/action.php:452 +#: lib/action.php:458 msgid "Logout" msgstr "خروج" -#: lib/action.php:452 +#: lib/action.php:458 msgid "Logout from the site" msgstr "خارج شدن از سایت ." -#: lib/action.php:457 +#: lib/action.php:463 msgid "Create an account" msgstr "یک حساب کاربری بسازید" -#: lib/action.php:460 +#: lib/action.php:466 msgid "Login to the site" msgstr "ورود به وب‌گاه" -#: lib/action.php:463 lib/action.php:726 +#: lib/action.php:469 lib/action.php:732 msgid "Help" msgstr "کمک" -#: lib/action.php:463 +#: lib/action.php:469 msgid "Help me!" msgstr "به من کمک کنید!" -#: lib/action.php:466 lib/searchaction.php:127 +#: lib/action.php:472 lib/searchaction.php:127 msgid "Search" msgstr "جست‌وجو" -#: lib/action.php:466 +#: lib/action.php:472 msgid "Search for people or text" msgstr "جستجو برای شخص با متن" -#: lib/action.php:487 +#: lib/action.php:493 msgid "Site notice" msgstr "خبر سایت" -#: lib/action.php:553 +#: lib/action.php:559 msgid "Local views" msgstr "دید محلی" -#: lib/action.php:619 +#: lib/action.php:625 msgid "Page notice" msgstr "خبر صفحه" -#: lib/action.php:721 +#: lib/action.php:727 msgid "Secondary site navigation" msgstr "" -#: lib/action.php:728 +#: lib/action.php:734 msgid "About" msgstr "دربارهٔ" -#: lib/action.php:730 +#: lib/action.php:736 msgid "FAQ" msgstr "سوال‌های رایج" -#: lib/action.php:734 +#: lib/action.php:740 msgid "TOS" msgstr "" -#: lib/action.php:737 +#: lib/action.php:743 msgid "Privacy" msgstr "خصوصی" -#: lib/action.php:739 +#: lib/action.php:745 msgid "Source" msgstr "منبع" -#: lib/action.php:743 +#: lib/action.php:749 msgid "Contact" msgstr "تماس" -#: lib/action.php:745 +#: lib/action.php:751 msgid "Badge" msgstr "" -#: lib/action.php:773 +#: lib/action.php:779 msgid "StatusNet software license" msgstr "StatusNet مجوز نرم افزار" -#: lib/action.php:776 +#: lib/action.php:782 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." "broughtby%%](%%site.broughtbyurl%%). " msgstr "" -#: lib/action.php:778 +#: lib/action.php:784 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "" -#: lib/action.php:780 +#: lib/action.php:786 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4156,32 +4590,54 @@ msgid "" "org/licensing/licenses/agpl-3.0.html)." msgstr "" -#: lib/action.php:794 +#: lib/action.php:801 msgid "Site content license" msgstr "مجوز محتویات سایت" -#: lib/action.php:803 +#: lib/action.php:806 +#, php-format +msgid "Content and data of %1$s are private and confidential." +msgstr "" + +#: lib/action.php:811 +#, php-format +msgid "Content and data copyright by %1$s. All rights reserved." +msgstr "" + +#: lib/action.php:814 +msgid "Content and data copyright by contributors. All rights reserved." +msgstr "" + +#: lib/action.php:827 msgid "All " msgstr "همه " -#: lib/action.php:808 +#: lib/action.php:833 msgid "license." msgstr "مجوز." -#: lib/action.php:1102 +#: lib/action.php:1132 msgid "Pagination" msgstr "صفحه بندى" -#: lib/action.php:1111 +#: lib/action.php:1141 msgid "After" msgstr "بعد از" -#: lib/action.php:1119 +#: lib/action.php:1149 msgid "Before" msgstr "قبل از" -#: lib/action.php:1167 -msgid "There was a problem with your session token." +#: lib/activity.php:382 +msgid "Can't handle remote content yet." +msgstr "" + +#: lib/activity.php:410 +msgid "Can't handle embedded XML content yet." +msgstr "" + +#: lib/activity.php:414 +msgid "Can't handle embedded Base64 content yet." msgstr "" #: lib/adminpanelaction.php:96 @@ -4213,10 +4669,101 @@ msgstr "پیکره بندی اصلی سایت" msgid "Design configuration" msgstr "" -#: lib/adminpanelaction.php:322 lib/adminpanelaction.php:327 +#: lib/adminpanelaction.php:322 +#, fuzzy +msgid "User configuration" +msgstr "پیکره بندی اصلی سایت" + +#: lib/adminpanelaction.php:327 +#, fuzzy +msgid "Access configuration" +msgstr "پیکره بندی اصلی سایت" + +#: lib/adminpanelaction.php:332 msgid "Paths configuration" msgstr "" +#: lib/adminpanelaction.php:337 +#, fuzzy +msgid "Sessions configuration" +msgstr "پیکره بندی اصلی سایت" + +#: lib/apiauth.php:95 +msgid "API resource requires read-write access, but you only have read access." +msgstr "" + +#: lib/apiauth.php:273 +#, php-format +msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" +msgstr "" + +#: lib/applicationeditform.php:136 +msgid "Edit application" +msgstr "" + +#: lib/applicationeditform.php:184 +msgid "Icon for this application" +msgstr "" + +#: lib/applicationeditform.php:204 +#, php-format +msgid "Describe your application in %d characters" +msgstr "" + +#: lib/applicationeditform.php:207 +msgid "Describe your application" +msgstr "" + +#: lib/applicationeditform.php:216 +#, fuzzy +msgid "Source URL" +msgstr "منبع" + +#: lib/applicationeditform.php:218 +msgid "URL of the homepage of this application" +msgstr "" + +#: lib/applicationeditform.php:224 +msgid "Organization responsible for this application" +msgstr "" + +#: lib/applicationeditform.php:230 +msgid "URL for the homepage of the organization" +msgstr "" + +#: lib/applicationeditform.php:236 +msgid "URL to redirect to after authentication" +msgstr "" + +#: lib/applicationeditform.php:258 +msgid "Browser" +msgstr "" + +#: lib/applicationeditform.php:274 +msgid "Desktop" +msgstr "" + +#: lib/applicationeditform.php:275 +msgid "Type of application, browser or desktop" +msgstr "" + +#: lib/applicationeditform.php:297 +msgid "Read-only" +msgstr "" + +#: lib/applicationeditform.php:315 +msgid "Read-write" +msgstr "" + +#: lib/applicationeditform.php:316 +msgid "Default access for this application: read-only, or read-write" +msgstr "" + +#: lib/applicationlist.php:154 +#, fuzzy +msgid "Revoke" +msgstr "حذف" + #: lib/attachmentlist.php:87 msgid "Attachments" msgstr "ضمائم" @@ -4237,12 +4784,12 @@ msgstr "" msgid "Tags for this attachment" msgstr "" -#: lib/authenticationplugin.php:182 lib/authenticationplugin.php:187 +#: lib/authenticationplugin.php:218 lib/authenticationplugin.php:223 #, fuzzy msgid "Password changing failed" msgstr "تغییر گذرواژه" -#: lib/authenticationplugin.php:197 +#: lib/authenticationplugin.php:233 #, fuzzy msgid "Password changing is not allowed" msgstr "تغییر گذرواژه" @@ -4398,77 +4945,87 @@ msgstr "خطا هنگام ذخیره ی آگهی" msgid "Specify the name of the user to subscribe to" msgstr "" -#: lib/command.php:554 +#: lib/command.php:554 lib/command.php:589 +#, fuzzy +msgid "No such user" +msgstr "چنین کاربری وجود ندارد." + +#: lib/command.php:561 #, php-format msgid "Subscribed to %s" msgstr "" -#: lib/command.php:575 +#: lib/command.php:582 lib/command.php:685 msgid "Specify the name of the user to unsubscribe from" msgstr "" -#: lib/command.php:582 +#: lib/command.php:595 #, php-format msgid "Unsubscribed from %s" msgstr "" -#: lib/command.php:600 lib/command.php:623 +#: lib/command.php:613 lib/command.php:636 msgid "Command not yet implemented." msgstr "دستور هنوز اجرا نشده" -#: lib/command.php:603 +#: lib/command.php:616 msgid "Notification off." msgstr "" -#: lib/command.php:605 +#: lib/command.php:618 msgid "Can't turn off notification." msgstr "ناتوان در خاموش کردن آگاه سازی." -#: lib/command.php:626 +#: lib/command.php:639 msgid "Notification on." msgstr "آگاه سازی فعال است." -#: lib/command.php:628 +#: lib/command.php:641 msgid "Can't turn on notification." msgstr "ناتوان در روشن کردن آگاه سازی." -#: lib/command.php:641 +#: lib/command.php:654 msgid "Login command is disabled" msgstr "فرمان ورود از کار افتاده است" -#: lib/command.php:652 +#: lib/command.php:665 #, php-format msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "" -#: lib/command.php:668 +#: lib/command.php:692 +#, fuzzy, php-format +msgid "Unsubscribed %s" +msgstr "مشترک‌ها" + +#: lib/command.php:709 msgid "You are not subscribed to anyone." msgstr "شما توسط هیچ کس تصویب نشده اید ." -#: lib/command.php:670 +#: lib/command.php:711 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "هم اکنون شما این کاربران را دنبال می‌کنید: " -#: lib/command.php:690 +#: lib/command.php:731 msgid "No one is subscribed to you." msgstr "هیچکس شما را تایید نکرده ." -#: lib/command.php:692 +#: lib/command.php:733 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "هیچکس شما را تایید نکرده ." -#: lib/command.php:712 +#: lib/command.php:753 msgid "You are not a member of any groups." msgstr "شما در هیچ گروهی عضو نیستید ." -#: lib/command.php:714 +#: lib/command.php:755 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "شما یک عضو این گروه نیستید." -#: lib/command.php:728 +#: lib/command.php:769 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -4482,6 +5039,7 @@ msgid "" "d - direct message to user\n" "get - get last notice from user\n" "whois - get profile info on user\n" +"lose - force user to stop following you\n" "fav - add user's last notice as a 'fave'\n" "fav # - add notice with the given id as a 'fave'\n" "repeat # - repeat a notice with a given id\n" @@ -4509,19 +5067,19 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:131 +#: lib/common.php:136 msgid "No configuration file found. " msgstr "" -#: lib/common.php:132 +#: lib/common.php:137 msgid "I looked for configuration files in the following places: " msgstr "" -#: lib/common.php:134 +#: lib/common.php:139 msgid "You may wish to run the installer to fix this." msgstr "شما ممکن است بخواهید نصاب را اجرا کنید تا این را تعمیر کند." -#: lib/common.php:135 +#: lib/common.php:140 msgid "Go to the installer." msgstr "برو به نصاب." @@ -4537,6 +5095,15 @@ msgstr "" msgid "Updates by SMS" msgstr "به روز رسانی با پیامک" +#: lib/connectsettingsaction.php:120 +#, fuzzy +msgid "Connections" +msgstr "وصل‌شدن" + +#: lib/connectsettingsaction.php:121 +msgid "Authorized connected applications" +msgstr "" + #: lib/dberroraction.php:60 msgid "Database error" msgstr "خطای پایگاه داده" @@ -4720,12 +5287,12 @@ msgstr "مگابایت" msgid "kB" msgstr "کیلوبایت" -#: lib/jabber.php:202 +#: lib/jabber.php:220 #, php-format msgid "[%s]" msgstr "" -#: lib/jabber.php:385 +#: lib/jabber.php:400 #, php-format msgid "Unknown inbox source %d." msgstr "" @@ -4926,7 +5493,7 @@ msgid "" "users in conversation. People can send you messages for your eyes only." msgstr "" -#: lib/mailbox.php:227 lib/noticelist.php:477 +#: lib/mailbox.php:227 lib/noticelist.php:482 msgid "from" msgstr "از" @@ -5045,57 +5612,53 @@ msgid "Do not share my location" msgstr "نمی‌توان تنظیمات مکانی را تنظیم کرد." #: lib/noticeform.php:216 -msgid "Hide this info" -msgstr "" - -#: lib/noticeform.php:217 msgid "" "Sorry, retrieving your geo location is taking longer than expected, please " "try again later" msgstr "" -#: lib/noticelist.php:428 +#: lib/noticelist.php:429 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "" -#: lib/noticelist.php:429 +#: lib/noticelist.php:430 msgid "N" msgstr "" -#: lib/noticelist.php:429 +#: lib/noticelist.php:430 msgid "S" msgstr "" -#: lib/noticelist.php:430 +#: lib/noticelist.php:431 msgid "E" msgstr "" -#: lib/noticelist.php:430 +#: lib/noticelist.php:431 msgid "W" msgstr "" -#: lib/noticelist.php:436 +#: lib/noticelist.php:438 msgid "at" msgstr "در" -#: lib/noticelist.php:531 +#: lib/noticelist.php:558 msgid "in context" msgstr "در زمینه" -#: lib/noticelist.php:556 +#: lib/noticelist.php:583 msgid "Repeated by" msgstr "تکرار از" -#: lib/noticelist.php:585 +#: lib/noticelist.php:610 msgid "Reply to this notice" msgstr "به این آگهی جواب دهید" -#: lib/noticelist.php:586 +#: lib/noticelist.php:611 msgid "Reply" msgstr "جواب دادن" -#: lib/noticelist.php:628 +#: lib/noticelist.php:655 msgid "Notice repeated" msgstr "آگهی تکرار شد" @@ -5127,11 +5690,7 @@ msgstr "" msgid "Duplicate notice" msgstr "" -#: lib/oauthstore.php:466 lib/subs.php:48 -msgid "You have been banned from subscribing." -msgstr "" - -#: lib/oauthstore.php:491 +#: lib/oauthstore.php:490 msgid "Couldn't insert new subscription." msgstr "" @@ -5147,19 +5706,19 @@ msgstr "پاسخ ها" msgid "Favorites" msgstr "چیزهای مورد علاقه" -#: lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "صندوق دریافتی" -#: lib/personalgroupnav.php:125 +#: lib/personalgroupnav.php:126 msgid "Your incoming messages" msgstr "پیام های وارد شونده ی شما" -#: lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 msgid "Outbox" msgstr "صندوق خروجی" -#: lib/personalgroupnav.php:130 +#: lib/personalgroupnav.php:131 msgid "Your sent messages" msgstr "پیام های فرستاده شده به وسیله ی شما" @@ -5237,6 +5796,10 @@ msgstr "به این آگهی جواب دهید" msgid "Repeat this notice" msgstr "" +#: lib/router.php:665 +msgid "No single user defined for single-user mode." +msgstr "" + #: lib/sandboxform.php:67 msgid "Sandbox" msgstr "" @@ -5304,34 +5867,6 @@ msgstr "" msgid "Groups %s is a member of" msgstr "هست عضو %s گروه" -#: lib/subs.php:52 -msgid "Already subscribed!" -msgstr "قبلا تایید شده !" - -#: lib/subs.php:56 -msgid "User has blocked you." -msgstr "" - -#: lib/subs.php:63 -msgid "Could not subscribe." -msgstr "" - -#: lib/subs.php:82 -msgid "Could not subscribe other to you." -msgstr "" - -#: lib/subs.php:137 -msgid "Not subscribed!" -msgstr "تایید نشده!" - -#: lib/subs.php:142 -msgid "Couldn't delete self-subscription." -msgstr "" - -#: lib/subs.php:158 -msgid "Couldn't delete subscription." -msgstr "" - #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -5382,67 +5917,67 @@ msgstr "ویرایش اواتور" msgid "User actions" msgstr "" -#: lib/userprofile.php:248 +#: lib/userprofile.php:251 msgid "Edit profile settings" msgstr "ویرایش تنظیمات پروفيل" -#: lib/userprofile.php:249 +#: lib/userprofile.php:252 msgid "Edit" msgstr "ویرایش" -#: lib/userprofile.php:272 +#: lib/userprofile.php:275 msgid "Send a direct message to this user" msgstr "پیام مستقیم به این کاربر بفرستید" -#: lib/userprofile.php:273 +#: lib/userprofile.php:276 msgid "Message" msgstr "پیام" -#: lib/userprofile.php:311 +#: lib/userprofile.php:314 msgid "Moderate" msgstr "" -#: lib/util.php:877 +#: lib/util.php:952 msgid "a few seconds ago" msgstr "چند ثانیه پیش" -#: lib/util.php:879 +#: lib/util.php:954 msgid "about a minute ago" msgstr "حدود یک دقیقه پیش" -#: lib/util.php:881 +#: lib/util.php:956 #, php-format msgid "about %d minutes ago" msgstr "حدود %d دقیقه پیش" -#: lib/util.php:883 +#: lib/util.php:958 msgid "about an hour ago" msgstr "حدود یک ساعت پیش" -#: lib/util.php:885 +#: lib/util.php:960 #, php-format msgid "about %d hours ago" msgstr "حدود %d ساعت پیش" -#: lib/util.php:887 +#: lib/util.php:962 msgid "about a day ago" msgstr "حدود یک روز پیش" -#: lib/util.php:889 +#: lib/util.php:964 #, php-format msgid "about %d days ago" msgstr "حدود %d روز پیش" -#: lib/util.php:891 +#: lib/util.php:966 msgid "about a month ago" msgstr "حدود یک ماه پیش" -#: lib/util.php:893 +#: lib/util.php:968 #, php-format msgid "about %d months ago" msgstr "حدود %d ماه پیش" -#: lib/util.php:895 +#: lib/util.php:970 msgid "about a year ago" msgstr "حدود یک سال پیش" @@ -5456,7 +5991,7 @@ msgstr "%s یک رنگ صحیح نیست!" msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "%s یک رنگ صحیح نیست! از ۳ یا ۶ حرف مبنای شانزده استفاده کنید" -#: scripts/xmppdaemon.php:301 +#: lib/xmppmanager.php:402 #, fuzzy, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "" diff --git a/locale/fi/LC_MESSAGES/statusnet.po b/locale/fi/LC_MESSAGES/statusnet.po index e54b94b718..b92edf1118 100644 --- a/locale/fi/LC_MESSAGES/statusnet.po +++ b/locale/fi/LC_MESSAGES/statusnet.po @@ -10,17 +10,76 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-01-13 22:04+0000\n" -"PO-Revision-Date: 2010-01-13 22:05:10+0000\n" +"POT-Creation-Date: 2010-02-24 23:49+0000\n" +"PO-Revision-Date: 2010-02-24 23:50:33+0000\n" "Language-Team: Finnish\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha (r61027); Translate extension (2010-01-04)\n" +"X-Generator: MediaWiki 1.17alpha (r62925); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: actions/accessadminpanel.php:54 lib/adminpanelaction.php:326 +#, fuzzy +msgid "Access" +msgstr "Hyväksy" + +#: actions/accessadminpanel.php:65 +#, fuzzy +msgid "Site access settings" +msgstr "Profiilikuva-asetukset" + +#: actions/accessadminpanel.php:158 +#, fuzzy +msgid "Registration" +msgstr "Rekisteröidy" + +#: actions/accessadminpanel.php:161 +#, fuzzy +msgid "Private" +msgstr "Yksityisyys" + +#: actions/accessadminpanel.php:163 +msgid "Prohibit anonymous users (not logged in) from viewing site?" +msgstr "" + +#: actions/accessadminpanel.php:167 +#, fuzzy +msgid "Invite only" +msgstr "Kutsu" + +#: actions/accessadminpanel.php:169 +msgid "Make registration invitation only." +msgstr "" + +#: actions/accessadminpanel.php:173 +#, fuzzy +msgid "Closed" +msgstr "Estä" + +#: actions/accessadminpanel.php:175 +msgid "Disable new registrations." +msgstr "" + +#: actions/accessadminpanel.php:189 actions/designadminpanel.php:586 +#: actions/emailsettings.php:195 actions/imsettings.php:163 +#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 +#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 +#: actions/siteadminpanel.php:336 actions/smssettings.php:181 +#: actions/subscriptions.php:208 actions/tagother.php:154 +#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 lib/designsettings.php:256 +#: lib/groupeditform.php:202 +msgid "Save" +msgstr "Tallenna" + +#: actions/accessadminpanel.php:189 +#, fuzzy +msgid "Save access settings" +msgstr "Profiilikuva-asetukset" + #: actions/all.php:63 actions/public.php:97 actions/replies.php:92 #: actions/showfavorites.php:137 actions/tag.php:51 msgid "No such page" @@ -35,25 +94,29 @@ msgstr "Sivua ei ole." #: 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:144 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apistatusesupdate.php:148 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:78 #: actions/apitimelinehome.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/otp.php:76 #: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154 -#: actions/replies.php:73 actions/repliesrss.php:38 +#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 #: 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:302 lib/command.php:355 #: lib/command.php:401 lib/command.php:462 lib/command.php:518 #: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 -#: lib/subs.php:34 lib/subs.php:125 msgid "No such user." msgstr "Käyttäjää ei ole." +#: actions/all.php:84 +#, fuzzy, php-format +msgid "%1$s and friends, page %2$d" +msgstr "%s ja kaverit, sivu %d" + #: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 -#: actions/apitimelinefriends.php:115 actions/apitimelinehome.php:115 +#: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" @@ -100,7 +163,7 @@ msgstr "" "Ole ensimmäinen joka [lähettää päivityksen tästä aiheesta] (%%%%action." "newnotice%%%%?status_textarea=%s)!" -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211 #, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " @@ -111,8 +174,8 @@ msgstr "" msgid "You and friends" msgstr "Sinä ja kaverit" -#: actions/allrss.php:119 actions/apitimelinefriends.php:122 -#: actions/apitimelinehome.php:122 +#: actions/allrss.php:119 actions/apitimelinefriends.php:119 +#: actions/apitimelinehome.php:120 #, 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!" @@ -122,23 +185,23 @@ msgstr "Käyttäjän %1$s ja kavereiden päivitykset palvelussa %2$s!" #: actions/apiaccountupdateprofile.php:97 #: actions/apiaccountupdateprofilebackgroundimage.php:94 #: actions/apiaccountupdateprofilecolors.php:118 -#: 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:136 actions/apigroupismember.php:114 -#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 -#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 -#: actions/apigroupmembership.php:106 actions/apigroupshow.php:105 -#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 -#: actions/apistatusesretweets.php:112 actions/apistatusesshow.php:108 -#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93 -#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:146 -#: actions/apitimelinefriends.php:156 actions/apitimelinegroup.php:150 -#: actions/apitimelinehome.php:156 actions/apitimelinementions.php:151 -#: actions/apitimelinepublic.php:131 actions/apitimelineretweetedbyme.php:122 +#: actions/apiaccountverifycredentials.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:128 actions/apigroupcreate.php:136 +#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 +#: actions/apigroupleave.php:141 actions/apigrouplist.php:132 +#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 +#: actions/apigroupshow.php:115 actions/apihelptest.php:88 +#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 +#: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 #: actions/apitimelineretweetedtome.php:121 -#: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141 -#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 +#: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 +#: actions/apitimelineuser.php:207 actions/apiusershow.php:101 #, fuzzy msgid "API method not found." msgstr "API-metodia ei löytynyt!" @@ -153,7 +216,7 @@ msgstr "API-metodia ei löytynyt!" #: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 #: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 #: actions/apigroupleave.php:91 actions/apistatusesretweet.php:65 -#: actions/apistatusesupdate.php:114 +#: actions/apistatusesupdate.php:118 msgid "This method requires a POST." msgstr "Tämä metodi edellyttää POST sanoman." @@ -184,8 +247,9 @@ msgstr "Ei voitu tallentaa profiilia." #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:97 -#: actions/apistatusesupdate.php:127 actions/avatarsettings.php:257 -#: actions/designadminpanel.php:122 actions/newnotice.php:94 +#: actions/apistatusesupdate.php:131 actions/avatarsettings.php:257 +#: actions/designadminpanel.php:122 actions/editapplication.php:118 +#: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 #, php-format msgid "" @@ -306,12 +370,12 @@ msgstr "Et voi lopettaa itsesi tilausta!" msgid "Two user ids or screen_names must be supplied." msgstr "Kaksi käyttäjätunnusta tai nimeä täytyy antaa." -#: actions/apifriendshipsshow.php:135 +#: actions/apifriendshipsshow.php:134 #, fuzzy msgid "Could not determine source user." msgstr "Julkista päivitysvirtaa ei saatu." -#: actions/apifriendshipsshow.php:143 +#: actions/apifriendshipsshow.php:142 #, fuzzy msgid "Could not find target user." msgstr "Ei löytynyt yhtään päivitystä." @@ -336,7 +400,8 @@ msgstr "Tunnus on jo käytössä. Yritä toista tunnusta." msgid "Not a valid nickname." msgstr "Tuo ei ole kelvollinen tunnus." -#: actions/apigroupcreate.php:196 actions/editgroup.php:195 +#: actions/apigroupcreate.php:196 actions/editapplication.php:215 +#: actions/editgroup.php:195 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:217 msgid "Homepage is not a valid URL." @@ -348,7 +413,8 @@ msgstr "Kotisivun verkko-osoite ei ole toimiva." msgid "Full name is too long (max 255 chars)." msgstr "Koko nimi on liian pitkä (max 255 merkkiä)." -#: actions/apigroupcreate.php:213 +#: actions/apigroupcreate.php:213 actions/editapplication.php:190 +#: actions/newapplication.php:172 #, fuzzy, php-format msgid "Description is too long (max %d chars)." msgstr "kuvaus on liian pitkä (max 140 merkkiä)." @@ -384,7 +450,7 @@ msgstr "Alias ei voi olla sama kuin ryhmätunnus." #: actions/apigroupismember.php:95 actions/apigroupjoin.php:104 #: actions/apigroupleave.php:104 actions/apigroupmembership.php:91 -#: actions/apigroupshow.php:90 actions/apitimelinegroup.php:91 +#: actions/apigroupshow.php:82 actions/apitimelinegroup.php:91 msgid "Group not found!" msgstr "Ryhmää ei löytynyt!" @@ -425,6 +491,118 @@ msgstr "Käyttäjän %s ryhmät" msgid "groups on %s" msgstr "Ryhmän toiminnot" +#: actions/apioauthauthorize.php:101 +msgid "No oauth_token parameter provided." +msgstr "" + +#: actions/apioauthauthorize.php:106 +#, fuzzy +msgid "Invalid token." +msgstr "Koko ei kelpaa." + +#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 +#: actions/deletenotice.php:157 actions/disfavor.php:74 +#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54 +#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupunblock.php:66 actions/imsettings.php:206 +#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 +#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 +#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135 +#: actions/othersettings.php:145 actions/passwordsettings.php:138 +#: actions/profilesettings.php:194 actions/recoverpassword.php:337 +#: actions/register.php:165 actions/remotesubscribe.php:77 +#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 +#: actions/subscribe.php:86 actions/tagother.php:166 +#: 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/apioauthauthorize.php:135 +#, fuzzy +msgid "Invalid nickname / password!" +msgstr "Käyttäjätunnus tai salasana ei kelpaa." + +#: actions/apioauthauthorize.php:159 +#, fuzzy +msgid "Database error deleting OAuth application user." +msgstr "Virhe tapahtui käyttäjän asettamisessa." + +#: actions/apioauthauthorize.php:185 +#, fuzzy +msgid "Database error inserting OAuth application user." +msgstr "Tietokantavirhe tallennettaessa risutagiä: %s" + +#: actions/apioauthauthorize.php:214 +#, php-format +msgid "" +"The request token %s has been authorized. Please exchange it for an access " +"token." +msgstr "" + +#: actions/apioauthauthorize.php:227 +#, php-format +msgid "The request token %s has been denied and revoked." +msgstr "" + +#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 +#: actions/designadminpanel.php:103 actions/editapplication.php:139 +#: actions/emailsettings.php:256 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/newapplication.php:121 +#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 +#: actions/smssettings.php:248 lib/designsettings.php:304 +msgid "Unexpected form submission." +msgstr "Odottamaton lomakkeen lähetys." + +#: actions/apioauthauthorize.php:259 +msgid "An application would like to connect to your account" +msgstr "" + +#: actions/apioauthauthorize.php:276 +msgid "Allow or deny access" +msgstr "" + +#: actions/apioauthauthorize.php:292 +#, php-format +msgid "" +"The application %1$s by %2$s would like " +"the ability to %3$s your %4$s account data. You should only " +"give access to your %4$s account to third parties you trust." +msgstr "" + +#: actions/apioauthauthorize.php:310 lib/action.php:441 +msgid "Account" +msgstr "Käyttäjätili" + +#: actions/apioauthauthorize.php:313 actions/login.php:230 +#: actions/profilesettings.php:106 actions/register.php:424 +#: actions/showgroup.php:236 actions/tagother.php:94 +#: actions/userauthorization.php:145 lib/groupeditform.php:152 +#: lib/userprofile.php:131 +msgid "Nickname" +msgstr "Tunnus" + +#: actions/apioauthauthorize.php:316 actions/login.php:233 +#: actions/register.php:429 lib/accountsettingsaction.php:116 +msgid "Password" +msgstr "Salasana" + +#: actions/apioauthauthorize.php:328 +#, fuzzy +msgid "Deny" +msgstr "Ulkoasu" + +#: actions/apioauthauthorize.php:334 +#, fuzzy +msgid "Allow" +msgstr "Kaikki" + +#: actions/apioauthauthorize.php:351 +msgid "Allow or deny access to your account information." +msgstr "" + #: actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." msgstr "Tämä metodi edellyttää joko POST tai DELETE sanoman." @@ -456,17 +634,17 @@ msgstr "Päivitys poistettu." msgid "No status with that ID found." msgstr "Käyttäjätunnukselle ei löytynyt statusviestiä." -#: actions/apistatusesupdate.php:157 actions/newnotice.php:155 +#: actions/apistatusesupdate.php:161 actions/newnotice.php:155 #: lib/mailhandler.php:60 #, php-format msgid "That's too long. Max notice size is %d chars." msgstr "Päivitys on liian pitkä. Maksimipituus on %d merkkiä." -#: actions/apistatusesupdate.php:198 +#: actions/apistatusesupdate.php:202 msgid "Not found" msgstr "Ei löytynyt" -#: actions/apistatusesupdate.php:221 actions/newnotice.php:178 +#: actions/apistatusesupdate.php:225 actions/newnotice.php:178 #, php-format msgid "Max notice size is %d chars, including attachment URL." msgstr "Maksimikoko päivitykselle on %d merkkiä, mukaan lukien URL-osoite." @@ -480,7 +658,7 @@ msgstr "Formaattia ei ole tuettu." msgid "%1$s / Favorites from %2$s" msgstr "%s / Käyttäjän %s suosikit" -#: actions/apitimelinefavorites.php:120 +#: actions/apitimelinefavorites.php:117 #, fuzzy, php-format msgid "%1$s updates favorited by %2$s / %2$s." msgstr " Palvelun %s päivitykset, jotka %s / %s on merkinnyt suosikikseen." @@ -491,7 +669,7 @@ msgstr " Palvelun %s päivitykset, jotka %s / %s on merkinnyt suosikikseen." msgid "%s timeline" msgstr "%s aikajana" -#: actions/apitimelinegroup.php:117 actions/apitimelineuser.php:126 +#: actions/apitimelinegroup.php:114 actions/apitimelineuser.php:126 #: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" @@ -508,27 +686,22 @@ 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/apitimelinepublic.php:107 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "%s julkinen aikajana" -#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "%s päivitykset kaikilta!" -#: actions/apitimelineretweetedbyme.php:112 -#, php-format -msgid "Repeated by %s" -msgstr "" - #: actions/apitimelineretweetedtome.php:111 #, fuzzy, php-format msgid "Repeated to %s" msgstr "Vastaukset käyttäjälle %s" -#: actions/apitimelineretweetsofme.php:112 +#: actions/apitimelineretweetsofme.php:114 #, fuzzy, php-format msgid "Repeats of %s" msgstr "Vastaukset käyttäjälle %s" @@ -538,7 +711,7 @@ msgstr "Vastaukset käyttäjälle %s" msgid "Notices tagged with %s" msgstr "Päivitykset joilla on tagi %s" -#: actions/apitimelinetag.php:108 actions/tagrss.php:64 +#: actions/apitimelinetag.php:104 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!" @@ -598,8 +771,8 @@ msgstr "Alkuperäinen" msgid "Preview" msgstr "Esikatselu" -#: actions/avatarsettings.php:149 lib/deleteuserform.php:66 -#: lib/noticelist.php:611 +#: actions/avatarsettings.php:149 actions/showapplication.php:252 +#: lib/deleteuserform.php:66 lib/noticelist.php:637 msgid "Delete" msgstr "Poista" @@ -611,31 +784,6 @@ msgstr "Lataa" msgid "Crop" msgstr "Rajaa" -#: actions/avatarsettings.php:268 actions/deletenotice.php:157 -#: actions/disfavor.php:74 actions/emailsettings.php:238 actions/favor.php:75 -#: actions/geocode.php:50 actions/groupblock.php:66 actions/grouplogo.php:309 -#: actions/groupunblock.php:66 actions/imsettings.php:206 -#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 -#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 -#: actions/othersettings.php:145 actions/passwordsettings.php:138 -#: actions/profilesettings.php:194 actions/recoverpassword.php:337 -#: actions/register.php:165 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 -#: actions/subscribe.php:46 actions/tagother.php:166 -#: 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/avatarsettings.php:281 actions/designadminpanel.php:103 -#: actions/emailsettings.php:256 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/avatarsettings.php:328 msgid "Pick a square area of the image to be your avatar" msgstr "Valitse neliön muotoinen alue kuvasta profiilikuvaksi" @@ -672,8 +820,9 @@ msgid "" "will not be notified of any @-replies from them." msgstr "" -#: actions/block.php:143 actions/deletenotice.php:145 -#: actions/deleteuser.php:147 actions/groupblock.php:178 +#: actions/block.php:143 actions/deleteapplication.php:153 +#: actions/deletenotice.php:145 actions/deleteuser.php:147 +#: actions/groupblock.php:178 msgid "No" msgstr "Ei" @@ -681,13 +830,13 @@ msgstr "Ei" msgid "Do not block this user" msgstr "Älä estä tätä käyttäjää" -#: actions/block.php:144 actions/deletenotice.php:146 -#: actions/deleteuser.php:148 actions/groupblock.php:179 -#: lib/repeatform.php:132 +#: actions/block.php:144 actions/deleteapplication.php:158 +#: actions/deletenotice.php:146 actions/deleteuser.php:148 +#: actions/groupblock.php:179 lib/repeatform.php:132 msgid "Yes" msgstr "Kyllä" -#: actions/block.php:144 actions/groupmembers.php:346 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80 msgid "Block this user" msgstr "Estä tämä käyttäjä" @@ -771,7 +920,8 @@ msgid "Couldn't delete email confirmation." msgstr "Ei voitu poistaa sähköpostivahvistusta." #: actions/confirmaddress.php:144 -msgid "Confirm Address" +#, fuzzy +msgid "Confirm address" msgstr "Vahvista osoite" #: actions/confirmaddress.php:159 @@ -788,10 +938,55 @@ msgstr "Keskustelu" msgid "Notices" msgstr "Päivitykset" +#: actions/deleteapplication.php:63 +#, fuzzy +msgid "You must be logged in to delete an application." +msgstr "" +"Sinun pitää olla kirjautunut sisään, jotta voit muuttaa ryhmän tietoja." + +#: actions/deleteapplication.php:71 +#, fuzzy +msgid "Application not found." +msgstr "Päivitykselle ei ole profiilia" + +#: actions/deleteapplication.php:78 actions/editapplication.php:77 +#: actions/showapplication.php:94 +#, fuzzy +msgid "You are not the owner of this application." +msgstr "Sinä et kuulu tähän ryhmään." + +#: actions/deleteapplication.php:102 actions/editapplication.php:127 +#: actions/newapplication.php:110 actions/showapplication.php:118 +#: lib/action.php:1197 +msgid "There was a problem with your session token." +msgstr "Istuntoavaimesi kanssa oli ongelma." + +#: actions/deleteapplication.php:123 actions/deleteapplication.php:147 +#, fuzzy +msgid "Delete application" +msgstr "Päivitystä ei ole." + +#: actions/deleteapplication.php:149 +msgid "" +"Are you sure you want to delete this application? This will clear all data " +"about the application from the database, including all existing user " +"connections." +msgstr "" + +#: actions/deleteapplication.php:156 +#, fuzzy +msgid "Do not delete this application" +msgstr "Älä poista tätä päivitystä" + +#: actions/deleteapplication.php:160 +#, fuzzy +msgid "Delete this application" +msgstr "Poista tämä päivitys" + #: 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/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 #: lib/adminpanelaction.php:72 lib/profileformaction.php:63 #: lib/settingsaction.php:72 @@ -822,7 +1017,7 @@ msgstr "Oletko varma että haluat poistaa tämän päivityksen?" msgid "Do not delete this notice" msgstr "Älä poista tätä päivitystä" -#: actions/deletenotice.php:146 lib/noticelist.php:611 +#: actions/deletenotice.php:146 lib/noticelist.php:637 msgid "Delete this notice" msgstr "Poista tämä päivitys" @@ -959,16 +1154,6 @@ msgstr "" msgid "Reset back to default" msgstr "" -#: actions/designadminpanel.php:586 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 -#: actions/pathsadminpanel.php:324 actions/profilesettings.php:174 -#: actions/siteadminpanel.php:388 actions/smssettings.php:181 -#: actions/subscriptions.php:203 actions/tagother.php:154 -#: actions/useradminpanel.php:313 lib/designsettings.php:256 -#: lib/groupeditform.php:202 -msgid "Save" -msgstr "Tallenna" - #: actions/designadminpanel.php:587 lib/designsettings.php:257 msgid "Save design" msgstr "" @@ -981,10 +1166,88 @@ msgstr "Tämä päivitys ei ole suosikki!" msgid "Add to favorites" msgstr "Lisää suosikkeihin" -#: actions/doc.php:69 -msgid "No such document." +#: actions/doc.php:158 +#, fuzzy, php-format +msgid "No such document \"%s\"" msgstr "Dokumenttia ei ole." +#: actions/editapplication.php:54 +#, fuzzy +msgid "Edit Application" +msgstr "Muita asetuksia" + +#: actions/editapplication.php:66 +#, fuzzy +msgid "You must be logged in to edit an application." +msgstr "" +"Sinun pitää olla kirjautunut sisään, jotta voit muuttaa ryhmän tietoja." + +#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:166 +#: actions/showapplication.php:87 +#, fuzzy +msgid "No such application." +msgstr "Päivitystä ei ole." + +#: actions/editapplication.php:161 +#, fuzzy +msgid "Use this form to edit your application." +msgstr "Käytä tätä lomaketta muokataksesi ryhmää." + +#: actions/editapplication.php:177 actions/newapplication.php:159 +#, fuzzy +msgid "Name is required." +msgstr "Sama kuin ylläoleva salasana. Pakollinen." + +#: actions/editapplication.php:180 actions/newapplication.php:165 +#, fuzzy +msgid "Name is too long (max 255 chars)." +msgstr "Koko nimi on liian pitkä (max 255 merkkiä)." + +#: actions/editapplication.php:183 actions/newapplication.php:162 +#, fuzzy +msgid "Name already in use. Try another one." +msgstr "Tunnus on jo käytössä. Yritä toista tunnusta." + +#: actions/editapplication.php:186 actions/newapplication.php:168 +#, fuzzy +msgid "Description is required." +msgstr "Kuvaus" + +#: actions/editapplication.php:194 +msgid "Source URL is too long." +msgstr "" + +#: actions/editapplication.php:200 actions/newapplication.php:185 +#, fuzzy +msgid "Source URL is not valid." +msgstr "Kotisivun verkko-osoite ei ole toimiva." + +#: actions/editapplication.php:203 actions/newapplication.php:188 +msgid "Organization is required." +msgstr "" + +#: actions/editapplication.php:206 actions/newapplication.php:191 +#, fuzzy +msgid "Organization is too long (max 255 chars)." +msgstr "Kotipaikka on liian pitkä (max 255 merkkiä)." + +#: actions/editapplication.php:209 actions/newapplication.php:194 +msgid "Organization homepage is required." +msgstr "" + +#: actions/editapplication.php:218 actions/newapplication.php:206 +msgid "Callback is too long." +msgstr "" + +#: actions/editapplication.php:225 actions/newapplication.php:215 +msgid "Callback URL is not valid." +msgstr "" + +#: actions/editapplication.php:258 +#, fuzzy +msgid "Could not update application." +msgstr "Ei voitu päivittää ryhmää." + #: actions/editgroup.php:56 #, php-format msgid "Edit %s group" @@ -1013,7 +1276,7 @@ msgstr "kuvaus on liian pitkä (max %d merkkiä)." msgid "Could not update group." msgstr "Ei voitu päivittää ryhmää." -#: actions/editgroup.php:259 classes/User_group.php:390 +#: actions/editgroup.php:259 classes/User_group.php:433 msgid "Could not create aliases." msgstr "Ei voitu lisätä aliasta." @@ -1056,7 +1319,8 @@ msgstr "" "lisäohjeita. " #: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 +#: actions/smssettings.php:126 lib/applicationeditform.php:331 +#: lib/applicationeditform.php:332 msgid "Cancel" msgstr "Peruuta" @@ -1139,7 +1403,7 @@ msgid "Cannot normalize that email address" msgstr "Ei voida normalisoida sähköpostiosoitetta" #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:157 +#: actions/siteadminpanel.php:143 msgid "Not a valid email address." msgstr "Tuo ei ole kelvollinen sähköpostiosoite." @@ -1151,7 +1415,7 @@ msgstr "Tämä on jo sähköpostiosoitteesi." 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:353 actions/imsettings.php:317 +#: actions/emailsettings.php:353 actions/imsettings.php:319 #: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." msgstr "Ei voitu asettaa vahvistuskoodia." @@ -1213,7 +1477,7 @@ msgstr "Tämä päivitys on jo suosikki!" msgid "Disfavor favorite" msgstr "Poista suosikeista" -#: actions/favorited.php:65 lib/popularnoticesection.php:88 +#: actions/favorited.php:65 lib/popularnoticesection.php:91 #: lib/publicgroupnav.php:93 msgid "Popular notices" msgstr "Suosituimmat päivitykset" @@ -1363,7 +1627,7 @@ msgstr "Käyttäjä on asettanut eston sinulle." msgid "User is not a member of group." msgstr "Käyttäjä ei kuulu tähän ryhmään." -#: actions/groupblock.php:136 actions/groupmembers.php:314 +#: actions/groupblock.php:136 actions/groupmembers.php:316 msgid "Block user from group" msgstr "Estä käyttäjä ryhmästä" @@ -1457,23 +1721,23 @@ msgstr "Ryhmän %s jäsenet, sivu %d" msgid "A list of the users in this group." msgstr "Lista ryhmän käyttäjistä." -#: actions/groupmembers.php:175 lib/action.php:442 lib/groupnav.php:107 +#: actions/groupmembers.php:175 lib/action.php:448 lib/groupnav.php:107 msgid "Admin" msgstr "Ylläpito" -#: actions/groupmembers.php:346 lib/blockform.php:69 +#: actions/groupmembers.php:348 lib/blockform.php:69 msgid "Block" msgstr "Estä" -#: actions/groupmembers.php:441 +#: actions/groupmembers.php:443 msgid "Make user an admin of the group" msgstr "Tee tästä käyttäjästä ylläpitäjä" -#: actions/groupmembers.php:473 +#: actions/groupmembers.php:475 msgid "Make Admin" msgstr "Tee ylläpitäjäksi" -#: actions/groupmembers.php:473 +#: actions/groupmembers.php:475 msgid "Make this user an admin" msgstr "Tee tästä käyttäjästä ylläpitäjä" @@ -1649,6 +1913,11 @@ msgstr "" msgid "That is not your Jabber ID." msgstr "Tämä ei ole Jabber ID-tunnuksesi." +#: actions/inbox.php:59 +#, fuzzy, php-format +msgid "Inbox for %1$s - page %2$d" +msgstr "Saapuneet viestit käyttäjälle %s" + #: actions/inbox.php:62 #, php-format msgid "Inbox for %s" @@ -1733,7 +2002,7 @@ msgstr "Henkilökohtainen viesti" msgid "Optionally add a personal message to the invitation." msgstr "Voit myös lisätä oman viestisi kutsuun" -#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:237 +#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:236 msgid "Send" msgstr "Lähetä" @@ -1833,7 +2102,7 @@ msgstr "Väärä käyttäjätunnus tai salasana" msgid "Error setting user. You are probably not authorized." msgstr "Sinulla ei ole valtuutusta tähän." -#: actions/login.php:188 actions/login.php:241 lib/action.php:460 +#: actions/login.php:188 actions/login.php:241 lib/action.php:466 #: lib/logingroupnav.php:79 msgid "Login" msgstr "Kirjaudu sisään" @@ -1842,17 +2111,6 @@ msgstr "Kirjaudu sisään" msgid "Login to site" msgstr "Kirjaudu sisään" -#: actions/login.php:230 actions/profilesettings.php:106 -#: actions/register.php:424 actions/showgroup.php:236 actions/tagother.php:94 -#: lib/groupeditform.php:152 lib/userprofile.php:131 -msgid "Nickname" -msgstr "Tunnus" - -#: actions/login.php:233 actions/register.php:429 -#: lib/accountsettingsaction.php:116 -msgid "Password" -msgstr "Salasana" - #: actions/login.php:236 actions/register.php:478 msgid "Remember me" msgstr "Muista minut" @@ -1885,21 +2143,21 @@ msgstr "" "käyttäjätunnusta? [Rekisteröi](%%action.register%%) käyttäjätunnus tai " "kokeile [OpenID](%%action.openidlogin%%)-tunnuksella sisään kirjautumista. " -#: actions/makeadmin.php:91 +#: actions/makeadmin.php:92 msgid "Only an admin can make another user an admin." msgstr "Vain ylläpitäjä voi tehdä toisesta käyttäjästä ylläpitäjän." -#: actions/makeadmin.php:95 +#: actions/makeadmin.php:96 #, fuzzy, php-format msgid "%1$s is already an admin for group \"%2$s\"." msgstr "%s on jo ryhmän \"%s\" ylläpitäjä." -#: actions/makeadmin.php:132 +#: actions/makeadmin.php:133 #, fuzzy, php-format msgid "Can't get membership record for %1$s in group %2$s." msgstr "Ei saatu käyttäjän %s jäsenyystietoja ryhmästä %s" -#: actions/makeadmin.php:145 +#: actions/makeadmin.php:146 #, fuzzy, php-format msgid "Can't make %1$s an admin for group %2$s." msgstr "Ei voitu tehdä käyttäjästä %s ylläpitäjää ryhmään %s" @@ -1908,6 +2166,30 @@ msgstr "Ei voitu tehdä käyttäjästä %s ylläpitäjää ryhmään %s" msgid "No current status" msgstr "Ei nykyistä tilatietoa" +#: actions/newapplication.php:52 +#, fuzzy +msgid "New Application" +msgstr "Päivitystä ei ole." + +#: actions/newapplication.php:64 +#, fuzzy +msgid "You must be logged in to register an application." +msgstr "Sinun pitää olla kirjautunut sisään jotta voit luoda ryhmän." + +#: actions/newapplication.php:143 +#, fuzzy +msgid "Use this form to register a new application." +msgstr "Käytä tätä lomaketta luodaksesi ryhmän." + +#: actions/newapplication.php:176 +msgid "Source URL is required." +msgstr "" + +#: actions/newapplication.php:258 actions/newapplication.php:267 +#, fuzzy +msgid "Could not create application." +msgstr "Ei voitu lisätä aliasta." + #: actions/newgroup.php:53 msgid "New group" msgstr "Uusi ryhmä" @@ -2018,6 +2300,52 @@ msgstr "Tönäisy lähetetty" msgid "Nudge sent!" msgstr "Tönäisy lähetetty!" +#: actions/oauthappssettings.php:59 +#, fuzzy +msgid "You must be logged in to list your applications." +msgstr "" +"Sinun pitää olla kirjautunut sisään, jotta voit muuttaa ryhmän tietoja." + +#: actions/oauthappssettings.php:74 +#, fuzzy +msgid "OAuth applications" +msgstr "Muita asetuksia" + +#: actions/oauthappssettings.php:85 +msgid "Applications you have registered" +msgstr "" + +#: actions/oauthappssettings.php:135 +#, php-format +msgid "You have not registered any applications yet." +msgstr "" + +#: actions/oauthconnectionssettings.php:72 +msgid "Connected applications" +msgstr "" + +#: actions/oauthconnectionssettings.php:83 +msgid "You have allowed the following applications to access you account." +msgstr "" + +#: actions/oauthconnectionssettings.php:175 +#, fuzzy +msgid "You are not a user of that application." +msgstr "Sinä et kuulu tähän ryhmään." + +#: actions/oauthconnectionssettings.php:186 +msgid "Unable to revoke access for app: " +msgstr "" + +#: actions/oauthconnectionssettings.php:198 +#, php-format +msgid "You have not authorized any applications to use your account." +msgstr "" + +#: actions/oauthconnectionssettings.php:211 +msgid "Developers can edit the registration settings for their applications " +msgstr "" + #: actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" msgstr "Päivitykselle ei ole profiilia" @@ -2036,8 +2364,8 @@ msgstr "Yhdistä" msgid "Only " msgstr "Vain " -#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1033 -#: lib/api.php:1061 lib/api.php:1171 +#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 +#: lib/api.php:1068 lib/api.php:1177 msgid "Not a supported data format." msgstr "Tuo ei ole tuettu tietomuoto." @@ -2050,7 +2378,8 @@ msgid "Notice Search" msgstr "Etsi Päivityksistä" #: actions/othersettings.php:60 -msgid "Other Settings" +#, fuzzy +msgid "Other settings" msgstr "Muita Asetuksia" #: actions/othersettings.php:71 @@ -2107,6 +2436,11 @@ msgstr "Päivityksen sisältö ei kelpaa" msgid "Login token expired." msgstr "Kirjaudu sisään" +#: actions/outbox.php:58 +#, fuzzy, php-format +msgid "Outbox for %1$s - page %2$d" +msgstr "Käyttäjän %s lähetetyt viestit" + #: actions/outbox.php:61 #, php-format msgid "Outbox for %s" @@ -2177,7 +2511,7 @@ msgstr "Uutta salasanaa ei voida tallentaa." msgid "Password saved." msgstr "Salasana tallennettu." -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:326 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:331 msgid "Paths" msgstr "Polut" @@ -2185,143 +2519,160 @@ msgstr "Polut" msgid "Path and server settings for this StatusNet site." msgstr "Polut ja palvelin asetukset tälle StatusNet palvelulle." -#: actions/pathsadminpanel.php:140 +#: actions/pathsadminpanel.php:157 #, fuzzy, php-format msgid "Theme directory not readable: %s" msgstr "Pikaviestin ei ole käytettävissä." -#: actions/pathsadminpanel.php:146 +#: actions/pathsadminpanel.php:163 #, php-format msgid "Avatar directory not writable: %s" msgstr "" -#: actions/pathsadminpanel.php:152 +#: actions/pathsadminpanel.php:169 #, php-format msgid "Background directory not writable: %s" msgstr "" -#: actions/pathsadminpanel.php:160 +#: actions/pathsadminpanel.php:177 #, php-format msgid "Locales directory not readable: %s" msgstr "" -#: actions/pathsadminpanel.php:166 +#: actions/pathsadminpanel.php:183 msgid "Invalid SSL server. The maximum length is 255 characters." msgstr "" -#: actions/pathsadminpanel.php:217 actions/siteadminpanel.php:58 +#: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58 #: lib/adminpanelaction.php:311 #, fuzzy msgid "Site" msgstr "Kutsu" -#: actions/pathsadminpanel.php:221 +#: actions/pathsadminpanel.php:238 +#, fuzzy +msgid "Server" +msgstr "Palauta" + +#: actions/pathsadminpanel.php:238 +msgid "Site's server hostname." +msgstr "" + +#: actions/pathsadminpanel.php:242 msgid "Path" msgstr "" -#: actions/pathsadminpanel.php:221 +#: actions/pathsadminpanel.php:242 #, fuzzy msgid "Site path" msgstr "Palvelun ilmoitus" -#: actions/pathsadminpanel.php:225 +#: actions/pathsadminpanel.php:246 msgid "Path to locales" msgstr "" -#: actions/pathsadminpanel.php:225 +#: actions/pathsadminpanel.php:246 msgid "Directory path to locales" msgstr "" -#: actions/pathsadminpanel.php:232 -msgid "Theme" -msgstr "" - -#: actions/pathsadminpanel.php:237 -msgid "Theme server" -msgstr "" - -#: actions/pathsadminpanel.php:241 -msgid "Theme path" -msgstr "" - -#: actions/pathsadminpanel.php:245 -msgid "Theme directory" +#: actions/pathsadminpanel.php:250 +msgid "Fancy URLs" msgstr "" #: actions/pathsadminpanel.php:252 +msgid "Use fancy (more readable and memorable) URLs?" +msgstr "" + +#: actions/pathsadminpanel.php:259 +msgid "Theme" +msgstr "" + +#: actions/pathsadminpanel.php:264 +msgid "Theme server" +msgstr "" + +#: actions/pathsadminpanel.php:268 +msgid "Theme path" +msgstr "" + +#: actions/pathsadminpanel.php:272 +msgid "Theme directory" +msgstr "" + +#: actions/pathsadminpanel.php:279 #, fuzzy msgid "Avatars" msgstr "Kuva" -#: actions/pathsadminpanel.php:257 +#: actions/pathsadminpanel.php:284 #, fuzzy msgid "Avatar server" msgstr "Profiilikuva-asetukset" -#: actions/pathsadminpanel.php:261 +#: actions/pathsadminpanel.php:288 #, fuzzy msgid "Avatar path" msgstr "Kuva päivitetty." -#: actions/pathsadminpanel.php:265 +#: actions/pathsadminpanel.php:292 #, fuzzy msgid "Avatar directory" msgstr "Kuva poistettu." -#: actions/pathsadminpanel.php:274 +#: actions/pathsadminpanel.php:301 msgid "Backgrounds" msgstr "Taustakuvat" -#: actions/pathsadminpanel.php:278 +#: actions/pathsadminpanel.php:305 msgid "Background server" msgstr "Taustakuvapalvelin" -#: actions/pathsadminpanel.php:282 +#: actions/pathsadminpanel.php:309 msgid "Background path" msgstr "Taustakuvan hakemistopolku" -#: actions/pathsadminpanel.php:286 +#: actions/pathsadminpanel.php:313 msgid "Background directory" msgstr "Taustakuvan hakemisto" -#: actions/pathsadminpanel.php:293 +#: actions/pathsadminpanel.php:320 #, fuzzy msgid "SSL" msgstr "SMS" -#: actions/pathsadminpanel.php:296 actions/siteadminpanel.php:346 +#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 #, fuzzy msgid "Never" msgstr "Palauta" -#: actions/pathsadminpanel.php:297 +#: actions/pathsadminpanel.php:324 #, fuzzy msgid "Sometimes" msgstr "Päivitykset" -#: actions/pathsadminpanel.php:298 +#: actions/pathsadminpanel.php:325 #, fuzzy msgid "Always" msgstr "Aliakset" -#: actions/pathsadminpanel.php:302 +#: actions/pathsadminpanel.php:329 msgid "Use SSL" msgstr "" -#: actions/pathsadminpanel.php:303 +#: actions/pathsadminpanel.php:330 msgid "When to use SSL" msgstr "" -#: actions/pathsadminpanel.php:308 +#: actions/pathsadminpanel.php:335 #, fuzzy msgid "SSL server" msgstr "Palauta" -#: actions/pathsadminpanel.php:309 +#: actions/pathsadminpanel.php:336 msgid "Server to direct SSL requests to" msgstr "" -#: actions/pathsadminpanel.php:325 +#: actions/pathsadminpanel.php:352 #, fuzzy msgid "Save paths" msgstr "Palvelun ilmoitus" @@ -2387,7 +2738,7 @@ msgid "Full name" msgstr "Koko nimi" #: actions/profilesettings.php:115 actions/register.php:453 -#: lib/groupeditform.php:161 +#: lib/applicationeditform.php:228 lib/groupeditform.php:161 msgid "Homepage" msgstr "Kotisivu" @@ -2410,7 +2761,7 @@ msgstr "Tietoja" #: actions/profilesettings.php:132 actions/register.php:471 #: actions/showgroup.php:256 actions/tagother.php:112 -#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:164 msgid "Location" msgstr "Kotipaikka" @@ -2436,7 +2787,7 @@ 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:151 actions/siteadminpanel.php:294 +#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 msgid "Language" msgstr "Kieli" @@ -2464,7 +2815,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "\"Tietoja\" on liian pitkä (max 140 merkkiä)." -#: actions/profilesettings.php:235 actions/siteadminpanel.php:164 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 msgid "Timezone not selected." msgstr "Aikavyöhykettä ei ole valittu." @@ -2477,24 +2828,24 @@ msgstr "Kieli on liian pitkä (max 50 merkkiä)." msgid "Invalid tag: \"%s\"" msgstr "Virheellinen tagi: \"%s\"" -#: actions/profilesettings.php:302 +#: actions/profilesettings.php:306 msgid "Couldn't update user for autosubscribe." msgstr "Ei voitu asettaa käyttäjälle automaattista tilausta." -#: actions/profilesettings.php:359 +#: actions/profilesettings.php:363 #, fuzzy msgid "Couldn't save location prefs." msgstr "Tageja ei voitu tallentaa." -#: actions/profilesettings.php:371 +#: actions/profilesettings.php:375 msgid "Couldn't save profile." msgstr "Ei voitu tallentaa profiilia." -#: actions/profilesettings.php:379 +#: actions/profilesettings.php:383 msgid "Couldn't save tags." msgstr "Tageja ei voitu tallentaa." -#: actions/profilesettings.php:387 lib/adminpanelaction.php:137 +#: actions/profilesettings.php:391 lib/adminpanelaction.php:137 msgid "Settings saved." msgstr "Asetukset tallennettu." @@ -2516,36 +2867,36 @@ msgstr "Julkinen aikajana, sivu %d" msgid "Public timeline" msgstr "Julkinen aikajana" -#: actions/public.php:151 +#: actions/public.php:159 msgid "Public Stream Feed (RSS 1.0)" msgstr "Julkinen syöte (RSS 1.0)" -#: actions/public.php:155 +#: actions/public.php:163 msgid "Public Stream Feed (RSS 2.0)" msgstr "Julkisen Aikajanan Syöte (RSS 2.0)" -#: actions/public.php:159 +#: actions/public.php:167 msgid "Public Stream Feed (Atom)" msgstr "Julkinen syöte (Atom)" -#: actions/public.php:179 +#: actions/public.php:187 #, php-format msgid "" "This is the public timeline for %%site.name%% but no one has posted anything " "yet." msgstr "" -#: actions/public.php:182 +#: actions/public.php:190 msgid "Be the first to post!" msgstr "Ole ensimmäinen joka lähettää päivityksen!" -#: actions/public.php:186 +#: actions/public.php:194 #, php-format msgid "" "Why not [register an account](%%action.register%%) and be the first to post!" msgstr "" -#: actions/public.php:233 +#: actions/public.php:241 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2554,7 +2905,7 @@ msgid "" "friends, family, and colleagues! ([Read more](%%doc.help%%))" msgstr "" -#: actions/public.php:238 +#: actions/public.php:246 #, fuzzy, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2591,7 +2942,7 @@ msgid "" "one!" msgstr "" -#: actions/publictagcloud.php:131 +#: actions/publictagcloud.php:134 msgid "Tag cloud" msgstr "Tagipilvi" @@ -2731,7 +3082,7 @@ msgstr "Virheellinen kutsukoodin." msgid "Registration successful" msgstr "Rekisteröityminen onnistui" -#: actions/register.php:114 actions/register.php:503 lib/action.php:457 +#: actions/register.php:114 actions/register.php:503 lib/action.php:463 #: lib/logingroupnav.php:85 msgid "Register" msgstr "Rekisteröidy" @@ -2773,7 +3124,7 @@ msgid "Same as password above. Required." msgstr "Sama kuin ylläoleva salasana. Pakollinen." #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:270 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 msgid "Email" msgstr "Sähköposti" @@ -2883,7 +3234,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "Profiilisi URL-osoite toisessa yhteensopivassa mikroblogauspalvelussa" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:365 +#: lib/userprofile.php:368 msgid "Subscribe" msgstr "Tilaa" @@ -2927,7 +3278,7 @@ msgstr "Et voi rekisteröityä, jos et hyväksy lisenssiehtoja." msgid "You already repeated that notice." msgstr "Sinä olet jo estänyt tämän käyttäjän." -#: actions/repeat.php:114 lib/noticelist.php:629 +#: actions/repeat.php:114 lib/noticelist.php:656 #, fuzzy msgid "Repeated" msgstr "Luotu" @@ -2943,6 +3294,11 @@ msgstr "Luotu" msgid "Replies to %s" msgstr "Vastaukset käyttäjälle %s" +#: actions/replies.php:127 +#, fuzzy, php-format +msgid "Replies to %1$s, page %2$d" +msgstr "Viesti käyttäjälle %1$s, %2$s" + #: actions/replies.php:144 #, fuzzy, php-format msgid "Replies feed for %s (RSS 1.0)" @@ -2988,6 +3344,11 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "Viesti käyttäjälle %1$s, %2$s" +#: actions/rsd.php:146 actions/version.php:157 +#, fuzzy +msgid "StatusNet" +msgstr "Päivitys poistettu." + #: actions/sandbox.php:65 actions/unsandbox.php:65 #, fuzzy msgid "You cannot sandbox users on this site." @@ -2998,6 +3359,126 @@ msgstr "Et voi lähettää viestiä tälle käyttäjälle." msgid "User is already sandboxed." msgstr "Käyttäjä on asettanut eston sinulle." +#: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:336 +msgid "Sessions" +msgstr "" + +#: actions/sessionsadminpanel.php:65 +#, fuzzy +msgid "Session settings for this StatusNet site." +msgstr "Ulkoasuasetukset tälle StatusNet palvelulle." + +#: actions/sessionsadminpanel.php:175 +msgid "Handle sessions" +msgstr "" + +#: actions/sessionsadminpanel.php:177 +msgid "Whether to handle sessions ourselves." +msgstr "" + +#: actions/sessionsadminpanel.php:181 +msgid "Session debugging" +msgstr "" + +#: actions/sessionsadminpanel.php:183 +msgid "Turn on debugging output for sessions." +msgstr "" + +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/useradminpanel.php:293 +#, fuzzy +msgid "Save site settings" +msgstr "Profiilikuva-asetukset" + +#: actions/showapplication.php:82 +#, fuzzy +msgid "You must be logged in to view an application." +msgstr "Sinun pitää olla kirjautunut sisään, jotta voit erota ryhmästä." + +#: actions/showapplication.php:157 +#, fuzzy +msgid "Application profile" +msgstr "Päivitykselle ei ole profiilia" + +#: actions/showapplication.php:159 lib/applicationeditform.php:180 +msgid "Icon" +msgstr "" + +#: actions/showapplication.php:169 actions/version.php:195 +#: lib/applicationeditform.php:195 +#, fuzzy +msgid "Name" +msgstr "Tunnus" + +#: actions/showapplication.php:178 lib/applicationeditform.php:222 +#, fuzzy +msgid "Organization" +msgstr "Sivutus" + +#: actions/showapplication.php:187 actions/version.php:198 +#: lib/applicationeditform.php:209 lib/groupeditform.php:172 +msgid "Description" +msgstr "Kuvaus" + +#: actions/showapplication.php:192 actions/showgroup.php:429 +#: lib/profileaction.php:174 +msgid "Statistics" +msgstr "Tilastot" + +#: actions/showapplication.php:203 +#, php-format +msgid "Created by %1$s - %2$s access by default - %3$d users" +msgstr "" + +#: actions/showapplication.php:213 +msgid "Application actions" +msgstr "" + +#: actions/showapplication.php:236 +msgid "Reset key & secret" +msgstr "" + +#: actions/showapplication.php:261 +msgid "Application info" +msgstr "" + +#: actions/showapplication.php:263 +msgid "Consumer key" +msgstr "" + +#: actions/showapplication.php:268 +msgid "Consumer secret" +msgstr "" + +#: actions/showapplication.php:273 +msgid "Request token URL" +msgstr "" + +#: actions/showapplication.php:278 +msgid "Access token URL" +msgstr "" + +#: actions/showapplication.php:283 +msgid "Authorize URL" +msgstr "" + +#: actions/showapplication.php:288 +msgid "" +"Note: We support HMAC-SHA1 signatures. We do not support the plaintext " +"signature method." +msgstr "" + +#: actions/showapplication.php:309 +#, fuzzy +msgid "Are you sure you want to reset your consumer key and secret?" +msgstr "Oletko varma että haluat poistaa tämän päivityksen?" + +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%1$s's favorite notices, page %2$d" +msgstr "Käyttäjän %s suosikkipäivitykset" + #: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "Ei saatu haettua suosikkipäivityksiä." @@ -3047,17 +3528,22 @@ msgstr "" msgid "%s group" msgstr "Ryhmä %s" +#: actions/showgroup.php:84 +#, fuzzy, php-format +msgid "%1$s group, page %2$d" +msgstr "Ryhmän %s jäsenet, sivu %d" + #: actions/showgroup.php:218 msgid "Group profile" msgstr "Ryhmän profiili" #: actions/showgroup.php:263 actions/tagother.php:118 -#: actions/userauthorization.php:167 lib/userprofile.php:177 +#: actions/userauthorization.php:175 lib/userprofile.php:177 msgid "URL" msgstr "URL" #: actions/showgroup.php:274 actions/tagother.php:128 -#: actions/userauthorization.php:179 lib/userprofile.php:194 +#: actions/userauthorization.php:187 lib/userprofile.php:194 msgid "Note" msgstr "Huomaa" @@ -3103,10 +3589,6 @@ msgstr "(Tyhjä)" msgid "All members" msgstr "Kaikki jäsenet" -#: actions/showgroup.php:429 lib/profileaction.php:174 -msgid "Statistics" -msgstr "Tilastot" - #: actions/showgroup.php:432 msgid "Created" msgstr "Luotu" @@ -3163,6 +3645,11 @@ msgstr "Päivitys on poistettu." msgid " tagged %s" msgstr "Päivitykset joilla on tagi %s" +#: actions/showstream.php:79 +#, fuzzy, php-format +msgid "%1$s, page %2$d" +msgstr "%s ja kaverit, sivu %d" + #: actions/showstream.php:122 #, fuzzy, php-format msgid "Notice feed for %1$s tagged %2$s (RSS 1.0)" @@ -3188,20 +3675,20 @@ msgstr "Päivityksien syöte käyttäjälle %s" msgid "FOAF for %s" msgstr "Käyttäjän %s lähetetyt viestit" -#: actions/showstream.php:191 +#: actions/showstream.php:200 #, fuzzy, php-format msgid "This is the timeline for %1$s but %2$s hasn't posted anything yet." msgstr "" "Tämä on käyttäjän %s aikajana, mutta %s ei ole lähettänyt vielä yhtään " "päivitystä." -#: actions/showstream.php:196 +#: actions/showstream.php:205 msgid "" "Seen anything interesting recently? You haven't posted any notices yet, now " "would be a good time to start :)" msgstr "" -#: actions/showstream.php:198 +#: actions/showstream.php:207 #, fuzzy, php-format msgid "" "You can try to nudge %1$s or [post something to his or her attention](%%%%" @@ -3210,7 +3697,7 @@ msgstr "" "Ole ensimmäinen joka [lähettää päivityksen tästä aiheesta] (%%%%action." "newnotice%%%%?status_textarea=%s)!" -#: actions/showstream.php:234 +#: actions/showstream.php:243 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3219,7 +3706,7 @@ msgid "" "follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showstream.php:239 +#: actions/showstream.php:248 #, fuzzy, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3229,7 +3716,7 @@ msgstr "" "Käyttäjällä **%s** on käyttäjätili palvelussa %%%%site.name%%%%, joka on " "[mikroblogauspalvelu](http://en.wikipedia.org/wiki/Micro-blogging)" -#: actions/showstream.php:313 +#: actions/showstream.php:305 #, fuzzy, php-format msgid "Repeat of %s" msgstr "Vastaukset käyttäjälle %s" @@ -3248,207 +3735,148 @@ msgstr "Käyttäjä on asettanut eston sinulle." msgid "Basic settings for this StatusNet site." msgstr "" -#: actions/siteadminpanel.php:146 +#: actions/siteadminpanel.php:132 msgid "Site name must have non-zero length." msgstr "" -#: actions/siteadminpanel.php:154 +#: actions/siteadminpanel.php:140 #, fuzzy msgid "You must have a valid contact email address." msgstr "Tuo ei ole kelvollinen sähköpostiosoite" -#: actions/siteadminpanel.php:172 +#: actions/siteadminpanel.php:158 #, php-format msgid "Unknown language \"%s\"." msgstr "" -#: actions/siteadminpanel.php:179 +#: actions/siteadminpanel.php:165 msgid "Invalid snapshot report URL." msgstr "" -#: actions/siteadminpanel.php:185 +#: actions/siteadminpanel.php:171 msgid "Invalid snapshot run value." msgstr "" -#: actions/siteadminpanel.php:191 +#: actions/siteadminpanel.php:177 msgid "Snapshot frequency must be a number." msgstr "" -#: actions/siteadminpanel.php:197 +#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "" -#: actions/siteadminpanel.php:203 +#: actions/siteadminpanel.php:189 msgid "Dupe limit must 1 or more seconds." msgstr "" -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:239 msgid "General" msgstr "" -#: actions/siteadminpanel.php:256 +#: actions/siteadminpanel.php:242 #, fuzzy msgid "Site name" msgstr "Palvelun ilmoitus" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:243 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "" -#: actions/siteadminpanel.php:261 +#: actions/siteadminpanel.php:247 msgid "Brought by" msgstr "" -#: actions/siteadminpanel.php:262 +#: actions/siteadminpanel.php:248 msgid "Text used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:266 +#: actions/siteadminpanel.php:252 msgid "Brought by URL" msgstr "" -#: actions/siteadminpanel.php:267 +#: actions/siteadminpanel.php:253 msgid "URL used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:271 +#: actions/siteadminpanel.php:257 #, fuzzy msgid "Contact email address for your site" msgstr "Uusi sähköpostiosoite päivityksien lähettämiseen palveluun %s" -#: actions/siteadminpanel.php:277 +#: actions/siteadminpanel.php:263 #, fuzzy msgid "Local" msgstr "Paikalliset näkymät" -#: actions/siteadminpanel.php:288 +#: actions/siteadminpanel.php:274 msgid "Default timezone" msgstr "" -#: actions/siteadminpanel.php:289 +#: actions/siteadminpanel.php:275 msgid "Default timezone for the site; usually UTC." msgstr "" -#: actions/siteadminpanel.php:295 +#: actions/siteadminpanel.php:281 #, fuzzy msgid "Default site language" msgstr "Ensisijainen kieli" -#: actions/siteadminpanel.php:303 -#, fuzzy -msgid "URLs" -msgstr "URL" - -#: actions/siteadminpanel.php:306 -#, fuzzy -msgid "Server" -msgstr "Palauta" - -#: actions/siteadminpanel.php:306 -msgid "Site's server hostname." -msgstr "" - -#: actions/siteadminpanel.php:310 -msgid "Fancy URLs" -msgstr "" - -#: actions/siteadminpanel.php:312 -msgid "Use fancy (more readable and memorable) URLs?" -msgstr "" - -#: actions/siteadminpanel.php:318 -#, fuzzy -msgid "Access" -msgstr "Hyväksy" - -#: actions/siteadminpanel.php:321 -#, fuzzy -msgid "Private" -msgstr "Yksityisyys" - -#: actions/siteadminpanel.php:323 -msgid "Prohibit anonymous users (not logged in) from viewing site?" -msgstr "" - -#: actions/siteadminpanel.php:327 -#, fuzzy -msgid "Invite only" -msgstr "Kutsu" - -#: actions/siteadminpanel.php:329 -msgid "Make registration invitation only." -msgstr "" - -#: actions/siteadminpanel.php:333 -#, fuzzy -msgid "Closed" -msgstr "Estä" - -#: actions/siteadminpanel.php:335 -msgid "Disable new registrations." -msgstr "" - -#: actions/siteadminpanel.php:341 +#: actions/siteadminpanel.php:289 msgid "Snapshots" msgstr "" -#: actions/siteadminpanel.php:344 +#: actions/siteadminpanel.php:292 msgid "Randomly during Web hit" msgstr "" -#: actions/siteadminpanel.php:345 +#: actions/siteadminpanel.php:293 msgid "In a scheduled job" msgstr "" -#: actions/siteadminpanel.php:347 +#: actions/siteadminpanel.php:295 msgid "Data snapshots" msgstr "" -#: actions/siteadminpanel.php:348 +#: actions/siteadminpanel.php:296 msgid "When to send statistical data to status.net servers" msgstr "" -#: actions/siteadminpanel.php:353 +#: actions/siteadminpanel.php:301 msgid "Frequency" msgstr "" -#: actions/siteadminpanel.php:354 +#: actions/siteadminpanel.php:302 msgid "Snapshots will be sent once every N web hits" msgstr "" -#: actions/siteadminpanel.php:359 +#: actions/siteadminpanel.php:307 msgid "Report URL" msgstr "" -#: actions/siteadminpanel.php:360 +#: actions/siteadminpanel.php:308 msgid "Snapshots will be sent to this URL" msgstr "" -#: actions/siteadminpanel.php:367 +#: actions/siteadminpanel.php:315 msgid "Limits" msgstr "" -#: actions/siteadminpanel.php:370 +#: actions/siteadminpanel.php:318 msgid "Text limit" msgstr "" -#: actions/siteadminpanel.php:370 +#: actions/siteadminpanel.php:318 msgid "Maximum number of characters for notices." msgstr "" -#: actions/siteadminpanel.php:374 +#: actions/siteadminpanel.php:322 msgid "Dupe limit" msgstr "" -#: actions/siteadminpanel.php:374 +#: actions/siteadminpanel.php:322 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" -#: actions/siteadminpanel.php:388 actions/useradminpanel.php:313 -#, fuzzy -msgid "Save site settings" -msgstr "Profiilikuva-asetukset" - #: actions/smssettings.php:58 #, fuzzy msgid "SMS settings" @@ -3555,15 +3983,26 @@ msgstr "Koodia ei ole syötetty." msgid "You are not subscribed to that profile." msgstr "Et ole tilannut tämän käyttäjän päivityksiä." -#: actions/subedit.php:83 +#: actions/subedit.php:83 classes/Subscription.php:89 +#: classes/Subscription.php:116 msgid "Could not save subscription." msgstr "Tilausta ei onnistuttu tallentamaan." -#: actions/subscribe.php:55 -msgid "Not a local user." -msgstr "Käyttäjä ei ole rekisteröitynyt tähän palveluun." +#: actions/subscribe.php:77 +msgid "This action only accepts POST requests." +msgstr "" -#: actions/subscribe.php:69 +#: actions/subscribe.php:107 +#, fuzzy +msgid "No such profile." +msgstr "Tiedostoa ei ole." + +#: actions/subscribe.php:117 +#, fuzzy +msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." +msgstr "Et ole tilannut tämän käyttäjän päivityksiä." + +#: actions/subscribe.php:145 msgid "Subscribed" msgstr "Tilattu" @@ -3623,7 +4062,7 @@ msgstr "Näiden ihmisten päivityksiä sinä seuraat." msgid "These are the people whose notices %s listens to." msgstr "Käyttäjä %s seuraa näiden ihmisten päivityksiä." -#: actions/subscriptions.php:121 +#: actions/subscriptions.php:126 #, php-format msgid "" "You're not listening to anyone's notices right now, try subscribing to " @@ -3633,19 +4072,24 @@ msgid "" "automatically subscribe to people you already follow there." msgstr "" -#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#: actions/subscriptions.php:128 actions/subscriptions.php:132 #, php-format msgid "%s is not listening to anyone." msgstr "%s ei seuraa ketään käyttäjää." -#: actions/subscriptions.php:194 +#: actions/subscriptions.php:199 msgid "Jabber" msgstr "Jabber" -#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:204 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "SMS" +#: actions/tag.php:68 +#, fuzzy, php-format +msgid "Notices tagged with %1$s, page %2$d" +msgstr "Käyttäjät joilla henkilötagi %s - sivu %d" + #: actions/tag.php:86 #, fuzzy, php-format msgid "Notice feed for tag %s (RSS 1.0)" @@ -3675,7 +4119,8 @@ msgstr "Tagi %s" msgid "User profile" msgstr "Käyttäjän profiili" -#: actions/tagother.php:81 lib/userprofile.php:102 +#: actions/tagother.php:81 actions/userauthorization.php:132 +#: lib/userprofile.php:102 msgid "Photo" msgstr "Kuva" @@ -3739,7 +4184,7 @@ msgstr "Ei profiili id:tä kyselyssä." msgid "Unsubscribed" msgstr "Tilaus lopetettu" -#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#: actions/updateprofile.php:62 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -3754,91 +4199,71 @@ msgstr "Käyttäjä" msgid "User settings for this StatusNet site." msgstr "" -#: actions/useradminpanel.php:149 +#: actions/useradminpanel.php:148 msgid "Invalid bio limit. Must be numeric." msgstr "" -#: actions/useradminpanel.php:155 +#: actions/useradminpanel.php:154 msgid "Invalid welcome text. Max length is 255 characters." msgstr "" -#: actions/useradminpanel.php:165 +#: actions/useradminpanel.php:164 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 +#: actions/useradminpanel.php:217 lib/accountsettingsaction.php:108 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Profiili" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:221 msgid "Bio Limit" msgstr "" -#: actions/useradminpanel.php:223 +#: actions/useradminpanel.php:222 msgid "Maximum length of a profile bio in characters." msgstr "" -#: actions/useradminpanel.php:231 +#: actions/useradminpanel.php:230 #, fuzzy msgid "New users" msgstr "Kutsu uusia käyttäjiä" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:234 msgid "New user welcome" msgstr "" -#: actions/useradminpanel.php:236 +#: actions/useradminpanel.php:235 msgid "Welcome text for new users (Max 255 chars)." msgstr "" -#: actions/useradminpanel.php:241 +#: actions/useradminpanel.php:240 #, fuzzy msgid "Default subscription" msgstr "Kaikki tilaukset" -#: actions/useradminpanel.php:242 +#: actions/useradminpanel.php:241 #, fuzzy msgid "Automatically subscribe new users to this user." msgstr "" "Tilaa automaattisesti kaikki, jotka tilaavat päivitykseni (ei sovi hyvin " "ihmiskäyttäjille)" -#: actions/useradminpanel.php:251 +#: actions/useradminpanel.php:250 #, fuzzy msgid "Invitations" msgstr "Kutsu(t) lähetettiin" -#: actions/useradminpanel.php:256 +#: actions/useradminpanel.php:255 #, fuzzy msgid "Invitations enabled" msgstr "Kutsu(t) lähetettiin" -#: actions/useradminpanel.php:258 +#: actions/useradminpanel.php:257 msgid "Whether to allow users to invite new users." msgstr "" -#: actions/useradminpanel.php:265 -msgid "Sessions" -msgstr "" - -#: actions/useradminpanel.php:270 -msgid "Handle sessions" -msgstr "" - -#: actions/useradminpanel.php:272 -msgid "Whether to handle sessions ourselves." -msgstr "" - -#: actions/useradminpanel.php:276 -msgid "Session debugging" -msgstr "" - -#: actions/useradminpanel.php:278 -msgid "Turn on debugging output for sessions." -msgstr "" - #: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Valtuuta tilaus" @@ -3854,37 +4279,37 @@ msgstr "" "päivitykset. Jos et valinnut haluavasi tilata jonkin käyttäjän päivityksiä, " "paina \"Peruuta\"." -#: actions/userauthorization.php:188 actions/version.php:165 +#: actions/userauthorization.php:196 actions/version.php:165 msgid "License" msgstr "Lisenssi" -#: actions/userauthorization.php:209 +#: actions/userauthorization.php:217 msgid "Accept" msgstr "Hyväksy" -#: actions/userauthorization.php:210 lib/subscribeform.php:115 +#: actions/userauthorization.php:218 lib/subscribeform.php:115 #: lib/subscribeform.php:139 msgid "Subscribe to this user" msgstr "Tilaa tämä käyttäjä" -#: actions/userauthorization.php:211 +#: actions/userauthorization.php:219 msgid "Reject" msgstr "Hylkää" -#: actions/userauthorization.php:212 +#: actions/userauthorization.php:220 #, fuzzy msgid "Reject this subscription" msgstr "Käyttäjän %s tilaukset" -#: actions/userauthorization.php:225 +#: actions/userauthorization.php:232 msgid "No authorization request!" msgstr "Ei valtuutuspyyntöä!" -#: actions/userauthorization.php:247 +#: actions/userauthorization.php:254 msgid "Subscription authorized" msgstr "Tilaus sallittu" -#: actions/userauthorization.php:249 +#: actions/userauthorization.php:256 #, fuzzy msgid "" "The subscription has been authorized, but no callback URL was passed. Check " @@ -3895,11 +4320,11 @@ msgstr "" "saatu. Tarkista sivuston ohjeet miten päivityksen tilaus hyväksytään. " "Tilauskoodisi on:" -#: actions/userauthorization.php:259 +#: actions/userauthorization.php:266 msgid "Subscription rejected" msgstr "Tilaus hylätty" -#: actions/userauthorization.php:261 +#: actions/userauthorization.php:268 #, fuzzy msgid "" "The subscription has been rejected, but no callback URL was passed. Check " @@ -3909,37 +4334,37 @@ 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/userauthorization.php:296 +#: actions/userauthorization.php:303 #, php-format msgid "Listener URI ‘%s’ not found here." msgstr "" -#: actions/userauthorization.php:301 +#: actions/userauthorization.php:308 #, php-format msgid "Listenee URI ‘%s’ is too long." msgstr "" -#: actions/userauthorization.php:307 +#: actions/userauthorization.php:314 #, php-format msgid "Listenee URI ‘%s’ is a local user." msgstr "" -#: actions/userauthorization.php:322 +#: actions/userauthorization.php:329 #, php-format msgid "Profile URL ‘%s’ is for a local user." msgstr "" -#: actions/userauthorization.php:338 +#: actions/userauthorization.php:345 #, php-format msgid "Avatar URL ‘%s’ is not valid." msgstr "" -#: actions/userauthorization.php:343 +#: actions/userauthorization.php:350 #, fuzzy, php-format msgid "Can’t read avatar URL ‘%s’." msgstr "Kuvan URL-osoitetta '%s' ei voi avata." -#: actions/userauthorization.php:348 +#: actions/userauthorization.php:355 #, fuzzy, php-format msgid "Wrong image type for avatar URL ‘%s’." msgstr "Kuvan '%s' tyyppi on väärä" @@ -3959,6 +4384,11 @@ msgstr "" msgid "Enjoy your hotdog!" msgstr "" +#: actions/usergroups.php:64 +#, fuzzy, php-format +msgid "%1$s groups, page %2$d" +msgstr "Ryhmän %s jäsenet, sivu %d" + #: actions/usergroups.php:130 msgid "Search for more groups" msgstr "Hae lisää ryhmiä" @@ -3985,11 +4415,6 @@ msgid "" "Inc. and contributors." msgstr "" -#: actions/version.php:157 -#, fuzzy -msgid "StatusNet" -msgstr "Päivitys poistettu." - #: actions/version.php:161 msgid "Contributors" msgstr "" @@ -4021,12 +4446,7 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:195 -#, fuzzy -msgid "Name" -msgstr "Tunnus" - -#: actions/version.php:196 lib/action.php:741 +#: actions/version.php:196 lib/action.php:747 #, fuzzy msgid "Version" msgstr "Omat" @@ -4035,10 +4455,6 @@ msgstr "Omat" msgid "Author(s)" msgstr "" -#: actions/version.php:198 lib/groupeditform.php:172 -msgid "Description" -msgstr "Kuvaus" - #: classes/File.php:144 #, php-format msgid "" @@ -4089,28 +4505,28 @@ msgstr "Viestin tallennus ei onnistunut." msgid "Could not update message with new URI." msgstr "Viestin päivittäminen uudella URI-osoitteella ei onnistunut." -#: classes/Notice.php:171 +#: classes/Notice.php:157 #, php-format msgid "DB error inserting hashtag: %s" msgstr "Tietokantavirhe tallennettaessa risutagiä: %s" -#: classes/Notice.php:225 +#: classes/Notice.php:222 #, fuzzy msgid "Problem saving notice. Too long." msgstr "Ongelma päivityksen tallentamisessa." -#: classes/Notice.php:229 +#: classes/Notice.php:226 msgid "Problem saving notice. Unknown user." msgstr "Virhe tapahtui päivityksen tallennuksessa. Tuntematon käyttäjä." -#: classes/Notice.php:234 +#: classes/Notice.php:231 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ä." -#: classes/Notice.php:240 +#: classes/Notice.php:237 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." @@ -4118,34 +4534,61 @@ 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:246 +#: classes/Notice.php:243 msgid "You are banned from posting notices on this site." msgstr "Päivityksesi tähän palveluun on estetty." -#: classes/Notice.php:305 classes/Notice.php:330 +#: classes/Notice.php:309 classes/Notice.php:335 msgid "Problem saving notice." msgstr "Ongelma päivityksen tallentamisessa." -#: classes/Notice.php:1052 -#, php-format -msgid "DB error inserting reply: %s" -msgstr "Tietokantavirhe tallennettaessa vastausta: %s" +#: classes/Notice.php:882 +#, fuzzy +msgid "Problem saving group inbox." +msgstr "Ongelma päivityksen tallentamisessa." -#: classes/Notice.php:1423 +#: classes/Notice.php:1407 #, fuzzy, php-format msgid "RT @%1$s %2$s" msgstr "%1$s (%2$s)" -#: classes/User.php:382 +#: classes/Subscription.php:66 lib/oauthstore.php:465 +#, fuzzy +msgid "You have been banned from subscribing." +msgstr "Käyttäjä on estänyt sinua tilaamasta päivityksiä." + +#: classes/Subscription.php:70 +msgid "Already subscribed!" +msgstr "" + +#: classes/Subscription.php:74 +msgid "User has blocked you." +msgstr "Käyttäjä on asettanut eston sinulle." + +#: classes/Subscription.php:157 +#, fuzzy +msgid "Not subscribed!" +msgstr "Ei ole tilattu!." + +#: classes/Subscription.php:163 +#, fuzzy +msgid "Couldn't delete self-subscription." +msgstr "Ei voitu poistaa tilausta." + +#: classes/Subscription.php:179 lib/subs.php:69 +msgid "Couldn't delete subscription." +msgstr "Ei voitu poistaa tilausta." + +#: classes/User.php:372 #, fuzzy, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "Viesti käyttäjälle %1$s, %2$s" -#: classes/User_group.php:380 +#: classes/User_group.php:423 msgid "Could not create group." msgstr "Ryhmän luonti ei onnistunut." -#: classes/User_group.php:409 +#: classes/User_group.php:452 msgid "Could not set group membership." msgstr "Ryhmän jäsenyystietoja ei voitu asettaa." @@ -4187,131 +4630,127 @@ msgstr "%1$s (%2$s)" msgid "Untitled page" msgstr "Nimetön sivu" -#: lib/action.php:427 +#: lib/action.php:433 msgid "Primary site navigation" msgstr "Ensisijainen sivunavigointi" -#: lib/action.php:433 +#: lib/action.php:439 msgid "Home" msgstr "Koti" -#: lib/action.php:433 +#: lib/action.php:439 msgid "Personal profile and friends timeline" msgstr "Henkilökohtainen profiili ja kavereiden aikajana" -#: lib/action.php:435 -msgid "Account" -msgstr "Käyttäjätili" - -#: lib/action.php:435 +#: lib/action.php:441 msgid "Change your email, avatar, password, profile" msgstr "Muuta sähköpostiosoitettasi, kuvaasi, salasanaasi, profiiliasi" -#: lib/action.php:438 +#: lib/action.php:444 msgid "Connect" msgstr "Yhdistä" -#: lib/action.php:438 +#: lib/action.php:444 #, fuzzy msgid "Connect to services" msgstr "Ei voitu uudelleenohjata palvelimelle: %s" -#: lib/action.php:442 +#: lib/action.php:448 #, fuzzy msgid "Change site configuration" msgstr "Ensisijainen sivunavigointi" -#: lib/action.php:446 lib/subgroupnav.php:105 +#: lib/action.php:452 lib/subgroupnav.php:105 msgid "Invite" msgstr "Kutsu" -#: lib/action.php:447 lib/subgroupnav.php:106 +#: lib/action.php:453 lib/subgroupnav.php:106 #, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "Kutsu kavereita ja työkavereita liittymään palveluun %s" -#: lib/action.php:452 +#: lib/action.php:458 msgid "Logout" msgstr "Kirjaudu ulos" -#: lib/action.php:452 +#: lib/action.php:458 msgid "Logout from the site" msgstr "Kirjaudu ulos palvelusta" -#: lib/action.php:457 +#: lib/action.php:463 msgid "Create an account" msgstr "Luo uusi käyttäjätili" -#: lib/action.php:460 +#: lib/action.php:466 msgid "Login to the site" msgstr "Kirjaudu sisään palveluun" -#: lib/action.php:463 lib/action.php:726 +#: lib/action.php:469 lib/action.php:732 msgid "Help" msgstr "Ohjeet" -#: lib/action.php:463 +#: lib/action.php:469 msgid "Help me!" msgstr "Auta minua!" -#: lib/action.php:466 lib/searchaction.php:127 +#: lib/action.php:472 lib/searchaction.php:127 msgid "Search" msgstr "Haku" -#: lib/action.php:466 +#: lib/action.php:472 msgid "Search for people or text" msgstr "Hae ihmisiä tai tekstiä" -#: lib/action.php:487 +#: lib/action.php:493 msgid "Site notice" msgstr "Palvelun ilmoitus" -#: lib/action.php:553 +#: lib/action.php:559 msgid "Local views" msgstr "Paikalliset näkymät" -#: lib/action.php:619 +#: lib/action.php:625 msgid "Page notice" msgstr "Sivuilmoitus" -#: lib/action.php:721 +#: lib/action.php:727 msgid "Secondary site navigation" msgstr "Toissijainen sivunavigointi" -#: lib/action.php:728 +#: lib/action.php:734 msgid "About" msgstr "Tietoa" -#: lib/action.php:730 +#: lib/action.php:736 msgid "FAQ" msgstr "UKK" -#: lib/action.php:734 +#: lib/action.php:740 msgid "TOS" msgstr "" -#: lib/action.php:737 +#: lib/action.php:743 msgid "Privacy" msgstr "Yksityisyys" -#: lib/action.php:739 +#: lib/action.php:745 msgid "Source" msgstr "Lähdekoodi" -#: lib/action.php:743 +#: lib/action.php:749 msgid "Contact" msgstr "Ota yhteyttä" -#: lib/action.php:745 +#: lib/action.php:751 #, fuzzy msgid "Badge" msgstr "Tönäise" -#: lib/action.php:773 +#: lib/action.php:779 msgid "StatusNet software license" msgstr "StatusNet-ohjelmiston lisenssi" -#: lib/action.php:776 +#: lib/action.php:782 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4320,12 +4759,12 @@ msgstr "" "**%%site.name%%** on mikroblogipalvelu, jonka tarjoaa [%%site.broughtby%%](%%" "site.broughtbyurl%%). " -#: lib/action.php:778 +#: lib/action.php:784 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** on mikroblogipalvelu. " -#: lib/action.php:780 +#: lib/action.php:786 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4336,34 +4775,56 @@ msgstr "" "versio %s, saatavilla lisenssillä [GNU Affero General Public License](http://" "www.fsf.org/licensing/licenses/agpl-3.0.html)." -#: lib/action.php:794 +#: lib/action.php:801 #, fuzzy msgid "Site content license" msgstr "StatusNet-ohjelmiston lisenssi" -#: lib/action.php:803 +#: lib/action.php:806 +#, php-format +msgid "Content and data of %1$s are private and confidential." +msgstr "" + +#: lib/action.php:811 +#, php-format +msgid "Content and data copyright by %1$s. All rights reserved." +msgstr "" + +#: lib/action.php:814 +msgid "Content and data copyright by contributors. All rights reserved." +msgstr "" + +#: lib/action.php:827 msgid "All " msgstr "Kaikki " -#: lib/action.php:808 +#: lib/action.php:833 msgid "license." msgstr "lisenssi." -#: lib/action.php:1102 +#: lib/action.php:1132 msgid "Pagination" msgstr "Sivutus" -#: lib/action.php:1111 +#: lib/action.php:1141 msgid "After" msgstr "Myöhemmin" -#: lib/action.php:1119 +#: lib/action.php:1149 msgid "Before" msgstr "Aiemmin" -#: lib/action.php:1167 -msgid "There was a problem with your session token." -msgstr "Istuntoavaimesi kanssa oli ongelma." +#: lib/activity.php:382 +msgid "Can't handle remote content yet." +msgstr "" + +#: lib/activity.php:410 +msgid "Can't handle embedded XML content yet." +msgstr "" + +#: lib/activity.php:414 +msgid "Can't handle embedded Base64 content yet." +msgstr "" #: lib/adminpanelaction.php:96 #, fuzzy @@ -4400,11 +4861,105 @@ msgstr "Sähköpostiosoitteen vahvistus" msgid "Design configuration" msgstr "SMS vahvistus" -#: lib/adminpanelaction.php:322 lib/adminpanelaction.php:327 +#: lib/adminpanelaction.php:322 +#, fuzzy +msgid "User configuration" +msgstr "SMS vahvistus" + +#: lib/adminpanelaction.php:327 +#, fuzzy +msgid "Access configuration" +msgstr "SMS vahvistus" + +#: lib/adminpanelaction.php:332 #, fuzzy msgid "Paths configuration" msgstr "SMS vahvistus" +#: lib/adminpanelaction.php:337 +#, fuzzy +msgid "Sessions configuration" +msgstr "SMS vahvistus" + +#: lib/apiauth.php:95 +msgid "API resource requires read-write access, but you only have read access." +msgstr "" + +#: lib/apiauth.php:273 +#, php-format +msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" +msgstr "" + +#: lib/applicationeditform.php:136 +msgid "Edit application" +msgstr "" + +#: lib/applicationeditform.php:184 +msgid "Icon for this application" +msgstr "" + +#: lib/applicationeditform.php:204 +#, fuzzy, php-format +msgid "Describe your application in %d characters" +msgstr "Kuvaile ryhmää tai aihetta 140 merkillä" + +#: lib/applicationeditform.php:207 +#, fuzzy +msgid "Describe your application" +msgstr "Kuvaile ryhmää tai aihetta 140 merkillä" + +#: lib/applicationeditform.php:216 +#, fuzzy +msgid "Source URL" +msgstr "Lähdekoodi" + +#: lib/applicationeditform.php:218 +#, fuzzy +msgid "URL of the homepage of this application" +msgstr "Ryhmän tai aiheen kotisivun tai blogin osoite" + +#: lib/applicationeditform.php:224 +msgid "Organization responsible for this application" +msgstr "" + +#: lib/applicationeditform.php:230 +#, fuzzy +msgid "URL for the homepage of the organization" +msgstr "Ryhmän tai aiheen kotisivun tai blogin osoite" + +#: lib/applicationeditform.php:236 +msgid "URL to redirect to after authentication" +msgstr "" + +#: lib/applicationeditform.php:258 +msgid "Browser" +msgstr "" + +#: lib/applicationeditform.php:274 +msgid "Desktop" +msgstr "" + +#: lib/applicationeditform.php:275 +msgid "Type of application, browser or desktop" +msgstr "" + +#: lib/applicationeditform.php:297 +msgid "Read-only" +msgstr "" + +#: lib/applicationeditform.php:315 +msgid "Read-write" +msgstr "" + +#: lib/applicationeditform.php:316 +msgid "Default access for this application: read-only, or read-write" +msgstr "" + +#: lib/applicationlist.php:154 +#, fuzzy +msgid "Revoke" +msgstr "Poista" + #: lib/attachmentlist.php:87 msgid "Attachments" msgstr "" @@ -4426,12 +4981,12 @@ msgstr "" msgid "Tags for this attachment" msgstr "" -#: lib/authenticationplugin.php:182 lib/authenticationplugin.php:187 +#: lib/authenticationplugin.php:218 lib/authenticationplugin.php:223 #, fuzzy msgid "Password changing failed" msgstr "Salasanan vaihto" -#: lib/authenticationplugin.php:197 +#: lib/authenticationplugin.php:233 #, fuzzy msgid "Password changing is not allowed" msgstr "Salasanan vaihto" @@ -4585,83 +5140,92 @@ msgstr "Ongelma päivityksen tallentamisessa." msgid "Specify the name of the user to subscribe to" msgstr "Anna käyttäjätunnus, jonka päivitykset haluat tilata" -#: lib/command.php:554 +#: lib/command.php:554 lib/command.php:589 +msgid "No such user" +msgstr "Käyttäjää ei ole." + +#: lib/command.php:561 #, php-format msgid "Subscribed to %s" msgstr "Käyttäjän %s päivitykset tilattu" -#: lib/command.php:575 +#: lib/command.php:582 lib/command.php:685 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:582 +#: lib/command.php:595 #, php-format msgid "Unsubscribed from %s" msgstr "Käyttäjän %s päivitysten tilaus lopetettu" -#: lib/command.php:600 lib/command.php:623 +#: lib/command.php:613 lib/command.php:636 msgid "Command not yet implemented." msgstr "Komentoa ei ole vielä toteutettu." -#: lib/command.php:603 +#: lib/command.php:616 msgid "Notification off." msgstr "Ilmoitukset pois päältä." -#: lib/command.php:605 +#: lib/command.php:618 msgid "Can't turn off notification." msgstr "Ilmoituksia ei voi pistää pois päältä." -#: lib/command.php:626 +#: lib/command.php:639 msgid "Notification on." msgstr "Ilmoitukset päällä." -#: lib/command.php:628 +#: lib/command.php:641 msgid "Can't turn on notification." msgstr "Ilmoituksia ei voi pistää päälle." -#: lib/command.php:641 +#: lib/command.php:654 msgid "Login command is disabled" msgstr "" -#: lib/command.php:652 +#: lib/command.php:665 #, php-format msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "" -#: lib/command.php:668 +#: lib/command.php:692 +#, fuzzy, php-format +msgid "Unsubscribed %s" +msgstr "Käyttäjän %s päivitysten tilaus lopetettu" + +#: lib/command.php:709 #, fuzzy msgid "You are not subscribed to anyone." msgstr "Et ole tilannut tämän käyttäjän päivityksiä." -#: lib/command.php:670 +#: lib/command.php:711 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "Olet jos tilannut seuraavien käyttäjien päivitykset:" msgstr[1] "Olet jos tilannut seuraavien käyttäjien päivitykset:" -#: lib/command.php:690 +#: lib/command.php:731 #, fuzzy msgid "No one is subscribed to you." msgstr "Toista ei voitu asettaa tilaamaan sinua." -#: lib/command.php:692 +#: lib/command.php:733 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "Toista ei voitu asettaa tilaamaan sinua." msgstr[1] "Toista ei voitu asettaa tilaamaan sinua." -#: lib/command.php:712 +#: lib/command.php:753 #, fuzzy msgid "You are not a member of any groups." msgstr "Sinä et kuulu tähän ryhmään." -#: lib/command.php:714 +#: lib/command.php:755 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "Sinä et kuulu tähän ryhmään." msgstr[1] "Sinä et kuulu tähän ryhmään." -#: lib/command.php:728 +#: lib/command.php:769 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -4675,6 +5239,7 @@ msgid "" "d - direct message to user\n" "get - get last notice from user\n" "whois - get profile info on user\n" +"lose - force user to stop following you\n" "fav - add user's last notice as a 'fave'\n" "fav # - add notice with the given id as a 'fave'\n" "repeat # - repeat a notice with a given id\n" @@ -4702,20 +5267,20 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:131 +#: lib/common.php:136 #, fuzzy msgid "No configuration file found. " msgstr "Varmistuskoodia ei ole annettu." -#: lib/common.php:132 +#: lib/common.php:137 msgid "I looked for configuration files in the following places: " msgstr "" -#: lib/common.php:134 +#: lib/common.php:139 msgid "You may wish to run the installer to fix this." msgstr "" -#: lib/common.php:135 +#: lib/common.php:140 #, fuzzy msgid "Go to the installer." msgstr "Kirjaudu sisään palveluun" @@ -4732,6 +5297,15 @@ msgstr "Päivitykset pikaviestintä käyttäen (IM)" msgid "Updates by SMS" msgstr "Päivitykset SMS:llä" +#: lib/connectsettingsaction.php:120 +#, fuzzy +msgid "Connections" +msgstr "Yhdistä" + +#: lib/connectsettingsaction.php:121 +msgid "Authorized connected applications" +msgstr "" + #: lib/dberroraction.php:60 msgid "Database error" msgstr "Tietokantavirhe" @@ -4921,12 +5495,12 @@ msgstr "" msgid "kB" msgstr "" -#: lib/jabber.php:202 +#: lib/jabber.php:220 #, php-format msgid "[%s]" msgstr "" -#: lib/jabber.php:385 +#: lib/jabber.php:400 #, php-format msgid "Unknown inbox source %d." msgstr "" @@ -5141,7 +5715,7 @@ msgid "" "users in conversation. People can send you messages for your eyes only." msgstr "" -#: lib/mailbox.php:227 lib/noticelist.php:477 +#: lib/mailbox.php:227 lib/noticelist.php:482 #, fuzzy msgid "from" msgstr " lähteestä " @@ -5260,60 +5834,56 @@ msgid "Do not share my location" msgstr "Tageja ei voitu tallentaa." #: lib/noticeform.php:216 -msgid "Hide this info" -msgstr "" - -#: lib/noticeform.php:217 msgid "" "Sorry, retrieving your geo location is taking longer than expected, please " "try again later" msgstr "" -#: lib/noticelist.php:428 +#: lib/noticelist.php:429 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "" -#: lib/noticelist.php:429 +#: lib/noticelist.php:430 #, fuzzy msgid "N" msgstr "Ei" -#: lib/noticelist.php:429 +#: lib/noticelist.php:430 msgid "S" msgstr "" -#: lib/noticelist.php:430 +#: lib/noticelist.php:431 msgid "E" msgstr "" -#: lib/noticelist.php:430 +#: lib/noticelist.php:431 msgid "W" msgstr "" -#: lib/noticelist.php:436 +#: lib/noticelist.php:438 msgid "at" msgstr "" -#: lib/noticelist.php:531 +#: lib/noticelist.php:558 #, fuzzy msgid "in context" msgstr "Ei sisältöä!" -#: lib/noticelist.php:556 +#: lib/noticelist.php:583 #, fuzzy msgid "Repeated by" msgstr "Luotu" -#: lib/noticelist.php:585 +#: lib/noticelist.php:610 msgid "Reply to this notice" msgstr "Vastaa tähän päivitykseen" -#: lib/noticelist.php:586 +#: lib/noticelist.php:611 msgid "Reply" msgstr "Vastaus" -#: lib/noticelist.php:628 +#: lib/noticelist.php:655 #, fuzzy msgid "Notice repeated" msgstr "Päivitys on poistettu." @@ -5347,12 +5917,7 @@ msgstr "Virhe tapahtui uuden etäprofiilin lisäämisessä" msgid "Duplicate notice" msgstr "Poista päivitys" -#: lib/oauthstore.php:466 lib/subs.php:48 -#, fuzzy -msgid "You have been banned from subscribing." -msgstr "Käyttäjä on estänyt sinua tilaamasta päivityksiä." - -#: lib/oauthstore.php:491 +#: lib/oauthstore.php:490 msgid "Couldn't insert new subscription." msgstr "Ei voitu lisätä uutta tilausta." @@ -5368,19 +5933,19 @@ msgstr "Vastaukset" msgid "Favorites" msgstr "Suosikit" -#: lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "Saapuneet" -#: lib/personalgroupnav.php:125 +#: lib/personalgroupnav.php:126 msgid "Your incoming messages" msgstr "Sinulle saapuneet viestit" -#: lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 msgid "Outbox" msgstr "Lähetetyt" -#: lib/personalgroupnav.php:130 +#: lib/personalgroupnav.php:131 msgid "Your sent messages" msgstr "Lähettämäsi viestit" @@ -5462,6 +6027,10 @@ msgstr "Vastaa tähän päivitykseen" msgid "Repeat this notice" msgstr "Vastaa tähän päivitykseen" +#: lib/router.php:665 +msgid "No single user defined for single-user mode." +msgstr "" + #: lib/sandboxform.php:67 #, fuzzy msgid "Sandbox" @@ -5535,36 +6104,6 @@ msgstr "Ihmiset jotka ovat käyttäjän %s tilaajia" msgid "Groups %s is a member of" msgstr "Ryhmät, joiden jäsen %s on" -#: lib/subs.php:52 -msgid "Already subscribed!" -msgstr "" - -#: lib/subs.php:56 -msgid "User has blocked you." -msgstr "Käyttäjä on asettanut eston sinulle." - -#: lib/subs.php:63 -msgid "Could not subscribe." -msgstr "Ei voitu tilata." - -#: lib/subs.php:82 -msgid "Could not subscribe other to you." -msgstr "Toista ei voitu asettaa tilaamaan sinua." - -#: lib/subs.php:137 -#, fuzzy -msgid "Not subscribed!" -msgstr "Ei ole tilattu!." - -#: lib/subs.php:142 -#, fuzzy -msgid "Couldn't delete self-subscription." -msgstr "Ei voitu poistaa tilausta." - -#: lib/subs.php:158 -msgid "Couldn't delete subscription." -msgstr "Ei voitu poistaa tilausta." - #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -5618,68 +6157,68 @@ msgstr "Kuva" msgid "User actions" msgstr "Käyttäjän toiminnot" -#: lib/userprofile.php:248 +#: lib/userprofile.php:251 #, fuzzy msgid "Edit profile settings" msgstr "Profiiliasetukset" -#: lib/userprofile.php:249 +#: lib/userprofile.php:252 msgid "Edit" msgstr "" -#: lib/userprofile.php:272 +#: lib/userprofile.php:275 msgid "Send a direct message to this user" msgstr "Lähetä suora viesti tälle käyttäjälle" -#: lib/userprofile.php:273 +#: lib/userprofile.php:276 msgid "Message" msgstr "Viesti" -#: lib/userprofile.php:311 +#: lib/userprofile.php:314 msgid "Moderate" msgstr "" -#: lib/util.php:877 +#: lib/util.php:952 msgid "a few seconds ago" msgstr "muutama sekunti sitten" -#: lib/util.php:879 +#: lib/util.php:954 msgid "about a minute ago" msgstr "noin minuutti sitten" -#: lib/util.php:881 +#: lib/util.php:956 #, php-format msgid "about %d minutes ago" msgstr "noin %d minuuttia sitten" -#: lib/util.php:883 +#: lib/util.php:958 msgid "about an hour ago" msgstr "noin tunti sitten" -#: lib/util.php:885 +#: lib/util.php:960 #, php-format msgid "about %d hours ago" msgstr "noin %d tuntia sitten" -#: lib/util.php:887 +#: lib/util.php:962 msgid "about a day ago" msgstr "noin päivä sitten" -#: lib/util.php:889 +#: lib/util.php:964 #, php-format msgid "about %d days ago" msgstr "noin %d päivää sitten" -#: lib/util.php:891 +#: lib/util.php:966 msgid "about a month ago" msgstr "noin kuukausi sitten" -#: lib/util.php:893 +#: lib/util.php:968 #, php-format msgid "about %d months ago" msgstr "noin %d kuukautta sitten" -#: lib/util.php:895 +#: lib/util.php:970 msgid "about a year ago" msgstr "noin vuosi sitten" @@ -5693,7 +6232,7 @@ msgstr "Kotisivun verkko-osoite ei ole toimiva." msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "" -#: scripts/xmppdaemon.php:301 +#: lib/xmppmanager.php:402 #, fuzzy, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "Viesti oli liian pitkä - maksimikoko on 140 merkkiä, lähetit %d" diff --git a/locale/fr/LC_MESSAGES/statusnet.po b/locale/fr/LC_MESSAGES/statusnet.po index 917a67ffca..cf0cc849b2 100644 --- a/locale/fr/LC_MESSAGES/statusnet.po +++ b/locale/fr/LC_MESSAGES/statusnet.po @@ -1,8 +1,10 @@ # Translation of StatusNet to French # +# Author@translatewiki.net: Crochet.david # Author@translatewiki.net: IAlex # Author@translatewiki.net: Isoph # Author@translatewiki.net: Jean-Frédéric +# Author@translatewiki.net: Julien C # Author@translatewiki.net: McDutchie # Author@translatewiki.net: Peter17 # -- @@ -12,17 +14,69 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-01-13 22:04+0000\n" -"PO-Revision-Date: 2010-01-13 22:05:16+0000\n" +"POT-Creation-Date: 2010-02-24 23:49+0000\n" +"PO-Revision-Date: 2010-02-24 23:50:48+0000\n" "Language-Team: French\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha (r61027); Translate extension (2010-01-04)\n" +"X-Generator: MediaWiki 1.17alpha (r62925); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#: actions/accessadminpanel.php:54 lib/adminpanelaction.php:326 +msgid "Access" +msgstr "Accès" + +#: actions/accessadminpanel.php:65 +msgid "Site access settings" +msgstr "Paramètres d’accès au site" + +#: actions/accessadminpanel.php:158 +msgid "Registration" +msgstr "Inscription" + +#: actions/accessadminpanel.php:161 +msgid "Private" +msgstr "Privé" + +#: actions/accessadminpanel.php:163 +msgid "Prohibit anonymous users (not logged in) from viewing site?" +msgstr "Interdire aux utilisateurs anonymes (non connectés) de voir le site ?" + +#: actions/accessadminpanel.php:167 +msgid "Invite only" +msgstr "Sur invitation uniquement" + +#: actions/accessadminpanel.php:169 +msgid "Make registration invitation only." +msgstr "Autoriser l’inscription sur invitation seulement." + +#: actions/accessadminpanel.php:173 +msgid "Closed" +msgstr "Fermé" + +#: actions/accessadminpanel.php:175 +msgid "Disable new registrations." +msgstr "Désactiver les nouvelles inscriptions." + +#: actions/accessadminpanel.php:189 actions/designadminpanel.php:586 +#: actions/emailsettings.php:195 actions/imsettings.php:163 +#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 +#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 +#: actions/siteadminpanel.php:336 actions/smssettings.php:181 +#: actions/subscriptions.php:208 actions/tagother.php:154 +#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 lib/designsettings.php:256 +#: lib/groupeditform.php:202 +msgid "Save" +msgstr "Enregistrer" + +#: actions/accessadminpanel.php:189 +msgid "Save access settings" +msgstr "Sauvegarder les paramètres d’accè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" @@ -37,25 +91,29 @@ msgstr "Page non trouvée" #: 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:144 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apistatusesupdate.php:148 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:78 #: actions/apitimelinehome.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/otp.php:76 #: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154 -#: actions/replies.php:73 actions/repliesrss.php:38 +#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 #: 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:302 lib/command.php:355 #: lib/command.php:401 lib/command.php:462 lib/command.php:518 #: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 -#: lib/subs.php:34 lib/subs.php:125 msgid "No such user." msgstr "Utilisateur non trouvé." +#: actions/all.php:84 +#, php-format +msgid "%1$s and friends, page %2$d" +msgstr "%1$s et ses amis, page %2$d" + #: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 -#: actions/apitimelinefriends.php:115 actions/apitimelinehome.php:115 +#: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" @@ -103,7 +161,7 @@ msgstr "" "profil ou [poster quelque chose à son intention](%%%%action.newnotice%%%%?" "status_textarea=%3$s)." -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211 #, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " @@ -116,8 +174,8 @@ msgstr "" msgid "You and friends" msgstr "Vous et vos amis" -#: actions/allrss.php:119 actions/apitimelinefriends.php:122 -#: actions/apitimelinehome.php:122 +#: actions/allrss.php:119 actions/apitimelinefriends.php:119 +#: actions/apitimelinehome.php:120 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Statuts de %1$s et ses amis dans %2$s!" @@ -127,23 +185,23 @@ msgstr "Statuts de %1$s et ses amis dans %2$s!" #: actions/apiaccountupdateprofile.php:97 #: actions/apiaccountupdateprofilebackgroundimage.php:94 #: actions/apiaccountupdateprofilecolors.php:118 -#: 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:136 actions/apigroupismember.php:114 -#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 -#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 -#: actions/apigroupmembership.php:106 actions/apigroupshow.php:105 -#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 -#: actions/apistatusesretweets.php:112 actions/apistatusesshow.php:108 -#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93 -#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:146 -#: actions/apitimelinefriends.php:156 actions/apitimelinegroup.php:150 -#: actions/apitimelinehome.php:156 actions/apitimelinementions.php:151 -#: actions/apitimelinepublic.php:131 actions/apitimelineretweetedbyme.php:122 +#: actions/apiaccountverifycredentials.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:128 actions/apigroupcreate.php:136 +#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 +#: actions/apigroupleave.php:141 actions/apigrouplist.php:132 +#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 +#: actions/apigroupshow.php:115 actions/apihelptest.php:88 +#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 +#: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 #: actions/apitimelineretweetedtome.php:121 -#: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141 -#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 +#: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 +#: actions/apitimelineuser.php:207 actions/apiusershow.php:101 msgid "API method not found." msgstr "Méthode API non trouvée !" @@ -157,7 +215,7 @@ msgstr "Méthode API non trouvée !" #: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 #: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 #: actions/apigroupleave.php:91 actions/apistatusesretweet.php:65 -#: actions/apistatusesupdate.php:114 +#: actions/apistatusesupdate.php:118 msgid "This method requires a POST." msgstr "Ce processus requiert un POST." @@ -188,8 +246,9 @@ msgstr "Impossible d’enregistrer le profil." #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:97 -#: actions/apistatusesupdate.php:127 actions/avatarsettings.php:257 -#: actions/designadminpanel.php:122 actions/newnotice.php:94 +#: actions/apistatusesupdate.php:131 actions/avatarsettings.php:257 +#: actions/designadminpanel.php:122 actions/editapplication.php:118 +#: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 #, php-format msgid "" @@ -307,11 +366,11 @@ msgstr "Vous ne pouvez pas ne plus vous suivre vous-même." msgid "Two user ids or screen_names must be supplied." msgstr "Vous devez fournir 2 identifiants ou pseudos." -#: actions/apifriendshipsshow.php:135 +#: actions/apifriendshipsshow.php:134 msgid "Could not determine source user." msgstr "Impossible de déterminer l’utilisateur source." -#: actions/apifriendshipsshow.php:143 +#: actions/apifriendshipsshow.php:142 msgid "Could not find target user." msgstr "Impossible de trouver l’utilisateur cible." @@ -335,7 +394,8 @@ msgstr "Pseudo déjà utilisé. Essayez-en un autre." msgid "Not a valid nickname." msgstr "Pseudo invalide." -#: actions/apigroupcreate.php:196 actions/editgroup.php:195 +#: actions/apigroupcreate.php:196 actions/editapplication.php:215 +#: actions/editgroup.php:195 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:217 msgid "Homepage is not a valid URL." @@ -347,7 +407,8 @@ msgstr "L’adresse du site personnel n’est pas un URL valide. " msgid "Full name is too long (max 255 chars)." msgstr "Nom complet trop long (maximum de 255 caractères)." -#: actions/apigroupcreate.php:213 +#: actions/apigroupcreate.php:213 actions/editapplication.php:190 +#: actions/newapplication.php:172 #, php-format msgid "Description is too long (max %d chars)." msgstr "La description est trop longue (%d caractères maximum)." @@ -383,7 +444,7 @@ msgstr "L’alias ne peut pas être le même que le pseudo." #: actions/apigroupismember.php:95 actions/apigroupjoin.php:104 #: actions/apigroupleave.php:104 actions/apigroupmembership.php:91 -#: actions/apigroupshow.php:90 actions/apitimelinegroup.php:91 +#: actions/apigroupshow.php:82 actions/apitimelinegroup.php:91 msgid "Group not found!" msgstr "Groupe non trouvé !" @@ -402,7 +463,7 @@ msgstr "Impossible de joindre l’utilisateur %1$s au groupe %2$s." #: actions/apigroupleave.php:114 msgid "You are not a member of this group." -msgstr "Vous n'êtes pas membre de ce groupe." +msgstr "Vous n’êtes pas membre de ce groupe." #: actions/apigroupleave.php:124 actions/leavegroup.php:119 #, php-format @@ -424,6 +485,122 @@ msgstr "Groupes de %s" msgid "groups on %s" msgstr "groupes sur %s" +#: actions/apioauthauthorize.php:101 +msgid "No oauth_token parameter provided." +msgstr "Paramètre oauth_token non fourni." + +#: actions/apioauthauthorize.php:106 +msgid "Invalid token." +msgstr "Jeton incorrect." + +#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 +#: actions/deletenotice.php:157 actions/disfavor.php:74 +#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54 +#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupunblock.php:66 actions/imsettings.php:206 +#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 +#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 +#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135 +#: actions/othersettings.php:145 actions/passwordsettings.php:138 +#: actions/profilesettings.php:194 actions/recoverpassword.php:337 +#: actions/register.php:165 actions/remotesubscribe.php:77 +#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 +#: actions/subscribe.php:86 actions/tagother.php:166 +#: 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/apioauthauthorize.php:135 +msgid "Invalid nickname / password!" +msgstr "Pseudo ou mot de passe incorrect !" + +#: actions/apioauthauthorize.php:159 +msgid "Database error deleting OAuth application user." +msgstr "" +"Erreur de la base de données lors de la suppression de l’utilisateur de " +"l’application OAuth." + +#: actions/apioauthauthorize.php:185 +msgid "Database error inserting OAuth application user." +msgstr "" +"Erreur de base de donnée en insérant l’utilisateur de l’application OAuth" + +#: actions/apioauthauthorize.php:214 +#, php-format +msgid "" +"The request token %s has been authorized. Please exchange it for an access " +"token." +msgstr "" +"Le jeton de connexion %s a été autorisé. Merci de l’échanger contre un jeton " +"d’accès." + +#: actions/apioauthauthorize.php:227 +#, php-format +msgid "The request token %s has been denied and revoked." +msgstr "Le jeton de connexion %s a été refusé et révoqué." + +#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 +#: actions/designadminpanel.php:103 actions/editapplication.php:139 +#: actions/emailsettings.php:256 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/newapplication.php:121 +#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 +#: actions/smssettings.php:248 lib/designsettings.php:304 +msgid "Unexpected form submission." +msgstr "Soumission de formulaire inattendue." + +#: actions/apioauthauthorize.php:259 +msgid "An application would like to connect to your account" +msgstr "" +"Une application vous demande l’autorisation de se connecter à votre compte" + +#: actions/apioauthauthorize.php:276 +msgid "Allow or deny access" +msgstr "Autoriser ou refuser l’accès" + +#: actions/apioauthauthorize.php:292 +#, php-format +msgid "" +"The application %1$s by %2$s would like " +"the ability to %3$s your %4$s account data. You should only " +"give access to your %4$s account to third parties you trust." +msgstr "" +"L’application %1$s de %2$s voudrait " +"pouvoir %3$s les données de votre compte %4$s. Vous ne " +"devriez donner l’accès à votre compte %4$s qu’aux tiers à qui vous faites " +"confiance." + +#: actions/apioauthauthorize.php:310 lib/action.php:441 +msgid "Account" +msgstr "Compte" + +#: actions/apioauthauthorize.php:313 actions/login.php:230 +#: actions/profilesettings.php:106 actions/register.php:424 +#: actions/showgroup.php:236 actions/tagother.php:94 +#: actions/userauthorization.php:145 lib/groupeditform.php:152 +#: lib/userprofile.php:131 +msgid "Nickname" +msgstr "Pseudo" + +#: actions/apioauthauthorize.php:316 actions/login.php:233 +#: actions/register.php:429 lib/accountsettingsaction.php:116 +msgid "Password" +msgstr "Mot de passe" + +#: actions/apioauthauthorize.php:328 +msgid "Deny" +msgstr "Refuser" + +#: actions/apioauthauthorize.php:334 +msgid "Allow" +msgstr "Autoriser" + +#: actions/apioauthauthorize.php:351 +msgid "Allow or deny access to your account information." +msgstr "Autoriser ou refuser l’accès à votre compte." + #: actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." msgstr "Ce processus requiert un POST ou un DELETE." @@ -453,17 +630,17 @@ msgstr "Statut supprimé." msgid "No status with that ID found." msgstr "Aucun statut trouvé avec cet identifiant." -#: actions/apistatusesupdate.php:157 actions/newnotice.php:155 +#: actions/apistatusesupdate.php:161 actions/newnotice.php:155 #: lib/mailhandler.php:60 #, php-format msgid "That's too long. Max notice size is %d chars." msgstr "C’est trop long ! La taille maximale de l’avis est de %d caractères." -#: actions/apistatusesupdate.php:198 +#: actions/apistatusesupdate.php:202 msgid "Not found" msgstr "Non trouvé" -#: actions/apistatusesupdate.php:221 actions/newnotice.php:178 +#: actions/apistatusesupdate.php:225 actions/newnotice.php:178 #, php-format msgid "Max notice size is %d chars, including attachment URL." msgstr "" @@ -479,7 +656,7 @@ msgstr "Format non supporté." msgid "%1$s / Favorites from %2$s" msgstr "%1$s / Favoris de %2$s" -#: actions/apitimelinefavorites.php:120 +#: actions/apitimelinefavorites.php:117 #, php-format msgid "%1$s updates favorited by %2$s / %2$s." msgstr "%1$s statuts favoris de %2$s / %2$s." @@ -490,7 +667,7 @@ msgstr "%1$s statuts favoris de %2$s / %2$s." msgid "%s timeline" msgstr "Activité de %s" -#: actions/apitimelinegroup.php:117 actions/apitimelineuser.php:126 +#: actions/apitimelinegroup.php:114 actions/apitimelineuser.php:126 #: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" @@ -506,27 +683,22 @@ msgstr "%1$s / Mises à jour mentionnant %2$s" 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/apitimelinepublic.php:107 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "Activité publique %s" -#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "%s statuts de tout le monde !" -#: actions/apitimelineretweetedbyme.php:112 -#, php-format -msgid "Repeated by %s" -msgstr "Repris par %s" - #: actions/apitimelineretweetedtome.php:111 #, php-format msgid "Repeated to %s" msgstr "Repris pour %s" -#: actions/apitimelineretweetsofme.php:112 +#: actions/apitimelineretweetsofme.php:114 #, php-format msgid "Repeats of %s" msgstr "Reprises de %s" @@ -536,7 +708,7 @@ msgstr "Reprises de %s" msgid "Notices tagged with %s" msgstr "Avis marqués avec %s" -#: actions/apitimelinetag.php:108 actions/tagrss.php:64 +#: actions/apitimelinetag.php:104 actions/tagrss.php:64 #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Mises à jour marquées avec %1$s dans %2$s !" @@ -598,8 +770,8 @@ msgstr "Image originale" msgid "Preview" msgstr "Aperçu" -#: actions/avatarsettings.php:149 lib/deleteuserform.php:66 -#: lib/noticelist.php:611 +#: actions/avatarsettings.php:149 actions/showapplication.php:252 +#: lib/deleteuserform.php:66 lib/noticelist.php:637 msgid "Delete" msgstr "Supprimer" @@ -611,31 +783,6 @@ msgstr "Transfert" msgid "Crop" msgstr "Recadrer" -#: actions/avatarsettings.php:268 actions/deletenotice.php:157 -#: actions/disfavor.php:74 actions/emailsettings.php:238 actions/favor.php:75 -#: actions/geocode.php:50 actions/groupblock.php:66 actions/grouplogo.php:309 -#: actions/groupunblock.php:66 actions/imsettings.php:206 -#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 -#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 -#: actions/othersettings.php:145 actions/passwordsettings.php:138 -#: actions/profilesettings.php:194 actions/recoverpassword.php:337 -#: actions/register.php:165 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 -#: actions/subscribe.php:46 actions/tagother.php:166 -#: 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/avatarsettings.php:281 actions/designadminpanel.php:103 -#: actions/emailsettings.php:256 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/avatarsettings.php:328 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" @@ -670,12 +817,13 @@ msgid "" "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." +"Voulez-vous vraiment 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/block.php:143 actions/deletenotice.php:145 -#: actions/deleteuser.php:147 actions/groupblock.php:178 +#: actions/block.php:143 actions/deleteapplication.php:153 +#: actions/deletenotice.php:145 actions/deleteuser.php:147 +#: actions/groupblock.php:178 msgid "No" msgstr "Non" @@ -683,13 +831,13 @@ msgstr "Non" msgid "Do not block this user" msgstr "Ne pas bloquer cet utilisateur" -#: actions/block.php:144 actions/deletenotice.php:146 -#: actions/deleteuser.php:148 actions/groupblock.php:179 -#: lib/repeatform.php:132 +#: actions/block.php:144 actions/deleteapplication.php:158 +#: actions/deletenotice.php:146 actions/deleteuser.php:148 +#: actions/groupblock.php:179 lib/repeatform.php:132 msgid "Yes" msgstr "Oui" -#: actions/block.php:144 actions/groupmembers.php:346 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80 msgid "Block this user" msgstr "Bloquer cet utilisateur" @@ -772,7 +920,7 @@ msgid "Couldn't delete email confirmation." msgstr "Impossible de supprimer le courriel de confirmation." #: actions/confirmaddress.php:144 -msgid "Confirm Address" +msgid "Confirm address" msgstr "Confirmer l’adresse" #: actions/confirmaddress.php:159 @@ -789,10 +937,51 @@ msgstr "Conversation" msgid "Notices" msgstr "Avis" +#: actions/deleteapplication.php:63 +msgid "You must be logged in to delete an application." +msgstr "Vous devez être connecté pour supprimer une application." + +#: actions/deleteapplication.php:71 +msgid "Application not found." +msgstr "Application non trouvée." + +#: actions/deleteapplication.php:78 actions/editapplication.php:77 +#: actions/showapplication.php:94 +msgid "You are not the owner of this application." +msgstr "Vous n’êtes pas le propriétaire de cette application." + +#: actions/deleteapplication.php:102 actions/editapplication.php:127 +#: actions/newapplication.php:110 actions/showapplication.php:118 +#: lib/action.php:1197 +msgid "There was a problem with your session token." +msgstr "Un problème est survenu avec votre jeton de session." + +#: actions/deleteapplication.php:123 actions/deleteapplication.php:147 +msgid "Delete application" +msgstr "Supprimer l’application" + +#: actions/deleteapplication.php:149 +msgid "" +"Are you sure you want to delete this application? This will clear all data " +"about the application from the database, including all existing user " +"connections." +msgstr "" +"Voulez-vous vraiment supprimer cette application ? Ceci effacera toutes les " +"données à son propos de la base de données, y compris toutes les connexions " +"utilisateur existantes." + +#: actions/deleteapplication.php:156 +msgid "Do not delete this application" +msgstr "Ne pas supprimer cette application" + +#: actions/deleteapplication.php:160 +msgid "Delete this application" +msgstr "Supprimer cette application" + #: 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/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 #: lib/adminpanelaction.php:72 lib/profileformaction.php:63 #: lib/settingsaction.php:72 @@ -817,13 +1006,13 @@ msgstr "Supprimer cet avis" #: actions/deletenotice.php:144 msgid "Are you sure you want to delete this notice?" -msgstr "Êtes-vous sûr(e) de vouloir supprimer cet avis ?" +msgstr "Voulez-vous vraiment supprimer cet avis ?" #: actions/deletenotice.php:145 msgid "Do not delete this notice" msgstr "Ne pas supprimer cet avis" -#: actions/deletenotice.php:146 lib/noticelist.php:611 +#: actions/deletenotice.php:146 lib/noticelist.php:637 msgid "Delete this notice" msgstr "Supprimer cet avis" @@ -837,15 +1026,15 @@ msgstr "Vous pouvez seulement supprimer les utilisateurs locaux." #: actions/deleteuser.php:110 actions/deleteuser.php:133 msgid "Delete user" -msgstr "Supprimer l'utilsateur" +msgstr "Supprimer l’utilisateur" #: actions/deleteuser.php:135 msgid "" "Are you sure you want to delete this user? This will clear all data about " "the user from the database, without a backup." msgstr "" -"Êtes-vous certain de vouloir supprimer cet utilisateur ? Ceci effacera " -"toutes les données à son propos de la base de données, sans sauvegarde." +"Voulez-vous vraiment supprimer cet utilisateur ? Ceci effacera toutes les " +"données à son propos de la base de données, sans sauvegarde." #: actions/deleteuser.php:148 lib/deleteuserform.php:77 msgid "Delete this user" @@ -867,7 +1056,7 @@ msgstr "URL du logo invalide." #: actions/designadminpanel.php:279 #, php-format msgid "Theme not available: %s" -msgstr "Le thème n'est pas disponible : %s" +msgstr "Le thème n’est pas disponible : %s" #: actions/designadminpanel.php:375 msgid "Change logo" @@ -904,7 +1093,7 @@ msgid "" "You can upload a background image for the site. The maximum file size is %1" "$s." msgstr "" -"Vous pouvez importer une image d'arrière plan pour ce site. La taille " +"Vous pouvez importer une image d’arrière plan pour ce site. La taille " "maximale du fichier est de %1$s." #: actions/designadminpanel.php:457 lib/designsettings.php:139 @@ -955,16 +1144,6 @@ msgstr "Restaurer les conceptions par défaut" msgid "Reset back to default" msgstr "Revenir aux valeurs par défaut" -#: actions/designadminpanel.php:586 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 -#: actions/pathsadminpanel.php:324 actions/profilesettings.php:174 -#: actions/siteadminpanel.php:388 actions/smssettings.php:181 -#: actions/subscriptions.php:203 actions/tagother.php:154 -#: actions/useradminpanel.php:313 lib/designsettings.php:256 -#: lib/groupeditform.php:202 -msgid "Save" -msgstr "Enregistrer" - #: actions/designadminpanel.php:587 lib/designsettings.php:257 msgid "Save design" msgstr "Sauvegarder la conception" @@ -977,9 +1156,75 @@ msgstr "Cet avis n’est pas un favori !" msgid "Add to favorites" msgstr "Ajouter aux favoris" -#: actions/doc.php:69 -msgid "No such document." -msgstr "Document non trouvé." +#: actions/doc.php:158 +#, php-format +msgid "No such document \"%s\"" +msgstr "Document « %s » non trouvé." + +#: actions/editapplication.php:54 +msgid "Edit Application" +msgstr "Modifier l’application" + +#: actions/editapplication.php:66 +msgid "You must be logged in to edit an application." +msgstr "Vous devez être connecté pour modifier une application." + +#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:166 +#: actions/showapplication.php:87 +msgid "No such application." +msgstr "Application non trouvée." + +#: actions/editapplication.php:161 +msgid "Use this form to edit your application." +msgstr "Utilisez ce formulaire pour modifier votre application." + +#: actions/editapplication.php:177 actions/newapplication.php:159 +msgid "Name is required." +msgstr "Le nom est requis." + +#: actions/editapplication.php:180 actions/newapplication.php:165 +msgid "Name is too long (max 255 chars)." +msgstr "Le nom est trop long (maximum de 255 caractères)." + +#: actions/editapplication.php:183 actions/newapplication.php:162 +msgid "Name already in use. Try another one." +msgstr "Ce nom est déjà utilisé. Essayez-en un autre." + +#: actions/editapplication.php:186 actions/newapplication.php:168 +msgid "Description is required." +msgstr "La description est requise." + +#: actions/editapplication.php:194 +msgid "Source URL is too long." +msgstr "L’URL source est trop longue." + +#: actions/editapplication.php:200 actions/newapplication.php:185 +msgid "Source URL is not valid." +msgstr "L’URL source est invalide." + +#: actions/editapplication.php:203 actions/newapplication.php:188 +msgid "Organization is required." +msgstr "L’organisation est requise." + +#: actions/editapplication.php:206 actions/newapplication.php:191 +msgid "Organization is too long (max 255 chars)." +msgstr "L’organisation est trop longue (maximum de 255 caractères)." + +#: actions/editapplication.php:209 actions/newapplication.php:194 +msgid "Organization homepage is required." +msgstr "La page d’accueil de l’organisation est requise." + +#: actions/editapplication.php:218 actions/newapplication.php:206 +msgid "Callback is too long." +msgstr "Le rappel (Callback) est trop long." + +#: actions/editapplication.php:225 actions/newapplication.php:215 +msgid "Callback URL is not valid." +msgstr "L’URL de rappel (Callback) est invalide." + +#: actions/editapplication.php:258 +msgid "Could not update application." +msgstr "Impossible de mettre à jour l’application." #: actions/editgroup.php:56 #, php-format @@ -1008,7 +1253,7 @@ msgstr "la description est trop longue (%d caractères maximum)." msgid "Could not update group." msgstr "Impossible de mettre à jour le groupe." -#: actions/editgroup.php:259 classes/User_group.php:390 +#: actions/editgroup.php:259 classes/User_group.php:433 msgid "Could not create aliases." msgstr "Impossible de créer les alias." @@ -1049,7 +1294,8 @@ msgstr "" "réception (et celle de spam !) pour recevoir de nouvelles instructions." #: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 +#: actions/smssettings.php:126 lib/applicationeditform.php:331 +#: lib/applicationeditform.php:332 msgid "Cancel" msgstr "Annuler" @@ -1131,7 +1377,7 @@ msgid "Cannot normalize that email address" msgstr "Impossible d’utiliser cette adresse courriel" #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:157 +#: actions/siteadminpanel.php:143 msgid "Not a valid email address." msgstr "Adresse courriel invalide." @@ -1143,7 +1389,7 @@ msgstr "Vous utilisez déjà cette adresse courriel." msgid "That email address already belongs to another user." msgstr "Cette adresse courriel appartient déjà à un autre utilisateur." -#: actions/emailsettings.php:353 actions/imsettings.php:317 +#: actions/emailsettings.php:353 actions/imsettings.php:319 #: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." msgstr "Impossible d’insérer le code de confirmation." @@ -1204,7 +1450,7 @@ msgstr "Cet avis a déjà été ajouté à vos favoris !" msgid "Disfavor favorite" msgstr "Retirer ce favori" -#: actions/favorited.php:65 lib/popularnoticesection.php:88 +#: actions/favorited.php:65 lib/popularnoticesection.php:91 #: lib/publicgroupnav.php:93 msgid "Popular notices" msgstr "Avis populaires" @@ -1301,7 +1547,7 @@ msgstr "Cet utilisateur vous a empêché de vous inscrire." #: actions/finishremotesubscribe.php:110 msgid "You are not authorized." -msgstr "Vous n'êtes pas autorisé." +msgstr "Vous n’êtes pas autorisé." #: actions/finishremotesubscribe.php:113 msgid "Could not convert request token to access token." @@ -1352,7 +1598,7 @@ msgstr "Cet utilisateur est déjà bloqué pour le groupe." msgid "User is not a member of group." msgstr "L’utilisateur n’est pas membre du groupe." -#: actions/groupblock.php:136 actions/groupmembers.php:314 +#: actions/groupblock.php:136 actions/groupmembers.php:316 msgid "Block user from group" msgstr "Bloquer cet utilisateur du groupe" @@ -1451,23 +1697,23 @@ msgstr "Membres du groupe %1$s - page %2$d" msgid "A list of the users in this group." msgstr "Liste des utilisateurs inscrits à ce groupe." -#: actions/groupmembers.php:175 lib/action.php:442 lib/groupnav.php:107 +#: actions/groupmembers.php:175 lib/action.php:448 lib/groupnav.php:107 msgid "Admin" msgstr "Administrer" -#: actions/groupmembers.php:346 lib/blockform.php:69 +#: actions/groupmembers.php:348 lib/blockform.php:69 msgid "Block" msgstr "Bloquer" -#: actions/groupmembers.php:441 +#: actions/groupmembers.php:443 msgid "Make user an admin of the group" msgstr "Faire de cet utilisateur un administrateur du groupe" -#: actions/groupmembers.php:473 +#: actions/groupmembers.php:475 msgid "Make Admin" msgstr "Faire un administrateur" -#: actions/groupmembers.php:473 +#: actions/groupmembers.php:475 msgid "Make this user an admin" msgstr "Faire de cet utilisateur un administrateur" @@ -1653,6 +1899,11 @@ msgstr "" msgid "That is not your Jabber ID." msgstr "Ceci n’est pas votre identifiant Jabber." +#: actions/inbox.php:59 +#, php-format +msgid "Inbox for %1$s - page %2$d" +msgstr "Boîte de réception de %1$s - page %2$d" + #: actions/inbox.php:62 #, php-format msgid "Inbox for %s" @@ -1737,7 +1988,7 @@ msgstr "Message personnel" msgid "Optionally add a personal message to the invitation." msgstr "Ajouter un message personnel à l’invitation (optionnel)." -#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:237 +#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:236 msgid "Send" msgstr "Envoyer" @@ -1820,7 +2071,7 @@ msgstr "Vous devez ouvrir une session pour quitter un groupe." #: actions/leavegroup.php:90 lib/command.php:265 msgid "You are not a member of that group." -msgstr "Vous n'êtes pas membre de ce groupe." +msgstr "Vous n’êtes pas membre de ce groupe." #: actions/leavegroup.php:127 #, php-format @@ -1841,7 +2092,7 @@ msgstr "" "Erreur lors de la mise en place de l’utilisateur. Vous n’y êtes probablement " "pas autorisé." -#: actions/login.php:188 actions/login.php:241 lib/action.php:460 +#: actions/login.php:188 actions/login.php:241 lib/action.php:466 #: lib/logingroupnav.php:79 msgid "Login" msgstr "Ouvrir une session" @@ -1850,17 +2101,6 @@ msgstr "Ouvrir une session" msgid "Login to site" msgstr "Ouverture de session" -#: actions/login.php:230 actions/profilesettings.php:106 -#: actions/register.php:424 actions/showgroup.php:236 actions/tagother.php:94 -#: lib/groupeditform.php:152 lib/userprofile.php:131 -msgid "Nickname" -msgstr "Pseudo" - -#: actions/login.php:233 actions/register.php:429 -#: lib/accountsettingsaction.php:116 -msgid "Password" -msgstr "Mot de passe" - #: actions/login.php:236 actions/register.php:478 msgid "Remember me" msgstr "Se souvenir de moi" @@ -1893,24 +2133,24 @@ msgstr "" "pas encore d’identifiant ? [Créez-vous](%%action.register%%) un nouveau " "compte." -#: actions/makeadmin.php:91 +#: actions/makeadmin.php:92 msgid "Only an admin can make another user an admin." msgstr "" "Seul un administrateur peut faire d’un autre utilisateur un administrateur." -#: actions/makeadmin.php:95 +#: actions/makeadmin.php:96 #, php-format msgid "%1$s is already an admin for group \"%2$s\"." msgstr "%1$s est déjà administrateur du groupe « %2$s »." -#: actions/makeadmin.php:132 +#: actions/makeadmin.php:133 #, php-format msgid "Can't get membership record for %1$s in group %2$s." msgstr "" "Impossible d’obtenir les enregistrements d’appartenance pour %1$s dans le " "groupe %2$s." -#: actions/makeadmin.php:145 +#: actions/makeadmin.php:146 #, php-format msgid "Can't make %1$s an admin for group %2$s." msgstr "Impossible de rendre %1$s administrateur du groupe %2$s." @@ -1919,6 +2159,26 @@ msgstr "Impossible de rendre %1$s administrateur du groupe %2$s." msgid "No current status" msgstr "Aucun statut actuel" +#: actions/newapplication.php:52 +msgid "New Application" +msgstr "Nouvelle application" + +#: actions/newapplication.php:64 +msgid "You must be logged in to register an application." +msgstr "Vous devez être connecté pour enregistrer une application." + +#: actions/newapplication.php:143 +msgid "Use this form to register a new application." +msgstr "Utilisez ce formulaire pour inscrire une nouvelle application." + +#: actions/newapplication.php:176 +msgid "Source URL is required." +msgstr "L’URL source est requise." + +#: actions/newapplication.php:258 actions/newapplication.php:267 +msgid "Could not create application." +msgstr "Impossible de créer l’application." + #: actions/newgroup.php:53 msgid "New group" msgstr "Nouveau groupe" @@ -2033,6 +2293,51 @@ msgstr "Clin d’œil envoyé" msgid "Nudge sent!" msgstr "Clin d’œil envoyé !" +#: actions/oauthappssettings.php:59 +msgid "You must be logged in to list your applications." +msgstr "Vous devez être connecté pour lister vos applications." + +#: actions/oauthappssettings.php:74 +msgid "OAuth applications" +msgstr "Applications OAuth" + +#: actions/oauthappssettings.php:85 +msgid "Applications you have registered" +msgstr "Applications que vous avez enregistré" + +#: actions/oauthappssettings.php:135 +#, php-format +msgid "You have not registered any applications yet." +msgstr "Vous n’avez encore enregistré aucune application." + +#: actions/oauthconnectionssettings.php:72 +msgid "Connected applications" +msgstr "Applications connectées." + +#: actions/oauthconnectionssettings.php:83 +msgid "You have allowed the following applications to access you account." +msgstr "" +"Vous avez autorisé les applications suivantes à accéder à votre compte." + +#: actions/oauthconnectionssettings.php:175 +msgid "You are not a user of that application." +msgstr "Vous n’êtes pas un utilisateur de cette application." + +#: actions/oauthconnectionssettings.php:186 +msgid "Unable to revoke access for app: " +msgstr "Impossible d’annuler l’accès de l’application : " + +#: actions/oauthconnectionssettings.php:198 +#, php-format +msgid "You have not authorized any applications to use your account." +msgstr "Vous n’avez autorisé aucune application à utiliser votre compte." + +#: actions/oauthconnectionssettings.php:211 +msgid "Developers can edit the registration settings for their applications " +msgstr "" +"Les programmeurs peuvent modifier les paramètres d’enregistrement pour leurs " +"applications " + #: actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" msgstr "L’avis n’a pas de profil" @@ -2050,8 +2355,8 @@ msgstr "type de contenu " msgid "Only " msgstr "Seulement " -#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1033 -#: lib/api.php:1061 lib/api.php:1171 +#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 +#: lib/api.php:1068 lib/api.php:1177 msgid "Not a supported data format." msgstr "Format de données non supporté." @@ -2064,7 +2369,7 @@ msgid "Notice Search" msgstr "Recherche d’avis" #: actions/othersettings.php:60 -msgid "Other Settings" +msgid "Other settings" msgstr "Autres paramètres" #: actions/othersettings.php:71 @@ -2097,23 +2402,28 @@ msgstr "Le service de réduction d’URL est trop long (50 caractères maximum). #: actions/otp.php:69 msgid "No user ID specified." -msgstr "Aucun identifiant d'utilisateur n’a été spécifié." +msgstr "Aucun identifiant d’utilisateur n’a été spécifié." #: actions/otp.php:83 msgid "No login token specified." -msgstr "Aucun jeton d'identification n’a été spécifié." +msgstr "Aucun jeton d’identification n’a été spécifié." #: actions/otp.php:90 msgid "No login token requested." -msgstr "Aucune jeton d'identification requis." +msgstr "Aucun jeton d’identification n’a été demandé." #: actions/otp.php:95 msgid "Invalid login token specified." -msgstr "Jeton d'identification invalide." +msgstr "Jeton d’identification invalide." #: actions/otp.php:104 msgid "Login token expired." -msgstr "Jeton d'identification périmé." +msgstr "Jeton d’identification périmé." + +#: actions/outbox.php:58 +#, php-format +msgid "Outbox for %1$s - page %2$d" +msgstr "Boîte d’envoi de %1$s - page %2$d" #: actions/outbox.php:61 #, php-format @@ -2186,7 +2496,7 @@ msgstr "Impossible de sauvegarder le nouveau mot de passe." msgid "Password saved." msgstr "Mot de passe enregistré." -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:326 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:331 msgid "Paths" msgstr "Chemins" @@ -2194,132 +2504,148 @@ msgstr "Chemins" msgid "Path and server settings for this StatusNet site." msgstr "Paramètres de chemin et serveur pour ce site StatusNet." -#: actions/pathsadminpanel.php:140 +#: actions/pathsadminpanel.php:157 #, php-format msgid "Theme directory not readable: %s" msgstr "Dossier des thème non lisible : %s" -#: actions/pathsadminpanel.php:146 +#: actions/pathsadminpanel.php:163 #, php-format msgid "Avatar directory not writable: %s" msgstr "Dossier des avatars non inscriptible : %s" -#: actions/pathsadminpanel.php:152 +#: actions/pathsadminpanel.php:169 #, php-format msgid "Background directory not writable: %s" msgstr "Dossier des arrière plans non inscriptible : %s" -#: actions/pathsadminpanel.php:160 +#: actions/pathsadminpanel.php:177 #, php-format msgid "Locales directory not readable: %s" msgstr "Dossier des paramètres régionaux non lisible : %s" -#: actions/pathsadminpanel.php:166 +#: actions/pathsadminpanel.php:183 msgid "Invalid SSL server. The maximum length is 255 characters." msgstr "Serveur SSL invalide. La longueur maximale est de 255 caractères." -#: actions/pathsadminpanel.php:217 actions/siteadminpanel.php:58 +#: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58 #: lib/adminpanelaction.php:311 msgid "Site" msgstr "Site" -#: actions/pathsadminpanel.php:221 +#: actions/pathsadminpanel.php:238 +msgid "Server" +msgstr "Serveur" + +#: actions/pathsadminpanel.php:238 +msgid "Site's server hostname." +msgstr "Nom d’hôte du serveur du site." + +#: actions/pathsadminpanel.php:242 msgid "Path" msgstr "Chemin" -#: actions/pathsadminpanel.php:221 +#: actions/pathsadminpanel.php:242 msgid "Site path" msgstr "Chemin du site" -#: actions/pathsadminpanel.php:225 +#: actions/pathsadminpanel.php:246 msgid "Path to locales" msgstr "Chemin vers les paramètres régionaux" -#: actions/pathsadminpanel.php:225 +#: actions/pathsadminpanel.php:246 msgid "Directory path to locales" msgstr "Chemin de dossier vers les paramètres régionaux" -#: actions/pathsadminpanel.php:232 +#: actions/pathsadminpanel.php:250 +msgid "Fancy URLs" +msgstr "Jolies URL" + +#: actions/pathsadminpanel.php:252 +msgid "Use fancy (more readable and memorable) URLs?" +msgstr "Utiliser des jolies URL (plus lisibles et faciles à mémoriser) ?" + +#: actions/pathsadminpanel.php:259 msgid "Theme" msgstr "Thème" -#: actions/pathsadminpanel.php:237 +#: actions/pathsadminpanel.php:264 msgid "Theme server" msgstr "Serveur de thèmes" -#: actions/pathsadminpanel.php:241 +#: actions/pathsadminpanel.php:268 msgid "Theme path" msgstr "Chemin des thèmes" -#: actions/pathsadminpanel.php:245 +#: actions/pathsadminpanel.php:272 msgid "Theme directory" msgstr "Dossier des thèmes" -#: actions/pathsadminpanel.php:252 +#: actions/pathsadminpanel.php:279 msgid "Avatars" msgstr "Avatars" -#: actions/pathsadminpanel.php:257 +#: actions/pathsadminpanel.php:284 msgid "Avatar server" msgstr "Serveur d’avatar" -#: actions/pathsadminpanel.php:261 +#: actions/pathsadminpanel.php:288 msgid "Avatar path" msgstr "Chemin des avatars" -#: actions/pathsadminpanel.php:265 +#: actions/pathsadminpanel.php:292 msgid "Avatar directory" msgstr "Dossier des avatars" -#: actions/pathsadminpanel.php:274 +#: actions/pathsadminpanel.php:301 msgid "Backgrounds" msgstr "Arrière plans" -#: actions/pathsadminpanel.php:278 +#: actions/pathsadminpanel.php:305 msgid "Background server" msgstr "Serveur des arrière plans" -#: actions/pathsadminpanel.php:282 +#: actions/pathsadminpanel.php:309 msgid "Background path" msgstr "Chemin des arrière plans" -#: actions/pathsadminpanel.php:286 +#: actions/pathsadminpanel.php:313 msgid "Background directory" msgstr "Dossier des arrière plans" -#: actions/pathsadminpanel.php:293 +#: actions/pathsadminpanel.php:320 msgid "SSL" msgstr "SSL" -#: actions/pathsadminpanel.php:296 actions/siteadminpanel.php:346 +#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 msgid "Never" msgstr "Jamais" -#: actions/pathsadminpanel.php:297 +#: actions/pathsadminpanel.php:324 msgid "Sometimes" msgstr "Quelquefois" -#: actions/pathsadminpanel.php:298 +#: actions/pathsadminpanel.php:325 msgid "Always" msgstr "Toujours" -#: actions/pathsadminpanel.php:302 +#: actions/pathsadminpanel.php:329 msgid "Use SSL" msgstr "Utiliser SSL" -#: actions/pathsadminpanel.php:303 +#: actions/pathsadminpanel.php:330 msgid "When to use SSL" msgstr "Quand utiliser SSL" -#: actions/pathsadminpanel.php:308 +#: actions/pathsadminpanel.php:335 msgid "SSL server" msgstr "Serveur SSL" -#: actions/pathsadminpanel.php:309 +#: actions/pathsadminpanel.php:336 msgid "Server to direct SSL requests to" msgstr "Serveur vers lequel rediriger les requêtes SSL" -#: actions/pathsadminpanel.php:325 +#: actions/pathsadminpanel.php:352 msgid "Save paths" msgstr "Enregistrer les chemins." @@ -2384,7 +2710,7 @@ msgid "Full name" msgstr "Nom complet" #: actions/profilesettings.php:115 actions/register.php:453 -#: lib/groupeditform.php:161 +#: lib/applicationeditform.php:228 lib/groupeditform.php:161 msgid "Homepage" msgstr "Site personnel" @@ -2407,7 +2733,7 @@ msgstr "Bio" #: actions/profilesettings.php:132 actions/register.php:471 #: actions/showgroup.php:256 actions/tagother.php:112 -#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:164 msgid "Location" msgstr "Emplacement" @@ -2433,7 +2759,7 @@ msgstr "" "Marques pour vous-même (lettres, chiffres, -, ., et _), séparées par des " "virgules ou des espaces" -#: actions/profilesettings.php:151 actions/siteadminpanel.php:294 +#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 msgid "Language" msgstr "Langue" @@ -2461,7 +2787,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "La bio est trop longue (%d caractères maximum)." -#: actions/profilesettings.php:235 actions/siteadminpanel.php:164 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 msgid "Timezone not selected." msgstr "Aucun fuseau horaire n’a été choisi." @@ -2474,23 +2800,23 @@ msgstr "La langue est trop longue (255 caractères maximum)." msgid "Invalid tag: \"%s\"" msgstr "Marque invalide : « %s »" -#: actions/profilesettings.php:302 +#: actions/profilesettings.php:306 msgid "Couldn't update user for autosubscribe." msgstr "Impossible de mettre à jour l’auto-abonnement." -#: actions/profilesettings.php:359 +#: actions/profilesettings.php:363 msgid "Couldn't save location prefs." msgstr "Impossible d’enregistrer les préférences de localisation." -#: actions/profilesettings.php:371 +#: actions/profilesettings.php:375 msgid "Couldn't save profile." msgstr "Impossible d’enregistrer le profil." -#: actions/profilesettings.php:379 +#: actions/profilesettings.php:383 msgid "Couldn't save tags." msgstr "Impossible d’enregistrer les marques." -#: actions/profilesettings.php:387 lib/adminpanelaction.php:137 +#: actions/profilesettings.php:391 lib/adminpanelaction.php:137 msgid "Settings saved." msgstr "Préférences enregistrées." @@ -2512,19 +2838,19 @@ msgstr "Flux public - page %d" msgid "Public timeline" msgstr "Flux public" -#: actions/public.php:151 +#: actions/public.php:159 msgid "Public Stream Feed (RSS 1.0)" msgstr "Fil du flux public (RSS 1.0)" -#: actions/public.php:155 +#: actions/public.php:163 msgid "Public Stream Feed (RSS 2.0)" msgstr "Fil du flux public (RSS 2.0)" -#: actions/public.php:159 +#: actions/public.php:167 msgid "Public Stream Feed (Atom)" msgstr "Fil du flux public (Atom)" -#: actions/public.php:179 +#: actions/public.php:187 #, php-format msgid "" "This is the public timeline for %%site.name%% but no one has posted anything " @@ -2533,11 +2859,11 @@ msgstr "" "Ceci est la chronologie publique de %%site.name%% mais personne n’a encore " "rien posté." -#: actions/public.php:182 +#: actions/public.php:190 msgid "Be the first to post!" msgstr "Soyez le premier à poster !" -#: actions/public.php:186 +#: actions/public.php:194 #, php-format msgid "" "Why not [register an account](%%action.register%%) and be the first to post!" @@ -2545,7 +2871,7 @@ msgstr "" "Pourquoi ne pas [créer un compte](%%action.register%%) et être le premier à " "poster !" -#: actions/public.php:233 +#: actions/public.php:241 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2559,7 +2885,7 @@ msgstr "" "vous avec vos amis, famille et collègues ! ([Plus d’informations](%%doc.help%" "%))" -#: actions/public.php:238 +#: actions/public.php:246 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2597,7 +2923,7 @@ msgstr "" "Pourquoi ne pas [créer un compte](%%action.register%%) et être le premier à " "en poster un !" -#: actions/publictagcloud.php:131 +#: actions/publictagcloud.php:134 msgid "Tag cloud" msgstr "Nuage de marques" @@ -2741,7 +3067,7 @@ msgstr "Désolé, code d’invitation invalide." msgid "Registration successful" msgstr "Compte créé avec succès" -#: actions/register.php:114 actions/register.php:503 lib/action.php:457 +#: actions/register.php:114 actions/register.php:503 lib/action.php:463 #: lib/logingroupnav.php:85 msgid "Register" msgstr "Créer un compte" @@ -2784,7 +3110,7 @@ msgid "Same as password above. Required." msgstr "Identique au mot de passe ci-dessus. Requis." #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:270 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 msgid "Email" msgstr "Courriel" @@ -2893,7 +3219,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "URL de votre profil sur un autre service de micro-blogging compatible" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:365 +#: lib/userprofile.php:368 msgid "Subscribe" msgstr "S’abonner" @@ -2930,7 +3256,7 @@ msgstr "Vous ne pouvez pas reprendre votre propre avis." msgid "You already repeated that notice." msgstr "Vous avez déjà repris cet avis." -#: actions/repeat.php:114 lib/noticelist.php:629 +#: actions/repeat.php:114 lib/noticelist.php:656 msgid "Repeated" msgstr "Repris" @@ -2944,6 +3270,11 @@ msgstr "Repris !" msgid "Replies to %s" msgstr "Réponses à %s" +#: actions/replies.php:127 +#, php-format +msgid "Replies to %1$s, page %2$d" +msgstr "Réponses à %1$s, page %2$d" + #: actions/replies.php:144 #, php-format msgid "Replies feed for %s (RSS 1.0)" @@ -2993,6 +3324,10 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "Réponses à %1$s sur %2$s !" +#: actions/rsd.php:146 actions/version.php:157 +msgid "StatusNet" +msgstr "StatusNet" + #: actions/sandbox.php:65 actions/unsandbox.php:65 msgid "You cannot sandbox users on this site." msgstr "" @@ -3002,6 +3337,121 @@ msgstr "" msgid "User is already sandboxed." msgstr "L’utilisateur est déjà dans le bac à sable." +#: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:336 +msgid "Sessions" +msgstr "Sessions" + +#: actions/sessionsadminpanel.php:65 +msgid "Session settings for this StatusNet site." +msgstr "Paramètres de session pour ce site StatusNet." + +#: actions/sessionsadminpanel.php:175 +msgid "Handle sessions" +msgstr "Gérer les sessions" + +#: actions/sessionsadminpanel.php:177 +msgid "Whether to handle sessions ourselves." +msgstr "S’il faut gérer les sessions nous-même." + +#: actions/sessionsadminpanel.php:181 +msgid "Session debugging" +msgstr "Déboguage de session" + +#: actions/sessionsadminpanel.php:183 +msgid "Turn on debugging output for sessions." +msgstr "Activer la sortie de déboguage pour les sessions." + +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/useradminpanel.php:293 +msgid "Save site settings" +msgstr "Sauvegarder les paramètres du site" + +#: actions/showapplication.php:82 +msgid "You must be logged in to view an application." +msgstr "Vous devez être connecté pour voir une application." + +#: actions/showapplication.php:157 +msgid "Application profile" +msgstr "Profil de l’application" + +#: actions/showapplication.php:159 lib/applicationeditform.php:180 +msgid "Icon" +msgstr "Icône" + +#: actions/showapplication.php:169 actions/version.php:195 +#: lib/applicationeditform.php:195 +msgid "Name" +msgstr "Nom" + +#: actions/showapplication.php:178 lib/applicationeditform.php:222 +msgid "Organization" +msgstr "Organisation" + +#: actions/showapplication.php:187 actions/version.php:198 +#: lib/applicationeditform.php:209 lib/groupeditform.php:172 +msgid "Description" +msgstr "Description" + +#: actions/showapplication.php:192 actions/showgroup.php:429 +#: lib/profileaction.php:174 +msgid "Statistics" +msgstr "Statistiques" + +#: actions/showapplication.php:203 +#, php-format +msgid "Created by %1$s - %2$s access by default - %3$d users" +msgstr "Créé par %1$s - accès %2$s par défaut - %3$d utilisateurs" + +#: actions/showapplication.php:213 +msgid "Application actions" +msgstr "Actions de l’application" + +#: actions/showapplication.php:236 +msgid "Reset key & secret" +msgstr "Réinitialiser la clé et le secret" + +#: actions/showapplication.php:261 +msgid "Application info" +msgstr "Informations sur l’application" + +#: actions/showapplication.php:263 +msgid "Consumer key" +msgstr "Clé de l’utilisateur" + +#: actions/showapplication.php:268 +msgid "Consumer secret" +msgstr "Secret de l’utilisateur" + +#: actions/showapplication.php:273 +msgid "Request token URL" +msgstr "URL du jeton de requête" + +#: actions/showapplication.php:278 +msgid "Access token URL" +msgstr "URL du jeton d’accès" + +#: actions/showapplication.php:283 +msgid "Authorize URL" +msgstr "Autoriser l’URL" + +#: actions/showapplication.php:288 +msgid "" +"Note: We support HMAC-SHA1 signatures. We do not support the plaintext " +"signature method." +msgstr "" +"Note : Nous utilisons les signatures HMAC-SHA1. Nous n’utilisons pas la " +"méthode de signature en texte clair." + +#: actions/showapplication.php:309 +msgid "Are you sure you want to reset your consumer key and secret?" +msgstr "Voulez-vous vraiment réinitialiser votre clé consommateur et secrète ?" + +#: actions/showfavorites.php:79 +#, php-format +msgid "%1$s's favorite notices, page %2$d" +msgstr "Avis favoris de %1$s, page %2$d" + #: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "Impossible d’afficher les favoris." @@ -3059,17 +3509,22 @@ msgstr "C’est un moyen de partager ce que vous aimez." msgid "%s group" msgstr "Groupe %s" +#: actions/showgroup.php:84 +#, php-format +msgid "%1$s group, page %2$d" +msgstr "Groupe %1$s, page %2$d" + #: actions/showgroup.php:218 msgid "Group profile" msgstr "Profil du groupe" #: actions/showgroup.php:263 actions/tagother.php:118 -#: actions/userauthorization.php:167 lib/userprofile.php:177 +#: actions/userauthorization.php:175 lib/userprofile.php:177 msgid "URL" msgstr "URL" #: actions/showgroup.php:274 actions/tagother.php:128 -#: actions/userauthorization.php:179 lib/userprofile.php:194 +#: actions/userauthorization.php:187 lib/userprofile.php:194 msgid "Note" msgstr "Note" @@ -3115,10 +3570,6 @@ msgstr "(aucun)" msgid "All members" msgstr "Tous les membres" -#: actions/showgroup.php:429 lib/profileaction.php:174 -msgid "Statistics" -msgstr "Statistiques" - #: actions/showgroup.php:432 msgid "Created" msgstr "Créé" @@ -3185,6 +3636,11 @@ msgstr "Avis supprimé." msgid " tagged %s" msgstr " marqué %s" +#: actions/showstream.php:79 +#, php-format +msgid "%1$s, page %2$d" +msgstr "%1$s, page %2$d" + #: actions/showstream.php:122 #, php-format msgid "Notice feed for %1$s tagged %2$s (RSS 1.0)" @@ -3210,13 +3666,13 @@ msgstr "Flux des avis de %s (Atom)" msgid "FOAF for %s" msgstr "ami d’un ami pour %s" -#: actions/showstream.php:191 +#: actions/showstream.php:200 #, php-format msgid "This is the timeline for %1$s but %2$s hasn't posted anything yet." msgstr "" "Ceci est la chronologie de %1$s mais %2$s n’a rien publié pour le moment." -#: actions/showstream.php:196 +#: actions/showstream.php:205 msgid "" "Seen anything interesting recently? You haven't posted any notices yet, now " "would be a good time to start :)" @@ -3224,7 +3680,7 @@ msgstr "" "Avez-vous vu quelque chose d’intéressant récemment ? Vous n’avez pas publié " "d’avis pour le moment, vous pourriez commencer maintenant :)" -#: actions/showstream.php:198 +#: actions/showstream.php:207 #, php-format msgid "" "You can try to nudge %1$s or [post something to his or her attention](%%%%" @@ -3233,7 +3689,7 @@ msgstr "" "Vous pouvez essayer de faire un clin d’œil à %1$s ou de [poster quelque " "chose à son intention](%%%%action.newnotice%%%%?status_textarea=%2$s)." -#: actions/showstream.php:234 +#: actions/showstream.php:243 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3247,7 +3703,7 @@ msgstr "" "register%%%%) pour suivre les avis de **%s** et bien plus ! ([En lire plus](%" "%%%doc.help%%%%))" -#: actions/showstream.php:239 +#: actions/showstream.php:248 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3258,7 +3714,7 @@ msgstr "" "wikipedia.org/wiki/Microblog) basé sur le logiciel libre [StatusNet](http://" "status.net/). " -#: actions/showstream.php:313 +#: actions/showstream.php:305 #, php-format msgid "Repeat of %s" msgstr "Reprises de %s" @@ -3275,197 +3731,145 @@ msgstr "Cet utilisateur est déjà réduit au silence." msgid "Basic settings for this StatusNet site." msgstr "Paramètres basiques pour ce site StatusNet." -#: actions/siteadminpanel.php:146 +#: actions/siteadminpanel.php:132 msgid "Site name must have non-zero length." msgstr "Le nom du site ne peut pas être vide." -#: actions/siteadminpanel.php:154 +#: actions/siteadminpanel.php:140 msgid "You must have a valid contact email address." msgstr "Vous devez avoir une adresse électronique de contact valide." -#: actions/siteadminpanel.php:172 +#: actions/siteadminpanel.php:158 #, php-format msgid "Unknown language \"%s\"." msgstr "Langue « %s » inconnue." -#: actions/siteadminpanel.php:179 +#: actions/siteadminpanel.php:165 msgid "Invalid snapshot report URL." msgstr "URL de rapport d’instantanés invalide." -#: actions/siteadminpanel.php:185 +#: actions/siteadminpanel.php:171 msgid "Invalid snapshot run value." msgstr "Valeur de lancement d’instantanés invalide." -#: actions/siteadminpanel.php:191 +#: actions/siteadminpanel.php:177 msgid "Snapshot frequency must be a number." msgstr "La fréquence des instantanés doit être un nombre." -#: actions/siteadminpanel.php:197 +#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "La limite minimale de texte est de 140 caractères." -#: actions/siteadminpanel.php:203 +#: actions/siteadminpanel.php:189 msgid "Dupe limit must 1 or more seconds." msgstr "La limite de doublon doit être d’une seconde ou plus." -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:239 msgid "General" msgstr "Général" -#: actions/siteadminpanel.php:256 +#: actions/siteadminpanel.php:242 msgid "Site name" msgstr "Nom du site" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:243 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "Le nom de votre site, comme « Microblog de votre compagnie »" -#: actions/siteadminpanel.php:261 +#: actions/siteadminpanel.php:247 msgid "Brought by" msgstr "Apporté par" -#: actions/siteadminpanel.php:262 +#: actions/siteadminpanel.php:248 msgid "Text used for credits link in footer of each page" msgstr "Texte utilisé pour le lien de crédits au bas de chaque page" -#: actions/siteadminpanel.php:266 +#: actions/siteadminpanel.php:252 msgid "Brought by URL" msgstr "Apporté par URL" -#: actions/siteadminpanel.php:267 +#: actions/siteadminpanel.php:253 msgid "URL used for credits link in footer of each page" msgstr "URL utilisée pour le lien de crédits au bas de chaque page" -#: actions/siteadminpanel.php:271 +#: actions/siteadminpanel.php:257 msgid "Contact email address for your site" msgstr "Adresse de courriel de contact de votre site" -#: actions/siteadminpanel.php:277 +#: actions/siteadminpanel.php:263 msgid "Local" msgstr "Local" -#: actions/siteadminpanel.php:288 +#: actions/siteadminpanel.php:274 msgid "Default timezone" msgstr "Zone horaire par défaut" -#: actions/siteadminpanel.php:289 +#: actions/siteadminpanel.php:275 msgid "Default timezone for the site; usually UTC." msgstr "Zone horaire par défaut pour ce site ; généralement UTC." -#: actions/siteadminpanel.php:295 +#: actions/siteadminpanel.php:281 msgid "Default site language" msgstr "Langue du site par défaut" -#: actions/siteadminpanel.php:303 -msgid "URLs" -msgstr "URL" - -#: actions/siteadminpanel.php:306 -msgid "Server" -msgstr "Serveur" - -#: actions/siteadminpanel.php:306 -msgid "Site's server hostname." -msgstr "Nom d’hôte du serveur du site." - -#: actions/siteadminpanel.php:310 -msgid "Fancy URLs" -msgstr "Jolies URL" - -#: actions/siteadminpanel.php:312 -msgid "Use fancy (more readable and memorable) URLs?" -msgstr "Utiliser des jolies URL (plus lisibles et mémorable) ?" - -#: actions/siteadminpanel.php:318 -msgid "Access" -msgstr "Accès" - -#: actions/siteadminpanel.php:321 -msgid "Private" -msgstr "Privé" - -#: actions/siteadminpanel.php:323 -msgid "Prohibit anonymous users (not logged in) from viewing site?" -msgstr "Interdire aux utilisateurs anonymes (non connectés) de voir le site ?" - -#: actions/siteadminpanel.php:327 -msgid "Invite only" -msgstr "Sur invitation uniquement" - -#: actions/siteadminpanel.php:329 -msgid "Make registration invitation only." -msgstr "Rendre l’inscription sur invitation seulement." - -#: actions/siteadminpanel.php:333 -msgid "Closed" -msgstr "Fermé" - -#: actions/siteadminpanel.php:335 -msgid "Disable new registrations." -msgstr "Désactiver les nouvelles inscriptions." - -#: actions/siteadminpanel.php:341 +#: actions/siteadminpanel.php:289 msgid "Snapshots" msgstr "Instantanés" -#: actions/siteadminpanel.php:344 +#: actions/siteadminpanel.php:292 msgid "Randomly during Web hit" msgstr "Au hasard lors des requêtes web" -#: actions/siteadminpanel.php:345 +#: actions/siteadminpanel.php:293 msgid "In a scheduled job" msgstr "Dans une tâche programée" -#: actions/siteadminpanel.php:347 +#: actions/siteadminpanel.php:295 msgid "Data snapshots" msgstr "Instantanés de données" -#: actions/siteadminpanel.php:348 +#: actions/siteadminpanel.php:296 msgid "When to send statistical data to status.net servers" msgstr "Quand envoyer des données statistiques aux serveurs status.net" -#: actions/siteadminpanel.php:353 +#: actions/siteadminpanel.php:301 msgid "Frequency" msgstr "Fréquence" -#: actions/siteadminpanel.php:354 +#: actions/siteadminpanel.php:302 msgid "Snapshots will be sent once every N web hits" msgstr "Les instantanés seront envoyés une fois tous les N requêtes" -#: actions/siteadminpanel.php:359 +#: actions/siteadminpanel.php:307 msgid "Report URL" msgstr "URL de rapport" -#: actions/siteadminpanel.php:360 +#: actions/siteadminpanel.php:308 msgid "Snapshots will be sent to this URL" msgstr "Les instantanés seront envoyés à cette URL" -#: actions/siteadminpanel.php:367 +#: actions/siteadminpanel.php:315 msgid "Limits" msgstr "Limites" -#: actions/siteadminpanel.php:370 +#: actions/siteadminpanel.php:318 msgid "Text limit" msgstr "Limite de texte" -#: actions/siteadminpanel.php:370 +#: actions/siteadminpanel.php:318 msgid "Maximum number of characters for notices." msgstr "Nombre maximal de caractères pour les avis." -#: actions/siteadminpanel.php:374 +#: actions/siteadminpanel.php:322 msgid "Dupe limit" msgstr "Limite de doublons" -#: actions/siteadminpanel.php:374 +#: actions/siteadminpanel.php:322 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" "Combien de temps (en secondes) les utilisateurs doivent attendre pour poster " "la même chose de nouveau." -#: actions/siteadminpanel.php:388 actions/useradminpanel.php:313 -msgid "Save site settings" -msgstr "Sauvegarder les paramètres du site" - #: actions/smssettings.php:58 msgid "SMS settings" msgstr "Paramètres SMS" @@ -3571,17 +3975,28 @@ msgstr "Aucun code entré" #: actions/subedit.php:70 msgid "You are not subscribed to that profile." -msgstr "Vous n'êtes pas abonné(e) à ce profil." +msgstr "Vous n’êtes pas abonné(e) à ce profil." -#: actions/subedit.php:83 +#: actions/subedit.php:83 classes/Subscription.php:89 +#: classes/Subscription.php:116 msgid "Could not save subscription." msgstr "Impossible d’enregistrer l’abonnement." -#: actions/subscribe.php:55 -msgid "Not a local user." -msgstr "Ceci n’est pas un utilisateur local." +#: actions/subscribe.php:77 +msgid "This action only accepts POST requests." +msgstr "" -#: actions/subscribe.php:69 +#: actions/subscribe.php:107 +#, fuzzy +msgid "No such profile." +msgstr "Fichier non trouvé." + +#: actions/subscribe.php:117 +#, fuzzy +msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." +msgstr "Vous n’êtes pas abonné(e) à ce profil." + +#: actions/subscribe.php:145 msgid "Subscribed" msgstr "Abonné" @@ -3645,7 +4060,7 @@ msgstr "Vous suivez les avis de ces personnes." msgid "These are the people whose notices %s listens to." msgstr "Les avis de ces personnes sont suivis par %s." -#: actions/subscriptions.php:121 +#: actions/subscriptions.php:126 #, php-format msgid "" "You're not listening to anyone's notices right now, try subscribing to " @@ -3661,19 +4076,24 @@ msgstr "" "êtes un [utilisateur de Twitter](%%action.twittersettings%%), vous pouvez " "vous abonner automatiquement aux gens auquels vous êtes déjà abonné là-bas." -#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#: actions/subscriptions.php:128 actions/subscriptions.php:132 #, php-format msgid "%s is not listening to anyone." msgstr "%s ne suit actuellement personne." -#: actions/subscriptions.php:194 +#: actions/subscriptions.php:199 msgid "Jabber" msgstr "Jabber" -#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:204 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "SMS" +#: actions/tag.php:68 +#, php-format +msgid "Notices tagged with %1$s, page %2$d" +msgstr "Avis marqués avec %1$s, page %2$d" + #: actions/tag.php:86 #, php-format msgid "Notice feed for tag %s (RSS 1.0)" @@ -3702,7 +4122,8 @@ msgstr "Marque %s" msgid "User profile" msgstr "Profil de l’utilisateur" -#: actions/tagother.php:81 lib/userprofile.php:102 +#: actions/tagother.php:81 actions/userauthorization.php:132 +#: lib/userprofile.php:102 msgid "Photo" msgstr "Photo" @@ -3762,7 +4183,7 @@ msgstr "Aucune identité de profil dans la requête." msgid "Unsubscribed" msgstr "Désabonné" -#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#: actions/updateprofile.php:62 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -3779,86 +4200,66 @@ msgstr "Utilisateur" msgid "User settings for this StatusNet site." msgstr "Paramètres des utilisateurs pour ce site StatusNet." -#: actions/useradminpanel.php:149 +#: actions/useradminpanel.php:148 msgid "Invalid bio limit. Must be numeric." msgstr "Limite de bio invalide : doit être numérique." -#: actions/useradminpanel.php:155 +#: actions/useradminpanel.php:154 msgid "Invalid welcome text. Max length is 255 characters." msgstr "Texte de bienvenue invalide. La taille maximale est de 255 caractères." -#: actions/useradminpanel.php:165 +#: actions/useradminpanel.php:164 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "Abonnement par défaut invalide : « %1$s » n’est pas un utilisateur." -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 +#: actions/useradminpanel.php:217 lib/accountsettingsaction.php:108 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Profil" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:221 msgid "Bio Limit" msgstr "Limite de bio" -#: actions/useradminpanel.php:223 +#: actions/useradminpanel.php:222 msgid "Maximum length of a profile bio in characters." msgstr "Longueur maximale de la bio d’un profil en caractères." -#: actions/useradminpanel.php:231 +#: actions/useradminpanel.php:230 msgid "New users" msgstr "Nouveaux utilisateurs" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:234 msgid "New user welcome" msgstr "Accueil des nouveaux utilisateurs" -#: actions/useradminpanel.php:236 +#: actions/useradminpanel.php:235 msgid "Welcome text for new users (Max 255 chars)." msgstr "" "Texte de bienvenue pour les nouveaux utilisateurs (maximum 255 caractères)." -#: actions/useradminpanel.php:241 +#: actions/useradminpanel.php:240 msgid "Default subscription" msgstr "Abonnements par défaut" -#: actions/useradminpanel.php:242 +#: actions/useradminpanel.php:241 msgid "Automatically subscribe new users to this user." msgstr "Abonner automatiquement les nouveaux utilisateurs à cet utilisateur." -#: actions/useradminpanel.php:251 +#: actions/useradminpanel.php:250 msgid "Invitations" msgstr "Invitations" -#: actions/useradminpanel.php:256 +#: actions/useradminpanel.php:255 msgid "Invitations enabled" msgstr "Invitations activées" -#: actions/useradminpanel.php:258 +#: actions/useradminpanel.php:257 msgid "Whether to allow users to invite new users." msgstr "" "S’il faut autoriser les utilisateurs à inviter de nouveaux utilisateurs." -#: actions/useradminpanel.php:265 -msgid "Sessions" -msgstr "Sessions" - -#: actions/useradminpanel.php:270 -msgid "Handle sessions" -msgstr "Gérer les sessions" - -#: actions/useradminpanel.php:272 -msgid "Whether to handle sessions ourselves." -msgstr "S’il faut gérer les sessions nous-même." - -#: actions/useradminpanel.php:276 -msgid "Session debugging" -msgstr "Déboguage de session" - -#: actions/useradminpanel.php:278 -msgid "Turn on debugging output for sessions." -msgstr "Activer la sortie de déboguage pour les sessions." - #: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Autoriser l’abonnement" @@ -3873,36 +4274,36 @@ msgstr "" "abonner aux avis de cet utilisateur. Si vous n’avez pas demandé à vous " "abonner aux avis de quelqu’un, cliquez « Rejeter »." -#: actions/userauthorization.php:188 actions/version.php:165 +#: actions/userauthorization.php:196 actions/version.php:165 msgid "License" msgstr "Licence" -#: actions/userauthorization.php:209 +#: actions/userauthorization.php:217 msgid "Accept" msgstr "Accepter" -#: actions/userauthorization.php:210 lib/subscribeform.php:115 +#: actions/userauthorization.php:218 lib/subscribeform.php:115 #: lib/subscribeform.php:139 msgid "Subscribe to this user" msgstr "S’abonner à cet utilisateur" -#: actions/userauthorization.php:211 +#: actions/userauthorization.php:219 msgid "Reject" msgstr "Refuser" -#: actions/userauthorization.php:212 +#: actions/userauthorization.php:220 msgid "Reject this subscription" msgstr "Rejeter cet abonnement" -#: actions/userauthorization.php:225 +#: actions/userauthorization.php:232 msgid "No authorization request!" msgstr "Pas de requête d’autorisation !" -#: actions/userauthorization.php:247 +#: actions/userauthorization.php:254 msgid "Subscription authorized" msgstr "Abonnement autorisé" -#: actions/userauthorization.php:249 +#: actions/userauthorization.php:256 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 " @@ -3912,11 +4313,11 @@ msgstr "" "Vérifiez les instructions du site pour savoir comment compléter " "l’autorisation de l’abonnement. Votre jeton d’abonnement est :" -#: actions/userauthorization.php:259 +#: actions/userauthorization.php:266 msgid "Subscription rejected" msgstr "Abonnement refusé" -#: actions/userauthorization.php:261 +#: actions/userauthorization.php:268 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 " @@ -3926,38 +4327,38 @@ msgstr "" "Vérifiez les instructions du site pour savoir comment refuser pleinement " "l’abonnement." -#: actions/userauthorization.php:296 +#: actions/userauthorization.php:303 #, php-format msgid "Listener URI ‘%s’ not found here." msgstr "L’URI de l’auditeur ‘%s’ n’a pas été trouvée ici." -#: actions/userauthorization.php:301 +#: actions/userauthorization.php:308 #, php-format msgid "Listenee URI ‘%s’ is too long." msgstr "L’URI à laquelle vous vous êtes abonné(e) ‘%s’ est trop longue." -#: actions/userauthorization.php:307 +#: actions/userauthorization.php:314 #, php-format msgid "Listenee URI ‘%s’ is a local user." msgstr "" "L’URI à laquelle vous vous êtes abonné(e) ‘%s’ est un utilisateur local." -#: actions/userauthorization.php:322 +#: actions/userauthorization.php:329 #, php-format msgid "Profile URL ‘%s’ is for a local user." msgstr "L’URL du profil ‘%s’ est pour un utilisateur local." -#: actions/userauthorization.php:338 +#: actions/userauthorization.php:345 #, php-format msgid "Avatar URL ‘%s’ is not valid." msgstr "L’URL de l’avatar ‘%s’ n’est pas valide." -#: actions/userauthorization.php:343 +#: actions/userauthorization.php:350 #, php-format msgid "Can’t read avatar URL ‘%s’." msgstr "Impossible de lire l’URL de l’avatar « %s »." -#: actions/userauthorization.php:348 +#: actions/userauthorization.php:355 #, php-format msgid "Wrong image type for avatar URL ‘%s’." msgstr "Format d’image invalide pour l’URL de l’avatar « %s »." @@ -3978,6 +4379,11 @@ msgstr "" msgid "Enjoy your hotdog!" msgstr "Bon appétit !" +#: actions/usergroups.php:64 +#, php-format +msgid "%1$s groups, page %2$d" +msgstr "Groupes %1$s, page %2$d" + #: actions/usergroups.php:130 msgid "Search for more groups" msgstr "Rechercher pour plus de groupes" @@ -4008,10 +4414,6 @@ msgstr "" "Ce site est propulsé par %1$s, version %2$s, Copyright 2008-2010 StatusNet, " "Inc. et ses contributeurs." -#: actions/version.php:157 -msgid "StatusNet" -msgstr "StatusNet" - #: actions/version.php:161 msgid "Contributors" msgstr "Contributeurs" @@ -4053,11 +4455,7 @@ msgstr "" msgid "Plugins" msgstr "Extensions" -#: actions/version.php:195 -msgid "Name" -msgstr "Nom" - -#: actions/version.php:196 lib/action.php:741 +#: actions/version.php:196 lib/action.php:747 msgid "Version" msgstr "Version" @@ -4065,10 +4463,6 @@ msgstr "Version" msgid "Author(s)" msgstr "Auteur(s)" -#: actions/version.php:198 lib/groupeditform.php:172 -msgid "Description" -msgstr "Description" - #: classes/File.php:144 #, php-format msgid "" @@ -4089,24 +4483,21 @@ msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "Un fichier aussi gros dépasserai votre quota mensuel de %d octets." #: classes/Group_member.php:41 -#, fuzzy msgid "Group join failed." -msgstr "Profil du groupe" +msgstr "L’inscription au groupe a échoué." #: classes/Group_member.php:53 -#, fuzzy msgid "Not part of group." -msgstr "Impossible de mettre à jour le groupe." +msgstr "N’appartient pas au groupe." #: classes/Group_member.php:60 -#, fuzzy msgid "Group leave failed." -msgstr "Profil du groupe" +msgstr "La désinscription du groupe a échoué." #: classes/Login_token.php:76 #, php-format msgid "Could not create login token for %s" -msgstr "Impossible de créer le jeton d'ouverture de session pour %s" +msgstr "Impossible de créer le jeton d’identification pour %s" #: classes/Message.php:45 msgid "You are banned from sending direct messages." @@ -4120,27 +4511,27 @@ msgstr "Impossible d’insérer le message." msgid "Could not update message with new URI." msgstr "Impossible de mettre à jour le message avec un nouvel URI." -#: classes/Notice.php:171 +#: classes/Notice.php:157 #, php-format msgid "DB error inserting hashtag: %s" msgstr "Erreur de base de donnée en insérant la marque (hashtag) : %s" -#: classes/Notice.php:225 +#: classes/Notice.php:222 msgid "Problem saving notice. Too long." msgstr "Problème lors de l’enregistrement de l’avis ; trop long." -#: classes/Notice.php:229 +#: classes/Notice.php:226 msgid "Problem saving notice. Unknown user." msgstr "Erreur lors de l’enregistrement de l’avis. Utilisateur inconnu." -#: classes/Notice.php:234 +#: classes/Notice.php:231 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" "Trop d’avis, trop vite ! Faites une pause et publiez à nouveau dans quelques " "minutes." -#: classes/Notice.php:240 +#: classes/Notice.php:237 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." @@ -4148,36 +4539,59 @@ msgstr "" "Trop de messages en double trop vite ! Prenez une pause et publiez à nouveau " "dans quelques minutes." -#: classes/Notice.php:246 +#: classes/Notice.php:243 msgid "You are banned from posting notices on this site." msgstr "Il vous est interdit de poster des avis sur ce site." -#: classes/Notice.php:305 classes/Notice.php:330 +#: classes/Notice.php:309 classes/Notice.php:335 msgid "Problem saving notice." msgstr "Problème lors de l’enregistrement de l’avis." -#: classes/Notice.php:1052 -#, php-format -msgid "DB error inserting reply: %s" -msgstr "Erreur de base de donnée en insérant la réponse :%s" +#: classes/Notice.php:882 +msgid "Problem saving group inbox." +msgstr "Problème lors de l’enregistrement de la boîte de réception du groupe." -#: classes/Notice.php:1423 +#: classes/Notice.php:1407 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" -#: classes/User.php:382 +#: classes/Subscription.php:66 lib/oauthstore.php:465 +msgid "You have been banned from subscribing." +msgstr "Il vous avez été interdit de vous abonner." + +#: classes/Subscription.php:70 +msgid "Already subscribed!" +msgstr "Déjà abonné !" + +#: classes/Subscription.php:74 +msgid "User has blocked you." +msgstr "Cet utilisateur vous a bloqué." + +#: classes/Subscription.php:157 +msgid "Not subscribed!" +msgstr "Pas abonné !" + +#: classes/Subscription.php:163 +msgid "Couldn't delete self-subscription." +msgstr "Impossible de supprimer l’abonnement à soi-même." + +#: classes/Subscription.php:179 lib/subs.php:69 +msgid "Couldn't delete subscription." +msgstr "Impossible de cesser l’abonnement" + +#: classes/User.php:372 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "Bienvenue à %1$s, @%2$s !" -#: classes/User_group.php:380 +#: classes/User_group.php:423 msgid "Could not create group." msgstr "Impossible de créer le groupe." -#: classes/User_group.php:409 +#: classes/User_group.php:452 msgid "Could not set group membership." -msgstr "Impossible d'établir l’inscription au groupe." +msgstr "Impossible d’établir l’inscription au groupe." #: lib/accountsettingsaction.php:108 msgid "Change your profile settings" @@ -4205,7 +4619,7 @@ msgstr "Autres " #: lib/accountsettingsaction.php:128 msgid "Other options" -msgstr "Autres options " +msgstr "Autres options" #: lib/action.php:144 #, php-format @@ -4216,128 +4630,124 @@ msgstr "%1$s - %2$s" msgid "Untitled page" msgstr "Page sans nom" -#: lib/action.php:427 +#: lib/action.php:433 msgid "Primary site navigation" msgstr "Navigation primaire du site" -#: lib/action.php:433 +#: lib/action.php:439 msgid "Home" msgstr "Accueil" -#: lib/action.php:433 +#: lib/action.php:439 msgid "Personal profile and friends timeline" msgstr "Profil personnel et flux des amis" -#: lib/action.php:435 -msgid "Account" -msgstr "Compte" - -#: lib/action.php:435 +#: lib/action.php:441 msgid "Change your email, avatar, password, profile" msgstr "Modifier votre courriel, avatar, mot de passe, profil" -#: lib/action.php:438 +#: lib/action.php:444 msgid "Connect" msgstr "Connecter" -#: lib/action.php:438 +#: lib/action.php:444 msgid "Connect to services" msgstr "Se connecter aux services" -#: lib/action.php:442 +#: lib/action.php:448 msgid "Change site configuration" msgstr "Modifier la configuration du site" -#: lib/action.php:446 lib/subgroupnav.php:105 +#: lib/action.php:452 lib/subgroupnav.php:105 msgid "Invite" msgstr "Inviter" -#: lib/action.php:447 lib/subgroupnav.php:106 +#: lib/action.php:453 lib/subgroupnav.php:106 #, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "Inviter des amis et collègues à vous rejoindre dans %s" -#: lib/action.php:452 +#: lib/action.php:458 msgid "Logout" msgstr "Fermeture de session" -#: lib/action.php:452 +#: lib/action.php:458 msgid "Logout from the site" msgstr "Fermer la session" -#: lib/action.php:457 +#: lib/action.php:463 msgid "Create an account" msgstr "Créer un compte" -#: lib/action.php:460 +#: lib/action.php:466 msgid "Login to the site" msgstr "Ouvrir une session" -#: lib/action.php:463 lib/action.php:726 +#: lib/action.php:469 lib/action.php:732 msgid "Help" msgstr "Aide" -#: lib/action.php:463 +#: lib/action.php:469 msgid "Help me!" msgstr "À l’aide !" -#: lib/action.php:466 lib/searchaction.php:127 +#: lib/action.php:472 lib/searchaction.php:127 msgid "Search" msgstr "Rechercher" -#: lib/action.php:466 +#: lib/action.php:472 msgid "Search for people or text" msgstr "Rechercher des personnes ou du texte" -#: lib/action.php:487 +#: lib/action.php:493 msgid "Site notice" msgstr "Notice du site" -#: lib/action.php:553 +#: lib/action.php:559 msgid "Local views" msgstr "Vues locales" -#: lib/action.php:619 +#: lib/action.php:625 msgid "Page notice" msgstr "Avis de la page" -#: lib/action.php:721 +#: lib/action.php:727 msgid "Secondary site navigation" msgstr "Navigation secondaire du site" -#: lib/action.php:728 +#: lib/action.php:734 msgid "About" msgstr "À propos" -#: lib/action.php:730 +#: lib/action.php:736 msgid "FAQ" msgstr "FAQ" -#: lib/action.php:734 +#: lib/action.php:740 msgid "TOS" msgstr "CGU" -#: lib/action.php:737 +#: lib/action.php:743 msgid "Privacy" msgstr "Confidentialité" -#: lib/action.php:739 +#: lib/action.php:745 msgid "Source" msgstr "Source" -#: lib/action.php:743 +#: lib/action.php:749 msgid "Contact" msgstr "Contact" -#: lib/action.php:745 +#: lib/action.php:751 msgid "Badge" msgstr "Insigne" -#: lib/action.php:773 +#: lib/action.php:779 msgid "StatusNet software license" msgstr "Licence du logiciel StatusNet" -#: lib/action.php:776 +#: lib/action.php:782 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4346,12 +4756,12 @@ msgstr "" "**%%site.name%%** est un service de microblogging qui vous est proposé par " "[%%site.broughtby%%](%%site.broughtbyurl%%)." -#: lib/action.php:778 +#: lib/action.php:784 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** est un service de micro-blogging." -#: lib/action.php:780 +#: lib/action.php:786 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4362,33 +4772,59 @@ msgstr "" "version %s, disponible sous la licence [GNU Affero General Public License] " "(http://www.fsf.org/licensing/licenses/agpl-3.0.html)." -#: lib/action.php:794 +#: lib/action.php:801 msgid "Site content license" msgstr "Licence du contenu du site" -#: lib/action.php:803 +#: lib/action.php:806 +#, php-format +msgid "Content and data of %1$s are private and confidential." +msgstr "Le contenu et les données de %1$s sont privés et confidentiels." + +#: lib/action.php:811 +#, php-format +msgid "Content and data copyright by %1$s. All rights reserved." +msgstr "" +"Le contenu et les données sont sous le droit d’auteur de %1$s. Tous droits " +"réservés." + +#: lib/action.php:814 +msgid "Content and data copyright by contributors. All rights reserved." +msgstr "" +"Le contenu et les données sont sous le droit d’auteur du contributeur. Tous " +"droits réservés." + +#: lib/action.php:827 msgid "All " msgstr "Tous " -#: lib/action.php:808 +#: lib/action.php:833 msgid "license." msgstr "licence." -#: lib/action.php:1102 +#: lib/action.php:1132 msgid "Pagination" msgstr "Pagination" -#: lib/action.php:1111 +#: lib/action.php:1141 msgid "After" msgstr "Après" -#: lib/action.php:1119 +#: lib/action.php:1149 msgid "Before" msgstr "Avant" -#: lib/action.php:1167 -msgid "There was a problem with your session token." -msgstr "Un problème est survenu avec votre jeton de session." +#: lib/activity.php:382 +msgid "Can't handle remote content yet." +msgstr "" + +#: lib/activity.php:410 +msgid "Can't handle embedded XML content yet." +msgstr "" + +#: lib/activity.php:414 +msgid "Can't handle embedded Base64 content yet." +msgstr "" #: lib/adminpanelaction.php:96 msgid "You cannot make changes to this site." @@ -4418,10 +4854,102 @@ msgstr "Configuration basique du site" msgid "Design configuration" msgstr "Configuration de la conception" -#: lib/adminpanelaction.php:322 lib/adminpanelaction.php:327 +#: lib/adminpanelaction.php:322 +msgid "User configuration" +msgstr "Configuration utilisateur" + +#: lib/adminpanelaction.php:327 +msgid "Access configuration" +msgstr "Configuration d’accès" + +#: lib/adminpanelaction.php:332 msgid "Paths configuration" msgstr "Configuration des chemins" +#: lib/adminpanelaction.php:337 +msgid "Sessions configuration" +msgstr "Configuration des sessions" + +#: lib/apiauth.php:95 +msgid "API resource requires read-write access, but you only have read access." +msgstr "" +"La ressource de l’API a besoin de l’accès en lecture et en écriture, mais " +"vous n’y avez accès qu’en lecture." + +#: lib/apiauth.php:273 +#, php-format +msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" +msgstr "" +"L’essai d’authentification de l’API a échoué ; pseudo = %1$s, proxy = %2$s, " +"ip = %3$s" + +#: lib/applicationeditform.php:136 +msgid "Edit application" +msgstr "Modifier votre application" + +#: lib/applicationeditform.php:184 +msgid "Icon for this application" +msgstr "Icône pour cette application" + +#: lib/applicationeditform.php:204 +#, php-format +msgid "Describe your application in %d characters" +msgstr "Décrivez votre application en %d caractères" + +#: lib/applicationeditform.php:207 +msgid "Describe your application" +msgstr "Décrivez votre application" + +#: lib/applicationeditform.php:216 +msgid "Source URL" +msgstr "URL source" + +#: lib/applicationeditform.php:218 +msgid "URL of the homepage of this application" +msgstr "URL de la page d’accueil de cette application" + +#: lib/applicationeditform.php:224 +msgid "Organization responsible for this application" +msgstr "Organisation responsable de cette application" + +#: lib/applicationeditform.php:230 +msgid "URL for the homepage of the organization" +msgstr "URL de la page d’accueil de l’organisation" + +#: lib/applicationeditform.php:236 +msgid "URL to redirect to after authentication" +msgstr "URL vers laquelle rediriger après l’authentification" + +#: lib/applicationeditform.php:258 +msgid "Browser" +msgstr "Navigateur" + +#: lib/applicationeditform.php:274 +msgid "Desktop" +msgstr "Bureau" + +#: lib/applicationeditform.php:275 +msgid "Type of application, browser or desktop" +msgstr "Type d’application, navigateur ou bureau" + +#: lib/applicationeditform.php:297 +msgid "Read-only" +msgstr "Lecture seule" + +#: lib/applicationeditform.php:315 +msgid "Read-write" +msgstr "Lecture-écriture" + +#: lib/applicationeditform.php:316 +msgid "Default access for this application: read-only, or read-write" +msgstr "" +"Accès par défaut pour cette application : en lecture seule ou en lecture-" +"écriture" + +#: lib/applicationlist.php:154 +msgid "Revoke" +msgstr "Révoquer" + #: lib/attachmentlist.php:87 msgid "Attachments" msgstr "Pièces jointes" @@ -4442,11 +4970,11 @@ msgstr "Avis sur lesquels cette pièce jointe apparaît." msgid "Tags for this attachment" msgstr "Marques de cette pièce jointe" -#: lib/authenticationplugin.php:182 lib/authenticationplugin.php:187 +#: lib/authenticationplugin.php:218 lib/authenticationplugin.php:223 msgid "Password changing failed" msgstr "La modification du mot de passe a échoué" -#: lib/authenticationplugin.php:197 +#: lib/authenticationplugin.php:233 msgid "Password changing is not allowed" msgstr "La modification du mot de passe n’est pas autorisée" @@ -4478,7 +5006,7 @@ msgstr "Ça n’a pas de sens de se faire un clin d’œil à soi-même !" #: lib/command.php:99 #, php-format msgid "Nudge sent to %s" -msgstr "Coup de code envoyé à %s" +msgstr "Clin d’œil envoyé à %s" #: lib/command.php:126 #, php-format @@ -4516,7 +5044,7 @@ msgstr "Impossible d’inscrire l’utilisateur %s au groupe %s" #: lib/command.php:236 #, php-format msgid "%s joined group %s" -msgstr "%1$s a rejoint le groupe %2$s" +msgstr "%s a rejoint le groupe %s" #: lib/command.php:275 #, php-format @@ -4526,7 +5054,7 @@ msgstr "Impossible de retirer l’utilisateur %s du groupe %s" #: lib/command.php:280 #, php-format msgid "%s left group %s" -msgstr "%1$s a quitté le groupe %2$s" +msgstr "%s a quitté le groupe %s" #: lib/command.php:309 #, php-format @@ -4601,82 +5129,92 @@ msgstr "Problème lors de l’enregistrement de l’avis." msgid "Specify the name of the user to subscribe to" msgstr "Indiquez le nom de l’utilisateur auquel vous souhaitez vous abonner" -#: lib/command.php:554 +#: lib/command.php:554 lib/command.php:589 +msgid "No such user" +msgstr "Utilisateur non trouvé." + +#: lib/command.php:561 #, php-format msgid "Subscribed to %s" msgstr "Abonné à %s" -#: lib/command.php:575 +#: lib/command.php:582 lib/command.php:685 msgid "Specify the name of the user to unsubscribe from" msgstr "Indiquez le nom de l’utilisateur duquel vous souhaitez vous désabonner" -#: lib/command.php:582 +#: lib/command.php:595 #, php-format msgid "Unsubscribed from %s" msgstr "Désabonné de %s" -#: lib/command.php:600 lib/command.php:623 +#: lib/command.php:613 lib/command.php:636 msgid "Command not yet implemented." msgstr "Cette commande n’a pas encore été implémentée." -#: lib/command.php:603 +#: lib/command.php:616 msgid "Notification off." msgstr "Avertissements désactivés." -#: lib/command.php:605 +#: lib/command.php:618 msgid "Can't turn off notification." msgstr "Impossible de désactiver les avertissements." -#: lib/command.php:626 +#: lib/command.php:639 msgid "Notification on." msgstr "Avertissements activés." -#: lib/command.php:628 +#: lib/command.php:641 msgid "Can't turn on notification." msgstr "Impossible d’activer les avertissements." -#: lib/command.php:641 +#: lib/command.php:654 msgid "Login command is disabled" -msgstr "La commande d'ouverture de session est désactivée" +msgstr "La commande d’ouverture de session est désactivée" -#: lib/command.php:652 +#: lib/command.php:665 #, php-format msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "" "Ce lien n’est utilisable qu’une seule fois, et est valable uniquement " "pendant 2 minutes : %s" -#: lib/command.php:668 -msgid "You are not subscribed to anyone." -msgstr "Vous n'êtes pas abonné(e) à personne." +#: lib/command.php:692 +#, fuzzy, php-format +msgid "Unsubscribed %s" +msgstr "Désabonné de %s" -#: lib/command.php:670 +#: lib/command.php:709 +msgid "You are not subscribed to anyone." +msgstr "Vous n’êtes abonné(e) à personne." + +#: lib/command.php:711 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "Vous êtes abonné à cette personne :" msgstr[1] "Vous êtes abonné à ces personnes :" -#: lib/command.php:690 +#: lib/command.php:731 msgid "No one is subscribed to you." msgstr "Personne ne s’est abonné à vous." -#: lib/command.php:692 +#: lib/command.php:733 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "Cette personne est abonnée à vous :" msgstr[1] "Ces personnes sont abonnées à vous :" -#: lib/command.php:712 +#: lib/command.php:753 msgid "You are not a member of any groups." msgstr "Vous n’êtes membre d’aucun groupe." -#: lib/command.php:714 +#: lib/command.php:755 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "Vous êtes membre de ce groupe :" msgstr[1] "Vous êtes membre de ces groupes :" -#: lib/command.php:728 +#: lib/command.php:769 +#, fuzzy msgid "" "Commands:\n" "on - turn on notifications\n" @@ -4690,6 +5228,7 @@ msgid "" "d - direct message to user\n" "get - get last notice from user\n" "whois - get profile info on user\n" +"lose - force user to stop following you\n" "fav - add user's last notice as a 'fave'\n" "fav # - add notice with the given id as a 'fave'\n" "repeat # - repeat a notice with a given id\n" @@ -4755,20 +5294,20 @@ msgstr "" "tracks - pas encore implémenté.\n" "tracking - pas encore implémenté.\n" -#: lib/common.php:131 +#: lib/common.php:136 msgid "No configuration file found. " msgstr "Aucun fichier de configuration n’a été trouvé. " -#: lib/common.php:132 +#: lib/common.php:137 msgid "I looked for configuration files in the following places: " msgstr "" "J’ai cherché des fichiers de configuration dans les emplacements suivants : " -#: lib/common.php:134 +#: lib/common.php:139 msgid "You may wish to run the installer to fix this." msgstr "Vous pouvez essayer de lancer l’installeur pour régler ce problème." -#: lib/common.php:135 +#: lib/common.php:140 msgid "Go to the installer." msgstr "Aller au programme d’installation" @@ -4784,6 +5323,14 @@ msgstr "Suivi des avis par messagerie instantanée" msgid "Updates by SMS" msgstr "Suivi des avis par SMS" +#: lib/connectsettingsaction.php:120 +msgid "Connections" +msgstr "Connexions" + +#: lib/connectsettingsaction.php:121 +msgid "Authorized connected applications" +msgstr "Applications autorisées connectées" + #: lib/dberroraction.php:60 msgid "Database error" msgstr "Erreur de la base de données" @@ -4924,7 +5471,7 @@ msgstr "Groupes avec le plus de membres" #: lib/groupsbypostssection.php:71 msgid "Groups with most posts" -msgstr "Groupes avec le plus d'éléments publiés" +msgstr "Groupes avec le plus d’éléments publiés" #: lib/grouptagcloudsection.php:56 #, php-format @@ -4973,15 +5520,15 @@ msgstr "Mo" msgid "kB" msgstr "Ko" -#: lib/jabber.php:202 +#: lib/jabber.php:220 #, php-format msgid "[%s]" msgstr "[%s]" -#: lib/jabber.php:385 -#, fuzzy, php-format +#: lib/jabber.php:400 +#, php-format msgid "Unknown inbox source %d." -msgstr "Langue « %s » inconnue." +msgstr "Source %d inconnue pour la boîte de réception." #: lib/joinform.php:114 msgid "Join" @@ -5259,7 +5806,7 @@ msgstr "" "pour démarrer des conversations avec d’autres utilisateurs. Ceux-ci peuvent " "vous envoyer des messages destinés à vous seul(e)." -#: lib/mailbox.php:227 lib/noticelist.php:477 +#: lib/mailbox.php:227 lib/noticelist.php:482 msgid "from" msgstr "de" @@ -5312,7 +5859,7 @@ msgstr "Un dossier temporaire est manquant." #: lib/mediafile.php:162 msgid "Failed to write file to disk." -msgstr "Impossible d'écrire sur le disque." +msgstr "Impossible d’écrire sur le disque." #: lib/mediafile.php:165 msgid "File upload stopped by extension." @@ -5378,57 +5925,55 @@ msgid "Do not share my location" msgstr "Ne pas partager ma localisation" #: lib/noticeform.php:216 -msgid "Hide this info" -msgstr "Masquer cette info" - -#: lib/noticeform.php:217 msgid "" "Sorry, retrieving your geo location is taking longer than expected, please " "try again later" msgstr "" +"Désolé, l’obtention de votre localisation prend plus de temps que prévu. " +"Veuillez réessayer plus tard." -#: lib/noticelist.php:428 +#: lib/noticelist.php:429 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u° %2$u' %3$u\" %4$s %5$u° %6$u' %7$u\" %8$s" -#: lib/noticelist.php:429 +#: lib/noticelist.php:430 msgid "N" msgstr "N" -#: lib/noticelist.php:429 +#: lib/noticelist.php:430 msgid "S" msgstr "S" -#: lib/noticelist.php:430 +#: lib/noticelist.php:431 msgid "E" msgstr "E" -#: lib/noticelist.php:430 +#: lib/noticelist.php:431 msgid "W" msgstr "O" -#: lib/noticelist.php:436 +#: lib/noticelist.php:438 msgid "at" msgstr "chez" -#: lib/noticelist.php:531 +#: lib/noticelist.php:558 msgid "in context" msgstr "dans le contexte" -#: lib/noticelist.php:556 +#: lib/noticelist.php:583 msgid "Repeated by" msgstr "Repris par" -#: lib/noticelist.php:585 +#: lib/noticelist.php:610 msgid "Reply to this notice" msgstr "Répondre à cet avis" -#: lib/noticelist.php:586 +#: lib/noticelist.php:611 msgid "Reply" msgstr "Répondre" -#: lib/noticelist.php:628 +#: lib/noticelist.php:655 msgid "Notice repeated" msgstr "Avis repris" @@ -5460,11 +6005,7 @@ msgstr "Erreur lors de l’insertion du profil distant" msgid "Duplicate notice" msgstr "Dupliquer l’avis" -#: lib/oauthstore.php:466 lib/subs.php:48 -msgid "You have been banned from subscribing." -msgstr "Il vous avez été interdit de vous abonner." - -#: lib/oauthstore.php:491 +#: lib/oauthstore.php:490 msgid "Couldn't insert new subscription." msgstr "Impossible d’insérer un nouvel abonnement." @@ -5480,19 +6021,19 @@ msgstr "Réponses" msgid "Favorites" msgstr "Favoris" -#: lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "Boîte de réception" -#: lib/personalgroupnav.php:125 +#: lib/personalgroupnav.php:126 msgid "Your incoming messages" msgstr "Vos messages reçus" -#: lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 msgid "Outbox" msgstr "Boîte d’envoi" -#: lib/personalgroupnav.php:130 +#: lib/personalgroupnav.php:131 msgid "Your sent messages" msgstr "Vos messages envoyés" @@ -5569,6 +6110,10 @@ msgstr "Reprendre cet avis ?" msgid "Repeat this notice" msgstr "Reprendre cet avis" +#: lib/router.php:665 +msgid "No single user defined for single-user mode." +msgstr "Aucun utilisateur unique défini pour le mode mono-utilisateur." + #: lib/sandboxform.php:67 msgid "Sandbox" msgstr "Bac à sable" @@ -5636,34 +6181,6 @@ msgstr "Abonnés de %s" msgid "Groups %s is a member of" msgstr "Groupes de %s" -#: lib/subs.php:52 -msgid "Already subscribed!" -msgstr "Déjà abonné !" - -#: lib/subs.php:56 -msgid "User has blocked you." -msgstr "Cet utilisateur vous a bloqué." - -#: lib/subs.php:63 -msgid "Could not subscribe." -msgstr "Impossible de s’abonner." - -#: lib/subs.php:82 -msgid "Could not subscribe other to you." -msgstr "Impossible d’abonner une autre personne à votre profil." - -#: lib/subs.php:137 -msgid "Not subscribed!" -msgstr "Pas abonné !" - -#: lib/subs.php:142 -msgid "Couldn't delete self-subscription." -msgstr "Impossible de supprimer l’abonnement à soi-même." - -#: lib/subs.php:158 -msgid "Couldn't delete subscription." -msgstr "Impossible de cesser l’abonnement" - #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -5714,67 +6231,67 @@ msgstr "Modifier l’avatar" msgid "User actions" msgstr "Actions de l’utilisateur" -#: lib/userprofile.php:248 +#: lib/userprofile.php:251 msgid "Edit profile settings" msgstr "Modifier les paramètres du profil" -#: lib/userprofile.php:249 +#: lib/userprofile.php:252 msgid "Edit" msgstr "Modifier" -#: lib/userprofile.php:272 +#: lib/userprofile.php:275 msgid "Send a direct message to this user" msgstr "Envoyer un message à cet utilisateur" -#: lib/userprofile.php:273 +#: lib/userprofile.php:276 msgid "Message" msgstr "Message" -#: lib/userprofile.php:311 +#: lib/userprofile.php:314 msgid "Moderate" msgstr "Modérer" -#: lib/util.php:877 +#: lib/util.php:952 msgid "a few seconds ago" msgstr "il y a quelques secondes" -#: lib/util.php:879 +#: lib/util.php:954 msgid "about a minute ago" msgstr "il y a 1 minute" -#: lib/util.php:881 +#: lib/util.php:956 #, php-format msgid "about %d minutes ago" msgstr "il y a %d minutes" -#: lib/util.php:883 +#: lib/util.php:958 msgid "about an hour ago" msgstr "il y a 1 heure" -#: lib/util.php:885 +#: lib/util.php:960 #, php-format msgid "about %d hours ago" msgstr "il y a %d heures" -#: lib/util.php:887 +#: lib/util.php:962 msgid "about a day ago" msgstr "il y a 1 jour" -#: lib/util.php:889 +#: lib/util.php:964 #, php-format msgid "about %d days ago" msgstr "il y a %d jours" -#: lib/util.php:891 +#: lib/util.php:966 msgid "about a month ago" msgstr "il y a 1 mois" -#: lib/util.php:893 +#: lib/util.php:968 #, php-format msgid "about %d months ago" msgstr "il y a %d mois" -#: lib/util.php:895 +#: lib/util.php:970 msgid "about a year ago" msgstr "il y a environ 1 an" @@ -5789,7 +6306,7 @@ msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "" "%s n’est pas une couleur valide ! Utilisez 3 ou 6 caractères hexadécimaux." -#: scripts/xmppdaemon.php:301 +#: lib/xmppmanager.php:402 #, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "" diff --git a/locale/ga/LC_MESSAGES/statusnet.po b/locale/ga/LC_MESSAGES/statusnet.po index 4dc2de67af..b60553d44f 100644 --- a/locale/ga/LC_MESSAGES/statusnet.po +++ b/locale/ga/LC_MESSAGES/statusnet.po @@ -8,18 +8,77 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-01-13 22:04+0000\n" -"PO-Revision-Date: 2010-01-13 22:05:19+0000\n" +"POT-Creation-Date: 2010-02-24 23:49+0000\n" +"PO-Revision-Date: 2010-02-24 23:50:51+0000\n" "Language-Team: Irish\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha (r61027); Translate extension (2010-01-04)\n" +"X-Generator: MediaWiki 1.17alpha (r62925); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ga\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=5; plural=n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : " "4;\n" +#: actions/accessadminpanel.php:54 lib/adminpanelaction.php:326 +#, fuzzy +msgid "Access" +msgstr "Aceptar" + +#: actions/accessadminpanel.php:65 +#, fuzzy +msgid "Site access settings" +msgstr "Configuracións de Twitter" + +#: actions/accessadminpanel.php:158 +#, fuzzy +msgid "Registration" +msgstr "Rexistrar" + +#: actions/accessadminpanel.php:161 +#, fuzzy +msgid "Private" +msgstr "Privacidade" + +#: actions/accessadminpanel.php:163 +msgid "Prohibit anonymous users (not logged in) from viewing site?" +msgstr "" + +#: actions/accessadminpanel.php:167 +#, fuzzy +msgid "Invite only" +msgstr "Invitar" + +#: actions/accessadminpanel.php:169 +msgid "Make registration invitation only." +msgstr "" + +#: actions/accessadminpanel.php:173 +#, fuzzy +msgid "Closed" +msgstr "Bloquear" + +#: actions/accessadminpanel.php:175 +msgid "Disable new registrations." +msgstr "" + +#: actions/accessadminpanel.php:189 actions/designadminpanel.php:586 +#: actions/emailsettings.php:195 actions/imsettings.php:163 +#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 +#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 +#: actions/siteadminpanel.php:336 actions/smssettings.php:181 +#: actions/subscriptions.php:208 actions/tagother.php:154 +#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 lib/designsettings.php:256 +#: lib/groupeditform.php:202 +msgid "Save" +msgstr "Gardar" + +#: actions/accessadminpanel.php:189 +#, fuzzy +msgid "Save access settings" +msgstr "Configuracións de Twitter" + #: actions/all.php:63 actions/public.php:97 actions/replies.php:92 #: actions/showfavorites.php:137 actions/tag.php:51 #, fuzzy @@ -35,25 +94,29 @@ msgstr "Non existe a etiqueta." #: 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:144 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apistatusesupdate.php:148 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:78 #: actions/apitimelinehome.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/otp.php:76 #: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154 -#: actions/replies.php:73 actions/repliesrss.php:38 +#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 #: 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:302 lib/command.php:355 #: lib/command.php:401 lib/command.php:462 lib/command.php:518 #: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 -#: lib/subs.php:34 lib/subs.php:125 msgid "No such user." msgstr "Ningún usuario." +#: actions/all.php:84 +#, fuzzy, php-format +msgid "%1$s and friends, page %2$d" +msgstr "%s e amigos" + #: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 -#: actions/apitimelinefriends.php:115 actions/apitimelinehome.php:115 +#: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" @@ -94,7 +157,7 @@ msgid "" "his or her attention](%%%%action.newnotice%%%%?status_textarea=%3$s)." msgstr "" -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211 #, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " @@ -106,8 +169,8 @@ msgstr "" msgid "You and friends" msgstr "%s e amigos" -#: actions/allrss.php:119 actions/apitimelinefriends.php:122 -#: actions/apitimelinehome.php:122 +#: actions/allrss.php:119 actions/apitimelinefriends.php:119 +#: actions/apitimelinehome.php:120 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Actualizacións dende %1$s e amigos en %2$s!" @@ -117,23 +180,23 @@ msgstr "Actualizacións dende %1$s e amigos en %2$s!" #: actions/apiaccountupdateprofile.php:97 #: actions/apiaccountupdateprofilebackgroundimage.php:94 #: actions/apiaccountupdateprofilecolors.php:118 -#: 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:136 actions/apigroupismember.php:114 -#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 -#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 -#: actions/apigroupmembership.php:106 actions/apigroupshow.php:105 -#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 -#: actions/apistatusesretweets.php:112 actions/apistatusesshow.php:108 -#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93 -#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:146 -#: actions/apitimelinefriends.php:156 actions/apitimelinegroup.php:150 -#: actions/apitimelinehome.php:156 actions/apitimelinementions.php:151 -#: actions/apitimelinepublic.php:131 actions/apitimelineretweetedbyme.php:122 +#: actions/apiaccountverifycredentials.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:128 actions/apigroupcreate.php:136 +#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 +#: actions/apigroupleave.php:141 actions/apigrouplist.php:132 +#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 +#: actions/apigroupshow.php:115 actions/apihelptest.php:88 +#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 +#: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 #: actions/apitimelineretweetedtome.php:121 -#: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141 -#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 +#: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 +#: actions/apitimelineuser.php:207 actions/apiusershow.php:101 #, fuzzy msgid "API method not found." msgstr "Método da API non atopado" @@ -148,7 +211,7 @@ msgstr "Método da API non atopado" #: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 #: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 #: actions/apigroupleave.php:91 actions/apistatusesretweet.php:65 -#: actions/apistatusesupdate.php:114 +#: actions/apistatusesupdate.php:118 msgid "This method requires a POST." msgstr "Este método require un POST." @@ -179,8 +242,9 @@ msgstr "Non se puido gardar o perfil." #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:97 -#: actions/apistatusesupdate.php:127 actions/avatarsettings.php:257 -#: actions/designadminpanel.php:122 actions/newnotice.php:94 +#: actions/apistatusesupdate.php:131 actions/avatarsettings.php:257 +#: actions/designadminpanel.php:122 actions/editapplication.php:118 +#: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 #, php-format msgid "" @@ -305,12 +369,12 @@ msgstr "" "Dous identificadores de usuario ou nomes_en_pantalla deben ser " "proporcionados." -#: actions/apifriendshipsshow.php:135 +#: actions/apifriendshipsshow.php:134 #, fuzzy msgid "Could not determine source user." msgstr "Non se pudo recuperar a liña de tempo publica." -#: actions/apifriendshipsshow.php:143 +#: actions/apifriendshipsshow.php:142 #, fuzzy msgid "Could not find target user." msgstr "Non se puido atopar ningún estado" @@ -333,7 +397,8 @@ msgstr "O alcume xa está sendo empregado por outro usuario. Tenta con outro." msgid "Not a valid nickname." msgstr "Non é un alcume válido." -#: actions/apigroupcreate.php:196 actions/editgroup.php:195 +#: actions/apigroupcreate.php:196 actions/editapplication.php:215 +#: actions/editgroup.php:195 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:217 msgid "Homepage is not a valid URL." @@ -345,7 +410,8 @@ msgstr "A páxina persoal semella que non é unha URL válida." msgid "Full name is too long (max 255 chars)." msgstr "O nome completo é demasiado longo (max 255 car)." -#: actions/apigroupcreate.php:213 +#: actions/apigroupcreate.php:213 actions/editapplication.php:190 +#: actions/newapplication.php:172 #, php-format msgid "Description is too long (max %d chars)." msgstr "O teu Bio é demasiado longo (max 140 car.)." @@ -381,7 +447,7 @@ msgstr "" #: actions/apigroupismember.php:95 actions/apigroupjoin.php:104 #: actions/apigroupleave.php:104 actions/apigroupmembership.php:91 -#: actions/apigroupshow.php:90 actions/apitimelinegroup.php:91 +#: actions/apigroupshow.php:82 actions/apitimelinegroup.php:91 #, fuzzy msgid "Group not found!" msgstr "Método da API non atopado" @@ -423,6 +489,116 @@ msgstr "" msgid "groups on %s" msgstr "Outras opcions" +#: actions/apioauthauthorize.php:101 +msgid "No oauth_token parameter provided." +msgstr "" + +#: actions/apioauthauthorize.php:106 +#, fuzzy +msgid "Invalid token." +msgstr "Tamaño inválido." + +#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 +#: actions/deletenotice.php:157 actions/disfavor.php:74 +#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54 +#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupunblock.php:66 actions/imsettings.php:206 +#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 +#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 +#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135 +#: actions/othersettings.php:145 actions/passwordsettings.php:138 +#: actions/profilesettings.php:194 actions/recoverpassword.php:337 +#: actions/register.php:165 actions/remotesubscribe.php:77 +#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 +#: actions/subscribe.php:86 actions/tagother.php:166 +#: 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/apioauthauthorize.php:135 +#, fuzzy +msgid "Invalid nickname / password!" +msgstr "Usuario ou contrasinal inválidos." + +#: actions/apioauthauthorize.php:159 +#, fuzzy +msgid "Database error deleting OAuth application user." +msgstr "Acounteceu un erro configurando o usuario." + +#: actions/apioauthauthorize.php:185 +#, fuzzy +msgid "Database error inserting OAuth application user." +msgstr "Erro ó inserir o hashtag na BD: %s" + +#: actions/apioauthauthorize.php:214 +#, php-format +msgid "" +"The request token %s has been authorized. Please exchange it for an access " +"token." +msgstr "" + +#: actions/apioauthauthorize.php:227 +#, php-format +msgid "The request token %s has been denied and revoked." +msgstr "" + +#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 +#: actions/designadminpanel.php:103 actions/editapplication.php:139 +#: actions/emailsettings.php:256 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/newapplication.php:121 +#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 +#: actions/smssettings.php:248 lib/designsettings.php:304 +msgid "Unexpected form submission." +msgstr "Envio de formulario non esperada." + +#: actions/apioauthauthorize.php:259 +msgid "An application would like to connect to your account" +msgstr "" + +#: actions/apioauthauthorize.php:276 +msgid "Allow or deny access" +msgstr "" + +#: actions/apioauthauthorize.php:292 +#, php-format +msgid "" +"The application %1$s by %2$s would like " +"the ability to %3$s your %4$s account data. You should only " +"give access to your %4$s account to third parties you trust." +msgstr "" + +#: actions/apioauthauthorize.php:310 lib/action.php:441 +#, fuzzy +msgid "Account" +msgstr "Sobre" + +#: actions/apioauthauthorize.php:313 actions/login.php:230 +#: actions/profilesettings.php:106 actions/register.php:424 +#: actions/showgroup.php:236 actions/tagother.php:94 +#: actions/userauthorization.php:145 lib/groupeditform.php:152 +#: lib/userprofile.php:131 +msgid "Nickname" +msgstr "Alcume" + +#: actions/apioauthauthorize.php:316 actions/login.php:233 +#: actions/register.php:429 lib/accountsettingsaction.php:116 +msgid "Password" +msgstr "Contrasinal" + +#: actions/apioauthauthorize.php:328 +msgid "Deny" +msgstr "" + +#: actions/apioauthauthorize.php:334 +#, fuzzy +msgid "Allow" +msgstr "Todos" + +#: actions/apioauthauthorize.php:351 +msgid "Allow or deny access to your account information." +msgstr "" + #: actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." msgstr "Este método require un POST ou DELETE." @@ -455,18 +631,18 @@ msgstr "Avatar actualizado." msgid "No status with that ID found." msgstr "Non existe ningún estado con esa ID atopada." -#: actions/apistatusesupdate.php:157 actions/newnotice.php:155 +#: actions/apistatusesupdate.php:161 actions/newnotice.php:155 #: lib/mailhandler.php:60 #, 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:198 +#: actions/apistatusesupdate.php:202 msgid "Not found" msgstr "Non atopado" -#: actions/apistatusesupdate.php:221 actions/newnotice.php:178 +#: actions/apistatusesupdate.php:225 actions/newnotice.php:178 #, php-format msgid "Max notice size is %d chars, including attachment URL." msgstr "" @@ -481,7 +657,7 @@ msgstr "Formato de ficheiro de imaxe non soportado." msgid "%1$s / Favorites from %2$s" msgstr "%s / Favoritos dende %s" -#: actions/apitimelinefavorites.php:120 +#: actions/apitimelinefavorites.php:117 #, fuzzy, php-format msgid "%1$s updates favorited by %2$s / %2$s." msgstr "%s updates favorited by %s / %s." @@ -492,7 +668,7 @@ msgstr "%s updates favorited by %s / %s." msgid "%s timeline" msgstr "Liña de tempo de %s" -#: actions/apitimelinegroup.php:117 actions/apitimelineuser.php:126 +#: actions/apitimelinegroup.php:114 actions/apitimelineuser.php:126 #: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" @@ -508,27 +684,22 @@ msgstr "%1$s / Chíos que respostan a %2$s" 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/apitimelinepublic.php:107 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "Liña de tempo pública de %s" -#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "%s chíos de calquera!" -#: actions/apitimelineretweetedbyme.php:112 -#, php-format -msgid "Repeated by %s" -msgstr "" - #: actions/apitimelineretweetedtome.php:111 #, fuzzy, php-format msgid "Repeated to %s" msgstr "Replies to %s" -#: actions/apitimelineretweetsofme.php:112 +#: actions/apitimelineretweetsofme.php:114 #, fuzzy, php-format msgid "Repeats of %s" msgstr "Replies to %s" @@ -538,7 +709,7 @@ msgstr "Replies to %s" msgid "Notices tagged with %s" msgstr "Chíos tagueados con %s" -#: actions/apitimelinetag.php:108 actions/tagrss.php:64 +#: actions/apitimelinetag.php:104 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!" @@ -600,8 +771,8 @@ msgstr "" msgid "Preview" msgstr "" -#: actions/avatarsettings.php:149 lib/deleteuserform.php:66 -#: lib/noticelist.php:611 +#: actions/avatarsettings.php:149 actions/showapplication.php:252 +#: lib/deleteuserform.php:66 lib/noticelist.php:637 #, fuzzy msgid "Delete" msgstr "eliminar" @@ -614,29 +785,6 @@ msgstr "Subir" msgid "Crop" msgstr "" -#: actions/avatarsettings.php:268 actions/deletenotice.php:157 -#: actions/disfavor.php:74 actions/emailsettings.php:238 actions/favor.php:75 -#: actions/geocode.php:50 actions/groupblock.php:66 actions/grouplogo.php:309 -#: actions/groupunblock.php:66 actions/imsettings.php:206 -#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 -#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 -#: actions/othersettings.php:145 actions/passwordsettings.php:138 -#: actions/profilesettings.php:194 actions/recoverpassword.php:337 -#: actions/register.php:165 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 -#: actions/subscribe.php:46 actions/tagother.php:166 -#: 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/avatarsettings.php:281 actions/designadminpanel.php:103 -#: actions/emailsettings.php:256 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/avatarsettings.php:328 msgid "Pick a square area of the image to be your avatar" msgstr "" @@ -677,8 +825,9 @@ msgstr "" "do teur perfil, non será capaz de suscribirse a ti nun futuro, e non vas a " "ser notificado de ningunha resposta-@ del." -#: actions/block.php:143 actions/deletenotice.php:145 -#: actions/deleteuser.php:147 actions/groupblock.php:178 +#: actions/block.php:143 actions/deleteapplication.php:153 +#: actions/deletenotice.php:145 actions/deleteuser.php:147 +#: actions/groupblock.php:178 msgid "No" msgstr "No" @@ -687,13 +836,13 @@ msgstr "No" msgid "Do not block this user" msgstr "Bloquear usuario" -#: actions/block.php:144 actions/deletenotice.php:146 -#: actions/deleteuser.php:148 actions/groupblock.php:179 -#: lib/repeatform.php:132 +#: actions/block.php:144 actions/deleteapplication.php:158 +#: actions/deletenotice.php:146 actions/deleteuser.php:148 +#: actions/groupblock.php:179 lib/repeatform.php:132 msgid "Yes" msgstr "Si" -#: actions/block.php:144 actions/groupmembers.php:346 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80 #, fuzzy msgid "Block this user" msgstr "Bloquear usuario" @@ -781,7 +930,8 @@ msgid "Couldn't delete email confirmation." msgstr "Non se pode eliminar a confirmación de email." #: actions/confirmaddress.php:144 -msgid "Confirm Address" +#, fuzzy +msgid "Confirm address" msgstr "Confirmar enderezo" #: actions/confirmaddress.php:159 @@ -799,10 +949,55 @@ msgstr "Código de confirmación." msgid "Notices" msgstr "Chíos" +#: actions/deleteapplication.php:63 +#, fuzzy +msgid "You must be logged in to delete an application." +msgstr "Debes estar logueado para invitar a outros usuarios a empregar %s" + +#: actions/deleteapplication.php:71 +#, fuzzy +msgid "Application not found." +msgstr "O chío non ten perfil" + +#: actions/deleteapplication.php:78 actions/editapplication.php:77 +#: actions/showapplication.php:94 +#, fuzzy +msgid "You are not the owner of this application." +msgstr "Non estás suscrito a ese perfil" + +#: actions/deleteapplication.php:102 actions/editapplication.php:127 +#: actions/newapplication.php:110 actions/showapplication.php:118 +#: lib/action.php:1197 +#, 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/deleteapplication.php:123 actions/deleteapplication.php:147 +#, fuzzy +msgid "Delete application" +msgstr "Ningún chío." + +#: actions/deleteapplication.php:149 +msgid "" +"Are you sure you want to delete this application? This will clear all data " +"about the application from the database, including all existing user " +"connections." +msgstr "" + +#: actions/deleteapplication.php:156 +#, fuzzy +msgid "Do not delete this application" +msgstr "Non se pode eliminar este chíos." + +#: actions/deleteapplication.php:160 +#, fuzzy +msgid "Delete this application" +msgstr "Eliminar chío" + #: 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/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 #: lib/adminpanelaction.php:72 lib/profileformaction.php:63 #: lib/settingsaction.php:72 @@ -835,7 +1030,7 @@ msgstr "Estas seguro que queres eliminar este chío?" msgid "Do not delete this notice" msgstr "Non se pode eliminar este chíos." -#: actions/deletenotice.php:146 lib/noticelist.php:611 +#: actions/deletenotice.php:146 lib/noticelist.php:637 #, fuzzy msgid "Delete this notice" msgstr "Eliminar chío" @@ -977,16 +1172,6 @@ msgstr "" msgid "Reset back to default" msgstr "" -#: actions/designadminpanel.php:586 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 -#: actions/pathsadminpanel.php:324 actions/profilesettings.php:174 -#: actions/siteadminpanel.php:388 actions/smssettings.php:181 -#: actions/subscriptions.php:203 actions/tagother.php:154 -#: actions/useradminpanel.php:313 lib/designsettings.php:256 -#: lib/groupeditform.php:202 -msgid "Save" -msgstr "Gardar" - #: actions/designadminpanel.php:587 lib/designsettings.php:257 msgid "Save design" msgstr "" @@ -999,10 +1184,89 @@ msgstr "Este chío non é un favorito!" msgid "Add to favorites" msgstr "Engadir a favoritos" -#: actions/doc.php:69 -msgid "No such document." +#: actions/doc.php:158 +#, fuzzy, php-format +msgid "No such document \"%s\"" msgstr "Ningún documento." +#: actions/editapplication.php:54 +#, fuzzy +msgid "Edit Application" +msgstr "Outras opcions" + +#: actions/editapplication.php:66 +#, fuzzy +msgid "You must be logged in to edit an application." +msgstr "Debes estar logueado para invitar a outros usuarios a empregar %s" + +#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:166 +#: actions/showapplication.php:87 +#, fuzzy +msgid "No such application." +msgstr "Ningún chío." + +#: actions/editapplication.php:161 +#, fuzzy +msgid "Use this form to edit your application." +msgstr "" +"Usa este formulario para engadir etiquetas aos teus seguidores ou aos que " +"sigues." + +#: actions/editapplication.php:177 actions/newapplication.php:159 +#, fuzzy +msgid "Name is required." +msgstr "A mesma contrasinal que arriba. Requerido." + +#: actions/editapplication.php:180 actions/newapplication.php:165 +#, fuzzy +msgid "Name is too long (max 255 chars)." +msgstr "O nome completo é demasiado longo (max 255 car)." + +#: actions/editapplication.php:183 actions/newapplication.php:162 +#, fuzzy +msgid "Name already in use. Try another one." +msgstr "O alcume xa está sendo empregado por outro usuario. Tenta con outro." + +#: actions/editapplication.php:186 actions/newapplication.php:168 +#, fuzzy +msgid "Description is required." +msgstr "Subscricións" + +#: actions/editapplication.php:194 +msgid "Source URL is too long." +msgstr "" + +#: actions/editapplication.php:200 actions/newapplication.php:185 +#, fuzzy +msgid "Source URL is not valid." +msgstr "A páxina persoal semella que non é unha URL válida." + +#: actions/editapplication.php:203 actions/newapplication.php:188 +msgid "Organization is required." +msgstr "" + +#: actions/editapplication.php:206 actions/newapplication.php:191 +#, fuzzy +msgid "Organization is too long (max 255 chars)." +msgstr "A localización é demasiado longa (max 255 car.)." + +#: actions/editapplication.php:209 actions/newapplication.php:194 +msgid "Organization homepage is required." +msgstr "" + +#: actions/editapplication.php:218 actions/newapplication.php:206 +msgid "Callback is too long." +msgstr "" + +#: actions/editapplication.php:225 actions/newapplication.php:215 +msgid "Callback URL is not valid." +msgstr "" + +#: actions/editapplication.php:258 +#, fuzzy +msgid "Could not update application." +msgstr "Non se puido actualizar o usuario." + #: actions/editgroup.php:56 #, php-format msgid "Edit %s group" @@ -1033,7 +1297,7 @@ msgstr "O teu Bio é demasiado longo (max 140 car.)." msgid "Could not update group." msgstr "Non se puido actualizar o usuario." -#: actions/editgroup.php:259 classes/User_group.php:390 +#: actions/editgroup.php:259 classes/User_group.php:433 #, fuzzy msgid "Could not create aliases." msgstr "Non se puido crear o favorito." @@ -1078,7 +1342,8 @@ msgstr "" "a %s á túa lista de contactos?)" #: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 +#: actions/smssettings.php:126 lib/applicationeditform.php:331 +#: lib/applicationeditform.php:332 msgid "Cancel" msgstr "Cancelar" @@ -1160,7 +1425,7 @@ msgid "Cannot normalize that email address" msgstr "Esa dirección de correo non se pode normalizar " #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:157 +#: actions/siteadminpanel.php:143 msgid "Not a valid email address." msgstr "Non é un enderezo de correo válido." @@ -1172,7 +1437,7 @@ msgstr "Xa é o teu enderezo de correo." msgid "That email address already belongs to another user." msgstr "Este enderezo de correo xa pertence a outro usuario." -#: actions/emailsettings.php:353 actions/imsettings.php:317 +#: actions/emailsettings.php:353 actions/imsettings.php:319 #: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." msgstr "Non se puido inserir o código de confirmación." @@ -1234,7 +1499,7 @@ msgstr "Este chío xa é un favorito!" msgid "Disfavor favorite" msgstr "Desactivar favorito" -#: actions/favorited.php:65 lib/popularnoticesection.php:88 +#: actions/favorited.php:65 lib/popularnoticesection.php:91 #: lib/publicgroupnav.php:93 msgid "Popular notices" msgstr "Chíos populares" @@ -1388,7 +1653,7 @@ msgstr "O usuario bloqueoute." msgid "User is not a member of group." msgstr "%1s non é unha orixe fiable." -#: actions/groupblock.php:136 actions/groupmembers.php:314 +#: actions/groupblock.php:136 actions/groupmembers.php:316 #, fuzzy msgid "Block user from group" msgstr "Bloquear usuario" @@ -1490,23 +1755,23 @@ msgstr "" msgid "A list of the users in this group." msgstr "" -#: actions/groupmembers.php:175 lib/action.php:442 lib/groupnav.php:107 +#: actions/groupmembers.php:175 lib/action.php:448 lib/groupnav.php:107 msgid "Admin" msgstr "" -#: actions/groupmembers.php:346 lib/blockform.php:69 +#: actions/groupmembers.php:348 lib/blockform.php:69 msgid "Block" msgstr "Bloquear" -#: actions/groupmembers.php:441 +#: actions/groupmembers.php:443 msgid "Make user an admin of the group" msgstr "" -#: actions/groupmembers.php:473 +#: actions/groupmembers.php:475 msgid "Make Admin" msgstr "" -#: actions/groupmembers.php:473 +#: actions/groupmembers.php:475 msgid "Make this user an admin" msgstr "" @@ -1683,6 +1948,11 @@ msgstr "" msgid "That is not your Jabber ID." msgstr "Esa non é a túa conta Jabber." +#: actions/inbox.php:59 +#, fuzzy, php-format +msgid "Inbox for %1$s - page %2$d" +msgstr "Band. Entrada para %s" + #: actions/inbox.php:62 #, php-format msgid "Inbox for %s" @@ -1764,7 +2034,7 @@ msgstr "Mensaxe persoal" msgid "Optionally add a personal message to the invitation." msgstr "Opcionalmente engadir unha mensaxe persoal á invitación." -#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:237 +#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:236 msgid "Send" msgstr "Enviar" @@ -1866,7 +2136,7 @@ msgstr "Usuario ou contrasinal incorrectos." msgid "Error setting user. You are probably not authorized." msgstr "Non está autorizado." -#: actions/login.php:188 actions/login.php:241 lib/action.php:460 +#: actions/login.php:188 actions/login.php:241 lib/action.php:466 #: lib/logingroupnav.php:79 msgid "Login" msgstr "Inicio de sesión" @@ -1875,17 +2145,6 @@ msgstr "Inicio de sesión" msgid "Login to site" msgstr "" -#: actions/login.php:230 actions/profilesettings.php:106 -#: actions/register.php:424 actions/showgroup.php:236 actions/tagother.php:94 -#: lib/groupeditform.php:152 lib/userprofile.php:131 -msgid "Nickname" -msgstr "Alcume" - -#: actions/login.php:233 actions/register.php:429 -#: lib/accountsettingsaction.php:116 -msgid "Password" -msgstr "Contrasinal" - #: actions/login.php:236 actions/register.php:478 msgid "Remember me" msgstr "Lembrarme" @@ -1916,21 +2175,21 @@ msgstr "" "(%%action.register%%) unha nova conta, ou accede co teu enderezo [OpenID](%%" "action.openidlogin%%). " -#: actions/makeadmin.php:91 +#: actions/makeadmin.php:92 msgid "Only an admin can make another user an admin." msgstr "" -#: actions/makeadmin.php:95 +#: actions/makeadmin.php:96 #, fuzzy, php-format msgid "%1$s is already an admin for group \"%2$s\"." msgstr "O usuario bloqueoute." -#: actions/makeadmin.php:132 +#: actions/makeadmin.php:133 #, fuzzy, php-format msgid "Can't get membership record for %1$s in group %2$s." msgstr "Non podes seguir a este usuario: o Usuario non se atopa." -#: actions/makeadmin.php:145 +#: actions/makeadmin.php:146 #, fuzzy, php-format msgid "Can't make %1$s an admin for group %2$s." msgstr "O usuario bloqueoute." @@ -1939,6 +2198,29 @@ msgstr "O usuario bloqueoute." msgid "No current status" msgstr "Sen estado actual" +#: actions/newapplication.php:52 +#, fuzzy +msgid "New Application" +msgstr "Ningún chío." + +#: actions/newapplication.php:64 +#, fuzzy +msgid "You must be logged in to register an application." +msgstr "Debes estar logueado para invitar a outros usuarios a empregar %s" + +#: actions/newapplication.php:143 +msgid "Use this form to register a new application." +msgstr "" + +#: actions/newapplication.php:176 +msgid "Source URL is required." +msgstr "" + +#: actions/newapplication.php:258 actions/newapplication.php:267 +#, fuzzy +msgid "Could not create application." +msgstr "Non se puido crear o favorito." + #: actions/newgroup.php:53 msgid "New group" msgstr "" @@ -2050,6 +2332,51 @@ msgstr "Toque enviado" msgid "Nudge sent!" msgstr "Toque enviado!" +#: actions/oauthappssettings.php:59 +#, fuzzy +msgid "You must be logged in to list your applications." +msgstr "Debes estar logueado para invitar a outros usuarios a empregar %s" + +#: actions/oauthappssettings.php:74 +#, fuzzy +msgid "OAuth applications" +msgstr "Outras opcions" + +#: actions/oauthappssettings.php:85 +msgid "Applications you have registered" +msgstr "" + +#: actions/oauthappssettings.php:135 +#, php-format +msgid "You have not registered any applications yet." +msgstr "" + +#: actions/oauthconnectionssettings.php:72 +msgid "Connected applications" +msgstr "" + +#: actions/oauthconnectionssettings.php:83 +msgid "You have allowed the following applications to access you account." +msgstr "" + +#: actions/oauthconnectionssettings.php:175 +#, fuzzy +msgid "You are not a user of that application." +msgstr "Non estás suscrito a ese perfil" + +#: actions/oauthconnectionssettings.php:186 +msgid "Unable to revoke access for app: " +msgstr "" + +#: actions/oauthconnectionssettings.php:198 +#, php-format +msgid "You have not authorized any applications to use your account." +msgstr "" + +#: actions/oauthconnectionssettings.php:211 +msgid "Developers can edit the registration settings for their applications " +msgstr "" + #: actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" msgstr "O chío non ten perfil" @@ -2068,8 +2395,8 @@ msgstr "Conectar" msgid "Only " msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1033 -#: lib/api.php:1061 lib/api.php:1171 +#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 +#: lib/api.php:1068 lib/api.php:1177 msgid "Not a supported data format." msgstr "Non é un formato de datos soportado." @@ -2082,7 +2409,8 @@ msgid "Notice Search" msgstr "Procura de Chíos" #: actions/othersettings.php:60 -msgid "Other Settings" +#, fuzzy +msgid "Other settings" msgstr "Outros axustes" #: actions/othersettings.php:71 @@ -2138,6 +2466,11 @@ msgstr "Contido do chío inválido" msgid "Login token expired." msgstr "" +#: actions/outbox.php:58 +#, fuzzy, php-format +msgid "Outbox for %1$s - page %2$d" +msgstr "Band. Saída para %s" + #: actions/outbox.php:61 #, php-format msgid "Outbox for %s" @@ -2211,7 +2544,7 @@ msgstr "Non se pode gardar a contrasinal." msgid "Password saved." msgstr "Contrasinal gardada." -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:326 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:331 msgid "Paths" msgstr "" @@ -2219,142 +2552,159 @@ msgstr "" msgid "Path and server settings for this StatusNet site." msgstr "" -#: actions/pathsadminpanel.php:140 +#: actions/pathsadminpanel.php:157 #, fuzzy, php-format msgid "Theme directory not readable: %s" msgstr "Esta páxina non está dispoñíbel no tipo de medio que aceptas" -#: actions/pathsadminpanel.php:146 +#: actions/pathsadminpanel.php:163 #, php-format msgid "Avatar directory not writable: %s" msgstr "" -#: actions/pathsadminpanel.php:152 +#: actions/pathsadminpanel.php:169 #, php-format msgid "Background directory not writable: %s" msgstr "" -#: actions/pathsadminpanel.php:160 +#: actions/pathsadminpanel.php:177 #, php-format msgid "Locales directory not readable: %s" msgstr "" -#: actions/pathsadminpanel.php:166 +#: actions/pathsadminpanel.php:183 msgid "Invalid SSL server. The maximum length is 255 characters." msgstr "" -#: actions/pathsadminpanel.php:217 actions/siteadminpanel.php:58 +#: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58 #: lib/adminpanelaction.php:311 #, fuzzy msgid "Site" msgstr "Invitar" -#: actions/pathsadminpanel.php:221 +#: actions/pathsadminpanel.php:238 +#, fuzzy +msgid "Server" +msgstr "Recuperar" + +#: actions/pathsadminpanel.php:238 +msgid "Site's server hostname." +msgstr "" + +#: actions/pathsadminpanel.php:242 msgid "Path" msgstr "" -#: actions/pathsadminpanel.php:221 +#: actions/pathsadminpanel.php:242 #, fuzzy msgid "Site path" msgstr "Novo chío" -#: actions/pathsadminpanel.php:225 +#: actions/pathsadminpanel.php:246 msgid "Path to locales" msgstr "" -#: actions/pathsadminpanel.php:225 +#: actions/pathsadminpanel.php:246 msgid "Directory path to locales" msgstr "" -#: actions/pathsadminpanel.php:232 -msgid "Theme" -msgstr "" - -#: actions/pathsadminpanel.php:237 -msgid "Theme server" -msgstr "" - -#: actions/pathsadminpanel.php:241 -msgid "Theme path" -msgstr "" - -#: actions/pathsadminpanel.php:245 -msgid "Theme directory" +#: actions/pathsadminpanel.php:250 +msgid "Fancy URLs" msgstr "" #: actions/pathsadminpanel.php:252 +msgid "Use fancy (more readable and memorable) URLs?" +msgstr "" + +#: actions/pathsadminpanel.php:259 +msgid "Theme" +msgstr "" + +#: actions/pathsadminpanel.php:264 +msgid "Theme server" +msgstr "" + +#: actions/pathsadminpanel.php:268 +msgid "Theme path" +msgstr "" + +#: actions/pathsadminpanel.php:272 +msgid "Theme directory" +msgstr "" + +#: actions/pathsadminpanel.php:279 #, fuzzy msgid "Avatars" msgstr "Avatar" -#: actions/pathsadminpanel.php:257 +#: actions/pathsadminpanel.php:284 #, fuzzy msgid "Avatar server" msgstr "Configuracións de Twitter" -#: actions/pathsadminpanel.php:261 +#: actions/pathsadminpanel.php:288 #, fuzzy msgid "Avatar path" msgstr "Avatar actualizado." -#: actions/pathsadminpanel.php:265 +#: actions/pathsadminpanel.php:292 #, fuzzy msgid "Avatar directory" msgstr "Avatar actualizado." -#: actions/pathsadminpanel.php:274 +#: actions/pathsadminpanel.php:301 msgid "Backgrounds" msgstr "" -#: actions/pathsadminpanel.php:278 +#: actions/pathsadminpanel.php:305 msgid "Background server" msgstr "" -#: actions/pathsadminpanel.php:282 +#: actions/pathsadminpanel.php:309 msgid "Background path" msgstr "" -#: actions/pathsadminpanel.php:286 +#: actions/pathsadminpanel.php:313 msgid "Background directory" msgstr "" -#: actions/pathsadminpanel.php:293 +#: actions/pathsadminpanel.php:320 #, fuzzy msgid "SSL" msgstr "SMS" -#: actions/pathsadminpanel.php:296 actions/siteadminpanel.php:346 +#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 #, fuzzy msgid "Never" msgstr "Recuperar" -#: actions/pathsadminpanel.php:297 +#: actions/pathsadminpanel.php:324 #, fuzzy msgid "Sometimes" msgstr "Chíos" -#: actions/pathsadminpanel.php:298 +#: actions/pathsadminpanel.php:325 msgid "Always" msgstr "" -#: actions/pathsadminpanel.php:302 +#: actions/pathsadminpanel.php:329 msgid "Use SSL" msgstr "" -#: actions/pathsadminpanel.php:303 +#: actions/pathsadminpanel.php:330 msgid "When to use SSL" msgstr "" -#: actions/pathsadminpanel.php:308 +#: actions/pathsadminpanel.php:335 #, fuzzy msgid "SSL server" msgstr "Recuperar" -#: actions/pathsadminpanel.php:309 +#: actions/pathsadminpanel.php:336 msgid "Server to direct SSL requests to" msgstr "" -#: actions/pathsadminpanel.php:325 +#: actions/pathsadminpanel.php:352 #, fuzzy msgid "Save paths" msgstr "Novo chío" @@ -2419,7 +2769,7 @@ msgid "Full name" msgstr "Nome completo" #: actions/profilesettings.php:115 actions/register.php:453 -#: lib/groupeditform.php:161 +#: lib/applicationeditform.php:228 lib/groupeditform.php:161 msgid "Homepage" msgstr "Páxina persoal" @@ -2443,7 +2793,7 @@ msgstr "Bio" #: actions/profilesettings.php:132 actions/register.php:471 #: actions/showgroup.php:256 actions/tagother.php:112 -#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:164 msgid "Location" msgstr "Localización" @@ -2469,7 +2819,7 @@ msgstr "" "Etiquetas para o teu usuario (letras, números, -, ., e _), separados por " "coma ou espazo" -#: actions/profilesettings.php:151 actions/siteadminpanel.php:294 +#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 msgid "Language" msgstr "Linguaxe" @@ -2497,7 +2847,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "O teu Bio é demasiado longo (max 140 car.)." -#: actions/profilesettings.php:235 actions/siteadminpanel.php:164 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 msgid "Timezone not selected." msgstr "Fuso Horario non seleccionado" @@ -2510,24 +2860,24 @@ msgstr "A Linguaxe é demasiado longa (max 50 car.)." msgid "Invalid tag: \"%s\"" msgstr "Etiqueta inválida: '%s'" -#: actions/profilesettings.php:302 +#: actions/profilesettings.php:306 msgid "Couldn't update user for autosubscribe." msgstr "Non se puido actualizar o usuario para autosuscrición." -#: actions/profilesettings.php:359 +#: actions/profilesettings.php:363 #, fuzzy msgid "Couldn't save location prefs." msgstr "Non se puideron gardar as etiquetas." -#: actions/profilesettings.php:371 +#: actions/profilesettings.php:375 msgid "Couldn't save profile." msgstr "Non se puido gardar o perfil." -#: actions/profilesettings.php:379 +#: actions/profilesettings.php:383 msgid "Couldn't save tags." msgstr "Non se puideron gardar as etiquetas." -#: actions/profilesettings.php:387 lib/adminpanelaction.php:137 +#: actions/profilesettings.php:391 lib/adminpanelaction.php:137 msgid "Settings saved." msgstr "Configuracións gardadas." @@ -2549,39 +2899,39 @@ msgstr "Liña de tempo pública" msgid "Public timeline" msgstr "Liña de tempo pública" -#: actions/public.php:151 +#: actions/public.php:159 #, fuzzy msgid "Public Stream Feed (RSS 1.0)" msgstr "Sindicación do Fio Público" -#: actions/public.php:155 +#: actions/public.php:163 #, fuzzy msgid "Public Stream Feed (RSS 2.0)" msgstr "Sindicación do Fio Público" -#: actions/public.php:159 +#: actions/public.php:167 #, fuzzy msgid "Public Stream Feed (Atom)" msgstr "Sindicación do Fio Público" -#: actions/public.php:179 +#: actions/public.php:187 #, php-format msgid "" "This is the public timeline for %%site.name%% but no one has posted anything " "yet." msgstr "" -#: actions/public.php:182 +#: actions/public.php:190 msgid "Be the first to post!" msgstr "" -#: actions/public.php:186 +#: actions/public.php:194 #, php-format msgid "" "Why not [register an account](%%action.register%%) and be the first to post!" msgstr "" -#: actions/public.php:233 +#: actions/public.php:241 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2594,7 +2944,7 @@ msgstr "" "(http://status.net/). [Únete agora](%%action.register%%) para compartir " "chíos cos teus amigos, colegas e familia! ([Ler mais](%%doc.help%%))" -#: actions/public.php:238 +#: actions/public.php:246 #, fuzzy, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2632,7 +2982,7 @@ msgid "" "one!" msgstr "" -#: actions/publictagcloud.php:131 +#: actions/publictagcloud.php:134 msgid "Tag cloud" msgstr "" @@ -2771,7 +3121,7 @@ msgstr "Acounteceu un erro co código de confirmación." msgid "Registration successful" msgstr "Xa estas rexistrado!!" -#: actions/register.php:114 actions/register.php:503 lib/action.php:457 +#: actions/register.php:114 actions/register.php:503 lib/action.php:463 #: lib/logingroupnav.php:85 msgid "Register" msgstr "Rexistrar" @@ -2817,7 +3167,7 @@ msgid "Same as password above. Required." msgstr "A mesma contrasinal que arriba. Requerido." #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:270 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 msgid "Email" msgstr "Correo Electrónico" @@ -2925,7 +3275,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "Enderezo do teu perfil en outro servizo de microblogaxe compatíbel" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:365 +#: lib/userprofile.php:368 msgid "Subscribe" msgstr "Subscribir" @@ -2968,7 +3318,7 @@ msgstr "Non podes rexistrarte se non estas de acordo coa licenza." msgid "You already repeated that notice." msgstr "Xa bloqueaches a este usuario." -#: actions/repeat.php:114 lib/noticelist.php:629 +#: actions/repeat.php:114 lib/noticelist.php:656 #, fuzzy msgid "Repeated" msgstr "Crear" @@ -2984,6 +3334,11 @@ msgstr "Crear" msgid "Replies to %s" msgstr "Replies to %s" +#: actions/replies.php:127 +#, fuzzy, php-format +msgid "Replies to %1$s, page %2$d" +msgstr "Mensaxe de %1$s en %2$s" + #: actions/replies.php:144 #, fuzzy, php-format msgid "Replies feed for %s (RSS 1.0)" @@ -3025,6 +3380,11 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "Mensaxe de %1$s en %2$s" +#: actions/rsd.php:146 actions/version.php:157 +#, fuzzy +msgid "StatusNet" +msgstr "Avatar actualizado." + #: actions/sandbox.php:65 actions/unsandbox.php:65 #, fuzzy msgid "You cannot sandbox users on this site." @@ -3035,6 +3395,126 @@ msgstr "Non podes enviar mensaxes a este usurio." msgid "User is already sandboxed." msgstr "O usuario bloqueoute." +#: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:336 +msgid "Sessions" +msgstr "" + +#: actions/sessionsadminpanel.php:65 +msgid "Session settings for this StatusNet site." +msgstr "" + +#: actions/sessionsadminpanel.php:175 +msgid "Handle sessions" +msgstr "" + +#: actions/sessionsadminpanel.php:177 +msgid "Whether to handle sessions ourselves." +msgstr "" + +#: actions/sessionsadminpanel.php:181 +msgid "Session debugging" +msgstr "" + +#: actions/sessionsadminpanel.php:183 +msgid "Turn on debugging output for sessions." +msgstr "" + +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/useradminpanel.php:293 +#, fuzzy +msgid "Save site settings" +msgstr "Configuracións de Twitter" + +#: actions/showapplication.php:82 +#, fuzzy +msgid "You must be logged in to view an application." +msgstr "Debes estar logueado para invitar a outros usuarios a empregar %s" + +#: actions/showapplication.php:157 +#, fuzzy +msgid "Application profile" +msgstr "O chío non ten perfil" + +#: actions/showapplication.php:159 lib/applicationeditform.php:180 +msgid "Icon" +msgstr "" + +#: actions/showapplication.php:169 actions/version.php:195 +#: lib/applicationeditform.php:195 +#, fuzzy +msgid "Name" +msgstr "Alcume" + +#: actions/showapplication.php:178 lib/applicationeditform.php:222 +#, fuzzy +msgid "Organization" +msgstr "Invitación(s) enviada(s)." + +#: actions/showapplication.php:187 actions/version.php:198 +#: lib/applicationeditform.php:209 lib/groupeditform.php:172 +#, fuzzy +msgid "Description" +msgstr "Subscricións" + +#: actions/showapplication.php:192 actions/showgroup.php:429 +#: lib/profileaction.php:174 +msgid "Statistics" +msgstr "Estatísticas" + +#: actions/showapplication.php:203 +#, php-format +msgid "Created by %1$s - %2$s access by default - %3$d users" +msgstr "" + +#: actions/showapplication.php:213 +msgid "Application actions" +msgstr "" + +#: actions/showapplication.php:236 +msgid "Reset key & secret" +msgstr "" + +#: actions/showapplication.php:261 +msgid "Application info" +msgstr "" + +#: actions/showapplication.php:263 +msgid "Consumer key" +msgstr "" + +#: actions/showapplication.php:268 +msgid "Consumer secret" +msgstr "" + +#: actions/showapplication.php:273 +msgid "Request token URL" +msgstr "" + +#: actions/showapplication.php:278 +msgid "Access token URL" +msgstr "" + +#: actions/showapplication.php:283 +msgid "Authorize URL" +msgstr "" + +#: actions/showapplication.php:288 +msgid "" +"Note: We support HMAC-SHA1 signatures. We do not support the plaintext " +"signature method." +msgstr "" + +#: actions/showapplication.php:309 +#, fuzzy +msgid "Are you sure you want to reset your consumer key and secret?" +msgstr "Estas seguro que queres eliminar este chío?" + +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%1$s's favorite notices, page %2$d" +msgstr "Chíos favoritos de %s" + #: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "Non se pode " @@ -3084,18 +3564,23 @@ msgstr "" msgid "%s group" msgstr "" +#: actions/showgroup.php:84 +#, fuzzy, php-format +msgid "%1$s group, page %2$d" +msgstr "Tódalas subscricións" + #: actions/showgroup.php:218 #, fuzzy msgid "Group profile" msgstr "Non existe o perfil." #: actions/showgroup.php:263 actions/tagother.php:118 -#: actions/userauthorization.php:167 lib/userprofile.php:177 +#: actions/userauthorization.php:175 lib/userprofile.php:177 msgid "URL" msgstr "" #: actions/showgroup.php:274 actions/tagother.php:128 -#: actions/userauthorization.php:179 lib/userprofile.php:194 +#: actions/userauthorization.php:187 lib/userprofile.php:194 #, fuzzy msgid "Note" msgstr "Chíos" @@ -3145,10 +3630,6 @@ msgstr "(nada)" msgid "All members" msgstr "" -#: actions/showgroup.php:429 lib/profileaction.php:174 -msgid "Statistics" -msgstr "Estatísticas" - #: actions/showgroup.php:432 #, fuzzy msgid "Created" @@ -3213,6 +3694,11 @@ msgstr "Chío publicado" msgid " tagged %s" msgstr "Chíos tagueados con %s" +#: actions/showstream.php:79 +#, fuzzy, php-format +msgid "%1$s, page %2$d" +msgstr "%s e amigos" + #: actions/showstream.php:122 #, fuzzy, php-format msgid "Notice feed for %1$s tagged %2$s (RSS 1.0)" @@ -3238,25 +3724,25 @@ msgstr "Fonte de chíos para %s" msgid "FOAF for %s" msgstr "Band. Saída para %s" -#: actions/showstream.php:191 +#: actions/showstream.php:200 #, php-format msgid "This is the timeline for %1$s but %2$s hasn't posted anything yet." msgstr "" -#: actions/showstream.php:196 +#: actions/showstream.php:205 msgid "" "Seen anything interesting recently? You haven't posted any notices yet, now " "would be a good time to start :)" msgstr "" -#: actions/showstream.php:198 +#: actions/showstream.php:207 #, php-format msgid "" "You can try to nudge %1$s or [post something to his or her attention](%%%%" "action.newnotice%%%%?status_textarea=%2$s)." msgstr "" -#: actions/showstream.php:234 +#: actions/showstream.php:243 #, fuzzy, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3269,7 +3755,7 @@ msgstr "" "(http://status.net/). [Únete agora](%%action.register%%) para compartir " "chíos cos teus amigos, colegas e familia! ([Ler mais](%%doc.help%%))" -#: actions/showstream.php:239 +#: actions/showstream.php:248 #, fuzzy, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3281,7 +3767,7 @@ msgstr "" "(http://status.net/). [Únete agora](%%action.register%%) para compartir " "chíos cos teus amigos, colegas e familia! ([Ler mais](%%doc.help%%))" -#: actions/showstream.php:313 +#: actions/showstream.php:305 #, fuzzy, php-format msgid "Repeat of %s" msgstr "Replies to %s" @@ -3300,206 +3786,148 @@ msgstr "O usuario bloqueoute." msgid "Basic settings for this StatusNet site." msgstr "" -#: actions/siteadminpanel.php:146 +#: actions/siteadminpanel.php:132 msgid "Site name must have non-zero length." msgstr "" -#: actions/siteadminpanel.php:154 +#: actions/siteadminpanel.php:140 #, fuzzy msgid "You must have a valid contact email address." msgstr "Non é unha dirección de correo válida" -#: actions/siteadminpanel.php:172 +#: actions/siteadminpanel.php:158 #, php-format msgid "Unknown language \"%s\"." msgstr "" -#: actions/siteadminpanel.php:179 +#: actions/siteadminpanel.php:165 msgid "Invalid snapshot report URL." msgstr "" -#: actions/siteadminpanel.php:185 +#: actions/siteadminpanel.php:171 msgid "Invalid snapshot run value." msgstr "" -#: actions/siteadminpanel.php:191 +#: actions/siteadminpanel.php:177 msgid "Snapshot frequency must be a number." msgstr "" -#: actions/siteadminpanel.php:197 +#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "" -#: actions/siteadminpanel.php:203 +#: actions/siteadminpanel.php:189 msgid "Dupe limit must 1 or more seconds." msgstr "" -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:239 msgid "General" msgstr "" -#: actions/siteadminpanel.php:256 +#: actions/siteadminpanel.php:242 #, fuzzy msgid "Site name" msgstr "Novo chío" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:243 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "" -#: actions/siteadminpanel.php:261 +#: actions/siteadminpanel.php:247 msgid "Brought by" msgstr "" -#: actions/siteadminpanel.php:262 +#: actions/siteadminpanel.php:248 msgid "Text used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:266 +#: actions/siteadminpanel.php:252 msgid "Brought by URL" msgstr "" -#: actions/siteadminpanel.php:267 +#: actions/siteadminpanel.php:253 msgid "URL used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:271 +#: actions/siteadminpanel.php:257 #, fuzzy msgid "Contact email address for your site" msgstr "Nova dirección de email para posterar en %s" -#: actions/siteadminpanel.php:277 +#: actions/siteadminpanel.php:263 #, fuzzy msgid "Local" msgstr "Localización" -#: actions/siteadminpanel.php:288 +#: actions/siteadminpanel.php:274 msgid "Default timezone" msgstr "" -#: actions/siteadminpanel.php:289 +#: actions/siteadminpanel.php:275 msgid "Default timezone for the site; usually UTC." msgstr "" -#: actions/siteadminpanel.php:295 +#: actions/siteadminpanel.php:281 #, fuzzy msgid "Default site language" msgstr "Linguaxe preferida" -#: actions/siteadminpanel.php:303 -msgid "URLs" -msgstr "" - -#: actions/siteadminpanel.php:306 -#, fuzzy -msgid "Server" -msgstr "Recuperar" - -#: actions/siteadminpanel.php:306 -msgid "Site's server hostname." -msgstr "" - -#: actions/siteadminpanel.php:310 -msgid "Fancy URLs" -msgstr "" - -#: actions/siteadminpanel.php:312 -msgid "Use fancy (more readable and memorable) URLs?" -msgstr "" - -#: actions/siteadminpanel.php:318 -#, fuzzy -msgid "Access" -msgstr "Aceptar" - -#: actions/siteadminpanel.php:321 -#, fuzzy -msgid "Private" -msgstr "Privacidade" - -#: actions/siteadminpanel.php:323 -msgid "Prohibit anonymous users (not logged in) from viewing site?" -msgstr "" - -#: actions/siteadminpanel.php:327 -#, fuzzy -msgid "Invite only" -msgstr "Invitar" - -#: actions/siteadminpanel.php:329 -msgid "Make registration invitation only." -msgstr "" - -#: actions/siteadminpanel.php:333 -#, fuzzy -msgid "Closed" -msgstr "Bloquear" - -#: actions/siteadminpanel.php:335 -msgid "Disable new registrations." -msgstr "" - -#: actions/siteadminpanel.php:341 +#: actions/siteadminpanel.php:289 msgid "Snapshots" msgstr "" -#: actions/siteadminpanel.php:344 +#: actions/siteadminpanel.php:292 msgid "Randomly during Web hit" msgstr "" -#: actions/siteadminpanel.php:345 +#: actions/siteadminpanel.php:293 msgid "In a scheduled job" msgstr "" -#: actions/siteadminpanel.php:347 +#: actions/siteadminpanel.php:295 msgid "Data snapshots" msgstr "" -#: actions/siteadminpanel.php:348 +#: actions/siteadminpanel.php:296 msgid "When to send statistical data to status.net servers" msgstr "" -#: actions/siteadminpanel.php:353 +#: actions/siteadminpanel.php:301 msgid "Frequency" msgstr "" -#: actions/siteadminpanel.php:354 +#: actions/siteadminpanel.php:302 msgid "Snapshots will be sent once every N web hits" msgstr "" -#: actions/siteadminpanel.php:359 +#: actions/siteadminpanel.php:307 msgid "Report URL" msgstr "" -#: actions/siteadminpanel.php:360 +#: actions/siteadminpanel.php:308 msgid "Snapshots will be sent to this URL" msgstr "" -#: actions/siteadminpanel.php:367 +#: actions/siteadminpanel.php:315 msgid "Limits" msgstr "" -#: actions/siteadminpanel.php:370 +#: actions/siteadminpanel.php:318 msgid "Text limit" msgstr "" -#: actions/siteadminpanel.php:370 +#: actions/siteadminpanel.php:318 msgid "Maximum number of characters for notices." msgstr "" -#: actions/siteadminpanel.php:374 +#: actions/siteadminpanel.php:322 msgid "Dupe limit" msgstr "" -#: actions/siteadminpanel.php:374 +#: actions/siteadminpanel.php:322 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" -#: actions/siteadminpanel.php:388 actions/useradminpanel.php:313 -#, fuzzy -msgid "Save site settings" -msgstr "Configuracións de Twitter" - #: actions/smssettings.php:58 #, fuzzy msgid "SMS settings" @@ -3607,15 +4035,26 @@ msgstr "Non se inseriu ningún código" msgid "You are not subscribed to that profile." msgstr "Non estás suscrito a ese perfil" -#: actions/subedit.php:83 +#: actions/subedit.php:83 classes/Subscription.php:89 +#: classes/Subscription.php:116 msgid "Could not save subscription." msgstr "Non se pode gardar a subscrición." -#: actions/subscribe.php:55 -msgid "Not a local user." -msgstr "Non é usuario local." +#: actions/subscribe.php:77 +msgid "This action only accepts POST requests." +msgstr "" -#: actions/subscribe.php:69 +#: actions/subscribe.php:107 +#, fuzzy +msgid "No such profile." +msgstr "Ningún chío." + +#: actions/subscribe.php:117 +#, fuzzy +msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." +msgstr "Non estás suscrito a ese perfil" + +#: actions/subscribe.php:145 msgid "Subscribed" msgstr "Suscrito" @@ -3675,7 +4114,7 @@ msgstr "Esa é a xente á que lle estas a escoitar os seus chíos" 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:121 +#: actions/subscriptions.php:126 #, php-format msgid "" "You're not listening to anyone's notices right now, try subscribing to " @@ -3685,19 +4124,24 @@ msgid "" "automatically subscribe to people you already follow there." msgstr "" -#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#: actions/subscriptions.php:128 actions/subscriptions.php:132 #, fuzzy, php-format msgid "%s is not listening to anyone." msgstr "%1$s está a escoitar os teus chíos %2$s." -#: actions/subscriptions.php:194 +#: actions/subscriptions.php:199 msgid "Jabber" msgstr "Jabber." -#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:204 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "SMS" +#: actions/tag.php:68 +#, fuzzy, php-format +msgid "Notices tagged with %1$s, page %2$d" +msgstr "Usuarios auto-etiquetados como %s - páxina %d" + #: actions/tag.php:86 #, fuzzy, php-format msgid "Notice feed for tag %s (RSS 1.0)" @@ -3728,7 +4172,8 @@ msgstr "Tags" msgid "User profile" msgstr "O usuario non ten perfil." -#: actions/tagother.php:81 lib/userprofile.php:102 +#: actions/tagother.php:81 actions/userauthorization.php:132 +#: lib/userprofile.php:102 msgid "Photo" msgstr "" @@ -3793,7 +4238,7 @@ msgstr "Non hai identificador de perfil na peticion." msgid "Unsubscribed" msgstr "De-suscribido" -#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#: actions/updateprofile.php:62 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -3808,91 +4253,71 @@ msgstr "Usuario" msgid "User settings for this StatusNet site." msgstr "" -#: actions/useradminpanel.php:149 +#: actions/useradminpanel.php:148 msgid "Invalid bio limit. Must be numeric." msgstr "" -#: actions/useradminpanel.php:155 +#: actions/useradminpanel.php:154 msgid "Invalid welcome text. Max length is 255 characters." msgstr "" -#: actions/useradminpanel.php:165 +#: actions/useradminpanel.php:164 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 +#: actions/useradminpanel.php:217 lib/accountsettingsaction.php:108 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Perfil" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:221 msgid "Bio Limit" msgstr "" -#: actions/useradminpanel.php:223 +#: actions/useradminpanel.php:222 msgid "Maximum length of a profile bio in characters." msgstr "" -#: actions/useradminpanel.php:231 +#: actions/useradminpanel.php:230 #, fuzzy msgid "New users" msgstr "Invitar a novos usuarios" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:234 msgid "New user welcome" msgstr "" -#: actions/useradminpanel.php:236 +#: actions/useradminpanel.php:235 msgid "Welcome text for new users (Max 255 chars)." msgstr "" -#: actions/useradminpanel.php:241 +#: actions/useradminpanel.php:240 #, fuzzy msgid "Default subscription" msgstr "Tódalas subscricións" -#: actions/useradminpanel.php:242 +#: actions/useradminpanel.php:241 #, fuzzy msgid "Automatically subscribe new users to this user." msgstr "" "Suscribirse automáticamente a calquera que se suscriba a min (o mellor para " "non humáns)" -#: actions/useradminpanel.php:251 +#: actions/useradminpanel.php:250 #, fuzzy msgid "Invitations" msgstr "Invitación(s) enviada(s)." -#: actions/useradminpanel.php:256 +#: actions/useradminpanel.php:255 #, fuzzy msgid "Invitations enabled" msgstr "Invitación(s) enviada(s)." -#: actions/useradminpanel.php:258 +#: actions/useradminpanel.php:257 msgid "Whether to allow users to invite new users." msgstr "" -#: actions/useradminpanel.php:265 -msgid "Sessions" -msgstr "" - -#: actions/useradminpanel.php:270 -msgid "Handle sessions" -msgstr "" - -#: actions/useradminpanel.php:272 -msgid "Whether to handle sessions ourselves." -msgstr "" - -#: actions/useradminpanel.php:276 -msgid "Session debugging" -msgstr "" - -#: actions/useradminpanel.php:278 -msgid "Turn on debugging output for sessions." -msgstr "" - #: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Subscrición de autorización." @@ -3908,38 +4333,38 @@ msgstr "" "user's notices. If you didn't just ask to subscribe to someone's notices, " "click \"Cancel\"." -#: actions/userauthorization.php:188 actions/version.php:165 +#: actions/userauthorization.php:196 actions/version.php:165 msgid "License" msgstr "" -#: actions/userauthorization.php:209 +#: actions/userauthorization.php:217 msgid "Accept" msgstr "Aceptar" -#: actions/userauthorization.php:210 lib/subscribeform.php:115 +#: actions/userauthorization.php:218 lib/subscribeform.php:115 #: lib/subscribeform.php:139 #, fuzzy msgid "Subscribe to this user" msgstr "Suscrito a %s" -#: actions/userauthorization.php:211 +#: actions/userauthorization.php:219 msgid "Reject" msgstr "Rexeitar" -#: actions/userauthorization.php:212 +#: actions/userauthorization.php:220 #, fuzzy msgid "Reject this subscription" msgstr "Subscrición de autorización." -#: actions/userauthorization.php:225 +#: actions/userauthorization.php:232 msgid "No authorization request!" msgstr "Sen petición de autorización!" -#: actions/userauthorization.php:247 +#: actions/userauthorization.php:254 msgid "Subscription authorized" msgstr "Subscrición autorizada" -#: actions/userauthorization.php:249 +#: actions/userauthorization.php:256 #, fuzzy msgid "" "The subscription has been authorized, but no callback URL was passed. Check " @@ -3950,11 +4375,11 @@ msgstr "" "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:259 +#: actions/userauthorization.php:266 msgid "Subscription rejected" msgstr "Subscrición rexeitada" -#: actions/userauthorization.php:261 +#: actions/userauthorization.php:268 #, fuzzy msgid "" "The subscription has been rejected, but no callback URL was passed. Check " @@ -3965,37 +4390,37 @@ msgstr "" "with the site's instructions for details on how to fully reject the " "subscription." -#: actions/userauthorization.php:296 +#: actions/userauthorization.php:303 #, php-format msgid "Listener URI ‘%s’ not found here." msgstr "" -#: actions/userauthorization.php:301 +#: actions/userauthorization.php:308 #, php-format msgid "Listenee URI ‘%s’ is too long." msgstr "" -#: actions/userauthorization.php:307 +#: actions/userauthorization.php:314 #, php-format msgid "Listenee URI ‘%s’ is a local user." msgstr "" -#: actions/userauthorization.php:322 +#: actions/userauthorization.php:329 #, php-format msgid "Profile URL ‘%s’ is for a local user." msgstr "" -#: actions/userauthorization.php:338 +#: actions/userauthorization.php:345 #, php-format msgid "Avatar URL ‘%s’ is not valid." msgstr "" -#: actions/userauthorization.php:343 +#: actions/userauthorization.php:350 #, 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 +#: actions/userauthorization.php:355 #, fuzzy, php-format msgid "Wrong image type for avatar URL ‘%s’." msgstr "Tipo de imaxe incorrecto para '%s'" @@ -4015,6 +4440,11 @@ msgstr "" msgid "Enjoy your hotdog!" msgstr "" +#: actions/usergroups.php:64 +#, fuzzy, php-format +msgid "%1$s groups, page %2$d" +msgstr "Tódalas subscricións" + #: actions/usergroups.php:130 msgid "Search for more groups" msgstr "" @@ -4041,11 +4471,6 @@ msgid "" "Inc. and contributors." msgstr "" -#: actions/version.php:157 -#, fuzzy -msgid "StatusNet" -msgstr "Avatar actualizado." - #: actions/version.php:161 msgid "Contributors" msgstr "" @@ -4077,12 +4502,7 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:195 -#, fuzzy -msgid "Name" -msgstr "Alcume" - -#: actions/version.php:196 lib/action.php:741 +#: actions/version.php:196 lib/action.php:747 #, fuzzy msgid "Version" msgstr "Persoal" @@ -4091,11 +4511,6 @@ msgstr "Persoal" msgid "Author(s)" msgstr "" -#: actions/version.php:198 lib/groupeditform.php:172 -#, fuzzy -msgid "Description" -msgstr "Subscricións" - #: classes/File.php:144 #, php-format msgid "" @@ -4146,28 +4561,28 @@ msgstr "Non se pode inserir unha mensaxe." msgid "Could not update message with new URI." msgstr "Non se puido actualizar a mensaxe coa nova URI." -#: classes/Notice.php:171 +#: classes/Notice.php:157 #, php-format msgid "DB error inserting hashtag: %s" msgstr "Erro ó inserir o hashtag na BD: %s" -#: classes/Notice.php:225 +#: classes/Notice.php:222 #, fuzzy msgid "Problem saving notice. Too long." msgstr "Aconteceu un erro ó gardar o chío." -#: classes/Notice.php:229 +#: classes/Notice.php:226 msgid "Problem saving notice. Unknown user." msgstr "Aconteceu un erro ó gardar o chío. Usuario descoñecido." -#: classes/Notice.php:234 +#: classes/Notice.php:231 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." -#: classes/Notice.php:240 +#: classes/Notice.php:237 #, fuzzy msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " @@ -4176,35 +4591,62 @@ msgstr "" "Demasiados chíos en pouco tempo; tomate un respiro e envíao de novo dentro " "duns minutos." -#: classes/Notice.php:246 +#: classes/Notice.php:243 msgid "You are banned from posting notices on this site." msgstr "Tes restrinxido o envio de chíos neste sitio." -#: classes/Notice.php:305 classes/Notice.php:330 +#: classes/Notice.php:309 classes/Notice.php:335 msgid "Problem saving notice." msgstr "Aconteceu un erro ó gardar o chío." -#: classes/Notice.php:1052 -#, php-format -msgid "DB error inserting reply: %s" -msgstr "Erro ó inserir a contestación na BD: %s" +#: classes/Notice.php:882 +#, fuzzy +msgid "Problem saving group inbox." +msgstr "Aconteceu un erro ó gardar o chío." -#: classes/Notice.php:1423 +#: classes/Notice.php:1407 #, fuzzy, php-format msgid "RT @%1$s %2$s" msgstr "%1$s (%2$s)" -#: classes/User.php:382 +#: classes/Subscription.php:66 lib/oauthstore.php:465 +#, fuzzy +msgid "You have been banned from subscribing." +msgstr "Este usuario non che permite suscribirte a el." + +#: classes/Subscription.php:70 +msgid "Already subscribed!" +msgstr "" + +#: classes/Subscription.php:74 +msgid "User has blocked you." +msgstr "O usuario bloqueoute." + +#: classes/Subscription.php:157 +#, fuzzy +msgid "Not subscribed!" +msgstr "Non está suscrito!" + +#: classes/Subscription.php:163 +#, fuzzy +msgid "Couldn't delete self-subscription." +msgstr "Non se pode eliminar a subscrición." + +#: classes/Subscription.php:179 lib/subs.php:69 +msgid "Couldn't delete subscription." +msgstr "Non se pode eliminar a subscrición." + +#: classes/User.php:372 #, fuzzy, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "Mensaxe de %1$s en %2$s" -#: classes/User_group.php:380 +#: classes/User_group.php:423 #, fuzzy msgid "Could not create group." msgstr "Non se puido crear o favorito." -#: classes/User_group.php:409 +#: classes/User_group.php:452 #, fuzzy msgid "Could not set group membership." msgstr "Non se pode gardar a subscrición." @@ -4248,139 +4690,134 @@ msgstr "%1$s (%2$s)" msgid "Untitled page" msgstr "" -#: lib/action.php:427 +#: lib/action.php:433 msgid "Primary site navigation" msgstr "" -#: lib/action.php:433 +#: lib/action.php:439 msgid "Home" msgstr "Persoal" -#: lib/action.php:433 +#: lib/action.php:439 msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:435 -#, fuzzy -msgid "Account" -msgstr "Sobre" - -#: lib/action.php:435 +#: lib/action.php:441 #, fuzzy msgid "Change your email, avatar, password, profile" msgstr "Cambiar contrasinal" -#: lib/action.php:438 +#: lib/action.php:444 msgid "Connect" msgstr "Conectar" -#: lib/action.php:438 +#: lib/action.php:444 #, fuzzy msgid "Connect to services" msgstr "Non se pode redireccionar ao servidor: %s" -#: lib/action.php:442 +#: lib/action.php:448 #, fuzzy msgid "Change site configuration" msgstr "Navegación de subscricións" -#: lib/action.php:446 lib/subgroupnav.php:105 +#: lib/action.php:452 lib/subgroupnav.php:105 msgid "Invite" msgstr "Invitar" -#: lib/action.php:447 lib/subgroupnav.php:106 +#: lib/action.php:453 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." -#: lib/action.php:452 +#: lib/action.php:458 msgid "Logout" msgstr "Sair" -#: lib/action.php:452 +#: lib/action.php:458 msgid "Logout from the site" msgstr "" -#: lib/action.php:457 +#: lib/action.php:463 #, fuzzy msgid "Create an account" msgstr "Crear nova conta" -#: lib/action.php:460 +#: lib/action.php:466 msgid "Login to the site" msgstr "" -#: lib/action.php:463 lib/action.php:726 +#: lib/action.php:469 lib/action.php:732 msgid "Help" msgstr "Axuda" -#: lib/action.php:463 +#: lib/action.php:469 #, fuzzy msgid "Help me!" msgstr "Axuda" -#: lib/action.php:466 lib/searchaction.php:127 +#: lib/action.php:472 lib/searchaction.php:127 msgid "Search" msgstr "Buscar" -#: lib/action.php:466 +#: lib/action.php:472 msgid "Search for people or text" msgstr "" -#: lib/action.php:487 +#: lib/action.php:493 #, fuzzy msgid "Site notice" msgstr "Novo chío" -#: lib/action.php:553 +#: lib/action.php:559 msgid "Local views" msgstr "" -#: lib/action.php:619 +#: lib/action.php:625 #, fuzzy msgid "Page notice" msgstr "Novo chío" -#: lib/action.php:721 +#: lib/action.php:727 #, fuzzy msgid "Secondary site navigation" msgstr "Navegación de subscricións" -#: lib/action.php:728 +#: lib/action.php:734 msgid "About" msgstr "Sobre" -#: lib/action.php:730 +#: lib/action.php:736 msgid "FAQ" msgstr "Preguntas frecuentes" -#: lib/action.php:734 +#: lib/action.php:740 msgid "TOS" msgstr "" -#: lib/action.php:737 +#: lib/action.php:743 msgid "Privacy" msgstr "Privacidade" -#: lib/action.php:739 +#: lib/action.php:745 msgid "Source" msgstr "Fonte" -#: lib/action.php:743 +#: lib/action.php:749 msgid "Contact" msgstr "Contacto" -#: lib/action.php:745 +#: lib/action.php:751 msgid "Badge" msgstr "" -#: lib/action.php:773 +#: lib/action.php:779 msgid "StatusNet software license" msgstr "" -#: lib/action.php:776 +#: lib/action.php:782 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4389,12 +4826,12 @@ msgstr "" "**%%site.name%%** é un servizo de microbloguexo que che proporciona [%%site." "broughtby%%](%%site.broughtbyurl%%). " -#: lib/action.php:778 +#: lib/action.php:784 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** é un servizo de microbloguexo." -#: lib/action.php:780 +#: lib/action.php:786 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4405,38 +4842,59 @@ msgstr "" "%s, dispoñible baixo licenza [GNU Affero General Public License](http://www." "fsf.org/licensing/licenses/agpl-3.0.html)." -#: lib/action.php:794 +#: lib/action.php:801 #, fuzzy msgid "Site content license" msgstr "Atopar no contido dos chíos" -#: lib/action.php:803 +#: lib/action.php:806 +#, php-format +msgid "Content and data of %1$s are private and confidential." +msgstr "" + +#: lib/action.php:811 +#, php-format +msgid "Content and data copyright by %1$s. All rights reserved." +msgstr "" + +#: lib/action.php:814 +msgid "Content and data copyright by contributors. All rights reserved." +msgstr "" + +#: lib/action.php:827 #, fuzzy msgid "All " msgstr "Todos" -#: lib/action.php:808 +#: lib/action.php:833 msgid "license." msgstr "" -#: lib/action.php:1102 +#: lib/action.php:1132 msgid "Pagination" msgstr "" -#: lib/action.php:1111 +#: lib/action.php:1141 #, fuzzy msgid "After" msgstr "« Despois" -#: lib/action.php:1119 +#: lib/action.php:1149 #, fuzzy msgid "Before" msgstr "Antes »" -#: lib/action.php:1167 -#, fuzzy -msgid "There was a problem with your session token." -msgstr "Houbo un problema co teu token de sesión. Tentao de novo, anda..." +#: lib/activity.php:382 +msgid "Can't handle remote content yet." +msgstr "" + +#: lib/activity.php:410 +msgid "Can't handle embedded XML content yet." +msgstr "" + +#: lib/activity.php:414 +msgid "Can't handle embedded Base64 content yet." +msgstr "" #: lib/adminpanelaction.php:96 #, fuzzy @@ -4473,11 +4931,105 @@ msgstr "Confirmar correo electrónico" msgid "Design configuration" msgstr "Confirmación de SMS" -#: lib/adminpanelaction.php:322 lib/adminpanelaction.php:327 +#: lib/adminpanelaction.php:322 +#, fuzzy +msgid "User configuration" +msgstr "Confirmación de SMS" + +#: lib/adminpanelaction.php:327 +#, fuzzy +msgid "Access configuration" +msgstr "Confirmación de SMS" + +#: lib/adminpanelaction.php:332 #, fuzzy msgid "Paths configuration" msgstr "Confirmación de SMS" +#: lib/adminpanelaction.php:337 +#, fuzzy +msgid "Sessions configuration" +msgstr "Confirmación de SMS" + +#: lib/apiauth.php:95 +msgid "API resource requires read-write access, but you only have read access." +msgstr "" + +#: lib/apiauth.php:273 +#, php-format +msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" +msgstr "" + +#: lib/applicationeditform.php:136 +msgid "Edit application" +msgstr "" + +#: lib/applicationeditform.php:184 +msgid "Icon for this application" +msgstr "" + +#: lib/applicationeditform.php:204 +#, fuzzy, php-format +msgid "Describe your application in %d characters" +msgstr "Contanos un pouco de ti e dos teus intereses en 140 caractéres." + +#: lib/applicationeditform.php:207 +#, fuzzy +msgid "Describe your application" +msgstr "Contanos un pouco de ti e dos teus intereses en 140 caractéres." + +#: lib/applicationeditform.php:216 +#, fuzzy +msgid "Source URL" +msgstr "Fonte" + +#: lib/applicationeditform.php:218 +#, fuzzy +msgid "URL of the homepage of this application" +msgstr "Enderezo da túa páxina persoal, blogue, ou perfil noutro sitio" + +#: lib/applicationeditform.php:224 +msgid "Organization responsible for this application" +msgstr "" + +#: lib/applicationeditform.php:230 +#, fuzzy +msgid "URL for the homepage of the organization" +msgstr "Enderezo da túa páxina persoal, blogue, ou perfil noutro sitio" + +#: lib/applicationeditform.php:236 +msgid "URL to redirect to after authentication" +msgstr "" + +#: lib/applicationeditform.php:258 +msgid "Browser" +msgstr "" + +#: lib/applicationeditform.php:274 +msgid "Desktop" +msgstr "" + +#: lib/applicationeditform.php:275 +msgid "Type of application, browser or desktop" +msgstr "" + +#: lib/applicationeditform.php:297 +msgid "Read-only" +msgstr "" + +#: lib/applicationeditform.php:315 +msgid "Read-write" +msgstr "" + +#: lib/applicationeditform.php:316 +msgid "Default access for this application: read-only, or read-write" +msgstr "" + +#: lib/applicationlist.php:154 +#, fuzzy +msgid "Revoke" +msgstr "Eliminar" + #: lib/attachmentlist.php:87 msgid "Attachments" msgstr "" @@ -4499,12 +5051,12 @@ msgstr "" msgid "Tags for this attachment" msgstr "" -#: lib/authenticationplugin.php:182 lib/authenticationplugin.php:187 +#: lib/authenticationplugin.php:218 lib/authenticationplugin.php:223 #, fuzzy msgid "Password changing failed" msgstr "Contrasinal gardada." -#: lib/authenticationplugin.php:197 +#: lib/authenticationplugin.php:233 #, fuzzy msgid "Password changing is not allowed" msgstr "Contrasinal gardada." @@ -4662,55 +5214,64 @@ msgstr "Aconteceu un erro ó gardar o chío." msgid "Specify the name of the user to subscribe to" msgstr "Especifica o nome do usuario ó que queres suscribirte" -#: lib/command.php:554 +#: lib/command.php:554 lib/command.php:589 +msgid "No such user" +msgstr "Ningún usuario." + +#: lib/command.php:561 #, php-format msgid "Subscribed to %s" msgstr "Suscrito a %s" -#: lib/command.php:575 +#: lib/command.php:582 lib/command.php:685 msgid "Specify the name of the user to unsubscribe from" msgstr "Especifica o nome de usuario ó que queres deixar de seguir" -#: lib/command.php:582 +#: lib/command.php:595 #, php-format msgid "Unsubscribed from %s" msgstr "Desuscribir de %s" -#: lib/command.php:600 lib/command.php:623 +#: lib/command.php:613 lib/command.php:636 msgid "Command not yet implemented." msgstr "Comando non implementado." -#: lib/command.php:603 +#: lib/command.php:616 msgid "Notification off." msgstr "Notificación desactivada." -#: lib/command.php:605 +#: lib/command.php:618 msgid "Can't turn off notification." msgstr "No se pode desactivar a notificación." -#: lib/command.php:626 +#: lib/command.php:639 msgid "Notification on." msgstr "Notificación habilitada." -#: lib/command.php:628 +#: lib/command.php:641 msgid "Can't turn on notification." msgstr "Non se pode activar a notificación." -#: lib/command.php:641 +#: lib/command.php:654 msgid "Login command is disabled" msgstr "" -#: lib/command.php:652 +#: lib/command.php:665 #, php-format msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "" -#: lib/command.php:668 +#: lib/command.php:692 +#, fuzzy, php-format +msgid "Unsubscribed %s" +msgstr "Desuscribir de %s" + +#: lib/command.php:709 #, fuzzy msgid "You are not subscribed to anyone." msgstr "Non estás suscrito a ese perfil" -#: lib/command.php:670 +#: lib/command.php:711 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "Xa estas suscrito a estes usuarios:" @@ -4719,12 +5280,12 @@ msgstr[2] "" msgstr[3] "" msgstr[4] "" -#: lib/command.php:690 +#: lib/command.php:731 #, fuzzy msgid "No one is subscribed to you." msgstr "Outro usuario non se puido suscribir a ti." -#: lib/command.php:692 +#: lib/command.php:733 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "Outro usuario non se puido suscribir a ti." @@ -4733,12 +5294,12 @@ msgstr[2] "" msgstr[3] "" msgstr[4] "" -#: lib/command.php:712 +#: lib/command.php:753 #, fuzzy msgid "You are not a member of any groups." msgstr "Non estás suscrito a ese perfil" -#: lib/command.php:714 +#: lib/command.php:755 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "Non estás suscrito a ese perfil" @@ -4747,7 +5308,7 @@ msgstr[2] "" msgstr[3] "" msgstr[4] "" -#: lib/command.php:728 +#: lib/command.php:769 #, fuzzy msgid "" "Commands:\n" @@ -4762,6 +5323,7 @@ msgid "" "d - direct message to user\n" "get - get last notice from user\n" "whois - get profile info on user\n" +"lose - force user to stop following you\n" "fav - add user's last notice as a 'fave'\n" "fav # - add notice with the given id as a 'fave'\n" "repeat # - repeat a notice with a given id\n" @@ -4815,20 +5377,20 @@ msgstr "" "tracks - non implementado por agora.\n" "tracking - non implementado por agora.\n" -#: lib/common.php:131 +#: lib/common.php:136 #, fuzzy msgid "No configuration file found. " msgstr "Sen código de confirmación." -#: lib/common.php:132 +#: lib/common.php:137 msgid "I looked for configuration files in the following places: " msgstr "" -#: lib/common.php:134 +#: lib/common.php:139 msgid "You may wish to run the installer to fix this." msgstr "" -#: lib/common.php:135 +#: lib/common.php:140 msgid "Go to the installer." msgstr "" @@ -4844,6 +5406,15 @@ msgstr "Chíos dende mensaxería instantánea (IM)" msgid "Updates by SMS" msgstr "Chíos dende SMS" +#: lib/connectsettingsaction.php:120 +#, fuzzy +msgid "Connections" +msgstr "Conectar" + +#: lib/connectsettingsaction.php:121 +msgid "Authorized connected applications" +msgstr "" + #: lib/dberroraction.php:60 msgid "Database error" msgstr "" @@ -5038,12 +5609,12 @@ msgstr "" msgid "kB" msgstr "" -#: lib/jabber.php:202 +#: lib/jabber.php:220 #, php-format msgid "[%s]" msgstr "" -#: lib/jabber.php:385 +#: lib/jabber.php:400 #, php-format msgid "Unknown inbox source %d." msgstr "" @@ -5304,7 +5875,7 @@ msgid "" "users in conversation. People can send you messages for your eyes only." msgstr "" -#: lib/mailbox.php:227 lib/noticelist.php:477 +#: lib/mailbox.php:227 lib/noticelist.php:482 #, fuzzy msgid "from" msgstr " dende " @@ -5426,62 +5997,58 @@ msgid "Do not share my location" msgstr "Non se puideron gardar as etiquetas." #: lib/noticeform.php:216 -msgid "Hide this info" -msgstr "" - -#: lib/noticeform.php:217 msgid "" "Sorry, retrieving your geo location is taking longer than expected, please " "try again later" msgstr "" -#: lib/noticelist.php:428 +#: lib/noticelist.php:429 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "" -#: lib/noticelist.php:429 +#: lib/noticelist.php:430 #, fuzzy msgid "N" msgstr "No" -#: lib/noticelist.php:429 +#: lib/noticelist.php:430 msgid "S" msgstr "" -#: lib/noticelist.php:430 +#: lib/noticelist.php:431 msgid "E" msgstr "" -#: lib/noticelist.php:430 +#: lib/noticelist.php:431 msgid "W" msgstr "" -#: lib/noticelist.php:436 +#: lib/noticelist.php:438 msgid "at" msgstr "" -#: lib/noticelist.php:531 +#: lib/noticelist.php:558 #, fuzzy msgid "in context" msgstr "Sen contido!" -#: lib/noticelist.php:556 +#: lib/noticelist.php:583 #, fuzzy msgid "Repeated by" msgstr "Crear" -#: lib/noticelist.php:585 +#: lib/noticelist.php:610 #, fuzzy msgid "Reply to this notice" msgstr "Non se pode eliminar este chíos." -#: lib/noticelist.php:586 +#: lib/noticelist.php:611 #, fuzzy msgid "Reply" msgstr "contestar" -#: lib/noticelist.php:628 +#: lib/noticelist.php:655 #, fuzzy msgid "Notice repeated" msgstr "Chío publicado" @@ -5518,12 +6085,7 @@ msgstr "Aconteceu un erro ó inserir o perfil remoto" msgid "Duplicate notice" msgstr "Eliminar chío" -#: lib/oauthstore.php:466 lib/subs.php:48 -#, fuzzy -msgid "You have been banned from subscribing." -msgstr "Este usuario non che permite suscribirte a el." - -#: lib/oauthstore.php:491 +#: lib/oauthstore.php:490 msgid "Couldn't insert new subscription." msgstr "Non se puido inserir a nova subscrición." @@ -5539,19 +6101,19 @@ msgstr "Respostas" msgid "Favorites" msgstr "Favoritos" -#: lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "Band. Entrada" -#: lib/personalgroupnav.php:125 +#: lib/personalgroupnav.php:126 msgid "Your incoming messages" msgstr "As túas mensaxes entrantes" -#: lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 msgid "Outbox" msgstr "Band. Saída" -#: lib/personalgroupnav.php:130 +#: lib/personalgroupnav.php:131 msgid "Your sent messages" msgstr "As túas mensaxes enviadas" @@ -5636,6 +6198,10 @@ msgstr "Non se pode eliminar este chíos." msgid "Repeat this notice" msgstr "Non se pode eliminar este chíos." +#: lib/router.php:665 +msgid "No single user defined for single-user mode." +msgstr "" + #: lib/sandboxform.php:67 #, fuzzy msgid "Sandbox" @@ -5710,36 +6276,6 @@ msgstr "Suscrito a %s" msgid "Groups %s is a member of" msgstr "" -#: lib/subs.php:52 -msgid "Already subscribed!" -msgstr "" - -#: lib/subs.php:56 -msgid "User has blocked you." -msgstr "O usuario bloqueoute." - -#: lib/subs.php:63 -msgid "Could not subscribe." -msgstr "No se pode suscribir." - -#: lib/subs.php:82 -msgid "Could not subscribe other to you." -msgstr "Outro usuario non se puido suscribir a ti." - -#: lib/subs.php:137 -#, fuzzy -msgid "Not subscribed!" -msgstr "Non está suscrito!" - -#: lib/subs.php:142 -#, fuzzy -msgid "Couldn't delete self-subscription." -msgstr "Non se pode eliminar a subscrición." - -#: lib/subs.php:158 -msgid "Couldn't delete subscription." -msgstr "Non se pode eliminar a subscrición." - #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -5796,70 +6332,70 @@ msgstr "Avatar" msgid "User actions" msgstr "Outras opcions" -#: lib/userprofile.php:248 +#: lib/userprofile.php:251 #, fuzzy msgid "Edit profile settings" msgstr "Configuración de perfil" -#: lib/userprofile.php:249 +#: lib/userprofile.php:252 msgid "Edit" msgstr "" -#: lib/userprofile.php:272 +#: lib/userprofile.php:275 #, fuzzy msgid "Send a direct message to this user" msgstr "Non podes enviar mensaxes a este usurio." -#: lib/userprofile.php:273 +#: lib/userprofile.php:276 #, fuzzy msgid "Message" msgstr "Nova mensaxe" -#: lib/userprofile.php:311 +#: lib/userprofile.php:314 msgid "Moderate" msgstr "" -#: lib/util.php:877 +#: lib/util.php:952 msgid "a few seconds ago" msgstr "fai uns segundos" -#: lib/util.php:879 +#: lib/util.php:954 msgid "about a minute ago" msgstr "fai un minuto" -#: lib/util.php:881 +#: lib/util.php:956 #, php-format msgid "about %d minutes ago" msgstr "fai %d minutos" -#: lib/util.php:883 +#: lib/util.php:958 msgid "about an hour ago" msgstr "fai unha hora" -#: lib/util.php:885 +#: lib/util.php:960 #, php-format msgid "about %d hours ago" msgstr "fai %d horas" -#: lib/util.php:887 +#: lib/util.php:962 msgid "about a day ago" msgstr "fai un día" -#: lib/util.php:889 +#: lib/util.php:964 #, php-format msgid "about %d days ago" msgstr "fai %d días" -#: lib/util.php:891 +#: lib/util.php:966 msgid "about a month ago" msgstr "fai un mes" -#: lib/util.php:893 +#: lib/util.php:968 #, php-format msgid "about %d months ago" msgstr "fai %d meses" -#: lib/util.php:895 +#: lib/util.php:970 msgid "about a year ago" msgstr "fai un ano" @@ -5873,7 +6409,7 @@ msgstr "%1s non é unha orixe fiable." msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "" -#: scripts/xmppdaemon.php:301 +#: lib/xmppmanager.php:402 #, fuzzy, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "Mensaxe demasiado longa - o máximo é 140 caracteres, ti enviaches %d " diff --git a/locale/he/LC_MESSAGES/statusnet.po b/locale/he/LC_MESSAGES/statusnet.po index c6e90c550c..424917efb2 100644 --- a/locale/he/LC_MESSAGES/statusnet.po +++ b/locale/he/LC_MESSAGES/statusnet.po @@ -7,17 +7,75 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-01-13 22:04+0000\n" -"PO-Revision-Date: 2010-01-13 22:05:22+0000\n" +"POT-Creation-Date: 2010-02-24 23:49+0000\n" +"PO-Revision-Date: 2010-02-24 23:50:54+0000\n" "Language-Team: Hebrew\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha (r61027); Translate extension (2010-01-04)\n" +"X-Generator: MediaWiki 1.17alpha (r62925); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: actions/accessadminpanel.php:54 lib/adminpanelaction.php:326 +#, fuzzy +msgid "Access" +msgstr "קבל" + +#: actions/accessadminpanel.php:65 +#, fuzzy +msgid "Site access settings" +msgstr "הגדרות" + +#: actions/accessadminpanel.php:158 +#, fuzzy +msgid "Registration" +msgstr "הירשם" + +#: actions/accessadminpanel.php:161 +#, fuzzy +msgid "Private" +msgstr "פרטיות" + +#: actions/accessadminpanel.php:163 +msgid "Prohibit anonymous users (not logged in) from viewing site?" +msgstr "" + +#: actions/accessadminpanel.php:167 +msgid "Invite only" +msgstr "" + +#: actions/accessadminpanel.php:169 +msgid "Make registration invitation only." +msgstr "" + +#: actions/accessadminpanel.php:173 +#, fuzzy +msgid "Closed" +msgstr "אין משתמש כזה." + +#: actions/accessadminpanel.php:175 +msgid "Disable new registrations." +msgstr "" + +#: actions/accessadminpanel.php:189 actions/designadminpanel.php:586 +#: actions/emailsettings.php:195 actions/imsettings.php:163 +#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 +#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 +#: actions/siteadminpanel.php:336 actions/smssettings.php:181 +#: actions/subscriptions.php:208 actions/tagother.php:154 +#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 lib/designsettings.php:256 +#: lib/groupeditform.php:202 +msgid "Save" +msgstr "שמור" + +#: actions/accessadminpanel.php:189 +#, fuzzy +msgid "Save access settings" +msgstr "הגדרות" + #: actions/all.php:63 actions/public.php:97 actions/replies.php:92 #: actions/showfavorites.php:137 actions/tag.php:51 #, fuzzy @@ -33,25 +91,29 @@ msgstr "אין הודעה כזו." #: 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:144 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apistatusesupdate.php:148 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:78 #: actions/apitimelinehome.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/otp.php:76 #: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154 -#: actions/replies.php:73 actions/repliesrss.php:38 +#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 #: 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:302 lib/command.php:355 #: lib/command.php:401 lib/command.php:462 lib/command.php:518 #: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 -#: lib/subs.php:34 lib/subs.php:125 msgid "No such user." msgstr "אין משתמש כזה." +#: actions/all.php:84 +#, fuzzy, php-format +msgid "%1$s and friends, page %2$d" +msgstr "%s וחברים" + #: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 -#: actions/apitimelinefriends.php:115 actions/apitimelinehome.php:115 +#: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" @@ -92,7 +154,7 @@ msgid "" "his or her attention](%%%%action.newnotice%%%%?status_textarea=%3$s)." msgstr "" -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211 #, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " @@ -104,8 +166,8 @@ msgstr "" msgid "You and friends" msgstr "%s וחברים" -#: actions/allrss.php:119 actions/apitimelinefriends.php:122 -#: actions/apitimelinehome.php:122 +#: actions/allrss.php:119 actions/apitimelinefriends.php:119 +#: actions/apitimelinehome.php:120 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "" @@ -115,23 +177,23 @@ msgstr "" #: actions/apiaccountupdateprofile.php:97 #: actions/apiaccountupdateprofilebackgroundimage.php:94 #: actions/apiaccountupdateprofilecolors.php:118 -#: 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:136 actions/apigroupismember.php:114 -#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 -#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 -#: actions/apigroupmembership.php:106 actions/apigroupshow.php:105 -#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 -#: actions/apistatusesretweets.php:112 actions/apistatusesshow.php:108 -#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93 -#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:146 -#: actions/apitimelinefriends.php:156 actions/apitimelinegroup.php:150 -#: actions/apitimelinehome.php:156 actions/apitimelinementions.php:151 -#: actions/apitimelinepublic.php:131 actions/apitimelineretweetedbyme.php:122 +#: actions/apiaccountverifycredentials.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:128 actions/apigroupcreate.php:136 +#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 +#: actions/apigroupleave.php:141 actions/apigrouplist.php:132 +#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 +#: actions/apigroupshow.php:115 actions/apihelptest.php:88 +#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 +#: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 #: actions/apitimelineretweetedtome.php:121 -#: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141 -#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 +#: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 +#: actions/apitimelineuser.php:207 actions/apiusershow.php:101 #, fuzzy msgid "API method not found." msgstr "קוד האישור לא נמצא." @@ -146,7 +208,7 @@ msgstr "קוד האישור לא נמצא." #: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 #: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 #: actions/apigroupleave.php:91 actions/apistatusesretweet.php:65 -#: actions/apistatusesupdate.php:114 +#: actions/apistatusesupdate.php:118 msgid "This method requires a POST." msgstr "" @@ -177,8 +239,9 @@ msgstr "שמירת הפרופיל נכשלה." #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:97 -#: actions/apistatusesupdate.php:127 actions/avatarsettings.php:257 -#: actions/designadminpanel.php:122 actions/newnotice.php:94 +#: actions/apistatusesupdate.php:131 actions/avatarsettings.php:257 +#: actions/designadminpanel.php:122 actions/editapplication.php:118 +#: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 #, php-format msgid "" @@ -297,12 +360,12 @@ msgstr "עידכון המשתמש נכשל." msgid "Two user ids or screen_names must be supplied." msgstr "" -#: actions/apifriendshipsshow.php:135 +#: actions/apifriendshipsshow.php:134 #, fuzzy msgid "Could not determine source user." msgstr "עידכון המשתמש נכשל." -#: actions/apifriendshipsshow.php:143 +#: actions/apifriendshipsshow.php:142 #, fuzzy msgid "Could not find target user." msgstr "עידכון המשתמש נכשל." @@ -325,7 +388,8 @@ msgstr "כינוי זה כבר תפוס. נסה כינוי אחר." msgid "Not a valid nickname." msgstr "שם משתמש לא חוקי." -#: actions/apigroupcreate.php:196 actions/editgroup.php:195 +#: actions/apigroupcreate.php:196 actions/editapplication.php:215 +#: actions/editgroup.php:195 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:217 msgid "Homepage is not a valid URL." @@ -337,7 +401,8 @@ msgstr "לאתר הבית יש כתובת לא חוקית." msgid "Full name is too long (max 255 chars)." msgstr "השם המלא ארוך מידי (מותרות 255 אותיות בלבד)" -#: actions/apigroupcreate.php:213 +#: actions/apigroupcreate.php:213 actions/editapplication.php:190 +#: actions/newapplication.php:172 #, fuzzy, php-format msgid "Description is too long (max %d chars)." msgstr "הביוגרפיה ארוכה מידי (לכל היותר 140 אותיות)" @@ -373,7 +438,7 @@ msgstr "" #: actions/apigroupismember.php:95 actions/apigroupjoin.php:104 #: actions/apigroupleave.php:104 actions/apigroupmembership.php:91 -#: actions/apigroupshow.php:90 actions/apitimelinegroup.php:91 +#: actions/apigroupshow.php:82 actions/apitimelinegroup.php:91 #, fuzzy msgid "Group not found!" msgstr "לא נמצא" @@ -417,6 +482,115 @@ msgstr "" msgid "groups on %s" msgstr "" +#: actions/apioauthauthorize.php:101 +msgid "No oauth_token parameter provided." +msgstr "" + +#: actions/apioauthauthorize.php:106 +#, fuzzy +msgid "Invalid token." +msgstr "גודל לא חוקי." + +#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 +#: actions/deletenotice.php:157 actions/disfavor.php:74 +#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54 +#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupunblock.php:66 actions/imsettings.php:206 +#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 +#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 +#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135 +#: actions/othersettings.php:145 actions/passwordsettings.php:138 +#: actions/profilesettings.php:194 actions/recoverpassword.php:337 +#: actions/register.php:165 actions/remotesubscribe.php:77 +#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 +#: actions/subscribe.php:86 actions/tagother.php:166 +#: 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/apioauthauthorize.php:135 +#, fuzzy +msgid "Invalid nickname / password!" +msgstr "שם המשתמש או הסיסמה לא חוקיים" + +#: actions/apioauthauthorize.php:159 +#, fuzzy +msgid "Database error deleting OAuth application user." +msgstr "שגיאה ביצירת שם המשתמש." + +#: actions/apioauthauthorize.php:185 +#, fuzzy +msgid "Database error inserting OAuth application user." +msgstr "שגיאת מסד נתונים בהכנסת התגובה: %s" + +#: actions/apioauthauthorize.php:214 +#, php-format +msgid "" +"The request token %s has been authorized. Please exchange it for an access " +"token." +msgstr "" + +#: actions/apioauthauthorize.php:227 +#, php-format +msgid "The request token %s has been denied and revoked." +msgstr "" + +#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 +#: actions/designadminpanel.php:103 actions/editapplication.php:139 +#: actions/emailsettings.php:256 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/newapplication.php:121 +#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 +#: actions/smssettings.php:248 lib/designsettings.php:304 +msgid "Unexpected form submission." +msgstr "הגשת טופס לא צפויה." + +#: actions/apioauthauthorize.php:259 +msgid "An application would like to connect to your account" +msgstr "" + +#: actions/apioauthauthorize.php:276 +msgid "Allow or deny access" +msgstr "" + +#: actions/apioauthauthorize.php:292 +#, php-format +msgid "" +"The application %1$s by %2$s would like " +"the ability to %3$s your %4$s account data. You should only " +"give access to your %4$s account to third parties you trust." +msgstr "" + +#: actions/apioauthauthorize.php:310 lib/action.php:441 +#, fuzzy +msgid "Account" +msgstr "אודות" + +#: actions/apioauthauthorize.php:313 actions/login.php:230 +#: actions/profilesettings.php:106 actions/register.php:424 +#: actions/showgroup.php:236 actions/tagother.php:94 +#: actions/userauthorization.php:145 lib/groupeditform.php:152 +#: lib/userprofile.php:131 +msgid "Nickname" +msgstr "כינוי" + +#: actions/apioauthauthorize.php:316 actions/login.php:233 +#: actions/register.php:429 lib/accountsettingsaction.php:116 +msgid "Password" +msgstr "סיסמה" + +#: actions/apioauthauthorize.php:328 +msgid "Deny" +msgstr "" + +#: actions/apioauthauthorize.php:334 +msgid "Allow" +msgstr "" + +#: actions/apioauthauthorize.php:351 +msgid "Allow or deny access to your account information." +msgstr "" + #: actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." msgstr "" @@ -449,17 +623,17 @@ msgstr "התמונה עודכנה." msgid "No status with that ID found." msgstr "" -#: actions/apistatusesupdate.php:157 actions/newnotice.php:155 +#: actions/apistatusesupdate.php:161 actions/newnotice.php:155 #: lib/mailhandler.php:60 #, fuzzy, php-format msgid "That's too long. Max notice size is %d chars." msgstr "זה ארוך מידי. אורך מירבי להודעה הוא 140 אותיות." -#: actions/apistatusesupdate.php:198 +#: actions/apistatusesupdate.php:202 msgid "Not found" msgstr "לא נמצא" -#: actions/apistatusesupdate.php:221 actions/newnotice.php:178 +#: actions/apistatusesupdate.php:225 actions/newnotice.php:178 #, php-format msgid "Max notice size is %d chars, including attachment URL." msgstr "" @@ -474,7 +648,7 @@ msgstr "פורמט התמונה אינו נתמך." msgid "%1$s / Favorites from %2$s" msgstr "הסטטוס של %1$s ב-%2$s " -#: actions/apitimelinefavorites.php:120 +#: actions/apitimelinefavorites.php:117 #, fuzzy, php-format msgid "%1$s updates favorited by %2$s / %2$s." msgstr "מיקרובלוג מאת %s" @@ -485,7 +659,7 @@ msgstr "מיקרובלוג מאת %s" msgid "%s timeline" msgstr "" -#: actions/apitimelinegroup.php:117 actions/apitimelineuser.php:126 +#: actions/apitimelinegroup.php:114 actions/apitimelineuser.php:126 #: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" @@ -501,27 +675,22 @@ msgstr "הסטטוס של %1$s ב-%2$s " msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "" -#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "" -#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "" -#: actions/apitimelineretweetedbyme.php:112 -#, php-format -msgid "Repeated by %s" -msgstr "" - #: actions/apitimelineretweetedtome.php:111 #, fuzzy, php-format msgid "Repeated to %s" msgstr "תגובת עבור %s" -#: actions/apitimelineretweetsofme.php:112 +#: actions/apitimelineretweetsofme.php:114 #, fuzzy, php-format msgid "Repeats of %s" msgstr "תגובת עבור %s" @@ -531,7 +700,7 @@ msgstr "תגובת עבור %s" msgid "Notices tagged with %s" msgstr "" -#: actions/apitimelinetag.php:108 actions/tagrss.php:64 +#: actions/apitimelinetag.php:104 actions/tagrss.php:64 #, fuzzy, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "מיקרובלוג מאת %s" @@ -594,8 +763,8 @@ msgstr "" msgid "Preview" msgstr "" -#: actions/avatarsettings.php:149 lib/deleteuserform.php:66 -#: lib/noticelist.php:611 +#: actions/avatarsettings.php:149 actions/showapplication.php:252 +#: lib/deleteuserform.php:66 lib/noticelist.php:637 #, fuzzy msgid "Delete" msgstr "מחק" @@ -608,29 +777,6 @@ msgstr "ההעלה" msgid "Crop" msgstr "" -#: actions/avatarsettings.php:268 actions/deletenotice.php:157 -#: actions/disfavor.php:74 actions/emailsettings.php:238 actions/favor.php:75 -#: actions/geocode.php:50 actions/groupblock.php:66 actions/grouplogo.php:309 -#: actions/groupunblock.php:66 actions/imsettings.php:206 -#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 -#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 -#: actions/othersettings.php:145 actions/passwordsettings.php:138 -#: actions/profilesettings.php:194 actions/recoverpassword.php:337 -#: actions/register.php:165 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 -#: actions/subscribe.php:46 actions/tagother.php:166 -#: 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/avatarsettings.php:281 actions/designadminpanel.php:103 -#: actions/emailsettings.php:256 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/avatarsettings.php:328 msgid "Pick a square area of the image to be your avatar" msgstr "" @@ -669,8 +815,9 @@ msgid "" "will not be notified of any @-replies from them." msgstr "" -#: actions/block.php:143 actions/deletenotice.php:145 -#: actions/deleteuser.php:147 actions/groupblock.php:178 +#: actions/block.php:143 actions/deleteapplication.php:153 +#: actions/deletenotice.php:145 actions/deleteuser.php:147 +#: actions/groupblock.php:178 msgid "No" msgstr "לא" @@ -679,13 +826,13 @@ msgstr "לא" msgid "Do not block this user" msgstr "אין משתמש כזה." -#: actions/block.php:144 actions/deletenotice.php:146 -#: actions/deleteuser.php:148 actions/groupblock.php:179 -#: lib/repeatform.php:132 +#: actions/block.php:144 actions/deleteapplication.php:158 +#: actions/deletenotice.php:146 actions/deleteuser.php:148 +#: actions/groupblock.php:179 lib/repeatform.php:132 msgid "Yes" msgstr "כן" -#: actions/block.php:144 actions/groupmembers.php:346 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80 #, fuzzy msgid "Block this user" msgstr "אין משתמש כזה." @@ -772,7 +919,8 @@ msgid "Couldn't delete email confirmation." msgstr "" #: actions/confirmaddress.php:144 -msgid "Confirm Address" +#, fuzzy +msgid "Confirm address" msgstr "אשר כתובת" #: actions/confirmaddress.php:159 @@ -790,10 +938,54 @@ msgstr "מיקום" msgid "Notices" msgstr "הודעות" +#: actions/deleteapplication.php:63 +#, fuzzy +msgid "You must be logged in to delete an application." +msgstr "עידכון המשתמש נכשל." + +#: actions/deleteapplication.php:71 +#, fuzzy +msgid "Application not found." +msgstr "להודעה אין פרופיל" + +#: actions/deleteapplication.php:78 actions/editapplication.php:77 +#: actions/showapplication.php:94 +#, fuzzy +msgid "You are not the owner of this application." +msgstr "לא שלחנו אלינו את הפרופיל הזה" + +#: actions/deleteapplication.php:102 actions/editapplication.php:127 +#: actions/newapplication.php:110 actions/showapplication.php:118 +#: lib/action.php:1197 +msgid "There was a problem with your session token." +msgstr "" + +#: actions/deleteapplication.php:123 actions/deleteapplication.php:147 +#, fuzzy +msgid "Delete application" +msgstr "אין הודעה כזו." + +#: actions/deleteapplication.php:149 +msgid "" +"Are you sure you want to delete this application? This will clear all data " +"about the application from the database, including all existing user " +"connections." +msgstr "" + +#: actions/deleteapplication.php:156 +#, fuzzy +msgid "Do not delete this application" +msgstr "אין הודעה כזו." + +#: actions/deleteapplication.php:160 +#, fuzzy +msgid "Delete this application" +msgstr "תאר את עצמך ואת נושאי העניין שלך ב-140 אותיות" + #: 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/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 #: lib/adminpanelaction.php:72 lib/profileformaction.php:63 #: lib/settingsaction.php:72 @@ -823,7 +1015,7 @@ msgstr "" msgid "Do not delete this notice" msgstr "אין הודעה כזו." -#: actions/deletenotice.php:146 lib/noticelist.php:611 +#: actions/deletenotice.php:146 lib/noticelist.php:637 msgid "Delete this notice" msgstr "" @@ -964,16 +1156,6 @@ msgstr "" msgid "Reset back to default" msgstr "" -#: actions/designadminpanel.php:586 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 -#: actions/pathsadminpanel.php:324 actions/profilesettings.php:174 -#: actions/siteadminpanel.php:388 actions/smssettings.php:181 -#: actions/subscriptions.php:203 actions/tagother.php:154 -#: actions/useradminpanel.php:313 lib/designsettings.php:256 -#: lib/groupeditform.php:202 -msgid "Save" -msgstr "שמור" - #: actions/designadminpanel.php:587 lib/designsettings.php:257 msgid "Save design" msgstr "" @@ -987,10 +1169,84 @@ msgstr "" msgid "Add to favorites" msgstr "מועדפים" -#: actions/doc.php:69 -msgid "No such document." +#: actions/doc.php:158 +#, fuzzy, php-format +msgid "No such document \"%s\"" msgstr "אין מסמך כזה." +#: actions/editapplication.php:54 +#, fuzzy +msgid "Edit Application" +msgstr "להודעה אין פרופיל" + +#: actions/editapplication.php:66 +msgid "You must be logged in to edit an application." +msgstr "" + +#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:166 +#: actions/showapplication.php:87 +#, fuzzy +msgid "No such application." +msgstr "אין הודעה כזו." + +#: actions/editapplication.php:161 +msgid "Use this form to edit your application." +msgstr "" + +#: actions/editapplication.php:177 actions/newapplication.php:159 +msgid "Name is required." +msgstr "" + +#: actions/editapplication.php:180 actions/newapplication.php:165 +#, fuzzy +msgid "Name is too long (max 255 chars)." +msgstr "השם המלא ארוך מידי (מותרות 255 אותיות בלבד)" + +#: actions/editapplication.php:183 actions/newapplication.php:162 +#, fuzzy +msgid "Name already in use. Try another one." +msgstr "כינוי זה כבר תפוס. נסה כינוי אחר." + +#: actions/editapplication.php:186 actions/newapplication.php:168 +#, fuzzy +msgid "Description is required." +msgstr "הרשמות" + +#: actions/editapplication.php:194 +msgid "Source URL is too long." +msgstr "" + +#: actions/editapplication.php:200 actions/newapplication.php:185 +#, fuzzy +msgid "Source URL is not valid." +msgstr "לאתר הבית יש כתובת לא חוקית." + +#: actions/editapplication.php:203 actions/newapplication.php:188 +msgid "Organization is required." +msgstr "" + +#: actions/editapplication.php:206 actions/newapplication.php:191 +#, fuzzy +msgid "Organization is too long (max 255 chars)." +msgstr "שם המיקום ארוך מידי (מותר עד 255 אותיות)." + +#: actions/editapplication.php:209 actions/newapplication.php:194 +msgid "Organization homepage is required." +msgstr "" + +#: actions/editapplication.php:218 actions/newapplication.php:206 +msgid "Callback is too long." +msgstr "" + +#: actions/editapplication.php:225 actions/newapplication.php:215 +msgid "Callback URL is not valid." +msgstr "" + +#: actions/editapplication.php:258 +#, fuzzy +msgid "Could not update application." +msgstr "עידכון המשתמש נכשל." + #: actions/editgroup.php:56 #, php-format msgid "Edit %s group" @@ -1019,7 +1275,7 @@ msgstr "הביוגרפיה ארוכה מידי (לכל היותר 140 אותיו msgid "Could not update group." msgstr "עידכון המשתמש נכשל." -#: actions/editgroup.php:259 classes/User_group.php:390 +#: actions/editgroup.php:259 classes/User_group.php:433 #, fuzzy msgid "Could not create aliases." msgstr "שמירת מידע התמונה נכשל" @@ -1061,7 +1317,8 @@ msgid "" msgstr "" #: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 +#: actions/smssettings.php:126 lib/applicationeditform.php:331 +#: lib/applicationeditform.php:332 msgid "Cancel" msgstr "בטל" @@ -1142,7 +1399,7 @@ msgid "Cannot normalize that email address" msgstr "" #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:157 +#: actions/siteadminpanel.php:143 msgid "Not a valid email address." msgstr "" @@ -1154,7 +1411,7 @@ msgstr "" msgid "That email address already belongs to another user." msgstr "" -#: actions/emailsettings.php:353 actions/imsettings.php:317 +#: actions/emailsettings.php:353 actions/imsettings.php:319 #: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." msgstr "הכנסת קוד האישור נכשלה." @@ -1213,7 +1470,7 @@ msgstr "" msgid "Disfavor favorite" msgstr "" -#: actions/favorited.php:65 lib/popularnoticesection.php:88 +#: actions/favorited.php:65 lib/popularnoticesection.php:91 #: lib/publicgroupnav.php:93 #, fuzzy msgid "Popular notices" @@ -1368,7 +1625,7 @@ msgstr "למשתמש אין פרופיל." msgid "User is not a member of group." msgstr "לא שלחנו אלינו את הפרופיל הזה" -#: actions/groupblock.php:136 actions/groupmembers.php:314 +#: actions/groupblock.php:136 actions/groupmembers.php:316 #, fuzzy msgid "Block user from group" msgstr "אין משתמש כזה." @@ -1469,23 +1726,23 @@ msgstr "" msgid "A list of the users in this group." msgstr "" -#: actions/groupmembers.php:175 lib/action.php:442 lib/groupnav.php:107 +#: actions/groupmembers.php:175 lib/action.php:448 lib/groupnav.php:107 msgid "Admin" msgstr "" -#: actions/groupmembers.php:346 lib/blockform.php:69 +#: actions/groupmembers.php:348 lib/blockform.php:69 msgid "Block" msgstr "" -#: actions/groupmembers.php:441 +#: actions/groupmembers.php:443 msgid "Make user an admin of the group" msgstr "" -#: actions/groupmembers.php:473 +#: actions/groupmembers.php:475 msgid "Make Admin" msgstr "" -#: actions/groupmembers.php:473 +#: actions/groupmembers.php:475 msgid "Make this user an admin" msgstr "" @@ -1662,6 +1919,11 @@ msgstr "" msgid "That is not your Jabber ID." msgstr "זהו לא זיהוי ה-Jabber שלך." +#: actions/inbox.php:59 +#, php-format +msgid "Inbox for %1$s - page %2$d" +msgstr "" + #: actions/inbox.php:62 #, php-format msgid "Inbox for %s" @@ -1738,7 +2000,7 @@ msgstr "" msgid "Optionally add a personal message to the invitation." msgstr "" -#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:237 +#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:236 msgid "Send" msgstr "שלח" @@ -1814,7 +2076,7 @@ msgstr "שם משתמש או סיסמה לא נכונים." msgid "Error setting user. You are probably not authorized." msgstr "לא מורשה." -#: actions/login.php:188 actions/login.php:241 lib/action.php:460 +#: actions/login.php:188 actions/login.php:241 lib/action.php:466 #: lib/logingroupnav.php:79 msgid "Login" msgstr "היכנס" @@ -1823,17 +2085,6 @@ msgstr "היכנס" msgid "Login to site" msgstr "" -#: actions/login.php:230 actions/profilesettings.php:106 -#: actions/register.php:424 actions/showgroup.php:236 actions/tagother.php:94 -#: lib/groupeditform.php:152 lib/userprofile.php:131 -msgid "Nickname" -msgstr "כינוי" - -#: actions/login.php:233 actions/register.php:429 -#: lib/accountsettingsaction.php:116 -msgid "Password" -msgstr "סיסמה" - #: actions/login.php:236 actions/register.php:478 msgid "Remember me" msgstr "זכור אותי" @@ -1861,21 +2112,21 @@ msgstr "" "היכנס בעזרת שם המשתמש והסיסמה שלך. עדיין אין לך שם משתמש? [הרשם](%%action." "register%%) לחשבון " -#: actions/makeadmin.php:91 +#: actions/makeadmin.php:92 msgid "Only an admin can make another user an admin." msgstr "" -#: actions/makeadmin.php:95 +#: actions/makeadmin.php:96 #, fuzzy, php-format msgid "%1$s is already an admin for group \"%2$s\"." msgstr "למשתמש אין פרופיל." -#: actions/makeadmin.php:132 +#: actions/makeadmin.php:133 #, fuzzy, php-format msgid "Can't get membership record for %1$s in group %2$s." msgstr "נכשלה יצירת OpenID מתוך: %s" -#: actions/makeadmin.php:145 +#: actions/makeadmin.php:146 #, fuzzy, php-format msgid "Can't make %1$s an admin for group %2$s." msgstr "למשתמש אין פרופיל." @@ -1884,6 +2135,28 @@ msgstr "למשתמש אין פרופיל." msgid "No current status" msgstr "" +#: actions/newapplication.php:52 +#, fuzzy +msgid "New Application" +msgstr "אין הודעה כזו." + +#: actions/newapplication.php:64 +msgid "You must be logged in to register an application." +msgstr "" + +#: actions/newapplication.php:143 +msgid "Use this form to register a new application." +msgstr "" + +#: actions/newapplication.php:176 +msgid "Source URL is required." +msgstr "" + +#: actions/newapplication.php:258 actions/newapplication.php:267 +#, fuzzy +msgid "Could not create application." +msgstr "שמירת מידע התמונה נכשל" + #: actions/newgroup.php:53 msgid "New group" msgstr "" @@ -1992,6 +2265,49 @@ msgstr "" msgid "Nudge sent!" msgstr "" +#: actions/oauthappssettings.php:59 +msgid "You must be logged in to list your applications." +msgstr "" + +#: actions/oauthappssettings.php:74 +msgid "OAuth applications" +msgstr "" + +#: actions/oauthappssettings.php:85 +msgid "Applications you have registered" +msgstr "" + +#: actions/oauthappssettings.php:135 +#, php-format +msgid "You have not registered any applications yet." +msgstr "" + +#: actions/oauthconnectionssettings.php:72 +msgid "Connected applications" +msgstr "" + +#: actions/oauthconnectionssettings.php:83 +msgid "You have allowed the following applications to access you account." +msgstr "" + +#: actions/oauthconnectionssettings.php:175 +#, fuzzy +msgid "You are not a user of that application." +msgstr "לא שלחנו אלינו את הפרופיל הזה" + +#: actions/oauthconnectionssettings.php:186 +msgid "Unable to revoke access for app: " +msgstr "" + +#: actions/oauthconnectionssettings.php:198 +#, php-format +msgid "You have not authorized any applications to use your account." +msgstr "" + +#: actions/oauthconnectionssettings.php:211 +msgid "Developers can edit the registration settings for their applications " +msgstr "" + #: actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" msgstr "להודעה אין פרופיל" @@ -2010,8 +2326,8 @@ msgstr "התחבר" msgid "Only " msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1033 -#: lib/api.php:1061 lib/api.php:1171 +#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 +#: lib/api.php:1068 lib/api.php:1177 msgid "Not a supported data format." msgstr "" @@ -2025,7 +2341,7 @@ msgstr "" #: actions/othersettings.php:60 #, fuzzy -msgid "Other Settings" +msgid "Other settings" msgstr "הגדרות" #: actions/othersettings.php:71 @@ -2082,6 +2398,11 @@ msgstr "תוכן ההודעה לא חוקי" msgid "Login token expired." msgstr "" +#: actions/outbox.php:58 +#, php-format +msgid "Outbox for %1$s - page %2$d" +msgstr "" + #: actions/outbox.php:61 #, php-format msgid "Outbox for %s" @@ -2154,7 +2475,7 @@ msgstr "לא ניתן לשמור את הסיסמה" msgid "Password saved." msgstr "הסיסמה נשמרה." -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:326 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:331 msgid "Paths" msgstr "" @@ -2162,141 +2483,158 @@ msgstr "" msgid "Path and server settings for this StatusNet site." msgstr "" -#: actions/pathsadminpanel.php:140 +#: actions/pathsadminpanel.php:157 #, fuzzy, php-format msgid "Theme directory not readable: %s" msgstr "עמוד זה אינו זמין בסוג מדיה שאתה יכול לקבל" -#: actions/pathsadminpanel.php:146 +#: actions/pathsadminpanel.php:163 #, php-format msgid "Avatar directory not writable: %s" msgstr "" -#: actions/pathsadminpanel.php:152 +#: actions/pathsadminpanel.php:169 #, php-format msgid "Background directory not writable: %s" msgstr "" -#: actions/pathsadminpanel.php:160 +#: actions/pathsadminpanel.php:177 #, php-format msgid "Locales directory not readable: %s" msgstr "" -#: actions/pathsadminpanel.php:166 +#: actions/pathsadminpanel.php:183 msgid "Invalid SSL server. The maximum length is 255 characters." msgstr "" -#: actions/pathsadminpanel.php:217 actions/siteadminpanel.php:58 +#: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58 #: lib/adminpanelaction.php:311 msgid "Site" msgstr "" -#: actions/pathsadminpanel.php:221 +#: actions/pathsadminpanel.php:238 +#, fuzzy +msgid "Server" +msgstr "שיחזור" + +#: actions/pathsadminpanel.php:238 +msgid "Site's server hostname." +msgstr "" + +#: actions/pathsadminpanel.php:242 msgid "Path" msgstr "" -#: actions/pathsadminpanel.php:221 +#: actions/pathsadminpanel.php:242 #, fuzzy msgid "Site path" msgstr "הודעה חדשה" -#: actions/pathsadminpanel.php:225 +#: actions/pathsadminpanel.php:246 msgid "Path to locales" msgstr "" -#: actions/pathsadminpanel.php:225 +#: actions/pathsadminpanel.php:246 msgid "Directory path to locales" msgstr "" -#: actions/pathsadminpanel.php:232 -msgid "Theme" -msgstr "" - -#: actions/pathsadminpanel.php:237 -msgid "Theme server" -msgstr "" - -#: actions/pathsadminpanel.php:241 -msgid "Theme path" -msgstr "" - -#: actions/pathsadminpanel.php:245 -msgid "Theme directory" +#: actions/pathsadminpanel.php:250 +msgid "Fancy URLs" msgstr "" #: actions/pathsadminpanel.php:252 +msgid "Use fancy (more readable and memorable) URLs?" +msgstr "" + +#: actions/pathsadminpanel.php:259 +msgid "Theme" +msgstr "" + +#: actions/pathsadminpanel.php:264 +msgid "Theme server" +msgstr "" + +#: actions/pathsadminpanel.php:268 +msgid "Theme path" +msgstr "" + +#: actions/pathsadminpanel.php:272 +msgid "Theme directory" +msgstr "" + +#: actions/pathsadminpanel.php:279 #, fuzzy msgid "Avatars" msgstr "תמונה" -#: actions/pathsadminpanel.php:257 +#: actions/pathsadminpanel.php:284 #, fuzzy msgid "Avatar server" msgstr "הגדרות" -#: actions/pathsadminpanel.php:261 +#: actions/pathsadminpanel.php:288 #, fuzzy msgid "Avatar path" msgstr "התמונה עודכנה." -#: actions/pathsadminpanel.php:265 +#: actions/pathsadminpanel.php:292 #, fuzzy msgid "Avatar directory" msgstr "התמונה עודכנה." -#: actions/pathsadminpanel.php:274 +#: actions/pathsadminpanel.php:301 msgid "Backgrounds" msgstr "" -#: actions/pathsadminpanel.php:278 +#: actions/pathsadminpanel.php:305 msgid "Background server" msgstr "" -#: actions/pathsadminpanel.php:282 +#: actions/pathsadminpanel.php:309 msgid "Background path" msgstr "" -#: actions/pathsadminpanel.php:286 +#: actions/pathsadminpanel.php:313 msgid "Background directory" msgstr "" -#: actions/pathsadminpanel.php:293 +#: actions/pathsadminpanel.php:320 #, fuzzy msgid "SSL" msgstr "סמס" -#: actions/pathsadminpanel.php:296 actions/siteadminpanel.php:346 +#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 #, fuzzy msgid "Never" msgstr "שיחזור" -#: actions/pathsadminpanel.php:297 +#: actions/pathsadminpanel.php:324 #, fuzzy msgid "Sometimes" msgstr "הודעות" -#: actions/pathsadminpanel.php:298 +#: actions/pathsadminpanel.php:325 msgid "Always" msgstr "" -#: actions/pathsadminpanel.php:302 +#: actions/pathsadminpanel.php:329 msgid "Use SSL" msgstr "" -#: actions/pathsadminpanel.php:303 +#: actions/pathsadminpanel.php:330 msgid "When to use SSL" msgstr "" -#: actions/pathsadminpanel.php:308 +#: actions/pathsadminpanel.php:335 #, fuzzy msgid "SSL server" msgstr "שיחזור" -#: actions/pathsadminpanel.php:309 +#: actions/pathsadminpanel.php:336 msgid "Server to direct SSL requests to" msgstr "" -#: actions/pathsadminpanel.php:325 +#: actions/pathsadminpanel.php:352 #, fuzzy msgid "Save paths" msgstr "הודעה חדשה" @@ -2358,7 +2696,7 @@ msgid "Full name" msgstr "שם מלא" #: actions/profilesettings.php:115 actions/register.php:453 -#: lib/groupeditform.php:161 +#: lib/applicationeditform.php:228 lib/groupeditform.php:161 msgid "Homepage" msgstr "אתר בית" @@ -2382,7 +2720,7 @@ msgstr "ביוגרפיה" #: actions/profilesettings.php:132 actions/register.php:471 #: actions/showgroup.php:256 actions/tagother.php:112 -#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:164 msgid "Location" msgstr "מיקום" @@ -2406,7 +2744,7 @@ msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" -#: actions/profilesettings.php:151 actions/siteadminpanel.php:294 +#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 msgid "Language" msgstr "שפה" @@ -2432,7 +2770,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "הביוגרפיה ארוכה מידי (לכל היותר 140 אותיות)" -#: actions/profilesettings.php:235 actions/siteadminpanel.php:164 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 msgid "Timezone not selected." msgstr "" @@ -2445,25 +2783,25 @@ msgstr "" msgid "Invalid tag: \"%s\"" msgstr "כתובת אתר הבית '%s' אינה חוקית" -#: actions/profilesettings.php:302 +#: actions/profilesettings.php:306 msgid "Couldn't update user for autosubscribe." msgstr "" -#: actions/profilesettings.php:359 +#: actions/profilesettings.php:363 #, fuzzy msgid "Couldn't save location prefs." msgstr "שמירת הפרופיל נכשלה." -#: actions/profilesettings.php:371 +#: actions/profilesettings.php:375 msgid "Couldn't save profile." msgstr "שמירת הפרופיל נכשלה." -#: actions/profilesettings.php:379 +#: actions/profilesettings.php:383 #, fuzzy msgid "Couldn't save tags." msgstr "שמירת הפרופיל נכשלה." -#: actions/profilesettings.php:387 lib/adminpanelaction.php:137 +#: actions/profilesettings.php:391 lib/adminpanelaction.php:137 msgid "Settings saved." msgstr "ההגדרות נשמרו." @@ -2485,39 +2823,39 @@ msgstr "קו זמן ציבורי" msgid "Public timeline" msgstr "קו זמן ציבורי" -#: actions/public.php:151 +#: actions/public.php:159 #, fuzzy msgid "Public Stream Feed (RSS 1.0)" msgstr "הזנת זרם הציבורי" -#: actions/public.php:155 +#: actions/public.php:163 #, fuzzy msgid "Public Stream Feed (RSS 2.0)" msgstr "הזנת זרם הציבורי" -#: actions/public.php:159 +#: actions/public.php:167 #, fuzzy msgid "Public Stream Feed (Atom)" msgstr "הזנת זרם הציבורי" -#: actions/public.php:179 +#: actions/public.php:187 #, php-format msgid "" "This is the public timeline for %%site.name%% but no one has posted anything " "yet." msgstr "" -#: actions/public.php:182 +#: actions/public.php:190 msgid "Be the first to post!" msgstr "" -#: actions/public.php:186 +#: actions/public.php:194 #, php-format msgid "" "Why not [register an account](%%action.register%%) and be the first to post!" msgstr "" -#: actions/public.php:233 +#: actions/public.php:241 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2526,7 +2864,7 @@ msgid "" "friends, family, and colleagues! ([Read more](%%doc.help%%))" msgstr "" -#: actions/public.php:238 +#: actions/public.php:246 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2560,7 +2898,7 @@ msgid "" "one!" msgstr "" -#: actions/publictagcloud.php:131 +#: actions/publictagcloud.php:134 msgid "Tag cloud" msgstr "" @@ -2697,7 +3035,7 @@ msgstr "שגיאה באישור הקוד." msgid "Registration successful" msgstr "" -#: actions/register.php:114 actions/register.php:503 lib/action.php:457 +#: actions/register.php:114 actions/register.php:503 lib/action.php:463 #: lib/logingroupnav.php:85 msgid "Register" msgstr "הירשם" @@ -2737,7 +3075,7 @@ msgid "Same as password above. Required." msgstr "" #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:270 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 msgid "Email" msgstr "" @@ -2825,7 +3163,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "כתובת הפרופיל שלך בשרות ביקרובלוג תואם אחר" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:365 +#: lib/userprofile.php:368 msgid "Subscribe" msgstr "הירשם כמנוי" @@ -2866,7 +3204,7 @@ msgstr "לא ניתן להירשם ללא הסכמה לרשיון" msgid "You already repeated that notice." msgstr "כבר נכנסת למערכת!" -#: actions/repeat.php:114 lib/noticelist.php:629 +#: actions/repeat.php:114 lib/noticelist.php:656 #, fuzzy msgid "Repeated" msgstr "צור" @@ -2882,6 +3220,11 @@ msgstr "צור" msgid "Replies to %s" msgstr "תגובת עבור %s" +#: actions/replies.php:127 +#, fuzzy, php-format +msgid "Replies to %1$s, page %2$d" +msgstr "תגובת עבור %s" + #: actions/replies.php:144 #, fuzzy, php-format msgid "Replies feed for %s (RSS 1.0)" @@ -2923,6 +3266,11 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "תגובת עבור %s" +#: actions/rsd.php:146 actions/version.php:157 +#, fuzzy +msgid "StatusNet" +msgstr "התמונה עודכנה." + #: actions/sandbox.php:65 actions/unsandbox.php:65 #, fuzzy msgid "You cannot sandbox users on this site." @@ -2933,6 +3281,124 @@ msgstr "לא שלחנו אלינו את הפרופיל הזה" msgid "User is already sandboxed." msgstr "למשתמש אין פרופיל." +#: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:336 +msgid "Sessions" +msgstr "" + +#: actions/sessionsadminpanel.php:65 +msgid "Session settings for this StatusNet site." +msgstr "" + +#: actions/sessionsadminpanel.php:175 +msgid "Handle sessions" +msgstr "" + +#: actions/sessionsadminpanel.php:177 +msgid "Whether to handle sessions ourselves." +msgstr "" + +#: actions/sessionsadminpanel.php:181 +msgid "Session debugging" +msgstr "" + +#: actions/sessionsadminpanel.php:183 +msgid "Turn on debugging output for sessions." +msgstr "" + +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/useradminpanel.php:293 +#, fuzzy +msgid "Save site settings" +msgstr "הגדרות" + +#: actions/showapplication.php:82 +msgid "You must be logged in to view an application." +msgstr "" + +#: actions/showapplication.php:157 +#, fuzzy +msgid "Application profile" +msgstr "להודעה אין פרופיל" + +#: actions/showapplication.php:159 lib/applicationeditform.php:180 +msgid "Icon" +msgstr "" + +#: actions/showapplication.php:169 actions/version.php:195 +#: lib/applicationeditform.php:195 +#, fuzzy +msgid "Name" +msgstr "כינוי" + +#: actions/showapplication.php:178 lib/applicationeditform.php:222 +#, fuzzy +msgid "Organization" +msgstr "מיקום" + +#: actions/showapplication.php:187 actions/version.php:198 +#: lib/applicationeditform.php:209 lib/groupeditform.php:172 +#, fuzzy +msgid "Description" +msgstr "הרשמות" + +#: actions/showapplication.php:192 actions/showgroup.php:429 +#: lib/profileaction.php:174 +msgid "Statistics" +msgstr "סטטיסטיקה" + +#: actions/showapplication.php:203 +#, php-format +msgid "Created by %1$s - %2$s access by default - %3$d users" +msgstr "" + +#: actions/showapplication.php:213 +msgid "Application actions" +msgstr "" + +#: actions/showapplication.php:236 +msgid "Reset key & secret" +msgstr "" + +#: actions/showapplication.php:261 +msgid "Application info" +msgstr "" + +#: actions/showapplication.php:263 +msgid "Consumer key" +msgstr "" + +#: actions/showapplication.php:268 +msgid "Consumer secret" +msgstr "" + +#: actions/showapplication.php:273 +msgid "Request token URL" +msgstr "" + +#: actions/showapplication.php:278 +msgid "Access token URL" +msgstr "" + +#: actions/showapplication.php:283 +msgid "Authorize URL" +msgstr "" + +#: actions/showapplication.php:288 +msgid "" +"Note: We support HMAC-SHA1 signatures. We do not support the plaintext " +"signature method." +msgstr "" + +#: actions/showapplication.php:309 +msgid "Are you sure you want to reset your consumer key and secret?" +msgstr "" + +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%1$s's favorite notices, page %2$d" +msgstr "%s וחברים" + #: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "" @@ -2982,18 +3448,23 @@ msgstr "" msgid "%s group" msgstr "" +#: actions/showgroup.php:84 +#, fuzzy, php-format +msgid "%1$s group, page %2$d" +msgstr "כל המנויים" + #: actions/showgroup.php:218 #, fuzzy msgid "Group profile" msgstr "אין הודעה כזו." #: actions/showgroup.php:263 actions/tagother.php:118 -#: actions/userauthorization.php:167 lib/userprofile.php:177 +#: actions/userauthorization.php:175 lib/userprofile.php:177 msgid "URL" msgstr "" #: actions/showgroup.php:274 actions/tagother.php:128 -#: actions/userauthorization.php:179 lib/userprofile.php:194 +#: actions/userauthorization.php:187 lib/userprofile.php:194 #, fuzzy msgid "Note" msgstr "הודעות" @@ -3041,10 +3512,6 @@ msgstr "" msgid "All members" msgstr "" -#: actions/showgroup.php:429 lib/profileaction.php:174 -msgid "Statistics" -msgstr "סטטיסטיקה" - #: actions/showgroup.php:432 #, fuzzy msgid "Created" @@ -3101,6 +3568,11 @@ msgstr "הודעות" msgid " tagged %s" msgstr "" +#: actions/showstream.php:79 +#, fuzzy, php-format +msgid "%1$s, page %2$d" +msgstr "%s וחברים" + #: actions/showstream.php:122 #, fuzzy, php-format msgid "Notice feed for %1$s tagged %2$s (RSS 1.0)" @@ -3126,25 +3598,25 @@ msgstr "הזנת הודעות של %s" msgid "FOAF for %s" msgstr "" -#: actions/showstream.php:191 +#: actions/showstream.php:200 #, php-format msgid "This is the timeline for %1$s but %2$s hasn't posted anything yet." msgstr "" -#: actions/showstream.php:196 +#: actions/showstream.php:205 msgid "" "Seen anything interesting recently? You haven't posted any notices yet, now " "would be a good time to start :)" msgstr "" -#: actions/showstream.php:198 +#: actions/showstream.php:207 #, php-format msgid "" "You can try to nudge %1$s or [post something to his or her attention](%%%%" "action.newnotice%%%%?status_textarea=%2$s)." msgstr "" -#: actions/showstream.php:234 +#: actions/showstream.php:243 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3153,7 +3625,7 @@ msgid "" "follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showstream.php:239 +#: actions/showstream.php:248 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3161,7 +3633,7 @@ msgid "" "[StatusNet](http://status.net/) tool. " msgstr "" -#: actions/showstream.php:313 +#: actions/showstream.php:305 #, fuzzy, php-format msgid "Repeat of %s" msgstr "תגובת עבור %s" @@ -3179,202 +3651,145 @@ msgstr "למשתמש אין פרופיל." msgid "Basic settings for this StatusNet site." msgstr "" -#: actions/siteadminpanel.php:146 +#: actions/siteadminpanel.php:132 msgid "Site name must have non-zero length." msgstr "" -#: actions/siteadminpanel.php:154 +#: actions/siteadminpanel.php:140 msgid "You must have a valid contact email address." msgstr "" -#: actions/siteadminpanel.php:172 +#: actions/siteadminpanel.php:158 #, php-format msgid "Unknown language \"%s\"." msgstr "" -#: actions/siteadminpanel.php:179 +#: actions/siteadminpanel.php:165 msgid "Invalid snapshot report URL." msgstr "" -#: actions/siteadminpanel.php:185 +#: actions/siteadminpanel.php:171 msgid "Invalid snapshot run value." msgstr "" -#: actions/siteadminpanel.php:191 +#: actions/siteadminpanel.php:177 msgid "Snapshot frequency must be a number." msgstr "" -#: actions/siteadminpanel.php:197 +#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "" -#: actions/siteadminpanel.php:203 +#: actions/siteadminpanel.php:189 msgid "Dupe limit must 1 or more seconds." msgstr "" -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:239 msgid "General" msgstr "" -#: actions/siteadminpanel.php:256 +#: actions/siteadminpanel.php:242 #, fuzzy msgid "Site name" msgstr "הודעה חדשה" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:243 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "" -#: actions/siteadminpanel.php:261 +#: actions/siteadminpanel.php:247 msgid "Brought by" msgstr "" -#: actions/siteadminpanel.php:262 +#: actions/siteadminpanel.php:248 msgid "Text used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:266 +#: actions/siteadminpanel.php:252 msgid "Brought by URL" msgstr "" -#: actions/siteadminpanel.php:267 +#: actions/siteadminpanel.php:253 msgid "URL used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:271 +#: actions/siteadminpanel.php:257 msgid "Contact email address for your site" msgstr "" -#: actions/siteadminpanel.php:277 +#: actions/siteadminpanel.php:263 #, fuzzy msgid "Local" msgstr "מיקום" -#: actions/siteadminpanel.php:288 +#: actions/siteadminpanel.php:274 msgid "Default timezone" msgstr "" -#: actions/siteadminpanel.php:289 +#: actions/siteadminpanel.php:275 msgid "Default timezone for the site; usually UTC." msgstr "" -#: actions/siteadminpanel.php:295 +#: actions/siteadminpanel.php:281 msgid "Default site language" msgstr "" -#: actions/siteadminpanel.php:303 -msgid "URLs" -msgstr "" - -#: actions/siteadminpanel.php:306 -#, fuzzy -msgid "Server" -msgstr "שיחזור" - -#: actions/siteadminpanel.php:306 -msgid "Site's server hostname." -msgstr "" - -#: actions/siteadminpanel.php:310 -msgid "Fancy URLs" -msgstr "" - -#: actions/siteadminpanel.php:312 -msgid "Use fancy (more readable and memorable) URLs?" -msgstr "" - -#: actions/siteadminpanel.php:318 -#, fuzzy -msgid "Access" -msgstr "קבל" - -#: actions/siteadminpanel.php:321 -#, fuzzy -msgid "Private" -msgstr "פרטיות" - -#: actions/siteadminpanel.php:323 -msgid "Prohibit anonymous users (not logged in) from viewing site?" -msgstr "" - -#: actions/siteadminpanel.php:327 -msgid "Invite only" -msgstr "" - -#: actions/siteadminpanel.php:329 -msgid "Make registration invitation only." -msgstr "" - -#: actions/siteadminpanel.php:333 -#, fuzzy -msgid "Closed" -msgstr "אין משתמש כזה." - -#: actions/siteadminpanel.php:335 -msgid "Disable new registrations." -msgstr "" - -#: actions/siteadminpanel.php:341 +#: actions/siteadminpanel.php:289 msgid "Snapshots" msgstr "" -#: actions/siteadminpanel.php:344 +#: actions/siteadminpanel.php:292 msgid "Randomly during Web hit" msgstr "" -#: actions/siteadminpanel.php:345 +#: actions/siteadminpanel.php:293 msgid "In a scheduled job" msgstr "" -#: actions/siteadminpanel.php:347 +#: actions/siteadminpanel.php:295 msgid "Data snapshots" msgstr "" -#: actions/siteadminpanel.php:348 +#: actions/siteadminpanel.php:296 msgid "When to send statistical data to status.net servers" msgstr "" -#: actions/siteadminpanel.php:353 +#: actions/siteadminpanel.php:301 msgid "Frequency" msgstr "" -#: actions/siteadminpanel.php:354 +#: actions/siteadminpanel.php:302 msgid "Snapshots will be sent once every N web hits" msgstr "" -#: actions/siteadminpanel.php:359 +#: actions/siteadminpanel.php:307 msgid "Report URL" msgstr "" -#: actions/siteadminpanel.php:360 +#: actions/siteadminpanel.php:308 msgid "Snapshots will be sent to this URL" msgstr "" -#: actions/siteadminpanel.php:367 +#: actions/siteadminpanel.php:315 msgid "Limits" msgstr "" -#: actions/siteadminpanel.php:370 +#: actions/siteadminpanel.php:318 msgid "Text limit" msgstr "" -#: actions/siteadminpanel.php:370 +#: actions/siteadminpanel.php:318 msgid "Maximum number of characters for notices." msgstr "" -#: actions/siteadminpanel.php:374 +#: actions/siteadminpanel.php:322 msgid "Dupe limit" msgstr "" -#: actions/siteadminpanel.php:374 +#: actions/siteadminpanel.php:322 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" -#: actions/siteadminpanel.php:388 actions/useradminpanel.php:313 -#, fuzzy -msgid "Save site settings" -msgstr "הגדרות" - #: actions/smssettings.php:58 #, fuzzy msgid "SMS settings" @@ -3475,17 +3890,27 @@ msgstr "" msgid "You are not subscribed to that profile." msgstr "לא שלחנו אלינו את הפרופיל הזה" -#: actions/subedit.php:83 +#: actions/subedit.php:83 classes/Subscription.php:89 +#: classes/Subscription.php:116 #, fuzzy msgid "Could not save subscription." msgstr "יצירת המנוי נכשלה." -#: actions/subscribe.php:55 -#, fuzzy -msgid "Not a local user." -msgstr "אין משתמש כזה." +#: actions/subscribe.php:77 +msgid "This action only accepts POST requests." +msgstr "" -#: actions/subscribe.php:69 +#: actions/subscribe.php:107 +#, fuzzy +msgid "No such profile." +msgstr "אין הודעה כזו." + +#: actions/subscribe.php:117 +#, fuzzy +msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." +msgstr "לא שלחנו אלינו את הפרופיל הזה" + +#: actions/subscribe.php:145 #, fuzzy msgid "Subscribed" msgstr "הירשם כמנוי" @@ -3546,7 +3971,7 @@ msgstr "אלה האנשים שלהודעות שלהם אתה מאזין." msgid "These are the people whose notices %s listens to." msgstr "אלה האנשים ש%s מאזין להודעות שלהם." -#: actions/subscriptions.php:121 +#: actions/subscriptions.php:126 #, php-format msgid "" "You're not listening to anyone's notices right now, try subscribing to " @@ -3556,20 +3981,25 @@ msgid "" "automatically subscribe to people you already follow there." msgstr "" -#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#: actions/subscriptions.php:128 actions/subscriptions.php:132 #, fuzzy, php-format msgid "%s is not listening to anyone." msgstr "%1$s כעת מאזין להודעות שלך ב-%2$s" -#: actions/subscriptions.php:194 +#: actions/subscriptions.php:199 #, fuzzy msgid "Jabber" msgstr "אין זיהוי Jabber כזה." -#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:204 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "סמס" +#: actions/tag.php:68 +#, fuzzy, php-format +msgid "Notices tagged with %1$s, page %2$d" +msgstr "מיקרובלוג מאת %s" + #: actions/tag.php:86 #, fuzzy, php-format msgid "Notice feed for tag %s (RSS 1.0)" @@ -3600,7 +4030,8 @@ msgstr "" msgid "User profile" msgstr "למשתמש אין פרופיל." -#: actions/tagother.php:81 lib/userprofile.php:102 +#: actions/tagother.php:81 actions/userauthorization.php:132 +#: lib/userprofile.php:102 msgid "Photo" msgstr "" @@ -3662,7 +4093,7 @@ msgstr "השרת לא החזיר כתובת פרופיל" msgid "Unsubscribed" msgstr "בטל מנוי" -#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#: actions/updateprofile.php:62 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -3677,88 +4108,68 @@ msgstr "מתשמש" msgid "User settings for this StatusNet site." msgstr "" -#: actions/useradminpanel.php:149 +#: actions/useradminpanel.php:148 msgid "Invalid bio limit. Must be numeric." msgstr "" -#: actions/useradminpanel.php:155 +#: actions/useradminpanel.php:154 msgid "Invalid welcome text. Max length is 255 characters." msgstr "" -#: actions/useradminpanel.php:165 +#: actions/useradminpanel.php:164 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 +#: actions/useradminpanel.php:217 lib/accountsettingsaction.php:108 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "פרופיל" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:221 msgid "Bio Limit" msgstr "" -#: actions/useradminpanel.php:223 +#: actions/useradminpanel.php:222 msgid "Maximum length of a profile bio in characters." msgstr "" -#: actions/useradminpanel.php:231 +#: actions/useradminpanel.php:230 #, fuzzy msgid "New users" msgstr "מחק" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:234 msgid "New user welcome" msgstr "" -#: actions/useradminpanel.php:236 +#: actions/useradminpanel.php:235 msgid "Welcome text for new users (Max 255 chars)." msgstr "" -#: actions/useradminpanel.php:241 +#: actions/useradminpanel.php:240 #, fuzzy msgid "Default subscription" msgstr "כל המנויים" -#: actions/useradminpanel.php:242 +#: actions/useradminpanel.php:241 #, fuzzy msgid "Automatically subscribe new users to this user." msgstr "ההרשמה אושרה" -#: actions/useradminpanel.php:251 +#: actions/useradminpanel.php:250 #, fuzzy msgid "Invitations" msgstr "מיקום" -#: actions/useradminpanel.php:256 +#: actions/useradminpanel.php:255 msgid "Invitations enabled" msgstr "" -#: actions/useradminpanel.php:258 +#: actions/useradminpanel.php:257 msgid "Whether to allow users to invite new users." msgstr "" -#: actions/useradminpanel.php:265 -msgid "Sessions" -msgstr "" - -#: actions/useradminpanel.php:270 -msgid "Handle sessions" -msgstr "" - -#: actions/useradminpanel.php:272 -msgid "Whether to handle sessions ourselves." -msgstr "" - -#: actions/useradminpanel.php:276 -msgid "Session debugging" -msgstr "" - -#: actions/useradminpanel.php:278 -msgid "Turn on debugging output for sessions." -msgstr "" - #: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "אשר מנוי" @@ -3773,38 +4184,38 @@ msgstr "" "בדוק את הפרטים כדי לוודא שברצונך להירשם כמנוי להודעות משתמש זה. אם אינך רוצה " "להירשם, לחץ \"בטל\"." -#: actions/userauthorization.php:188 actions/version.php:165 +#: actions/userauthorization.php:196 actions/version.php:165 msgid "License" msgstr "" -#: actions/userauthorization.php:209 +#: actions/userauthorization.php:217 msgid "Accept" msgstr "קבל" -#: actions/userauthorization.php:210 lib/subscribeform.php:115 +#: actions/userauthorization.php:218 lib/subscribeform.php:115 #: lib/subscribeform.php:139 #, fuzzy msgid "Subscribe to this user" msgstr "ההרשמה אושרה" -#: actions/userauthorization.php:211 +#: actions/userauthorization.php:219 msgid "Reject" msgstr "דחה" -#: actions/userauthorization.php:212 +#: actions/userauthorization.php:220 #, fuzzy msgid "Reject this subscription" msgstr "כל המנויים" -#: actions/userauthorization.php:225 +#: actions/userauthorization.php:232 msgid "No authorization request!" msgstr "לא התבקש אישור!" -#: actions/userauthorization.php:247 +#: actions/userauthorization.php:254 msgid "Subscription authorized" msgstr "ההרשמה אושרה" -#: actions/userauthorization.php:249 +#: actions/userauthorization.php:256 #, fuzzy msgid "" "The subscription has been authorized, but no callback URL was passed. Check " @@ -3814,11 +4225,11 @@ msgstr "" "המנוי אושר, אבל לא התקבלה כתובת אליה ניתן לחזור. בדוק את הוראות האתר וחפש " "כיצד לאשר מנוי. אסימון המנוי שלך הוא:" -#: actions/userauthorization.php:259 +#: actions/userauthorization.php:266 msgid "Subscription rejected" msgstr "ההרשמה נדחתה" -#: actions/userauthorization.php:261 +#: actions/userauthorization.php:268 #, fuzzy msgid "" "The subscription has been rejected, but no callback URL was passed. Check " @@ -3828,37 +4239,37 @@ msgstr "" "המנוי נדחה, אבל לא התקבלה כתובת לחזרה. בדוק את הוראות האתר וחפש כיצד להשלים " "דחיית מנוי." -#: actions/userauthorization.php:296 +#: actions/userauthorization.php:303 #, php-format msgid "Listener URI ‘%s’ not found here." msgstr "" -#: actions/userauthorization.php:301 +#: actions/userauthorization.php:308 #, php-format msgid "Listenee URI ‘%s’ is too long." msgstr "" -#: actions/userauthorization.php:307 +#: actions/userauthorization.php:314 #, php-format msgid "Listenee URI ‘%s’ is a local user." msgstr "" -#: actions/userauthorization.php:322 +#: actions/userauthorization.php:329 #, php-format msgid "Profile URL ‘%s’ is for a local user." msgstr "" -#: actions/userauthorization.php:338 +#: actions/userauthorization.php:345 #, php-format msgid "Avatar URL ‘%s’ is not valid." msgstr "" -#: actions/userauthorization.php:343 +#: actions/userauthorization.php:350 #, fuzzy, php-format msgid "Can’t read avatar URL ‘%s’." msgstr "לא ניתן לקרוא את ה-URL '%s' של התמונה" -#: actions/userauthorization.php:348 +#: actions/userauthorization.php:355 #, fuzzy, php-format msgid "Wrong image type for avatar URL ‘%s’." msgstr "סוג התמונה של '%s' אינו מתאים" @@ -3878,6 +4289,11 @@ msgstr "" msgid "Enjoy your hotdog!" msgstr "" +#: actions/usergroups.php:64 +#, fuzzy, php-format +msgid "%1$s groups, page %2$d" +msgstr "כל המנויים" + #: actions/usergroups.php:130 msgid "Search for more groups" msgstr "" @@ -3904,11 +4320,6 @@ msgid "" "Inc. and contributors." msgstr "" -#: actions/version.php:157 -#, fuzzy -msgid "StatusNet" -msgstr "התמונה עודכנה." - #: actions/version.php:161 msgid "Contributors" msgstr "" @@ -3940,12 +4351,7 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:195 -#, fuzzy -msgid "Name" -msgstr "כינוי" - -#: actions/version.php:196 lib/action.php:741 +#: actions/version.php:196 lib/action.php:747 #, fuzzy msgid "Version" msgstr "אישי" @@ -3954,11 +4360,6 @@ msgstr "אישי" msgid "Author(s)" msgstr "" -#: actions/version.php:198 lib/groupeditform.php:172 -#, fuzzy -msgid "Description" -msgstr "הרשמות" - #: classes/File.php:144 #, php-format msgid "" @@ -4008,61 +4409,88 @@ msgstr "" msgid "Could not update message with new URI." msgstr "" -#: classes/Notice.php:171 +#: classes/Notice.php:157 #, php-format msgid "DB error inserting hashtag: %s" msgstr "" -#: classes/Notice.php:225 +#: classes/Notice.php:222 #, fuzzy msgid "Problem saving notice. Too long." msgstr "בעיה בשמירת ההודעה." -#: classes/Notice.php:229 +#: classes/Notice.php:226 #, fuzzy msgid "Problem saving notice. Unknown user." msgstr "בעיה בשמירת ההודעה." -#: classes/Notice.php:234 +#: classes/Notice.php:231 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: classes/Notice.php:240 +#: classes/Notice.php:237 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." msgstr "" -#: classes/Notice.php:246 +#: classes/Notice.php:243 msgid "You are banned from posting notices on this site." msgstr "" -#: classes/Notice.php:305 classes/Notice.php:330 +#: classes/Notice.php:309 classes/Notice.php:335 msgid "Problem saving notice." msgstr "בעיה בשמירת ההודעה." -#: classes/Notice.php:1052 -#, php-format -msgid "DB error inserting reply: %s" -msgstr "שגיאת מסד נתונים בהכנסת התגובה: %s" +#: classes/Notice.php:882 +#, fuzzy +msgid "Problem saving group inbox." +msgstr "בעיה בשמירת ההודעה." -#: classes/Notice.php:1423 +#: classes/Notice.php:1407 #, php-format msgid "RT @%1$s %2$s" msgstr "" -#: classes/User.php:382 +#: classes/Subscription.php:66 lib/oauthstore.php:465 +msgid "You have been banned from subscribing." +msgstr "" + +#: classes/Subscription.php:70 +msgid "Already subscribed!" +msgstr "" + +#: classes/Subscription.php:74 +#, fuzzy +msgid "User has blocked you." +msgstr "למשתמש אין פרופיל." + +#: classes/Subscription.php:157 +#, fuzzy +msgid "Not subscribed!" +msgstr "לא מנוי!" + +#: classes/Subscription.php:163 +#, fuzzy +msgid "Couldn't delete self-subscription." +msgstr "מחיקת המנוי לא הצליחה." + +#: classes/Subscription.php:179 lib/subs.php:69 +msgid "Couldn't delete subscription." +msgstr "מחיקת המנוי לא הצליחה." + +#: classes/User.php:372 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "" -#: classes/User_group.php:380 +#: classes/User_group.php:423 #, fuzzy msgid "Could not create group." msgstr "שמירת מידע התמונה נכשל" -#: classes/User_group.php:409 +#: classes/User_group.php:452 #, fuzzy msgid "Could not set group membership." msgstr "יצירת המנוי נכשלה." @@ -4106,136 +4534,131 @@ msgstr "הסטטוס של %1$s ב-%2$s " msgid "Untitled page" msgstr "" -#: lib/action.php:427 +#: lib/action.php:433 msgid "Primary site navigation" msgstr "" -#: lib/action.php:433 +#: lib/action.php:439 msgid "Home" msgstr "בית" -#: lib/action.php:433 +#: lib/action.php:439 msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:435 -#, fuzzy -msgid "Account" -msgstr "אודות" - -#: lib/action.php:435 +#: lib/action.php:441 msgid "Change your email, avatar, password, profile" msgstr "" -#: lib/action.php:438 +#: lib/action.php:444 msgid "Connect" msgstr "התחבר" -#: lib/action.php:438 +#: lib/action.php:444 #, fuzzy msgid "Connect to services" msgstr "נכשלה ההפניה לשרת: %s" -#: lib/action.php:442 +#: lib/action.php:448 #, fuzzy msgid "Change site configuration" msgstr "הרשמות" -#: lib/action.php:446 lib/subgroupnav.php:105 +#: lib/action.php:452 lib/subgroupnav.php:105 msgid "Invite" msgstr "" -#: lib/action.php:447 lib/subgroupnav.php:106 +#: lib/action.php:453 lib/subgroupnav.php:106 #, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "" -#: lib/action.php:452 +#: lib/action.php:458 msgid "Logout" msgstr "צא" -#: lib/action.php:452 +#: lib/action.php:458 msgid "Logout from the site" msgstr "" -#: lib/action.php:457 +#: lib/action.php:463 #, fuzzy msgid "Create an account" msgstr "צור חשבון חדש" -#: lib/action.php:460 +#: lib/action.php:466 msgid "Login to the site" msgstr "" -#: lib/action.php:463 lib/action.php:726 +#: lib/action.php:469 lib/action.php:732 msgid "Help" msgstr "עזרה" -#: lib/action.php:463 +#: lib/action.php:469 #, fuzzy msgid "Help me!" msgstr "עזרה" -#: lib/action.php:466 lib/searchaction.php:127 +#: lib/action.php:472 lib/searchaction.php:127 msgid "Search" msgstr "חיפוש" -#: lib/action.php:466 +#: lib/action.php:472 msgid "Search for people or text" msgstr "" -#: lib/action.php:487 +#: lib/action.php:493 #, fuzzy msgid "Site notice" msgstr "הודעה חדשה" -#: lib/action.php:553 +#: lib/action.php:559 msgid "Local views" msgstr "" -#: lib/action.php:619 +#: lib/action.php:625 #, fuzzy msgid "Page notice" msgstr "הודעה חדשה" -#: lib/action.php:721 +#: lib/action.php:727 #, fuzzy msgid "Secondary site navigation" msgstr "הרשמות" -#: lib/action.php:728 +#: lib/action.php:734 msgid "About" msgstr "אודות" -#: lib/action.php:730 +#: lib/action.php:736 msgid "FAQ" msgstr "רשימת שאלות נפוצות" -#: lib/action.php:734 +#: lib/action.php:740 msgid "TOS" msgstr "" -#: lib/action.php:737 +#: lib/action.php:743 msgid "Privacy" msgstr "פרטיות" -#: lib/action.php:739 +#: lib/action.php:745 msgid "Source" msgstr "מקור" -#: lib/action.php:743 +#: lib/action.php:749 msgid "Contact" msgstr "צור קשר" -#: lib/action.php:745 +#: lib/action.php:751 msgid "Badge" msgstr "" -#: lib/action.php:773 +#: lib/action.php:779 msgid "StatusNet software license" msgstr "" -#: lib/action.php:776 +#: lib/action.php:782 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4244,12 +4667,12 @@ msgstr "" "**%%site.name%%** הוא שרות ביקרובלוג הניתן על ידי [%%site.broughtby%%](%%" "site.broughtbyurl%%)." -#: lib/action.php:778 +#: lib/action.php:784 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** הוא שרות ביקרובלוג." -#: lib/action.php:780 +#: lib/action.php:786 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4260,35 +4683,57 @@ msgstr "" "s, המופצת תחת רשיון [GNU Affero General Public License](http://www.fsf.org/" "licensing/licenses/agpl-3.0.html)" -#: lib/action.php:794 +#: lib/action.php:801 #, fuzzy msgid "Site content license" msgstr "הודעה חדשה" -#: lib/action.php:803 +#: lib/action.php:806 +#, php-format +msgid "Content and data of %1$s are private and confidential." +msgstr "" + +#: lib/action.php:811 +#, php-format +msgid "Content and data copyright by %1$s. All rights reserved." +msgstr "" + +#: lib/action.php:814 +msgid "Content and data copyright by contributors. All rights reserved." +msgstr "" + +#: lib/action.php:827 msgid "All " msgstr "" -#: lib/action.php:808 +#: lib/action.php:833 msgid "license." msgstr "" -#: lib/action.php:1102 +#: lib/action.php:1132 msgid "Pagination" msgstr "" -#: lib/action.php:1111 +#: lib/action.php:1141 #, fuzzy msgid "After" msgstr "<< אחרי" -#: lib/action.php:1119 +#: lib/action.php:1149 #, fuzzy msgid "Before" msgstr "לפני >>" -#: lib/action.php:1167 -msgid "There was a problem with your session token." +#: lib/activity.php:382 +msgid "Can't handle remote content yet." +msgstr "" + +#: lib/activity.php:410 +msgid "Can't handle embedded XML content yet." +msgstr "" + +#: lib/activity.php:414 +msgid "Can't handle embedded Base64 content yet." msgstr "" #: lib/adminpanelaction.php:96 @@ -4320,11 +4765,105 @@ msgstr "הרשמות" msgid "Design configuration" msgstr "" -#: lib/adminpanelaction.php:322 lib/adminpanelaction.php:327 +#: lib/adminpanelaction.php:322 +#, fuzzy +msgid "User configuration" +msgstr "הרשמות" + +#: lib/adminpanelaction.php:327 +#, fuzzy +msgid "Access configuration" +msgstr "הרשמות" + +#: lib/adminpanelaction.php:332 #, fuzzy msgid "Paths configuration" msgstr "הרשמות" +#: lib/adminpanelaction.php:337 +#, fuzzy +msgid "Sessions configuration" +msgstr "הרשמות" + +#: lib/apiauth.php:95 +msgid "API resource requires read-write access, but you only have read access." +msgstr "" + +#: lib/apiauth.php:273 +#, php-format +msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" +msgstr "" + +#: lib/applicationeditform.php:136 +msgid "Edit application" +msgstr "" + +#: lib/applicationeditform.php:184 +msgid "Icon for this application" +msgstr "" + +#: lib/applicationeditform.php:204 +#, fuzzy, php-format +msgid "Describe your application in %d characters" +msgstr "תאר את עצמך ואת נושאי העניין שלך ב-140 אותיות" + +#: lib/applicationeditform.php:207 +#, fuzzy +msgid "Describe your application" +msgstr "תאר את עצמך ואת נושאי העניין שלך ב-140 אותיות" + +#: lib/applicationeditform.php:216 +#, fuzzy +msgid "Source URL" +msgstr "מקור" + +#: lib/applicationeditform.php:218 +#, fuzzy +msgid "URL of the homepage of this application" +msgstr "הכתובת של אתר הבית שלך, בלוג, או פרופיל באתר אחר " + +#: lib/applicationeditform.php:224 +msgid "Organization responsible for this application" +msgstr "" + +#: lib/applicationeditform.php:230 +#, fuzzy +msgid "URL for the homepage of the organization" +msgstr "הכתובת של אתר הבית שלך, בלוג, או פרופיל באתר אחר " + +#: lib/applicationeditform.php:236 +msgid "URL to redirect to after authentication" +msgstr "" + +#: lib/applicationeditform.php:258 +msgid "Browser" +msgstr "" + +#: lib/applicationeditform.php:274 +msgid "Desktop" +msgstr "" + +#: lib/applicationeditform.php:275 +msgid "Type of application, browser or desktop" +msgstr "" + +#: lib/applicationeditform.php:297 +msgid "Read-only" +msgstr "" + +#: lib/applicationeditform.php:315 +msgid "Read-write" +msgstr "" + +#: lib/applicationeditform.php:316 +msgid "Default access for this application: read-only, or read-write" +msgstr "" + +#: lib/applicationlist.php:154 +#, fuzzy +msgid "Revoke" +msgstr "הסר" + #: lib/attachmentlist.php:87 msgid "Attachments" msgstr "" @@ -4346,12 +4885,12 @@ msgstr "" msgid "Tags for this attachment" msgstr "" -#: lib/authenticationplugin.php:182 lib/authenticationplugin.php:187 +#: lib/authenticationplugin.php:218 lib/authenticationplugin.php:223 #, fuzzy msgid "Password changing failed" msgstr "הסיסמה נשמרה." -#: lib/authenticationplugin.php:197 +#: lib/authenticationplugin.php:233 #, fuzzy msgid "Password changing is not allowed" msgstr "הסיסמה נשמרה." @@ -4507,83 +5046,93 @@ msgstr "בעיה בשמירת ההודעה." msgid "Specify the name of the user to subscribe to" msgstr "" -#: lib/command.php:554 +#: lib/command.php:554 lib/command.php:589 +#, fuzzy +msgid "No such user" +msgstr "אין משתמש כזה." + +#: lib/command.php:561 #, php-format msgid "Subscribed to %s" msgstr "" -#: lib/command.php:575 +#: lib/command.php:582 lib/command.php:685 msgid "Specify the name of the user to unsubscribe from" msgstr "" -#: lib/command.php:582 +#: lib/command.php:595 #, php-format msgid "Unsubscribed from %s" msgstr "" -#: lib/command.php:600 lib/command.php:623 +#: lib/command.php:613 lib/command.php:636 msgid "Command not yet implemented." msgstr "" -#: lib/command.php:603 +#: lib/command.php:616 msgid "Notification off." msgstr "" -#: lib/command.php:605 +#: lib/command.php:618 msgid "Can't turn off notification." msgstr "" -#: lib/command.php:626 +#: lib/command.php:639 msgid "Notification on." msgstr "" -#: lib/command.php:628 +#: lib/command.php:641 msgid "Can't turn on notification." msgstr "" -#: lib/command.php:641 +#: lib/command.php:654 msgid "Login command is disabled" msgstr "" -#: lib/command.php:652 +#: lib/command.php:665 #, php-format msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "" -#: lib/command.php:668 +#: lib/command.php:692 +#, fuzzy, php-format +msgid "Unsubscribed %s" +msgstr "בטל מנוי" + +#: lib/command.php:709 #, fuzzy msgid "You are not subscribed to anyone." msgstr "לא שלחנו אלינו את הפרופיל הזה" -#: lib/command.php:670 +#: lib/command.php:711 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "לא שלחנו אלינו את הפרופיל הזה" msgstr[1] "לא שלחנו אלינו את הפרופיל הזה" -#: lib/command.php:690 +#: lib/command.php:731 #, fuzzy msgid "No one is subscribed to you." msgstr "הרשמה מרוחקת" -#: lib/command.php:692 +#: lib/command.php:733 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "הרשמה מרוחקת" msgstr[1] "הרשמה מרוחקת" -#: lib/command.php:712 +#: lib/command.php:753 #, fuzzy msgid "You are not a member of any groups." msgstr "לא שלחנו אלינו את הפרופיל הזה" -#: lib/command.php:714 +#: lib/command.php:755 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "לא שלחנו אלינו את הפרופיל הזה" msgstr[1] "לא שלחנו אלינו את הפרופיל הזה" -#: lib/command.php:728 +#: lib/command.php:769 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -4597,6 +5146,7 @@ msgid "" "d - direct message to user\n" "get - get last notice from user\n" "whois - get profile info on user\n" +"lose - force user to stop following you\n" "fav - add user's last notice as a 'fave'\n" "fav # - add notice with the given id as a 'fave'\n" "repeat # - repeat a notice with a given id\n" @@ -4624,20 +5174,20 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:131 +#: lib/common.php:136 #, fuzzy msgid "No configuration file found. " msgstr "אין קוד אישור." -#: lib/common.php:132 +#: lib/common.php:137 msgid "I looked for configuration files in the following places: " msgstr "" -#: lib/common.php:134 +#: lib/common.php:139 msgid "You may wish to run the installer to fix this." msgstr "" -#: lib/common.php:135 +#: lib/common.php:140 msgid "Go to the installer." msgstr "" @@ -4653,6 +5203,15 @@ msgstr "" msgid "Updates by SMS" msgstr "" +#: lib/connectsettingsaction.php:120 +#, fuzzy +msgid "Connections" +msgstr "התחבר" + +#: lib/connectsettingsaction.php:121 +msgid "Authorized connected applications" +msgstr "" + #: lib/dberroraction.php:60 msgid "Database error" msgstr "" @@ -4844,12 +5403,12 @@ msgstr "" msgid "kB" msgstr "" -#: lib/jabber.php:202 +#: lib/jabber.php:220 #, php-format msgid "[%s]" msgstr "" -#: lib/jabber.php:385 +#: lib/jabber.php:400 #, php-format msgid "Unknown inbox source %d." msgstr "" @@ -5053,7 +5612,7 @@ msgid "" "users in conversation. People can send you messages for your eyes only." msgstr "" -#: lib/mailbox.php:227 lib/noticelist.php:477 +#: lib/mailbox.php:227 lib/noticelist.php:482 msgid "from" msgstr "" @@ -5173,61 +5732,57 @@ msgid "Do not share my location" msgstr "שמירת הפרופיל נכשלה." #: lib/noticeform.php:216 -msgid "Hide this info" -msgstr "" - -#: lib/noticeform.php:217 msgid "" "Sorry, retrieving your geo location is taking longer than expected, please " "try again later" msgstr "" -#: lib/noticelist.php:428 +#: lib/noticelist.php:429 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "" -#: lib/noticelist.php:429 +#: lib/noticelist.php:430 #, fuzzy msgid "N" msgstr "לא" -#: lib/noticelist.php:429 +#: lib/noticelist.php:430 msgid "S" msgstr "" -#: lib/noticelist.php:430 +#: lib/noticelist.php:431 msgid "E" msgstr "" -#: lib/noticelist.php:430 +#: lib/noticelist.php:431 msgid "W" msgstr "" -#: lib/noticelist.php:436 +#: lib/noticelist.php:438 msgid "at" msgstr "" -#: lib/noticelist.php:531 +#: lib/noticelist.php:558 #, fuzzy msgid "in context" msgstr "אין תוכן!" -#: lib/noticelist.php:556 +#: lib/noticelist.php:583 #, fuzzy msgid "Repeated by" msgstr "צור" -#: lib/noticelist.php:585 +#: lib/noticelist.php:610 msgid "Reply to this notice" msgstr "" -#: lib/noticelist.php:586 +#: lib/noticelist.php:611 #, fuzzy msgid "Reply" msgstr "הגב" -#: lib/noticelist.php:628 +#: lib/noticelist.php:655 #, fuzzy msgid "Notice repeated" msgstr "הודעות" @@ -5261,11 +5816,7 @@ msgstr "שגיאה בהכנסת פרופיל מרוחק" msgid "Duplicate notice" msgstr "הודעה חדשה" -#: lib/oauthstore.php:466 lib/subs.php:48 -msgid "You have been banned from subscribing." -msgstr "" - -#: lib/oauthstore.php:491 +#: lib/oauthstore.php:490 msgid "Couldn't insert new subscription." msgstr "הכנסת מנוי חדש נכשלה." @@ -5281,19 +5832,19 @@ msgstr "תגובות" msgid "Favorites" msgstr "מועדפים" -#: lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "" -#: lib/personalgroupnav.php:125 +#: lib/personalgroupnav.php:126 msgid "Your incoming messages" msgstr "" -#: lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 msgid "Outbox" msgstr "" -#: lib/personalgroupnav.php:130 +#: lib/personalgroupnav.php:131 msgid "Your sent messages" msgstr "" @@ -5376,6 +5927,10 @@ msgstr "אין הודעה כזו." msgid "Repeat this notice" msgstr "אין הודעה כזו." +#: lib/router.php:665 +msgid "No single user defined for single-user mode." +msgstr "" + #: lib/sandboxform.php:67 msgid "Sandbox" msgstr "" @@ -5448,37 +6003,6 @@ msgstr "הרשמה מרוחקת" msgid "Groups %s is a member of" msgstr "" -#: lib/subs.php:52 -msgid "Already subscribed!" -msgstr "" - -#: lib/subs.php:56 -#, fuzzy -msgid "User has blocked you." -msgstr "למשתמש אין פרופיל." - -#: lib/subs.php:63 -msgid "Could not subscribe." -msgstr "" - -#: lib/subs.php:82 -msgid "Could not subscribe other to you." -msgstr "" - -#: lib/subs.php:137 -#, fuzzy -msgid "Not subscribed!" -msgstr "לא מנוי!" - -#: lib/subs.php:142 -#, fuzzy -msgid "Couldn't delete self-subscription." -msgstr "מחיקת המנוי לא הצליחה." - -#: lib/subs.php:158 -msgid "Couldn't delete subscription." -msgstr "מחיקת המנוי לא הצליחה." - #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -5533,69 +6057,69 @@ msgstr "תמונה" msgid "User actions" msgstr "" -#: lib/userprofile.php:248 +#: lib/userprofile.php:251 #, fuzzy msgid "Edit profile settings" msgstr "הגדרות הפרופיל" -#: lib/userprofile.php:249 +#: lib/userprofile.php:252 msgid "Edit" msgstr "" -#: lib/userprofile.php:272 +#: lib/userprofile.php:275 msgid "Send a direct message to this user" msgstr "" -#: lib/userprofile.php:273 +#: lib/userprofile.php:276 #, fuzzy msgid "Message" msgstr "הודעה חדשה" -#: lib/userprofile.php:311 +#: lib/userprofile.php:314 msgid "Moderate" msgstr "" -#: lib/util.php:877 +#: lib/util.php:952 msgid "a few seconds ago" msgstr "לפני מספר שניות" -#: lib/util.php:879 +#: lib/util.php:954 msgid "about a minute ago" msgstr "לפני כדקה" -#: lib/util.php:881 +#: lib/util.php:956 #, php-format msgid "about %d minutes ago" msgstr "לפני כ-%d דקות" -#: lib/util.php:883 +#: lib/util.php:958 msgid "about an hour ago" msgstr "לפני כשעה" -#: lib/util.php:885 +#: lib/util.php:960 #, php-format msgid "about %d hours ago" msgstr "לפני כ-%d שעות" -#: lib/util.php:887 +#: lib/util.php:962 msgid "about a day ago" msgstr "לפני כיום" -#: lib/util.php:889 +#: lib/util.php:964 #, php-format msgid "about %d days ago" msgstr "לפני כ-%d ימים" -#: lib/util.php:891 +#: lib/util.php:966 msgid "about a month ago" msgstr "לפני כחודש" -#: lib/util.php:893 +#: lib/util.php:968 #, php-format msgid "about %d months ago" msgstr "לפני כ-%d חודשים" -#: lib/util.php:895 +#: lib/util.php:970 msgid "about a year ago" msgstr "לפני כשנה" @@ -5609,7 +6133,7 @@ msgstr "לאתר הבית יש כתובת לא חוקית." msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "" -#: scripts/xmppdaemon.php:301 +#: lib/xmppmanager.php:402 #, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "" diff --git a/locale/hsb/LC_MESSAGES/statusnet.po b/locale/hsb/LC_MESSAGES/statusnet.po index 8f548104d9..7b6870afec 100644 --- a/locale/hsb/LC_MESSAGES/statusnet.po +++ b/locale/hsb/LC_MESSAGES/statusnet.po @@ -9,18 +9,73 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-01-13 22:04+0000\n" -"PO-Revision-Date: 2010-01-13 22:05:25+0000\n" +"POT-Creation-Date: 2010-02-24 23:49+0000\n" +"PO-Revision-Date: 2010-02-24 23:50:58+0000\n" "Language-Team: Dutch\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha (r61027); Translate extension (2010-01-04)\n" +"X-Generator: MediaWiki 1.17alpha (r62925); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: hsb\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : (n%100==3 || " "n%100==4) ? 2 : 3)\n" +#: actions/accessadminpanel.php:54 lib/adminpanelaction.php:326 +msgid "Access" +msgstr "Přistup" + +#: actions/accessadminpanel.php:65 +#, fuzzy +msgid "Site access settings" +msgstr "Sydłowe nastajenja składować" + +#: actions/accessadminpanel.php:158 +#, fuzzy +msgid "Registration" +msgstr "Registrować" + +#: actions/accessadminpanel.php:161 +msgid "Private" +msgstr "Priwatny" + +#: actions/accessadminpanel.php:163 +msgid "Prohibit anonymous users (not logged in) from viewing site?" +msgstr "" + +#: actions/accessadminpanel.php:167 +msgid "Invite only" +msgstr "Jenož přeprosyć" + +#: actions/accessadminpanel.php:169 +msgid "Make registration invitation only." +msgstr "" + +#: actions/accessadminpanel.php:173 +msgid "Closed" +msgstr "Začinjeny" + +#: actions/accessadminpanel.php:175 +msgid "Disable new registrations." +msgstr "Nowe registrowanja znjemóžnić." + +#: actions/accessadminpanel.php:189 actions/designadminpanel.php:586 +#: actions/emailsettings.php:195 actions/imsettings.php:163 +#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 +#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 +#: actions/siteadminpanel.php:336 actions/smssettings.php:181 +#: actions/subscriptions.php:208 actions/tagother.php:154 +#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 lib/designsettings.php:256 +#: lib/groupeditform.php:202 +msgid "Save" +msgstr "Składować" + +#: actions/accessadminpanel.php:189 +#, fuzzy +msgid "Save access settings" +msgstr "Sydłowe nastajenja składować" + #: actions/all.php:63 actions/public.php:97 actions/replies.php:92 #: actions/showfavorites.php:137 actions/tag.php:51 msgid "No such page" @@ -35,25 +90,29 @@ msgstr "Strona njeeksistuje" #: 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:144 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apistatusesupdate.php:148 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:78 #: actions/apitimelinehome.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/otp.php:76 #: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154 -#: actions/replies.php:73 actions/repliesrss.php:38 +#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 #: 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:302 lib/command.php:355 #: lib/command.php:401 lib/command.php:462 lib/command.php:518 #: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 -#: lib/subs.php:34 lib/subs.php:125 msgid "No such user." msgstr "Wužiwar njeeksistuje" +#: actions/all.php:84 +#, php-format +msgid "%1$s and friends, page %2$d" +msgstr "%1$s a přećeljo, strona %2$d" + #: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 -#: actions/apitimelinefriends.php:115 actions/apitimelinehome.php:115 +#: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" @@ -94,7 +153,7 @@ msgid "" "his or her attention](%%%%action.newnotice%%%%?status_textarea=%3$s)." msgstr "" -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211 #, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " @@ -105,8 +164,8 @@ msgstr "" msgid "You and friends" msgstr "Ty a přećeljo" -#: actions/allrss.php:119 actions/apitimelinefriends.php:122 -#: actions/apitimelinehome.php:122 +#: actions/allrss.php:119 actions/apitimelinefriends.php:119 +#: actions/apitimelinehome.php:120 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "" @@ -116,23 +175,23 @@ msgstr "" #: actions/apiaccountupdateprofile.php:97 #: actions/apiaccountupdateprofilebackgroundimage.php:94 #: actions/apiaccountupdateprofilecolors.php:118 -#: 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:136 actions/apigroupismember.php:114 -#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 -#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 -#: actions/apigroupmembership.php:106 actions/apigroupshow.php:105 -#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 -#: actions/apistatusesretweets.php:112 actions/apistatusesshow.php:108 -#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93 -#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:146 -#: actions/apitimelinefriends.php:156 actions/apitimelinegroup.php:150 -#: actions/apitimelinehome.php:156 actions/apitimelinementions.php:151 -#: actions/apitimelinepublic.php:131 actions/apitimelineretweetedbyme.php:122 +#: actions/apiaccountverifycredentials.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:128 actions/apigroupcreate.php:136 +#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 +#: actions/apigroupleave.php:141 actions/apigrouplist.php:132 +#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 +#: actions/apigroupshow.php:115 actions/apihelptest.php:88 +#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 +#: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 #: actions/apitimelineretweetedtome.php:121 -#: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141 -#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 +#: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 +#: actions/apitimelineuser.php:207 actions/apiusershow.php:101 msgid "API method not found." msgstr "API-metoda njenamakana." @@ -146,7 +205,7 @@ msgstr "API-metoda njenamakana." #: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 #: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 #: actions/apigroupleave.php:91 actions/apistatusesretweet.php:65 -#: actions/apistatusesupdate.php:114 +#: actions/apistatusesupdate.php:118 msgid "This method requires a POST." msgstr "Tuta metoda wužaduje sej POST." @@ -175,8 +234,9 @@ msgstr "Profil njeje so składować dał." #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:97 -#: actions/apistatusesupdate.php:127 actions/avatarsettings.php:257 -#: actions/designadminpanel.php:122 actions/newnotice.php:94 +#: actions/apistatusesupdate.php:131 actions/avatarsettings.php:257 +#: actions/designadminpanel.php:122 actions/editapplication.php:118 +#: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 #, php-format msgid "" @@ -290,11 +350,11 @@ msgstr "Njemóžeš slědowanje swójskich aktiwitow blokować." msgid "Two user ids or screen_names must be supplied." msgstr "" -#: actions/apifriendshipsshow.php:135 +#: actions/apifriendshipsshow.php:134 msgid "Could not determine source user." msgstr "" -#: actions/apifriendshipsshow.php:143 +#: actions/apifriendshipsshow.php:142 msgid "Could not find target user." msgstr "" @@ -316,7 +376,8 @@ msgstr "Přimjeno so hižo wužiwa. Spytaj druhe." msgid "Not a valid nickname." msgstr "Žane płaćiwe přimjeno." -#: actions/apigroupcreate.php:196 actions/editgroup.php:195 +#: actions/apigroupcreate.php:196 actions/editapplication.php:215 +#: actions/editgroup.php:195 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:217 msgid "Homepage is not a valid URL." @@ -328,7 +389,8 @@ msgstr "Startowa strona njeje płaćiwy URL." msgid "Full name is too long (max 255 chars)." msgstr "Dospołne mjeno je předołho (maks. 255 znamješkow)." -#: actions/apigroupcreate.php:213 +#: actions/apigroupcreate.php:213 actions/editapplication.php:190 +#: actions/newapplication.php:172 #, php-format msgid "Description is too long (max %d chars)." msgstr "Wopisanje je předołho (maks. %d znamješkow)." @@ -364,7 +426,7 @@ msgstr "Alias njemóže samsny kaž přimjeno być." #: actions/apigroupismember.php:95 actions/apigroupjoin.php:104 #: actions/apigroupleave.php:104 actions/apigroupmembership.php:91 -#: actions/apigroupshow.php:90 actions/apitimelinegroup.php:91 +#: actions/apigroupshow.php:82 actions/apitimelinegroup.php:91 msgid "Group not found!" msgstr "Skupina njenamakana!" @@ -405,6 +467,113 @@ msgstr "" msgid "groups on %s" msgstr "skupiny na %s" +#: actions/apioauthauthorize.php:101 +msgid "No oauth_token parameter provided." +msgstr "" + +#: actions/apioauthauthorize.php:106 +#, fuzzy +msgid "Invalid token." +msgstr "Njepłaćiwa wulkosć." + +#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 +#: actions/deletenotice.php:157 actions/disfavor.php:74 +#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54 +#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupunblock.php:66 actions/imsettings.php:206 +#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 +#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 +#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135 +#: actions/othersettings.php:145 actions/passwordsettings.php:138 +#: actions/profilesettings.php:194 actions/recoverpassword.php:337 +#: actions/register.php:165 actions/remotesubscribe.php:77 +#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 +#: actions/subscribe.php:86 actions/tagother.php:166 +#: 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/apioauthauthorize.php:135 +msgid "Invalid nickname / password!" +msgstr "Njepłaćiwe přimjeno abo hesło!" + +#: actions/apioauthauthorize.php:159 +#, fuzzy +msgid "Database error deleting OAuth application user." +msgstr "Zmylk datoweje banki při zasunjenju wužiwarja OAuth-aplikacije." + +#: actions/apioauthauthorize.php:185 +#, fuzzy +msgid "Database error inserting OAuth application user." +msgstr "Zmylk datoweje banki při zasunjenju wužiwarja OAuth-aplikacije." + +#: actions/apioauthauthorize.php:214 +#, php-format +msgid "" +"The request token %s has been authorized. Please exchange it for an access " +"token." +msgstr "" + +#: actions/apioauthauthorize.php:227 +#, php-format +msgid "The request token %s has been denied and revoked." +msgstr "" + +#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 +#: actions/designadminpanel.php:103 actions/editapplication.php:139 +#: actions/emailsettings.php:256 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/newapplication.php:121 +#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 +#: actions/smssettings.php:248 lib/designsettings.php:304 +msgid "Unexpected form submission." +msgstr "" + +#: actions/apioauthauthorize.php:259 +msgid "An application would like to connect to your account" +msgstr "" + +#: actions/apioauthauthorize.php:276 +msgid "Allow or deny access" +msgstr "" + +#: actions/apioauthauthorize.php:292 +#, php-format +msgid "" +"The application %1$s by %2$s would like " +"the ability to %3$s your %4$s account data. You should only " +"give access to your %4$s account to third parties you trust." +msgstr "" + +#: actions/apioauthauthorize.php:310 lib/action.php:441 +msgid "Account" +msgstr "Konto" + +#: actions/apioauthauthorize.php:313 actions/login.php:230 +#: actions/profilesettings.php:106 actions/register.php:424 +#: actions/showgroup.php:236 actions/tagother.php:94 +#: actions/userauthorization.php:145 lib/groupeditform.php:152 +#: lib/userprofile.php:131 +msgid "Nickname" +msgstr "Přimjeno" + +#: actions/apioauthauthorize.php:316 actions/login.php:233 +#: actions/register.php:429 lib/accountsettingsaction.php:116 +msgid "Password" +msgstr "Hesło" + +#: actions/apioauthauthorize.php:328 +msgid "Deny" +msgstr "Wotpokazać" + +#: actions/apioauthauthorize.php:334 +msgid "Allow" +msgstr "Dowolić" + +#: actions/apioauthauthorize.php:351 +msgid "Allow or deny access to your account information." +msgstr "" + #: actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." msgstr "Tuta metoda wužaduje sej POST abo DELETE." @@ -434,17 +603,17 @@ msgstr "Status zničeny." msgid "No status with that ID found." msgstr "Žadyn status z tym ID namakany." -#: actions/apistatusesupdate.php:157 actions/newnotice.php:155 +#: actions/apistatusesupdate.php:161 actions/newnotice.php:155 #: lib/mailhandler.php:60 #, php-format msgid "That's too long. Max notice size is %d chars." msgstr "To je předołho. Maksimalna wulkosć zdźělenki je %d znamješkow." -#: actions/apistatusesupdate.php:198 +#: actions/apistatusesupdate.php:202 msgid "Not found" msgstr "Njenamakany" -#: actions/apistatusesupdate.php:221 actions/newnotice.php:178 +#: actions/apistatusesupdate.php:225 actions/newnotice.php:178 #, php-format msgid "Max notice size is %d chars, including attachment URL." msgstr "" @@ -458,7 +627,7 @@ msgstr "Njepodpěrany format." msgid "%1$s / Favorites from %2$s" msgstr "" -#: actions/apitimelinefavorites.php:120 +#: actions/apitimelinefavorites.php:117 #, php-format msgid "%1$s updates favorited by %2$s / %2$s." msgstr "" @@ -469,7 +638,7 @@ msgstr "" msgid "%s timeline" msgstr "" -#: actions/apitimelinegroup.php:117 actions/apitimelineuser.php:126 +#: actions/apitimelinegroup.php:114 actions/apitimelineuser.php:126 #: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" @@ -485,27 +654,22 @@ msgstr "" msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "" -#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "" -#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "" -#: actions/apitimelineretweetedbyme.php:112 -#, php-format -msgid "Repeated by %s" -msgstr "" - #: actions/apitimelineretweetedtome.php:111 #, php-format msgid "Repeated to %s" msgstr "" -#: actions/apitimelineretweetsofme.php:112 +#: actions/apitimelineretweetsofme.php:114 #, php-format msgid "Repeats of %s" msgstr "" @@ -515,7 +679,7 @@ msgstr "" msgid "Notices tagged with %s" msgstr "" -#: actions/apitimelinetag.php:108 actions/tagrss.php:64 +#: actions/apitimelinetag.php:104 actions/tagrss.php:64 #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "" @@ -576,8 +740,8 @@ msgstr "Original" msgid "Preview" msgstr "Přehlad" -#: actions/avatarsettings.php:149 lib/deleteuserform.php:66 -#: lib/noticelist.php:611 +#: actions/avatarsettings.php:149 actions/showapplication.php:252 +#: lib/deleteuserform.php:66 lib/noticelist.php:637 msgid "Delete" msgstr "Zničić" @@ -589,29 +753,6 @@ msgstr "Nahrać" msgid "Crop" msgstr "" -#: actions/avatarsettings.php:268 actions/deletenotice.php:157 -#: actions/disfavor.php:74 actions/emailsettings.php:238 actions/favor.php:75 -#: actions/geocode.php:50 actions/groupblock.php:66 actions/grouplogo.php:309 -#: actions/groupunblock.php:66 actions/imsettings.php:206 -#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 -#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 -#: actions/othersettings.php:145 actions/passwordsettings.php:138 -#: actions/profilesettings.php:194 actions/recoverpassword.php:337 -#: actions/register.php:165 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 -#: actions/subscribe.php:46 actions/tagother.php:166 -#: 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/avatarsettings.php:281 actions/designadminpanel.php:103 -#: actions/emailsettings.php:256 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/avatarsettings.php:328 msgid "Pick a square area of the image to be your avatar" msgstr "" @@ -647,8 +788,9 @@ msgid "" "will not be notified of any @-replies from them." msgstr "" -#: actions/block.php:143 actions/deletenotice.php:145 -#: actions/deleteuser.php:147 actions/groupblock.php:178 +#: actions/block.php:143 actions/deleteapplication.php:153 +#: actions/deletenotice.php:145 actions/deleteuser.php:147 +#: actions/groupblock.php:178 msgid "No" msgstr "Ně" @@ -656,13 +798,13 @@ msgstr "Ně" msgid "Do not block this user" msgstr "Tutoho wužiwarja njeblokować" -#: actions/block.php:144 actions/deletenotice.php:146 -#: actions/deleteuser.php:148 actions/groupblock.php:179 -#: lib/repeatform.php:132 +#: actions/block.php:144 actions/deleteapplication.php:158 +#: actions/deletenotice.php:146 actions/deleteuser.php:148 +#: actions/groupblock.php:179 lib/repeatform.php:132 msgid "Yes" msgstr "Haj" -#: actions/block.php:144 actions/groupmembers.php:346 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80 msgid "Block this user" msgstr "Tutoho wužiwarja blokować" @@ -745,7 +887,7 @@ msgid "Couldn't delete email confirmation." msgstr "" #: actions/confirmaddress.php:144 -msgid "Confirm Address" +msgid "Confirm address" msgstr "Adresu wobkrućić" #: actions/confirmaddress.php:159 @@ -762,10 +904,53 @@ msgstr "Konwersacija" msgid "Notices" msgstr "Zdźělenki" +#: actions/deleteapplication.php:63 +#, fuzzy +msgid "You must be logged in to delete an application." +msgstr "Dyrbiš přizjewjeny być, zo by skupinu wobdźěłał." + +#: actions/deleteapplication.php:71 +#, fuzzy +msgid "Application not found." +msgstr "Aplikaciski profil" + +#: actions/deleteapplication.php:78 actions/editapplication.php:77 +#: actions/showapplication.php:94 +msgid "You are not the owner of this application." +msgstr "Njejsy wobsedźer tuteje aplikacije." + +#: actions/deleteapplication.php:102 actions/editapplication.php:127 +#: actions/newapplication.php:110 actions/showapplication.php:118 +#: lib/action.php:1197 +msgid "There was a problem with your session token." +msgstr "" + +#: actions/deleteapplication.php:123 actions/deleteapplication.php:147 +#, fuzzy +msgid "Delete application" +msgstr "Aplikacija njeeksistuje." + +#: actions/deleteapplication.php:149 +msgid "" +"Are you sure you want to delete this application? This will clear all data " +"about the application from the database, including all existing user " +"connections." +msgstr "" + +#: actions/deleteapplication.php:156 +#, fuzzy +msgid "Do not delete this application" +msgstr "Tutu zdźělenku njewušmórnyć" + +#: actions/deleteapplication.php:160 +#, fuzzy +msgid "Delete this application" +msgstr "Tutu zdźělenku wušmórnyć" + #: 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/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 #: lib/adminpanelaction.php:72 lib/profileformaction.php:63 #: lib/settingsaction.php:72 @@ -794,7 +979,7 @@ msgstr "Chceš woprawdźe tutu zdźělenku wušmórnyć?" msgid "Do not delete this notice" msgstr "Tutu zdźělenku njewušmórnyć" -#: actions/deletenotice.php:146 lib/noticelist.php:611 +#: actions/deletenotice.php:146 lib/noticelist.php:637 msgid "Delete this notice" msgstr "Tutu zdźělenku wušmórnyć" @@ -923,16 +1108,6 @@ msgstr "Standardne designy wobnowić" msgid "Reset back to default" msgstr "Na standard wróćo stajić" -#: actions/designadminpanel.php:586 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 -#: actions/pathsadminpanel.php:324 actions/profilesettings.php:174 -#: actions/siteadminpanel.php:388 actions/smssettings.php:181 -#: actions/subscriptions.php:203 actions/tagother.php:154 -#: actions/useradminpanel.php:313 lib/designsettings.php:256 -#: lib/groupeditform.php:202 -msgid "Save" -msgstr "Składować" - #: actions/designadminpanel.php:587 lib/designsettings.php:257 msgid "Save design" msgstr "Design składować" @@ -945,10 +1120,78 @@ msgstr "Tuta zdźělenka faworit njeje!" msgid "Add to favorites" msgstr "K faworitam přidać" -#: actions/doc.php:69 -msgid "No such document." +#: actions/doc.php:158 +#, fuzzy, php-format +msgid "No such document \"%s\"" msgstr "Dokument njeeksistuje." +#: actions/editapplication.php:54 +#, fuzzy +msgid "Edit Application" +msgstr "Aplikacije OAuth" + +#: actions/editapplication.php:66 +msgid "You must be logged in to edit an application." +msgstr "Dyrbiš přizjewjeny być, zo by skupinu wobdźěłał." + +#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:166 +#: actions/showapplication.php:87 +msgid "No such application." +msgstr "Aplikacija njeeksistuje." + +#: actions/editapplication.php:161 +msgid "Use this form to edit your application." +msgstr "Wužij tutón formular, zo by aplikaciju wobdźěłał." + +#: actions/editapplication.php:177 actions/newapplication.php:159 +msgid "Name is required." +msgstr "Mjeno je trěbne." + +#: actions/editapplication.php:180 actions/newapplication.php:165 +msgid "Name is too long (max 255 chars)." +msgstr "Mjeno je předołho (maks. 255 znamješkow)." + +#: actions/editapplication.php:183 actions/newapplication.php:162 +#, fuzzy +msgid "Name already in use. Try another one." +msgstr "Přimjeno so hižo wužiwa. Spytaj druhe." + +#: actions/editapplication.php:186 actions/newapplication.php:168 +msgid "Description is required." +msgstr "Wopisanje je trěbne." + +#: actions/editapplication.php:194 +msgid "Source URL is too long." +msgstr "" + +#: actions/editapplication.php:200 actions/newapplication.php:185 +msgid "Source URL is not valid." +msgstr "URL žórła płaćiwy njeje." + +#: actions/editapplication.php:203 actions/newapplication.php:188 +msgid "Organization is required." +msgstr "" + +#: actions/editapplication.php:206 actions/newapplication.php:191 +msgid "Organization is too long (max 255 chars)." +msgstr "Mjeno organizacije je předołho (maks. 255 znamješkow)." + +#: actions/editapplication.php:209 actions/newapplication.php:194 +msgid "Organization homepage is required." +msgstr "" + +#: actions/editapplication.php:218 actions/newapplication.php:206 +msgid "Callback is too long." +msgstr "" + +#: actions/editapplication.php:225 actions/newapplication.php:215 +msgid "Callback URL is not valid." +msgstr "" + +#: actions/editapplication.php:258 +msgid "Could not update application." +msgstr "Aplikacija njeda so aktualizować." + #: actions/editgroup.php:56 #, php-format msgid "Edit %s group" @@ -976,7 +1219,7 @@ msgstr "wopisanje je předołho (maks. %d znamješkow)." msgid "Could not update group." msgstr "Skupina njeje so dała aktualizować." -#: actions/editgroup.php:259 classes/User_group.php:390 +#: actions/editgroup.php:259 classes/User_group.php:433 msgid "Could not create aliases." msgstr "Aliasy njejsu so dali wutworić." @@ -1015,7 +1258,8 @@ msgid "" msgstr "" #: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 +#: actions/smssettings.php:126 lib/applicationeditform.php:331 +#: lib/applicationeditform.php:332 msgid "Cancel" msgstr "Přetorhnyć" @@ -1095,7 +1339,7 @@ msgid "Cannot normalize that email address" msgstr "" #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:157 +#: actions/siteadminpanel.php:143 msgid "Not a valid email address." msgstr "Njepłaćiwa e-mejlowa adresa." @@ -1107,7 +1351,7 @@ msgstr "To je hižo twoja e-mejlowa adresa." msgid "That email address already belongs to another user." msgstr "Ta e-mejlowa adresa hižo słuša k druhemu wužiwarjej." -#: actions/emailsettings.php:353 actions/imsettings.php:317 +#: actions/emailsettings.php:353 actions/imsettings.php:319 #: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." msgstr "" @@ -1166,7 +1410,7 @@ msgstr "Tuta zdźělenka je hižo faworit!" msgid "Disfavor favorite" msgstr "" -#: actions/favorited.php:65 lib/popularnoticesection.php:88 +#: actions/favorited.php:65 lib/popularnoticesection.php:91 #: lib/publicgroupnav.php:93 msgid "Popular notices" msgstr "Woblubowane zdźělenki" @@ -1308,7 +1552,7 @@ msgstr "Wužiwar je hižo za skupinu zablokowany." msgid "User is not a member of group." msgstr "Wužiwar njeje čłon skupiny." -#: actions/groupblock.php:136 actions/groupmembers.php:314 +#: actions/groupblock.php:136 actions/groupmembers.php:316 msgid "Block user from group" msgstr "Wužiwarja za skupinu blokować" @@ -1401,23 +1645,23 @@ msgstr "%1$s skupinskich čłonow, strona %2$d" msgid "A list of the users in this group." msgstr "Lisćina wužiwarjow w tutej skupinje." -#: actions/groupmembers.php:175 lib/action.php:442 lib/groupnav.php:107 +#: actions/groupmembers.php:175 lib/action.php:448 lib/groupnav.php:107 msgid "Admin" msgstr "Administrator" -#: actions/groupmembers.php:346 lib/blockform.php:69 +#: actions/groupmembers.php:348 lib/blockform.php:69 msgid "Block" msgstr "Blokować" -#: actions/groupmembers.php:441 +#: actions/groupmembers.php:443 msgid "Make user an admin of the group" msgstr "" -#: actions/groupmembers.php:473 +#: actions/groupmembers.php:475 msgid "Make Admin" msgstr "" -#: actions/groupmembers.php:473 +#: actions/groupmembers.php:475 msgid "Make this user an admin" msgstr "Tutoho wužiwarja k administratorej činić" @@ -1576,6 +1820,11 @@ msgstr "" msgid "That is not your Jabber ID." msgstr "To njeje twój ID Jabber." +#: actions/inbox.php:59 +#, php-format +msgid "Inbox for %1$s - page %2$d" +msgstr "" + #: actions/inbox.php:62 #, php-format msgid "Inbox for %s" @@ -1654,7 +1903,7 @@ msgstr "Wosobinska powěsć" msgid "Optionally add a personal message to the invitation." msgstr "Wosobinsku powěsć po dobrozdaću přeprošenju přidać." -#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:237 +#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:236 msgid "Send" msgstr "Pósłać" @@ -1728,7 +1977,7 @@ msgstr "Wopačne wužiwarske mjeno abo hesło." msgid "Error setting user. You are probably not authorized." msgstr "Zmylk při nastajenju wužiwarja. Snano njejsy awtorizowany." -#: actions/login.php:188 actions/login.php:241 lib/action.php:460 +#: actions/login.php:188 actions/login.php:241 lib/action.php:466 #: lib/logingroupnav.php:79 msgid "Login" msgstr "Přizjewić" @@ -1737,17 +1986,6 @@ msgstr "Přizjewić" msgid "Login to site" msgstr "Při sydle přizjewić" -#: actions/login.php:230 actions/profilesettings.php:106 -#: actions/register.php:424 actions/showgroup.php:236 actions/tagother.php:94 -#: lib/groupeditform.php:152 lib/userprofile.php:131 -msgid "Nickname" -msgstr "Přimjeno" - -#: actions/login.php:233 actions/register.php:429 -#: lib/accountsettingsaction.php:116 -msgid "Password" -msgstr "Hesło" - #: actions/login.php:236 actions/register.php:478 msgid "Remember me" msgstr "Składować" @@ -1773,21 +2011,21 @@ msgid "" "(%%action.register%%) a new account." msgstr "" -#: actions/makeadmin.php:91 +#: actions/makeadmin.php:92 msgid "Only an admin can make another user an admin." msgstr "Jenož administrator móže druheho wužiwarja k administratorej činić." -#: actions/makeadmin.php:95 +#: actions/makeadmin.php:96 #, php-format msgid "%1$s is already an admin for group \"%2$s\"." msgstr "%1$s je hižo administrator za skupinu \"%2$s\"." -#: actions/makeadmin.php:132 +#: actions/makeadmin.php:133 #, php-format msgid "Can't get membership record for %1$s in group %2$s." msgstr "Přistup na datowu sadźbu čłona %1$S w skupinje %2$s móžno njeje." -#: actions/makeadmin.php:145 +#: actions/makeadmin.php:146 #, php-format msgid "Can't make %1$s an admin for group %2$s." msgstr "Njeje móžno %1$S k administratorej w skupinje %2$s činić." @@ -1796,6 +2034,27 @@ msgstr "Njeje móžno %1$S k administratorej w skupinje %2$s činić." msgid "No current status" msgstr "Žadyn aktualny status" +#: actions/newapplication.php:52 +#, fuzzy +msgid "New Application" +msgstr "Aplikacija njeeksistuje." + +#: actions/newapplication.php:64 +msgid "You must be logged in to register an application." +msgstr "Dyrbiš přizjewjeny być, zo by aplikaciju registrował." + +#: actions/newapplication.php:143 +msgid "Use this form to register a new application." +msgstr "Wužij tutón formular, zo by nowu aplikaciju registrował." + +#: actions/newapplication.php:176 +msgid "Source URL is required." +msgstr "" + +#: actions/newapplication.php:258 actions/newapplication.php:267 +msgid "Could not create application." +msgstr "Aplikacija njeda so wutworić." + #: actions/newgroup.php:53 msgid "New group" msgstr "Nowa skupina" @@ -1900,6 +2159,48 @@ msgstr "" msgid "Nudge sent!" msgstr "" +#: actions/oauthappssettings.php:59 +msgid "You must be logged in to list your applications." +msgstr "Dyrbiš přizjewjeny być, zo by swoje aplikacije nalistował." + +#: actions/oauthappssettings.php:74 +msgid "OAuth applications" +msgstr "Aplikacije OAuth" + +#: actions/oauthappssettings.php:85 +msgid "Applications you have registered" +msgstr "" + +#: actions/oauthappssettings.php:135 +#, php-format +msgid "You have not registered any applications yet." +msgstr "" + +#: actions/oauthconnectionssettings.php:72 +msgid "Connected applications" +msgstr "" + +#: actions/oauthconnectionssettings.php:83 +msgid "You have allowed the following applications to access you account." +msgstr "" + +#: actions/oauthconnectionssettings.php:175 +msgid "You are not a user of that application." +msgstr "Njejsy wužiwar tuteje aplikacije." + +#: actions/oauthconnectionssettings.php:186 +msgid "Unable to revoke access for app: " +msgstr "" + +#: actions/oauthconnectionssettings.php:198 +#, php-format +msgid "You have not authorized any applications to use your account." +msgstr "" + +#: actions/oauthconnectionssettings.php:211 +msgid "Developers can edit the registration settings for their applications " +msgstr "" + #: actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" msgstr "Zdźělenka nima profil" @@ -1917,8 +2218,8 @@ msgstr "" msgid "Only " msgstr "Jenož " -#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1033 -#: lib/api.php:1061 lib/api.php:1171 +#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 +#: lib/api.php:1068 lib/api.php:1177 msgid "Not a supported data format." msgstr "Njeje podpěrany datowy format." @@ -1931,7 +2232,7 @@ msgid "Notice Search" msgstr "Zdźělenku pytać" #: actions/othersettings.php:60 -msgid "Other Settings" +msgid "Other settings" msgstr "Druhe nastajenja" #: actions/othersettings.php:71 @@ -1963,28 +2264,29 @@ msgid "URL shortening service is too long (max 50 chars)." msgstr "" #: actions/otp.php:69 -#, fuzzy msgid "No user ID specified." -msgstr "Žana skupina podata." +msgstr "Žadyn wužiwarski ID podaty." #: actions/otp.php:83 -#, fuzzy msgid "No login token specified." -msgstr "Žana zdźělenka podata." +msgstr "Žane přizjewjenske znamješko podate." #: actions/otp.php:90 msgid "No login token requested." msgstr "" #: actions/otp.php:95 -#, fuzzy msgid "Invalid login token specified." -msgstr "Žana zdźělenka podata." +msgstr "Njepłaćiwe přizjewjenske znamješko podate." #: actions/otp.php:104 -#, fuzzy msgid "Login token expired." -msgstr "Při sydle přizjewić" +msgstr "Přizjewjenske znamješko spadnjene." + +#: actions/outbox.php:58 +#, php-format +msgid "Outbox for %1$s - page %2$d" +msgstr "" #: actions/outbox.php:61 #, php-format @@ -2056,7 +2358,7 @@ msgstr "" msgid "Password saved." msgstr "Hesło składowane." -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:326 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:331 msgid "Paths" msgstr "Šćežki" @@ -2064,132 +2366,148 @@ msgstr "Šćežki" msgid "Path and server settings for this StatusNet site." msgstr "Šćežka a serwerowe nastajenja za tute sydło StatusNet." -#: actions/pathsadminpanel.php:140 +#: actions/pathsadminpanel.php:157 #, php-format msgid "Theme directory not readable: %s" msgstr "" -#: actions/pathsadminpanel.php:146 +#: actions/pathsadminpanel.php:163 #, php-format msgid "Avatar directory not writable: %s" msgstr "" -#: actions/pathsadminpanel.php:152 +#: actions/pathsadminpanel.php:169 #, php-format msgid "Background directory not writable: %s" msgstr "" -#: actions/pathsadminpanel.php:160 +#: actions/pathsadminpanel.php:177 #, php-format msgid "Locales directory not readable: %s" msgstr "" -#: actions/pathsadminpanel.php:166 +#: actions/pathsadminpanel.php:183 msgid "Invalid SSL server. The maximum length is 255 characters." msgstr "" -#: actions/pathsadminpanel.php:217 actions/siteadminpanel.php:58 +#: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58 #: lib/adminpanelaction.php:311 msgid "Site" msgstr "Sydło" -#: actions/pathsadminpanel.php:221 +#: actions/pathsadminpanel.php:238 +msgid "Server" +msgstr "Serwer" + +#: actions/pathsadminpanel.php:238 +msgid "Site's server hostname." +msgstr "" + +#: actions/pathsadminpanel.php:242 msgid "Path" msgstr "Šćežka" -#: actions/pathsadminpanel.php:221 +#: actions/pathsadminpanel.php:242 msgid "Site path" msgstr "Sydłowa šćežka" -#: actions/pathsadminpanel.php:225 +#: actions/pathsadminpanel.php:246 msgid "Path to locales" msgstr "Šćežka k lokalam" -#: actions/pathsadminpanel.php:225 +#: actions/pathsadminpanel.php:246 msgid "Directory path to locales" msgstr "Zapisowa šćežka k lokalam" -#: actions/pathsadminpanel.php:232 +#: actions/pathsadminpanel.php:250 +msgid "Fancy URLs" +msgstr "" + +#: actions/pathsadminpanel.php:252 +msgid "Use fancy (more readable and memorable) URLs?" +msgstr "" + +#: actions/pathsadminpanel.php:259 msgid "Theme" msgstr "Šat" -#: actions/pathsadminpanel.php:237 +#: actions/pathsadminpanel.php:264 msgid "Theme server" msgstr "Šatowy serwer" -#: actions/pathsadminpanel.php:241 +#: actions/pathsadminpanel.php:268 msgid "Theme path" msgstr "Šatowa šćežka" -#: actions/pathsadminpanel.php:245 +#: actions/pathsadminpanel.php:272 msgid "Theme directory" msgstr "Šatowy zapis" -#: actions/pathsadminpanel.php:252 +#: actions/pathsadminpanel.php:279 msgid "Avatars" msgstr "Awatary" -#: actions/pathsadminpanel.php:257 +#: actions/pathsadminpanel.php:284 msgid "Avatar server" msgstr "Awatarowy serwer" -#: actions/pathsadminpanel.php:261 +#: actions/pathsadminpanel.php:288 msgid "Avatar path" msgstr "Awatarowa šćežka" -#: actions/pathsadminpanel.php:265 +#: actions/pathsadminpanel.php:292 msgid "Avatar directory" msgstr "Awatarowy zapis" -#: actions/pathsadminpanel.php:274 +#: actions/pathsadminpanel.php:301 msgid "Backgrounds" msgstr "Pozadki" -#: actions/pathsadminpanel.php:278 +#: actions/pathsadminpanel.php:305 msgid "Background server" msgstr "Pozadkowy serwer" -#: actions/pathsadminpanel.php:282 +#: actions/pathsadminpanel.php:309 msgid "Background path" msgstr "Pozadkowa šćežka" -#: actions/pathsadminpanel.php:286 +#: actions/pathsadminpanel.php:313 msgid "Background directory" msgstr "Pozadkowy zapis" -#: actions/pathsadminpanel.php:293 +#: actions/pathsadminpanel.php:320 msgid "SSL" msgstr "SSL" -#: actions/pathsadminpanel.php:296 actions/siteadminpanel.php:346 +#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 msgid "Never" msgstr "Ženje" -#: actions/pathsadminpanel.php:297 +#: actions/pathsadminpanel.php:324 msgid "Sometimes" msgstr "Druhdy" -#: actions/pathsadminpanel.php:298 +#: actions/pathsadminpanel.php:325 msgid "Always" msgstr "Přeco" -#: actions/pathsadminpanel.php:302 +#: actions/pathsadminpanel.php:329 msgid "Use SSL" msgstr "SSL wužiwać" -#: actions/pathsadminpanel.php:303 +#: actions/pathsadminpanel.php:330 msgid "When to use SSL" msgstr "" -#: actions/pathsadminpanel.php:308 +#: actions/pathsadminpanel.php:335 msgid "SSL server" msgstr "SSL-serwer" -#: actions/pathsadminpanel.php:309 +#: actions/pathsadminpanel.php:336 msgid "Server to direct SSL requests to" msgstr "" -#: actions/pathsadminpanel.php:325 +#: actions/pathsadminpanel.php:352 msgid "Save paths" msgstr "Šćežki składować" @@ -2247,7 +2565,7 @@ msgid "Full name" msgstr "Dospołne mjeno" #: actions/profilesettings.php:115 actions/register.php:453 -#: lib/groupeditform.php:161 +#: lib/applicationeditform.php:228 lib/groupeditform.php:161 msgid "Homepage" msgstr "Startowa strona" @@ -2270,7 +2588,7 @@ msgstr "Biografija" #: actions/profilesettings.php:132 actions/register.php:471 #: actions/showgroup.php:256 actions/tagother.php:112 -#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:164 msgid "Location" msgstr "Městno" @@ -2294,7 +2612,7 @@ msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" -#: actions/profilesettings.php:151 actions/siteadminpanel.php:294 +#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 msgid "Language" msgstr "Rěč" @@ -2320,7 +2638,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "Biografija je předołha (maks. %d znamješkow)." -#: actions/profilesettings.php:235 actions/siteadminpanel.php:164 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 msgid "Timezone not selected." msgstr "Časowe pasmo njeje wubrane." @@ -2333,23 +2651,23 @@ msgstr "Mjeno rěče je předołhe (maks. 50 znamješkow)." msgid "Invalid tag: \"%s\"" msgstr "" -#: actions/profilesettings.php:302 +#: actions/profilesettings.php:306 msgid "Couldn't update user for autosubscribe." msgstr "" -#: actions/profilesettings.php:359 +#: actions/profilesettings.php:363 msgid "Couldn't save location prefs." msgstr "Nastajenja městna njedachu so składować." -#: actions/profilesettings.php:371 +#: actions/profilesettings.php:375 msgid "Couldn't save profile." msgstr "" -#: actions/profilesettings.php:379 +#: actions/profilesettings.php:383 msgid "Couldn't save tags." msgstr "" -#: actions/profilesettings.php:387 lib/adminpanelaction.php:137 +#: actions/profilesettings.php:391 lib/adminpanelaction.php:137 msgid "Settings saved." msgstr "Nastajenja składowane." @@ -2371,36 +2689,36 @@ msgstr "" msgid "Public timeline" msgstr "" -#: actions/public.php:151 +#: actions/public.php:159 msgid "Public Stream Feed (RSS 1.0)" msgstr "" -#: actions/public.php:155 +#: actions/public.php:163 msgid "Public Stream Feed (RSS 2.0)" msgstr "" -#: actions/public.php:159 +#: actions/public.php:167 msgid "Public Stream Feed (Atom)" msgstr "" -#: actions/public.php:179 +#: actions/public.php:187 #, php-format msgid "" "This is the public timeline for %%site.name%% but no one has posted anything " "yet." msgstr "" -#: actions/public.php:182 +#: actions/public.php:190 msgid "Be the first to post!" msgstr "" -#: actions/public.php:186 +#: actions/public.php:194 #, php-format msgid "" "Why not [register an account](%%action.register%%) and be the first to post!" msgstr "" -#: actions/public.php:233 +#: actions/public.php:241 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2409,7 +2727,7 @@ msgid "" "friends, family, and colleagues! ([Read more](%%doc.help%%))" msgstr "" -#: actions/public.php:238 +#: actions/public.php:246 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2442,7 +2760,7 @@ msgid "" "one!" msgstr "" -#: actions/publictagcloud.php:131 +#: actions/publictagcloud.php:134 msgid "Tag cloud" msgstr "" @@ -2579,7 +2897,7 @@ msgstr "Wodaj, njepłaćiwy přeprošenski kod." msgid "Registration successful" msgstr "Registrowanje wuspěšne" -#: actions/register.php:114 actions/register.php:503 lib/action.php:457 +#: actions/register.php:114 actions/register.php:503 lib/action.php:463 #: lib/logingroupnav.php:85 msgid "Register" msgstr "Registrować" @@ -2619,7 +2937,7 @@ msgid "Same as password above. Required." msgstr "Jenake kaž hesło horjeka. Trěbne." #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:270 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 msgid "Email" msgstr "E-mejl" @@ -2703,7 +3021,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:365 +#: lib/userprofile.php:368 msgid "Subscribe" msgstr "Abonować" @@ -2739,7 +3057,7 @@ msgstr "Njemóžeš swójsku zdźělenku wospjetować." msgid "You already repeated that notice." msgstr "Sy tutu zdźělenku hižo wospjetował." -#: actions/repeat.php:114 lib/noticelist.php:629 +#: actions/repeat.php:114 lib/noticelist.php:656 msgid "Repeated" msgstr "Wospjetowany" @@ -2753,6 +3071,11 @@ msgstr "Wospjetowany!" msgid "Replies to %s" msgstr "" +#: actions/replies.php:127 +#, php-format +msgid "Replies to %1$s, page %2$d" +msgstr "" + #: actions/replies.php:144 #, php-format msgid "Replies feed for %s (RSS 1.0)" @@ -2794,6 +3117,10 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "" +#: actions/rsd.php:146 actions/version.php:157 +msgid "StatusNet" +msgstr "StatusNet" + #: actions/sandbox.php:65 actions/unsandbox.php:65 msgid "You cannot sandbox users on this site." msgstr "" @@ -2802,6 +3129,121 @@ msgstr "" msgid "User is already sandboxed." msgstr "" +#: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:336 +msgid "Sessions" +msgstr "Posedźenja" + +#: actions/sessionsadminpanel.php:65 +#, fuzzy +msgid "Session settings for this StatusNet site." +msgstr "Designowe nastajenja za tute sydło StatusNet." + +#: actions/sessionsadminpanel.php:175 +msgid "Handle sessions" +msgstr "Z posedźenjemi wobchadźeć" + +#: actions/sessionsadminpanel.php:177 +msgid "Whether to handle sessions ourselves." +msgstr "" + +#: actions/sessionsadminpanel.php:181 +msgid "Session debugging" +msgstr "" + +#: actions/sessionsadminpanel.php:183 +msgid "Turn on debugging output for sessions." +msgstr "" + +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/useradminpanel.php:293 +msgid "Save site settings" +msgstr "Sydłowe nastajenja składować" + +#: actions/showapplication.php:82 +msgid "You must be logged in to view an application." +msgstr "Dyrbiš přizjewjeny być, zo by sej aplikaciju wobhladał." + +#: actions/showapplication.php:157 +msgid "Application profile" +msgstr "Aplikaciski profil" + +#: actions/showapplication.php:159 lib/applicationeditform.php:180 +msgid "Icon" +msgstr "" + +#: actions/showapplication.php:169 actions/version.php:195 +#: lib/applicationeditform.php:195 +msgid "Name" +msgstr "Mjeno" + +#: actions/showapplication.php:178 lib/applicationeditform.php:222 +msgid "Organization" +msgstr "Organizacija" + +#: actions/showapplication.php:187 actions/version.php:198 +#: lib/applicationeditform.php:209 lib/groupeditform.php:172 +msgid "Description" +msgstr "Wopisanje" + +#: actions/showapplication.php:192 actions/showgroup.php:429 +#: lib/profileaction.php:174 +msgid "Statistics" +msgstr "Statistika" + +#: actions/showapplication.php:203 +#, php-format +msgid "Created by %1$s - %2$s access by default - %3$d users" +msgstr "" + +#: actions/showapplication.php:213 +msgid "Application actions" +msgstr "" + +#: actions/showapplication.php:236 +msgid "Reset key & secret" +msgstr "" + +#: actions/showapplication.php:261 +msgid "Application info" +msgstr "" + +#: actions/showapplication.php:263 +msgid "Consumer key" +msgstr "" + +#: actions/showapplication.php:268 +msgid "Consumer secret" +msgstr "" + +#: actions/showapplication.php:273 +msgid "Request token URL" +msgstr "" + +#: actions/showapplication.php:278 +msgid "Access token URL" +msgstr "" + +#: actions/showapplication.php:283 +msgid "Authorize URL" +msgstr "URL awtorizować" + +#: actions/showapplication.php:288 +msgid "" +"Note: We support HMAC-SHA1 signatures. We do not support the plaintext " +"signature method." +msgstr "" + +#: actions/showapplication.php:309 +#, fuzzy +msgid "Are you sure you want to reset your consumer key and secret?" +msgstr "Chceš woprawdźe tutu zdźělenku wušmórnyć?" + +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%1$s's favorite notices, page %2$d" +msgstr "%1$s a přećeljo, strona %2$d" + #: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "" @@ -2851,17 +3293,22 @@ msgstr "" msgid "%s group" msgstr "" +#: actions/showgroup.php:84 +#, fuzzy, php-format +msgid "%1$s group, page %2$d" +msgstr "%1$s skupinskich čłonow, strona %2$d" + #: actions/showgroup.php:218 msgid "Group profile" msgstr "Skupinski profil" #: actions/showgroup.php:263 actions/tagother.php:118 -#: actions/userauthorization.php:167 lib/userprofile.php:177 +#: actions/userauthorization.php:175 lib/userprofile.php:177 msgid "URL" msgstr "URL" #: actions/showgroup.php:274 actions/tagother.php:128 -#: actions/userauthorization.php:179 lib/userprofile.php:194 +#: actions/userauthorization.php:187 lib/userprofile.php:194 msgid "Note" msgstr "" @@ -2907,10 +3354,6 @@ msgstr "(Žadyn)" msgid "All members" msgstr "Wšitcy čłonojo" -#: actions/showgroup.php:429 lib/profileaction.php:174 -msgid "Statistics" -msgstr "Statistika" - #: actions/showgroup.php:432 msgid "Created" msgstr "Wutworjeny" @@ -2965,6 +3408,11 @@ msgstr "Zdźělenka zničena." msgid " tagged %s" msgstr "" +#: actions/showstream.php:79 +#, fuzzy, php-format +msgid "%1$s, page %2$d" +msgstr "%1$s a přećeljo, strona %2$d" + #: actions/showstream.php:122 #, php-format msgid "Notice feed for %1$s tagged %2$s (RSS 1.0)" @@ -2990,25 +3438,25 @@ msgstr "" msgid "FOAF for %s" msgstr "FOAF za %s" -#: actions/showstream.php:191 +#: actions/showstream.php:200 #, php-format msgid "This is the timeline for %1$s but %2$s hasn't posted anything yet." msgstr "" -#: actions/showstream.php:196 +#: actions/showstream.php:205 msgid "" "Seen anything interesting recently? You haven't posted any notices yet, now " "would be a good time to start :)" msgstr "" -#: actions/showstream.php:198 +#: actions/showstream.php:207 #, php-format msgid "" "You can try to nudge %1$s or [post something to his or her attention](%%%%" "action.newnotice%%%%?status_textarea=%2$s)." msgstr "" -#: actions/showstream.php:234 +#: actions/showstream.php:243 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3017,7 +3465,7 @@ msgid "" "follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showstream.php:239 +#: actions/showstream.php:248 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3025,7 +3473,7 @@ msgid "" "[StatusNet](http://status.net/) tool. " msgstr "" -#: actions/showstream.php:313 +#: actions/showstream.php:305 #, php-format msgid "Repeat of %s" msgstr "" @@ -3042,195 +3490,143 @@ msgstr "" msgid "Basic settings for this StatusNet site." msgstr "" -#: actions/siteadminpanel.php:146 +#: actions/siteadminpanel.php:132 msgid "Site name must have non-zero length." msgstr "" -#: actions/siteadminpanel.php:154 +#: actions/siteadminpanel.php:140 msgid "You must have a valid contact email address." msgstr "Dyrbiš płaćiwu kontaktowu e-mejlowu adresu měć." -#: actions/siteadminpanel.php:172 +#: actions/siteadminpanel.php:158 #, php-format msgid "Unknown language \"%s\"." msgstr "Njeznata rěč \"%s\"." -#: actions/siteadminpanel.php:179 +#: actions/siteadminpanel.php:165 msgid "Invalid snapshot report URL." msgstr "" -#: actions/siteadminpanel.php:185 +#: actions/siteadminpanel.php:171 msgid "Invalid snapshot run value." msgstr "" -#: actions/siteadminpanel.php:191 +#: actions/siteadminpanel.php:177 msgid "Snapshot frequency must be a number." msgstr "" -#: actions/siteadminpanel.php:197 +#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "" -#: actions/siteadminpanel.php:203 +#: actions/siteadminpanel.php:189 msgid "Dupe limit must 1 or more seconds." msgstr "" -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:239 msgid "General" msgstr "Powšitkowny" -#: actions/siteadminpanel.php:256 +#: actions/siteadminpanel.php:242 msgid "Site name" msgstr "Sydłowe mjeno" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:243 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "" -#: actions/siteadminpanel.php:261 +#: actions/siteadminpanel.php:247 msgid "Brought by" msgstr "" -#: actions/siteadminpanel.php:262 +#: actions/siteadminpanel.php:248 msgid "Text used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:266 +#: actions/siteadminpanel.php:252 msgid "Brought by URL" msgstr "" -#: actions/siteadminpanel.php:267 +#: actions/siteadminpanel.php:253 msgid "URL used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:271 +#: actions/siteadminpanel.php:257 msgid "Contact email address for your site" msgstr "" -#: actions/siteadminpanel.php:277 +#: actions/siteadminpanel.php:263 msgid "Local" msgstr "Lokalny" -#: actions/siteadminpanel.php:288 +#: actions/siteadminpanel.php:274 msgid "Default timezone" msgstr "Standardne časowe pasmo" -#: actions/siteadminpanel.php:289 +#: actions/siteadminpanel.php:275 msgid "Default timezone for the site; usually UTC." msgstr "" -#: actions/siteadminpanel.php:295 +#: actions/siteadminpanel.php:281 msgid "Default site language" msgstr "Standardna sydłowa rěč" -#: actions/siteadminpanel.php:303 -msgid "URLs" -msgstr "URL" - -#: actions/siteadminpanel.php:306 -msgid "Server" -msgstr "Serwer" - -#: actions/siteadminpanel.php:306 -msgid "Site's server hostname." -msgstr "" - -#: actions/siteadminpanel.php:310 -msgid "Fancy URLs" -msgstr "" - -#: actions/siteadminpanel.php:312 -msgid "Use fancy (more readable and memorable) URLs?" -msgstr "" - -#: actions/siteadminpanel.php:318 -msgid "Access" -msgstr "Přistup" - -#: actions/siteadminpanel.php:321 -msgid "Private" -msgstr "Priwatny" - -#: actions/siteadminpanel.php:323 -msgid "Prohibit anonymous users (not logged in) from viewing site?" -msgstr "" - -#: actions/siteadminpanel.php:327 -msgid "Invite only" -msgstr "Jenož přeprosyć" - -#: actions/siteadminpanel.php:329 -msgid "Make registration invitation only." -msgstr "" - -#: actions/siteadminpanel.php:333 -msgid "Closed" -msgstr "Začinjeny" - -#: actions/siteadminpanel.php:335 -msgid "Disable new registrations." -msgstr "Nowe registrowanja znjemóžnić." - -#: actions/siteadminpanel.php:341 +#: actions/siteadminpanel.php:289 msgid "Snapshots" msgstr "" -#: actions/siteadminpanel.php:344 +#: actions/siteadminpanel.php:292 msgid "Randomly during Web hit" msgstr "" -#: actions/siteadminpanel.php:345 +#: actions/siteadminpanel.php:293 msgid "In a scheduled job" msgstr "" -#: actions/siteadminpanel.php:347 +#: actions/siteadminpanel.php:295 msgid "Data snapshots" msgstr "" -#: actions/siteadminpanel.php:348 +#: actions/siteadminpanel.php:296 msgid "When to send statistical data to status.net servers" msgstr "" -#: actions/siteadminpanel.php:353 +#: actions/siteadminpanel.php:301 msgid "Frequency" msgstr "Frekwenca" -#: actions/siteadminpanel.php:354 +#: actions/siteadminpanel.php:302 msgid "Snapshots will be sent once every N web hits" msgstr "" -#: actions/siteadminpanel.php:359 +#: actions/siteadminpanel.php:307 msgid "Report URL" msgstr "" -#: actions/siteadminpanel.php:360 +#: actions/siteadminpanel.php:308 msgid "Snapshots will be sent to this URL" msgstr "" -#: actions/siteadminpanel.php:367 +#: actions/siteadminpanel.php:315 msgid "Limits" msgstr "Limity" -#: actions/siteadminpanel.php:370 +#: actions/siteadminpanel.php:318 msgid "Text limit" msgstr "Tekstowy limit" -#: actions/siteadminpanel.php:370 +#: actions/siteadminpanel.php:318 msgid "Maximum number of characters for notices." msgstr "Maksimalna ličba znamješkow za zdźělenki." -#: actions/siteadminpanel.php:374 +#: actions/siteadminpanel.php:322 msgid "Dupe limit" msgstr "" -#: actions/siteadminpanel.php:374 +#: actions/siteadminpanel.php:322 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" -#: actions/siteadminpanel.php:388 actions/useradminpanel.php:313 -msgid "Save site settings" -msgstr "Sydłowe nastajenja składować" - #: actions/smssettings.php:58 msgid "SMS settings" msgstr "SMS-nastajenja" @@ -3327,15 +3723,26 @@ msgstr "Žadyn kod zapodaty" msgid "You are not subscribed to that profile." msgstr "Njejsy tón profil abonował." -#: actions/subedit.php:83 +#: actions/subedit.php:83 classes/Subscription.php:89 +#: classes/Subscription.php:116 msgid "Could not save subscription." msgstr "" -#: actions/subscribe.php:55 -msgid "Not a local user." -msgstr "Njeje lokalny wužiwar." +#: actions/subscribe.php:77 +msgid "This action only accepts POST requests." +msgstr "" -#: actions/subscribe.php:69 +#: actions/subscribe.php:107 +#, fuzzy +msgid "No such profile." +msgstr "Dataja njeeksistuje." + +#: actions/subscribe.php:117 +#, fuzzy +msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." +msgstr "Njejsy tón profil abonował." + +#: actions/subscribe.php:145 msgid "Subscribed" msgstr "Abonowany" @@ -3395,7 +3802,7 @@ msgstr "" msgid "These are the people whose notices %s listens to." msgstr "" -#: actions/subscriptions.php:121 +#: actions/subscriptions.php:126 #, php-format msgid "" "You're not listening to anyone's notices right now, try subscribing to " @@ -3405,19 +3812,24 @@ msgid "" "automatically subscribe to people you already follow there." msgstr "" -#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#: actions/subscriptions.php:128 actions/subscriptions.php:132 #, php-format msgid "%s is not listening to anyone." msgstr "" -#: actions/subscriptions.php:194 +#: actions/subscriptions.php:199 msgid "Jabber" msgstr "Jabber" -#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:204 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "SMS" +#: actions/tag.php:68 +#, php-format +msgid "Notices tagged with %1$s, page %2$d" +msgstr "" + #: actions/tag.php:86 #, php-format msgid "Notice feed for tag %s (RSS 1.0)" @@ -3446,7 +3858,8 @@ msgstr "" msgid "User profile" msgstr "Wužiwarski profil" -#: actions/tagother.php:81 lib/userprofile.php:102 +#: actions/tagother.php:81 actions/userauthorization.php:132 +#: lib/userprofile.php:102 msgid "Photo" msgstr "Foto" @@ -3501,7 +3914,7 @@ msgstr "" msgid "Unsubscribed" msgstr "Wotskazany" -#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#: actions/updateprofile.php:62 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -3516,84 +3929,64 @@ msgstr "Wužiwar" msgid "User settings for this StatusNet site." msgstr "Wužiwarske nastajenja za sydło StatusNet." -#: actions/useradminpanel.php:149 +#: actions/useradminpanel.php:148 msgid "Invalid bio limit. Must be numeric." msgstr "" -#: actions/useradminpanel.php:155 +#: actions/useradminpanel.php:154 msgid "Invalid welcome text. Max length is 255 characters." msgstr "" -#: actions/useradminpanel.php:165 +#: actions/useradminpanel.php:164 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 +#: actions/useradminpanel.php:217 lib/accountsettingsaction.php:108 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Profil" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:221 msgid "Bio Limit" msgstr "" -#: actions/useradminpanel.php:223 +#: actions/useradminpanel.php:222 msgid "Maximum length of a profile bio in characters." msgstr "" -#: actions/useradminpanel.php:231 +#: actions/useradminpanel.php:230 msgid "New users" msgstr "Nowi wužiwarjo" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:234 msgid "New user welcome" msgstr "Powitanje noweho wužiwarja" -#: actions/useradminpanel.php:236 +#: actions/useradminpanel.php:235 msgid "Welcome text for new users (Max 255 chars)." msgstr "Powitanski tekst za nowych wužiwarjow (maks. 255 znamješkow)." -#: actions/useradminpanel.php:241 +#: actions/useradminpanel.php:240 msgid "Default subscription" msgstr "Standardny abonement" -#: actions/useradminpanel.php:242 +#: actions/useradminpanel.php:241 msgid "Automatically subscribe new users to this user." msgstr "" -#: actions/useradminpanel.php:251 +#: actions/useradminpanel.php:250 msgid "Invitations" msgstr "Přeprošenja" -#: actions/useradminpanel.php:256 +#: actions/useradminpanel.php:255 msgid "Invitations enabled" msgstr "Přeprošenja zmóžnjene" -#: actions/useradminpanel.php:258 +#: actions/useradminpanel.php:257 msgid "Whether to allow users to invite new users." msgstr "" -#: actions/useradminpanel.php:265 -msgid "Sessions" -msgstr "Posedźenja" - -#: actions/useradminpanel.php:270 -msgid "Handle sessions" -msgstr "Z posedźenjemi wobchadźeć" - -#: actions/useradminpanel.php:272 -msgid "Whether to handle sessions ourselves." -msgstr "" - -#: actions/useradminpanel.php:276 -msgid "Session debugging" -msgstr "" - -#: actions/useradminpanel.php:278 -msgid "Turn on debugging output for sessions." -msgstr "" - #: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "" @@ -3605,84 +3998,84 @@ msgid "" "click “Reject”." msgstr "" -#: actions/userauthorization.php:188 actions/version.php:165 +#: actions/userauthorization.php:196 actions/version.php:165 msgid "License" msgstr "Licenca" -#: actions/userauthorization.php:209 +#: actions/userauthorization.php:217 msgid "Accept" msgstr "Akceptować" -#: actions/userauthorization.php:210 lib/subscribeform.php:115 +#: actions/userauthorization.php:218 lib/subscribeform.php:115 #: lib/subscribeform.php:139 msgid "Subscribe to this user" msgstr "Tutoho wužiwarja abonować" -#: actions/userauthorization.php:211 +#: actions/userauthorization.php:219 msgid "Reject" msgstr "Wotpokazać" -#: actions/userauthorization.php:212 +#: actions/userauthorization.php:220 msgid "Reject this subscription" msgstr "Tutón abonement wotpokazać" -#: actions/userauthorization.php:225 +#: actions/userauthorization.php:232 msgid "No authorization request!" msgstr "" -#: actions/userauthorization.php:247 +#: actions/userauthorization.php:254 msgid "Subscription authorized" msgstr "Abonement awtorizowany" -#: actions/userauthorization.php:249 +#: actions/userauthorization.php:256 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 +#: actions/userauthorization.php:266 msgid "Subscription rejected" msgstr "Abonement wotpokazany" -#: actions/userauthorization.php:261 +#: actions/userauthorization.php:268 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 +#: actions/userauthorization.php:303 #, php-format msgid "Listener URI ‘%s’ not found here." msgstr "" -#: actions/userauthorization.php:301 +#: actions/userauthorization.php:308 #, php-format msgid "Listenee URI ‘%s’ is too long." msgstr "" -#: actions/userauthorization.php:307 +#: actions/userauthorization.php:314 #, php-format msgid "Listenee URI ‘%s’ is a local user." msgstr "" -#: actions/userauthorization.php:322 +#: actions/userauthorization.php:329 #, php-format msgid "Profile URL ‘%s’ is for a local user." msgstr "" -#: actions/userauthorization.php:338 +#: actions/userauthorization.php:345 #, php-format msgid "Avatar URL ‘%s’ is not valid." msgstr "" -#: actions/userauthorization.php:343 +#: actions/userauthorization.php:350 #, php-format msgid "Can’t read avatar URL ‘%s’." msgstr "" -#: actions/userauthorization.php:348 +#: actions/userauthorization.php:355 #, php-format msgid "Wrong image type for avatar URL ‘%s’." msgstr "" @@ -3701,6 +4094,11 @@ msgstr "" msgid "Enjoy your hotdog!" msgstr "" +#: actions/usergroups.php:64 +#, fuzzy, php-format +msgid "%1$s groups, page %2$d" +msgstr "%1$s skupinskich čłonow, strona %2$d" + #: actions/usergroups.php:130 msgid "Search for more groups" msgstr "" @@ -3727,10 +4125,6 @@ msgid "" "Inc. and contributors." msgstr "" -#: actions/version.php:157 -msgid "StatusNet" -msgstr "StatusNet" - #: actions/version.php:161 msgid "Contributors" msgstr "" @@ -3762,11 +4156,7 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:195 -msgid "Name" -msgstr "Mjeno" - -#: actions/version.php:196 lib/action.php:741 +#: actions/version.php:196 lib/action.php:747 msgid "Version" msgstr "Wersija" @@ -3774,10 +4164,6 @@ msgstr "Wersija" msgid "Author(s)" msgstr "Awtorojo" -#: actions/version.php:198 lib/groupeditform.php:172 -msgid "Description" -msgstr "Wopisanje" - #: classes/File.php:144 #, php-format msgid "" @@ -3796,19 +4182,16 @@ msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" #: classes/Group_member.php:41 -#, fuzzy msgid "Group join failed." -msgstr "Skupinski profil" +msgstr "Přizamknjenje k skupinje je so njeporadźiło." #: classes/Group_member.php:53 -#, fuzzy msgid "Not part of group." -msgstr "Skupina njeje so dała aktualizować." +msgstr "Njeje dźěl skupiny." #: classes/Group_member.php:60 -#, fuzzy msgid "Group leave failed." -msgstr "Skupinski profil" +msgstr "Wopušćenje skupiny je so njeporadźiło." #: classes/Login_token.php:76 #, php-format @@ -3827,58 +4210,81 @@ msgstr "" msgid "Could not update message with new URI." msgstr "" -#: classes/Notice.php:171 +#: classes/Notice.php:157 #, php-format msgid "DB error inserting hashtag: %s" msgstr "" -#: classes/Notice.php:225 +#: classes/Notice.php:222 msgid "Problem saving notice. Too long." msgstr "" -#: classes/Notice.php:229 +#: classes/Notice.php:226 msgid "Problem saving notice. Unknown user." msgstr "" -#: classes/Notice.php:234 +#: classes/Notice.php:231 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: classes/Notice.php:240 +#: classes/Notice.php:237 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." msgstr "" -#: classes/Notice.php:246 +#: classes/Notice.php:243 msgid "You are banned from posting notices on this site." msgstr "" -#: classes/Notice.php:305 classes/Notice.php:330 +#: classes/Notice.php:309 classes/Notice.php:335 msgid "Problem saving notice." msgstr "" -#: classes/Notice.php:1052 -#, php-format -msgid "DB error inserting reply: %s" +#: classes/Notice.php:882 +msgid "Problem saving group inbox." msgstr "" -#: classes/Notice.php:1423 +#: classes/Notice.php:1407 #, php-format msgid "RT @%1$s %2$s" msgstr "" -#: classes/User.php:382 +#: classes/Subscription.php:66 lib/oauthstore.php:465 +msgid "You have been banned from subscribing." +msgstr "" + +#: classes/Subscription.php:70 +msgid "Already subscribed!" +msgstr "Hižo abonowany!" + +#: classes/Subscription.php:74 +msgid "User has blocked you." +msgstr "Wužiwar je će zablokował." + +#: classes/Subscription.php:157 +msgid "Not subscribed!" +msgstr "Njeje abonowany!" + +#: classes/Subscription.php:163 +msgid "Couldn't delete self-subscription." +msgstr "Sebjeabonement njeje so dał zničić." + +#: classes/Subscription.php:179 lib/subs.php:69 +msgid "Couldn't delete subscription." +msgstr "Abonoment njeje so dał zničić." + +#: classes/User.php:372 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "" -#: classes/User_group.php:380 +#: classes/User_group.php:423 msgid "Could not create group." msgstr "" -#: classes/User_group.php:409 +#: classes/User_group.php:452 msgid "Could not set group membership." msgstr "" @@ -3911,148 +4317,144 @@ msgid "Other options" msgstr "Druhe opcije" #: lib/action.php:144 -#, fuzzy, php-format +#, php-format msgid "%1$s - %2$s" -msgstr "%1$s (%2$s)" +msgstr "%1$s - %2$s" #: lib/action.php:159 msgid "Untitled page" msgstr "Strona bjez titula" -#: lib/action.php:427 +#: lib/action.php:433 msgid "Primary site navigation" msgstr "" -#: lib/action.php:433 +#: lib/action.php:439 msgid "Home" msgstr "" -#: lib/action.php:433 +#: lib/action.php:439 msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:435 -msgid "Account" -msgstr "Konto" - -#: lib/action.php:435 +#: lib/action.php:441 msgid "Change your email, avatar, password, profile" msgstr "" -#: lib/action.php:438 +#: lib/action.php:444 msgid "Connect" msgstr "Zwjazać" -#: lib/action.php:438 +#: lib/action.php:444 msgid "Connect to services" msgstr "" -#: lib/action.php:442 +#: lib/action.php:448 msgid "Change site configuration" msgstr "" -#: lib/action.php:446 lib/subgroupnav.php:105 +#: lib/action.php:452 lib/subgroupnav.php:105 msgid "Invite" msgstr "Přeprosyć" -#: lib/action.php:447 lib/subgroupnav.php:106 +#: lib/action.php:453 lib/subgroupnav.php:106 #, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "" -#: lib/action.php:452 +#: lib/action.php:458 msgid "Logout" msgstr "" -#: lib/action.php:452 +#: lib/action.php:458 msgid "Logout from the site" msgstr "" -#: lib/action.php:457 +#: lib/action.php:463 msgid "Create an account" msgstr "Konto załožić" -#: lib/action.php:460 +#: lib/action.php:466 msgid "Login to the site" msgstr "" -#: lib/action.php:463 lib/action.php:726 +#: lib/action.php:469 lib/action.php:732 msgid "Help" msgstr "Pomoc" -#: lib/action.php:463 +#: lib/action.php:469 msgid "Help me!" msgstr "Pomhaj!" -#: lib/action.php:466 lib/searchaction.php:127 +#: lib/action.php:472 lib/searchaction.php:127 msgid "Search" msgstr "Pytać" -#: lib/action.php:466 +#: lib/action.php:472 msgid "Search for people or text" msgstr "Za ludźimi abo tekstom pytać" -#: lib/action.php:487 +#: lib/action.php:493 msgid "Site notice" msgstr "" -#: lib/action.php:553 +#: lib/action.php:559 msgid "Local views" msgstr "" -#: lib/action.php:619 +#: lib/action.php:625 msgid "Page notice" msgstr "" -#: lib/action.php:721 +#: lib/action.php:727 msgid "Secondary site navigation" msgstr "" -#: lib/action.php:728 +#: lib/action.php:734 msgid "About" msgstr "Wo" -#: lib/action.php:730 +#: lib/action.php:736 msgid "FAQ" msgstr "Huste prašenja" -#: lib/action.php:734 +#: lib/action.php:740 msgid "TOS" msgstr "" -#: lib/action.php:737 +#: lib/action.php:743 msgid "Privacy" msgstr "Priwatnosć" -#: lib/action.php:739 +#: lib/action.php:745 msgid "Source" msgstr "Žórło" -#: lib/action.php:743 +#: lib/action.php:749 msgid "Contact" msgstr "Kontakt" -#: lib/action.php:745 +#: lib/action.php:751 msgid "Badge" msgstr "" -#: lib/action.php:773 +#: lib/action.php:779 msgid "StatusNet software license" msgstr "" -#: lib/action.php:776 +#: lib/action.php:782 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." "broughtby%%](%%site.broughtbyurl%%). " msgstr "" -#: lib/action.php:778 +#: lib/action.php:784 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "" -#: lib/action.php:780 +#: lib/action.php:786 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4060,32 +4462,54 @@ msgid "" "org/licensing/licenses/agpl-3.0.html)." msgstr "" -#: lib/action.php:794 +#: lib/action.php:801 msgid "Site content license" msgstr "" -#: lib/action.php:803 +#: lib/action.php:806 +#, php-format +msgid "Content and data of %1$s are private and confidential." +msgstr "" + +#: lib/action.php:811 +#, php-format +msgid "Content and data copyright by %1$s. All rights reserved." +msgstr "" + +#: lib/action.php:814 +msgid "Content and data copyright by contributors. All rights reserved." +msgstr "" + +#: lib/action.php:827 msgid "All " msgstr "" -#: lib/action.php:808 +#: lib/action.php:833 msgid "license." msgstr "" -#: lib/action.php:1102 +#: lib/action.php:1132 msgid "Pagination" msgstr "" -#: lib/action.php:1111 +#: lib/action.php:1141 msgid "After" msgstr "" -#: lib/action.php:1119 +#: lib/action.php:1149 msgid "Before" msgstr "" -#: lib/action.php:1167 -msgid "There was a problem with your session token." +#: lib/activity.php:382 +msgid "Can't handle remote content yet." +msgstr "" + +#: lib/activity.php:410 +msgid "Can't handle embedded XML content yet." +msgstr "" + +#: lib/activity.php:414 +msgid "Can't handle embedded Base64 content yet." msgstr "" #: lib/adminpanelaction.php:96 @@ -4116,10 +4540,99 @@ msgstr "" msgid "Design configuration" msgstr "" -#: lib/adminpanelaction.php:322 lib/adminpanelaction.php:327 +#: lib/adminpanelaction.php:322 +#, fuzzy +msgid "User configuration" +msgstr "SMS-wobkrućenje" + +#: lib/adminpanelaction.php:327 +#, fuzzy +msgid "Access configuration" +msgstr "SMS-wobkrućenje" + +#: lib/adminpanelaction.php:332 msgid "Paths configuration" msgstr "" +#: lib/adminpanelaction.php:337 +#, fuzzy +msgid "Sessions configuration" +msgstr "SMS-wobkrućenje" + +#: lib/apiauth.php:95 +msgid "API resource requires read-write access, but you only have read access." +msgstr "" + +#: lib/apiauth.php:273 +#, php-format +msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" +msgstr "" + +#: lib/applicationeditform.php:136 +msgid "Edit application" +msgstr "" + +#: lib/applicationeditform.php:184 +msgid "Icon for this application" +msgstr "" + +#: lib/applicationeditform.php:204 +#, php-format +msgid "Describe your application in %d characters" +msgstr "Wopisaj swoju aplikaciju z %d znamješkami" + +#: lib/applicationeditform.php:207 +msgid "Describe your application" +msgstr "Wopisaj swoju aplikaciju" + +#: lib/applicationeditform.php:216 +msgid "Source URL" +msgstr "URL žórła" + +#: lib/applicationeditform.php:218 +msgid "URL of the homepage of this application" +msgstr "" + +#: lib/applicationeditform.php:224 +msgid "Organization responsible for this application" +msgstr "" + +#: lib/applicationeditform.php:230 +msgid "URL for the homepage of the organization" +msgstr "" + +#: lib/applicationeditform.php:236 +msgid "URL to redirect to after authentication" +msgstr "" + +#: lib/applicationeditform.php:258 +msgid "Browser" +msgstr "" + +#: lib/applicationeditform.php:274 +msgid "Desktop" +msgstr "" + +#: lib/applicationeditform.php:275 +msgid "Type of application, browser or desktop" +msgstr "" + +#: lib/applicationeditform.php:297 +msgid "Read-only" +msgstr "" + +#: lib/applicationeditform.php:315 +msgid "Read-write" +msgstr "" + +#: lib/applicationeditform.php:316 +msgid "Default access for this application: read-only, or read-write" +msgstr "" + +#: lib/applicationlist.php:154 +msgid "Revoke" +msgstr "Wotwołać" + #: lib/attachmentlist.php:87 msgid "Attachments" msgstr "" @@ -4140,11 +4653,11 @@ msgstr "" msgid "Tags for this attachment" msgstr "" -#: lib/authenticationplugin.php:182 lib/authenticationplugin.php:187 +#: lib/authenticationplugin.php:218 lib/authenticationplugin.php:223 msgid "Password changing failed" msgstr "Změnjenje hesła je so njeporadźiło" -#: lib/authenticationplugin.php:197 +#: lib/authenticationplugin.php:233 msgid "Password changing is not allowed" msgstr "Změnjenje hesła njeje dowolene" @@ -4187,44 +4700,41 @@ msgid "" msgstr "" #: lib/command.php:152 lib/command.php:390 lib/command.php:451 -#, fuzzy msgid "Notice with that id does not exist" -msgstr "Zdźělenka z tym ID njeeksistuje." +msgstr "Zdźělenka z tym ID njeeksistuje" #: lib/command.php:168 lib/command.php:406 lib/command.php:467 #: lib/command.php:523 -#, fuzzy msgid "User has no last notice" -msgstr "Wužiwar nima poslednju powěsć." +msgstr "Wužiwar nima poslednju powěsć" #: lib/command.php:190 msgid "Notice marked as fave." msgstr "" #: lib/command.php:217 -#, fuzzy msgid "You are already a member of that group" -msgstr "Sy hižo čłon teje skupiny." +msgstr "Sy hižo čłon teje skupiny" #: lib/command.php:231 -#, fuzzy, php-format +#, php-format msgid "Could not join user %s to group %s" -msgstr "Njebě móžno wužiwarja %1$s skupinje %2%s přidać." +msgstr "Njebě móžno wužiwarja %s skupinje %s přidać" #: lib/command.php:236 -#, fuzzy, php-format +#, php-format msgid "%s joined group %s" -msgstr "Wužiwarske skupiny" +msgstr "%s je so k skupinje %s přizamknył" #: lib/command.php:275 -#, fuzzy, php-format +#, php-format msgid "Could not remove user %s to group %s" -msgstr "Njebě móžno wužiwarja %1$s do skupiny $2$s přesunyć." +msgstr "Njebě móžno wužiwarja %s do skupiny %s přesunyć" #: lib/command.php:280 -#, fuzzy, php-format +#, php-format msgid "%s left group %s" -msgstr "Wužiwarske skupiny" +msgstr "%s je skupinu %s wopušćił" #: lib/command.php:309 #, php-format @@ -4252,18 +4762,17 @@ msgid "Message too long - maximum is %d characters, you sent %d" msgstr "" #: lib/command.php:367 -#, fuzzy, php-format +#, php-format msgid "Direct message to %s sent" -msgstr "Direktna powěsć do %s pósłana." +msgstr "Direktna powěsć do %s pósłana" #: lib/command.php:369 msgid "Error sending direct message." msgstr "" #: lib/command.php:413 -#, fuzzy msgid "Cannot repeat your own notice" -msgstr "Njemóžno twoju zdźělenku wospjetować." +msgstr "Njemóžeš swójsku powěsć wospjetować" #: lib/command.php:418 msgid "Already repeated that notice" @@ -4284,9 +4793,9 @@ msgid "Notice too long - maximum is %d characters, you sent %d" msgstr "" #: lib/command.php:491 -#, fuzzy, php-format +#, php-format msgid "Reply to %s sent" -msgstr "Wotmołwa na %s pósłana." +msgstr "Wotmołwa na %s pósłana" #: lib/command.php:493 msgid "Error saving notice." @@ -4296,54 +4805,64 @@ msgstr "" msgid "Specify the name of the user to subscribe to" msgstr "" -#: lib/command.php:554 +#: lib/command.php:554 lib/command.php:589 +#, fuzzy +msgid "No such user" +msgstr "Wužiwar njeeksistuje" + +#: lib/command.php:561 #, php-format msgid "Subscribed to %s" msgstr "" -#: lib/command.php:575 +#: lib/command.php:582 lib/command.php:685 msgid "Specify the name of the user to unsubscribe from" msgstr "" -#: lib/command.php:582 +#: lib/command.php:595 #, php-format msgid "Unsubscribed from %s" msgstr "" -#: lib/command.php:600 lib/command.php:623 +#: lib/command.php:613 lib/command.php:636 msgid "Command not yet implemented." msgstr "" -#: lib/command.php:603 +#: lib/command.php:616 msgid "Notification off." msgstr "" -#: lib/command.php:605 +#: lib/command.php:618 msgid "Can't turn off notification." msgstr "" -#: lib/command.php:626 +#: lib/command.php:639 msgid "Notification on." msgstr "" -#: lib/command.php:628 +#: lib/command.php:641 msgid "Can't turn on notification." msgstr "" -#: lib/command.php:641 +#: lib/command.php:654 msgid "Login command is disabled" msgstr "" -#: lib/command.php:652 +#: lib/command.php:665 #, php-format msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "" -#: lib/command.php:668 +#: lib/command.php:692 +#, fuzzy, php-format +msgid "Unsubscribed %s" +msgstr "Wotskazany" + +#: lib/command.php:709 msgid "You are not subscribed to anyone." msgstr "" -#: lib/command.php:670 +#: lib/command.php:711 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "Sy tutu wosobu abonował:" @@ -4351,11 +4870,11 @@ msgstr[1] "Sy tutej wosobje abonował:" msgstr[2] "Sy tute wosoby abonował:" msgstr[3] "Sy tute wosoby abonował:" -#: lib/command.php:690 +#: lib/command.php:731 msgid "No one is subscribed to you." msgstr "" -#: lib/command.php:692 +#: lib/command.php:733 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "Tuta wosoba je će abonowała:" @@ -4363,11 +4882,11 @@ msgstr[1] "Tutej wosobje stej će abonowałoj:" msgstr[2] "Tute wosoby su će abonowali:" msgstr[3] "Tute wosoby su će abonowali:" -#: lib/command.php:712 +#: lib/command.php:753 msgid "You are not a member of any groups." msgstr "" -#: lib/command.php:714 +#: lib/command.php:755 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "Sy čłon tuteje skupiny:" @@ -4375,7 +4894,7 @@ msgstr[1] "Sy čłon tuteju skupinow:" msgstr[2] "Sy čłon tutych skupinow:" msgstr[3] "Sy čłon tutych skupinow:" -#: lib/command.php:728 +#: lib/command.php:769 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -4389,6 +4908,7 @@ msgid "" "d - direct message to user\n" "get - get last notice from user\n" "whois - get profile info on user\n" +"lose - force user to stop following you\n" "fav - add user's last notice as a 'fave'\n" "fav # - add notice with the given id as a 'fave'\n" "repeat # - repeat a notice with a given id\n" @@ -4416,19 +4936,19 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:131 +#: lib/common.php:136 msgid "No configuration file found. " msgstr "Žana konfiguraciska dataja namakana. " -#: lib/common.php:132 +#: lib/common.php:137 msgid "I looked for configuration files in the following places: " msgstr "" -#: lib/common.php:134 +#: lib/common.php:139 msgid "You may wish to run the installer to fix this." msgstr "" -#: lib/common.php:135 +#: lib/common.php:140 msgid "Go to the installer." msgstr "" @@ -4444,6 +4964,14 @@ msgstr "" msgid "Updates by SMS" msgstr "" +#: lib/connectsettingsaction.php:120 +msgid "Connections" +msgstr "Zwiski" + +#: lib/connectsettingsaction.php:121 +msgid "Authorized connected applications" +msgstr "" + #: lib/dberroraction.php:60 msgid "Database error" msgstr "Zmylk w datowej bance" @@ -4626,15 +5154,15 @@ msgstr "MB" msgid "kB" msgstr "KB" -#: lib/jabber.php:202 +#: lib/jabber.php:220 #, php-format msgid "[%s]" msgstr "[%s]" -#: lib/jabber.php:385 -#, fuzzy, php-format +#: lib/jabber.php:400 +#, php-format msgid "Unknown inbox source %d." -msgstr "Njeznata rěč \"%s\"." +msgstr "Njeznate žórło postoweho kašćika %d." #: lib/joinform.php:114 msgid "Join" @@ -4826,7 +5354,7 @@ msgid "" "users in conversation. People can send you messages for your eyes only." msgstr "" -#: lib/mailbox.php:227 lib/noticelist.php:477 +#: lib/mailbox.php:227 lib/noticelist.php:482 msgid "from" msgstr "wot" @@ -4933,67 +5461,61 @@ msgid "Attach a file" msgstr "Dataju připowěsnyć" #: lib/noticeform.php:212 -#, fuzzy msgid "Share my location" -msgstr "Městno dźělić." +msgstr "Městno dźělić" #: lib/noticeform.php:215 -#, fuzzy msgid "Do not share my location" -msgstr "Městno njedźělić." +msgstr "Njedźěl moje městno" #: lib/noticeform.php:216 -msgid "Hide this info" -msgstr "" - -#: lib/noticeform.php:217 msgid "" "Sorry, retrieving your geo location is taking longer than expected, please " "try again later" msgstr "" -#: lib/noticelist.php:428 +#: lib/noticelist.php:429 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" -#: lib/noticelist.php:429 +#: lib/noticelist.php:430 msgid "N" msgstr "S" -#: lib/noticelist.php:429 +#: lib/noticelist.php:430 msgid "S" msgstr "J" -#: lib/noticelist.php:430 +#: lib/noticelist.php:431 msgid "E" msgstr "W" -#: lib/noticelist.php:430 +#: lib/noticelist.php:431 msgid "W" msgstr "Z" -#: lib/noticelist.php:436 +#: lib/noticelist.php:438 msgid "at" msgstr "" -#: lib/noticelist.php:531 +#: lib/noticelist.php:558 msgid "in context" msgstr "" -#: lib/noticelist.php:556 +#: lib/noticelist.php:583 msgid "Repeated by" msgstr "Wospjetowany wot" -#: lib/noticelist.php:585 +#: lib/noticelist.php:610 msgid "Reply to this notice" msgstr "Na tutu zdźělenku wotmołwić" -#: lib/noticelist.php:586 +#: lib/noticelist.php:611 msgid "Reply" msgstr "Wotmołwić" -#: lib/noticelist.php:628 +#: lib/noticelist.php:655 msgid "Notice repeated" msgstr "Zdźělenka wospjetowana" @@ -5025,11 +5547,7 @@ msgstr "Zmylk při zasunjenju zdaleneho profila" msgid "Duplicate notice" msgstr "Dwójna zdźělenka" -#: lib/oauthstore.php:466 lib/subs.php:48 -msgid "You have been banned from subscribing." -msgstr "" - -#: lib/oauthstore.php:491 +#: lib/oauthstore.php:490 msgid "Couldn't insert new subscription." msgstr "" @@ -5045,19 +5563,19 @@ msgstr "Wotmołwy" msgid "Favorites" msgstr "Fawority" -#: lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "" -#: lib/personalgroupnav.php:125 +#: lib/personalgroupnav.php:126 msgid "Your incoming messages" msgstr "Twoje dochadźace powěsće" -#: lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 msgid "Outbox" msgstr "" -#: lib/personalgroupnav.php:130 +#: lib/personalgroupnav.php:131 msgid "Your sent messages" msgstr "Twoje pósłane powěsće" @@ -5134,6 +5652,10 @@ msgstr "Tutu zdźělenku wospjetować?" msgid "Repeat this notice" msgstr "Tutu zdźělenku wospjetować" +#: lib/router.php:665 +msgid "No single user defined for single-user mode." +msgstr "" + #: lib/sandboxform.php:67 msgid "Sandbox" msgstr "" @@ -5201,34 +5723,6 @@ msgstr "" msgid "Groups %s is a member of" msgstr "" -#: lib/subs.php:52 -msgid "Already subscribed!" -msgstr "Hižo abonowany!" - -#: lib/subs.php:56 -msgid "User has blocked you." -msgstr "Wužiwar je će zablokował." - -#: lib/subs.php:63 -msgid "Could not subscribe." -msgstr "Abonowanje njebě móžno" - -#: lib/subs.php:82 -msgid "Could not subscribe other to you." -msgstr "" - -#: lib/subs.php:137 -msgid "Not subscribed!" -msgstr "Njeje abonowany!" - -#: lib/subs.php:142 -msgid "Couldn't delete self-subscription." -msgstr "Sebjeabonement njeje so dał zničić." - -#: lib/subs.php:158 -msgid "Couldn't delete subscription." -msgstr "Abonoment njeje so dał zničić." - #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -5279,67 +5773,67 @@ msgstr "Awatar wobdźěłać" msgid "User actions" msgstr "Wužiwarske akcije" -#: lib/userprofile.php:248 +#: lib/userprofile.php:251 msgid "Edit profile settings" msgstr "Profilowe nastajenja wobdźěłać" -#: lib/userprofile.php:249 +#: lib/userprofile.php:252 msgid "Edit" msgstr "Wobdźěłać" -#: lib/userprofile.php:272 +#: lib/userprofile.php:275 msgid "Send a direct message to this user" msgstr "Tutomu wužiwarja direktnu powěsć pósłać" -#: lib/userprofile.php:273 +#: lib/userprofile.php:276 msgid "Message" msgstr "Powěsć" -#: lib/userprofile.php:311 +#: lib/userprofile.php:314 msgid "Moderate" msgstr "" -#: lib/util.php:877 +#: lib/util.php:952 msgid "a few seconds ago" msgstr "před něšto sekundami" -#: lib/util.php:879 +#: lib/util.php:954 msgid "about a minute ago" msgstr "před něhdźe jednej mjeńšinu" -#: lib/util.php:881 +#: lib/util.php:956 #, php-format msgid "about %d minutes ago" msgstr "před %d mjeńšinami" -#: lib/util.php:883 +#: lib/util.php:958 msgid "about an hour ago" msgstr "před něhdźe jednej hodźinu" -#: lib/util.php:885 +#: lib/util.php:960 #, php-format msgid "about %d hours ago" msgstr "před něhdźe %d hodźinami" -#: lib/util.php:887 +#: lib/util.php:962 msgid "about a day ago" msgstr "před něhdźe jednym dnjom" -#: lib/util.php:889 +#: lib/util.php:964 #, php-format msgid "about %d days ago" msgstr "před něhdźe %d dnjemi" -#: lib/util.php:891 +#: lib/util.php:966 msgid "about a month ago" msgstr "před něhdźe jednym měsacom" -#: lib/util.php:893 +#: lib/util.php:968 #, php-format msgid "about %d months ago" msgstr "před něhdźe %d měsacami" -#: lib/util.php:895 +#: lib/util.php:970 msgid "about a year ago" msgstr "před něhdźe jednym lětom" @@ -5355,7 +5849,7 @@ msgstr "" "%s płaćiwa barba njeje! Wužij 3 heksadecimalne znamješka abo 6 " "heksadecimalnych znamješkow." -#: scripts/xmppdaemon.php:301 +#: lib/xmppmanager.php:402 #, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "" diff --git a/locale/ia/LC_MESSAGES/statusnet.po b/locale/ia/LC_MESSAGES/statusnet.po index 3115ed7cef..fa42bd3fea 100644 --- a/locale/ia/LC_MESSAGES/statusnet.po +++ b/locale/ia/LC_MESSAGES/statusnet.po @@ -8,17 +8,69 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-01-13 22:04+0000\n" -"PO-Revision-Date: 2010-01-13 22:05:28+0000\n" +"POT-Creation-Date: 2010-02-24 23:49+0000\n" +"PO-Revision-Date: 2010-02-24 23:51:01+0000\n" "Language-Team: Interlingua\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha (r61027); Translate extension (2010-01-04)\n" +"X-Generator: MediaWiki 1.17alpha (r62925); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: actions/accessadminpanel.php:54 lib/adminpanelaction.php:326 +msgid "Access" +msgstr "Accesso" + +#: actions/accessadminpanel.php:65 +msgid "Site access settings" +msgstr "Configurationes de accesso al sito" + +#: actions/accessadminpanel.php:158 +msgid "Registration" +msgstr "Registration" + +#: actions/accessadminpanel.php:161 +msgid "Private" +msgstr "Private" + +#: actions/accessadminpanel.php:163 +msgid "Prohibit anonymous users (not logged in) from viewing site?" +msgstr "Prohibir al usatores anonyme (sin session aperte) de vider le sito?" + +#: actions/accessadminpanel.php:167 +msgid "Invite only" +msgstr "Solmente per invitation" + +#: actions/accessadminpanel.php:169 +msgid "Make registration invitation only." +msgstr "Permitter le registration solmente al invitatos." + +#: actions/accessadminpanel.php:173 +msgid "Closed" +msgstr "Claudite" + +#: actions/accessadminpanel.php:175 +msgid "Disable new registrations." +msgstr "Disactivar le creation de nove contos." + +#: actions/accessadminpanel.php:189 actions/designadminpanel.php:586 +#: actions/emailsettings.php:195 actions/imsettings.php:163 +#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 +#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 +#: actions/siteadminpanel.php:336 actions/smssettings.php:181 +#: actions/subscriptions.php:208 actions/tagother.php:154 +#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 lib/designsettings.php:256 +#: lib/groupeditform.php:202 +msgid "Save" +msgstr "Salveguardar" + +#: actions/accessadminpanel.php:189 +msgid "Save access settings" +msgstr "Salveguardar configurationes de accesso" + #: actions/all.php:63 actions/public.php:97 actions/replies.php:92 #: actions/showfavorites.php:137 actions/tag.php:51 msgid "No such page" @@ -33,25 +85,29 @@ msgstr "Pagina non existe" #: 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:144 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apistatusesupdate.php:148 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:78 #: actions/apitimelinehome.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/otp.php:76 #: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154 -#: actions/replies.php:73 actions/repliesrss.php:38 +#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 #: 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:302 lib/command.php:355 #: lib/command.php:401 lib/command.php:462 lib/command.php:518 #: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 -#: lib/subs.php:34 lib/subs.php:125 msgid "No such user." msgstr "Usator non existe." +#: actions/all.php:84 +#, php-format +msgid "%1$s and friends, page %2$d" +msgstr "%1$s e amicos, pagina %2$d" + #: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 -#: actions/apitimelinefriends.php:115 actions/apitimelinehome.php:115 +#: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" @@ -90,15 +146,15 @@ msgstr "" "action.groups%%) o publica alique tu mesme." #: actions/all.php:134 -#, fuzzy, php-format +#, php-format msgid "" "You can try to [nudge %1$s](../%2$s) from his profile or [post something to " "his or her attention](%%%%action.newnotice%%%%?status_textarea=%3$s)." msgstr "" -"Tu pote tentar [dar un pulsata a %s](../%s) in su profilo o [publicar un " -"message a su attention](%%%%action.newnotice%%%%?status_textarea=%s)." +"Tu pote tentar [dar un pulsata a %1$s](../%2$s) in su profilo o [publicar un " +"message a su attention](%%%%action.newnotice%%%%?status_textarea=%3$s)." -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211 #, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " @@ -111,8 +167,8 @@ msgstr "" msgid "You and friends" msgstr "Tu e amicos" -#: actions/allrss.php:119 actions/apitimelinefriends.php:122 -#: actions/apitimelinehome.php:122 +#: actions/allrss.php:119 actions/apitimelinefriends.php:119 +#: actions/apitimelinehome.php:120 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Actualisationes de %1$s e su amicos in %2$s!" @@ -122,23 +178,23 @@ msgstr "Actualisationes de %1$s e su amicos in %2$s!" #: actions/apiaccountupdateprofile.php:97 #: actions/apiaccountupdateprofilebackgroundimage.php:94 #: actions/apiaccountupdateprofilecolors.php:118 -#: 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:136 actions/apigroupismember.php:114 -#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 -#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 -#: actions/apigroupmembership.php:106 actions/apigroupshow.php:105 -#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 -#: actions/apistatusesretweets.php:112 actions/apistatusesshow.php:108 -#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93 -#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:146 -#: actions/apitimelinefriends.php:156 actions/apitimelinegroup.php:150 -#: actions/apitimelinehome.php:156 actions/apitimelinementions.php:151 -#: actions/apitimelinepublic.php:131 actions/apitimelineretweetedbyme.php:122 +#: actions/apiaccountverifycredentials.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:128 actions/apigroupcreate.php:136 +#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 +#: actions/apigroupleave.php:141 actions/apigrouplist.php:132 +#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 +#: actions/apigroupshow.php:115 actions/apihelptest.php:88 +#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 +#: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 #: actions/apitimelineretweetedtome.php:121 -#: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141 -#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 +#: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 +#: actions/apitimelineuser.php:207 actions/apiusershow.php:101 msgid "API method not found." msgstr "Methodo API non trovate." @@ -152,7 +208,7 @@ msgstr "Methodo API non trovate." #: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 #: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 #: actions/apigroupleave.php:91 actions/apistatusesretweet.php:65 -#: actions/apistatusesupdate.php:114 +#: actions/apistatusesupdate.php:118 msgid "This method requires a POST." msgstr "Iste methodo require un POST." @@ -183,8 +239,9 @@ msgstr "Non poteva salveguardar le profilo." #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:97 -#: actions/apistatusesupdate.php:127 actions/avatarsettings.php:257 -#: actions/designadminpanel.php:122 actions/newnotice.php:94 +#: actions/apistatusesupdate.php:131 actions/avatarsettings.php:257 +#: actions/designadminpanel.php:122 actions/editapplication.php:118 +#: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 #, php-format msgid "" @@ -264,18 +321,16 @@ msgid "No status found with that ID." msgstr "Nulle stato trovate con iste ID." #: actions/apifavoritecreate.php:119 -#, fuzzy msgid "This status is already a favorite." -msgstr "Iste stato es ja favorite!" +msgstr "Iste stato es ja favorite." #: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:176 msgid "Could not create favorite." msgstr "Non poteva crear le favorite." #: actions/apifavoritedestroy.php:122 -#, fuzzy msgid "That status is not a favorite." -msgstr "Iste stato non es favorite!" +msgstr "Iste stato non es favorite." #: actions/apifavoritedestroy.php:134 actions/disfavor.php:87 msgid "Could not delete favorite." @@ -295,19 +350,18 @@ msgid "Could not unfollow user: User not found." msgstr "Non poteva cessar de sequer le usator: Usator non trovate." #: actions/apifriendshipsdestroy.php:120 -#, fuzzy msgid "You cannot unfollow yourself." -msgstr "Tu non pote cessar de sequer te mesme!" +msgstr "Tu non pote cessar de sequer te mesme." #: actions/apifriendshipsexists.php:94 msgid "Two user ids or screen_names must be supplied." msgstr "Duo IDs de usator o pseudonymos debe esser fornite." -#: actions/apifriendshipsshow.php:135 +#: actions/apifriendshipsshow.php:134 msgid "Could not determine source user." msgstr "Non poteva determinar le usator de origine." -#: actions/apifriendshipsshow.php:143 +#: actions/apifriendshipsshow.php:142 msgid "Could not find target user." msgstr "Non poteva trovar le usator de destination." @@ -329,7 +383,8 @@ msgstr "Pseudonymo ja in uso. Proba un altere." msgid "Not a valid nickname." msgstr "Non un pseudonymo valide." -#: actions/apigroupcreate.php:196 actions/editgroup.php:195 +#: actions/apigroupcreate.php:196 actions/editapplication.php:215 +#: actions/editgroup.php:195 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:217 msgid "Homepage is not a valid URL." @@ -341,7 +396,8 @@ msgstr "Le pagina personal non es un URL valide." msgid "Full name is too long (max 255 chars)." msgstr "Le nomine complete es troppo longe (max. 255 characteres)." -#: actions/apigroupcreate.php:213 +#: actions/apigroupcreate.php:213 actions/editapplication.php:190 +#: actions/newapplication.php:172 #, php-format msgid "Description is too long (max %d chars)." msgstr "Description es troppo longe (max %d charachteres)." @@ -377,7 +433,7 @@ msgstr "Le alias non pote esser identic al pseudonymo." #: actions/apigroupismember.php:95 actions/apigroupjoin.php:104 #: actions/apigroupleave.php:104 actions/apigroupmembership.php:91 -#: actions/apigroupshow.php:90 actions/apitimelinegroup.php:91 +#: actions/apigroupshow.php:82 actions/apitimelinegroup.php:91 msgid "Group not found!" msgstr "Gruppo non trovate!" @@ -390,18 +446,18 @@ msgid "You have been blocked from that group by the admin." msgstr "Le administrator te ha blocate de iste gruppo." #: actions/apigroupjoin.php:138 actions/joingroup.php:124 -#, fuzzy, php-format +#, php-format msgid "Could not join user %1$s to group %2$s." -msgstr "Non poteva inscriber le usator %s in le gruppo %s." +msgstr "Non poteva inscriber le usator %1$s in le gruppo %2$s." #: actions/apigroupleave.php:114 msgid "You are not a member of this group." msgstr "Tu non es membro de iste gruppo." #: actions/apigroupleave.php:124 actions/leavegroup.php:119 -#, fuzzy, php-format +#, php-format msgid "Could not remove user %1$s from group %2$s." -msgstr "Non poteva remover le usator %s del gruppo %s." +msgstr "Non poteva remover le usator %1$s del gruppo %2$s." #: actions/apigrouplist.php:95 #, php-format @@ -418,6 +474,118 @@ msgstr "Gruppos de %s" msgid "groups on %s" msgstr "gruppos in %s" +#: actions/apioauthauthorize.php:101 +msgid "No oauth_token parameter provided." +msgstr "Nulle parametro oauth_token fornite." + +#: actions/apioauthauthorize.php:106 +msgid "Invalid token." +msgstr "Indicio invalide." + +#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 +#: actions/deletenotice.php:157 actions/disfavor.php:74 +#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54 +#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupunblock.php:66 actions/imsettings.php:206 +#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 +#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 +#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135 +#: actions/othersettings.php:145 actions/passwordsettings.php:138 +#: actions/profilesettings.php:194 actions/recoverpassword.php:337 +#: actions/register.php:165 actions/remotesubscribe.php:77 +#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 +#: actions/subscribe.php:86 actions/tagother.php:166 +#: 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 "Occurreva un problema con le indicio de tu session. Per favor reproba." + +#: actions/apioauthauthorize.php:135 +msgid "Invalid nickname / password!" +msgstr "Nomine de usator o contrasigno invalide!" + +#: actions/apioauthauthorize.php:159 +msgid "Database error deleting OAuth application user." +msgstr "" +"Error del base de datos durante le deletion del usator del application OAuth." + +#: actions/apioauthauthorize.php:185 +msgid "Database error inserting OAuth application user." +msgstr "" +"Error del base de datos durante le insertion del usator del application " +"OAuth." + +#: actions/apioauthauthorize.php:214 +#, php-format +msgid "" +"The request token %s has been authorized. Please exchange it for an access " +"token." +msgstr "" +"Le indicio de requesta %s ha essite autorisate. Per favor excambia lo pro un " +"indicio de accesso." + +#: actions/apioauthauthorize.php:227 +#, php-format +msgid "The request token %s has been denied and revoked." +msgstr "Le indicio de requesta %s ha essite refusate e revocate." + +#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 +#: actions/designadminpanel.php:103 actions/editapplication.php:139 +#: actions/emailsettings.php:256 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/newapplication.php:121 +#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 +#: actions/smssettings.php:248 lib/designsettings.php:304 +msgid "Unexpected form submission." +msgstr "Submission de formulario inexpectate." + +#: actions/apioauthauthorize.php:259 +msgid "An application would like to connect to your account" +msgstr "Un application vole connecter se a tu conto" + +#: actions/apioauthauthorize.php:276 +msgid "Allow or deny access" +msgstr "Permitter o refusar accesso" + +#: actions/apioauthauthorize.php:292 +#, php-format +msgid "" +"The application %1$s by %2$s would like " +"the ability to %3$s your %4$s account data. You should only " +"give access to your %4$s account to third parties you trust." +msgstr "" +"Le application %1$s per %2$s vole poter " +"%3$s le datos de tu conto de %4$s. Tu debe solmente dar " +"accesso a tu conto de %4$s a tertie personas in le quales tu ha confidentia." + +#: actions/apioauthauthorize.php:310 lib/action.php:441 +msgid "Account" +msgstr "Conto" + +#: actions/apioauthauthorize.php:313 actions/login.php:230 +#: actions/profilesettings.php:106 actions/register.php:424 +#: actions/showgroup.php:236 actions/tagother.php:94 +#: actions/userauthorization.php:145 lib/groupeditform.php:152 +#: lib/userprofile.php:131 +msgid "Nickname" +msgstr "Pseudonymo" + +#: actions/apioauthauthorize.php:316 actions/login.php:233 +#: actions/register.php:429 lib/accountsettingsaction.php:116 +msgid "Password" +msgstr "Contrasigno" + +#: actions/apioauthauthorize.php:328 +msgid "Deny" +msgstr "Refusar" + +#: actions/apioauthauthorize.php:334 +msgid "Allow" +msgstr "Permitter" + +#: actions/apioauthauthorize.php:351 +msgid "Allow or deny access to your account information." +msgstr "Permitter o refusar accesso al informationes de tu conto." + #: actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." msgstr "Iste methodo require un commando POST o DELETE." @@ -447,18 +615,18 @@ msgstr "Stato delite." msgid "No status with that ID found." msgstr "Nulle stato trovate con iste ID." -#: actions/apistatusesupdate.php:157 actions/newnotice.php:155 +#: actions/apistatusesupdate.php:161 actions/newnotice.php:155 #: lib/mailhandler.php:60 #, php-format msgid "That's too long. Max notice size is %d chars." msgstr "" "Isto es troppo longe. Le longitude maximal del notas es %d characteres." -#: actions/apistatusesupdate.php:198 +#: actions/apistatusesupdate.php:202 msgid "Not found" msgstr "Non trovate" -#: actions/apistatusesupdate.php:221 actions/newnotice.php:178 +#: actions/apistatusesupdate.php:225 actions/newnotice.php:178 #, php-format msgid "Max notice size is %d chars, including attachment URL." msgstr "" @@ -470,14 +638,14 @@ msgid "Unsupported format." msgstr "Formato non supportate." #: actions/apitimelinefavorites.php:108 -#, fuzzy, php-format +#, php-format msgid "%1$s / Favorites from %2$s" -msgstr "%s / Favorites de %s" +msgstr "%1$s / Favorites de %2$s" -#: actions/apitimelinefavorites.php:120 -#, fuzzy, php-format +#: actions/apitimelinefavorites.php:117 +#, php-format msgid "%1$s updates favorited by %2$s / %2$s." -msgstr "%s actualisationes favoritisate per %s / %s." +msgstr "%1$s actualisationes favoritisate per %2$s / %2$s." #: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 #: actions/grouprss.php:131 actions/userrss.php:90 @@ -485,7 +653,7 @@ msgstr "%s actualisationes favoritisate per %s / %s." msgid "%s timeline" msgstr "Chronologia de %s" -#: actions/apitimelinegroup.php:117 actions/apitimelineuser.php:126 +#: actions/apitimelinegroup.php:114 actions/apitimelineuser.php:126 #: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" @@ -502,27 +670,22 @@ msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "" "Actualisationes de %1$s que responde al actualisationes de %2$s / %3$s." -#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "Chronologia public de %s" -#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "Actualisationes de totes in %s!" -#: actions/apitimelineretweetedbyme.php:112 -#, php-format -msgid "Repeated by %s" -msgstr "Repetite per %s" - #: actions/apitimelineretweetedtome.php:111 #, php-format msgid "Repeated to %s" msgstr "Repetite a %s" -#: actions/apitimelineretweetsofme.php:112 +#: actions/apitimelineretweetsofme.php:114 #, php-format msgid "Repeats of %s" msgstr "Repetitiones de %s" @@ -532,7 +695,7 @@ msgstr "Repetitiones de %s" msgid "Notices tagged with %s" msgstr "Notas con etiquetta %s" -#: actions/apitimelinetag.php:108 actions/tagrss.php:64 +#: actions/apitimelinetag.php:104 actions/tagrss.php:64 #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Actualisationes con etiquetta %1$s in %2$s!" @@ -543,7 +706,7 @@ msgstr "Non trovate." #: actions/attachment.php:73 msgid "No such attachment." -msgstr "Attachamento non existe." +msgstr "Annexo non existe." #: actions/avatarbynickname.php:59 actions/blockedfromgroup.php:73 #: actions/editgroup.php:84 actions/groupdesignsettings.php:84 @@ -569,7 +732,8 @@ msgstr "Avatar" #: actions/avatarsettings.php:78 #, php-format msgid "You can upload your personal avatar. The maximum file size is %s." -msgstr "Tu pote cargar tu avatar personal. Le dimension maxime del file es %s." +msgstr "" +"Tu pote incargar tu avatar personal. Le dimension maximal del file es %s." #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 #: actions/remotesubscribe.php:191 actions/userauthorization.php:72 @@ -592,42 +756,19 @@ msgstr "Original" msgid "Preview" msgstr "Previsualisation" -#: actions/avatarsettings.php:149 lib/deleteuserform.php:66 -#: lib/noticelist.php:611 +#: actions/avatarsettings.php:149 actions/showapplication.php:252 +#: lib/deleteuserform.php:66 lib/noticelist.php:637 msgid "Delete" msgstr "Deler" #: actions/avatarsettings.php:166 actions/grouplogo.php:233 msgid "Upload" -msgstr "Cargar" +msgstr "Incargar" #: actions/avatarsettings.php:231 actions/grouplogo.php:286 msgid "Crop" msgstr "Taliar" -#: actions/avatarsettings.php:268 actions/deletenotice.php:157 -#: actions/disfavor.php:74 actions/emailsettings.php:238 actions/favor.php:75 -#: actions/geocode.php:50 actions/groupblock.php:66 actions/grouplogo.php:309 -#: actions/groupunblock.php:66 actions/imsettings.php:206 -#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 -#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 -#: actions/othersettings.php:145 actions/passwordsettings.php:138 -#: actions/profilesettings.php:194 actions/recoverpassword.php:337 -#: actions/register.php:165 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 -#: actions/subscribe.php:46 actions/tagother.php:166 -#: 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 "Occurreva un problema con le indicio de tu session. Per favor reproba." - -#: actions/avatarsettings.php:281 actions/designadminpanel.php:103 -#: actions/emailsettings.php:256 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 "Submission de formulario inexpectate." - #: actions/avatarsettings.php:328 msgid "Pick a square area of the image to be your avatar" msgstr "Selige un area quadrate del imagine pro facer lo tu avatar" @@ -666,8 +807,9 @@ msgstr "" "cancellate, ille non potera resubscriber se a te in le futuro, e tu non " "recipera notification de su @-responsas." -#: actions/block.php:143 actions/deletenotice.php:145 -#: actions/deleteuser.php:147 actions/groupblock.php:178 +#: actions/block.php:143 actions/deleteapplication.php:153 +#: actions/deletenotice.php:145 actions/deleteuser.php:147 +#: actions/groupblock.php:178 msgid "No" msgstr "No" @@ -675,13 +817,13 @@ msgstr "No" msgid "Do not block this user" msgstr "Non blocar iste usator" -#: actions/block.php:144 actions/deletenotice.php:146 -#: actions/deleteuser.php:148 actions/groupblock.php:179 -#: lib/repeatform.php:132 +#: actions/block.php:144 actions/deleteapplication.php:158 +#: actions/deletenotice.php:146 actions/deleteuser.php:148 +#: actions/groupblock.php:179 lib/repeatform.php:132 msgid "Yes" msgstr "Si" -#: actions/block.php:144 actions/groupmembers.php:346 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80 msgid "Block this user" msgstr "Blocar iste usator" @@ -705,9 +847,9 @@ msgid "%s blocked profiles" msgstr "%s profilos blocate" #: actions/blockedfromgroup.php:93 -#, fuzzy, php-format +#, php-format msgid "%1$s blocked profiles, page %2$d" -msgstr "%s profilos blocate, pagina %d" +msgstr "%1$s profilos blocate, pagina %2$d" #: actions/blockedfromgroup.php:108 msgid "A list of the users blocked from joining this group." @@ -764,7 +906,7 @@ msgid "Couldn't delete email confirmation." msgstr "Non poteva deler confirmation de e-mail." #: actions/confirmaddress.php:144 -msgid "Confirm Address" +msgid "Confirm address" msgstr "Confirmar adresse" #: actions/confirmaddress.php:159 @@ -781,10 +923,51 @@ msgstr "Conversation" msgid "Notices" msgstr "Notas" +#: actions/deleteapplication.php:63 +msgid "You must be logged in to delete an application." +msgstr "Tu debe aperir un session pro deler un application." + +#: actions/deleteapplication.php:71 +msgid "Application not found." +msgstr "Application non trovate." + +#: actions/deleteapplication.php:78 actions/editapplication.php:77 +#: actions/showapplication.php:94 +msgid "You are not the owner of this application." +msgstr "Tu non es le proprietario de iste application." + +#: actions/deleteapplication.php:102 actions/editapplication.php:127 +#: actions/newapplication.php:110 actions/showapplication.php:118 +#: lib/action.php:1197 +msgid "There was a problem with your session token." +msgstr "Il habeva un problema con tu indicio de session." + +#: actions/deleteapplication.php:123 actions/deleteapplication.php:147 +msgid "Delete application" +msgstr "Deler application" + +#: actions/deleteapplication.php:149 +msgid "" +"Are you sure you want to delete this application? This will clear all data " +"about the application from the database, including all existing user " +"connections." +msgstr "" +"Es tu secur de voler deler iste application? Isto radera tote le datos super " +"le application del base de datos, includente tote le existente connexiones " +"de usator." + +#: actions/deleteapplication.php:156 +msgid "Do not delete this application" +msgstr "Non deler iste application" + +#: actions/deleteapplication.php:160 +msgid "Delete this application" +msgstr "Deler iste application" + #: 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/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 #: lib/adminpanelaction.php:72 lib/profileformaction.php:63 #: lib/settingsaction.php:72 @@ -815,7 +998,7 @@ msgstr "Es tu secur de voler deler iste nota?" msgid "Do not delete this notice" msgstr "Non deler iste nota" -#: actions/deletenotice.php:146 lib/noticelist.php:611 +#: actions/deletenotice.php:146 lib/noticelist.php:637 msgid "Delete this notice" msgstr "Deler iste nota" @@ -896,8 +1079,8 @@ msgid "" "You can upload a background image for the site. The maximum file size is %1" "$s." msgstr "" -"Tu pote cargar un imagine de fundo pro le sito. Le dimension maxime del file " -"es %1$s." +"Tu pote incargar un imagine de fundo pro le sito. Le dimension maximal del " +"file es %1$s." #: actions/designadminpanel.php:457 lib/designsettings.php:139 msgid "On" @@ -947,16 +1130,6 @@ msgstr "Restaurar apparentias predefinite" msgid "Reset back to default" msgstr "Revenir al predefinitiones" -#: actions/designadminpanel.php:586 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 -#: actions/pathsadminpanel.php:324 actions/profilesettings.php:174 -#: actions/siteadminpanel.php:388 actions/smssettings.php:181 -#: actions/subscriptions.php:203 actions/tagother.php:154 -#: actions/useradminpanel.php:313 lib/designsettings.php:256 -#: lib/groupeditform.php:202 -msgid "Save" -msgstr "Salveguardar" - #: actions/designadminpanel.php:587 lib/designsettings.php:257 msgid "Save design" msgstr "Salveguardar apparentia" @@ -969,9 +1142,75 @@ msgstr "Iste nota non es favorite!" msgid "Add to favorites" msgstr "Adder al favorites" -#: actions/doc.php:69 -msgid "No such document." -msgstr "Documento non existe." +#: actions/doc.php:158 +#, php-format +msgid "No such document \"%s\"" +msgstr "Le documento \"%s\" non existe." + +#: actions/editapplication.php:54 +msgid "Edit Application" +msgstr "Modificar application" + +#: actions/editapplication.php:66 +msgid "You must be logged in to edit an application." +msgstr "Tu debe aperir un session pro modificar un application." + +#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:166 +#: actions/showapplication.php:87 +msgid "No such application." +msgstr "Application non trovate." + +#: actions/editapplication.php:161 +msgid "Use this form to edit your application." +msgstr "Usa iste formulario pro modificar le application." + +#: actions/editapplication.php:177 actions/newapplication.php:159 +msgid "Name is required." +msgstr "Le nomine es requirite." + +#: actions/editapplication.php:180 actions/newapplication.php:165 +msgid "Name is too long (max 255 chars)." +msgstr "Le nomine es troppo longe (max. 255 characteres)." + +#: actions/editapplication.php:183 actions/newapplication.php:162 +msgid "Name already in use. Try another one." +msgstr "Nomine ja in uso. Proba un altere." + +#: actions/editapplication.php:186 actions/newapplication.php:168 +msgid "Description is required." +msgstr "Le description es requirite." + +#: actions/editapplication.php:194 +msgid "Source URL is too long." +msgstr "Le URL de origine es troppo longe." + +#: actions/editapplication.php:200 actions/newapplication.php:185 +msgid "Source URL is not valid." +msgstr "Le URL de origine non es valide." + +#: actions/editapplication.php:203 actions/newapplication.php:188 +msgid "Organization is required." +msgstr "Le organisation es requirite." + +#: actions/editapplication.php:206 actions/newapplication.php:191 +msgid "Organization is too long (max 255 chars)." +msgstr "Le organisation es troppo longe (max. 255 characteres)." + +#: actions/editapplication.php:209 actions/newapplication.php:194 +msgid "Organization homepage is required." +msgstr "Le sito web del organisation es requirite." + +#: actions/editapplication.php:218 actions/newapplication.php:206 +msgid "Callback is too long." +msgstr "Le reappello (callback) es troppo longe." + +#: actions/editapplication.php:225 actions/newapplication.php:215 +msgid "Callback URL is not valid." +msgstr "Le URL de reappello (callback) non es valide." + +#: actions/editapplication.php:258 +msgid "Could not update application." +msgstr "Non poteva actualisar application." #: actions/editgroup.php:56 #, php-format @@ -984,7 +1223,6 @@ msgstr "Tu debe aperir un session pro crear un gruppo." #: 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 "Tu debe esser administrator pro modificar le gruppo." @@ -1001,7 +1239,7 @@ msgstr "description es troppo longe (max %d chars)." msgid "Could not update group." msgstr "Non poteva actualisar gruppo." -#: actions/editgroup.php:259 classes/User_group.php:390 +#: actions/editgroup.php:259 classes/User_group.php:433 msgid "Could not create aliases." msgstr "Non poteva crear aliases." @@ -1010,7 +1248,6 @@ msgid "Options saved." msgstr "Optiones salveguardate." #: actions/emailsettings.php:60 -#, fuzzy msgid "Email settings" msgstr "Configuration de e-mail" @@ -1043,14 +1280,14 @@ msgstr "" "spam!) pro un message con ulterior instructiones." #: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 +#: actions/smssettings.php:126 lib/applicationeditform.php:331 +#: lib/applicationeditform.php:332 msgid "Cancel" msgstr "Cancellar" #: actions/emailsettings.php:121 -#, fuzzy msgid "Email address" -msgstr "Adresses de e-mail" +msgstr "Adresse de e-mail" #: actions/emailsettings.php:123 msgid "Email address, like \"UserName@example.org\"" @@ -1097,7 +1334,7 @@ msgstr "Inviar me e-mail quando alcuno me invia un message private." #: actions/emailsettings.php:174 msgid "Send me email when someone sends me an \"@-reply\"." -msgstr "Inviar me e-mail quando alcuno me invia un \"@-responsa\"." +msgstr "Inviar me e-mail quando alcuno me invia un \"responsa @\"." #: actions/emailsettings.php:179 msgid "Allow friends to nudge me and send me an email." @@ -1125,7 +1362,7 @@ msgid "Cannot normalize that email address" msgstr "Non pote normalisar iste adresse de e-mail" #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:157 +#: actions/siteadminpanel.php:143 msgid "Not a valid email address." msgstr "Adresse de e-mail invalide." @@ -1137,7 +1374,7 @@ msgstr "Isto es ja tu adresse de e-mail." msgid "That email address already belongs to another user." msgstr "Iste adresse de e-mail pertine ja a un altere usator." -#: actions/emailsettings.php:353 actions/imsettings.php:317 +#: actions/emailsettings.php:353 actions/imsettings.php:319 #: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." msgstr "Non poteva inserer le codice de confirmation." @@ -1199,7 +1436,7 @@ msgstr "Iste nota es ja favorite!" msgid "Disfavor favorite" msgstr "Disfavorir favorite" -#: actions/favorited.php:65 lib/popularnoticesection.php:88 +#: actions/favorited.php:65 lib/popularnoticesection.php:91 #: lib/publicgroupnav.php:93 msgid "Popular notices" msgstr "Notas popular" @@ -1271,11 +1508,11 @@ msgstr "Nulle nota." #: actions/file.php:42 msgid "No attachments." -msgstr "Nulle attachamento." +msgstr "Nulle annexo." #: actions/file.php:51 msgid "No uploaded attachments." -msgstr "Nulle attachamento cargate." +msgstr "Nulle annexo incargate." #: actions/finishremotesubscribe.php:69 msgid "Not expecting this response!" @@ -1346,20 +1583,20 @@ msgstr "Le usator es ja blocate del gruppo." msgid "User is not a member of group." msgstr "Le usator non es membro del gruppo." -#: actions/groupblock.php:136 actions/groupmembers.php:314 +#: actions/groupblock.php:136 actions/groupmembers.php:316 msgid "Block user from group" msgstr "Blocar usator del gruppo" #: actions/groupblock.php:162 -#, fuzzy, php-format +#, php-format msgid "" "Are you sure you want to block user \"%1$s\" from the group \"%2$s\"? They " "will be removed from the group, unable to post, and unable to subscribe to " "the group in the future." msgstr "" -"Es tu secur de voler blocar le usator \"%s\" del gruppo \"%s\"? Ille essera " -"removite del gruppo, non potera publicar messages, e non potera subscriber " -"se al gruppo in le futuro." +"Es tu secur de voler blocar le usator \"%1$s\" del gruppo \"%2$s\"? Ille " +"essera removite del gruppo, non potera publicar messages, e non potera " +"subscriber se al gruppo in le futuro." #: actions/groupblock.php:178 msgid "Do not block this user from this group" @@ -1411,11 +1648,10 @@ msgstr "Logotypo del gruppo" msgid "" "You can upload a logo image for your group. The maximum file size is %s." msgstr "" -"Tu pote cargar un imagine pro le logotypo de tu gruppo. Le dimension maxime " -"del file es %s." +"Tu pote incargar un imagine pro le logotypo de tu gruppo. Le dimension " +"maximal del file es %s." #: actions/grouplogo.php:178 -#, fuzzy msgid "User without matching profile." msgstr "Usator sin profilo correspondente" @@ -1437,31 +1673,31 @@ msgid "%s group members" msgstr "Membros del gruppo %s" #: actions/groupmembers.php:96 -#, fuzzy, php-format +#, php-format msgid "%1$s group members, page %2$d" -msgstr "Membros del gruppo %s, pagina %d" +msgstr "Membros del gruppo %1$s, pagina %2$d" #: actions/groupmembers.php:111 msgid "A list of the users in this group." msgstr "Un lista de usatores in iste gruppo." -#: actions/groupmembers.php:175 lib/action.php:442 lib/groupnav.php:107 +#: actions/groupmembers.php:175 lib/action.php:448 lib/groupnav.php:107 msgid "Admin" msgstr "Administrator" -#: actions/groupmembers.php:346 lib/blockform.php:69 +#: actions/groupmembers.php:348 lib/blockform.php:69 msgid "Block" msgstr "Blocar" -#: actions/groupmembers.php:441 +#: actions/groupmembers.php:443 msgid "Make user an admin of the group" msgstr "Facer le usator administrator del gruppo" -#: actions/groupmembers.php:473 +#: actions/groupmembers.php:475 msgid "Make Admin" msgstr "Facer administrator" -#: actions/groupmembers.php:473 +#: actions/groupmembers.php:475 msgid "Make this user an admin" msgstr "Facer iste usator administrator" @@ -1548,7 +1784,6 @@ msgid "Error removing the block." msgstr "Error de remover le blocada." #: actions/imsettings.php:59 -#, fuzzy msgid "IM settings" msgstr "Configuration de messageria instantanee" @@ -1579,7 +1814,6 @@ msgstr "" "message con ulterior instructiones. (Ha tu addite %s a tu lista de amicos?)" #: actions/imsettings.php:124 -#, fuzzy msgid "IM address" msgstr "Adresse de messageria instantanee" @@ -1644,6 +1878,11 @@ msgstr "" msgid "That is not your Jabber ID." msgstr "Isto non es tu ID de Jabber." +#: actions/inbox.php:59 +#, php-format +msgid "Inbox for %1$s - page %2$d" +msgstr "Cassa de entrata de %1$s - pagina %2$d" + #: actions/inbox.php:62 #, php-format msgid "Inbox for %s" @@ -1684,7 +1923,7 @@ msgstr "Tu es a subscribite a iste usatores:" #: actions/invite.php:131 actions/invite.php:139 lib/command.php:306 #, php-format msgid "%1$s (%2$s)" -msgstr "" +msgstr "%1$s (%2$s)" #: actions/invite.php:136 msgid "" @@ -1727,7 +1966,7 @@ msgstr "Message personal" msgid "Optionally add a personal message to the invitation." msgstr "Si tu vole, adde un message personal al invitation." -#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:237 +#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:236 msgid "Send" msgstr "Inviar" @@ -1798,9 +2037,9 @@ msgid "You must be logged in to join a group." msgstr "Tu debe aperir un session pro facer te membro de un gruppo." #: actions/joingroup.php:131 -#, fuzzy, php-format +#, php-format msgid "%1$s joined group %2$s" -msgstr "%s se faceva membro del gruppo %s" +msgstr "%1$s es ora membro del gruppo %2$s" #: actions/leavegroup.php:60 msgid "You must be logged in to leave a group." @@ -1811,9 +2050,9 @@ msgid "You are not a member of that group." msgstr "Tu non es membro de iste gruppo." #: actions/leavegroup.php:127 -#, fuzzy, php-format +#, php-format msgid "%1$s left group %2$s" -msgstr "%s quitava le gruppo %s" +msgstr "%1$s quitava le gruppo %2$s" #: actions/login.php:80 actions/otp.php:62 actions/register.php:137 msgid "Already logged in." @@ -1828,7 +2067,7 @@ msgid "Error setting user. You are probably not authorized." msgstr "" "Error de acceder al conto de usator. Tu probabilemente non es autorisate." -#: actions/login.php:188 actions/login.php:241 lib/action.php:460 +#: actions/login.php:188 actions/login.php:241 lib/action.php:466 #: lib/logingroupnav.php:79 msgid "Login" msgstr "Aperir session" @@ -1837,17 +2076,6 @@ msgstr "Aperir session" msgid "Login to site" msgstr "Identificar te a iste sito" -#: actions/login.php:230 actions/profilesettings.php:106 -#: actions/register.php:424 actions/showgroup.php:236 actions/tagother.php:94 -#: lib/groupeditform.php:152 lib/userprofile.php:131 -msgid "Nickname" -msgstr "Pseudonymo" - -#: actions/login.php:233 actions/register.php:429 -#: lib/accountsettingsaction.php:116 -msgid "Password" -msgstr "Contrasigno" - #: actions/login.php:236 actions/register.php:478 msgid "Remember me" msgstr "Memorar me" @@ -1877,31 +2105,51 @@ msgid "" "(%%action.register%%) a new account." msgstr "" "Aperi un session con tu nomine de usator e contrasigno. Non ha ancora un " -"nomine de usator? [Registra](%%action.register%%) un nove conto." +"nomine de usator? [Crea](%%action.register%%) un nove conto." -#: actions/makeadmin.php:91 +#: actions/makeadmin.php:92 msgid "Only an admin can make another user an admin." msgstr "Solmente un administrator pote facer un altere usator administrator." -#: actions/makeadmin.php:95 -#, fuzzy, php-format +#: actions/makeadmin.php:96 +#, php-format msgid "%1$s is already an admin for group \"%2$s\"." -msgstr "%s es ja administrator del gruppo \"%s\"." +msgstr "%1$s es ja administrator del gruppo \"%2$s\"." -#: actions/makeadmin.php:132 -#, fuzzy, php-format +#: actions/makeadmin.php:133 +#, php-format msgid "Can't get membership record for %1$s in group %2$s." -msgstr "Non poteva obtener le datos del membrato de %s in le gruppo %s" +msgstr "Non pote obtener le datos del membrato de %1$s in le gruppo %2$s." -#: actions/makeadmin.php:145 -#, fuzzy, php-format +#: actions/makeadmin.php:146 +#, php-format msgid "Can't make %1$s an admin for group %2$s." -msgstr "Non pote facer %s administrator del gruppo %s" +msgstr "Non pote facer %1$s administrator del gruppo %2$s." #: actions/microsummary.php:69 msgid "No current status" msgstr "Nulle stato actual" +#: actions/newapplication.php:52 +msgid "New Application" +msgstr "Nove application" + +#: actions/newapplication.php:64 +msgid "You must be logged in to register an application." +msgstr "Tu debe aperir un session pro registrar un application." + +#: actions/newapplication.php:143 +msgid "Use this form to register a new application." +msgstr "Usa iste formulario pro registrar un nove application." + +#: actions/newapplication.php:176 +msgid "Source URL is required." +msgstr "Le URL de origine es requirite." + +#: actions/newapplication.php:258 actions/newapplication.php:267 +msgid "Could not create application." +msgstr "Non poteva crear application." + #: actions/newgroup.php:53 msgid "New group" msgstr "Nove gruppo" @@ -1939,9 +2187,9 @@ msgid "Message sent" msgstr "Message inviate" #: actions/newmessage.php:185 -#, fuzzy, php-format +#, php-format msgid "Direct message to %s sent." -msgstr "Message directe a %s inviate" +msgstr "Message directe a %s inviate." #: actions/newmessage.php:210 actions/newnotice.php:245 lib/channel.php:170 msgid "Ajax Error" @@ -1969,9 +2217,9 @@ msgid "Text search" msgstr "Recerca de texto" #: actions/noticesearch.php:91 -#, fuzzy, php-format +#, php-format msgid "Search results for \"%1$s\" on %2$s" -msgstr "Resultatos del recerca de \"%s\" in %s" +msgstr "Resultatos del recerca de \"%1$s\" in %2$s" #: actions/noticesearch.php:121 #, php-format @@ -2017,6 +2265,50 @@ msgstr "Pulsata inviate" msgid "Nudge sent!" msgstr "Pulsata inviate!" +#: actions/oauthappssettings.php:59 +msgid "You must be logged in to list your applications." +msgstr "Tu debe aperir un session pro listar tu applicationes." + +#: actions/oauthappssettings.php:74 +msgid "OAuth applications" +msgstr "Applicationes OAuth" + +#: actions/oauthappssettings.php:85 +msgid "Applications you have registered" +msgstr "Applicationes que tu ha registrate" + +#: actions/oauthappssettings.php:135 +#, php-format +msgid "You have not registered any applications yet." +msgstr "Tu non ha ancora registrate alcun application." + +#: actions/oauthconnectionssettings.php:72 +msgid "Connected applications" +msgstr "Applicationes connectite" + +#: actions/oauthconnectionssettings.php:83 +msgid "You have allowed the following applications to access you account." +msgstr "Tu ha permittite al sequente applicationes de acceder a tu conto." + +#: actions/oauthconnectionssettings.php:175 +msgid "You are not a user of that application." +msgstr "Tu non es usator de iste application." + +#: actions/oauthconnectionssettings.php:186 +msgid "Unable to revoke access for app: " +msgstr "Impossibile revocar le accesso del application: " + +#: actions/oauthconnectionssettings.php:198 +#, php-format +msgid "You have not authorized any applications to use your account." +msgstr "Tu non ha autorisate alcun application a usar tu conto." + +#: actions/oauthconnectionssettings.php:211 +msgid "Developers can edit the registration settings for their applications " +msgstr "" +"Le programmatores pote modificar le parametros de registration pro lor " +"applicationes " + #: actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" msgstr "Le nota ha nulle profilo" @@ -2034,8 +2326,8 @@ msgstr "typo de contento " msgid "Only " msgstr "Solmente " -#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1033 -#: lib/api.php:1061 lib/api.php:1171 +#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 +#: lib/api.php:1068 lib/api.php:1177 msgid "Not a supported data format." msgstr "Formato de datos non supportate." @@ -2048,7 +2340,7 @@ msgid "Notice Search" msgstr "Rercerca de notas" #: actions/othersettings.php:60 -msgid "Other Settings" +msgid "Other settings" msgstr "Altere configurationes" #: actions/othersettings.php:71 @@ -2080,28 +2372,29 @@ msgid "URL shortening service is too long (max 50 chars)." msgstr "Le servicio de accurtamento de URL es troppo longe (max 50 chars)." #: actions/otp.php:69 -#, fuzzy msgid "No user ID specified." -msgstr "Nulle gruppo specificate." +msgstr "Nulle identificator de usator specificate." #: actions/otp.php:83 -#, fuzzy msgid "No login token specified." -msgstr "Nulle nota specificate." +msgstr "Nulle indicio de identification specificate." #: actions/otp.php:90 msgid "No login token requested." -msgstr "" +msgstr "Nulle indicio de identification requestate." #: actions/otp.php:95 -#, fuzzy msgid "Invalid login token specified." -msgstr "Indicio invalide o expirate." +msgstr "Indicio de identification invalide specificate." #: actions/otp.php:104 -#, fuzzy msgid "Login token expired." -msgstr "Identificar te a iste sito" +msgstr "Le indicio de identification ha expirate." + +#: actions/outbox.php:58 +#, php-format +msgid "Outbox for %1$s - page %2$d" +msgstr "Cassa de exito de %1$s - pagina %2$d" #: actions/outbox.php:61 #, php-format @@ -2174,7 +2467,7 @@ msgstr "Non pote salveguardar le nove contrasigno." msgid "Password saved." msgstr "Contrasigno salveguardate." -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:326 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:331 msgid "Paths" msgstr "Camminos" @@ -2182,133 +2475,148 @@ msgstr "Camminos" msgid "Path and server settings for this StatusNet site." msgstr "Configuration de cammino e servitor pro iste sito StatusNet." -#: actions/pathsadminpanel.php:140 +#: actions/pathsadminpanel.php:157 #, php-format msgid "Theme directory not readable: %s" msgstr "Directorio de thema non legibile: %s" -#: actions/pathsadminpanel.php:146 +#: actions/pathsadminpanel.php:163 #, php-format msgid "Avatar directory not writable: %s" msgstr "Directorio de avatar non scriptibile: %s" -#: actions/pathsadminpanel.php:152 +#: actions/pathsadminpanel.php:169 #, php-format msgid "Background directory not writable: %s" msgstr "Directorio de fundo non scriptibile: %s" -#: actions/pathsadminpanel.php:160 +#: actions/pathsadminpanel.php:177 #, php-format msgid "Locales directory not readable: %s" msgstr "Directorio de localitates non scriptibile: %s" -#: actions/pathsadminpanel.php:166 +#: actions/pathsadminpanel.php:183 msgid "Invalid SSL server. The maximum length is 255 characters." -msgstr "Servitor SSL invalide. Le longitude maxime es 255 characteres." +msgstr "Servitor SSL invalide. Le longitude maximal es 255 characteres." -#: actions/pathsadminpanel.php:217 actions/siteadminpanel.php:58 +#: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58 #: lib/adminpanelaction.php:311 msgid "Site" msgstr "Sito" -#: actions/pathsadminpanel.php:221 +#: actions/pathsadminpanel.php:238 +msgid "Server" +msgstr "Servitor" + +#: actions/pathsadminpanel.php:238 +msgid "Site's server hostname." +msgstr "Nomine de host del servitor del sito." + +#: actions/pathsadminpanel.php:242 msgid "Path" msgstr "Cammino" -#: actions/pathsadminpanel.php:221 +#: actions/pathsadminpanel.php:242 msgid "Site path" msgstr "Cammino del sito" -#: actions/pathsadminpanel.php:225 +#: actions/pathsadminpanel.php:246 msgid "Path to locales" msgstr "Cammino al localitates" -#: actions/pathsadminpanel.php:225 +#: actions/pathsadminpanel.php:246 msgid "Directory path to locales" msgstr "Cammino al directorio de localitates" -#: actions/pathsadminpanel.php:232 +#: actions/pathsadminpanel.php:250 +msgid "Fancy URLs" +msgstr "URLs de luxo" + +#: actions/pathsadminpanel.php:252 +msgid "Use fancy (more readable and memorable) URLs?" +msgstr "Usar URLs de luxo (plus legibile e memorabile)?" + +#: actions/pathsadminpanel.php:259 msgid "Theme" msgstr "Thema" -#: actions/pathsadminpanel.php:237 +#: actions/pathsadminpanel.php:264 msgid "Theme server" msgstr "Servitor de themas" -#: actions/pathsadminpanel.php:241 +#: actions/pathsadminpanel.php:268 msgid "Theme path" msgstr "Cammino al themas" -#: actions/pathsadminpanel.php:245 +#: actions/pathsadminpanel.php:272 msgid "Theme directory" msgstr "Directorio del themas" -#: actions/pathsadminpanel.php:252 +#: actions/pathsadminpanel.php:279 msgid "Avatars" msgstr "Avatares" -#: actions/pathsadminpanel.php:257 +#: actions/pathsadminpanel.php:284 msgid "Avatar server" msgstr "Servitor de avatares" -#: actions/pathsadminpanel.php:261 +#: actions/pathsadminpanel.php:288 msgid "Avatar path" msgstr "Cammino al avatares" -#: actions/pathsadminpanel.php:265 +#: actions/pathsadminpanel.php:292 msgid "Avatar directory" msgstr "Directorio del avatares" -#: actions/pathsadminpanel.php:274 +#: actions/pathsadminpanel.php:301 msgid "Backgrounds" msgstr "Fundos" -#: actions/pathsadminpanel.php:278 +#: actions/pathsadminpanel.php:305 msgid "Background server" msgstr "Servitor de fundos" -#: actions/pathsadminpanel.php:282 +#: actions/pathsadminpanel.php:309 msgid "Background path" msgstr "Cammino al fundos" -#: actions/pathsadminpanel.php:286 +#: actions/pathsadminpanel.php:313 msgid "Background directory" msgstr "Directorio al fundos" -#: actions/pathsadminpanel.php:293 +#: actions/pathsadminpanel.php:320 msgid "SSL" msgstr "SSL" -#: actions/pathsadminpanel.php:296 actions/siteadminpanel.php:346 +#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 msgid "Never" msgstr "Nunquam" -#: actions/pathsadminpanel.php:297 +#: actions/pathsadminpanel.php:324 msgid "Sometimes" msgstr "Alcun vices" -#: actions/pathsadminpanel.php:298 +#: actions/pathsadminpanel.php:325 msgid "Always" msgstr "Sempre" -#: actions/pathsadminpanel.php:302 +#: actions/pathsadminpanel.php:329 msgid "Use SSL" msgstr "Usar SSL" -#: actions/pathsadminpanel.php:303 +#: actions/pathsadminpanel.php:330 msgid "When to use SSL" msgstr "Quando usar SSL" -#: actions/pathsadminpanel.php:308 -#, fuzzy +#: actions/pathsadminpanel.php:335 msgid "SSL server" msgstr "Servitor SSL" -#: actions/pathsadminpanel.php:309 +#: actions/pathsadminpanel.php:336 msgid "Server to direct SSL requests to" msgstr "Servitor verso le qual diriger le requestas SSL" -#: actions/pathsadminpanel.php:325 +#: actions/pathsadminpanel.php:352 msgid "Save paths" msgstr "Salveguardar camminos" @@ -2331,19 +2639,20 @@ msgid "Not a valid people tag: %s" msgstr "Etiquetta de personas invalide: %s" #: actions/peopletag.php:144 -#, fuzzy, php-format +#, php-format msgid "Users self-tagged with %1$s - page %2$d" -msgstr "Usatores auto-etiquettate con %s - pagina %d" +msgstr "Usatores auto-etiquettate con %1$s - pagina %2$d" #: actions/postnotice.php:84 msgid "Invalid notice content" msgstr "Le contento del nota es invalide" #: actions/postnotice.php:90 -#, fuzzy, php-format +#, php-format msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" -"Le licentia del nota '%s' non es compatibile con le licentia del sito '%s'." +"Le licentia del nota ‘%1$s’ non es compatibile con le licentia del sito ‘%2" +"$s’." #: actions/profilesettings.php:60 msgid "Profile settings" @@ -2371,7 +2680,7 @@ msgid "Full name" msgstr "Nomine complete" #: actions/profilesettings.php:115 actions/register.php:453 -#: lib/groupeditform.php:161 +#: lib/applicationeditform.php:228 lib/groupeditform.php:161 msgid "Homepage" msgstr "Pagina personal" @@ -2394,7 +2703,7 @@ msgstr "Bio" #: actions/profilesettings.php:132 actions/register.php:471 #: actions/showgroup.php:256 actions/tagother.php:112 -#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:164 msgid "Location" msgstr "Loco" @@ -2420,7 +2729,7 @@ msgstr "" "Etiquettas pro te (litteras, numeros, -, ., e _), separate per commas o " "spatios" -#: actions/profilesettings.php:151 actions/siteadminpanel.php:294 +#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 msgid "Language" msgstr "Lingua" @@ -2447,7 +2756,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "Bio es troppo longe (max %d chars)." -#: actions/profilesettings.php:235 actions/siteadminpanel.php:164 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 msgid "Timezone not selected." msgstr "Fuso horari non seligite." @@ -2460,23 +2769,23 @@ msgstr "Lingua es troppo longe (max 50 chars)." msgid "Invalid tag: \"%s\"" msgstr "Etiquetta invalide: \"%s\"" -#: actions/profilesettings.php:302 +#: actions/profilesettings.php:306 msgid "Couldn't update user for autosubscribe." msgstr "Non poteva actualisar usator pro autosubscription." -#: actions/profilesettings.php:359 +#: actions/profilesettings.php:363 msgid "Couldn't save location prefs." msgstr "Non poteva salveguardar le preferentias de loco." -#: actions/profilesettings.php:371 +#: actions/profilesettings.php:375 msgid "Couldn't save profile." msgstr "Non poteva salveguardar profilo." -#: actions/profilesettings.php:379 +#: actions/profilesettings.php:383 msgid "Couldn't save tags." msgstr "Non poteva salveguardar etiquettas." -#: actions/profilesettings.php:387 lib/adminpanelaction.php:137 +#: actions/profilesettings.php:391 lib/adminpanelaction.php:137 msgid "Settings saved." msgstr "Preferentias confirmate." @@ -2498,19 +2807,19 @@ msgstr "Chronologia public, pagina %d" msgid "Public timeline" msgstr "Chronologia public" -#: actions/public.php:151 +#: actions/public.php:159 msgid "Public Stream Feed (RSS 1.0)" msgstr "Syndication del fluxo public (RSS 1.0)" -#: actions/public.php:155 +#: actions/public.php:163 msgid "Public Stream Feed (RSS 2.0)" msgstr "Syndication del fluxo public (RSS 2.0)" -#: actions/public.php:159 +#: actions/public.php:167 msgid "Public Stream Feed (Atom)" msgstr "Syndication del fluxo public (Atom)" -#: actions/public.php:179 +#: actions/public.php:187 #, php-format msgid "" "This is the public timeline for %%site.name%% but no one has posted anything " @@ -2519,11 +2828,11 @@ msgstr "" "Isto es le chronologia public pro %%site.name%%, ma nulle persona ha ancora " "scribite alique." -#: actions/public.php:182 +#: actions/public.php:190 msgid "Be the first to post!" msgstr "Sia le prime a publicar!" -#: actions/public.php:186 +#: actions/public.php:194 #, php-format msgid "" "Why not [register an account](%%action.register%%) and be the first to post!" @@ -2531,7 +2840,7 @@ msgstr "" "Proque non [registrar un conto](%%action.register%%) e devenir le prime a " "publicar?" -#: actions/public.php:233 +#: actions/public.php:241 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2544,7 +2853,7 @@ msgstr "" "[Inscribe te ora](%%action.register%%) pro condivider notas super te con " "amicos, familia e collegas! ([Leger plus](%%doc.help%%))" -#: actions/public.php:238 +#: actions/public.php:246 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2567,7 +2876,7 @@ msgstr "Istes es le etiquettas recente le plus popular in %s " #, php-format msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." msgstr "" -"Nulle persona ha ancora publicate un nota con un [hashtag](%%doc.tags%%) yet." +"Nulle persona ha ancora publicate un nota con un [hashtag](%%doc.tags%%)." #: actions/publictagcloud.php:72 msgid "Be the first to post one!" @@ -2582,7 +2891,7 @@ msgstr "" "Proque non [registrar un conto](%%action.register%%) e devenir le prime a " "publicar un?" -#: actions/publictagcloud.php:131 +#: actions/publictagcloud.php:134 msgid "Tag cloud" msgstr "Etiquettario" @@ -2722,10 +3031,10 @@ msgstr "Pardono, le codice de invitation es invalide." msgid "Registration successful" msgstr "Registration succedite" -#: actions/register.php:114 actions/register.php:503 lib/action.php:457 +#: actions/register.php:114 actions/register.php:503 lib/action.php:463 #: lib/logingroupnav.php:85 msgid "Register" -msgstr "Crear un conto" +msgstr "Crear conto" #: actions/register.php:135 msgid "Registration not allowed." @@ -2733,8 +3042,7 @@ msgstr "Registration non permittite." #: actions/register.php:198 msgid "You can't register if you don't agree to the license." -msgstr "" -"Tu non pote registrar te si tu non te declara de accordo con le licentia." +msgstr "Tu non pote crear un conto si tu non accepta le licentia." #: actions/register.php:212 msgid "Email address already exists." @@ -2754,18 +3062,18 @@ msgstr "" #: actions/register.php:425 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." -msgstr "1-64 minusculas o numeros, sin punctuation o spatios. Requisite." +msgstr "1-64 minusculas o numeros, sin punctuation o spatios. Requirite." #: actions/register.php:430 msgid "6 or more characters. Required." -msgstr "6 o plus characteres. Requisite." +msgstr "6 o plus characteres. Requirite." #: actions/register.php:434 msgid "Same as password above. Required." -msgstr "Identic al contrasigno hic supra. Requisite." +msgstr "Identic al contrasigno hic supra. Requirite." #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:270 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 msgid "Email" msgstr "E-mail" @@ -2781,7 +3089,7 @@ msgstr "Nomine plus longe, preferibilemente tu nomine \"real\"" #: actions/register.php:494 msgid "My text and files are available under " -msgstr "Mi texto e files es disponibile sub " +msgstr "Mi texto e files es disponibile sub le licentia " #: actions/register.php:496 msgid "Creative Commons Attribution 3.0" @@ -2796,7 +3104,7 @@ msgstr "" "messageria instantanee, numero de telephono." #: actions/register.php:538 -#, fuzzy, php-format +#, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " "want to...\n" @@ -2813,9 +3121,9 @@ msgid "" "\n" "Thanks for signing up and we hope you enjoy using this service." msgstr "" -"Felicitationes, %s! Benvenite a %%%%site.name%%%%. Ora tu pote...\n" +"Felicitationes, %1$s! Benvenite a %%%%site.name%%%%. Ora tu pote...\n" "\n" -"* Visitar [tu profilo](%s) e publicar tu prime message.\n" +"* Visitar [tu profilo](%2$s) e publicar tu prime message.\n" "* Adder un [adresse Jabber/GTalk](%%%%action.imsettings%%%%) pro poter " "inviar notas per messages instantanee.\n" "* [Cercar personas](%%%%action.peoplesearch%%%%) que tu cognosce o con que " @@ -2872,7 +3180,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "URL de tu profilo in un altere servicio de microblogging compatibile" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:365 +#: lib/userprofile.php:368 msgid "Subscribe" msgstr "Subscriber" @@ -2910,7 +3218,7 @@ msgstr "Tu non pote repeter tu proprie nota." msgid "You already repeated that notice." msgstr "Tu ha ja repetite iste nota." -#: actions/repeat.php:114 lib/noticelist.php:629 +#: actions/repeat.php:114 lib/noticelist.php:656 msgid "Repeated" msgstr "Repetite" @@ -2924,6 +3232,11 @@ msgstr "Repetite!" msgid "Replies to %s" msgstr "Responsas a %s" +#: actions/replies.php:127 +#, php-format +msgid "Replies to %1$s, page %2$d" +msgstr "Responsas a %1$s, pagina %2$d" + #: actions/replies.php:144 #, php-format msgid "Replies feed for %s (RSS 1.0)" @@ -2940,13 +3253,13 @@ msgid "Replies feed for %s (Atom)" msgstr "Syndication de responsas pro %s (Atom)" #: actions/replies.php:198 -#, fuzzy, php-format +#, php-format msgid "" "This is the timeline showing replies to %1$s but %2$s hasn't received a " "notice to his attention yet." msgstr "" -"Isto es le chronologia de responsas a %s, ma %s non ha ancora recipite alcun " -"nota a su attention." +"Isto es le chronologia de responsas a %1$s, ma %2$s non ha ancora recipite " +"alcun nota a su attention." #: actions/replies.php:203 #, php-format @@ -2958,19 +3271,23 @@ msgstr "" "personas o [devenir membro de gruppos](%%action.groups%%)." #: actions/replies.php:205 -#, fuzzy, php-format +#, php-format msgid "" "You can try to [nudge %1$s](../%2$s) or [post something to his or her " "attention](%%%%action.newnotice%%%%?status_textarea=%3$s)." msgstr "" -"Tu pote tentar [pulsar %s](../%s) o [publicar alique a su attention](%%%%" -"action.newnotice%%%%?status_textarea=%s)." +"Tu pote tentar [pulsar %1$s](../%2$s) o [publicar alique a su attention](%%%%" +"action.newnotice%%%%?status_textarea=%3$s)." #: actions/repliesrss.php:72 #, php-format msgid "Replies to %1$s on %2$s!" msgstr "Responsas a %1$s in %2$s!" +#: actions/rsd.php:146 actions/version.php:157 +msgid "StatusNet" +msgstr "StatusNet" + #: actions/sandbox.php:65 actions/unsandbox.php:65 msgid "You cannot sandbox users on this site." msgstr "Tu non pote mitter usatores in le cassa de sablo in iste sito." @@ -2979,6 +3296,121 @@ msgstr "Tu non pote mitter usatores in le cassa de sablo in iste sito." msgid "User is already sandboxed." msgstr "Usator es ja in cassa de sablo." +#: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:336 +msgid "Sessions" +msgstr "Sessiones" + +#: actions/sessionsadminpanel.php:65 +msgid "Session settings for this StatusNet site." +msgstr "Parametros de session pro iste sito StatusNet." + +#: actions/sessionsadminpanel.php:175 +msgid "Handle sessions" +msgstr "Gerer sessiones" + +#: actions/sessionsadminpanel.php:177 +msgid "Whether to handle sessions ourselves." +msgstr "Si nos debe gerer le sessiones nos mesme." + +#: actions/sessionsadminpanel.php:181 +msgid "Session debugging" +msgstr "Cercar defectos de session" + +#: actions/sessionsadminpanel.php:183 +msgid "Turn on debugging output for sessions." +msgstr "Producer informationes technic pro cercar defectos in sessiones." + +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/useradminpanel.php:293 +msgid "Save site settings" +msgstr "Salveguardar configurationes del sito" + +#: actions/showapplication.php:82 +msgid "You must be logged in to view an application." +msgstr "Tu debe aperir un session pro vider un application." + +#: actions/showapplication.php:157 +msgid "Application profile" +msgstr "Profilo del application" + +#: actions/showapplication.php:159 lib/applicationeditform.php:180 +msgid "Icon" +msgstr "Icone" + +#: actions/showapplication.php:169 actions/version.php:195 +#: lib/applicationeditform.php:195 +msgid "Name" +msgstr "Nomine" + +#: actions/showapplication.php:178 lib/applicationeditform.php:222 +msgid "Organization" +msgstr "Organisation" + +#: actions/showapplication.php:187 actions/version.php:198 +#: lib/applicationeditform.php:209 lib/groupeditform.php:172 +msgid "Description" +msgstr "Description" + +#: actions/showapplication.php:192 actions/showgroup.php:429 +#: lib/profileaction.php:174 +msgid "Statistics" +msgstr "Statisticas" + +#: actions/showapplication.php:203 +#, php-format +msgid "Created by %1$s - %2$s access by default - %3$d users" +msgstr "Create per %1$s - accesso %2$s per predefinition - %3$d usatores" + +#: actions/showapplication.php:213 +msgid "Application actions" +msgstr "Actiones de application" + +#: actions/showapplication.php:236 +msgid "Reset key & secret" +msgstr "Reinitialisar clave e secreto" + +#: actions/showapplication.php:261 +msgid "Application info" +msgstr "Info del application" + +#: actions/showapplication.php:263 +msgid "Consumer key" +msgstr "Clave de consumitor" + +#: actions/showapplication.php:268 +msgid "Consumer secret" +msgstr "Secreto de consumitor" + +#: actions/showapplication.php:273 +msgid "Request token URL" +msgstr "URL del indicio de requesta" + +#: actions/showapplication.php:278 +msgid "Access token URL" +msgstr "URL del indicio de accesso" + +#: actions/showapplication.php:283 +msgid "Authorize URL" +msgstr "URL de autorisation" + +#: actions/showapplication.php:288 +msgid "" +"Note: We support HMAC-SHA1 signatures. We do not support the plaintext " +"signature method." +msgstr "" +"Nota: Nos supporta le signaturas HMAC-SHA1. Nos non accepta signaturas in " +"texto simple." + +#: actions/showapplication.php:309 +msgid "Are you sure you want to reset your consumer key and secret?" +msgstr "Es tu secur de voler reinitialisar tu clave e secreto de consumitor?" + +#: actions/showfavorites.php:79 +#, php-format +msgid "%1$s's favorite notices, page %2$d" +msgstr "Notas favorite de %1$s, pagina %2$d" + #: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "Non poteva recuperar notas favorite." @@ -3036,17 +3468,22 @@ msgstr "Isto es un modo de condivider lo que te place." msgid "%s group" msgstr "Gruppo %s" +#: actions/showgroup.php:84 +#, php-format +msgid "%1$s group, page %2$d" +msgstr "Gruppo %1$s, pagina %2$d" + #: actions/showgroup.php:218 msgid "Group profile" msgstr "Profilo del gruppo" #: actions/showgroup.php:263 actions/tagother.php:118 -#: actions/userauthorization.php:167 lib/userprofile.php:177 +#: actions/userauthorization.php:175 lib/userprofile.php:177 msgid "URL" msgstr "URL" #: actions/showgroup.php:274 actions/tagother.php:128 -#: actions/userauthorization.php:179 lib/userprofile.php:194 +#: actions/userauthorization.php:187 lib/userprofile.php:194 msgid "Note" msgstr "Nota" @@ -3092,10 +3529,6 @@ msgstr "(Nulle)" msgid "All members" msgstr "Tote le membros" -#: actions/showgroup.php:429 lib/profileaction.php:174 -msgid "Statistics" -msgstr "Statisticas" - #: actions/showgroup.php:432 msgid "Created" msgstr "Create" @@ -3159,10 +3592,15 @@ msgstr "Nota delite." msgid " tagged %s" msgstr " con etiquetta %s" +#: actions/showstream.php:79 +#, php-format +msgid "%1$s, page %2$d" +msgstr "%1$s, pagina %2$d" + #: actions/showstream.php:122 -#, fuzzy, php-format +#, php-format msgid "Notice feed for %1$s tagged %2$s (RSS 1.0)" -msgstr "Syndication de notas pro %s con etiquetta %s (RSS 1.0)" +msgstr "Syndication de notas pro %1$s con etiquetta %2$s (RSS 1.0)" #: actions/showstream.php:129 #, php-format @@ -3184,12 +3622,13 @@ msgstr "Syndication de notas pro %s (Atom)" msgid "FOAF for %s" msgstr "Amico de un amico pro %s" -#: actions/showstream.php:191 -#, fuzzy, php-format +#: actions/showstream.php:200 +#, php-format msgid "This is the timeline for %1$s but %2$s hasn't posted anything yet." -msgstr "Isto es le chronologia pro %s, ma %s non ha ancora publicate alique." +msgstr "" +"Isto es le chronologia pro %1$s, ma %2$s non ha ancora publicate alique." -#: actions/showstream.php:196 +#: actions/showstream.php:205 msgid "" "Seen anything interesting recently? You haven't posted any notices yet, now " "would be a good time to start :)" @@ -3197,16 +3636,16 @@ msgstr "" "Videva tu qualcosa de interessante recentemente? Tu non ha ancora publicate " "alcun nota, dunque iste es un bon momento pro comenciar :)" -#: actions/showstream.php:198 -#, fuzzy, php-format +#: actions/showstream.php:207 +#, php-format msgid "" "You can try to nudge %1$s or [post something to his or her attention](%%%%" "action.newnotice%%%%?status_textarea=%2$s)." msgstr "" -"Tu pote tentar pulsar %s o [publicar un nota a su attention](%%%%action." -"newnotice%%%%?status_textarea=%s)." +"Tu pote tentar pulsar %1$s o [publicar un nota a su attention](%%%%action." +"newnotice%%%%?status_textarea=%2$s)." -#: actions/showstream.php:234 +#: actions/showstream.php:243 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3220,7 +3659,7 @@ msgstr "" "pro sequer le notas de **%s** e multe alteres! ([Lege plus](%%%%doc.help%%%" "%))" -#: actions/showstream.php:239 +#: actions/showstream.php:248 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3231,7 +3670,7 @@ msgstr "" "(http://en.wikipedia.org/wiki/Microblog) a base del software libere " "[StatusNet](http://status.net/). " -#: actions/showstream.php:313 +#: actions/showstream.php:305 #, php-format msgid "Repeat of %s" msgstr "Repetition de %s" @@ -3248,202 +3687,148 @@ msgstr "Usator es ja silentiate." msgid "Basic settings for this StatusNet site." msgstr "Configurationes de base pro iste sito de StatusNet." -#: actions/siteadminpanel.php:146 +#: actions/siteadminpanel.php:132 msgid "Site name must have non-zero length." msgstr "Le longitude del nomine del sito debe esser plus que zero." -#: actions/siteadminpanel.php:154 -#, fuzzy +#: actions/siteadminpanel.php:140 msgid "You must have a valid contact email address." msgstr "Tu debe haber un valide adresse de e-mail pro contacto." -#: actions/siteadminpanel.php:172 -#, fuzzy, php-format +#: actions/siteadminpanel.php:158 +#, php-format msgid "Unknown language \"%s\"." -msgstr "Lingua \"%s\" incognite" +msgstr "Lingua \"%s\" incognite." -#: actions/siteadminpanel.php:179 +#: actions/siteadminpanel.php:165 msgid "Invalid snapshot report URL." msgstr "Le URL pro reportar instantaneos es invalide." -#: actions/siteadminpanel.php:185 +#: actions/siteadminpanel.php:171 msgid "Invalid snapshot run value." msgstr "Valor de execution de instantaneo invalide." -#: actions/siteadminpanel.php:191 +#: actions/siteadminpanel.php:177 msgid "Snapshot frequency must be a number." msgstr "Le frequentia de instantaneos debe esser un numero." -#: actions/siteadminpanel.php:197 +#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." -msgstr "Le limite minime del texto es 140 characteres." +msgstr "Le limite minimal del texto es 140 characteres." -#: actions/siteadminpanel.php:203 +#: actions/siteadminpanel.php:189 msgid "Dupe limit must 1 or more seconds." msgstr "Le limite de duplicatos debe esser 1 o plus secundas." -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:239 msgid "General" msgstr "General" -#: actions/siteadminpanel.php:256 +#: actions/siteadminpanel.php:242 msgid "Site name" msgstr "Nomine del sito" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:243 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "Le nomine de tu sito, como \"Le microblog de TuCompania\"" -#: actions/siteadminpanel.php:261 +#: actions/siteadminpanel.php:247 msgid "Brought by" msgstr "Realisate per" -#: actions/siteadminpanel.php:262 +#: actions/siteadminpanel.php:248 msgid "Text used for credits link in footer of each page" msgstr "Le texto usate pro le ligamine al creditos in le pede de cata pagina" -#: actions/siteadminpanel.php:266 +#: actions/siteadminpanel.php:252 msgid "Brought by URL" msgstr "URL pro \"Realisate per\"" -#: actions/siteadminpanel.php:267 +#: actions/siteadminpanel.php:253 msgid "URL used for credits link in footer of each page" msgstr "URL usate pro le ligamine al creditos in le pede de cata pagina" -#: actions/siteadminpanel.php:271 +#: actions/siteadminpanel.php:257 msgid "Contact email address for your site" msgstr "Le adresse de e-mail de contacto pro tu sito" -#: actions/siteadminpanel.php:277 +#: actions/siteadminpanel.php:263 msgid "Local" msgstr "Local" -#: actions/siteadminpanel.php:288 +#: actions/siteadminpanel.php:274 msgid "Default timezone" msgstr "Fuso horari predefinite" -#: actions/siteadminpanel.php:289 +#: actions/siteadminpanel.php:275 msgid "Default timezone for the site; usually UTC." msgstr "Fuso horari predefinite pro le sito; normalmente UTC." -#: actions/siteadminpanel.php:295 +#: actions/siteadminpanel.php:281 msgid "Default site language" msgstr "Lingua predefinite del sito" -#: actions/siteadminpanel.php:303 -msgid "URLs" -msgstr "URLs" - -#: actions/siteadminpanel.php:306 -msgid "Server" -msgstr "Servitor" - -#: actions/siteadminpanel.php:306 -msgid "Site's server hostname." -msgstr "Nomine de host del servitor del sito." - -#: actions/siteadminpanel.php:310 -msgid "Fancy URLs" -msgstr "URLs de luxo" - -#: actions/siteadminpanel.php:312 -msgid "Use fancy (more readable and memorable) URLs?" -msgstr "Usar URLs de luxo (plus legibile e memorabile)?" - -#: actions/siteadminpanel.php:318 -msgid "Access" -msgstr "Accesso" - -#: actions/siteadminpanel.php:321 -msgid "Private" -msgstr "Private" - -#: actions/siteadminpanel.php:323 -msgid "Prohibit anonymous users (not logged in) from viewing site?" -msgstr "Prohiber al usatores anonyme (sin session aperte) de vider le sito?" - -#: actions/siteadminpanel.php:327 -msgid "Invite only" -msgstr "Solmente per invitation" - -#: actions/siteadminpanel.php:329 -msgid "Make registration invitation only." -msgstr "Permitter le registration solmente al invitatos." - -#: actions/siteadminpanel.php:333 -msgid "Closed" -msgstr "Claudite" - -#: actions/siteadminpanel.php:335 -msgid "Disable new registrations." -msgstr "Disactivar le creation de nove contos." - -#: actions/siteadminpanel.php:341 +#: actions/siteadminpanel.php:289 msgid "Snapshots" msgstr "Instantaneos" -#: actions/siteadminpanel.php:344 +#: actions/siteadminpanel.php:292 msgid "Randomly during Web hit" msgstr "Aleatorimente durante un accesso web" -#: actions/siteadminpanel.php:345 +#: actions/siteadminpanel.php:293 msgid "In a scheduled job" msgstr "In un processo planificate" -#: actions/siteadminpanel.php:347 +#: actions/siteadminpanel.php:295 msgid "Data snapshots" msgstr "Instantaneos de datos" -#: actions/siteadminpanel.php:348 +#: actions/siteadminpanel.php:296 msgid "When to send statistical data to status.net servers" msgstr "Quando inviar datos statistic al servitores de status.net" -#: actions/siteadminpanel.php:353 +#: actions/siteadminpanel.php:301 msgid "Frequency" msgstr "Frequentia" -#: actions/siteadminpanel.php:354 +#: actions/siteadminpanel.php:302 msgid "Snapshots will be sent once every N web hits" msgstr "Un instantaneo essera inviate a cata N accessos web" -#: actions/siteadminpanel.php:359 +#: actions/siteadminpanel.php:307 msgid "Report URL" msgstr "URL pro reporto" -#: actions/siteadminpanel.php:360 +#: actions/siteadminpanel.php:308 msgid "Snapshots will be sent to this URL" msgstr "Le instantaneos essera inviate a iste URL" -#: actions/siteadminpanel.php:367 +#: actions/siteadminpanel.php:315 msgid "Limits" msgstr "Limites" -#: actions/siteadminpanel.php:370 +#: actions/siteadminpanel.php:318 msgid "Text limit" msgstr "Limite de texto" -#: actions/siteadminpanel.php:370 +#: actions/siteadminpanel.php:318 msgid "Maximum number of characters for notices." -msgstr "Numero maxime de characteres pro notas." +msgstr "Numero maximal de characteres pro notas." -#: actions/siteadminpanel.php:374 +#: actions/siteadminpanel.php:322 msgid "Dupe limit" msgstr "Limite de duplicatos" -#: actions/siteadminpanel.php:374 +#: actions/siteadminpanel.php:322 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" "Quante tempore (in secundas) le usatores debe attender ante de poter " "publicar le mesme cosa de novo." -#: actions/siteadminpanel.php:388 actions/useradminpanel.php:313 -msgid "Save site settings" -msgstr "Salveguardar configurationes del sito" - #: actions/smssettings.php:58 -#, fuzzy msgid "SMS settings" -msgstr "Configuration SMS" +msgstr "Parametros de SMS" #: actions/smssettings.php:69 #, php-format @@ -3471,7 +3856,6 @@ msgid "Enter the code you received on your phone." msgstr "Entra le codice que tu ha recipite in tu telephono." #: actions/smssettings.php:138 -#, fuzzy msgid "SMS phone number" msgstr "Numero de telephono pro SMS" @@ -3545,15 +3929,26 @@ msgstr "Nulle codice entrate" msgid "You are not subscribed to that profile." msgstr "Tu non es subscribite a iste profilo." -#: actions/subedit.php:83 +#: actions/subedit.php:83 classes/Subscription.php:89 +#: classes/Subscription.php:116 msgid "Could not save subscription." msgstr "Non poteva salveguardar le subscription." -#: actions/subscribe.php:55 -msgid "Not a local user." -msgstr "Le usator non es local." +#: actions/subscribe.php:77 +msgid "This action only accepts POST requests." +msgstr "" -#: actions/subscribe.php:69 +#: actions/subscribe.php:107 +#, fuzzy +msgid "No such profile." +msgstr "File non existe." + +#: actions/subscribe.php:117 +#, fuzzy +msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." +msgstr "Tu non es subscribite a iste profilo." + +#: actions/subscribe.php:145 msgid "Subscribed" msgstr "Subscribite" @@ -3563,9 +3958,9 @@ msgid "%s subscribers" msgstr "Subscriptores a %s" #: actions/subscribers.php:52 -#, fuzzy, php-format +#, php-format msgid "%1$s subscribers, page %2$d" -msgstr "Subscriptores a %s, pagina %d" +msgstr "Subscriptores a %1$s, pagina %2$d" #: actions/subscribers.php:63 msgid "These are the people who listen to your notices." @@ -3587,7 +3982,7 @@ msgstr "" #: actions/subscribers.php:110 #, php-format msgid "%s has no subscribers. Want to be the first?" -msgstr "" +msgstr "%s non ha subscriptores. Vole esser le prime?" #: actions/subscribers.php:114 #, php-format @@ -3595,27 +3990,29 @@ msgid "" "%s has no subscribers. Why not [register an account](%%%%action.register%%%" "%) and be the first?" msgstr "" +"%s non ha subscriptores. Proque non [crear un conto](%%%%action.register%%%" +"%) e esser le prime?" #: actions/subscriptions.php:52 #, php-format msgid "%s subscriptions" -msgstr "" +msgstr "Subscriptiones de %s" #: actions/subscriptions.php:54 -#, fuzzy, php-format +#, php-format msgid "%1$s subscriptions, page %2$d" -msgstr "Subscriptores a %s, pagina %d" +msgstr "Subscriptiones de %1$s, pagina %2$d" #: actions/subscriptions.php:65 msgid "These are the people whose notices you listen to." -msgstr "" +msgstr "Tu seque le notas de iste personas." #: actions/subscriptions.php:69 #, php-format msgid "These are the people whose notices %s listens to." -msgstr "" +msgstr "%s seque le notas de iste personas." -#: actions/subscriptions.php:121 +#: actions/subscriptions.php:126 #, php-format msgid "" "You're not listening to anyone's notices right now, try subscribing to " @@ -3624,34 +4021,45 @@ msgid "" "featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " "automatically subscribe to people you already follow there." msgstr "" +"Tu non seque le notas de alcuno in iste momento. Tenta subscriber te a " +"personas que tu cognosce. Proba [le recerca de personas](%%action." +"peoplesearch%%), cerca membros in le gruppos de tu interesse e in le " +"[usatores in evidentia](%%action.featured%%). Si tu es [usator de Twitter](%%" +"action.twittersettings%%), tu pote automaticamente subscriber te a personas " +"que tu ja seque la." -#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#: actions/subscriptions.php:128 actions/subscriptions.php:132 #, php-format msgid "%s is not listening to anyone." -msgstr "" +msgstr "%s non seque alcuno." -#: actions/subscriptions.php:194 +#: actions/subscriptions.php:199 msgid "Jabber" -msgstr "" +msgstr "Jabber" -#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:204 lib/connectsettingsaction.php:115 msgid "SMS" -msgstr "" +msgstr "SMS" + +#: actions/tag.php:68 +#, php-format +msgid "Notices tagged with %1$s, page %2$d" +msgstr "Notas etiquettate con %1$s, pagina %2$d" #: actions/tag.php:86 #, php-format msgid "Notice feed for tag %s (RSS 1.0)" -msgstr "" +msgstr "Syndication de notas pro le etiquetta %s (RSS 1.0)" #: actions/tag.php:92 #, php-format msgid "Notice feed for tag %s (RSS 2.0)" -msgstr "" +msgstr "Syndication de notas pro le etiquetta %s (RSS 2.0)" #: actions/tag.php:98 #, php-format msgid "Notice feed for tag %s (Atom)" -msgstr "" +msgstr "Syndication de notas pro le etiquetta %s (Atom)" #: actions/tagother.php:39 msgid "No ID argument." @@ -3660,164 +4068,151 @@ msgstr "Nulle parametro de ID." #: actions/tagother.php:65 #, php-format msgid "Tag %s" -msgstr "" +msgstr "Etiquetta %s" #: actions/tagother.php:77 lib/userprofile.php:75 msgid "User profile" -msgstr "" +msgstr "Profilo del usator" -#: actions/tagother.php:81 lib/userprofile.php:102 +#: actions/tagother.php:81 actions/userauthorization.php:132 +#: lib/userprofile.php:102 msgid "Photo" -msgstr "" +msgstr "Photo" #: actions/tagother.php:141 msgid "Tag user" -msgstr "" +msgstr "Etiquettar usator" #: actions/tagother.php:151 msgid "" "Tags for this user (letters, numbers, -, ., and _), comma- or space- " "separated" msgstr "" +"Etiquettas pro iste usator (litteras, numeros, -, . e _), separate per " +"commas o spatios" #: actions/tagother.php:193 msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" +"Tu pote solmente etiquettar personas a qui tu es subscribite o qui es " +"subscribite a te." #: actions/tagother.php:200 msgid "Could not save tags." -msgstr "" +msgstr "Non poteva salveguardar etiquettas." #: actions/tagother.php:236 msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" +"Usa iste formulario pro adder etiquettas a tu subscriptores o subscriptiones." #: actions/tagrss.php:35 msgid "No such tag." -msgstr "" +msgstr "Etiquetta non existe." #: actions/twitapitrends.php:87 msgid "API method under construction." -msgstr "" +msgstr "Methodo API in construction." #: actions/unblock.php:59 msgid "You haven't blocked that user." -msgstr "" +msgstr "Tu non ha blocate iste usator." #: actions/unsandbox.php:72 msgid "User is not sandboxed." -msgstr "" +msgstr "Le usator non es in le cassa de sablo." #: actions/unsilence.php:72 msgid "User is not silenced." -msgstr "" +msgstr "Le usator non es silentiate." #: actions/unsubscribe.php:77 msgid "No profile id in request." -msgstr "" +msgstr "Nulle ID de profilo in requesta." #: actions/unsubscribe.php:98 msgid "Unsubscribed" -msgstr "" +msgstr "Subscription cancellate" -#: actions/updateprofile.php:62 actions/userauthorization.php:330 -#, fuzzy, php-format +#: actions/updateprofile.php:62 actions/userauthorization.php:337 +#, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" -"Le licentia del nota '%s' non es compatibile con le licentia del sito '%s'." +"Le licentia del fluxo que tu ascolta, ‘%1$s’, non es compatibile con le " +"licentia del sito ‘%2$s’." #: actions/useradminpanel.php:58 lib/adminpanelaction.php:321 #: lib/personalgroupnav.php:115 msgid "User" -msgstr "" +msgstr "Usator" #: actions/useradminpanel.php:69 msgid "User settings for this StatusNet site." -msgstr "" +msgstr "Configurationes de usator pro iste sito de StatusNet." -#: actions/useradminpanel.php:149 +#: actions/useradminpanel.php:148 msgid "Invalid bio limit. Must be numeric." -msgstr "" +msgstr "Limite de biographia invalide. Debe esser un numero." -#: actions/useradminpanel.php:155 +#: actions/useradminpanel.php:154 msgid "Invalid welcome text. Max length is 255 characters." -msgstr "" +msgstr "Texto de benvenita invalide. Longitude maximal es 255 characteres." -#: actions/useradminpanel.php:165 +#: actions/useradminpanel.php:164 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." -msgstr "" +msgstr "Subscription predefinite invalide: '%1$s' non es usator." -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 +#: actions/useradminpanel.php:217 lib/accountsettingsaction.php:108 #: lib/personalgroupnav.php:109 msgid "Profile" -msgstr "" +msgstr "Profilo" + +#: actions/useradminpanel.php:221 +msgid "Bio Limit" +msgstr "Limite de biographia" #: actions/useradminpanel.php:222 -msgid "Bio Limit" -msgstr "" - -#: actions/useradminpanel.php:223 msgid "Maximum length of a profile bio in characters." -msgstr "" +msgstr "Le longitude maximal del biographia de un profilo in characteres." -#: actions/useradminpanel.php:231 +#: actions/useradminpanel.php:230 msgid "New users" -msgstr "" +msgstr "Nove usatores" + +#: actions/useradminpanel.php:234 +msgid "New user welcome" +msgstr "Message de benvenita a nove usatores" #: actions/useradminpanel.php:235 -msgid "New user welcome" -msgstr "" - -#: actions/useradminpanel.php:236 msgid "Welcome text for new users (Max 255 chars)." -msgstr "" +msgstr "Texto de benvenita pro nove usatores (max. 255 characteres)" + +#: actions/useradminpanel.php:240 +msgid "Default subscription" +msgstr "Subscription predefinite" #: actions/useradminpanel.php:241 -msgid "Default subscription" -msgstr "" - -#: actions/useradminpanel.php:242 msgid "Automatically subscribe new users to this user." -msgstr "" +msgstr "Subscriber automaticamente le nove usatores a iste usator." -#: actions/useradminpanel.php:251 +#: actions/useradminpanel.php:250 msgid "Invitations" -msgstr "" +msgstr "Invitationes" -#: actions/useradminpanel.php:256 +#: actions/useradminpanel.php:255 msgid "Invitations enabled" -msgstr "" +msgstr "Invitationes activate" -#: actions/useradminpanel.php:258 +#: actions/useradminpanel.php:257 msgid "Whether to allow users to invite new users." -msgstr "" - -#: actions/useradminpanel.php:265 -msgid "Sessions" -msgstr "" - -#: actions/useradminpanel.php:270 -msgid "Handle sessions" -msgstr "" - -#: actions/useradminpanel.php:272 -msgid "Whether to handle sessions ourselves." -msgstr "" - -#: actions/useradminpanel.php:276 -msgid "Session debugging" -msgstr "" - -#: actions/useradminpanel.php:278 -msgid "Turn on debugging output for sessions." -msgstr "" +msgstr "Si le usatores pote invitar nove usatores." #: actions/userauthorization.php:105 msgid "Authorize subscription" -msgstr "" +msgstr "Autorisar subscription" #: actions/userauthorization.php:110 msgid "" @@ -3825,121 +4220,137 @@ msgid "" "user’s notices. If you didn’t just ask to subscribe to someone’s notices, " "click “Reject”." msgstr "" +"Per favor verifica iste detalios pro assecurar te que tu vole subscriber te " +"al notas de iste usator. Si tu non ha requestate isto, clicca \"Rejectar\"." -#: actions/userauthorization.php:188 actions/version.php:165 +#: actions/userauthorization.php:196 actions/version.php:165 msgid "License" -msgstr "" +msgstr "Licentia" -#: actions/userauthorization.php:209 +#: actions/userauthorization.php:217 msgid "Accept" -msgstr "" +msgstr "Acceptar" -#: actions/userauthorization.php:210 lib/subscribeform.php:115 +#: actions/userauthorization.php:218 lib/subscribeform.php:115 #: lib/subscribeform.php:139 msgid "Subscribe to this user" -msgstr "" +msgstr "Subscriber me a iste usator" -#: actions/userauthorization.php:211 +#: actions/userauthorization.php:219 msgid "Reject" -msgstr "" +msgstr "Rejectar" -#: actions/userauthorization.php:212 +#: actions/userauthorization.php:220 msgid "Reject this subscription" -msgstr "" +msgstr "Rejectar iste subscription" -#: actions/userauthorization.php:225 +#: actions/userauthorization.php:232 msgid "No authorization request!" -msgstr "" +msgstr "Nulle requesta de autorisation!" -#: actions/userauthorization.php:247 +#: actions/userauthorization.php:254 msgid "Subscription authorized" -msgstr "" +msgstr "Subscription autorisate" -#: actions/userauthorization.php:249 +#: actions/userauthorization.php:256 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 "" +"Le subscription ha essite autorisate, ma nulle URL de retorno ha essite " +"recipite. Lege in le instructiones del sito in question como autorisar le " +"subscription. Tu indicio de subscription es:" -#: actions/userauthorization.php:259 +#: actions/userauthorization.php:266 msgid "Subscription rejected" -msgstr "" +msgstr "Subscription rejectate" -#: actions/userauthorization.php:261 +#: actions/userauthorization.php:268 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 "" +"Le subscription ha essite rejectate, ma nulle URL de retorno ha essite " +"recipite. Lege in le instructiones del sito in question como rejectar " +"completemente le subscription." -#: actions/userauthorization.php:296 +#: actions/userauthorization.php:303 #, php-format msgid "Listener URI ‘%s’ not found here." -msgstr "" +msgstr "URI de ascoltator ‘%s’ non trovate hic." -#: actions/userauthorization.php:301 +#: actions/userauthorization.php:308 #, php-format msgid "Listenee URI ‘%s’ is too long." -msgstr "" +msgstr "URI de ascoltato ‘%s’ es troppo longe." -#: actions/userauthorization.php:307 +#: actions/userauthorization.php:314 #, php-format msgid "Listenee URI ‘%s’ is a local user." -msgstr "" +msgstr "URI de ascoltato ‘%s’ es un usator local." -#: actions/userauthorization.php:322 +#: actions/userauthorization.php:329 #, php-format msgid "Profile URL ‘%s’ is for a local user." -msgstr "" +msgstr "URL de profilo ‘%s’ es de un usator local." -#: actions/userauthorization.php:338 +#: actions/userauthorization.php:345 #, php-format msgid "Avatar URL ‘%s’ is not valid." -msgstr "" +msgstr "URL de avatar ‘%s’ non es valide." -#: actions/userauthorization.php:343 +#: actions/userauthorization.php:350 #, php-format msgid "Can’t read avatar URL ‘%s’." -msgstr "" +msgstr "Non pote leger URL de avatar ‘%s’." -#: actions/userauthorization.php:348 +#: actions/userauthorization.php:355 #, php-format msgid "Wrong image type for avatar URL ‘%s’." -msgstr "" +msgstr "Typo de imagine incorrecte pro URL de avatar ‘%s’." #: actions/userdesignsettings.php:76 lib/designsettings.php:65 msgid "Profile design" -msgstr "" +msgstr "Apparentia 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 "" +"Personalisa le apparentia de tu profilo con un imagine de fundo e un paletta " +"de colores de tu preferentia." #: actions/userdesignsettings.php:282 msgid "Enjoy your hotdog!" -msgstr "" +msgstr "Bon appetito!" + +#: actions/usergroups.php:64 +#, php-format +msgid "%1$s groups, page %2$d" +msgstr "Gruppos %1$s, pagina %2$d" #: actions/usergroups.php:130 msgid "Search for more groups" -msgstr "" +msgstr "Cercar altere gruppos" #: actions/usergroups.php:153 #, php-format msgid "%s is not a member of any group." -msgstr "" +msgstr "%s non es membro de alcun gruppo." #: actions/usergroups.php:158 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" +"Tenta [cercar gruppos](%%action.groupsearch%%) e facer te membro de illos." #: actions/version.php:73 -#, fuzzy, php-format +#, php-format msgid "StatusNet %s" -msgstr "Statisticas" +msgstr "StatusNet %s" #: actions/version.php:153 #, php-format @@ -3947,15 +4358,12 @@ msgid "" "This site is powered by %1$s version %2$s, Copyright 2008-2010 StatusNet, " "Inc. and contributors." msgstr "" - -#: actions/version.php:157 -#, fuzzy -msgid "StatusNet" -msgstr "Stato delite." +"Iste sito es realisate per %1$s version %2$s, copyright 2008-2010 StatusNet, " +"Inc. e contributores." #: actions/version.php:161 msgid "Contributors" -msgstr "" +msgstr "Contributores" #: actions/version.php:168 msgid "" @@ -3964,6 +4372,10 @@ msgid "" "Software Foundation, either version 3 of the License, or (at your option) " "any later version. " msgstr "" +"StatusNet es software libere: vos pote redistribuer lo e/o modificar lo sub " +"le conditiones del GNU Affero General Public License como publicate per le " +"Free Software Foundation, o version 3 de iste licentia, o (a vostre " +"election) omne version plus recente. " #: actions/version.php:174 msgid "" @@ -3972,6 +4384,10 @@ msgid "" "FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License " "for more details. " msgstr "" +"Iste programma es distribuite in le sperantia que illo essera utile, ma SIN " +"ALCUN GARANTIA; sin mesmo le garantia implicite de COMMERCIABILITATE o de " +"USABILITATE PRO UN PARTICULAR SCOPO. Vide le GNU Affero General Public " +"License pro ulterior detalios. " #: actions/version.php:180 #, php-format @@ -3979,28 +4395,20 @@ msgid "" "You should have received a copy of the GNU Affero General Public License " "along with this program. If not, see %s." msgstr "" +"Un copia del GNU Affero General Public License deberea esser disponibile " +"insimul con iste programma. Si non, vide %s." #: actions/version.php:189 msgid "Plugins" -msgstr "" +msgstr "Plug-ins" -#: actions/version.php:195 -#, fuzzy -msgid "Name" -msgstr "Pseudonymo" - -#: actions/version.php:196 lib/action.php:741 -#, fuzzy +#: actions/version.php:196 lib/action.php:747 msgid "Version" -msgstr "Conversation" +msgstr "Version" #: actions/version.php:197 msgid "Author(s)" -msgstr "" - -#: actions/version.php:198 lib/groupeditform.php:172 -msgid "Description" -msgstr "" +msgstr "Autor(es)" #: classes/File.php:144 #, php-format @@ -4008,402 +4416,541 @@ msgid "" "No file may be larger than %d bytes and the file you sent was %d bytes. Try " "to upload a smaller version." msgstr "" +"Nulle file pote esser plus grande que %d bytes e le file que tu inviava ha %" +"d bytes. Tenta incargar un version minus grande." #: classes/File.php:154 #, php-format msgid "A file this large would exceed your user quota of %d bytes." -msgstr "" +msgstr "Un file de iste dimension excederea tu quota de usator de %d bytes." #: classes/File.php:161 #, php-format msgid "A file this large would exceed your monthly quota of %d bytes." -msgstr "" +msgstr "Un file de iste dimension excederea tu quota mensual de %d bytes." #: classes/Group_member.php:41 -#, fuzzy msgid "Group join failed." -msgstr "Profilo del gruppo" +msgstr "Le inscription al gruppo ha fallite." #: classes/Group_member.php:53 -#, fuzzy msgid "Not part of group." -msgstr "Non poteva actualisar gruppo." +msgstr "Non es membro del gruppo." #: classes/Group_member.php:60 -#, fuzzy msgid "Group leave failed." -msgstr "Profilo del gruppo" +msgstr "Le cancellation del membrato del gruppo ha fallite." #: classes/Login_token.php:76 -#, fuzzy, php-format +#, php-format msgid "Could not create login token for %s" -msgstr "Non poteva crear aliases." +msgstr "Non poteva crear indicio de identification pro %s" #: classes/Message.php:45 msgid "You are banned from sending direct messages." -msgstr "" +msgstr "Il te es prohibite inviar messages directe." #: classes/Message.php:61 msgid "Could not insert message." -msgstr "" +msgstr "Non poteva inserer message." #: classes/Message.php:71 msgid "Could not update message with new URI." -msgstr "" +msgstr "Non poteva actualisar message con nove URI." -#: classes/Notice.php:171 +#: classes/Notice.php:157 #, php-format msgid "DB error inserting hashtag: %s" -msgstr "" +msgstr "Error in base de datos durante insertion del marca (hashtag): %s" -#: classes/Notice.php:225 +#: classes/Notice.php:222 msgid "Problem saving notice. Too long." -msgstr "" +msgstr "Problema salveguardar nota. Troppo longe." -#: classes/Notice.php:229 +#: classes/Notice.php:226 msgid "Problem saving notice. Unknown user." -msgstr "" +msgstr "Problema salveguardar nota. Usator incognite." -#: classes/Notice.php:234 +#: classes/Notice.php:231 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" +"Troppo de notas troppo rapidemente; face un pausa e publica de novo post " +"alcun minutas." -#: classes/Notice.php:240 +#: classes/Notice.php:237 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." msgstr "" +"Troppo de messages duplicate troppo rapidemente; face un pausa e publica de " +"novo post alcun minutas." -#: classes/Notice.php:246 +#: classes/Notice.php:243 msgid "You are banned from posting notices on this site." -msgstr "" +msgstr "Il te es prohibite publicar notas in iste sito." -#: classes/Notice.php:305 classes/Notice.php:330 +#: classes/Notice.php:309 classes/Notice.php:335 msgid "Problem saving notice." -msgstr "" +msgstr "Problema salveguardar nota." -#: classes/Notice.php:1052 -#, php-format -msgid "DB error inserting reply: %s" -msgstr "" +#: classes/Notice.php:882 +msgid "Problem saving group inbox." +msgstr "Problema salveguardar le cassa de entrata del gruppo." -#: classes/Notice.php:1423 +#: classes/Notice.php:1407 #, php-format msgid "RT @%1$s %2$s" -msgstr "" +msgstr "RT @%1$s %2$s" -#: classes/User.php:382 +#: classes/Subscription.php:66 lib/oauthstore.php:465 +msgid "You have been banned from subscribing." +msgstr "Tu ha essite blocate del subscription." + +#: classes/Subscription.php:70 +msgid "Already subscribed!" +msgstr "Ja subscribite!" + +#: classes/Subscription.php:74 +msgid "User has blocked you." +msgstr "Le usator te ha blocate." + +#: classes/Subscription.php:157 +msgid "Not subscribed!" +msgstr "Non subscribite!" + +#: classes/Subscription.php:163 +msgid "Couldn't delete self-subscription." +msgstr "Non poteva deler auto-subscription." + +#: classes/Subscription.php:179 lib/subs.php:69 +msgid "Couldn't delete subscription." +msgstr "Non poteva deler subscription." + +#: classes/User.php:372 #, php-format msgid "Welcome to %1$s, @%2$s!" -msgstr "" +msgstr "Benvenite a %1$s, @%2$s!" -#: classes/User_group.php:380 +#: classes/User_group.php:423 msgid "Could not create group." -msgstr "" +msgstr "Non poteva crear gruppo." -#: classes/User_group.php:409 +#: classes/User_group.php:452 msgid "Could not set group membership." -msgstr "" +msgstr "Non poteva configurar le membrato del gruppo." #: lib/accountsettingsaction.php:108 msgid "Change your profile settings" -msgstr "" +msgstr "Cambiar le optiones de tu profilo" #: lib/accountsettingsaction.php:112 msgid "Upload an avatar" -msgstr "" +msgstr "Incargar un avatar" #: lib/accountsettingsaction.php:116 msgid "Change your password" -msgstr "" +msgstr "Cambiar tu contrasigno" #: lib/accountsettingsaction.php:120 msgid "Change email handling" -msgstr "" +msgstr "Modificar le tractamento de e-mail" #: lib/accountsettingsaction.php:124 msgid "Design your profile" -msgstr "" +msgstr "Designar tu profilo" #: lib/accountsettingsaction.php:128 msgid "Other" -msgstr "" +msgstr "Altere" #: lib/accountsettingsaction.php:128 msgid "Other options" -msgstr "" +msgstr "Altere optiones" #: lib/action.php:144 -#, fuzzy, php-format +#, php-format msgid "%1$s - %2$s" -msgstr "%s quitava le gruppo %s" +msgstr "%1$s - %2$s" #: lib/action.php:159 msgid "Untitled page" -msgstr "" +msgstr "Pagina sin titulo" -#: lib/action.php:427 +#: lib/action.php:433 msgid "Primary site navigation" -msgstr "" +msgstr "Navigation primari del sito" -#: lib/action.php:433 +#: lib/action.php:439 msgid "Home" -msgstr "" +msgstr "Initio" -#: lib/action.php:433 +#: lib/action.php:439 msgid "Personal profile and friends timeline" -msgstr "" +msgstr "Profilo personal e chronologia de amicos" -#: lib/action.php:435 -msgid "Account" -msgstr "" - -#: lib/action.php:435 +#: lib/action.php:441 msgid "Change your email, avatar, password, profile" -msgstr "" +msgstr "Cambiar tu e-mail, avatar, contrasigno, profilo" -#: lib/action.php:438 +#: lib/action.php:444 msgid "Connect" -msgstr "" +msgstr "Connecter" -#: lib/action.php:438 +#: lib/action.php:444 msgid "Connect to services" -msgstr "" +msgstr "Connecter con servicios" -#: lib/action.php:442 +#: lib/action.php:448 msgid "Change site configuration" -msgstr "" +msgstr "Modificar le configuration del sito" -#: lib/action.php:446 lib/subgroupnav.php:105 +#: lib/action.php:452 lib/subgroupnav.php:105 msgid "Invite" -msgstr "" +msgstr "Invitar" -#: lib/action.php:447 lib/subgroupnav.php:106 +#: lib/action.php:453 lib/subgroupnav.php:106 #, php-format msgid "Invite friends and colleagues to join you on %s" -msgstr "" +msgstr "Invitar amicos e collegas a accompaniar te in %s" -#: lib/action.php:452 +#: lib/action.php:458 msgid "Logout" -msgstr "" +msgstr "Clauder session" -#: lib/action.php:452 +#: lib/action.php:458 msgid "Logout from the site" -msgstr "" - -#: lib/action.php:457 -msgid "Create an account" -msgstr "" - -#: lib/action.php:460 -msgid "Login to the site" -msgstr "" - -#: lib/action.php:463 lib/action.php:726 -msgid "Help" -msgstr "" +msgstr "Terminar le session del sito" #: lib/action.php:463 -msgid "Help me!" -msgstr "" - -#: lib/action.php:466 lib/searchaction.php:127 -msgid "Search" -msgstr "" +msgid "Create an account" +msgstr "Crear un conto" #: lib/action.php:466 +msgid "Login to the site" +msgstr "Identificar te a iste sito" + +#: lib/action.php:469 lib/action.php:732 +msgid "Help" +msgstr "Adjuta" + +#: lib/action.php:469 +msgid "Help me!" +msgstr "Adjuta me!" + +#: lib/action.php:472 lib/searchaction.php:127 +msgid "Search" +msgstr "Cercar" + +#: lib/action.php:472 msgid "Search for people or text" -msgstr "" +msgstr "Cercar personas o texto" -#: lib/action.php:487 +#: lib/action.php:493 msgid "Site notice" -msgstr "" +msgstr "Aviso del sito" -#: lib/action.php:553 +#: lib/action.php:559 msgid "Local views" -msgstr "" +msgstr "Vistas local" -#: lib/action.php:619 +#: lib/action.php:625 msgid "Page notice" -msgstr "" +msgstr "Aviso de pagina" -#: lib/action.php:721 +#: lib/action.php:727 msgid "Secondary site navigation" -msgstr "" - -#: lib/action.php:728 -msgid "About" -msgstr "" - -#: lib/action.php:730 -msgid "FAQ" -msgstr "" +msgstr "Navigation secundari del sito" #: lib/action.php:734 +msgid "About" +msgstr "A proposito" + +#: lib/action.php:736 +msgid "FAQ" +msgstr "FAQ" + +#: lib/action.php:740 msgid "TOS" -msgstr "" - -#: lib/action.php:737 -msgid "Privacy" -msgstr "" - -#: lib/action.php:739 -msgid "Source" -msgstr "" +msgstr "CdS" #: lib/action.php:743 -msgid "Contact" -msgstr "" +msgid "Privacy" +msgstr "Confidentialitate" #: lib/action.php:745 +msgid "Source" +msgstr "Fonte" + +#: lib/action.php:749 +msgid "Contact" +msgstr "Contacto" + +#: lib/action.php:751 msgid "Badge" -msgstr "" +msgstr "Insignia" -#: lib/action.php:773 +#: lib/action.php:779 msgid "StatusNet software license" -msgstr "" +msgstr "Licentia del software StatusNet" -#: lib/action.php:776 +#: lib/action.php:782 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." "broughtby%%](%%site.broughtbyurl%%). " msgstr "" +"**%%site.name%%** es un servicio de microblog offerite per [%%site.broughtby%" +"%](%%site.broughtbyurl%%). " -#: lib/action.php:778 +#: lib/action.php:784 #, php-format msgid "**%%site.name%%** is a microblogging service. " -msgstr "" +msgstr "**%%site.name%%** es un servicio de microblog. " -#: lib/action.php:780 +#: lib/action.php:786 #, 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 "" +"Le sito functiona con le software de microblog [StatusNet](http://status." +"net/), version %s, disponibile sub le [GNU Affero General Public License]" +"(http://www.fsf.org/licensing/licenses/agpl-3.0.html)." -#: lib/action.php:794 +#: lib/action.php:801 msgid "Site content license" -msgstr "" +msgstr "Licentia del contento del sito" -#: lib/action.php:803 +#: lib/action.php:806 +#, php-format +msgid "Content and data of %1$s are private and confidential." +msgstr "Le contento e datos de %1$s es private e confidential." + +#: lib/action.php:811 +#, php-format +msgid "Content and data copyright by %1$s. All rights reserved." +msgstr "Contento e datos sub copyright de %1$s. Tote le derectos reservate." + +#: lib/action.php:814 +msgid "Content and data copyright by contributors. All rights reserved." +msgstr "" +"Contento e datos sub copyright del contributores. Tote le derectos reservate." + +#: lib/action.php:827 msgid "All " -msgstr "" +msgstr "Totes " -#: lib/action.php:808 +#: lib/action.php:833 msgid "license." -msgstr "" +msgstr "licentia." -#: lib/action.php:1102 +#: lib/action.php:1132 msgid "Pagination" -msgstr "" +msgstr "Pagination" -#: lib/action.php:1111 +#: lib/action.php:1141 msgid "After" -msgstr "" +msgstr "Post" -#: lib/action.php:1119 +#: lib/action.php:1149 msgid "Before" +msgstr "Ante" + +#: lib/activity.php:382 +msgid "Can't handle remote content yet." msgstr "" -#: lib/action.php:1167 -msgid "There was a problem with your session token." +#: lib/activity.php:410 +msgid "Can't handle embedded XML content yet." +msgstr "" + +#: lib/activity.php:414 +msgid "Can't handle embedded Base64 content yet." msgstr "" #: lib/adminpanelaction.php:96 msgid "You cannot make changes to this site." -msgstr "" +msgstr "Tu non pote facer modificationes in iste sito." #: lib/adminpanelaction.php:107 -#, fuzzy msgid "Changes to that panel are not allowed." -msgstr "Registration non permittite." +msgstr "Le modification de iste pannello non es permittite." #: lib/adminpanelaction.php:206 msgid "showForm() not implemented." -msgstr "" +msgstr "showForm() non implementate." #: lib/adminpanelaction.php:235 msgid "saveSettings() not implemented." -msgstr "" +msgstr "saveSettings() non implementate." #: lib/adminpanelaction.php:258 msgid "Unable to delete design setting." -msgstr "" +msgstr "Impossibile deler configuration de apparentia." #: lib/adminpanelaction.php:312 msgid "Basic site configuration" -msgstr "" +msgstr "Configuration basic del sito" #: lib/adminpanelaction.php:317 msgid "Design configuration" -msgstr "" +msgstr "Configuration del apparentia" -#: lib/adminpanelaction.php:322 lib/adminpanelaction.php:327 +#: lib/adminpanelaction.php:322 +msgid "User configuration" +msgstr "Configuration del usator" + +#: lib/adminpanelaction.php:327 +msgid "Access configuration" +msgstr "Configuration del accesso" + +#: lib/adminpanelaction.php:332 msgid "Paths configuration" +msgstr "Configuration del camminos" + +#: lib/adminpanelaction.php:337 +msgid "Sessions configuration" +msgstr "Configuration del sessiones" + +#: lib/apiauth.php:95 +msgid "API resource requires read-write access, but you only have read access." msgstr "" +"Le ressource de API require accesso pro lectura e scriptura, ma tu ha " +"solmente accesso pro lectura." + +#: lib/apiauth.php:273 +#, php-format +msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" +msgstr "" +"Tentativa de authentication al API fallite, pseudonymo = %1$s, proxy = %2$s, " +"IP = %3$s" + +#: lib/applicationeditform.php:136 +msgid "Edit application" +msgstr "Modificar application" + +#: lib/applicationeditform.php:184 +msgid "Icon for this application" +msgstr "Icone pro iste application" + +#: lib/applicationeditform.php:204 +#, php-format +msgid "Describe your application in %d characters" +msgstr "Describe tu application in %d characteres" + +#: lib/applicationeditform.php:207 +msgid "Describe your application" +msgstr "Describe tu application" + +#: lib/applicationeditform.php:216 +msgid "Source URL" +msgstr "URL de origine" + +#: lib/applicationeditform.php:218 +msgid "URL of the homepage of this application" +msgstr "URL del pagina initial de iste application" + +#: lib/applicationeditform.php:224 +msgid "Organization responsible for this application" +msgstr "Organisation responsabile de iste application" + +#: lib/applicationeditform.php:230 +msgid "URL for the homepage of the organization" +msgstr "URL del pagina initial del organisation" + +#: lib/applicationeditform.php:236 +msgid "URL to redirect to after authentication" +msgstr "URL verso le qual rediriger post authentication" + +#: lib/applicationeditform.php:258 +msgid "Browser" +msgstr "Navigator" + +#: lib/applicationeditform.php:274 +msgid "Desktop" +msgstr "Scriptorio" + +#: lib/applicationeditform.php:275 +msgid "Type of application, browser or desktop" +msgstr "Typo de application, navigator o scriptorio" + +#: lib/applicationeditform.php:297 +msgid "Read-only" +msgstr "Lectura solmente" + +#: lib/applicationeditform.php:315 +msgid "Read-write" +msgstr "Lectura e scriptura" + +#: lib/applicationeditform.php:316 +msgid "Default access for this application: read-only, or read-write" +msgstr "" +"Accesso predefinite pro iste application: lectura solmente, o lectura e " +"scriptura" + +#: lib/applicationlist.php:154 +msgid "Revoke" +msgstr "Revocar" #: lib/attachmentlist.php:87 msgid "Attachments" -msgstr "" +msgstr "Annexos" #: lib/attachmentlist.php:265 msgid "Author" -msgstr "" +msgstr "Autor" #: lib/attachmentlist.php:278 msgid "Provider" -msgstr "" +msgstr "Providitor" #: lib/attachmentnoticesection.php:67 msgid "Notices where this attachment appears" -msgstr "" +msgstr "Notas ubi iste annexo appare" #: lib/attachmenttagcloudsection.php:48 msgid "Tags for this attachment" -msgstr "" +msgstr "Etiquettas pro iste annexo" -#: lib/authenticationplugin.php:182 lib/authenticationplugin.php:187 -#, fuzzy +#: lib/authenticationplugin.php:218 lib/authenticationplugin.php:223 msgid "Password changing failed" -msgstr "Cambio del contrasigno" +msgstr "Cambio del contrasigno fallite" -#: lib/authenticationplugin.php:197 -#, fuzzy +#: lib/authenticationplugin.php:233 msgid "Password changing is not allowed" -msgstr "Cambio del contrasigno" +msgstr "Cambio del contrasigno non permittite" #: lib/channel.php:138 lib/channel.php:158 msgid "Command results" -msgstr "" +msgstr "Resultatos del commando" #: lib/channel.php:210 lib/mailhandler.php:142 msgid "Command complete" -msgstr "" +msgstr "Commando complete" #: lib/channel.php:221 msgid "Command failed" -msgstr "" +msgstr "Commando fallite" #: lib/command.php:44 msgid "Sorry, this command is not yet implemented." -msgstr "" +msgstr "Pardono, iste commando non es ancora implementate." #: lib/command.php:88 -#, fuzzy, php-format +#, php-format msgid "Could not find a user with nickname %s" -msgstr "Non poteva trovar le usator de destination." +msgstr "Non poteva trovar un usator con pseudonymo %s" #: lib/command.php:92 msgid "It does not make a lot of sense to nudge yourself!" -msgstr "" +msgstr "Non ha multe senso pulsar te mesme!" #: lib/command.php:99 -#, fuzzy, php-format +#, php-format msgid "Nudge sent to %s" -msgstr "Pulsata inviate" +msgstr "Pulsata inviate a %s" #: lib/command.php:126 #, php-format @@ -4412,21 +4959,22 @@ msgid "" "Subscribers: %2$s\n" "Notices: %3$s" msgstr "" +"Subscriptiones: %1$s\n" +"Subscriptores: %2$s\n" +"Notas: %3$s" #: lib/command.php:152 lib/command.php:390 lib/command.php:451 -#, fuzzy msgid "Notice with that id does not exist" -msgstr "Nulle usator existe con iste adresse de e-mail o nomine de usator." +msgstr "Non existe un nota con iste ID" #: lib/command.php:168 lib/command.php:406 lib/command.php:467 #: lib/command.php:523 -#, fuzzy msgid "User has no last notice" -msgstr "Le usator non ha un profilo." +msgstr "Usator non ha ultime nota" #: lib/command.php:190 msgid "Notice marked as fave." -msgstr "" +msgstr "Nota marcate como favorite." #: lib/command.php:217 msgid "You are already a member of that group" @@ -4453,29 +5001,29 @@ msgid "%s left group %s" msgstr "%s quitava le gruppo %s" #: lib/command.php:309 -#, fuzzy, php-format +#, php-format msgid "Fullname: %s" -msgstr "Nomine complete" +msgstr "Nomine complete: %s" #: lib/command.php:312 lib/mail.php:254 #, php-format msgid "Location: %s" -msgstr "" +msgstr "Loco: %s" #: lib/command.php:315 lib/mail.php:256 #, php-format msgid "Homepage: %s" -msgstr "" +msgstr "Pagina personal: %s" #: lib/command.php:318 #, php-format msgid "About: %s" -msgstr "" +msgstr "A proposito: %s" #: lib/command.php:349 #, php-format msgid "Message too long - maximum is %d characters, you sent %d" -msgstr "" +msgstr "Message troppo longe - maximo es %d characteres, tu inviava %d" #: lib/command.php:367 #, php-format @@ -4484,7 +5032,7 @@ msgstr "Message directe a %s inviate" #: lib/command.php:369 msgid "Error sending direct message." -msgstr "" +msgstr "Error durante le invio del message directe." #: lib/command.php:413 msgid "Cannot repeat your own notice" @@ -4495,9 +5043,9 @@ msgid "Already repeated that notice" msgstr "Iste nota ha ja essite repetite" #: lib/command.php:426 -#, fuzzy, php-format +#, php-format msgid "Notice from %s repeated" -msgstr "Nota delite." +msgstr "Nota de %s repetite" #: lib/command.php:428 msgid "Error repeating notice." @@ -4506,95 +5054,107 @@ msgstr "Error durante le repetition del nota." #: lib/command.php:482 #, php-format msgid "Notice too long - maximum is %d characters, you sent %d" -msgstr "" +msgstr "Nota troppo longe - maximo es %d characteres, tu inviava %d" #: lib/command.php:491 -#, fuzzy, php-format +#, php-format msgid "Reply to %s sent" -msgstr "Responsas a %s" +msgstr "Responsa a %s inviate" #: lib/command.php:493 msgid "Error saving notice." -msgstr "" +msgstr "Errur durante le salveguarda del nota." #: lib/command.php:547 msgid "Specify the name of the user to subscribe to" -msgstr "" +msgstr "Specifica le nomine del usator al qual subscriber te" -#: lib/command.php:554 +#: lib/command.php:554 lib/command.php:589 +msgid "No such user" +msgstr "Usator non existe" + +#: lib/command.php:561 #, php-format msgid "Subscribed to %s" -msgstr "" +msgstr "Subscribite a %s" -#: lib/command.php:575 +#: lib/command.php:582 lib/command.php:685 msgid "Specify the name of the user to unsubscribe from" -msgstr "" +msgstr "Specifica le nomine del usator al qual cancellar le subscription" -#: lib/command.php:582 +#: lib/command.php:595 #, php-format msgid "Unsubscribed from %s" -msgstr "" +msgstr "Subscription a %s cancellate" -#: lib/command.php:600 lib/command.php:623 +#: lib/command.php:613 lib/command.php:636 msgid "Command not yet implemented." -msgstr "" +msgstr "Commando non ancora implementate." -#: lib/command.php:603 +#: lib/command.php:616 msgid "Notification off." -msgstr "" +msgstr "Notification disactivate." -#: lib/command.php:605 +#: lib/command.php:618 msgid "Can't turn off notification." -msgstr "" +msgstr "Non pote disactivar notification." -#: lib/command.php:626 +#: lib/command.php:639 msgid "Notification on." -msgstr "" - -#: lib/command.php:628 -msgid "Can't turn on notification." -msgstr "" +msgstr "Notification activate." #: lib/command.php:641 -msgid "Login command is disabled" -msgstr "" +msgid "Can't turn on notification." +msgstr "Non pote activar notification." -#: lib/command.php:652 +#: lib/command.php:654 +msgid "Login command is disabled" +msgstr "Le commando de apertura de session es disactivate" + +#: lib/command.php:665 #, php-format msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "" - -#: lib/command.php:668 -msgid "You are not subscribed to anyone." -msgstr "" - -#: lib/command.php:670 -msgid "You are subscribed to this person:" -msgid_plural "You are subscribed to these people:" -msgstr[0] "" -msgstr[1] "" - -#: lib/command.php:690 -msgid "No one is subscribed to you." -msgstr "" +"Iste ligamine pote esser usate solmente un vice, e es valide durante " +"solmente 2 minutas: %s" #: lib/command.php:692 +#, fuzzy, php-format +msgid "Unsubscribed %s" +msgstr "Subscription a %s cancellate" + +#: lib/command.php:709 +msgid "You are not subscribed to anyone." +msgstr "Tu non es subscribite a alcuno." + +#: lib/command.php:711 +msgid "You are subscribed to this person:" +msgid_plural "You are subscribed to these people:" +msgstr[0] "Tu es subscribite a iste persona:" +msgstr[1] "Tu es subscribite a iste personas:" + +#: lib/command.php:731 +msgid "No one is subscribed to you." +msgstr "Necuno es subscribite a te." + +#: lib/command.php:733 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Iste persona es subscribite a te:" +msgstr[1] "Iste personas es subscribite a te:" -#: lib/command.php:712 +#: lib/command.php:753 msgid "You are not a member of any groups." -msgstr "" +msgstr "Tu non es membro de alcun gruppo." -#: lib/command.php:714 +#: lib/command.php:755 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Tu es membro de iste gruppo:" +msgstr[1] "Tu es membro de iste gruppos:" -#: lib/command.php:728 +#: lib/command.php:769 +#, fuzzy msgid "" "Commands:\n" "on - turn on notifications\n" @@ -4608,6 +5168,7 @@ msgid "" "d - direct message to user\n" "get - get last notice from user\n" "whois - get profile info on user\n" +"lose - force user to stop following you\n" "fav - add user's last notice as a 'fave'\n" "fav # - add notice with the given id as a 'fave'\n" "repeat # - repeat a notice with a given id\n" @@ -4634,246 +5195,295 @@ msgid "" "tracks - not yet implemented.\n" "tracking - not yet implemented.\n" msgstr "" +"Commandos:\n" +"on - activar notificationes\n" +"off - disactivar notificationes\n" +"help - monstrar iste adjuta\n" +"follow - subscriber te al usator\n" +"groups - listar le gruppos del quales tu es membro\n" +"subscriptions - listar le personas que tu seque\n" +"subscribers - listar le personas qui te seque\n" +"leave - cancellar subscription al usator\n" +"d - diriger message al usator\n" +"get - obtener ultime nota del usator\n" +"whois - obtener info de profilo del usator\n" +"fav - adder ultime nota del usator como favorite\n" +"fav # - adder nota con le ID date como favorite\n" +"repeat # - repeter le nota con le ID date\n" +"repeat - repeter le ultime nota del usator\n" +"reply # - responder al nota con le ID date\n" +"reply - responder al ultime nota del usator\n" +"join - facer te membro del gruppo\n" +"login - obtener ligamine pro aperir session al interfacie web\n" +"drop - quitar gruppo\n" +"stats - obtener tu statisticas\n" +"stop - como 'off'\n" +"quit - como 'off'\n" +"sub - como 'follow'\n" +"unsub - como 'leave'\n" +"last - como 'get'\n" +"on - non ancora implementate.\n" +"off - non ancora implementate.\n" +"nudge - rememorar un usator de scriber alique.\n" +"invite - non ancora implementate.\n" +"track - non ancora implementate.\n" +"untrack - non ancora implementate.\n" +"track off - non ancora implementate.\n" +"untrack all - non ancora implementate.\n" +"tracks - non ancora implementate.\n" +"tracking - non ancora implementate.\n" -#: lib/common.php:131 +#: lib/common.php:136 msgid "No configuration file found. " -msgstr "" +msgstr "Nulle file de configuration trovate. " -#: lib/common.php:132 +#: lib/common.php:137 msgid "I looked for configuration files in the following places: " -msgstr "" +msgstr "Io cercava files de configuration in le sequente locos: " -#: lib/common.php:134 +#: lib/common.php:139 msgid "You may wish to run the installer to fix this." -msgstr "" +msgstr "Considera executar le installator pro reparar isto." -#: lib/common.php:135 +#: lib/common.php:140 msgid "Go to the installer." -msgstr "" +msgstr "Ir al installator." #: lib/connectsettingsaction.php:110 msgid "IM" -msgstr "" +msgstr "MI" #: lib/connectsettingsaction.php:111 msgid "Updates by instant messenger (IM)" -msgstr "" +msgstr "Actualisationes per messageria instantanee (MI)" #: lib/connectsettingsaction.php:116 msgid "Updates by SMS" -msgstr "" +msgstr "Actualisationes per SMS" + +#: lib/connectsettingsaction.php:120 +msgid "Connections" +msgstr "Connexiones" + +#: lib/connectsettingsaction.php:121 +msgid "Authorized connected applications" +msgstr "Applicationes autorisate connectite" #: lib/dberroraction.php:60 msgid "Database error" -msgstr "" +msgstr "Error de base de datos" #: lib/designsettings.php:105 msgid "Upload file" -msgstr "" +msgstr "Incargar file" #: lib/designsettings.php:109 msgid "" "You can upload your personal background image. The maximum file size is 2MB." msgstr "" +"Tu pote actualisar tu imagine de fundo personal. Le dimension maximal del " +"file es 2MB." #: lib/designsettings.php:418 msgid "Design defaults restored." -msgstr "" +msgstr "Apparentia predefinite restaurate." #: lib/disfavorform.php:114 lib/disfavorform.php:140 msgid "Disfavor this notice" -msgstr "" +msgstr "Disfavorir iste nota" #: lib/favorform.php:114 lib/favorform.php:140 msgid "Favor this notice" -msgstr "" +msgstr "Favorir iste nota" #: lib/favorform.php:140 msgid "Favor" -msgstr "" +msgstr "Favorir" #: lib/feed.php:85 msgid "RSS 1.0" -msgstr "" +msgstr "RSS 1.0" #: lib/feed.php:87 msgid "RSS 2.0" -msgstr "" +msgstr "RSS 2.0" #: lib/feed.php:89 msgid "Atom" -msgstr "" +msgstr "Atom" #: lib/feed.php:91 msgid "FOAF" -msgstr "" +msgstr "Amico de un amico" #: lib/feedlist.php:64 msgid "Export data" -msgstr "" +msgstr "Exportar datos" #: lib/galleryaction.php:121 msgid "Filter tags" -msgstr "" +msgstr "Filtrar etiquettas" #: lib/galleryaction.php:131 msgid "All" -msgstr "" +msgstr "Totes" #: lib/galleryaction.php:139 msgid "Select tag to filter" -msgstr "" +msgstr "Selige etiquetta a filtrar" #: lib/galleryaction.php:140 msgid "Tag" -msgstr "" +msgstr "Etiquetta" #: lib/galleryaction.php:141 msgid "Choose a tag to narrow list" -msgstr "" +msgstr "Selige etiquetta pro reducer lista" #: lib/galleryaction.php:143 msgid "Go" -msgstr "" +msgstr "Ir" #: lib/groupeditform.php:163 msgid "URL of the homepage or blog of the group or topic" -msgstr "" +msgstr "URL del pagina initial o blog del gruppo o topico" #: lib/groupeditform.php:168 msgid "Describe the group or topic" -msgstr "" +msgstr "Describe le gruppo o topico" #: lib/groupeditform.php:170 #, php-format msgid "Describe the group or topic in %d characters" -msgstr "" +msgstr "Describe le gruppo o topico in %d characteres" #: lib/groupeditform.php:179 msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"" msgstr "" +"Loco del gruppo, si existe, como \"Citate, Provincia (o Region), Pais\"" #: lib/groupeditform.php:187 #, php-format msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "" +"Pseudonymos additional pro le gruppo, separate per commas o spatios, max %d" #: lib/groupnav.php:85 msgid "Group" -msgstr "" +msgstr "Gruppo" #: lib/groupnav.php:101 msgid "Blocked" -msgstr "" +msgstr "Blocate" #: lib/groupnav.php:102 #, php-format msgid "%s blocked users" -msgstr "" +msgstr "%s usatores blocate" #: lib/groupnav.php:108 #, php-format msgid "Edit %s group properties" -msgstr "" +msgstr "Modificar proprietates del gruppo %s" #: lib/groupnav.php:113 msgid "Logo" -msgstr "" +msgstr "Logotypo" #: lib/groupnav.php:114 #, php-format msgid "Add or edit %s logo" -msgstr "" +msgstr "Adder o modificar logotypo de %s" #: lib/groupnav.php:120 #, php-format msgid "Add or edit %s design" -msgstr "" +msgstr "Adder o modificar apparentia de %s" #: lib/groupsbymemberssection.php:71 msgid "Groups with most members" -msgstr "" +msgstr "Gruppos con le plus membros" #: lib/groupsbypostssection.php:71 msgid "Groups with most posts" -msgstr "" +msgstr "Gruppos con le plus messages" #: lib/grouptagcloudsection.php:56 #, php-format msgid "Tags in %s group's notices" -msgstr "" +msgstr "Etiquettas in le notas del gruppo %s" #: lib/htmloutputter.php:103 msgid "This page is not available in a media type you accept" -msgstr "" +msgstr "Iste pagina non es disponibile in un formato que tu accepta" #: lib/imagefile.php:75 #, php-format msgid "That file is too big. The maximum file size is %s." -msgstr "" +msgstr "Iste file es troppo grande. Le dimension maximal es %s." #: lib/imagefile.php:80 msgid "Partial upload." -msgstr "" +msgstr "Incargamento partial." #: lib/imagefile.php:88 lib/mediafile.php:170 msgid "System error uploading file." -msgstr "" +msgstr "Error de systema durante le incargamento del file." #: lib/imagefile.php:96 msgid "Not an image or corrupt file." -msgstr "" +msgstr "Le file non es un imagine o es defecte." #: lib/imagefile.php:105 msgid "Unsupported image file format." -msgstr "" +msgstr "Formato de file de imagine non supportate." #: lib/imagefile.php:118 msgid "Lost our file." -msgstr "" +msgstr "File perdite." #: lib/imagefile.php:150 lib/imagefile.php:197 msgid "Unknown file type" -msgstr "" +msgstr "Typo de file incognite" #: lib/imagefile.php:217 msgid "MB" -msgstr "" +msgstr "MB" #: lib/imagefile.php:219 msgid "kB" -msgstr "" +msgstr "KB" -#: lib/jabber.php:202 +#: lib/jabber.php:220 #, php-format msgid "[%s]" -msgstr "" +msgstr "[%s]" -#: lib/jabber.php:385 -#, fuzzy, php-format +#: lib/jabber.php:400 +#, php-format msgid "Unknown inbox source %d." -msgstr "Lingua \"%s\" incognite" +msgstr "Fonte de cassa de entrata \"%s\" incognite" #: lib/joinform.php:114 msgid "Join" -msgstr "" +msgstr "Inscriber" #: lib/leaveform.php:114 msgid "Leave" -msgstr "" +msgstr "Quitar" #: lib/logingroupnav.php:80 msgid "Login with a username and password" -msgstr "" +msgstr "Aperir session con nomine de usator e contrasigno" #: lib/logingroupnav.php:86 msgid "Sign up for a new account" -msgstr "" +msgstr "Crear un nove conto" #: lib/mail.php:172 msgid "Email address confirmation" -msgstr "" +msgstr "Confirmation del adresse de e-mail" #: lib/mail.php:174 #, php-format @@ -4891,11 +5501,23 @@ msgid "" "Thanks for your time, \n" "%s\n" msgstr "" +"Salute %s,\n" +"\n" +"Alcuno entrava ante un momento iste adresse de e-mail in %s.\n" +"\n" +"Si isto esseva tu, e tu vole confirmar le adresse, usa le URL hic infra:\n" +"\n" +"%s\n" +"\n" +"Si non, simplemente ignora iste message.\n" +"\n" +"Gratias pro tu attention,\n" +"%s\n" #: lib/mail.php:236 #, php-format msgid "%1$s is now listening to your notices on %2$s." -msgstr "" +msgstr "%1$s seque ora tu notas in %2$s." #: lib/mail.php:241 #, php-format @@ -4911,16 +5533,26 @@ msgid "" "----\n" "Change your email address or notification options at %8$s\n" msgstr "" +"%1$s seque ora tu notas in %2$s.\n" +"\n" +"%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Cordialmente,\n" +"%7$s.\n" +"\n" +"----\n" +"Cambia tu adresse de e-mail o optiones de notification a %8$s\n" #: lib/mail.php:258 -#, fuzzy, php-format +#, php-format msgid "Bio: %s" -msgstr "Bio" +msgstr "Bio: %s" #: lib/mail.php:286 #, php-format msgid "New email address for posting to %s" -msgstr "" +msgstr "Nove adresse de e-mail pro publicar in %s" #: lib/mail.php:289 #, php-format @@ -4934,20 +5566,28 @@ msgid "" "Faithfully yours,\n" "%4$s" msgstr "" +"Tu ha un nove adresse pro publication in %1$s.\n" +"\n" +"Invia e-mail a %2$s pro publicar nove messages.\n" +"\n" +"Ulterior informationes se trova a %3$s.\n" +"\n" +"Cordialmente,\n" +"%4$s" #: lib/mail.php:413 #, php-format msgid "%s status" -msgstr "" +msgstr "Stato de %s" #: lib/mail.php:439 msgid "SMS confirmation" -msgstr "" +msgstr "Confirmation SMS" #: lib/mail.php:463 #, php-format msgid "You've been nudged by %s" -msgstr "" +msgstr "%s te ha pulsate" #: lib/mail.php:467 #, php-format @@ -4964,11 +5604,22 @@ msgid "" "With kind regards,\n" "%4$s\n" msgstr "" +"%1$s (%2$s) se demanda lo que tu face iste dies e te invita a scriber alique " +"de nove.\n" +"\n" +"Dunque face audir de te :)\n" +"\n" +"%3$s\n" +"\n" +"Non responde a iste message; le responsa non arrivara.\n" +"\n" +"Con salutes cordial,\n" +"%4$s\n" #: lib/mail.php:510 #, php-format msgid "New private message from %s" -msgstr "" +msgstr "Nove message private de %s" #: lib/mail.php:514 #, php-format @@ -4988,11 +5639,25 @@ msgid "" "With kind regards,\n" "%5$s\n" msgstr "" +"%1$s (%2$s) te ha inviate un message private:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"Tu pote responder a su message hic:\n" +"\n" +"%4$s\n" +"\n" +"Non responde per e-mail; le responsa non arrivara.\n" +"\n" +"Con salutes cordial,\n" +"%5$s\n" #: lib/mail.php:559 #, php-format msgid "%s (@%s) added your notice as a favorite" -msgstr "" +msgstr "%s (@%s) ha addite tu nota como favorite" #: lib/mail.php:561 #, php-format @@ -5014,11 +5679,28 @@ msgid "" "Faithfully yours,\n" "%6$s\n" msgstr "" +"%1$s (@%7$s) addeva ante un momento tu nota de %2$s como un de su " +"favorites.\n" +"\n" +"Le URL de tu nota es:\n" +"\n" +"%3$s\n" +"\n" +"Le texto de tu nota es:\n" +"\n" +"%4$s\n" +"\n" +"Tu pote vider le lista del favorites de %1$s hic:\n" +"\n" +"%5$s\n" +"\n" +"Cordialmente,\n" +"%6$s\n" #: lib/mail.php:624 #, php-format msgid "%s (@%s) sent a notice to your attention" -msgstr "" +msgstr "%s (@%s) ha inviate un nota a tu attention" #: lib/mail.php:626 #, php-format @@ -5034,549 +5716,531 @@ msgid "" "\t%4$s\n" "\n" msgstr "" +"%1$s (@%9$s) inviava ante un momento un nota a tu attention (un 'responsa " +"@') in %2$s.\n" +"\n" +"Le nota es hic:\n" +"\n" +"%3$s\n" +"\n" +"Le texto:\n" +"\n" +"%4$s\n" +"\n" #: lib/mailbox.php:89 msgid "Only the user can read their own mailboxes." -msgstr "" +msgstr "Solmente le usator pote leger su proprie cassas postal." #: 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 "" +"Tu non ha messages private. Tu pote inviar messages private pro ingagiar " +"altere usatores in conversation. Altere personas pote inviar te messages que " +"solmente tu pote leger." -#: lib/mailbox.php:227 lib/noticelist.php:477 +#: lib/mailbox.php:227 lib/noticelist.php:482 msgid "from" -msgstr "" +msgstr "de" #: lib/mailhandler.php:37 msgid "Could not parse message." -msgstr "" +msgstr "Non comprendeva le syntaxe del message." #: lib/mailhandler.php:42 msgid "Not a registered user." -msgstr "" +msgstr "Non un usator registrate." #: lib/mailhandler.php:46 msgid "Sorry, that is not your incoming email address." -msgstr "" +msgstr "Pardono, isto non es tu adresse de e-mail entrante." #: lib/mailhandler.php:50 msgid "Sorry, no incoming email allowed." -msgstr "" +msgstr "Pardono, le reception de e-mail non es permittite." #: lib/mailhandler.php:228 -#, fuzzy, php-format +#, php-format msgid "Unsupported message type: %s" -msgstr "Formato non supportate." +msgstr "Typo de message non supportate: %s" #: lib/mediafile.php:98 lib/mediafile.php:123 msgid "There was a database error while saving your file. Please try again." msgstr "" +"Un error de base de datos occurreva durante le salveguarda de tu file. Per " +"favor reproba." #: lib/mediafile.php:142 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." -msgstr "" +msgstr "Le file incargate excede le directiva upload_max_filesize in php.ini." #: lib/mediafile.php:147 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" +"Le file incargate excede le directiva MAX_FILE_SIZE specificate in le " +"formulario HTML." #: lib/mediafile.php:152 msgid "The uploaded file was only partially uploaded." -msgstr "" +msgstr "Le file incargate ha solmente essite incargate partialmente." #: lib/mediafile.php:159 msgid "Missing a temporary folder." -msgstr "" +msgstr "Manca un dossier temporari." #: lib/mediafile.php:162 msgid "Failed to write file to disk." -msgstr "" +msgstr "Falleva de scriber le file in disco." #: lib/mediafile.php:165 msgid "File upload stopped by extension." -msgstr "" +msgstr "Incargamento de file stoppate per un extension." #: lib/mediafile.php:179 lib/mediafile.php:216 msgid "File exceeds user's quota." -msgstr "" +msgstr "File excede quota del usator." #: lib/mediafile.php:196 lib/mediafile.php:233 msgid "File could not be moved to destination directory." -msgstr "" +msgstr "File non poteva esser displaciate in le directorio de destination." #: lib/mediafile.php:201 lib/mediafile.php:237 -#, fuzzy msgid "Could not determine file's MIME type." -msgstr "Non poteva determinar le usator de origine." +msgstr "Non poteva determinar le typo MIME del file." #: lib/mediafile.php:270 #, php-format msgid " Try using another %s format." -msgstr "" +msgstr " Tenta usar un altere formato %s." #: lib/mediafile.php:275 #, php-format msgid "%s is not a supported file type on this server." -msgstr "" +msgstr "%s non es un typo de file supportate in iste servitor." #: lib/messageform.php:120 msgid "Send a direct notice" -msgstr "" +msgstr "Inviar un nota directe" #: lib/messageform.php:146 msgid "To" -msgstr "" +msgstr "A" #: lib/messageform.php:159 lib/noticeform.php:185 msgid "Available characters" -msgstr "" +msgstr "Characteres disponibile" #: lib/noticeform.php:160 msgid "Send a notice" -msgstr "" +msgstr "Inviar un nota" #: lib/noticeform.php:173 #, php-format msgid "What's up, %s?" -msgstr "" +msgstr "Como sta, %s?" #: lib/noticeform.php:192 msgid "Attach" -msgstr "" +msgstr "Annexar" #: lib/noticeform.php:196 msgid "Attach a file" -msgstr "" +msgstr "Annexar un file" #: lib/noticeform.php:212 -#, fuzzy msgid "Share my location" -msgstr "Non poteva salveguardar le preferentias de loco." +msgstr "Divulgar mi loco" #: lib/noticeform.php:215 -#, fuzzy msgid "Do not share my location" -msgstr "Non poteva salveguardar le preferentias de loco." +msgstr "Non divulgar mi loco" #: lib/noticeform.php:216 -msgid "Hide this info" -msgstr "" - -#: lib/noticeform.php:217 msgid "" "Sorry, retrieving your geo location is taking longer than expected, please " "try again later" msgstr "" +"Pardono, le obtention de tu geolocalisation prende plus tempore que " +"previste. Per favor reproba plus tarde." -#: lib/noticelist.php:428 +#: lib/noticelist.php:429 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" -msgstr "" +msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" -#: lib/noticelist.php:429 +#: lib/noticelist.php:430 msgid "N" -msgstr "" +msgstr "N" -#: lib/noticelist.php:429 +#: lib/noticelist.php:430 msgid "S" -msgstr "" +msgstr "S" -#: lib/noticelist.php:430 +#: lib/noticelist.php:431 msgid "E" -msgstr "" +msgstr "E" -#: lib/noticelist.php:430 +#: lib/noticelist.php:431 msgid "W" -msgstr "" +msgstr "W" -#: lib/noticelist.php:436 +#: lib/noticelist.php:438 msgid "at" -msgstr "" +msgstr "a" -#: lib/noticelist.php:531 +#: lib/noticelist.php:558 msgid "in context" -msgstr "" +msgstr "in contexto" -#: lib/noticelist.php:556 +#: lib/noticelist.php:583 msgid "Repeated by" msgstr "Repetite per" -#: lib/noticelist.php:585 +#: lib/noticelist.php:610 msgid "Reply to this notice" -msgstr "" +msgstr "Responder a iste nota" -#: lib/noticelist.php:586 +#: lib/noticelist.php:611 msgid "Reply" -msgstr "" +msgstr "Responder" -#: lib/noticelist.php:628 -#, fuzzy +#: lib/noticelist.php:655 msgid "Notice repeated" -msgstr "Nota delite." +msgstr "Nota repetite" #: lib/nudgeform.php:116 msgid "Nudge this user" -msgstr "" +msgstr "Pulsar iste usator" #: lib/nudgeform.php:128 msgid "Nudge" -msgstr "" +msgstr "Pulsar" #: lib/nudgeform.php:128 msgid "Send a nudge to this user" -msgstr "" +msgstr "Inviar un pulsata a iste usator" #: lib/oauthstore.php:283 msgid "Error inserting new profile" -msgstr "" +msgstr "Error durante le insertion del nove profilo" #: lib/oauthstore.php:291 msgid "Error inserting avatar" -msgstr "" +msgstr "Error durante le insertion del avatar" #: lib/oauthstore.php:311 msgid "Error inserting remote profile" -msgstr "" +msgstr "Error durante le insertion del profilo remote" #: lib/oauthstore.php:345 msgid "Duplicate notice" -msgstr "" +msgstr "Duplicar nota" -#: lib/oauthstore.php:466 lib/subs.php:48 -msgid "You have been banned from subscribing." -msgstr "" - -#: lib/oauthstore.php:491 +#: lib/oauthstore.php:490 msgid "Couldn't insert new subscription." -msgstr "" +msgstr "Non poteva inserer nove subscription." #: lib/personalgroupnav.php:99 msgid "Personal" -msgstr "" +msgstr "Personal" #: lib/personalgroupnav.php:104 msgid "Replies" -msgstr "" +msgstr "Responsas" #: lib/personalgroupnav.php:114 msgid "Favorites" -msgstr "" - -#: lib/personalgroupnav.php:124 -msgid "Inbox" -msgstr "" +msgstr "Favorites" #: lib/personalgroupnav.php:125 -msgid "Your incoming messages" -msgstr "" +msgid "Inbox" +msgstr "Cassa de entrata" -#: lib/personalgroupnav.php:129 -msgid "Outbox" -msgstr "" +#: lib/personalgroupnav.php:126 +msgid "Your incoming messages" +msgstr "Tu messages recipite" #: lib/personalgroupnav.php:130 +msgid "Outbox" +msgstr "Cassa de exito" + +#: lib/personalgroupnav.php:131 msgid "Your sent messages" -msgstr "" +msgstr "Tu messages inviate" #: lib/personaltagcloudsection.php:56 #, php-format msgid "Tags in %s's notices" -msgstr "" +msgstr "Etiquettas in le notas de %s" #: lib/plugin.php:114 -#, fuzzy msgid "Unknown" -msgstr "Action incognite" +msgstr "Incognite" #: lib/profileaction.php:109 lib/profileaction.php:192 lib/subgroupnav.php:82 msgid "Subscriptions" -msgstr "" +msgstr "Subscriptiones" #: lib/profileaction.php:126 msgid "All subscriptions" -msgstr "" +msgstr "Tote le subscriptiones" #: lib/profileaction.php:140 lib/profileaction.php:201 lib/subgroupnav.php:90 msgid "Subscribers" -msgstr "" +msgstr "Subscriptores" #: lib/profileaction.php:157 msgid "All subscribers" -msgstr "" +msgstr "Tote le subscriptores" #: lib/profileaction.php:178 msgid "User ID" -msgstr "" +msgstr "ID del usator" #: lib/profileaction.php:183 msgid "Member since" -msgstr "" +msgstr "Membro depost" #: lib/profileaction.php:245 msgid "All groups" -msgstr "" +msgstr "Tote le gruppos" #: lib/profileformaction.php:123 msgid "No return-to arguments." -msgstr "" +msgstr "Nulle parametro return-to." #: lib/profileformaction.php:137 msgid "Unimplemented method." -msgstr "" +msgstr "Methodo non implementate." #: lib/publicgroupnav.php:78 msgid "Public" -msgstr "" +msgstr "Public" #: lib/publicgroupnav.php:82 msgid "User groups" -msgstr "" +msgstr "Gruppos de usatores" #: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 msgid "Recent tags" -msgstr "" +msgstr "Etiquettas recente" #: lib/publicgroupnav.php:88 msgid "Featured" -msgstr "" +msgstr "In evidentia" #: lib/publicgroupnav.php:92 msgid "Popular" -msgstr "" +msgstr "Popular" #: lib/repeatform.php:107 -#, fuzzy msgid "Repeat this notice?" -msgstr "Repeter iste nota" +msgstr "Repeter iste nota?" #: lib/repeatform.php:132 msgid "Repeat this notice" msgstr "Repeter iste nota" +#: lib/router.php:665 +msgid "No single user defined for single-user mode." +msgstr "Nulle signule usator definite pro le modo de singule usator." + #: lib/sandboxform.php:67 msgid "Sandbox" -msgstr "" +msgstr "Cassa de sablo" #: lib/sandboxform.php:78 msgid "Sandbox this user" -msgstr "" +msgstr "Mitter iste usator in le cassa de sablo" #: lib/searchaction.php:120 msgid "Search site" -msgstr "" +msgstr "Cercar in sito" #: lib/searchaction.php:126 msgid "Keyword(s)" -msgstr "" +msgstr "Parola(s)-clave" #: lib/searchaction.php:162 msgid "Search help" -msgstr "" +msgstr "Adjuta super le recerca" #: lib/searchgroupnav.php:80 msgid "People" -msgstr "" +msgstr "Personas" #: lib/searchgroupnav.php:81 msgid "Find people on this site" -msgstr "" +msgstr "Cercar personas in iste sito" #: lib/searchgroupnav.php:83 msgid "Find content of notices" -msgstr "" +msgstr "Cercar in contento de notas" #: lib/searchgroupnav.php:85 msgid "Find groups on this site" -msgstr "" +msgstr "Cercar gruppos in iste sito" #: lib/section.php:89 msgid "Untitled section" -msgstr "" +msgstr "Section sin titulo" #: lib/section.php:106 msgid "More..." -msgstr "" +msgstr "Plus…" #: lib/silenceform.php:67 msgid "Silence" -msgstr "" +msgstr "Silentiar" #: lib/silenceform.php:78 msgid "Silence this user" -msgstr "" +msgstr "Silentiar iste usator" #: lib/subgroupnav.php:83 #, php-format msgid "People %s subscribes to" -msgstr "" +msgstr "Personas que %s seque" #: lib/subgroupnav.php:91 #, php-format msgid "People subscribed to %s" -msgstr "" +msgstr "Personas qui seque %s" #: lib/subgroupnav.php:99 #, php-format msgid "Groups %s is a member of" -msgstr "" - -#: lib/subs.php:52 -msgid "Already subscribed!" -msgstr "" - -#: lib/subs.php:56 -msgid "User has blocked you." -msgstr "" - -#: lib/subs.php:63 -msgid "Could not subscribe." -msgstr "" - -#: lib/subs.php:82 -msgid "Could not subscribe other to you." -msgstr "" - -#: lib/subs.php:137 -msgid "Not subscribed!" -msgstr "" - -#: lib/subs.php:142 -msgid "Couldn't delete self-subscription." -msgstr "" - -#: lib/subs.php:158 -msgid "Couldn't delete subscription." -msgstr "" +msgstr "Gruppos del quales %s es membro" #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" -msgstr "" +msgstr "Nube de etiquettas de personas como auto-etiquettate" #: lib/subscriberspeopletagcloudsection.php:48 #: lib/subscriptionspeopletagcloudsection.php:48 msgid "People Tagcloud as tagged" -msgstr "" +msgstr "Nube de etiquetta de personas como etiquettate" #: lib/tagcloudsection.php:56 msgid "None" -msgstr "" +msgstr "Nulle" #: lib/topposterssection.php:74 msgid "Top posters" -msgstr "" +msgstr "Qui scribe le plus" #: lib/unsandboxform.php:69 msgid "Unsandbox" -msgstr "" +msgstr "Retirar del cassa de sablo" #: lib/unsandboxform.php:80 msgid "Unsandbox this user" -msgstr "" +msgstr "Retirar iste usator del cassa de sablo" #: lib/unsilenceform.php:67 msgid "Unsilence" -msgstr "" +msgstr "Dissilentiar" #: lib/unsilenceform.php:78 msgid "Unsilence this user" -msgstr "" +msgstr "Non plus silentiar iste usator" #: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 msgid "Unsubscribe from this user" -msgstr "" +msgstr "Cancellar subscription a iste usator" #: lib/unsubscribeform.php:137 msgid "Unsubscribe" -msgstr "" +msgstr "Cancellar subscription" #: lib/userprofile.php:116 msgid "Edit Avatar" -msgstr "" +msgstr "Modificar avatar" #: lib/userprofile.php:236 msgid "User actions" -msgstr "" +msgstr "Actiones de usator" -#: lib/userprofile.php:248 +#: lib/userprofile.php:251 msgid "Edit profile settings" -msgstr "" +msgstr "Modificar configuration de profilo" -#: lib/userprofile.php:249 +#: lib/userprofile.php:252 msgid "Edit" -msgstr "" +msgstr "Modificar" -#: lib/userprofile.php:272 +#: lib/userprofile.php:275 msgid "Send a direct message to this user" -msgstr "" +msgstr "Inviar un message directe a iste usator" -#: lib/userprofile.php:273 +#: lib/userprofile.php:276 msgid "Message" -msgstr "" +msgstr "Message" -#: lib/userprofile.php:311 +#: lib/userprofile.php:314 msgid "Moderate" -msgstr "" +msgstr "Moderar" -#: lib/util.php:877 +#: lib/util.php:952 msgid "a few seconds ago" -msgstr "" +msgstr "alcun secundas retro" -#: lib/util.php:879 +#: lib/util.php:954 msgid "about a minute ago" -msgstr "" +msgstr "circa un minuta retro" -#: lib/util.php:881 +#: lib/util.php:956 #, php-format msgid "about %d minutes ago" -msgstr "" +msgstr "circa %d minutas retro" -#: lib/util.php:883 +#: lib/util.php:958 msgid "about an hour ago" -msgstr "" +msgstr "circa un hora retro" -#: lib/util.php:885 +#: lib/util.php:960 #, php-format msgid "about %d hours ago" -msgstr "" +msgstr "circa %d horas retro" -#: lib/util.php:887 +#: lib/util.php:962 msgid "about a day ago" -msgstr "" +msgstr "circa un die retro" -#: lib/util.php:889 +#: lib/util.php:964 #, php-format msgid "about %d days ago" -msgstr "" +msgstr "circa %d dies retro" -#: lib/util.php:891 +#: lib/util.php:966 msgid "about a month ago" -msgstr "" +msgstr "circa un mense retro" -#: lib/util.php:893 +#: lib/util.php:968 #, php-format msgid "about %d months ago" -msgstr "" +msgstr "circa %d menses retro" -#: lib/util.php:895 +#: lib/util.php:970 msgid "about a year ago" -msgstr "" +msgstr "circa un anno retro" #: lib/webcolor.php:82 #, php-format msgid "%s is not a valid color!" -msgstr "" +msgstr "%s non es un color valide!" #: lib/webcolor.php:123 #, php-format msgid "%s is not a valid color! Use 3 or 6 hex chars." -msgstr "" +msgstr "%s non es un color valide! Usa 3 o 6 characteres hexadecimal." -#: scripts/xmppdaemon.php:301 +#: lib/xmppmanager.php:402 #, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." -msgstr "" +msgstr "Message troppo longe - maximo es %1$d characteres, tu inviava %2$d." diff --git a/locale/is/LC_MESSAGES/statusnet.po b/locale/is/LC_MESSAGES/statusnet.po index beef92d124..08e4fec952 100644 --- a/locale/is/LC_MESSAGES/statusnet.po +++ b/locale/is/LC_MESSAGES/statusnet.po @@ -8,12 +8,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-01-13 22:04+0000\n" -"PO-Revision-Date: 2010-01-13 22:05:31+0000\n" +"POT-Creation-Date: 2010-02-24 23:49+0000\n" +"PO-Revision-Date: 2010-02-24 23:51:05+0000\n" "Language-Team: Icelandic\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha (r61027); Translate extension (2010-01-04)\n" +"X-Generator: MediaWiki 1.17alpha (r62925); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: is\n" "X-Message-Group: out-statusnet\n" @@ -21,6 +21,64 @@ msgstr "" "= 31 && n % 100 != 41 && n % 100 != 51 && n % 100 != 61 && n % 100 != 71 && " "n % 100 != 81 && n % 100 != 91);\n" +#: actions/accessadminpanel.php:54 lib/adminpanelaction.php:326 +#, fuzzy +msgid "Access" +msgstr "Samþykkja" + +#: actions/accessadminpanel.php:65 +#, fuzzy +msgid "Site access settings" +msgstr "Stillingar fyrir mynd" + +#: actions/accessadminpanel.php:158 +#, fuzzy +msgid "Registration" +msgstr "Nýskrá" + +#: actions/accessadminpanel.php:161 +#, fuzzy +msgid "Private" +msgstr "Friðhelgi" + +#: actions/accessadminpanel.php:163 +msgid "Prohibit anonymous users (not logged in) from viewing site?" +msgstr "" + +#: actions/accessadminpanel.php:167 +#, fuzzy +msgid "Invite only" +msgstr "Bjóða" + +#: actions/accessadminpanel.php:169 +msgid "Make registration invitation only." +msgstr "" + +#: actions/accessadminpanel.php:173 +msgid "Closed" +msgstr "" + +#: actions/accessadminpanel.php:175 +msgid "Disable new registrations." +msgstr "" + +#: actions/accessadminpanel.php:189 actions/designadminpanel.php:586 +#: actions/emailsettings.php:195 actions/imsettings.php:163 +#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 +#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 +#: actions/siteadminpanel.php:336 actions/smssettings.php:181 +#: actions/subscriptions.php:208 actions/tagother.php:154 +#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 lib/designsettings.php:256 +#: lib/groupeditform.php:202 +msgid "Save" +msgstr "Vista" + +#: actions/accessadminpanel.php:189 +#, fuzzy +msgid "Save access settings" +msgstr "Stillingar fyrir mynd" + #: actions/all.php:63 actions/public.php:97 actions/replies.php:92 #: actions/showfavorites.php:137 actions/tag.php:51 #, fuzzy @@ -36,25 +94,29 @@ msgstr "Ekkert þannig merki." #: 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:144 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apistatusesupdate.php:148 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:78 #: actions/apitimelinehome.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/otp.php:76 #: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154 -#: actions/replies.php:73 actions/repliesrss.php:38 +#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 #: 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:302 lib/command.php:355 #: lib/command.php:401 lib/command.php:462 lib/command.php:518 #: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 -#: lib/subs.php:34 lib/subs.php:125 msgid "No such user." msgstr "Enginn svoleiðis notandi." +#: actions/all.php:84 +#, fuzzy, php-format +msgid "%1$s and friends, page %2$d" +msgstr "%s og vinirnir, síða %d" + #: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 -#: actions/apitimelinefriends.php:115 actions/apitimelinehome.php:115 +#: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" @@ -95,7 +157,7 @@ msgid "" "his or her attention](%%%%action.newnotice%%%%?status_textarea=%3$s)." msgstr "" -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211 #, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " @@ -106,8 +168,8 @@ msgstr "" msgid "You and friends" msgstr "" -#: actions/allrss.php:119 actions/apitimelinefriends.php:122 -#: actions/apitimelinehome.php:122 +#: actions/allrss.php:119 actions/apitimelinefriends.php:119 +#: actions/apitimelinehome.php:120 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Færslur frá %1$s og vinum á %2$s!" @@ -117,23 +179,23 @@ msgstr "Færslur frá %1$s og vinum á %2$s!" #: actions/apiaccountupdateprofile.php:97 #: actions/apiaccountupdateprofilebackgroundimage.php:94 #: actions/apiaccountupdateprofilecolors.php:118 -#: 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:136 actions/apigroupismember.php:114 -#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 -#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 -#: actions/apigroupmembership.php:106 actions/apigroupshow.php:105 -#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 -#: actions/apistatusesretweets.php:112 actions/apistatusesshow.php:108 -#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93 -#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:146 -#: actions/apitimelinefriends.php:156 actions/apitimelinegroup.php:150 -#: actions/apitimelinehome.php:156 actions/apitimelinementions.php:151 -#: actions/apitimelinepublic.php:131 actions/apitimelineretweetedbyme.php:122 +#: actions/apiaccountverifycredentials.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:128 actions/apigroupcreate.php:136 +#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 +#: actions/apigroupleave.php:141 actions/apigrouplist.php:132 +#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 +#: actions/apigroupshow.php:115 actions/apihelptest.php:88 +#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 +#: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 #: actions/apitimelineretweetedtome.php:121 -#: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141 -#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 +#: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 +#: actions/apitimelineuser.php:207 actions/apiusershow.php:101 #, fuzzy msgid "API method not found." msgstr "Aðferð í forritsskilum fannst ekki!" @@ -148,7 +210,7 @@ msgstr "Aðferð í forritsskilum fannst ekki!" #: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 #: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 #: actions/apigroupleave.php:91 actions/apistatusesretweet.php:65 -#: actions/apistatusesupdate.php:114 +#: actions/apistatusesupdate.php:118 msgid "This method requires a POST." msgstr "Þessi aðferð krefst POST." @@ -179,8 +241,9 @@ msgstr "Gat ekki vistað persónulega síðu." #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:97 -#: actions/apistatusesupdate.php:127 actions/avatarsettings.php:257 -#: actions/designadminpanel.php:122 actions/newnotice.php:94 +#: actions/apistatusesupdate.php:131 actions/avatarsettings.php:257 +#: actions/designadminpanel.php:122 actions/editapplication.php:118 +#: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 #, php-format msgid "" @@ -301,11 +364,11 @@ msgstr "Gat ekki uppfært notanda." msgid "Two user ids or screen_names must be supplied." msgstr "Tvo notendakenni eða skjáarnöfn verða að vera uppgefin." -#: actions/apifriendshipsshow.php:135 +#: actions/apifriendshipsshow.php:134 msgid "Could not determine source user." msgstr "" -#: actions/apifriendshipsshow.php:143 +#: actions/apifriendshipsshow.php:142 msgid "Could not find target user." msgstr "" @@ -327,7 +390,8 @@ msgstr "Stuttnefni nú þegar í notkun. Prófaðu eitthvað annað." msgid "Not a valid nickname." msgstr "Ekki tækt stuttnefni." -#: actions/apigroupcreate.php:196 actions/editgroup.php:195 +#: actions/apigroupcreate.php:196 actions/editapplication.php:215 +#: actions/editgroup.php:195 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:217 msgid "Homepage is not a valid URL." @@ -339,7 +403,8 @@ msgstr "Heimasíða er ekki gild vefslóð." msgid "Full name is too long (max 255 chars)." msgstr "Fullt nafn er of langt (í mesta lagi 255 stafir)." -#: actions/apigroupcreate.php:213 +#: actions/apigroupcreate.php:213 actions/editapplication.php:190 +#: actions/newapplication.php:172 #, fuzzy, php-format msgid "Description is too long (max %d chars)." msgstr "Lýsing er of löng (í mesta lagi 140 tákn)." @@ -375,7 +440,7 @@ msgstr "" #: actions/apigroupismember.php:95 actions/apigroupjoin.php:104 #: actions/apigroupleave.php:104 actions/apigroupmembership.php:91 -#: actions/apigroupshow.php:90 actions/apitimelinegroup.php:91 +#: actions/apigroupshow.php:82 actions/apitimelinegroup.php:91 #, fuzzy msgid "Group not found!" msgstr "Aðferð í forritsskilum fannst ekki!" @@ -419,6 +484,115 @@ msgstr "Hópar %s" msgid "groups on %s" msgstr "Hópsaðgerðir" +#: actions/apioauthauthorize.php:101 +msgid "No oauth_token parameter provided." +msgstr "" + +#: actions/apioauthauthorize.php:106 +#, fuzzy +msgid "Invalid token." +msgstr "Ótæk stærð." + +#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 +#: actions/deletenotice.php:157 actions/disfavor.php:74 +#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54 +#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupunblock.php:66 actions/imsettings.php:206 +#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 +#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 +#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135 +#: actions/othersettings.php:145 actions/passwordsettings.php:138 +#: actions/profilesettings.php:194 actions/recoverpassword.php:337 +#: actions/register.php:165 actions/remotesubscribe.php:77 +#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 +#: actions/subscribe.php:86 actions/tagother.php:166 +#: 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/apioauthauthorize.php:135 +#, fuzzy +msgid "Invalid nickname / password!" +msgstr "Ótækt notendanafn eða lykilorð." + +#: actions/apioauthauthorize.php:159 +#, fuzzy +msgid "Database error deleting OAuth application user." +msgstr "Villa kom upp í stillingu notanda." + +#: actions/apioauthauthorize.php:185 +#, fuzzy +msgid "Database error inserting OAuth application user." +msgstr "Gagnagrunnsvilla við innsetningu myllumerkis: %s" + +#: actions/apioauthauthorize.php:214 +#, php-format +msgid "" +"The request token %s has been authorized. Please exchange it for an access " +"token." +msgstr "" + +#: actions/apioauthauthorize.php:227 +#, php-format +msgid "The request token %s has been denied and revoked." +msgstr "" + +#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 +#: actions/designadminpanel.php:103 actions/editapplication.php:139 +#: actions/emailsettings.php:256 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/newapplication.php:121 +#: actions/oauthconnectionssettings.php:147 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/apioauthauthorize.php:259 +msgid "An application would like to connect to your account" +msgstr "" + +#: actions/apioauthauthorize.php:276 +msgid "Allow or deny access" +msgstr "" + +#: actions/apioauthauthorize.php:292 +#, php-format +msgid "" +"The application %1$s by %2$s would like " +"the ability to %3$s your %4$s account data. You should only " +"give access to your %4$s account to third parties you trust." +msgstr "" + +#: actions/apioauthauthorize.php:310 lib/action.php:441 +msgid "Account" +msgstr "Aðgangur" + +#: actions/apioauthauthorize.php:313 actions/login.php:230 +#: actions/profilesettings.php:106 actions/register.php:424 +#: actions/showgroup.php:236 actions/tagother.php:94 +#: actions/userauthorization.php:145 lib/groupeditform.php:152 +#: lib/userprofile.php:131 +msgid "Nickname" +msgstr "Stuttnefni" + +#: actions/apioauthauthorize.php:316 actions/login.php:233 +#: actions/register.php:429 lib/accountsettingsaction.php:116 +msgid "Password" +msgstr "Lykilorð" + +#: actions/apioauthauthorize.php:328 +msgid "Deny" +msgstr "" + +#: actions/apioauthauthorize.php:334 +#, fuzzy +msgid "Allow" +msgstr "Allt" + +#: actions/apioauthauthorize.php:351 +msgid "Allow or deny access to your account information." +msgstr "" + #: actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." msgstr "Þessi aðferð krefst POST eða DELETE." @@ -450,17 +624,17 @@ msgstr "" msgid "No status with that ID found." msgstr "Engin staða með þessu kenni fannst." -#: actions/apistatusesupdate.php:157 actions/newnotice.php:155 +#: actions/apistatusesupdate.php:161 actions/newnotice.php:155 #: lib/mailhandler.php:60 #, 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:198 +#: actions/apistatusesupdate.php:202 msgid "Not found" msgstr "Fannst ekki" -#: actions/apistatusesupdate.php:221 actions/newnotice.php:178 +#: actions/apistatusesupdate.php:225 actions/newnotice.php:178 #, php-format msgid "Max notice size is %d chars, including attachment URL." msgstr "" @@ -475,7 +649,7 @@ msgstr "Skráarsnið myndar ekki stutt." msgid "%1$s / Favorites from %2$s" msgstr "%s / Uppáhaldsbabl frá %s" -#: actions/apitimelinefavorites.php:120 +#: actions/apitimelinefavorites.php:117 #, fuzzy, php-format msgid "%1$s updates favorited by %2$s / %2$s." msgstr "%s færslur gerðar að uppáhaldsbabli af %s / %s." @@ -486,7 +660,7 @@ msgstr "%s færslur gerðar að uppáhaldsbabli af %s / %s." msgid "%s timeline" msgstr "Rás %s" -#: actions/apitimelinegroup.php:117 actions/apitimelineuser.php:126 +#: actions/apitimelinegroup.php:114 actions/apitimelineuser.php:126 #: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" @@ -502,27 +676,22 @@ msgstr "" 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/apitimelinepublic.php:107 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "Almenningsrás %s" -#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "%s færslur frá öllum!" -#: actions/apitimelineretweetedbyme.php:112 -#, php-format -msgid "Repeated by %s" -msgstr "" - #: actions/apitimelineretweetedtome.php:111 #, fuzzy, php-format msgid "Repeated to %s" msgstr "Svör við %s" -#: actions/apitimelineretweetsofme.php:112 +#: actions/apitimelineretweetsofme.php:114 #, fuzzy, php-format msgid "Repeats of %s" msgstr "Svör við %s" @@ -532,7 +701,7 @@ msgstr "Svör við %s" msgid "Notices tagged with %s" msgstr "Babl merkt með %s" -#: actions/apitimelinetag.php:108 actions/tagrss.php:64 +#: actions/apitimelinetag.php:104 actions/tagrss.php:64 #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "" @@ -592,8 +761,8 @@ msgstr "Upphafleg mynd" msgid "Preview" msgstr "Forsýn" -#: actions/avatarsettings.php:149 lib/deleteuserform.php:66 -#: lib/noticelist.php:611 +#: actions/avatarsettings.php:149 actions/showapplication.php:252 +#: lib/deleteuserform.php:66 lib/noticelist.php:637 msgid "Delete" msgstr "Eyða" @@ -605,29 +774,6 @@ msgstr "Hlaða upp" msgid "Crop" msgstr "Skera af" -#: actions/avatarsettings.php:268 actions/deletenotice.php:157 -#: actions/disfavor.php:74 actions/emailsettings.php:238 actions/favor.php:75 -#: actions/geocode.php:50 actions/groupblock.php:66 actions/grouplogo.php:309 -#: actions/groupunblock.php:66 actions/imsettings.php:206 -#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 -#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 -#: actions/othersettings.php:145 actions/passwordsettings.php:138 -#: actions/profilesettings.php:194 actions/recoverpassword.php:337 -#: actions/register.php:165 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 -#: actions/subscribe.php:46 actions/tagother.php:166 -#: 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/avatarsettings.php:281 actions/designadminpanel.php:103 -#: actions/emailsettings.php:256 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/avatarsettings.php:328 msgid "Pick a square area of the image to be your avatar" msgstr "" @@ -665,8 +811,9 @@ msgid "" "will not be notified of any @-replies from them." msgstr "" -#: actions/block.php:143 actions/deletenotice.php:145 -#: actions/deleteuser.php:147 actions/groupblock.php:178 +#: actions/block.php:143 actions/deleteapplication.php:153 +#: actions/deletenotice.php:145 actions/deleteuser.php:147 +#: actions/groupblock.php:178 msgid "No" msgstr "Nei" @@ -675,13 +822,13 @@ msgstr "Nei" msgid "Do not block this user" msgstr "Opna á þennan notanda" -#: actions/block.php:144 actions/deletenotice.php:146 -#: actions/deleteuser.php:148 actions/groupblock.php:179 -#: lib/repeatform.php:132 +#: actions/block.php:144 actions/deleteapplication.php:158 +#: actions/deletenotice.php:146 actions/deleteuser.php:148 +#: actions/groupblock.php:179 lib/repeatform.php:132 msgid "Yes" msgstr "Já" -#: actions/block.php:144 actions/groupmembers.php:346 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80 msgid "Block this user" msgstr "Loka á þennan notanda" @@ -765,7 +912,8 @@ msgid "Couldn't delete email confirmation." msgstr "Gat ekki eytt tölvupóstsstaðfestingu." #: actions/confirmaddress.php:144 -msgid "Confirm Address" +#, fuzzy +msgid "Confirm address" msgstr "Staðfesta tölvupóstfang" #: actions/confirmaddress.php:159 @@ -783,10 +931,54 @@ msgstr "" msgid "Notices" msgstr "Babl" +#: actions/deleteapplication.php:63 +#, fuzzy +msgid "You must be logged in to delete an application." +msgstr "Þú verður að hafa skráð þig inn til að búa til hóp." + +#: actions/deleteapplication.php:71 +#, fuzzy +msgid "Application not found." +msgstr "Babl hefur enga persónulega síðu" + +#: actions/deleteapplication.php:78 actions/editapplication.php:77 +#: actions/showapplication.php:94 +#, fuzzy +msgid "You are not the owner of this application." +msgstr "Þú ert ekki meðlimur í þessum hópi." + +#: actions/deleteapplication.php:102 actions/editapplication.php:127 +#: actions/newapplication.php:110 actions/showapplication.php:118 +#: lib/action.php:1197 +msgid "There was a problem with your session token." +msgstr "Það komu upp vandamál varðandi setutókann þinn." + +#: actions/deleteapplication.php:123 actions/deleteapplication.php:147 +#, fuzzy +msgid "Delete application" +msgstr "Ekkert svoleiðis babl." + +#: actions/deleteapplication.php:149 +msgid "" +"Are you sure you want to delete this application? This will clear all data " +"about the application from the database, including all existing user " +"connections." +msgstr "" + +#: actions/deleteapplication.php:156 +#, fuzzy +msgid "Do not delete this application" +msgstr "Gat ekki uppfært hóp." + +#: actions/deleteapplication.php:160 +#, fuzzy +msgid "Delete this application" +msgstr "Eyða þessu babli" + #: 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/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 #: lib/adminpanelaction.php:72 lib/profileformaction.php:63 #: lib/settingsaction.php:72 @@ -815,7 +1007,7 @@ msgstr "Ertu viss um að þú viljir eyða þessu babli?" msgid "Do not delete this notice" msgstr "" -#: actions/deletenotice.php:146 lib/noticelist.php:611 +#: actions/deletenotice.php:146 lib/noticelist.php:637 msgid "Delete this notice" msgstr "Eyða þessu babli" @@ -953,16 +1145,6 @@ msgstr "" msgid "Reset back to default" msgstr "" -#: actions/designadminpanel.php:586 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 -#: actions/pathsadminpanel.php:324 actions/profilesettings.php:174 -#: actions/siteadminpanel.php:388 actions/smssettings.php:181 -#: actions/subscriptions.php:203 actions/tagother.php:154 -#: actions/useradminpanel.php:313 lib/designsettings.php:256 -#: lib/groupeditform.php:202 -msgid "Save" -msgstr "Vista" - #: actions/designadminpanel.php:587 lib/designsettings.php:257 msgid "Save design" msgstr "" @@ -975,10 +1157,87 @@ msgstr "Þetta babl er ekki í uppáhaldi!" msgid "Add to favorites" msgstr "Bæta við sem uppáhaldsbabli" -#: actions/doc.php:69 -msgid "No such document." +#: actions/doc.php:158 +#, fuzzy, php-format +msgid "No such document \"%s\"" msgstr "Ekkert svoleiðis skjal." +#: actions/editapplication.php:54 +#, fuzzy +msgid "Edit Application" +msgstr "Aðrir valkostir" + +#: actions/editapplication.php:66 +#, fuzzy +msgid "You must be logged in to edit an application." +msgstr "Þú verður að hafa skráð þig inn til að búa til hóp." + +#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:166 +#: actions/showapplication.php:87 +#, fuzzy +msgid "No such application." +msgstr "Ekkert svoleiðis babl." + +#: actions/editapplication.php:161 +#, fuzzy +msgid "Use this form to edit your application." +msgstr "Notaðu þetta eyðublað til að breyta hópnum." + +#: actions/editapplication.php:177 actions/newapplication.php:159 +#, fuzzy +msgid "Name is required." +msgstr "Sama og lykilorðið hér fyrir ofan. Nauðsynlegt." + +#: actions/editapplication.php:180 actions/newapplication.php:165 +#, fuzzy +msgid "Name is too long (max 255 chars)." +msgstr "Fullt nafn er of langt (í mesta lagi 255 stafir)." + +#: actions/editapplication.php:183 actions/newapplication.php:162 +#, fuzzy +msgid "Name already in use. Try another one." +msgstr "Stuttnefni nú þegar í notkun. Prófaðu eitthvað annað." + +#: actions/editapplication.php:186 actions/newapplication.php:168 +#, fuzzy +msgid "Description is required." +msgstr "Lýsing" + +#: actions/editapplication.php:194 +msgid "Source URL is too long." +msgstr "" + +#: actions/editapplication.php:200 actions/newapplication.php:185 +#, fuzzy +msgid "Source URL is not valid." +msgstr "Heimasíða er ekki gild vefslóð." + +#: actions/editapplication.php:203 actions/newapplication.php:188 +msgid "Organization is required." +msgstr "" + +#: actions/editapplication.php:206 actions/newapplication.php:191 +#, fuzzy +msgid "Organization is too long (max 255 chars)." +msgstr "Staðsetning er of löng (í mesta lagi 255 stafir)." + +#: actions/editapplication.php:209 actions/newapplication.php:194 +msgid "Organization homepage is required." +msgstr "" + +#: actions/editapplication.php:218 actions/newapplication.php:206 +msgid "Callback is too long." +msgstr "" + +#: actions/editapplication.php:225 actions/newapplication.php:215 +msgid "Callback URL is not valid." +msgstr "" + +#: actions/editapplication.php:258 +#, fuzzy +msgid "Could not update application." +msgstr "Gat ekki uppfært hóp." + #: actions/editgroup.php:56 #, php-format msgid "Edit %s group" @@ -1007,7 +1266,7 @@ msgstr "Lýsing er of löng (í mesta lagi 140 tákn)." msgid "Could not update group." msgstr "Gat ekki uppfært hóp." -#: actions/editgroup.php:259 classes/User_group.php:390 +#: actions/editgroup.php:259 classes/User_group.php:433 msgid "Could not create aliases." msgstr "" @@ -1049,7 +1308,8 @@ msgstr "" "ruslpóstinn þinn!). Þar ættu að vera skilaboð með ítarlegri leiðbeiningum." #: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 +#: actions/smssettings.php:126 lib/applicationeditform.php:331 +#: lib/applicationeditform.php:332 msgid "Cancel" msgstr "Hætta við" @@ -1130,7 +1390,7 @@ msgid "Cannot normalize that email address" msgstr "Get ekki staðlað þetta tölvupóstfang" #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:157 +#: actions/siteadminpanel.php:143 msgid "Not a valid email address." msgstr "Ekki tækt tölvupóstfang." @@ -1142,7 +1402,7 @@ msgstr "Þetta er nú þegar tölvupóstfangið þitt." msgid "That email address already belongs to another user." msgstr "Þetta tölvupóstfang tilheyrir öðrum notanda." -#: actions/emailsettings.php:353 actions/imsettings.php:317 +#: actions/emailsettings.php:353 actions/imsettings.php:319 #: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." msgstr "Gat ekki sett inn staðfestingarlykil." @@ -1204,7 +1464,7 @@ msgstr "Þetta babl er nú þegar í uppáhaldi!" msgid "Disfavor favorite" msgstr "Ekki lengur í uppáhaldi" -#: actions/favorited.php:65 lib/popularnoticesection.php:88 +#: actions/favorited.php:65 lib/popularnoticesection.php:91 #: lib/publicgroupnav.php:93 msgid "Popular notices" msgstr "Vinsælt babl" @@ -1355,7 +1615,7 @@ msgstr "" msgid "User is not a member of group." msgstr "" -#: actions/groupblock.php:136 actions/groupmembers.php:314 +#: actions/groupblock.php:136 actions/groupmembers.php:316 msgid "Block user from group" msgstr "" @@ -1448,23 +1708,23 @@ msgstr "Hópmeðlimir %s, síða %d" msgid "A list of the users in this group." msgstr "Listi yfir notendur í þessum hóp." -#: actions/groupmembers.php:175 lib/action.php:442 lib/groupnav.php:107 +#: actions/groupmembers.php:175 lib/action.php:448 lib/groupnav.php:107 msgid "Admin" msgstr "Stjórnandi" -#: actions/groupmembers.php:346 lib/blockform.php:69 +#: actions/groupmembers.php:348 lib/blockform.php:69 msgid "Block" msgstr "Loka" -#: actions/groupmembers.php:441 +#: actions/groupmembers.php:443 msgid "Make user an admin of the group" msgstr "" -#: actions/groupmembers.php:473 +#: actions/groupmembers.php:475 msgid "Make Admin" msgstr "" -#: actions/groupmembers.php:473 +#: actions/groupmembers.php:475 msgid "Make this user an admin" msgstr "" @@ -1638,6 +1898,11 @@ msgstr "" msgid "That is not your Jabber ID." msgstr "Þetta er ekki Jabber-kennið þitt." +#: actions/inbox.php:59 +#, fuzzy, php-format +msgid "Inbox for %1$s - page %2$d" +msgstr "Innhólf %s" + #: actions/inbox.php:62 #, php-format msgid "Inbox for %s" @@ -1720,7 +1985,7 @@ msgstr "Persónuleg skilaboð" msgid "Optionally add a personal message to the invitation." msgstr "Bættu persónulegum skilaboðum við boðskortið ef þú vilt." -#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:237 +#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:236 msgid "Send" msgstr "Senda" @@ -1821,7 +2086,7 @@ msgstr "Rangt notendanafn eða lykilorð." msgid "Error setting user. You are probably not authorized." msgstr "Engin heimild." -#: actions/login.php:188 actions/login.php:241 lib/action.php:460 +#: actions/login.php:188 actions/login.php:241 lib/action.php:466 #: lib/logingroupnav.php:79 msgid "Login" msgstr "Innskráning" @@ -1830,17 +2095,6 @@ msgstr "Innskráning" msgid "Login to site" msgstr "Skrá þig inn á síðuna" -#: actions/login.php:230 actions/profilesettings.php:106 -#: actions/register.php:424 actions/showgroup.php:236 actions/tagother.php:94 -#: lib/groupeditform.php:152 lib/userprofile.php:131 -msgid "Nickname" -msgstr "Stuttnefni" - -#: actions/login.php:233 actions/register.php:429 -#: lib/accountsettingsaction.php:116 -msgid "Password" -msgstr "Lykilorð" - #: actions/login.php:236 actions/register.php:478 msgid "Remember me" msgstr "Muna eftir mér" @@ -1873,21 +2127,21 @@ msgstr "" "notendanafn? [Nýskráðu þig](%%action.register%%) eða prófaðu [OpenID](%%" "action.openidlogin%%). " -#: actions/makeadmin.php:91 +#: actions/makeadmin.php:92 msgid "Only an admin can make another user an admin." msgstr "" -#: actions/makeadmin.php:95 +#: actions/makeadmin.php:96 #, php-format msgid "%1$s is already an admin for group \"%2$s\"." msgstr "" -#: actions/makeadmin.php:132 +#: actions/makeadmin.php:133 #, fuzzy, php-format msgid "Can't get membership record for %1$s in group %2$s." msgstr "Gat ekki fjarlægt notandann %s úr hópnum %s" -#: actions/makeadmin.php:145 +#: actions/makeadmin.php:146 #, fuzzy, php-format msgid "Can't make %1$s an admin for group %2$s." msgstr "Gat ekki fjarlægt notandann %s úr hópnum %s" @@ -1896,6 +2150,30 @@ msgstr "Gat ekki fjarlægt notandann %s úr hópnum %s" msgid "No current status" msgstr "Engin núverandi staða" +#: actions/newapplication.php:52 +#, fuzzy +msgid "New Application" +msgstr "Ekkert svoleiðis babl." + +#: actions/newapplication.php:64 +#, fuzzy +msgid "You must be logged in to register an application." +msgstr "Þú verður að hafa skráð þig inn til að búa til hóp." + +#: actions/newapplication.php:143 +#, fuzzy +msgid "Use this form to register a new application." +msgstr "Notaðu þetta eyðublað til að búa til nýjan hóp." + +#: actions/newapplication.php:176 +msgid "Source URL is required." +msgstr "" + +#: actions/newapplication.php:258 actions/newapplication.php:267 +#, fuzzy +msgid "Could not create application." +msgstr "Gat ekki búið til uppáhald." + #: actions/newgroup.php:53 msgid "New group" msgstr "Nýr hópur" @@ -2006,6 +2284,51 @@ msgstr "Ýtt við notanda" msgid "Nudge sent!" msgstr "Ýtt við notanda!" +#: actions/oauthappssettings.php:59 +#, fuzzy +msgid "You must be logged in to list your applications." +msgstr "Þú verður að hafa skráð þig inn til að bæta þér í hóp." + +#: actions/oauthappssettings.php:74 +#, fuzzy +msgid "OAuth applications" +msgstr "Aðrir valkostir" + +#: actions/oauthappssettings.php:85 +msgid "Applications you have registered" +msgstr "" + +#: actions/oauthappssettings.php:135 +#, php-format +msgid "You have not registered any applications yet." +msgstr "" + +#: actions/oauthconnectionssettings.php:72 +msgid "Connected applications" +msgstr "" + +#: actions/oauthconnectionssettings.php:83 +msgid "You have allowed the following applications to access you account." +msgstr "" + +#: actions/oauthconnectionssettings.php:175 +#, fuzzy +msgid "You are not a user of that application." +msgstr "Þú ert ekki meðlimur í þessum hópi." + +#: actions/oauthconnectionssettings.php:186 +msgid "Unable to revoke access for app: " +msgstr "" + +#: actions/oauthconnectionssettings.php:198 +#, php-format +msgid "You have not authorized any applications to use your account." +msgstr "" + +#: actions/oauthconnectionssettings.php:211 +msgid "Developers can edit the registration settings for their applications " +msgstr "" + #: actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" msgstr "Babl hefur enga persónulega síðu" @@ -2023,8 +2346,8 @@ msgstr "" msgid "Only " msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1033 -#: lib/api.php:1061 lib/api.php:1171 +#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 +#: lib/api.php:1068 lib/api.php:1177 msgid "Not a supported data format." msgstr "Enginn stuðningur við gagnasnið." @@ -2037,7 +2360,8 @@ msgid "Notice Search" msgstr "Leit í babli" #: actions/othersettings.php:60 -msgid "Other Settings" +#, fuzzy +msgid "Other settings" msgstr "Aðrar stillingar" #: actions/othersettings.php:71 @@ -2094,6 +2418,11 @@ msgstr "Ótækt bablinnihald" msgid "Login token expired." msgstr "Skrá þig inn á síðuna" +#: actions/outbox.php:58 +#, fuzzy, php-format +msgid "Outbox for %1$s - page %2$d" +msgstr "Úthólf %s" + #: actions/outbox.php:61 #, php-format msgid "Outbox for %s" @@ -2165,7 +2494,7 @@ msgstr "Get ekki vistað nýja lykilorðið." msgid "Password saved." msgstr "Lykilorð vistað." -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:326 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:331 msgid "Paths" msgstr "" @@ -2173,141 +2502,158 @@ msgstr "" msgid "Path and server settings for this StatusNet site." msgstr "" -#: actions/pathsadminpanel.php:140 +#: actions/pathsadminpanel.php:157 #, fuzzy, php-format msgid "Theme directory not readable: %s" msgstr "Þessi síða er ekki aðgengileg í " -#: actions/pathsadminpanel.php:146 +#: actions/pathsadminpanel.php:163 #, php-format msgid "Avatar directory not writable: %s" msgstr "" -#: actions/pathsadminpanel.php:152 +#: actions/pathsadminpanel.php:169 #, php-format msgid "Background directory not writable: %s" msgstr "" -#: actions/pathsadminpanel.php:160 +#: actions/pathsadminpanel.php:177 #, php-format msgid "Locales directory not readable: %s" msgstr "" -#: actions/pathsadminpanel.php:166 +#: actions/pathsadminpanel.php:183 msgid "Invalid SSL server. The maximum length is 255 characters." msgstr "" -#: actions/pathsadminpanel.php:217 actions/siteadminpanel.php:58 +#: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58 #: lib/adminpanelaction.php:311 #, fuzzy msgid "Site" msgstr "Bjóða" -#: actions/pathsadminpanel.php:221 +#: actions/pathsadminpanel.php:238 +#, fuzzy +msgid "Server" +msgstr "Endurheimta" + +#: actions/pathsadminpanel.php:238 +msgid "Site's server hostname." +msgstr "" + +#: actions/pathsadminpanel.php:242 msgid "Path" msgstr "" -#: actions/pathsadminpanel.php:221 +#: actions/pathsadminpanel.php:242 #, fuzzy msgid "Site path" msgstr "Babl vefsíðunnar" -#: actions/pathsadminpanel.php:225 +#: actions/pathsadminpanel.php:246 msgid "Path to locales" msgstr "" -#: actions/pathsadminpanel.php:225 +#: actions/pathsadminpanel.php:246 msgid "Directory path to locales" msgstr "" -#: actions/pathsadminpanel.php:232 -msgid "Theme" -msgstr "" - -#: actions/pathsadminpanel.php:237 -msgid "Theme server" -msgstr "" - -#: actions/pathsadminpanel.php:241 -msgid "Theme path" -msgstr "" - -#: actions/pathsadminpanel.php:245 -msgid "Theme directory" +#: actions/pathsadminpanel.php:250 +msgid "Fancy URLs" msgstr "" #: actions/pathsadminpanel.php:252 +msgid "Use fancy (more readable and memorable) URLs?" +msgstr "" + +#: actions/pathsadminpanel.php:259 +msgid "Theme" +msgstr "" + +#: actions/pathsadminpanel.php:264 +msgid "Theme server" +msgstr "" + +#: actions/pathsadminpanel.php:268 +msgid "Theme path" +msgstr "" + +#: actions/pathsadminpanel.php:272 +msgid "Theme directory" +msgstr "" + +#: actions/pathsadminpanel.php:279 #, fuzzy msgid "Avatars" msgstr "Mynd" -#: actions/pathsadminpanel.php:257 +#: actions/pathsadminpanel.php:284 #, fuzzy msgid "Avatar server" msgstr "Stillingar fyrir mynd" -#: actions/pathsadminpanel.php:261 +#: actions/pathsadminpanel.php:288 #, fuzzy msgid "Avatar path" msgstr "Mynd hefur verið uppfærð." -#: actions/pathsadminpanel.php:265 +#: actions/pathsadminpanel.php:292 msgid "Avatar directory" msgstr "" -#: actions/pathsadminpanel.php:274 +#: actions/pathsadminpanel.php:301 msgid "Backgrounds" msgstr "" -#: actions/pathsadminpanel.php:278 +#: actions/pathsadminpanel.php:305 msgid "Background server" msgstr "" -#: actions/pathsadminpanel.php:282 +#: actions/pathsadminpanel.php:309 msgid "Background path" msgstr "" -#: actions/pathsadminpanel.php:286 +#: actions/pathsadminpanel.php:313 msgid "Background directory" msgstr "" -#: actions/pathsadminpanel.php:293 +#: actions/pathsadminpanel.php:320 #, fuzzy msgid "SSL" msgstr "SMS" -#: actions/pathsadminpanel.php:296 actions/siteadminpanel.php:346 +#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 #, fuzzy msgid "Never" msgstr "Endurheimta" -#: actions/pathsadminpanel.php:297 +#: actions/pathsadminpanel.php:324 #, fuzzy msgid "Sometimes" msgstr "Babl" -#: actions/pathsadminpanel.php:298 +#: actions/pathsadminpanel.php:325 msgid "Always" msgstr "" -#: actions/pathsadminpanel.php:302 +#: actions/pathsadminpanel.php:329 msgid "Use SSL" msgstr "" -#: actions/pathsadminpanel.php:303 +#: actions/pathsadminpanel.php:330 msgid "When to use SSL" msgstr "" -#: actions/pathsadminpanel.php:308 +#: actions/pathsadminpanel.php:335 #, fuzzy msgid "SSL server" msgstr "Endurheimta" -#: actions/pathsadminpanel.php:309 +#: actions/pathsadminpanel.php:336 msgid "Server to direct SSL requests to" msgstr "" -#: actions/pathsadminpanel.php:325 +#: actions/pathsadminpanel.php:352 #, fuzzy msgid "Save paths" msgstr "Babl vefsíðunnar" @@ -2370,7 +2716,7 @@ msgid "Full name" msgstr "Fullt nafn" #: actions/profilesettings.php:115 actions/register.php:453 -#: lib/groupeditform.php:161 +#: lib/applicationeditform.php:228 lib/groupeditform.php:161 msgid "Homepage" msgstr "Heimasíða" @@ -2396,7 +2742,7 @@ msgstr "Lýsing" #: actions/profilesettings.php:132 actions/register.php:471 #: actions/showgroup.php:256 actions/tagother.php:112 -#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:164 msgid "Location" msgstr "Staðsetning" @@ -2422,7 +2768,7 @@ msgstr "" "Merki fyrir þig (bókstafir, tölustafir, -, ., og _), aðskilin með kommu eða " "bili" -#: actions/profilesettings.php:151 actions/siteadminpanel.php:294 +#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 msgid "Language" msgstr "Tungumál" @@ -2450,7 +2796,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "Lýsingin er of löng (í mesta lagi 140 tákn)." -#: actions/profilesettings.php:235 actions/siteadminpanel.php:164 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 msgid "Timezone not selected." msgstr "Tímabelti ekki valið." @@ -2463,24 +2809,24 @@ msgstr "Tungumál er of langt (í mesta lagi 50 stafir)." msgid "Invalid tag: \"%s\"" msgstr "Ógilt merki: \"%s\"" -#: actions/profilesettings.php:302 +#: actions/profilesettings.php:306 msgid "Couldn't update user for autosubscribe." msgstr "Gat ekki uppfært notanda í sjálfvirka áskrift." -#: actions/profilesettings.php:359 +#: actions/profilesettings.php:363 #, fuzzy msgid "Couldn't save location prefs." msgstr "Gat ekki vistað merki." -#: actions/profilesettings.php:371 +#: actions/profilesettings.php:375 msgid "Couldn't save profile." msgstr "Gat ekki vistað persónulega síðu." -#: actions/profilesettings.php:379 +#: actions/profilesettings.php:383 msgid "Couldn't save tags." msgstr "Gat ekki vistað merki." -#: actions/profilesettings.php:387 lib/adminpanelaction.php:137 +#: actions/profilesettings.php:391 lib/adminpanelaction.php:137 msgid "Settings saved." msgstr "Stillingar vistaðar." @@ -2502,36 +2848,36 @@ msgstr "Almenningsrás, síða %d" msgid "Public timeline" msgstr "Almenningsrás" -#: actions/public.php:151 +#: actions/public.php:159 msgid "Public Stream Feed (RSS 1.0)" msgstr "" -#: actions/public.php:155 +#: actions/public.php:163 msgid "Public Stream Feed (RSS 2.0)" msgstr "" -#: actions/public.php:159 +#: actions/public.php:167 msgid "Public Stream Feed (Atom)" msgstr "" -#: actions/public.php:179 +#: actions/public.php:187 #, php-format msgid "" "This is the public timeline for %%site.name%% but no one has posted anything " "yet." msgstr "" -#: actions/public.php:182 +#: actions/public.php:190 msgid "Be the first to post!" msgstr "" -#: actions/public.php:186 +#: actions/public.php:194 #, php-format msgid "" "Why not [register an account](%%action.register%%) and be the first to post!" msgstr "" -#: actions/public.php:233 +#: actions/public.php:241 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2540,7 +2886,7 @@ msgid "" "friends, family, and colleagues! ([Read more](%%doc.help%%))" msgstr "" -#: actions/public.php:238 +#: actions/public.php:246 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2573,7 +2919,7 @@ msgid "" "one!" msgstr "" -#: actions/publictagcloud.php:131 +#: actions/publictagcloud.php:134 msgid "Tag cloud" msgstr "Merkjaský" @@ -2713,7 +3059,7 @@ msgstr "" msgid "Registration successful" msgstr "Nýskráning tókst" -#: actions/register.php:114 actions/register.php:503 lib/action.php:457 +#: actions/register.php:114 actions/register.php:503 lib/action.php:463 #: lib/logingroupnav.php:85 msgid "Register" msgstr "Nýskrá" @@ -2754,7 +3100,7 @@ msgid "Same as password above. Required." msgstr "Sama og lykilorðið hér fyrir ofan. Nauðsynlegt." #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:270 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 msgid "Email" msgstr "Tölvupóstur" @@ -2859,7 +3205,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "Veffang persónulegrar síðu á samvirkandi örbloggsþjónustu" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:365 +#: lib/userprofile.php:368 msgid "Subscribe" msgstr "Gerast áskrifandi" @@ -2904,7 +3250,7 @@ msgstr "Þú getur ekki nýskráð þig nema þú samþykkir leyfið." msgid "You already repeated that notice." msgstr "Þú hefur nú þegar lokað á þennan notanda." -#: actions/repeat.php:114 lib/noticelist.php:629 +#: actions/repeat.php:114 lib/noticelist.php:656 #, fuzzy msgid "Repeated" msgstr "Í sviðsljósinu" @@ -2919,6 +3265,11 @@ msgstr "" msgid "Replies to %s" msgstr "Svör við %s" +#: actions/replies.php:127 +#, fuzzy, php-format +msgid "Replies to %1$s, page %2$d" +msgstr "Skilaboð til %1$s á %2$s" + #: actions/replies.php:144 #, php-format msgid "Replies feed for %s (RSS 1.0)" @@ -2960,6 +3311,11 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "Skilaboð til %1$s á %2$s" +#: actions/rsd.php:146 actions/version.php:157 +#, fuzzy +msgid "StatusNet" +msgstr "Tölfræði" + #: actions/sandbox.php:65 actions/unsandbox.php:65 #, fuzzy msgid "You cannot sandbox users on this site." @@ -2969,6 +3325,125 @@ msgstr "Þú getur ekki sent þessum notanda skilaboð." msgid "User is already sandboxed." msgstr "" +#: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:336 +msgid "Sessions" +msgstr "" + +#: actions/sessionsadminpanel.php:65 +msgid "Session settings for this StatusNet site." +msgstr "" + +#: actions/sessionsadminpanel.php:175 +msgid "Handle sessions" +msgstr "" + +#: actions/sessionsadminpanel.php:177 +msgid "Whether to handle sessions ourselves." +msgstr "" + +#: actions/sessionsadminpanel.php:181 +msgid "Session debugging" +msgstr "" + +#: actions/sessionsadminpanel.php:183 +msgid "Turn on debugging output for sessions." +msgstr "" + +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/useradminpanel.php:293 +#, fuzzy +msgid "Save site settings" +msgstr "Stillingar fyrir mynd" + +#: actions/showapplication.php:82 +#, fuzzy +msgid "You must be logged in to view an application." +msgstr "Þú verður aða hafa skráð þig inn til að ganga úr hóp." + +#: actions/showapplication.php:157 +#, fuzzy +msgid "Application profile" +msgstr "Babl hefur enga persónulega síðu" + +#: actions/showapplication.php:159 lib/applicationeditform.php:180 +msgid "Icon" +msgstr "" + +#: actions/showapplication.php:169 actions/version.php:195 +#: lib/applicationeditform.php:195 +#, fuzzy +msgid "Name" +msgstr "Stuttnefni" + +#: actions/showapplication.php:178 lib/applicationeditform.php:222 +#, fuzzy +msgid "Organization" +msgstr "Uppröðun" + +#: actions/showapplication.php:187 actions/version.php:198 +#: lib/applicationeditform.php:209 lib/groupeditform.php:172 +msgid "Description" +msgstr "Lýsing" + +#: actions/showapplication.php:192 actions/showgroup.php:429 +#: lib/profileaction.php:174 +msgid "Statistics" +msgstr "Tölfræði" + +#: actions/showapplication.php:203 +#, php-format +msgid "Created by %1$s - %2$s access by default - %3$d users" +msgstr "" + +#: actions/showapplication.php:213 +msgid "Application actions" +msgstr "" + +#: actions/showapplication.php:236 +msgid "Reset key & secret" +msgstr "" + +#: actions/showapplication.php:261 +msgid "Application info" +msgstr "" + +#: actions/showapplication.php:263 +msgid "Consumer key" +msgstr "" + +#: actions/showapplication.php:268 +msgid "Consumer secret" +msgstr "" + +#: actions/showapplication.php:273 +msgid "Request token URL" +msgstr "" + +#: actions/showapplication.php:278 +msgid "Access token URL" +msgstr "" + +#: actions/showapplication.php:283 +msgid "Authorize URL" +msgstr "" + +#: actions/showapplication.php:288 +msgid "" +"Note: We support HMAC-SHA1 signatures. We do not support the plaintext " +"signature method." +msgstr "" + +#: actions/showapplication.php:309 +#, fuzzy +msgid "Are you sure you want to reset your consumer key and secret?" +msgstr "Ertu viss um að þú viljir eyða þessu babli?" + +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%1$s's favorite notices, page %2$d" +msgstr "Uppáhaldsbabl %s" + #: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "Gat ekki sótt uppáhaldsbabl." @@ -3018,17 +3493,22 @@ msgstr "" msgid "%s group" msgstr "%s hópurinn" +#: actions/showgroup.php:84 +#, fuzzy, php-format +msgid "%1$s group, page %2$d" +msgstr "Hópmeðlimir %s, síða %d" + #: actions/showgroup.php:218 msgid "Group profile" msgstr "Hópssíðan" #: actions/showgroup.php:263 actions/tagother.php:118 -#: actions/userauthorization.php:167 lib/userprofile.php:177 +#: actions/userauthorization.php:175 lib/userprofile.php:177 msgid "URL" msgstr "Vefslóð" #: actions/showgroup.php:274 actions/tagother.php:128 -#: actions/userauthorization.php:179 lib/userprofile.php:194 +#: actions/userauthorization.php:187 lib/userprofile.php:194 msgid "Note" msgstr "Athugasemd" @@ -3074,10 +3554,6 @@ msgstr "(Ekkert)" msgid "All members" msgstr "Allir meðlimir" -#: actions/showgroup.php:429 lib/profileaction.php:174 -msgid "Statistics" -msgstr "Tölfræði" - #: actions/showgroup.php:432 msgid "Created" msgstr "" @@ -3133,6 +3609,11 @@ msgstr "Babl sent inn" msgid " tagged %s" msgstr "" +#: actions/showstream.php:79 +#, fuzzy, php-format +msgid "%1$s, page %2$d" +msgstr "%s og vinirnir, síða %d" + #: actions/showstream.php:122 #, fuzzy, php-format msgid "Notice feed for %1$s tagged %2$s (RSS 1.0)" @@ -3158,25 +3639,25 @@ msgstr "" msgid "FOAF for %s" msgstr "" -#: actions/showstream.php:191 +#: actions/showstream.php:200 #, php-format msgid "This is the timeline for %1$s but %2$s hasn't posted anything yet." msgstr "" -#: actions/showstream.php:196 +#: actions/showstream.php:205 msgid "" "Seen anything interesting recently? You haven't posted any notices yet, now " "would be a good time to start :)" msgstr "" -#: actions/showstream.php:198 +#: actions/showstream.php:207 #, php-format msgid "" "You can try to nudge %1$s or [post something to his or her attention](%%%%" "action.newnotice%%%%?status_textarea=%2$s)." msgstr "" -#: actions/showstream.php:234 +#: actions/showstream.php:243 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3185,7 +3666,7 @@ msgid "" "follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showstream.php:239 +#: actions/showstream.php:248 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3193,7 +3674,7 @@ msgid "" "[StatusNet](http://status.net/) tool. " msgstr "" -#: actions/showstream.php:313 +#: actions/showstream.php:305 #, fuzzy, php-format msgid "Repeat of %s" msgstr "Svör við %s" @@ -3211,206 +3692,148 @@ msgstr "" msgid "Basic settings for this StatusNet site." msgstr "" -#: actions/siteadminpanel.php:146 +#: actions/siteadminpanel.php:132 msgid "Site name must have non-zero length." msgstr "" -#: actions/siteadminpanel.php:154 +#: actions/siteadminpanel.php:140 #, fuzzy msgid "You must have a valid contact email address." msgstr "Ekki tækt tölvupóstfang" -#: actions/siteadminpanel.php:172 +#: actions/siteadminpanel.php:158 #, php-format msgid "Unknown language \"%s\"." msgstr "" -#: actions/siteadminpanel.php:179 +#: actions/siteadminpanel.php:165 msgid "Invalid snapshot report URL." msgstr "" -#: actions/siteadminpanel.php:185 +#: actions/siteadminpanel.php:171 msgid "Invalid snapshot run value." msgstr "" -#: actions/siteadminpanel.php:191 +#: actions/siteadminpanel.php:177 msgid "Snapshot frequency must be a number." msgstr "" -#: actions/siteadminpanel.php:197 +#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "" -#: actions/siteadminpanel.php:203 +#: actions/siteadminpanel.php:189 msgid "Dupe limit must 1 or more seconds." msgstr "" -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:239 msgid "General" msgstr "" -#: actions/siteadminpanel.php:256 +#: actions/siteadminpanel.php:242 #, fuzzy msgid "Site name" msgstr "Babl vefsíðunnar" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:243 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "" -#: actions/siteadminpanel.php:261 +#: actions/siteadminpanel.php:247 msgid "Brought by" msgstr "" -#: actions/siteadminpanel.php:262 +#: actions/siteadminpanel.php:248 msgid "Text used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:266 +#: actions/siteadminpanel.php:252 msgid "Brought by URL" msgstr "" -#: actions/siteadminpanel.php:267 +#: actions/siteadminpanel.php:253 msgid "URL used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:271 +#: actions/siteadminpanel.php:257 #, fuzzy msgid "Contact email address for your site" msgstr "Nýtt tölvupóstfang til að senda á %s" -#: actions/siteadminpanel.php:277 +#: actions/siteadminpanel.php:263 #, fuzzy msgid "Local" msgstr "Staðbundin sýn" -#: actions/siteadminpanel.php:288 +#: actions/siteadminpanel.php:274 msgid "Default timezone" msgstr "" -#: actions/siteadminpanel.php:289 +#: actions/siteadminpanel.php:275 msgid "Default timezone for the site; usually UTC." msgstr "" -#: actions/siteadminpanel.php:295 +#: actions/siteadminpanel.php:281 #, fuzzy msgid "Default site language" msgstr "Tungumál (ákjósanlegt)" -#: actions/siteadminpanel.php:303 -#, fuzzy -msgid "URLs" -msgstr "Vefslóð" - -#: actions/siteadminpanel.php:306 -#, fuzzy -msgid "Server" -msgstr "Endurheimta" - -#: actions/siteadminpanel.php:306 -msgid "Site's server hostname." -msgstr "" - -#: actions/siteadminpanel.php:310 -msgid "Fancy URLs" -msgstr "" - -#: actions/siteadminpanel.php:312 -msgid "Use fancy (more readable and memorable) URLs?" -msgstr "" - -#: actions/siteadminpanel.php:318 -#, fuzzy -msgid "Access" -msgstr "Samþykkja" - -#: actions/siteadminpanel.php:321 -#, fuzzy -msgid "Private" -msgstr "Friðhelgi" - -#: actions/siteadminpanel.php:323 -msgid "Prohibit anonymous users (not logged in) from viewing site?" -msgstr "" - -#: actions/siteadminpanel.php:327 -#, fuzzy -msgid "Invite only" -msgstr "Bjóða" - -#: actions/siteadminpanel.php:329 -msgid "Make registration invitation only." -msgstr "" - -#: actions/siteadminpanel.php:333 -msgid "Closed" -msgstr "" - -#: actions/siteadminpanel.php:335 -msgid "Disable new registrations." -msgstr "" - -#: actions/siteadminpanel.php:341 +#: actions/siteadminpanel.php:289 msgid "Snapshots" msgstr "" -#: actions/siteadminpanel.php:344 +#: actions/siteadminpanel.php:292 msgid "Randomly during Web hit" msgstr "" -#: actions/siteadminpanel.php:345 +#: actions/siteadminpanel.php:293 msgid "In a scheduled job" msgstr "" -#: actions/siteadminpanel.php:347 +#: actions/siteadminpanel.php:295 msgid "Data snapshots" msgstr "" -#: actions/siteadminpanel.php:348 +#: actions/siteadminpanel.php:296 msgid "When to send statistical data to status.net servers" msgstr "" -#: actions/siteadminpanel.php:353 +#: actions/siteadminpanel.php:301 msgid "Frequency" msgstr "" -#: actions/siteadminpanel.php:354 +#: actions/siteadminpanel.php:302 msgid "Snapshots will be sent once every N web hits" msgstr "" -#: actions/siteadminpanel.php:359 +#: actions/siteadminpanel.php:307 msgid "Report URL" msgstr "" -#: actions/siteadminpanel.php:360 +#: actions/siteadminpanel.php:308 msgid "Snapshots will be sent to this URL" msgstr "" -#: actions/siteadminpanel.php:367 +#: actions/siteadminpanel.php:315 msgid "Limits" msgstr "" -#: actions/siteadminpanel.php:370 +#: actions/siteadminpanel.php:318 msgid "Text limit" msgstr "" -#: actions/siteadminpanel.php:370 +#: actions/siteadminpanel.php:318 msgid "Maximum number of characters for notices." msgstr "" -#: actions/siteadminpanel.php:374 +#: actions/siteadminpanel.php:322 msgid "Dupe limit" msgstr "" -#: actions/siteadminpanel.php:374 +#: actions/siteadminpanel.php:322 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" -#: actions/siteadminpanel.php:388 actions/useradminpanel.php:313 -#, fuzzy -msgid "Save site settings" -msgstr "Stillingar fyrir mynd" - #: actions/smssettings.php:58 #, fuzzy msgid "SMS settings" @@ -3515,15 +3938,26 @@ msgstr "Enginn lykill sleginn inn" msgid "You are not subscribed to that profile." msgstr "Þú ert ekki áskrifandi." -#: actions/subedit.php:83 +#: actions/subedit.php:83 classes/Subscription.php:89 +#: classes/Subscription.php:116 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/subscribe.php:77 +msgid "This action only accepts POST requests." +msgstr "" -#: actions/subscribe.php:69 +#: actions/subscribe.php:107 +#, fuzzy +msgid "No such profile." +msgstr "Ekkert svoleiðis babl." + +#: actions/subscribe.php:117 +#, fuzzy +msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." +msgstr "Þú ert ekki áskrifandi." + +#: actions/subscribe.php:145 msgid "Subscribed" msgstr "Þú ert nú í áskrift" @@ -3583,7 +4017,7 @@ msgstr "Þetta er fólkið sem þú hlustar á bablið í." msgid "These are the people whose notices %s listens to." msgstr "Þetta er fólkið sem %s hlustar á bablið í." -#: actions/subscriptions.php:121 +#: actions/subscriptions.php:126 #, php-format msgid "" "You're not listening to anyone's notices right now, try subscribing to " @@ -3593,19 +4027,24 @@ msgid "" "automatically subscribe to people you already follow there." msgstr "" -#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#: actions/subscriptions.php:128 actions/subscriptions.php:132 #, php-format msgid "%s is not listening to anyone." msgstr "" -#: actions/subscriptions.php:194 +#: actions/subscriptions.php:199 msgid "Jabber" msgstr "Jabber snarskilaboðaþjónusta" -#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:204 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "SMS" +#: actions/tag.php:68 +#, fuzzy, php-format +msgid "Notices tagged with %1$s, page %2$d" +msgstr "Notendur sjálfmerktir með %s - síða %d" + #: actions/tag.php:86 #, php-format msgid "Notice feed for tag %s (RSS 1.0)" @@ -3635,7 +4074,8 @@ msgstr "Merki %s" msgid "User profile" msgstr "Persónuleg síða notanda" -#: actions/tagother.php:81 lib/userprofile.php:102 +#: actions/tagother.php:81 actions/userauthorization.php:132 +#: lib/userprofile.php:102 msgid "Photo" msgstr "Ljósmynd" @@ -3699,7 +4139,7 @@ msgstr "Ekkert einkenni persónulegrar síðu í beiðni." msgid "Unsubscribed" msgstr "Ekki lengur áskrifandi" -#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#: actions/updateprofile.php:62 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -3714,91 +4154,71 @@ msgstr "Notandi" msgid "User settings for this StatusNet site." msgstr "" -#: actions/useradminpanel.php:149 +#: actions/useradminpanel.php:148 msgid "Invalid bio limit. Must be numeric." msgstr "" -#: actions/useradminpanel.php:155 +#: actions/useradminpanel.php:154 msgid "Invalid welcome text. Max length is 255 characters." msgstr "" -#: actions/useradminpanel.php:165 +#: actions/useradminpanel.php:164 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 +#: actions/useradminpanel.php:217 lib/accountsettingsaction.php:108 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Persónuleg síða" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:221 msgid "Bio Limit" msgstr "" -#: actions/useradminpanel.php:223 +#: actions/useradminpanel.php:222 msgid "Maximum length of a profile bio in characters." msgstr "" -#: actions/useradminpanel.php:231 +#: actions/useradminpanel.php:230 #, fuzzy msgid "New users" msgstr "Bjóða nýjum notendum að vera með" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:234 msgid "New user welcome" msgstr "" -#: actions/useradminpanel.php:236 +#: actions/useradminpanel.php:235 msgid "Welcome text for new users (Max 255 chars)." msgstr "" -#: actions/useradminpanel.php:241 +#: actions/useradminpanel.php:240 #, fuzzy msgid "Default subscription" msgstr "Allar áskriftir" -#: actions/useradminpanel.php:242 +#: actions/useradminpanel.php:241 #, fuzzy msgid "Automatically subscribe new users to this user." msgstr "" "Gerast sjálfkrafa áskrifandi að hverjum þeim sem gerist áskrifandi að þér " "(best fyrir ómannlega notendur)" -#: actions/useradminpanel.php:251 +#: actions/useradminpanel.php:250 #, fuzzy msgid "Invitations" msgstr "Boðskort hefur verið sent út" -#: actions/useradminpanel.php:256 +#: actions/useradminpanel.php:255 #, fuzzy msgid "Invitations enabled" msgstr "Boðskort hefur verið sent út" -#: actions/useradminpanel.php:258 +#: actions/useradminpanel.php:257 msgid "Whether to allow users to invite new users." msgstr "" -#: actions/useradminpanel.php:265 -msgid "Sessions" -msgstr "" - -#: actions/useradminpanel.php:270 -msgid "Handle sessions" -msgstr "" - -#: actions/useradminpanel.php:272 -msgid "Whether to handle sessions ourselves." -msgstr "" - -#: actions/useradminpanel.php:276 -msgid "Session debugging" -msgstr "" - -#: actions/useradminpanel.php:278 -msgid "Turn on debugging output for sessions." -msgstr "" - #: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Heimila áskriftir" @@ -3814,36 +4234,36 @@ msgstr "" "gerast áskrifandi að babli þessa notanda. Ef þú baðst ekki um að gerast " "áskrifandi að babli, smelltu þá á \"Hætta við\"." -#: actions/userauthorization.php:188 actions/version.php:165 +#: actions/userauthorization.php:196 actions/version.php:165 msgid "License" msgstr "" -#: actions/userauthorization.php:209 +#: actions/userauthorization.php:217 msgid "Accept" msgstr "Samþykkja" -#: actions/userauthorization.php:210 lib/subscribeform.php:115 +#: actions/userauthorization.php:218 lib/subscribeform.php:115 #: lib/subscribeform.php:139 msgid "Subscribe to this user" msgstr "Gerast áskrifandi að þessum notanda" -#: actions/userauthorization.php:211 +#: actions/userauthorization.php:219 msgid "Reject" msgstr "Hafna" -#: actions/userauthorization.php:212 +#: actions/userauthorization.php:220 msgid "Reject this subscription" msgstr "" -#: actions/userauthorization.php:225 +#: actions/userauthorization.php:232 msgid "No authorization request!" msgstr "Engin heimildarbeiðni!" -#: actions/userauthorization.php:247 +#: actions/userauthorization.php:254 msgid "Subscription authorized" msgstr "Áskrift heimiluð" -#: actions/userauthorization.php:249 +#: actions/userauthorization.php:256 #, fuzzy msgid "" "The subscription has been authorized, but no callback URL was passed. Check " @@ -3854,11 +4274,11 @@ msgstr "" "leiðbeiningar síðunnar um það hvernig á að heimila áskrift. Áskriftartókinn " "þinn er;" -#: actions/userauthorization.php:259 +#: actions/userauthorization.php:266 msgid "Subscription rejected" msgstr "Áskrift hafnað" -#: actions/userauthorization.php:261 +#: actions/userauthorization.php:268 #, fuzzy msgid "" "The subscription has been rejected, but no callback URL was passed. Check " @@ -3868,37 +4288,37 @@ 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 +#: actions/userauthorization.php:303 #, php-format msgid "Listener URI ‘%s’ not found here." msgstr "" -#: actions/userauthorization.php:301 +#: actions/userauthorization.php:308 #, php-format msgid "Listenee URI ‘%s’ is too long." msgstr "" -#: actions/userauthorization.php:307 +#: actions/userauthorization.php:314 #, php-format msgid "Listenee URI ‘%s’ is a local user." msgstr "" -#: actions/userauthorization.php:322 +#: actions/userauthorization.php:329 #, php-format msgid "Profile URL ‘%s’ is for a local user." msgstr "" -#: actions/userauthorization.php:338 +#: actions/userauthorization.php:345 #, php-format msgid "Avatar URL ‘%s’ is not valid." msgstr "" -#: actions/userauthorization.php:343 +#: actions/userauthorization.php:350 #, fuzzy, php-format msgid "Can’t read avatar URL ‘%s’." msgstr "Get ekki lesið slóðina fyrir myndina '%s'" -#: actions/userauthorization.php:348 +#: actions/userauthorization.php:355 #, fuzzy, php-format msgid "Wrong image type for avatar URL ‘%s’." msgstr "Röng gerð myndar fyrir '%s'" @@ -3917,6 +4337,11 @@ msgstr "" msgid "Enjoy your hotdog!" msgstr "" +#: actions/usergroups.php:64 +#, fuzzy, php-format +msgid "%1$s groups, page %2$d" +msgstr "Hópmeðlimir %s, síða %d" + #: actions/usergroups.php:130 msgid "Search for more groups" msgstr "" @@ -3943,11 +4368,6 @@ msgid "" "Inc. and contributors." msgstr "" -#: actions/version.php:157 -#, fuzzy -msgid "StatusNet" -msgstr "Tölfræði" - #: actions/version.php:161 msgid "Contributors" msgstr "" @@ -3979,12 +4399,7 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:195 -#, fuzzy -msgid "Name" -msgstr "Stuttnefni" - -#: actions/version.php:196 lib/action.php:741 +#: actions/version.php:196 lib/action.php:747 #, fuzzy msgid "Version" msgstr "Persónulegt" @@ -3993,10 +4408,6 @@ msgstr "Persónulegt" msgid "Author(s)" msgstr "" -#: actions/version.php:198 lib/groupeditform.php:172 -msgid "Description" -msgstr "Lýsing" - #: classes/File.php:144 #, php-format msgid "" @@ -4047,60 +4458,87 @@ msgstr "Gat ekki skeytt skilaboðum inn í." msgid "Could not update message with new URI." msgstr "Gat ekki uppfært skilaboð með nýju veffangi." -#: classes/Notice.php:171 +#: classes/Notice.php:157 #, php-format msgid "DB error inserting hashtag: %s" msgstr "Gagnagrunnsvilla við innsetningu myllumerkis: %s" -#: classes/Notice.php:225 +#: classes/Notice.php:222 msgid "Problem saving notice. Too long." msgstr "" -#: classes/Notice.php:229 +#: classes/Notice.php:226 msgid "Problem saving notice. Unknown user." msgstr "Gat ekki vistað babl. Óþekktur notandi." -#: classes/Notice.php:234 +#: classes/Notice.php:231 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." -#: classes/Notice.php:240 +#: classes/Notice.php:237 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." msgstr "" -#: classes/Notice.php:246 +#: classes/Notice.php:243 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:305 classes/Notice.php:330 +#: classes/Notice.php:309 classes/Notice.php:335 msgid "Problem saving notice." msgstr "Vandamál komu upp við að vista babl." -#: classes/Notice.php:1052 -#, php-format -msgid "DB error inserting reply: %s" -msgstr "Gagnagrunnsvilla við innsetningu svars: %s" +#: classes/Notice.php:882 +#, fuzzy +msgid "Problem saving group inbox." +msgstr "Vandamál komu upp við að vista babl." -#: classes/Notice.php:1423 +#: classes/Notice.php:1407 #, fuzzy, php-format msgid "RT @%1$s %2$s" msgstr "%1$s (%2$s)" -#: classes/User.php:382 +#: classes/Subscription.php:66 lib/oauthstore.php:465 +#, fuzzy +msgid "You have been banned from subscribing." +msgstr "Þessi notandi hefur bannað þér að gerast áskrifandi" + +#: classes/Subscription.php:70 +msgid "Already subscribed!" +msgstr "" + +#: classes/Subscription.php:74 +msgid "User has blocked you." +msgstr "Notandinn hefur lokað á þig." + +#: classes/Subscription.php:157 +#, fuzzy +msgid "Not subscribed!" +msgstr "Ekki í áskrift!" + +#: classes/Subscription.php:163 +#, fuzzy +msgid "Couldn't delete self-subscription." +msgstr "Gat ekki eytt áskrift." + +#: classes/Subscription.php:179 lib/subs.php:69 +msgid "Couldn't delete subscription." +msgstr "Gat ekki eytt áskrift." + +#: classes/User.php:372 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "" -#: classes/User_group.php:380 +#: classes/User_group.php:423 msgid "Could not create group." msgstr "Gat ekki búið til hóp." -#: classes/User_group.php:409 +#: classes/User_group.php:452 msgid "Could not set group membership." msgstr "Gat ekki skráð hópmeðlimi." @@ -4141,132 +4579,128 @@ msgstr "%1$s (%2$s)" msgid "Untitled page" msgstr "Ónafngreind síða" -#: lib/action.php:427 +#: lib/action.php:433 msgid "Primary site navigation" msgstr "Stikl aðalsíðu" -#: lib/action.php:433 +#: lib/action.php:439 msgid "Home" msgstr "Heim" -#: lib/action.php:433 +#: lib/action.php:439 msgid "Personal profile and friends timeline" msgstr "Persónuleg síða og vinarás" -#: lib/action.php:435 -msgid "Account" -msgstr "Aðgangur" - -#: lib/action.php:435 +#: lib/action.php:441 msgid "Change your email, avatar, password, profile" msgstr "" "Breyttu tölvupóstinum þínum, einkennismyndinni þinni, lykilorðinu þínu, " "persónulegu síðunni þinni" -#: lib/action.php:438 +#: lib/action.php:444 msgid "Connect" msgstr "Tengjast" -#: lib/action.php:438 +#: lib/action.php:444 #, fuzzy msgid "Connect to services" msgstr "Gat ekki framsent til vefþjóns: %s" -#: lib/action.php:442 +#: lib/action.php:448 #, fuzzy msgid "Change site configuration" msgstr "Stikl aðalsíðu" -#: lib/action.php:446 lib/subgroupnav.php:105 +#: lib/action.php:452 lib/subgroupnav.php:105 msgid "Invite" msgstr "Bjóða" -#: lib/action.php:447 lib/subgroupnav.php:106 +#: lib/action.php:453 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" -#: lib/action.php:452 +#: lib/action.php:458 msgid "Logout" msgstr "Útskráning" -#: lib/action.php:452 +#: lib/action.php:458 msgid "Logout from the site" msgstr "Skrá þig út af síðunni" -#: lib/action.php:457 +#: lib/action.php:463 msgid "Create an account" msgstr "Búa til aðgang" -#: lib/action.php:460 +#: lib/action.php:466 msgid "Login to the site" msgstr "Skrá þig inn á síðuna" -#: lib/action.php:463 lib/action.php:726 +#: lib/action.php:469 lib/action.php:732 msgid "Help" msgstr "Hjálp" -#: lib/action.php:463 +#: lib/action.php:469 msgid "Help me!" msgstr "Hjálp!" -#: lib/action.php:466 lib/searchaction.php:127 +#: lib/action.php:472 lib/searchaction.php:127 msgid "Search" msgstr "Leita" -#: lib/action.php:466 +#: lib/action.php:472 msgid "Search for people or text" msgstr "Leita að fólki eða texta" -#: lib/action.php:487 +#: lib/action.php:493 msgid "Site notice" msgstr "Babl vefsíðunnar" -#: lib/action.php:553 +#: lib/action.php:559 msgid "Local views" msgstr "Staðbundin sýn" -#: lib/action.php:619 +#: lib/action.php:625 msgid "Page notice" msgstr "Babl síðunnar" -#: lib/action.php:721 +#: lib/action.php:727 msgid "Secondary site navigation" msgstr "Stikl undirsíðu" -#: lib/action.php:728 +#: lib/action.php:734 msgid "About" msgstr "Um" -#: lib/action.php:730 +#: lib/action.php:736 msgid "FAQ" msgstr "Spurt og svarað" -#: lib/action.php:734 +#: lib/action.php:740 msgid "TOS" msgstr "" -#: lib/action.php:737 +#: lib/action.php:743 msgid "Privacy" msgstr "Friðhelgi" -#: lib/action.php:739 +#: lib/action.php:745 msgid "Source" msgstr "Frumþula" -#: lib/action.php:743 +#: lib/action.php:749 msgid "Contact" msgstr "Tengiliður" -#: lib/action.php:745 +#: lib/action.php:751 msgid "Badge" msgstr "" -#: lib/action.php:773 +#: lib/action.php:779 msgid "StatusNet software license" msgstr "Hugbúnaðarleyfi StatusNet" -#: lib/action.php:776 +#: lib/action.php:782 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4275,12 +4709,12 @@ msgstr "" "**%%site.name%%** er örbloggsþjónusta í boði [%%site.broughtby%%](%%site." "broughtbyurl%%). " -#: lib/action.php:778 +#: lib/action.php:784 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** er örbloggsþjónusta." -#: lib/action.php:780 +#: lib/action.php:786 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4291,34 +4725,56 @@ msgstr "" "sem er gefinn út undir [GNU Affero almenningsleyfinu](http://www.fsf.org/" "licensing/licenses/agpl-3.0.html)." -#: lib/action.php:794 +#: lib/action.php:801 #, fuzzy msgid "Site content license" msgstr "Hugbúnaðarleyfi StatusNet" -#: lib/action.php:803 +#: lib/action.php:806 +#, php-format +msgid "Content and data of %1$s are private and confidential." +msgstr "" + +#: lib/action.php:811 +#, php-format +msgid "Content and data copyright by %1$s. All rights reserved." +msgstr "" + +#: lib/action.php:814 +msgid "Content and data copyright by contributors. All rights reserved." +msgstr "" + +#: lib/action.php:827 msgid "All " msgstr "Allt " -#: lib/action.php:808 +#: lib/action.php:833 msgid "license." msgstr "leyfi." -#: lib/action.php:1102 +#: lib/action.php:1132 msgid "Pagination" msgstr "Uppröðun" -#: lib/action.php:1111 +#: lib/action.php:1141 msgid "After" msgstr "Eftir" -#: lib/action.php:1119 +#: lib/action.php:1149 msgid "Before" msgstr "Áður" -#: lib/action.php:1167 -msgid "There was a problem with your session token." -msgstr "Það komu upp vandamál varðandi setutókann þinn." +#: lib/activity.php:382 +msgid "Can't handle remote content yet." +msgstr "" + +#: lib/activity.php:410 +msgid "Can't handle embedded XML content yet." +msgstr "" + +#: lib/activity.php:414 +msgid "Can't handle embedded Base64 content yet." +msgstr "" #: lib/adminpanelaction.php:96 #, fuzzy @@ -4354,11 +4810,105 @@ msgstr "Staðfesting tölvupóstfangs" msgid "Design configuration" msgstr "SMS staðfesting" -#: lib/adminpanelaction.php:322 lib/adminpanelaction.php:327 +#: lib/adminpanelaction.php:322 +#, fuzzy +msgid "User configuration" +msgstr "SMS staðfesting" + +#: lib/adminpanelaction.php:327 +#, fuzzy +msgid "Access configuration" +msgstr "SMS staðfesting" + +#: lib/adminpanelaction.php:332 #, fuzzy msgid "Paths configuration" msgstr "SMS staðfesting" +#: lib/adminpanelaction.php:337 +#, fuzzy +msgid "Sessions configuration" +msgstr "SMS staðfesting" + +#: lib/apiauth.php:95 +msgid "API resource requires read-write access, but you only have read access." +msgstr "" + +#: lib/apiauth.php:273 +#, php-format +msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" +msgstr "" + +#: lib/applicationeditform.php:136 +msgid "Edit application" +msgstr "" + +#: lib/applicationeditform.php:184 +msgid "Icon for this application" +msgstr "" + +#: lib/applicationeditform.php:204 +#, fuzzy, php-format +msgid "Describe your application in %d characters" +msgstr "Lýstu hópnum eða umfjöllunarefninu með 140 táknum" + +#: lib/applicationeditform.php:207 +#, fuzzy +msgid "Describe your application" +msgstr "Lýstu hópnum eða umfjöllunarefninu með 140 táknum" + +#: lib/applicationeditform.php:216 +#, fuzzy +msgid "Source URL" +msgstr "Frumþula" + +#: lib/applicationeditform.php:218 +#, fuzzy +msgid "URL of the homepage of this application" +msgstr "Vefslóð vefsíðu hópsins eða umfjöllunarefnisins" + +#: lib/applicationeditform.php:224 +msgid "Organization responsible for this application" +msgstr "" + +#: lib/applicationeditform.php:230 +#, fuzzy +msgid "URL for the homepage of the organization" +msgstr "Vefslóð vefsíðu hópsins eða umfjöllunarefnisins" + +#: lib/applicationeditform.php:236 +msgid "URL to redirect to after authentication" +msgstr "" + +#: lib/applicationeditform.php:258 +msgid "Browser" +msgstr "" + +#: lib/applicationeditform.php:274 +msgid "Desktop" +msgstr "" + +#: lib/applicationeditform.php:275 +msgid "Type of application, browser or desktop" +msgstr "" + +#: lib/applicationeditform.php:297 +msgid "Read-only" +msgstr "" + +#: lib/applicationeditform.php:315 +msgid "Read-write" +msgstr "" + +#: lib/applicationeditform.php:316 +msgid "Default access for this application: read-only, or read-write" +msgstr "" + +#: lib/applicationlist.php:154 +#, fuzzy +msgid "Revoke" +msgstr "Fjarlægja" + #: lib/attachmentlist.php:87 msgid "Attachments" msgstr "" @@ -4379,12 +4929,12 @@ msgstr "" msgid "Tags for this attachment" msgstr "" -#: lib/authenticationplugin.php:182 lib/authenticationplugin.php:187 +#: lib/authenticationplugin.php:218 lib/authenticationplugin.php:223 #, fuzzy msgid "Password changing failed" msgstr "Lykilorðabreyting" -#: lib/authenticationplugin.php:197 +#: lib/authenticationplugin.php:233 #, fuzzy msgid "Password changing is not allowed" msgstr "Lykilorðabreyting" @@ -4538,83 +5088,92 @@ msgstr "Vandamál komu upp við að vista babl." msgid "Specify the name of the user to subscribe to" msgstr "Tilgreindu nafn notandans sem þú vilt gerast áskrifandi að" -#: lib/command.php:554 +#: lib/command.php:554 lib/command.php:589 +msgid "No such user" +msgstr "Enginn svoleiðis notandi." + +#: lib/command.php:561 #, php-format msgid "Subscribed to %s" msgstr "Nú ert þú áskrifandi að %s" -#: lib/command.php:575 +#: lib/command.php:582 lib/command.php:685 msgid "Specify the name of the user to unsubscribe from" msgstr "Tilgreindu nafn notandans sem þú vilt hætta sem áskrifandi að" -#: lib/command.php:582 +#: lib/command.php:595 #, php-format msgid "Unsubscribed from %s" msgstr "Nú ert þú ekki lengur áskrifandi að %s" -#: lib/command.php:600 lib/command.php:623 +#: lib/command.php:613 lib/command.php:636 msgid "Command not yet implemented." msgstr "Skipun hefur ekki verið fullbúin" -#: lib/command.php:603 +#: lib/command.php:616 msgid "Notification off." msgstr "Tilkynningar af." -#: lib/command.php:605 +#: lib/command.php:618 msgid "Can't turn off notification." msgstr "Get ekki slökkt á tilkynningum." -#: lib/command.php:626 +#: lib/command.php:639 msgid "Notification on." msgstr "Tilkynningar á." -#: lib/command.php:628 +#: lib/command.php:641 msgid "Can't turn on notification." msgstr "Get ekki kveikt á tilkynningum." -#: lib/command.php:641 +#: lib/command.php:654 msgid "Login command is disabled" msgstr "" -#: lib/command.php:652 +#: lib/command.php:665 #, php-format msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "" -#: lib/command.php:668 +#: lib/command.php:692 +#, fuzzy, php-format +msgid "Unsubscribed %s" +msgstr "Nú ert þú ekki lengur áskrifandi að %s" + +#: lib/command.php:709 #, fuzzy msgid "You are not subscribed to anyone." msgstr "Þú ert ekki áskrifandi." -#: lib/command.php:670 +#: lib/command.php:711 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "Þú ert nú þegar í áskrift að þessum notendum:" msgstr[1] "Þú ert nú þegar í áskrift að þessum notendum:" -#: lib/command.php:690 +#: lib/command.php:731 #, fuzzy msgid "No one is subscribed to you." msgstr "Gat ekki leyft öðrum að gerast áskrifandi að þér." -#: lib/command.php:692 +#: lib/command.php:733 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "Gat ekki leyft öðrum að gerast áskrifandi að þér." msgstr[1] "Gat ekki leyft öðrum að gerast áskrifandi að þér." -#: lib/command.php:712 +#: lib/command.php:753 #, fuzzy msgid "You are not a member of any groups." msgstr "Þú ert ekki meðlimur í þessum hópi." -#: lib/command.php:714 +#: lib/command.php:755 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "Þú ert ekki meðlimur í þessum hópi." msgstr[1] "Þú ert ekki meðlimur í þessum hópi." -#: lib/command.php:728 +#: lib/command.php:769 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -4628,6 +5187,7 @@ msgid "" "d - direct message to user\n" "get - get last notice from user\n" "whois - get profile info on user\n" +"lose - force user to stop following you\n" "fav - add user's last notice as a 'fave'\n" "fav # - add notice with the given id as a 'fave'\n" "repeat # - repeat a notice with a given id\n" @@ -4655,20 +5215,20 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:131 +#: lib/common.php:136 #, fuzzy msgid "No configuration file found. " msgstr "Enginn staðfestingarlykill." -#: lib/common.php:132 +#: lib/common.php:137 msgid "I looked for configuration files in the following places: " msgstr "" -#: lib/common.php:134 +#: lib/common.php:139 msgid "You may wish to run the installer to fix this." msgstr "" -#: lib/common.php:135 +#: lib/common.php:140 #, fuzzy msgid "Go to the installer." msgstr "Skrá þig inn á síðuna" @@ -4685,6 +5245,15 @@ msgstr "Færslur sendar með snarskilaboðaþjónustu (instant messaging)" msgid "Updates by SMS" msgstr "Færslur sendar með SMS" +#: lib/connectsettingsaction.php:120 +#, fuzzy +msgid "Connections" +msgstr "Tengjast" + +#: lib/connectsettingsaction.php:121 +msgid "Authorized connected applications" +msgstr "" + #: lib/dberroraction.php:60 msgid "Database error" msgstr "" @@ -4871,12 +5440,12 @@ msgstr "" msgid "kB" msgstr "" -#: lib/jabber.php:202 +#: lib/jabber.php:220 #, php-format msgid "[%s]" msgstr "" -#: lib/jabber.php:385 +#: lib/jabber.php:400 #, php-format msgid "Unknown inbox source %d." msgstr "" @@ -5081,7 +5650,7 @@ msgid "" "users in conversation. People can send you messages for your eyes only." msgstr "" -#: lib/mailbox.php:227 lib/noticelist.php:477 +#: lib/mailbox.php:227 lib/noticelist.php:482 #, fuzzy msgid "from" msgstr "frá" @@ -5200,59 +5769,55 @@ msgid "Do not share my location" msgstr "Gat ekki vistað merki." #: lib/noticeform.php:216 -msgid "Hide this info" -msgstr "" - -#: lib/noticeform.php:217 msgid "" "Sorry, retrieving your geo location is taking longer than expected, please " "try again later" msgstr "" -#: lib/noticelist.php:428 +#: lib/noticelist.php:429 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "" -#: lib/noticelist.php:429 +#: lib/noticelist.php:430 #, fuzzy msgid "N" msgstr "Nei" -#: lib/noticelist.php:429 +#: lib/noticelist.php:430 msgid "S" msgstr "" -#: lib/noticelist.php:430 +#: lib/noticelist.php:431 msgid "E" msgstr "" -#: lib/noticelist.php:430 +#: lib/noticelist.php:431 msgid "W" msgstr "" -#: lib/noticelist.php:436 +#: lib/noticelist.php:438 msgid "at" msgstr "" -#: lib/noticelist.php:531 +#: lib/noticelist.php:558 msgid "in context" msgstr "" -#: lib/noticelist.php:556 +#: lib/noticelist.php:583 #, fuzzy msgid "Repeated by" msgstr "Í sviðsljósinu" -#: lib/noticelist.php:585 +#: lib/noticelist.php:610 msgid "Reply to this notice" msgstr "Svara þessu babli" -#: lib/noticelist.php:586 +#: lib/noticelist.php:611 msgid "Reply" msgstr "Svara" -#: lib/noticelist.php:628 +#: lib/noticelist.php:655 #, fuzzy msgid "Notice repeated" msgstr "Babl sent inn" @@ -5286,12 +5851,7 @@ msgstr "Villa kom upp við að setja inn persónulega fjarsíðu" msgid "Duplicate notice" msgstr "Eyða babli" -#: lib/oauthstore.php:466 lib/subs.php:48 -#, fuzzy -msgid "You have been banned from subscribing." -msgstr "Þessi notandi hefur bannað þér að gerast áskrifandi" - -#: lib/oauthstore.php:491 +#: lib/oauthstore.php:490 msgid "Couldn't insert new subscription." msgstr "Gat ekki sett inn nýja áskrift." @@ -5307,19 +5867,19 @@ msgstr "Svör" msgid "Favorites" msgstr "Uppáhald" -#: lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "Innhólf" -#: lib/personalgroupnav.php:125 +#: lib/personalgroupnav.php:126 msgid "Your incoming messages" msgstr "Mótteknu skilaboðin þín" -#: lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 msgid "Outbox" msgstr "Úthólf" -#: lib/personalgroupnav.php:130 +#: lib/personalgroupnav.php:131 msgid "Your sent messages" msgstr "Skilaboð sem þú hefur sent" @@ -5400,6 +5960,10 @@ msgstr "Svara þessu babli" msgid "Repeat this notice" msgstr "Svara þessu babli" +#: lib/router.php:665 +msgid "No single user defined for single-user mode." +msgstr "" + #: lib/sandboxform.php:67 #, fuzzy msgid "Sandbox" @@ -5471,36 +6035,6 @@ msgstr "Fólk sem eru áskrifendur að %s" msgid "Groups %s is a member of" msgstr "Hópar sem %s er meðlimur í" -#: lib/subs.php:52 -msgid "Already subscribed!" -msgstr "" - -#: lib/subs.php:56 -msgid "User has blocked you." -msgstr "Notandinn hefur lokað á þig." - -#: lib/subs.php:63 -msgid "Could not subscribe." -msgstr "Gat ekki farið í áskrift." - -#: lib/subs.php:82 -msgid "Could not subscribe other to you." -msgstr "Gat ekki leyft öðrum að gerast áskrifandi að þér." - -#: lib/subs.php:137 -#, fuzzy -msgid "Not subscribed!" -msgstr "Ekki í áskrift!" - -#: lib/subs.php:142 -#, fuzzy -msgid "Couldn't delete self-subscription." -msgstr "Gat ekki eytt áskrift." - -#: lib/subs.php:158 -msgid "Couldn't delete subscription." -msgstr "Gat ekki eytt áskrift." - #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -5553,67 +6087,67 @@ msgstr "" msgid "User actions" msgstr "Notandaaðgerðir" -#: lib/userprofile.php:248 +#: lib/userprofile.php:251 msgid "Edit profile settings" msgstr "" -#: lib/userprofile.php:249 +#: lib/userprofile.php:252 msgid "Edit" msgstr "" -#: lib/userprofile.php:272 +#: lib/userprofile.php:275 msgid "Send a direct message to this user" msgstr "Senda bein skilaboð til þessa notanda" -#: lib/userprofile.php:273 +#: lib/userprofile.php:276 msgid "Message" msgstr "Skilaboð" -#: lib/userprofile.php:311 +#: lib/userprofile.php:314 msgid "Moderate" msgstr "" -#: lib/util.php:877 +#: lib/util.php:952 msgid "a few seconds ago" msgstr "fyrir nokkrum sekúndum" -#: lib/util.php:879 +#: lib/util.php:954 msgid "about a minute ago" msgstr "fyrir um einni mínútu síðan" -#: lib/util.php:881 +#: lib/util.php:956 #, php-format msgid "about %d minutes ago" msgstr "fyrir um %d mínútum síðan" -#: lib/util.php:883 +#: lib/util.php:958 msgid "about an hour ago" msgstr "fyrir um einum klukkutíma síðan" -#: lib/util.php:885 +#: lib/util.php:960 #, php-format msgid "about %d hours ago" msgstr "fyrir um %d klukkutímum síðan" -#: lib/util.php:887 +#: lib/util.php:962 msgid "about a day ago" msgstr "fyrir um einum degi síðan" -#: lib/util.php:889 +#: lib/util.php:964 #, php-format msgid "about %d days ago" msgstr "fyrir um %d dögum síðan" -#: lib/util.php:891 +#: lib/util.php:966 msgid "about a month ago" msgstr "fyrir um einum mánuði síðan" -#: lib/util.php:893 +#: lib/util.php:968 #, php-format msgid "about %d months ago" msgstr "fyrir um %d mánuðum síðan" -#: lib/util.php:895 +#: lib/util.php:970 msgid "about a year ago" msgstr "fyrir um einu ári síðan" @@ -5627,7 +6161,7 @@ msgstr "" msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "" -#: scripts/xmppdaemon.php:301 +#: lib/xmppmanager.php:402 #, fuzzy, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "Skilaboð eru of löng - 140 tákn eru í mesta lagi leyfð en þú sendir %d" diff --git a/locale/it/LC_MESSAGES/statusnet.po b/locale/it/LC_MESSAGES/statusnet.po index 81c1d1fe7c..7e3d7998a1 100644 --- a/locale/it/LC_MESSAGES/statusnet.po +++ b/locale/it/LC_MESSAGES/statusnet.po @@ -9,17 +9,71 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-01-13 22:04+0000\n" -"PO-Revision-Date: 2010-01-13 22:05:34+0000\n" +"POT-Creation-Date: 2010-02-24 23:49+0000\n" +"PO-Revision-Date: 2010-02-24 23:51:09+0000\n" "Language-Team: Italian\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha (r61027); Translate extension (2010-01-04)\n" +"X-Generator: MediaWiki 1.17alpha (r62925); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: it\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: actions/accessadminpanel.php:54 lib/adminpanelaction.php:326 +msgid "Access" +msgstr "Accesso" + +#: actions/accessadminpanel.php:65 +msgid "Site access settings" +msgstr "Impostazioni di accesso al sito" + +#: actions/accessadminpanel.php:158 +msgid "Registration" +msgstr "Registrazione" + +#: actions/accessadminpanel.php:161 +msgid "Private" +msgstr "Privato" + +#: actions/accessadminpanel.php:163 +msgid "Prohibit anonymous users (not logged in) from viewing site?" +msgstr "" +"Proibire agli utenti anonimi (che non hanno effettuato l'accesso) di vedere " +"il sito?" + +#: actions/accessadminpanel.php:167 +msgid "Invite only" +msgstr "Solo invito" + +#: actions/accessadminpanel.php:169 +msgid "Make registration invitation only." +msgstr "Rende la registrazione solo su invito" + +#: actions/accessadminpanel.php:173 +msgid "Closed" +msgstr "Chiuso" + +#: actions/accessadminpanel.php:175 +msgid "Disable new registrations." +msgstr "Disabilita la creazione di nuovi account" + +#: actions/accessadminpanel.php:189 actions/designadminpanel.php:586 +#: actions/emailsettings.php:195 actions/imsettings.php:163 +#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 +#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 +#: actions/siteadminpanel.php:336 actions/smssettings.php:181 +#: actions/subscriptions.php:208 actions/tagother.php:154 +#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 lib/designsettings.php:256 +#: lib/groupeditform.php:202 +msgid "Save" +msgstr "Salva" + +#: actions/accessadminpanel.php:189 +msgid "Save access settings" +msgstr "Salva impostazioni di accesso" + #: actions/all.php:63 actions/public.php:97 actions/replies.php:92 #: actions/showfavorites.php:137 actions/tag.php:51 msgid "No such page" @@ -34,25 +88,29 @@ msgstr "Pagina inesistente." #: 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:144 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apistatusesupdate.php:148 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:78 #: actions/apitimelinehome.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/otp.php:76 #: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154 -#: actions/replies.php:73 actions/repliesrss.php:38 +#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 #: 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:302 lib/command.php:355 #: lib/command.php:401 lib/command.php:462 lib/command.php:518 #: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 -#: lib/subs.php:34 lib/subs.php:125 msgid "No such user." msgstr "Utente inesistente." +#: actions/all.php:84 +#, php-format +msgid "%1$s and friends, page %2$d" +msgstr "%1$s e amici, pagina %2$d" + #: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 -#: actions/apitimelinefriends.php:115 actions/apitimelinehome.php:115 +#: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" @@ -100,7 +158,7 @@ msgstr "" "qualche cosa alla sua attenzione](%%%%action.newnotice%%%%?status_textarea=%3" "$s)." -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211 #, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " @@ -113,8 +171,8 @@ msgstr "" msgid "You and friends" msgstr "Tu e i tuoi amici" -#: actions/allrss.php:119 actions/apitimelinefriends.php:122 -#: actions/apitimelinehome.php:122 +#: actions/allrss.php:119 actions/apitimelinefriends.php:119 +#: actions/apitimelinehome.php:120 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Messaggi da %1$s e amici su %2$s!" @@ -124,23 +182,23 @@ msgstr "Messaggi da %1$s e amici su %2$s!" #: actions/apiaccountupdateprofile.php:97 #: actions/apiaccountupdateprofilebackgroundimage.php:94 #: actions/apiaccountupdateprofilecolors.php:118 -#: 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:136 actions/apigroupismember.php:114 -#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 -#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 -#: actions/apigroupmembership.php:106 actions/apigroupshow.php:105 -#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 -#: actions/apistatusesretweets.php:112 actions/apistatusesshow.php:108 -#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93 -#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:146 -#: actions/apitimelinefriends.php:156 actions/apitimelinegroup.php:150 -#: actions/apitimelinehome.php:156 actions/apitimelinementions.php:151 -#: actions/apitimelinepublic.php:131 actions/apitimelineretweetedbyme.php:122 +#: actions/apiaccountverifycredentials.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:128 actions/apigroupcreate.php:136 +#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 +#: actions/apigroupleave.php:141 actions/apigrouplist.php:132 +#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 +#: actions/apigroupshow.php:115 actions/apihelptest.php:88 +#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 +#: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 #: actions/apitimelineretweetedtome.php:121 -#: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141 -#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 +#: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 +#: actions/apitimelineuser.php:207 actions/apiusershow.php:101 msgid "API method not found." msgstr "Metodo delle API non trovato." @@ -154,7 +212,7 @@ msgstr "Metodo delle API non trovato." #: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 #: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 #: actions/apigroupleave.php:91 actions/apistatusesretweet.php:65 -#: actions/apistatusesupdate.php:114 +#: actions/apistatusesupdate.php:118 msgid "This method requires a POST." msgstr "Questo metodo richiede POST." @@ -185,8 +243,9 @@ msgstr "Impossibile salvare il profilo." #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:97 -#: actions/apistatusesupdate.php:127 actions/avatarsettings.php:257 -#: actions/designadminpanel.php:122 actions/newnotice.php:94 +#: actions/apistatusesupdate.php:131 actions/avatarsettings.php:257 +#: actions/designadminpanel.php:122 actions/editapplication.php:118 +#: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 #, php-format msgid "" @@ -302,11 +361,11 @@ msgstr "Non puoi non seguirti." msgid "Two user ids or screen_names must be supplied." msgstr "Devono essere forniti due ID utente o nominativi." -#: actions/apifriendshipsshow.php:135 +#: actions/apifriendshipsshow.php:134 msgid "Could not determine source user." msgstr "Impossibile determinare l'utente sorgente." -#: actions/apifriendshipsshow.php:143 +#: actions/apifriendshipsshow.php:142 msgid "Could not find target user." msgstr "Impossibile trovare l'utente destinazione." @@ -330,7 +389,8 @@ msgstr "Soprannome già in uso. Prova con un altro." msgid "Not a valid nickname." msgstr "Non è un soprannome valido." -#: actions/apigroupcreate.php:196 actions/editgroup.php:195 +#: actions/apigroupcreate.php:196 actions/editapplication.php:215 +#: actions/editgroup.php:195 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:217 msgid "Homepage is not a valid URL." @@ -342,7 +402,8 @@ msgstr "L'indirizzo della pagina web non è valido." msgid "Full name is too long (max 255 chars)." msgstr "Nome troppo lungo (max 255 caratteri)." -#: actions/apigroupcreate.php:213 +#: actions/apigroupcreate.php:213 actions/editapplication.php:190 +#: actions/newapplication.php:172 #, php-format msgid "Description is too long (max %d chars)." msgstr "La descrizione è troppo lunga (max %d caratteri)." @@ -378,7 +439,7 @@ msgstr "L'alias non può essere lo stesso del soprannome." #: actions/apigroupismember.php:95 actions/apigroupjoin.php:104 #: actions/apigroupleave.php:104 actions/apigroupmembership.php:91 -#: actions/apigroupshow.php:90 actions/apitimelinegroup.php:91 +#: actions/apigroupshow.php:82 actions/apitimelinegroup.php:91 msgid "Group not found!" msgstr "Gruppo non trovato!" @@ -419,6 +480,116 @@ msgstr "Gruppi di %s" msgid "groups on %s" msgstr "Gruppi su %s" +#: actions/apioauthauthorize.php:101 +msgid "No oauth_token parameter provided." +msgstr "Nessun parametro oauth_token fornito." + +#: actions/apioauthauthorize.php:106 +msgid "Invalid token." +msgstr "Token non valido." + +#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 +#: actions/deletenotice.php:157 actions/disfavor.php:74 +#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54 +#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupunblock.php:66 actions/imsettings.php:206 +#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 +#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 +#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135 +#: actions/othersettings.php:145 actions/passwordsettings.php:138 +#: actions/profilesettings.php:194 actions/recoverpassword.php:337 +#: actions/register.php:165 actions/remotesubscribe.php:77 +#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 +#: actions/subscribe.php:86 actions/tagother.php:166 +#: 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 "" +"Si è verificato un problema con il tuo token di sessione. Prova di nuovo." + +#: actions/apioauthauthorize.php:135 +msgid "Invalid nickname / password!" +msgstr "Nome utente o password non valido." + +#: actions/apioauthauthorize.php:159 +msgid "Database error deleting OAuth application user." +msgstr "Errore nel database nell'eliminare l'applicazione utente OAuth." + +#: actions/apioauthauthorize.php:185 +msgid "Database error inserting OAuth application user." +msgstr "Errore nel database nell'inserire l'applicazione utente OAuth." + +#: actions/apioauthauthorize.php:214 +#, php-format +msgid "" +"The request token %s has been authorized. Please exchange it for an access " +"token." +msgstr "" +"Il token di richiesta %s è stato autorizzato. Scambiarlo con un token di " +"accesso." + +#: actions/apioauthauthorize.php:227 +#, php-format +msgid "The request token %s has been denied and revoked." +msgstr "Il token di richiesta %s è stato rifiutato o revocato." + +#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 +#: actions/designadminpanel.php:103 actions/editapplication.php:139 +#: actions/emailsettings.php:256 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/newapplication.php:121 +#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 +#: actions/smssettings.php:248 lib/designsettings.php:304 +msgid "Unexpected form submission." +msgstr "Invio del modulo inaspettato." + +#: actions/apioauthauthorize.php:259 +msgid "An application would like to connect to your account" +msgstr "Un'applicazione vorrebbe collegarsi al tuo account" + +#: actions/apioauthauthorize.php:276 +msgid "Allow or deny access" +msgstr "Consenti o nega l'accesso" + +#: actions/apioauthauthorize.php:292 +#, php-format +msgid "" +"The application %1$s by %2$s would like " +"the ability to %3$s your %4$s account data. You should only " +"give access to your %4$s account to third parties you trust." +msgstr "" +"L'applicazione %1$s di %2$s vorrebbe poter " +"%3$s ai dati del tuo account %4$s. È consigliato fornire " +"accesso al proprio account %4$s solo ad applicazioni di cui ci si può fidare." + +#: actions/apioauthauthorize.php:310 lib/action.php:441 +msgid "Account" +msgstr "Account" + +#: actions/apioauthauthorize.php:313 actions/login.php:230 +#: actions/profilesettings.php:106 actions/register.php:424 +#: actions/showgroup.php:236 actions/tagother.php:94 +#: actions/userauthorization.php:145 lib/groupeditform.php:152 +#: lib/userprofile.php:131 +msgid "Nickname" +msgstr "Soprannome" + +#: actions/apioauthauthorize.php:316 actions/login.php:233 +#: actions/register.php:429 lib/accountsettingsaction.php:116 +msgid "Password" +msgstr "Password" + +#: actions/apioauthauthorize.php:328 +msgid "Deny" +msgstr "Nega" + +#: actions/apioauthauthorize.php:334 +msgid "Allow" +msgstr "Consenti" + +#: actions/apioauthauthorize.php:351 +msgid "Allow or deny access to your account information." +msgstr "Consenti o nega l'accesso alle informazioni del tuo account." + #: actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." msgstr "Questo metodo richiede POST o DELETE." @@ -446,19 +617,19 @@ msgstr "Messaggio eliminato." #: actions/apistatusesshow.php:144 msgid "No status with that ID found." -msgstr "Nessun stato trovato con quel ID." +msgstr "Nessuno stato trovato con quel ID." -#: actions/apistatusesupdate.php:157 actions/newnotice.php:155 +#: actions/apistatusesupdate.php:161 actions/newnotice.php:155 #: lib/mailhandler.php:60 #, php-format msgid "That's too long. Max notice size is %d chars." msgstr "Troppo lungo. Lunghezza massima %d caratteri." -#: actions/apistatusesupdate.php:198 +#: actions/apistatusesupdate.php:202 msgid "Not found" msgstr "Non trovato" -#: actions/apistatusesupdate.php:221 actions/newnotice.php:178 +#: actions/apistatusesupdate.php:225 actions/newnotice.php:178 #, php-format msgid "Max notice size is %d chars, including attachment URL." msgstr "" @@ -473,7 +644,7 @@ msgstr "Formato non supportato." msgid "%1$s / Favorites from %2$s" msgstr "%1$s / Preferiti da %2$s" -#: actions/apitimelinefavorites.php:120 +#: actions/apitimelinefavorites.php:117 #, php-format msgid "%1$s updates favorited by %2$s / %2$s." msgstr "%1$s aggiornamenti preferiti da %2$s / %3$s" @@ -484,7 +655,7 @@ msgstr "%1$s aggiornamenti preferiti da %2$s / %3$s" msgid "%s timeline" msgstr "Attività di %s" -#: actions/apitimelinegroup.php:117 actions/apitimelineuser.php:126 +#: actions/apitimelinegroup.php:114 actions/apitimelineuser.php:126 #: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" @@ -500,27 +671,22 @@ msgstr "%1$s / Messaggi che citano %2$s" msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "%1$s messaggi in risposta a quelli da %2$s / %3$s" -#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "Attività pubblica di %s" -#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "Aggiornamenti di %s da tutti!" -#: actions/apitimelineretweetedbyme.php:112 -#, php-format -msgid "Repeated by %s" -msgstr "Ripetuto da %s" - #: actions/apitimelineretweetedtome.php:111 #, php-format msgid "Repeated to %s" msgstr "Ripetuto a %s" -#: actions/apitimelineretweetsofme.php:112 +#: actions/apitimelineretweetsofme.php:114 #, php-format msgid "Repeats of %s" msgstr "Ripetizioni di %s" @@ -530,7 +696,7 @@ msgstr "Ripetizioni di %s" msgid "Notices tagged with %s" msgstr "Messaggi etichettati con %s" -#: actions/apitimelinetag.php:108 actions/tagrss.php:64 +#: actions/apitimelinetag.php:104 actions/tagrss.php:64 #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Messaggi etichettati con %1$s su %2$s!" @@ -591,8 +757,8 @@ msgstr "Originale" msgid "Preview" msgstr "Anteprima" -#: actions/avatarsettings.php:149 lib/deleteuserform.php:66 -#: lib/noticelist.php:611 +#: actions/avatarsettings.php:149 actions/showapplication.php:252 +#: lib/deleteuserform.php:66 lib/noticelist.php:637 msgid "Delete" msgstr "Elimina" @@ -604,30 +770,6 @@ msgstr "Carica" msgid "Crop" msgstr "Ritaglia" -#: actions/avatarsettings.php:268 actions/deletenotice.php:157 -#: actions/disfavor.php:74 actions/emailsettings.php:238 actions/favor.php:75 -#: actions/geocode.php:50 actions/groupblock.php:66 actions/grouplogo.php:309 -#: actions/groupunblock.php:66 actions/imsettings.php:206 -#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 -#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 -#: actions/othersettings.php:145 actions/passwordsettings.php:138 -#: actions/profilesettings.php:194 actions/recoverpassword.php:337 -#: actions/register.php:165 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 -#: actions/subscribe.php:46 actions/tagother.php:166 -#: 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 "" -"Si è verificato un problema con il tuo token di sessione. Prova di nuovo." - -#: actions/avatarsettings.php:281 actions/designadminpanel.php:103 -#: actions/emailsettings.php:256 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/avatarsettings.php:328 msgid "Pick a square area of the image to be your avatar" msgstr "Scegli un'area quadrata per la tua immagine personale" @@ -666,8 +808,9 @@ msgstr "" "tuoi messaggi, non potrà più abbonarsi e non riceverai notifica delle @-" "risposte che ti invierà." -#: actions/block.php:143 actions/deletenotice.php:145 -#: actions/deleteuser.php:147 actions/groupblock.php:178 +#: actions/block.php:143 actions/deleteapplication.php:153 +#: actions/deletenotice.php:145 actions/deleteuser.php:147 +#: actions/groupblock.php:178 msgid "No" msgstr "No" @@ -675,13 +818,13 @@ msgstr "No" msgid "Do not block this user" msgstr "Non bloccare questo utente" -#: actions/block.php:144 actions/deletenotice.php:146 -#: actions/deleteuser.php:148 actions/groupblock.php:179 -#: lib/repeatform.php:132 +#: actions/block.php:144 actions/deleteapplication.php:158 +#: actions/deletenotice.php:146 actions/deleteuser.php:148 +#: actions/groupblock.php:179 lib/repeatform.php:132 msgid "Yes" msgstr "Sì" -#: actions/block.php:144 actions/groupmembers.php:346 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80 msgid "Block this user" msgstr "Blocca questo utente" @@ -764,7 +907,7 @@ msgid "Couldn't delete email confirmation." msgstr "Impossibile eliminare l'email di conferma." #: actions/confirmaddress.php:144 -msgid "Confirm Address" +msgid "Confirm address" msgstr "Conferma indirizzo" #: actions/confirmaddress.php:159 @@ -781,10 +924,50 @@ msgstr "Conversazione" msgid "Notices" msgstr "Messaggi" +#: actions/deleteapplication.php:63 +msgid "You must be logged in to delete an application." +msgstr "Devi eseguire l'accesso per eliminare un'applicazione." + +#: actions/deleteapplication.php:71 +msgid "Application not found." +msgstr "Applicazione non trovata." + +#: actions/deleteapplication.php:78 actions/editapplication.php:77 +#: actions/showapplication.php:94 +msgid "You are not the owner of this application." +msgstr "Questa applicazione non è di tua proprietà." + +#: actions/deleteapplication.php:102 actions/editapplication.php:127 +#: actions/newapplication.php:110 actions/showapplication.php:118 +#: lib/action.php:1197 +msgid "There was a problem with your session token." +msgstr "Si è verificato un problema con il tuo token di sessione." + +#: actions/deleteapplication.php:123 actions/deleteapplication.php:147 +msgid "Delete application" +msgstr "Elimina applicazione" + +#: actions/deleteapplication.php:149 +msgid "" +"Are you sure you want to delete this application? This will clear all data " +"about the application from the database, including all existing user " +"connections." +msgstr "" +"Vuoi eliminare questa applicazione? Questa azione eliminerà tutti i dati " +"riguardo all'applicazione dal database, comprese tutte le connessioni utente." + +#: actions/deleteapplication.php:156 +msgid "Do not delete this application" +msgstr "Non eliminare l'applicazione" + +#: actions/deleteapplication.php:160 +msgid "Delete this application" +msgstr "Elimina l'applicazione" + #: 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/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 #: lib/adminpanelaction.php:72 lib/profileformaction.php:63 #: lib/settingsaction.php:72 @@ -815,7 +998,7 @@ msgstr "Vuoi eliminare questo messaggio?" msgid "Do not delete this notice" msgstr "Non eliminare il messaggio" -#: actions/deletenotice.php:146 lib/noticelist.php:611 +#: actions/deletenotice.php:146 lib/noticelist.php:637 msgid "Delete this notice" msgstr "Elimina questo messaggio" @@ -947,16 +1130,6 @@ msgstr "Ripristina i valori predefiniti" msgid "Reset back to default" msgstr "Reimposta i valori predefiniti" -#: actions/designadminpanel.php:586 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 -#: actions/pathsadminpanel.php:324 actions/profilesettings.php:174 -#: actions/siteadminpanel.php:388 actions/smssettings.php:181 -#: actions/subscriptions.php:203 actions/tagother.php:154 -#: actions/useradminpanel.php:313 lib/designsettings.php:256 -#: lib/groupeditform.php:202 -msgid "Save" -msgstr "Salva" - #: actions/designadminpanel.php:587 lib/designsettings.php:257 msgid "Save design" msgstr "Salva aspetto" @@ -969,9 +1142,75 @@ msgstr "Questo messaggio non è un preferito!" msgid "Add to favorites" msgstr "Aggiungi ai preferiti" -#: actions/doc.php:69 -msgid "No such document." -msgstr "Nessun documento." +#: actions/doc.php:158 +#, php-format +msgid "No such document \"%s\"" +msgstr "Nessun documento \"%s\"" + +#: actions/editapplication.php:54 +msgid "Edit Application" +msgstr "Modifica applicazione" + +#: actions/editapplication.php:66 +msgid "You must be logged in to edit an application." +msgstr "Devi eseguire l'accesso per modificare un'applicazione." + +#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:166 +#: actions/showapplication.php:87 +msgid "No such application." +msgstr "Nessuna applicazione." + +#: actions/editapplication.php:161 +msgid "Use this form to edit your application." +msgstr "Usa questo modulo per modificare la tua applicazione." + +#: actions/editapplication.php:177 actions/newapplication.php:159 +msgid "Name is required." +msgstr "Il nome è richiesto." + +#: actions/editapplication.php:180 actions/newapplication.php:165 +msgid "Name is too long (max 255 chars)." +msgstr "Il nome è troppo lungo (max 255 caratteri)." + +#: actions/editapplication.php:183 actions/newapplication.php:162 +msgid "Name already in use. Try another one." +msgstr "Nome già in uso. Prova con un altro." + +#: actions/editapplication.php:186 actions/newapplication.php:168 +msgid "Description is required." +msgstr "La descrizione è richiesta." + +#: actions/editapplication.php:194 +msgid "Source URL is too long." +msgstr "L'URL sorgente è troppo lungo." + +#: actions/editapplication.php:200 actions/newapplication.php:185 +msgid "Source URL is not valid." +msgstr "L'URL sorgente non è valido." + +#: actions/editapplication.php:203 actions/newapplication.php:188 +msgid "Organization is required." +msgstr "L'organizzazione è richiesta." + +#: actions/editapplication.php:206 actions/newapplication.php:191 +msgid "Organization is too long (max 255 chars)." +msgstr "L'organizzazione è troppo lunga (max 255 caratteri)." + +#: actions/editapplication.php:209 actions/newapplication.php:194 +msgid "Organization homepage is required." +msgstr "Il sito web dell'organizzazione è richiesto." + +#: actions/editapplication.php:218 actions/newapplication.php:206 +msgid "Callback is too long." +msgstr "Il callback è troppo lungo." + +#: actions/editapplication.php:225 actions/newapplication.php:215 +msgid "Callback URL is not valid." +msgstr "L'URL di callback non è valido." + +#: actions/editapplication.php:258 +msgid "Could not update application." +msgstr "Impossibile aggiornare l'applicazione." #: actions/editgroup.php:56 #, php-format @@ -1000,7 +1239,7 @@ msgstr "La descrizione è troppo lunga (max %d caratteri)." msgid "Could not update group." msgstr "Impossibile aggiornare il gruppo." -#: actions/editgroup.php:259 classes/User_group.php:390 +#: actions/editgroup.php:259 classes/User_group.php:433 msgid "Could not create aliases." msgstr "Impossibile creare gli alias." @@ -1042,7 +1281,8 @@ msgstr "" "istruzioni." #: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 +#: actions/smssettings.php:126 lib/applicationeditform.php:331 +#: lib/applicationeditform.php:332 msgid "Cancel" msgstr "Annulla" @@ -1125,7 +1365,7 @@ msgid "Cannot normalize that email address" msgstr "Impossibile normalizzare quell'indirizzo email" #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:157 +#: actions/siteadminpanel.php:143 msgid "Not a valid email address." msgstr "Non è un indirizzo email valido." @@ -1137,7 +1377,7 @@ msgstr "Quello è già il tuo indirizzo email." msgid "That email address already belongs to another user." msgstr "Quell'indirizzo email appartiene già a un altro utente." -#: actions/emailsettings.php:353 actions/imsettings.php:317 +#: actions/emailsettings.php:353 actions/imsettings.php:319 #: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." msgstr "Impossibile inserire il codice di conferma." @@ -1199,7 +1439,7 @@ msgstr "Questo messaggio è già un preferito!" msgid "Disfavor favorite" msgstr "Rimuovi preferito" -#: actions/favorited.php:65 lib/popularnoticesection.php:88 +#: actions/favorited.php:65 lib/popularnoticesection.php:91 #: lib/publicgroupnav.php:93 msgid "Popular notices" msgstr "Messaggi famosi" @@ -1347,7 +1587,7 @@ msgstr "L'utente è già bloccato dal gruppo." msgid "User is not a member of group." msgstr "L'utente non fa parte del gruppo." -#: actions/groupblock.php:136 actions/groupmembers.php:314 +#: actions/groupblock.php:136 actions/groupmembers.php:316 msgid "Block user from group" msgstr "Blocca l'utente dal gruppo" @@ -1445,23 +1685,23 @@ msgstr "Membri del gruppo %1$s, pagina %2$d" msgid "A list of the users in this group." msgstr "Un elenco degli utenti in questo gruppo." -#: actions/groupmembers.php:175 lib/action.php:442 lib/groupnav.php:107 +#: actions/groupmembers.php:175 lib/action.php:448 lib/groupnav.php:107 msgid "Admin" msgstr "Amministra" -#: actions/groupmembers.php:346 lib/blockform.php:69 +#: actions/groupmembers.php:348 lib/blockform.php:69 msgid "Block" msgstr "Blocca" -#: actions/groupmembers.php:441 +#: actions/groupmembers.php:443 msgid "Make user an admin of the group" msgstr "Rende l'utente amministratore del gruppo" -#: actions/groupmembers.php:473 +#: actions/groupmembers.php:475 msgid "Make Admin" msgstr "Rendi amm." -#: actions/groupmembers.php:473 +#: actions/groupmembers.php:475 msgid "Make this user an admin" msgstr "Rende questo utente un amministratore" @@ -1642,6 +1882,11 @@ msgstr "" msgid "That is not your Jabber ID." msgstr "Quello non è il tuo ID di Jabber." +#: actions/inbox.php:59 +#, php-format +msgid "Inbox for %1$s - page %2$d" +msgstr "Casella posta in arrivo di %s - pagina %2$d" + #: actions/inbox.php:62 #, php-format msgid "Inbox for %s" @@ -1724,7 +1969,7 @@ msgstr "Messaggio personale" msgid "Optionally add a personal message to the invitation." msgstr "Puoi aggiungere un messaggio personale agli inviti." -#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:237 +#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:236 msgid "Send" msgstr "Invia" @@ -1824,7 +2069,7 @@ msgstr "Nome utente o password non corretto." msgid "Error setting user. You are probably not authorized." msgstr "Errore nell'impostare l'utente. Forse non hai l'autorizzazione." -#: actions/login.php:188 actions/login.php:241 lib/action.php:460 +#: actions/login.php:188 actions/login.php:241 lib/action.php:466 #: lib/logingroupnav.php:79 msgid "Login" msgstr "Accedi" @@ -1833,17 +2078,6 @@ msgstr "Accedi" msgid "Login to site" msgstr "Accedi al sito" -#: actions/login.php:230 actions/profilesettings.php:106 -#: actions/register.php:424 actions/showgroup.php:236 actions/tagother.php:94 -#: lib/groupeditform.php:152 lib/userprofile.php:131 -msgid "Nickname" -msgstr "Soprannome" - -#: actions/login.php:233 actions/register.php:429 -#: lib/accountsettingsaction.php:116 -msgid "Password" -msgstr "Password" - #: actions/login.php:236 actions/register.php:478 msgid "Remember me" msgstr "Ricordami" @@ -1873,22 +2107,22 @@ msgstr "" "Accedi col tuo nome utente e password. Non hai ancora un nome utente? [Crea]" "(%%action.register%%) un nuovo account." -#: actions/makeadmin.php:91 +#: actions/makeadmin.php:92 msgid "Only an admin can make another user an admin." msgstr "" "Solo gli amministratori possono rendere un altro utente amministratori." -#: actions/makeadmin.php:95 +#: actions/makeadmin.php:96 #, php-format msgid "%1$s is already an admin for group \"%2$s\"." msgstr "%1$s è già amministratore del gruppo \"%2$s\"." -#: actions/makeadmin.php:132 +#: actions/makeadmin.php:133 #, php-format msgid "Can't get membership record for %1$s in group %2$s." msgstr "Impossibile recuperare la membership per %1$s nel gruppo %2$s" -#: actions/makeadmin.php:145 +#: actions/makeadmin.php:146 #, php-format msgid "Can't make %1$s an admin for group %2$s." msgstr "Impossibile rendere %1$s un amministratore del gruppo %2$s" @@ -1897,6 +2131,26 @@ msgstr "Impossibile rendere %1$s un amministratore del gruppo %2$s" msgid "No current status" msgstr "Nessun messaggio corrente" +#: actions/newapplication.php:52 +msgid "New Application" +msgstr "Nuova applicazione" + +#: actions/newapplication.php:64 +msgid "You must be logged in to register an application." +msgstr "Devi eseguire l'accesso per registrare un'applicazione." + +#: actions/newapplication.php:143 +msgid "Use this form to register a new application." +msgstr "Usa questo modulo per registrare un'applicazione." + +#: actions/newapplication.php:176 +msgid "Source URL is required." +msgstr "L'URL sorgente è richiesto." + +#: actions/newapplication.php:258 actions/newapplication.php:267 +msgid "Could not create application." +msgstr "Impossibile creare l'applicazione." + #: actions/newgroup.php:53 msgid "New group" msgstr "Nuovo gruppo" @@ -1962,7 +2216,7 @@ msgid "Text search" msgstr "Cerca testo" #: actions/noticesearch.php:91 -#, fuzzy, php-format +#, php-format msgid "Search results for \"%1$s\" on %2$s" msgstr "Risultati della ricerca per \"%1$s\" su %2$s" @@ -2009,6 +2263,50 @@ msgstr "Richiamo inviato" msgid "Nudge sent!" msgstr "Richiamo inviato!" +#: actions/oauthappssettings.php:59 +msgid "You must be logged in to list your applications." +msgstr "Devi eseguire l'accesso per poter elencare le tue applicazioni." + +#: actions/oauthappssettings.php:74 +msgid "OAuth applications" +msgstr "Applicazioni OAuth" + +#: actions/oauthappssettings.php:85 +msgid "Applications you have registered" +msgstr "Applicazioni che hai registrato" + +#: actions/oauthappssettings.php:135 +#, php-format +msgid "You have not registered any applications yet." +msgstr "Non hai ancora registrato alcuna applicazione." + +#: actions/oauthconnectionssettings.php:72 +msgid "Connected applications" +msgstr "Applicazioni collegate" + +#: actions/oauthconnectionssettings.php:83 +msgid "You have allowed the following applications to access you account." +msgstr "Hai consentito alle seguenti applicazioni di accedere al tuo account." + +#: actions/oauthconnectionssettings.php:175 +msgid "You are not a user of that application." +msgstr "Non sei un utente di quella applicazione." + +#: actions/oauthconnectionssettings.php:186 +msgid "Unable to revoke access for app: " +msgstr "Impossibile revocare l'accesso per l'applicazione: " + +#: actions/oauthconnectionssettings.php:198 +#, php-format +msgid "You have not authorized any applications to use your account." +msgstr "Non hai autorizzato alcuna applicazione all'uso del tuo account." + +#: actions/oauthconnectionssettings.php:211 +msgid "Developers can edit the registration settings for their applications " +msgstr "" +"Gli sviluppatori possono modificare le impostazioni di registrazione per le " +"loro applicazioni " + #: actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" msgstr "Il messaggio non ha un profilo" @@ -2026,8 +2324,8 @@ msgstr "tipo di contenuto " msgid "Only " msgstr "Solo " -#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1033 -#: lib/api.php:1061 lib/api.php:1171 +#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 +#: lib/api.php:1068 lib/api.php:1177 msgid "Not a supported data format." msgstr "Non è un formato di dati supportato." @@ -2040,7 +2338,7 @@ msgid "Notice Search" msgstr "Cerca messaggi" #: actions/othersettings.php:60 -msgid "Other Settings" +msgid "Other settings" msgstr "Altre impostazioni" #: actions/othersettings.php:71 @@ -2072,30 +2370,30 @@ msgid "URL shortening service is too long (max 50 chars)." msgstr "Il servizio di riduzione degli URL è troppo lungo (max 50 caratteri)." #: actions/otp.php:69 -#, fuzzy msgid "No user ID specified." msgstr "Nessun ID utente specificato." #: actions/otp.php:83 -#, fuzzy msgid "No login token specified." msgstr "Nessun token di accesso specificato." #: actions/otp.php:90 -#, fuzzy msgid "No login token requested." msgstr "Nessun token di accesso richiesto." #: actions/otp.php:95 -#, fuzzy msgid "Invalid login token specified." msgstr "Token di accesso specificato non valido." #: actions/otp.php:104 -#, fuzzy msgid "Login token expired." msgstr "Token di accesso scaduto." +#: actions/outbox.php:58 +#, php-format +msgid "Outbox for %1$s - page %2$d" +msgstr "Casella posta inviata di %s - pagina %2$d" + #: actions/outbox.php:61 #, php-format msgid "Outbox for %s" @@ -2168,7 +2466,7 @@ msgstr "Impossibile salvare la nuova password." msgid "Password saved." msgstr "Password salvata." -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:326 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:331 msgid "Paths" msgstr "Percorsi" @@ -2176,132 +2474,148 @@ msgstr "Percorsi" msgid "Path and server settings for this StatusNet site." msgstr "Percorso e impostazioni server per questo sito StatusNet." -#: actions/pathsadminpanel.php:140 +#: actions/pathsadminpanel.php:157 #, php-format msgid "Theme directory not readable: %s" msgstr "Directory del tema non leggibile: %s" -#: actions/pathsadminpanel.php:146 +#: actions/pathsadminpanel.php:163 #, php-format msgid "Avatar directory not writable: %s" msgstr "Directory delle immagini degli utenti non scrivibile: %s" -#: actions/pathsadminpanel.php:152 +#: actions/pathsadminpanel.php:169 #, php-format msgid "Background directory not writable: %s" msgstr "Directory degli sfondi non scrivibile: %s" -#: actions/pathsadminpanel.php:160 +#: actions/pathsadminpanel.php:177 #, php-format msgid "Locales directory not readable: %s" msgstr "Directory delle localizzazioni non leggibile: %s" -#: actions/pathsadminpanel.php:166 +#: actions/pathsadminpanel.php:183 msgid "Invalid SSL server. The maximum length is 255 characters." msgstr "Server SSL non valido. La lunghezza massima è di 255 caratteri." -#: actions/pathsadminpanel.php:217 actions/siteadminpanel.php:58 +#: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58 #: lib/adminpanelaction.php:311 msgid "Site" msgstr "Sito" -#: actions/pathsadminpanel.php:221 +#: actions/pathsadminpanel.php:238 +msgid "Server" +msgstr "Server" + +#: actions/pathsadminpanel.php:238 +msgid "Site's server hostname." +msgstr "Nome host del server" + +#: actions/pathsadminpanel.php:242 msgid "Path" msgstr "Percorso" -#: actions/pathsadminpanel.php:221 +#: actions/pathsadminpanel.php:242 msgid "Site path" msgstr "Percorso del sito" -#: actions/pathsadminpanel.php:225 +#: actions/pathsadminpanel.php:246 msgid "Path to locales" msgstr "Percorso alle localizzazioni" -#: actions/pathsadminpanel.php:225 +#: actions/pathsadminpanel.php:246 msgid "Directory path to locales" msgstr "Percorso della directory alle localizzazioni" -#: actions/pathsadminpanel.php:232 +#: actions/pathsadminpanel.php:250 +msgid "Fancy URLs" +msgstr "URL semplici" + +#: actions/pathsadminpanel.php:252 +msgid "Use fancy (more readable and memorable) URLs?" +msgstr "Usare gli URL semplici (più leggibili e facili da ricordare)?" + +#: actions/pathsadminpanel.php:259 msgid "Theme" msgstr "Tema" -#: actions/pathsadminpanel.php:237 +#: actions/pathsadminpanel.php:264 msgid "Theme server" msgstr "Server del tema" -#: actions/pathsadminpanel.php:241 +#: actions/pathsadminpanel.php:268 msgid "Theme path" msgstr "Percorso del tema" -#: actions/pathsadminpanel.php:245 +#: actions/pathsadminpanel.php:272 msgid "Theme directory" msgstr "Directory del tema" -#: actions/pathsadminpanel.php:252 +#: actions/pathsadminpanel.php:279 msgid "Avatars" msgstr "Immagini" -#: actions/pathsadminpanel.php:257 +#: actions/pathsadminpanel.php:284 msgid "Avatar server" msgstr "Server dell'immagine" -#: actions/pathsadminpanel.php:261 +#: actions/pathsadminpanel.php:288 msgid "Avatar path" msgstr "Percorso dell'immagine" -#: actions/pathsadminpanel.php:265 +#: actions/pathsadminpanel.php:292 msgid "Avatar directory" msgstr "Directory dell'immagine" -#: actions/pathsadminpanel.php:274 +#: actions/pathsadminpanel.php:301 msgid "Backgrounds" msgstr "Sfondi" -#: actions/pathsadminpanel.php:278 +#: actions/pathsadminpanel.php:305 msgid "Background server" msgstr "Server dello sfondo" -#: actions/pathsadminpanel.php:282 +#: actions/pathsadminpanel.php:309 msgid "Background path" msgstr "Percorso dello sfondo" -#: actions/pathsadminpanel.php:286 +#: actions/pathsadminpanel.php:313 msgid "Background directory" msgstr "Directory dello sfondo" -#: actions/pathsadminpanel.php:293 +#: actions/pathsadminpanel.php:320 msgid "SSL" msgstr "SSL" -#: actions/pathsadminpanel.php:296 actions/siteadminpanel.php:346 +#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 msgid "Never" msgstr "Mai" -#: actions/pathsadminpanel.php:297 +#: actions/pathsadminpanel.php:324 msgid "Sometimes" msgstr "Qualche volta" -#: actions/pathsadminpanel.php:298 +#: actions/pathsadminpanel.php:325 msgid "Always" msgstr "Sempre" -#: actions/pathsadminpanel.php:302 +#: actions/pathsadminpanel.php:329 msgid "Use SSL" msgstr "Usa SSL" -#: actions/pathsadminpanel.php:303 +#: actions/pathsadminpanel.php:330 msgid "When to use SSL" msgstr "Quando usare SSL" -#: actions/pathsadminpanel.php:308 +#: actions/pathsadminpanel.php:335 msgid "SSL server" msgstr "Server SSL" -#: actions/pathsadminpanel.php:309 +#: actions/pathsadminpanel.php:336 msgid "Server to direct SSL requests to" msgstr "Server a cui dirigere le richieste SSL" -#: actions/pathsadminpanel.php:325 +#: actions/pathsadminpanel.php:352 msgid "Save paths" msgstr "Salva percorsi" @@ -2366,7 +2680,7 @@ msgid "Full name" msgstr "Nome" #: actions/profilesettings.php:115 actions/register.php:453 -#: lib/groupeditform.php:161 +#: lib/applicationeditform.php:228 lib/groupeditform.php:161 msgid "Homepage" msgstr "Pagina web" @@ -2389,7 +2703,7 @@ msgstr "Biografia" #: actions/profilesettings.php:132 actions/register.php:471 #: actions/showgroup.php:256 actions/tagother.php:112 -#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:164 msgid "Location" msgstr "Ubicazione" @@ -2414,7 +2728,7 @@ msgid "" msgstr "" "Le tue etichette (lettere, numeri, -, . e _), separate da virgole o spazi" -#: actions/profilesettings.php:151 actions/siteadminpanel.php:294 +#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 msgid "Language" msgstr "Lingua" @@ -2442,7 +2756,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "La biografia è troppo lunga (max %d caratteri)." -#: actions/profilesettings.php:235 actions/siteadminpanel.php:164 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 msgid "Timezone not selected." msgstr "Fuso orario non selezionato" @@ -2455,23 +2769,23 @@ msgstr "La lingua è troppo lunga (max 50 caratteri)." msgid "Invalid tag: \"%s\"" msgstr "Etichetta non valida: \"%s\"" -#: actions/profilesettings.php:302 +#: actions/profilesettings.php:306 msgid "Couldn't update user for autosubscribe." msgstr "Impossibile aggiornare l'utente per auto-abbonarsi." -#: actions/profilesettings.php:359 +#: actions/profilesettings.php:363 msgid "Couldn't save location prefs." msgstr "Impossibile salvare le preferenze della posizione." -#: actions/profilesettings.php:371 +#: actions/profilesettings.php:375 msgid "Couldn't save profile." msgstr "Impossibile salvare il profilo." -#: actions/profilesettings.php:379 +#: actions/profilesettings.php:383 msgid "Couldn't save tags." msgstr "Impossibile salvare le etichette." -#: actions/profilesettings.php:387 lib/adminpanelaction.php:137 +#: actions/profilesettings.php:391 lib/adminpanelaction.php:137 msgid "Settings saved." msgstr "Impostazioni salvate." @@ -2493,19 +2807,19 @@ msgstr "Attività pubblica, pagina %d" msgid "Public timeline" msgstr "Attività pubblica" -#: actions/public.php:151 +#: actions/public.php:159 msgid "Public Stream Feed (RSS 1.0)" msgstr "Feed dell'attività pubblica (RSS 1.0)" -#: actions/public.php:155 +#: actions/public.php:163 msgid "Public Stream Feed (RSS 2.0)" msgstr "Feed dell'attività pubblica (RSS 2.0)" -#: actions/public.php:159 +#: actions/public.php:167 msgid "Public Stream Feed (Atom)" msgstr "Feed dell'attività pubblica (Atom)" -#: actions/public.php:179 +#: actions/public.php:187 #, php-format msgid "" "This is the public timeline for %%site.name%% but no one has posted anything " @@ -2514,18 +2828,18 @@ msgstr "" "Questa è l'attività pubblica di %%site.name%%, ma nessuno ha ancora scritto " "qualche cosa." -#: actions/public.php:182 +#: actions/public.php:190 msgid "Be the first to post!" msgstr "Fallo tu!" -#: actions/public.php:186 +#: actions/public.php:194 #, php-format msgid "" "Why not [register an account](%%action.register%%) and be the first to post!" msgstr "" "Perché non [crei un account](%%action.register%%) e scrivi qualche cosa!" -#: actions/public.php:233 +#: actions/public.php:241 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2538,7 +2852,7 @@ msgstr "" "net/). [Registrati](%%action.register%%) per condividere messaggi con i tuoi " "amici, i tuoi familiari e colleghi! ([Maggiori informazioni](%%doc.help%%))" -#: actions/public.php:238 +#: actions/public.php:246 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2574,7 +2888,7 @@ msgid "" "one!" msgstr "Perché non [crei un accout](%%action.register%%) e ne scrivi uno tu!" -#: actions/publictagcloud.php:131 +#: actions/publictagcloud.php:134 msgid "Tag cloud" msgstr "Insieme delle etichette" @@ -2715,7 +3029,7 @@ msgstr "Codice di invito non valido." msgid "Registration successful" msgstr "Registrazione riuscita" -#: actions/register.php:114 actions/register.php:503 lib/action.php:457 +#: actions/register.php:114 actions/register.php:503 lib/action.php:463 #: lib/logingroupnav.php:85 msgid "Register" msgstr "Registra" @@ -2759,7 +3073,7 @@ msgid "Same as password above. Required." msgstr "Stessa password di sopra; richiesta" #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:270 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 msgid "Email" msgstr "Email" @@ -2866,7 +3180,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "URL del tuo profilo su un altro servizio di microblog compatibile" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:365 +#: lib/userprofile.php:368 msgid "Subscribe" msgstr "Abbonati" @@ -2904,7 +3218,7 @@ msgstr "Non puoi ripetere i tuoi stessi messaggi." msgid "You already repeated that notice." msgstr "Hai già ripetuto quel messaggio." -#: actions/repeat.php:114 lib/noticelist.php:629 +#: actions/repeat.php:114 lib/noticelist.php:656 msgid "Repeated" msgstr "Ripetuti" @@ -2918,6 +3232,11 @@ msgstr "Ripetuti!" msgid "Replies to %s" msgstr "Risposte a %s" +#: actions/replies.php:127 +#, php-format +msgid "Replies to %1$s, page %2$d" +msgstr "Risposte a %1$s, pagina %2$d" + #: actions/replies.php:144 #, php-format msgid "Replies feed for %s (RSS 1.0)" @@ -2965,6 +3284,10 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "Risposte a %1$s su %2$s!" +#: actions/rsd.php:146 actions/version.php:157 +msgid "StatusNet" +msgstr "StatusNet" + #: actions/sandbox.php:65 actions/unsandbox.php:65 msgid "You cannot sandbox users on this site." msgstr "Non puoi mettere in \"sandbox\" gli utenti su questo sito." @@ -2973,6 +3296,121 @@ msgstr "Non puoi mettere in \"sandbox\" gli utenti su questo sito." msgid "User is already sandboxed." msgstr "L'utente è già nella \"sandbox\"." +#: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:336 +msgid "Sessions" +msgstr "Sessioni" + +#: actions/sessionsadminpanel.php:65 +msgid "Session settings for this StatusNet site." +msgstr "Impostazioni di sessione per questo sito di StatusNet." + +#: actions/sessionsadminpanel.php:175 +msgid "Handle sessions" +msgstr "Gestione sessioni" + +#: actions/sessionsadminpanel.php:177 +msgid "Whether to handle sessions ourselves." +msgstr "Indica se gestire autonomamente le sessioni" + +#: actions/sessionsadminpanel.php:181 +msgid "Session debugging" +msgstr "Debug delle sessioni" + +#: actions/sessionsadminpanel.php:183 +msgid "Turn on debugging output for sessions." +msgstr "Abilita il debug per le sessioni" + +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/useradminpanel.php:293 +msgid "Save site settings" +msgstr "Salva impostazioni" + +#: actions/showapplication.php:82 +msgid "You must be logged in to view an application." +msgstr "Devi eseguire l'accesso per visualizzare un'applicazione." + +#: actions/showapplication.php:157 +msgid "Application profile" +msgstr "Profilo applicazione" + +#: actions/showapplication.php:159 lib/applicationeditform.php:180 +msgid "Icon" +msgstr "Icona" + +#: actions/showapplication.php:169 actions/version.php:195 +#: lib/applicationeditform.php:195 +msgid "Name" +msgstr "Nome" + +#: actions/showapplication.php:178 lib/applicationeditform.php:222 +msgid "Organization" +msgstr "Organizzazione" + +#: actions/showapplication.php:187 actions/version.php:198 +#: lib/applicationeditform.php:209 lib/groupeditform.php:172 +msgid "Description" +msgstr "Descrizione" + +#: actions/showapplication.php:192 actions/showgroup.php:429 +#: lib/profileaction.php:174 +msgid "Statistics" +msgstr "Statistiche" + +#: actions/showapplication.php:203 +#, php-format +msgid "Created by %1$s - %2$s access by default - %3$d users" +msgstr "creata da %1$s - %2$s accessi predefiniti - %3$d utenti" + +#: actions/showapplication.php:213 +msgid "Application actions" +msgstr "Azioni applicazione" + +#: actions/showapplication.php:236 +msgid "Reset key & secret" +msgstr "Reimposta chiave e segreto" + +#: actions/showapplication.php:261 +msgid "Application info" +msgstr "Informazioni applicazione" + +#: actions/showapplication.php:263 +msgid "Consumer key" +msgstr "Chiave consumatore" + +#: actions/showapplication.php:268 +msgid "Consumer secret" +msgstr "Segreto consumatore" + +#: actions/showapplication.php:273 +msgid "Request token URL" +msgstr "URL token di richiesta" + +#: actions/showapplication.php:278 +msgid "Access token URL" +msgstr "URL token di accesso" + +#: actions/showapplication.php:283 +msgid "Authorize URL" +msgstr "URL di autorizzazione" + +#: actions/showapplication.php:288 +msgid "" +"Note: We support HMAC-SHA1 signatures. We do not support the plaintext " +"signature method." +msgstr "" +"Nota: sono supportate firme HMAC-SHA1, ma non è supportato il metodo di " +"firma di testo in chiaro." + +#: actions/showapplication.php:309 +msgid "Are you sure you want to reset your consumer key and secret?" +msgstr "Ripristinare la chiave e il segreto?" + +#: actions/showfavorites.php:79 +#, php-format +msgid "%1$s's favorite notices, page %2$d" +msgstr "Messaggi preferiti di %1$s, pagina %2$d" + #: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "Impossibile recuperare i messaggi preferiti." @@ -3027,19 +3465,24 @@ msgstr "Questo è un modo per condividere ciò che ti piace." #: actions/showgroup.php:82 lib/groupnav.php:86 #, php-format msgid "%s group" -msgstr "Gruppi di %s" +msgstr "Gruppo %s" + +#: actions/showgroup.php:84 +#, php-format +msgid "%1$s group, page %2$d" +msgstr "Gruppi di %1$s, pagina %2$d" #: actions/showgroup.php:218 msgid "Group profile" msgstr "Profilo del gruppo" #: actions/showgroup.php:263 actions/tagother.php:118 -#: actions/userauthorization.php:167 lib/userprofile.php:177 +#: actions/userauthorization.php:175 lib/userprofile.php:177 msgid "URL" msgstr "URL" #: actions/showgroup.php:274 actions/tagother.php:128 -#: actions/userauthorization.php:179 lib/userprofile.php:194 +#: actions/userauthorization.php:187 lib/userprofile.php:194 msgid "Note" msgstr "Nota" @@ -3085,10 +3528,6 @@ msgstr "(nessuno)" msgid "All members" msgstr "Tutti i membri" -#: actions/showgroup.php:429 lib/profileaction.php:174 -msgid "Statistics" -msgstr "Statistiche" - #: actions/showgroup.php:432 msgid "Created" msgstr "Creato" @@ -3152,6 +3591,11 @@ msgstr "Messaggio eliminato." msgid " tagged %s" msgstr " etichettati con %s" +#: actions/showstream.php:79 +#, php-format +msgid "%1$s, page %2$d" +msgstr "%1$s, pagina %2$d" + #: actions/showstream.php:122 #, php-format msgid "Notice feed for %1$s tagged %2$s (RSS 1.0)" @@ -3177,12 +3621,12 @@ msgstr "Feed dei messaggi per %s (Atom)" msgid "FOAF for %s" msgstr "FOAF per %s" -#: actions/showstream.php:191 +#: actions/showstream.php:200 #, php-format msgid "This is the timeline for %1$s but %2$s hasn't posted anything yet." msgstr "Questa è l'attività di %1$s, ma %2$s non ha ancora scritto nulla." -#: actions/showstream.php:196 +#: actions/showstream.php:205 msgid "" "Seen anything interesting recently? You haven't posted any notices yet, now " "would be a good time to start :)" @@ -3190,7 +3634,7 @@ msgstr "" "Visto niente di interessante? Non hai scritto ancora alcun messaggio, questo " "potrebbe essere un buon momento per iniziare! :)" -#: actions/showstream.php:198 +#: actions/showstream.php:207 #, php-format msgid "" "You can try to nudge %1$s or [post something to his or her attention](%%%%" @@ -3199,7 +3643,7 @@ msgstr "" "Puoi provare a richiamare %1$s o [scrivere qualche cosa che attiri la sua " "attenzione](%%%%action.newnotice%%%%?status_textarea=%2$s)." -#: actions/showstream.php:234 +#: actions/showstream.php:243 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3213,7 +3657,7 @@ msgstr "" "i messaggi di **%s** e di molti altri! ([Maggiori informazioni](%%%%doc.help%" "%%%))" -#: actions/showstream.php:239 +#: actions/showstream.php:248 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3224,7 +3668,7 @@ msgstr "" "it.wikipedia.org/wiki/Microblogging) basato sul software libero [StatusNet]" "(http://status.net/). " -#: actions/showstream.php:313 +#: actions/showstream.php:305 #, php-format msgid "Repeat of %s" msgstr "Ripetizione di %s" @@ -3241,199 +3685,145 @@ msgstr "L'utente è già stato zittito." msgid "Basic settings for this StatusNet site." msgstr "Impostazioni di base per questo sito StatusNet." -#: actions/siteadminpanel.php:146 +#: actions/siteadminpanel.php:132 msgid "Site name must have non-zero length." msgstr "Il nome del sito non deve avere lunghezza parti a zero." -#: actions/siteadminpanel.php:154 +#: actions/siteadminpanel.php:140 msgid "You must have a valid contact email address." msgstr "Devi avere un'email di contatto valida." -#: actions/siteadminpanel.php:172 -#, fuzzy, php-format +#: actions/siteadminpanel.php:158 +#, php-format msgid "Unknown language \"%s\"." msgstr "Lingua \"%s\" sconosciuta." -#: actions/siteadminpanel.php:179 +#: actions/siteadminpanel.php:165 msgid "Invalid snapshot report URL." msgstr "URL di segnalazione snapshot non valido." -#: actions/siteadminpanel.php:185 +#: actions/siteadminpanel.php:171 msgid "Invalid snapshot run value." msgstr "Valore di esecuzione dello snapshot non valido." -#: actions/siteadminpanel.php:191 +#: actions/siteadminpanel.php:177 msgid "Snapshot frequency must be a number." msgstr "La frequenza degli snapshot deve essere un numero." -#: actions/siteadminpanel.php:197 +#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "Il limite minimo del testo è di 140 caratteri." -#: actions/siteadminpanel.php:203 +#: actions/siteadminpanel.php:189 msgid "Dupe limit must 1 or more seconds." msgstr "Il limite per i duplicati deve essere di 1 o più secondi." -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:239 msgid "General" msgstr "Generale" -#: actions/siteadminpanel.php:256 +#: actions/siteadminpanel.php:242 msgid "Site name" msgstr "Nome del sito" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:243 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "Il nome del tuo sito, topo \"Acme Microblog\"" -#: actions/siteadminpanel.php:261 +#: actions/siteadminpanel.php:247 msgid "Brought by" msgstr "Offerto da" -#: actions/siteadminpanel.php:262 +#: actions/siteadminpanel.php:248 msgid "Text used for credits link in footer of each page" msgstr "Testo usato per i crediti nel piè di pagina di ogni pagina" -#: actions/siteadminpanel.php:266 +#: actions/siteadminpanel.php:252 msgid "Brought by URL" msgstr "URL per offerto da" -#: actions/siteadminpanel.php:267 +#: actions/siteadminpanel.php:253 msgid "URL used for credits link in footer of each page" msgstr "URL usato per i crediti nel piè di pagina di ogni pagina" -#: actions/siteadminpanel.php:271 +#: actions/siteadminpanel.php:257 msgid "Contact email address for your site" msgstr "Indirizzo email di contatto per il sito" -#: actions/siteadminpanel.php:277 +#: actions/siteadminpanel.php:263 msgid "Local" msgstr "Locale" -#: actions/siteadminpanel.php:288 +#: actions/siteadminpanel.php:274 msgid "Default timezone" msgstr "Fuso orario predefinito" -#: actions/siteadminpanel.php:289 +#: actions/siteadminpanel.php:275 msgid "Default timezone for the site; usually UTC." msgstr "Fuso orario predefinito; tipicamente UTC" -#: actions/siteadminpanel.php:295 +#: actions/siteadminpanel.php:281 msgid "Default site language" msgstr "Lingua predefinita" -#: actions/siteadminpanel.php:303 -msgid "URLs" -msgstr "URL" - -#: actions/siteadminpanel.php:306 -msgid "Server" -msgstr "Server" - -#: actions/siteadminpanel.php:306 -msgid "Site's server hostname." -msgstr "Nome host del server" - -#: actions/siteadminpanel.php:310 -msgid "Fancy URLs" -msgstr "URL semplici" - -#: actions/siteadminpanel.php:312 -msgid "Use fancy (more readable and memorable) URLs?" -msgstr "Usare gli URL semplici (più leggibili e facili da ricordare)?" - -#: actions/siteadminpanel.php:318 -msgid "Access" -msgstr "Accesso" - -#: actions/siteadminpanel.php:321 -msgid "Private" -msgstr "Privato" - -#: actions/siteadminpanel.php:323 -msgid "Prohibit anonymous users (not logged in) from viewing site?" -msgstr "" -"Proibire agli utenti anonimi (che non hanno effettuato l'accesso) di vedere " -"il sito?" - -#: actions/siteadminpanel.php:327 -msgid "Invite only" -msgstr "Solo invito" - -#: actions/siteadminpanel.php:329 -msgid "Make registration invitation only." -msgstr "Rende la registrazione solo su invito" - -#: actions/siteadminpanel.php:333 -msgid "Closed" -msgstr "Chiuso" - -#: actions/siteadminpanel.php:335 -msgid "Disable new registrations." -msgstr "Disabilita la creazione di nuovi account" - -#: actions/siteadminpanel.php:341 +#: actions/siteadminpanel.php:289 msgid "Snapshots" msgstr "Snapshot" -#: actions/siteadminpanel.php:344 +#: actions/siteadminpanel.php:292 msgid "Randomly during Web hit" msgstr "A caso quando avviene un web hit" -#: actions/siteadminpanel.php:345 +#: actions/siteadminpanel.php:293 msgid "In a scheduled job" msgstr "In un job pianificato" -#: actions/siteadminpanel.php:347 +#: actions/siteadminpanel.php:295 msgid "Data snapshots" msgstr "Snapshot dei dati" -#: actions/siteadminpanel.php:348 +#: actions/siteadminpanel.php:296 msgid "When to send statistical data to status.net servers" msgstr "Quando inviare dati statistici a status.net" -#: actions/siteadminpanel.php:353 +#: actions/siteadminpanel.php:301 msgid "Frequency" msgstr "Frequenza" -#: actions/siteadminpanel.php:354 +#: actions/siteadminpanel.php:302 msgid "Snapshots will be sent once every N web hits" msgstr "Gli snapshot verranno inviati ogni N web hit" -#: actions/siteadminpanel.php:359 +#: actions/siteadminpanel.php:307 msgid "Report URL" msgstr "URL per la segnalazione" -#: actions/siteadminpanel.php:360 +#: actions/siteadminpanel.php:308 msgid "Snapshots will be sent to this URL" msgstr "Gli snapshot verranno inviati a questo URL" -#: actions/siteadminpanel.php:367 +#: actions/siteadminpanel.php:315 msgid "Limits" msgstr "Limiti" -#: actions/siteadminpanel.php:370 +#: actions/siteadminpanel.php:318 msgid "Text limit" msgstr "Limiti del testo" -#: actions/siteadminpanel.php:370 +#: actions/siteadminpanel.php:318 msgid "Maximum number of characters for notices." msgstr "Numero massimo di caratteri per messaggo" -#: actions/siteadminpanel.php:374 +#: actions/siteadminpanel.php:322 msgid "Dupe limit" msgstr "Limite duplicati" -#: actions/siteadminpanel.php:374 +#: actions/siteadminpanel.php:322 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" "Quanto tempo gli utenti devono attendere (in secondi) prima di inviare " "nuovamente lo stesso messaggio" -#: actions/siteadminpanel.php:388 actions/useradminpanel.php:313 -msgid "Save site settings" -msgstr "Salva impostazioni" - #: actions/smssettings.php:58 msgid "SMS settings" msgstr "Impostazioni SMS" @@ -3537,15 +3927,26 @@ msgstr "Nessun codice inserito" msgid "You are not subscribed to that profile." msgstr "Non hai una abbonamento a quel profilo." -#: actions/subedit.php:83 +#: actions/subedit.php:83 classes/Subscription.php:89 +#: classes/Subscription.php:116 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:77 +msgid "This action only accepts POST requests." +msgstr "" -#: actions/subscribe.php:69 +#: actions/subscribe.php:107 +#, fuzzy +msgid "No such profile." +msgstr "Nessun file." + +#: actions/subscribe.php:117 +#, fuzzy +msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." +msgstr "Non hai una abbonamento a quel profilo." + +#: actions/subscribe.php:145 msgid "Subscribed" msgstr "Abbonati" @@ -3609,7 +4010,7 @@ msgstr "Queste sono le persone che stai seguendo." msgid "These are the people whose notices %s listens to." msgstr "Queste sono le persone seguite da %s." -#: actions/subscriptions.php:121 +#: actions/subscriptions.php:126 #, php-format msgid "" "You're not listening to anyone's notices right now, try subscribing to " @@ -3624,19 +4025,24 @@ msgstr "" "[usi Twitter](%%action.twittersettings%%), puoi abbonarti automaticamente " "alle persone che già seguivi lì." -#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#: actions/subscriptions.php:128 actions/subscriptions.php:132 #, php-format msgid "%s is not listening to anyone." msgstr "%s non sta seguendo nessuno." -#: actions/subscriptions.php:194 +#: actions/subscriptions.php:199 msgid "Jabber" msgstr "Jabber" -#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:204 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "SMS" +#: actions/tag.php:68 +#, php-format +msgid "Notices tagged with %1$s, page %2$d" +msgstr "Messaggi etichettati con %1$s, pagina %2$d" + #: actions/tag.php:86 #, php-format msgid "Notice feed for tag %s (RSS 1.0)" @@ -3665,7 +4071,8 @@ msgstr "Etichetta %s" msgid "User profile" msgstr "Profilo utente" -#: actions/tagother.php:81 lib/userprofile.php:102 +#: actions/tagother.php:81 actions/userauthorization.php:132 +#: lib/userprofile.php:102 msgid "Photo" msgstr "Fotografia" @@ -3726,7 +4133,7 @@ msgstr "Nessun ID di profilo nella richiesta." msgid "Unsubscribed" msgstr "Abbonamento annullato" -#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#: actions/updateprofile.php:62 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -3743,85 +4150,65 @@ msgstr "Utente" msgid "User settings for this StatusNet site." msgstr "Impostazioni utente per questo sito StatusNet." -#: actions/useradminpanel.php:149 +#: actions/useradminpanel.php:148 msgid "Invalid bio limit. Must be numeric." msgstr "Limite per la biografia non valido. Deve essere numerico." -#: actions/useradminpanel.php:155 +#: actions/useradminpanel.php:154 msgid "Invalid welcome text. Max length is 255 characters." msgstr "" "Testo di benvenuto non valido. La lunghezza massima è di 255 caratteri." -#: actions/useradminpanel.php:165 +#: actions/useradminpanel.php:164 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "Abbonamento predefinito non valido: \"%1$s\" non è un utente." -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 +#: actions/useradminpanel.php:217 lib/accountsettingsaction.php:108 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Profilo" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:221 msgid "Bio Limit" msgstr "Limite biografia" -#: actions/useradminpanel.php:223 +#: actions/useradminpanel.php:222 msgid "Maximum length of a profile bio in characters." msgstr "Lunghezza massima in caratteri della biografia" -#: actions/useradminpanel.php:231 +#: actions/useradminpanel.php:230 msgid "New users" msgstr "Nuovi utenti" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:234 msgid "New user welcome" msgstr "Messaggio per nuovi utenti" -#: actions/useradminpanel.php:236 +#: actions/useradminpanel.php:235 msgid "Welcome text for new users (Max 255 chars)." msgstr "Messaggio di benvenuto per nuovi utenti (max 255 caratteri)" -#: actions/useradminpanel.php:241 +#: actions/useradminpanel.php:240 msgid "Default subscription" msgstr "Abbonamento predefinito" -#: actions/useradminpanel.php:242 +#: actions/useradminpanel.php:241 msgid "Automatically subscribe new users to this user." msgstr "Abbonare automaticamente i nuovi utenti a questo utente" -#: actions/useradminpanel.php:251 +#: actions/useradminpanel.php:250 msgid "Invitations" msgstr "Inviti" -#: actions/useradminpanel.php:256 +#: actions/useradminpanel.php:255 msgid "Invitations enabled" msgstr "Inviti abilitati" -#: actions/useradminpanel.php:258 +#: actions/useradminpanel.php:257 msgid "Whether to allow users to invite new users." msgstr "Indica se consentire agli utenti di invitarne di nuovi" -#: actions/useradminpanel.php:265 -msgid "Sessions" -msgstr "Sessioni" - -#: actions/useradminpanel.php:270 -msgid "Handle sessions" -msgstr "Gestione sessioni" - -#: actions/useradminpanel.php:272 -msgid "Whether to handle sessions ourselves." -msgstr "Indica se gestire autonomamente le sessioni" - -#: actions/useradminpanel.php:276 -msgid "Session debugging" -msgstr "Debug delle sessioni" - -#: actions/useradminpanel.php:278 -msgid "Turn on debugging output for sessions." -msgstr "Abilita il debug per le sessioni" - #: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Autorizza abbonamento" @@ -3835,36 +4222,36 @@ msgstr "" "Controlla i dettagli seguenti per essere sicuro di volerti abbonare ai " "messaggi di questo utente. Se non hai richiesto ciò, fai clic su \"Rifiuta\"." -#: actions/userauthorization.php:188 actions/version.php:165 +#: actions/userauthorization.php:196 actions/version.php:165 msgid "License" msgstr "Licenza" -#: actions/userauthorization.php:209 +#: actions/userauthorization.php:217 msgid "Accept" msgstr "Accetta" -#: actions/userauthorization.php:210 lib/subscribeform.php:115 +#: actions/userauthorization.php:218 lib/subscribeform.php:115 #: lib/subscribeform.php:139 msgid "Subscribe to this user" msgstr "Abbonati a questo utente" -#: actions/userauthorization.php:211 +#: actions/userauthorization.php:219 msgid "Reject" msgstr "Rifiuta" -#: actions/userauthorization.php:212 +#: actions/userauthorization.php:220 msgid "Reject this subscription" msgstr "Rifiuta questo abbonamento" -#: actions/userauthorization.php:225 +#: actions/userauthorization.php:232 msgid "No authorization request!" msgstr "Nessuna richiesta di autorizzazione!" -#: actions/userauthorization.php:247 +#: actions/userauthorization.php:254 msgid "Subscription authorized" msgstr "Abbonamento autorizzato" -#: actions/userauthorization.php:249 +#: actions/userauthorization.php:256 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 " @@ -3874,11 +4261,11 @@ msgstr "" "richiamo. Controlla le istruzioni del sito per i dettagli su come " "autorizzare l'abbonamento. Il tuo token per l'abbonamento è:" -#: actions/userauthorization.php:259 +#: actions/userauthorization.php:266 msgid "Subscription rejected" msgstr "Abbonamento rifiutato" -#: actions/userauthorization.php:261 +#: actions/userauthorization.php:268 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 " @@ -3888,37 +4275,37 @@ msgstr "" "richiamo. Controlla le istruzioni del sito per i dettagli su come rifiutare " "completamente l'abbonamento." -#: actions/userauthorization.php:296 +#: actions/userauthorization.php:303 #, php-format msgid "Listener URI ‘%s’ not found here." msgstr "URL \"%s\" dell'ascoltatore non trovato qui." -#: actions/userauthorization.php:301 +#: actions/userauthorization.php:308 #, php-format msgid "Listenee URI ‘%s’ is too long." msgstr "L'URI \"%s\" di colui che si ascolta è troppo lungo." -#: actions/userauthorization.php:307 +#: actions/userauthorization.php:314 #, php-format msgid "Listenee URI ‘%s’ is a local user." msgstr "L'URI \"%s\" di colui che si ascolta è un utente locale." -#: actions/userauthorization.php:322 +#: actions/userauthorization.php:329 #, php-format msgid "Profile URL ‘%s’ is for a local user." msgstr "L'URL \"%s\" del profilo è per un utente locale." -#: actions/userauthorization.php:338 +#: actions/userauthorization.php:345 #, php-format msgid "Avatar URL ‘%s’ is not valid." msgstr "L'URL \"%s\" dell'immagine non è valido." -#: actions/userauthorization.php:343 +#: actions/userauthorization.php:350 #, php-format msgid "Can’t read avatar URL ‘%s’." msgstr "Impossibile leggere l'URL \"%s\" dell'immagine." -#: actions/userauthorization.php:348 +#: actions/userauthorization.php:355 #, php-format msgid "Wrong image type for avatar URL ‘%s’." msgstr "Tipo di immagine errata per l'URL \"%s\"." @@ -3939,6 +4326,11 @@ msgstr "" msgid "Enjoy your hotdog!" msgstr "Gustati il tuo hotdog!" +#: actions/usergroups.php:64 +#, php-format +msgid "%1$s groups, page %2$d" +msgstr "Gruppi di %1$s, pagina %2$d" + #: actions/usergroups.php:130 msgid "Search for more groups" msgstr "Cerca altri gruppi" @@ -3967,10 +4359,6 @@ msgstr "" "Questo sito esegue il software %1$s versione %2$s, Copyright 2008-2010 " "StatusNet, Inc. e collaboratori." -#: actions/version.php:157 -msgid "StatusNet" -msgstr "StatusNet" - #: actions/version.php:161 msgid "Contributors" msgstr "Collaboratori" @@ -4012,11 +4400,7 @@ msgstr "" msgid "Plugins" msgstr "Plugin" -#: actions/version.php:195 -msgid "Name" -msgstr "Nome" - -#: actions/version.php:196 lib/action.php:741 +#: actions/version.php:196 lib/action.php:747 msgid "Version" msgstr "Versione" @@ -4024,10 +4408,6 @@ msgstr "Versione" msgid "Author(s)" msgstr "Autori" -#: actions/version.php:198 lib/groupeditform.php:172 -msgid "Description" -msgstr "Descrizione" - #: classes/File.php:144 #, php-format msgid "" @@ -4050,19 +4430,16 @@ msgstr "" "Un file di questa dimensione supererebbe la tua quota mensile di %d byte." #: classes/Group_member.php:41 -#, fuzzy msgid "Group join failed." -msgstr "Profilo del gruppo" +msgstr "Ingresso nel gruppo non riuscito." #: classes/Group_member.php:53 -#, fuzzy msgid "Not part of group." -msgstr "Impossibile aggiornare il gruppo." +msgstr "Non si fa parte del gruppo." #: classes/Group_member.php:60 -#, fuzzy msgid "Group leave failed." -msgstr "Profilo del gruppo" +msgstr "Uscita dal gruppo non riuscita." #: classes/Login_token.php:76 #, php-format @@ -4081,27 +4458,27 @@ msgstr "Impossibile inserire il messaggio." msgid "Could not update message with new URI." msgstr "Impossibile aggiornare il messaggio con il nuovo URI." -#: classes/Notice.php:171 +#: classes/Notice.php:157 #, php-format msgid "DB error inserting hashtag: %s" msgstr "Errore del DB nell'inserire un hashtag: %s" -#: classes/Notice.php:225 +#: classes/Notice.php:222 msgid "Problem saving notice. Too long." msgstr "Problema nel salvare il messaggio. Troppo lungo." -#: classes/Notice.php:229 +#: classes/Notice.php:226 msgid "Problem saving notice. Unknown user." msgstr "Problema nel salvare il messaggio. Utente sconosciuto." -#: classes/Notice.php:234 +#: classes/Notice.php:231 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:240 +#: classes/Notice.php:237 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." @@ -4109,34 +4486,57 @@ msgstr "" "Troppi messaggi duplicati troppo velocemente; fai una pausa e scrivi di " "nuovo tra qualche minuto." -#: classes/Notice.php:246 +#: classes/Notice.php:243 msgid "You are banned from posting notices on this site." msgstr "Ti è proibito inviare messaggi su questo sito." -#: classes/Notice.php:305 classes/Notice.php:330 +#: classes/Notice.php:309 classes/Notice.php:335 msgid "Problem saving notice." msgstr "Problema nel salvare il messaggio." -#: classes/Notice.php:1052 -#, php-format -msgid "DB error inserting reply: %s" -msgstr "Errore del DB nell'inserire la risposta: %s" +#: classes/Notice.php:882 +msgid "Problem saving group inbox." +msgstr "Problema nel salvare la casella della posta del gruppo." -#: classes/Notice.php:1423 +#: classes/Notice.php:1407 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" -#: classes/User.php:382 +#: classes/Subscription.php:66 lib/oauthstore.php:465 +msgid "You have been banned from subscribing." +msgstr "Non ti è possibile abbonarti." + +#: classes/Subscription.php:70 +msgid "Already subscribed!" +msgstr "Hai già l'abbonamento!" + +#: classes/Subscription.php:74 +msgid "User has blocked you." +msgstr "L'utente non ti consente di seguirlo." + +#: classes/Subscription.php:157 +msgid "Not subscribed!" +msgstr "Non hai l'abbonamento!" + +#: classes/Subscription.php:163 +msgid "Couldn't delete self-subscription." +msgstr "Impossibile eliminare l'auto-abbonamento." + +#: classes/Subscription.php:179 lib/subs.php:69 +msgid "Couldn't delete subscription." +msgstr "Impossibile eliminare l'abbonamento." + +#: classes/User.php:372 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "Benvenuti su %1$s, @%2$s!" -#: classes/User_group.php:380 +#: classes/User_group.php:423 msgid "Could not create group." msgstr "Impossibile creare il gruppo." -#: classes/User_group.php:409 +#: classes/User_group.php:452 msgid "Could not set group membership." msgstr "Impossibile impostare la membership al gruppo." @@ -4169,7 +4569,7 @@ msgid "Other options" msgstr "Altre opzioni" #: lib/action.php:144 -#, fuzzy, php-format +#, php-format msgid "%1$s - %2$s" msgstr "%1$s - %2$s" @@ -4177,128 +4577,124 @@ msgstr "%1$s - %2$s" msgid "Untitled page" msgstr "Pagina senza nome" -#: lib/action.php:427 +#: lib/action.php:433 msgid "Primary site navigation" msgstr "Esplorazione sito primaria" -#: lib/action.php:433 +#: lib/action.php:439 msgid "Home" msgstr "Home" -#: lib/action.php:433 +#: lib/action.php:439 msgid "Personal profile and friends timeline" msgstr "Profilo personale e attività degli amici" -#: lib/action.php:435 -msgid "Account" -msgstr "Account" - -#: lib/action.php:435 +#: lib/action.php:441 msgid "Change your email, avatar, password, profile" msgstr "Modifica la tua email, immagine, password o il tuo profilo" -#: lib/action.php:438 +#: lib/action.php:444 msgid "Connect" msgstr "Connetti" -#: lib/action.php:438 +#: lib/action.php:444 msgid "Connect to services" msgstr "Connettiti con altri servizi" -#: lib/action.php:442 +#: lib/action.php:448 msgid "Change site configuration" msgstr "Modifica la configurazione del sito" -#: lib/action.php:446 lib/subgroupnav.php:105 +#: lib/action.php:452 lib/subgroupnav.php:105 msgid "Invite" msgstr "Invita" -#: lib/action.php:447 lib/subgroupnav.php:106 +#: lib/action.php:453 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:452 +#: lib/action.php:458 msgid "Logout" msgstr "Esci" -#: lib/action.php:452 +#: lib/action.php:458 msgid "Logout from the site" msgstr "Termina la tua sessione sul sito" -#: lib/action.php:457 +#: lib/action.php:463 msgid "Create an account" msgstr "Crea un account" -#: lib/action.php:460 +#: lib/action.php:466 msgid "Login to the site" msgstr "Accedi al sito" -#: lib/action.php:463 lib/action.php:726 +#: lib/action.php:469 lib/action.php:732 msgid "Help" msgstr "Aiuto" -#: lib/action.php:463 +#: lib/action.php:469 msgid "Help me!" msgstr "Aiutami!" -#: lib/action.php:466 lib/searchaction.php:127 +#: lib/action.php:472 lib/searchaction.php:127 msgid "Search" msgstr "Cerca" -#: lib/action.php:466 +#: lib/action.php:472 msgid "Search for people or text" msgstr "Cerca persone o del testo" -#: lib/action.php:487 +#: lib/action.php:493 msgid "Site notice" msgstr "Messaggio del sito" -#: lib/action.php:553 +#: lib/action.php:559 msgid "Local views" msgstr "Viste locali" -#: lib/action.php:619 +#: lib/action.php:625 msgid "Page notice" msgstr "Pagina messaggio" -#: lib/action.php:721 +#: lib/action.php:727 msgid "Secondary site navigation" msgstr "Esplorazione secondaria del sito" -#: lib/action.php:728 +#: lib/action.php:734 msgid "About" msgstr "Informazioni" -#: lib/action.php:730 +#: lib/action.php:736 msgid "FAQ" msgstr "FAQ" -#: lib/action.php:734 +#: lib/action.php:740 msgid "TOS" msgstr "TOS" -#: lib/action.php:737 +#: lib/action.php:743 msgid "Privacy" msgstr "Privacy" -#: lib/action.php:739 +#: lib/action.php:745 msgid "Source" msgstr "Sorgenti" -#: lib/action.php:743 +#: lib/action.php:749 msgid "Contact" msgstr "Contatti" -#: lib/action.php:745 +#: lib/action.php:751 msgid "Badge" msgstr "Badge" -#: lib/action.php:773 +#: lib/action.php:779 msgid "StatusNet software license" msgstr "Licenza del software StatusNet" -#: lib/action.php:776 +#: lib/action.php:782 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4307,12 +4703,12 @@ msgstr "" "**%%site.name%%** è un servizio di microblog offerto da [%%site.broughtby%%]" "(%%site.broughtbyurl%%). " -#: lib/action.php:778 +#: lib/action.php:784 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** è un servizio di microblog. " -#: lib/action.php:780 +#: lib/action.php:786 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4323,33 +4719,58 @@ msgstr "" "s, disponibile nei termini della licenza [GNU Affero General Public License]" "(http://www.fsf.org/licensing/licenses/agpl-3.0.html)." -#: lib/action.php:794 +#: lib/action.php:801 msgid "Site content license" msgstr "Licenza del contenuto del sito" -#: lib/action.php:803 +#: lib/action.php:806 +#, php-format +msgid "Content and data of %1$s are private and confidential." +msgstr "I contenuti e i dati di %1$s sono privati e confidenziali." + +#: lib/action.php:811 +#, php-format +msgid "Content and data copyright by %1$s. All rights reserved." +msgstr "" +"I contenuti e i dati sono copyright di %1$s. Tutti i diritti riservati." + +#: lib/action.php:814 +msgid "Content and data copyright by contributors. All rights reserved." +msgstr "" +"I contenuti e i dati sono forniti dai collaboratori. Tutti i diritti " +"riservati." + +#: lib/action.php:827 msgid "All " msgstr "Tutti " -#: lib/action.php:808 +#: lib/action.php:833 msgid "license." msgstr "licenza." -#: lib/action.php:1102 +#: lib/action.php:1132 msgid "Pagination" msgstr "Paginazione" -#: lib/action.php:1111 +#: lib/action.php:1141 msgid "After" msgstr "Successivi" -#: lib/action.php:1119 +#: lib/action.php:1149 msgid "Before" msgstr "Precedenti" -#: lib/action.php:1167 -msgid "There was a problem with your session token." -msgstr "Si è verificato un problema con il tuo token di sessione." +#: lib/activity.php:382 +msgid "Can't handle remote content yet." +msgstr "" + +#: lib/activity.php:410 +msgid "Can't handle embedded XML content yet." +msgstr "" + +#: lib/activity.php:414 +msgid "Can't handle embedded Base64 content yet." +msgstr "" #: lib/adminpanelaction.php:96 msgid "You cannot make changes to this site." @@ -4379,10 +4800,101 @@ msgstr "Configurazione di base" msgid "Design configuration" msgstr "Configurazione aspetto" -#: lib/adminpanelaction.php:322 lib/adminpanelaction.php:327 +#: lib/adminpanelaction.php:322 +msgid "User configuration" +msgstr "Configurazione utente" + +#: lib/adminpanelaction.php:327 +msgid "Access configuration" +msgstr "Configurazione di accesso" + +#: lib/adminpanelaction.php:332 msgid "Paths configuration" msgstr "Configurazione percorsi" +#: lib/adminpanelaction.php:337 +msgid "Sessions configuration" +msgstr "Configurazione sessioni" + +#: lib/apiauth.php:95 +msgid "API resource requires read-write access, but you only have read access." +msgstr "" +"Le risorse API richiedono accesso lettura-scrittura, ma si dispone del solo " +"accesso in lettura." + +#: lib/apiauth.php:273 +#, php-format +msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" +msgstr "" +"Tentativo di autorizzazione API non riuscito, soprannome = %1$s, proxy = %2" +"$s, IP = %3$s" + +#: lib/applicationeditform.php:136 +msgid "Edit application" +msgstr "Modifica applicazione" + +#: lib/applicationeditform.php:184 +msgid "Icon for this application" +msgstr "Icona per questa applicazione" + +#: lib/applicationeditform.php:204 +#, php-format +msgid "Describe your application in %d characters" +msgstr "Descrivi l'applicazione in %d caratteri" + +#: lib/applicationeditform.php:207 +msgid "Describe your application" +msgstr "Descrivi l'applicazione" + +#: lib/applicationeditform.php:216 +msgid "Source URL" +msgstr "URL sorgente" + +#: lib/applicationeditform.php:218 +msgid "URL of the homepage of this application" +msgstr "URL della pagina web di questa applicazione" + +#: lib/applicationeditform.php:224 +msgid "Organization responsible for this application" +msgstr "Organizzazione responsabile per questa applicazione" + +#: lib/applicationeditform.php:230 +msgid "URL for the homepage of the organization" +msgstr "URL della pagina web dell'organizzazione" + +#: lib/applicationeditform.php:236 +msgid "URL to redirect to after authentication" +msgstr "URL verso cui redirigere dopo l'autenticazione" + +#: lib/applicationeditform.php:258 +msgid "Browser" +msgstr "Browser" + +#: lib/applicationeditform.php:274 +msgid "Desktop" +msgstr "Desktop" + +#: lib/applicationeditform.php:275 +msgid "Type of application, browser or desktop" +msgstr "Tipo di applicazione, browser o desktop" + +#: lib/applicationeditform.php:297 +msgid "Read-only" +msgstr "Sola lettura" + +#: lib/applicationeditform.php:315 +msgid "Read-write" +msgstr "Lettura-scrittura" + +#: lib/applicationeditform.php:316 +msgid "Default access for this application: read-only, or read-write" +msgstr "" +"Accesso predefinito per questa applicazione, sola lettura o lettura-scrittura" + +#: lib/applicationlist.php:154 +msgid "Revoke" +msgstr "Revoca" + #: lib/attachmentlist.php:87 msgid "Attachments" msgstr "Allegati" @@ -4403,11 +4915,11 @@ msgstr "Messaggi in cui appare questo allegato" msgid "Tags for this attachment" msgstr "Etichette per questo allegato" -#: lib/authenticationplugin.php:182 lib/authenticationplugin.php:187 +#: lib/authenticationplugin.php:218 lib/authenticationplugin.php:223 msgid "Password changing failed" msgstr "Modifica della password non riuscita" -#: lib/authenticationplugin.php:197 +#: lib/authenticationplugin.php:233 msgid "Password changing is not allowed" msgstr "La modifica della password non è permessa" @@ -4558,82 +5070,92 @@ msgstr "Errore nel salvare il messaggio." msgid "Specify the name of the user to subscribe to" msgstr "Specifica il nome dell'utente a cui abbonarti." -#: lib/command.php:554 +#: lib/command.php:554 lib/command.php:589 +msgid "No such user" +msgstr "Utente inesistente." + +#: lib/command.php:561 #, php-format msgid "Subscribed to %s" msgstr "Abbonati a %s" -#: lib/command.php:575 +#: lib/command.php:582 lib/command.php:685 msgid "Specify the name of the user to unsubscribe from" msgstr "Specifica il nome dell'utente da cui annullare l'abbonamento." -#: lib/command.php:582 +#: lib/command.php:595 #, php-format msgid "Unsubscribed from %s" msgstr "Abbonamento a %s annullato" -#: lib/command.php:600 lib/command.php:623 +#: lib/command.php:613 lib/command.php:636 msgid "Command not yet implemented." msgstr "Comando non ancora implementato." -#: lib/command.php:603 +#: lib/command.php:616 msgid "Notification off." msgstr "Notifiche disattivate." -#: lib/command.php:605 +#: lib/command.php:618 msgid "Can't turn off notification." msgstr "Impossibile disattivare le notifiche." -#: lib/command.php:626 +#: lib/command.php:639 msgid "Notification on." msgstr "Notifiche attivate." -#: lib/command.php:628 +#: lib/command.php:641 msgid "Can't turn on notification." msgstr "Impossibile attivare le notifiche." -#: lib/command.php:641 +#: lib/command.php:654 msgid "Login command is disabled" msgstr "Il comando di accesso è disabilitato" -#: lib/command.php:652 +#: lib/command.php:665 #, php-format msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "" "Questo collegamento è utilizzabile una sola volta ed è valido solo per 2 " "minuti: %s" -#: lib/command.php:668 +#: lib/command.php:692 +#, fuzzy, php-format +msgid "Unsubscribed %s" +msgstr "Abbonamento a %s annullato" + +#: lib/command.php:709 msgid "You are not subscribed to anyone." msgstr "Il tuo abbonamento è stato annullato." -#: lib/command.php:670 +#: lib/command.php:711 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "Persona di cui hai già un abbonamento:" msgstr[1] "Persone di cui hai già un abbonamento:" -#: lib/command.php:690 +#: lib/command.php:731 msgid "No one is subscribed to you." msgstr "Nessuno è abbonato ai tuoi messaggi." -#: lib/command.php:692 +#: lib/command.php:733 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "Questa persona è abbonata ai tuoi messaggi:" msgstr[1] "Queste persone sono abbonate ai tuoi messaggi:" -#: lib/command.php:712 +#: lib/command.php:753 msgid "You are not a member of any groups." msgstr "Non fai parte di alcun gruppo." -#: lib/command.php:714 +#: lib/command.php:755 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "Non fai parte di questo gruppo:" msgstr[1] "Non fai parte di questi gruppi:" -#: lib/command.php:728 +#: lib/command.php:769 +#, fuzzy msgid "" "Commands:\n" "on - turn on notifications\n" @@ -4647,6 +5169,7 @@ msgid "" "d - direct message to user\n" "get - get last notice from user\n" "whois - get profile info on user\n" +"lose - force user to stop following you\n" "fav - add user's last notice as a 'fave'\n" "fav # - add notice with the given id as a 'fave'\n" "repeat # - repeat a notice with a given id\n" @@ -4713,21 +5236,21 @@ msgstr "" "tracks - non ancora implementato\n" "tracking - non ancora implementato\n" -#: lib/common.php:131 +#: lib/common.php:136 msgid "No configuration file found. " msgstr "Non è stato trovato alcun file di configurazione. " -#: lib/common.php:132 +#: lib/common.php:137 msgid "I looked for configuration files in the following places: " msgstr "I file di configurazione sono stati cercati in questi posti: " -#: lib/common.php:134 +#: lib/common.php:139 msgid "You may wish to run the installer to fix this." msgstr "" "Potrebbe essere necessario lanciare il programma d'installazione per " "correggere il problema." -#: lib/common.php:135 +#: lib/common.php:140 msgid "Go to the installer." msgstr "Vai al programma d'installazione." @@ -4743,6 +5266,14 @@ msgstr "Messaggi via messaggistica istantanea (MI)" msgid "Updates by SMS" msgstr "Messaggi via SMS" +#: lib/connectsettingsaction.php:120 +msgid "Connections" +msgstr "Connessioni" + +#: lib/connectsettingsaction.php:121 +msgid "Authorized connected applications" +msgstr "Applicazioni collegate autorizzate" + #: lib/dberroraction.php:60 msgid "Database error" msgstr "Errore del database" @@ -4928,15 +5459,15 @@ msgstr "MB" msgid "kB" msgstr "kB" -#: lib/jabber.php:202 +#: lib/jabber.php:220 #, php-format msgid "[%s]" msgstr "[%s]" -#: lib/jabber.php:385 -#, fuzzy, php-format +#: lib/jabber.php:400 +#, php-format msgid "Unknown inbox source %d." -msgstr "Lingua \"%s\" sconosciuta." +msgstr "Sorgente casella in arrivo %d sconosciuta." #: lib/joinform.php:114 msgid "Join" @@ -5214,7 +5745,7 @@ msgstr "" "iniziare una conversazione con altri utenti. Altre persone possono mandare " "messaggi riservati solamente a te." -#: lib/mailbox.php:227 lib/noticelist.php:477 +#: lib/mailbox.php:227 lib/noticelist.php:482 msgid "from" msgstr "via" @@ -5324,67 +5855,63 @@ msgid "Attach a file" msgstr "Allega un file" #: lib/noticeform.php:212 -#, fuzzy msgid "Share my location" msgstr "Condividi la mia posizione" #: lib/noticeform.php:215 -#, fuzzy msgid "Do not share my location" msgstr "Non condividere la mia posizione" #: lib/noticeform.php:216 -msgid "Hide this info" -msgstr "Nascondi info" - -#: lib/noticeform.php:217 msgid "" "Sorry, retrieving your geo location is taking longer than expected, please " "try again later" msgstr "" +"Il recupero della tua posizione geografica sta impiegando più tempo del " +"previsto. Riprova più tardi." -#: lib/noticelist.php:428 +#: lib/noticelist.php:429 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" -#: lib/noticelist.php:429 +#: lib/noticelist.php:430 msgid "N" msgstr "N" -#: lib/noticelist.php:429 +#: lib/noticelist.php:430 msgid "S" msgstr "S" -#: lib/noticelist.php:430 +#: lib/noticelist.php:431 msgid "E" msgstr "E" -#: lib/noticelist.php:430 +#: lib/noticelist.php:431 msgid "W" msgstr "O" -#: lib/noticelist.php:436 +#: lib/noticelist.php:438 msgid "at" msgstr "presso" -#: lib/noticelist.php:531 +#: lib/noticelist.php:558 msgid "in context" -msgstr "nel contesto" +msgstr "in una discussione" -#: lib/noticelist.php:556 +#: lib/noticelist.php:583 msgid "Repeated by" msgstr "Ripetuto da" -#: lib/noticelist.php:585 +#: lib/noticelist.php:610 msgid "Reply to this notice" msgstr "Rispondi a questo messaggio" -#: lib/noticelist.php:586 +#: lib/noticelist.php:611 msgid "Reply" msgstr "Rispondi" -#: lib/noticelist.php:628 +#: lib/noticelist.php:655 msgid "Notice repeated" msgstr "Messaggio ripetuto" @@ -5416,11 +5943,7 @@ msgstr "Errore nell'inserire il profilo remoto" msgid "Duplicate notice" msgstr "Messaggio duplicato" -#: lib/oauthstore.php:466 lib/subs.php:48 -msgid "You have been banned from subscribing." -msgstr "Non ti è possibile abbonarti." - -#: lib/oauthstore.php:491 +#: lib/oauthstore.php:490 msgid "Couldn't insert new subscription." msgstr "Impossibile inserire un nuovo abbonamento." @@ -5436,19 +5959,19 @@ msgstr "Risposte" msgid "Favorites" msgstr "Preferiti" -#: lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "In arrivo" -#: lib/personalgroupnav.php:125 +#: lib/personalgroupnav.php:126 msgid "Your incoming messages" msgstr "I tuoi messaggi in arrivo" -#: lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 msgid "Outbox" msgstr "Inviati" -#: lib/personalgroupnav.php:130 +#: lib/personalgroupnav.php:131 msgid "Your sent messages" msgstr "I tuoi messaggi inviati" @@ -5525,6 +6048,10 @@ msgstr "Ripetere questo messaggio?" msgid "Repeat this notice" msgstr "Ripeti questo messaggio" +#: lib/router.php:665 +msgid "No single user defined for single-user mode." +msgstr "Nessun utente singolo definito per la modalità single-user." + #: lib/sandboxform.php:67 msgid "Sandbox" msgstr "Sandbox" @@ -5592,34 +6119,6 @@ msgstr "Persone abbonate a %s" msgid "Groups %s is a member of" msgstr "Gruppi di cui %s fa parte" -#: lib/subs.php:52 -msgid "Already subscribed!" -msgstr "Hai già l'abbonamento!" - -#: lib/subs.php:56 -msgid "User has blocked you." -msgstr "L'utente non ti consente di seguirlo." - -#: lib/subs.php:63 -msgid "Could not subscribe." -msgstr "Impossibile abbonarsi." - -#: lib/subs.php:82 -msgid "Could not subscribe other to you." -msgstr "Impossibile abbonare altri a te." - -#: lib/subs.php:137 -msgid "Not subscribed!" -msgstr "Non hai l'abbonamento!" - -#: lib/subs.php:142 -msgid "Couldn't delete self-subscription." -msgstr "Impossibile eliminare l'auto-abbonamento." - -#: lib/subs.php:158 -msgid "Couldn't delete subscription." -msgstr "Impossibile eliminare l'abbonamento." - #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -5670,67 +6169,67 @@ msgstr "Modifica immagine" msgid "User actions" msgstr "Azioni utente" -#: lib/userprofile.php:248 +#: lib/userprofile.php:251 msgid "Edit profile settings" msgstr "Modifica impostazioni del profilo" -#: lib/userprofile.php:249 +#: lib/userprofile.php:252 msgid "Edit" msgstr "Modifica" -#: lib/userprofile.php:272 +#: lib/userprofile.php:275 msgid "Send a direct message to this user" msgstr "Invia un messaggio diretto a questo utente" -#: lib/userprofile.php:273 +#: lib/userprofile.php:276 msgid "Message" msgstr "Messaggio" -#: lib/userprofile.php:311 +#: lib/userprofile.php:314 msgid "Moderate" msgstr "Modera" -#: lib/util.php:877 +#: lib/util.php:952 msgid "a few seconds ago" msgstr "pochi secondi fa" -#: lib/util.php:879 +#: lib/util.php:954 msgid "about a minute ago" msgstr "circa un minuto fa" -#: lib/util.php:881 +#: lib/util.php:956 #, php-format msgid "about %d minutes ago" msgstr "circa %d minuti fa" -#: lib/util.php:883 +#: lib/util.php:958 msgid "about an hour ago" msgstr "circa un'ora fa" -#: lib/util.php:885 +#: lib/util.php:960 #, php-format msgid "about %d hours ago" msgstr "circa %d ore fa" -#: lib/util.php:887 +#: lib/util.php:962 msgid "about a day ago" msgstr "circa un giorno fa" -#: lib/util.php:889 +#: lib/util.php:964 #, php-format msgid "about %d days ago" msgstr "circa %d giorni fa" -#: lib/util.php:891 +#: lib/util.php:966 msgid "about a month ago" msgstr "circa un mese fa" -#: lib/util.php:893 +#: lib/util.php:968 #, php-format msgid "about %d months ago" msgstr "circa %d mesi fa" -#: lib/util.php:895 +#: lib/util.php:970 msgid "about a year ago" msgstr "circa un anno fa" @@ -5744,7 +6243,7 @@ msgstr "%s non è un colore valido." msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "%s non è un colore valido. Usa 3 o 6 caratteri esadecimali." -#: scripts/xmppdaemon.php:301 +#: lib/xmppmanager.php:402 #, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "Messaggio troppo lungo: massimo %1$d caratteri, inviati %2$d." diff --git a/locale/ja/LC_MESSAGES/statusnet.po b/locale/ja/LC_MESSAGES/statusnet.po index b3c04d2f43..e05ddbd153 100644 --- a/locale/ja/LC_MESSAGES/statusnet.po +++ b/locale/ja/LC_MESSAGES/statusnet.po @@ -11,17 +11,69 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-01-13 22:04+0000\n" -"PO-Revision-Date: 2010-01-13 22:05:37+0000\n" +"POT-Creation-Date: 2010-02-24 23:49+0000\n" +"PO-Revision-Date: 2010-02-24 23:51:12+0000\n" "Language-Team: Japanese\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha (r61027); Translate extension (2010-01-04)\n" +"X-Generator: MediaWiki 1.17alpha (r62925); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: actions/accessadminpanel.php:54 lib/adminpanelaction.php:326 +msgid "Access" +msgstr "アクセス" + +#: actions/accessadminpanel.php:65 +msgid "Site access settings" +msgstr "サイトアクセス設定" + +#: actions/accessadminpanel.php:158 +msgid "Registration" +msgstr "登録" + +#: actions/accessadminpanel.php:161 +msgid "Private" +msgstr "プライベート" + +#: actions/accessadminpanel.php:163 +msgid "Prohibit anonymous users (not logged in) from viewing site?" +msgstr "匿名ユーザー(ログインしていません)がサイトを見るのを禁止しますか?" + +#: actions/accessadminpanel.php:167 +msgid "Invite only" +msgstr "招待のみ" + +#: actions/accessadminpanel.php:169 +msgid "Make registration invitation only." +msgstr "招待のみ登録する" + +#: actions/accessadminpanel.php:173 +msgid "Closed" +msgstr "閉じられた" + +#: actions/accessadminpanel.php:175 +msgid "Disable new registrations." +msgstr "新規登録を無効。" + +#: actions/accessadminpanel.php:189 actions/designadminpanel.php:586 +#: actions/emailsettings.php:195 actions/imsettings.php:163 +#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 +#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 +#: actions/siteadminpanel.php:336 actions/smssettings.php:181 +#: actions/subscriptions.php:208 actions/tagother.php:154 +#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 lib/designsettings.php:256 +#: lib/groupeditform.php:202 +msgid "Save" +msgstr "保存" + +#: actions/accessadminpanel.php:189 +msgid "Save access settings" +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" @@ -36,25 +88,29 @@ msgstr "そのようなページはありません。" #: 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:144 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apistatusesupdate.php:148 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:78 #: actions/apitimelinehome.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/otp.php:76 #: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154 -#: actions/replies.php:73 actions/repliesrss.php:38 +#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 #: 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:302 lib/command.php:355 #: lib/command.php:401 lib/command.php:462 lib/command.php:518 #: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 -#: lib/subs.php:34 lib/subs.php:125 msgid "No such user." -msgstr "そのような利用者はいません。" +msgstr "そのようなユーザはいません。" + +#: actions/all.php:84 +#, php-format +msgid "%1$s and friends, page %2$d" +msgstr "%1$s と友人、ページ %2$d" #: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 -#: actions/apitimelinefriends.php:115 actions/apitimelinehome.php:115 +#: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" @@ -99,7 +155,7 @@ msgstr "" "プロフィールから [%1$s さんに合図](../%2$s) したり、[知らせたいことについて投" "稿](%%%%action.newnotice%%%%?status_textarea=%3$s) したりできます。" -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211 #, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " @@ -112,8 +168,8 @@ msgstr "" msgid "You and friends" msgstr "あなたと友人" -#: actions/allrss.php:119 actions/apitimelinefriends.php:122 -#: actions/apitimelinehome.php:122 +#: actions/allrss.php:119 actions/apitimelinefriends.php:119 +#: actions/apitimelinehome.php:120 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "%2$s に %1$s と友人からの更新があります!" @@ -123,23 +179,23 @@ msgstr "%2$s に %1$s と友人からの更新があります!" #: actions/apiaccountupdateprofile.php:97 #: actions/apiaccountupdateprofilebackgroundimage.php:94 #: actions/apiaccountupdateprofilecolors.php:118 -#: 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:136 actions/apigroupismember.php:114 -#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 -#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 -#: actions/apigroupmembership.php:106 actions/apigroupshow.php:105 -#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 -#: actions/apistatusesretweets.php:112 actions/apistatusesshow.php:108 -#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93 -#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:146 -#: actions/apitimelinefriends.php:156 actions/apitimelinegroup.php:150 -#: actions/apitimelinehome.php:156 actions/apitimelinementions.php:151 -#: actions/apitimelinepublic.php:131 actions/apitimelineretweetedbyme.php:122 +#: actions/apiaccountverifycredentials.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:128 actions/apigroupcreate.php:136 +#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 +#: actions/apigroupleave.php:141 actions/apigrouplist.php:132 +#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 +#: actions/apigroupshow.php:115 actions/apihelptest.php:88 +#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 +#: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 #: actions/apitimelineretweetedtome.php:121 -#: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141 -#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 +#: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 +#: actions/apitimelineuser.php:207 actions/apiusershow.php:101 msgid "API method not found." msgstr "API メソッドが見つかりません。" @@ -153,7 +209,7 @@ msgstr "API メソッドが見つかりません。" #: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 #: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 #: actions/apigroupleave.php:91 actions/apistatusesretweet.php:65 -#: actions/apistatusesupdate.php:114 +#: actions/apistatusesupdate.php:118 msgid "This method requires a POST." msgstr "このメソッドには POST が必要です。" @@ -167,7 +223,7 @@ msgstr "" #: actions/apiaccountupdatedeliverydevice.php:132 msgid "Could not update user." -msgstr "利用者を更新できませんでした。" +msgstr "ユーザを更新できませんでした。" #: actions/apiaccountupdateprofile.php:112 #: actions/apiaccountupdateprofilebackgroundimage.php:194 @@ -176,7 +232,7 @@ msgstr "利用者を更新できませんでした。" #: 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 "利用者はプロフィールをもっていません。" +msgstr "ユーザはプロフィールをもっていません。" #: actions/apiaccountupdateprofile.php:147 msgid "Could not save profile." @@ -184,8 +240,9 @@ msgstr "プロフィールを保存できませんでした。" #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:97 -#: actions/apistatusesupdate.php:127 actions/avatarsettings.php:257 -#: actions/designadminpanel.php:122 actions/newnotice.php:94 +#: actions/apistatusesupdate.php:131 actions/avatarsettings.php:257 +#: actions/designadminpanel.php:122 actions/editapplication.php:118 +#: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 #, php-format msgid "" @@ -216,11 +273,11 @@ msgstr "自分自身をブロックすることはできません!" #: actions/apiblockcreate.php:126 msgid "Block user failed." -msgstr "利用者のブロックに失敗しました。" +msgstr "ユーザのブロックに失敗しました。" #: actions/apiblockdestroy.php:114 msgid "Unblock user failed." -msgstr "利用者のブロック解除に失敗しました。" +msgstr "ユーザのブロック解除に失敗しました。" #: actions/apidirectmessage.php:89 #, php-format @@ -253,11 +310,11 @@ msgstr "長すぎます。メッセージは最大 %d 字までです。" #: actions/apidirectmessagenew.php:146 msgid "Recipient user not found." -msgstr "受け取り手の利用者が見つかりません。" +msgstr "受け取り手のユーザが見つかりません。" #: actions/apidirectmessagenew.php:150 msgid "Can't send direct messages to users who aren't your friend." -msgstr "友人でない利用者にダイレクトメッセージを送ることはできません。" +msgstr "友人でないユーザにダイレクトメッセージを送ることはできません。" #: actions/apifavoritecreate.php:108 actions/apifavoritedestroy.php:109 #: actions/apistatusesdestroy.php:113 @@ -282,17 +339,17 @@ msgstr "お気に入りを取り消すことができません。" #: actions/apifriendshipscreate.php:109 msgid "Could not follow user: User not found." -msgstr "利用者をフォローできませんでした: 利用者が見つかりません。" +msgstr "ユーザをフォローできませんでした: ユーザが見つかりません。" #: actions/apifriendshipscreate.php:118 #, php-format msgid "Could not follow user: %s is already on your list." msgstr "" -"利用者をフォローできませんでした: %s は既にあなたのリストに入っています。" +"ユーザをフォローできませんでした: %s は既にあなたのリストに入っています。" #: actions/apifriendshipsdestroy.php:109 msgid "Could not unfollow user: User not found." -msgstr "利用者のフォローを停止できませんでした: 利用者が見つかりません。" +msgstr "ユーザのフォローを停止できませんでした: ユーザが見つかりません。" #: actions/apifriendshipsdestroy.php:120 msgid "You cannot unfollow yourself." @@ -302,11 +359,11 @@ msgstr "自分自身をフォロー停止することはできません。" msgid "Two user ids or screen_names must be supplied." msgstr "ふたつのIDかスクリーンネームが必要です。" -#: actions/apifriendshipsshow.php:135 +#: actions/apifriendshipsshow.php:134 msgid "Could not determine source user." msgstr "ソースユーザーを決定できません。" -#: actions/apifriendshipsshow.php:143 +#: actions/apifriendshipsshow.php:142 msgid "Could not find target user." msgstr "ターゲットユーザーを見つけられません。" @@ -330,7 +387,8 @@ msgstr "そのニックネームは既に使用されています。他のもの msgid "Not a valid nickname." msgstr "有効なニックネームではありません。" -#: actions/apigroupcreate.php:196 actions/editgroup.php:195 +#: actions/apigroupcreate.php:196 actions/editapplication.php:215 +#: actions/editgroup.php:195 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:217 msgid "Homepage is not a valid URL." @@ -342,7 +400,8 @@ msgstr "ホームページのURLが不適切です。" msgid "Full name is too long (max 255 chars)." msgstr "フルネームが長すぎます。(255字まで)" -#: actions/apigroupcreate.php:213 +#: actions/apigroupcreate.php:213 actions/editapplication.php:190 +#: actions/newapplication.php:172 #, php-format msgid "Description is too long (max %d chars)." msgstr "記述が長すぎます。(最長140字)" @@ -378,7 +437,7 @@ msgstr "別名はニックネームと同じではいけません。" #: actions/apigroupismember.php:95 actions/apigroupjoin.php:104 #: actions/apigroupleave.php:104 actions/apigroupmembership.php:91 -#: actions/apigroupshow.php:90 actions/apitimelinegroup.php:91 +#: actions/apigroupshow.php:82 actions/apitimelinegroup.php:91 msgid "Group not found!" msgstr "グループが見つかりません!" @@ -393,7 +452,7 @@ msgstr "管理者によってこのグループからブロックされていま #: actions/apigroupjoin.php:138 actions/joingroup.php:124 #, php-format msgid "Could not join user %1$s to group %2$s." -msgstr "利用者 %1$s はグループ %2$s に参加できません。" +msgstr "ユーザ %1$s はグループ %2$s に参加できません。" #: actions/apigroupleave.php:114 msgid "You are not a member of this group." @@ -402,7 +461,7 @@ msgstr "このグループのメンバーではありません。" #: actions/apigroupleave.php:124 actions/leavegroup.php:119 #, php-format msgid "Could not remove user %1$s from group %2$s." -msgstr "利用者 %1$s をグループ %2$s から削除できません。" +msgstr "ユーザ %1$s をグループ %2$s から削除できません。" #: actions/apigrouplist.php:95 #, php-format @@ -419,13 +478,119 @@ msgstr "%s グループ" msgid "groups on %s" msgstr "%s 上のグループ" +#: actions/apioauthauthorize.php:101 +msgid "No oauth_token parameter provided." +msgstr "oauth_token パラメータは提供されませんでした。" + +#: actions/apioauthauthorize.php:106 +msgid "Invalid token." +msgstr "不正なトークン。" + +#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 +#: actions/deletenotice.php:157 actions/disfavor.php:74 +#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54 +#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupunblock.php:66 actions/imsettings.php:206 +#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 +#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 +#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135 +#: actions/othersettings.php:145 actions/passwordsettings.php:138 +#: actions/profilesettings.php:194 actions/recoverpassword.php:337 +#: actions/register.php:165 actions/remotesubscribe.php:77 +#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 +#: actions/subscribe.php:86 actions/tagother.php:166 +#: 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/apioauthauthorize.php:135 +msgid "Invalid nickname / password!" +msgstr "不正なユーザ名またはパスワード。" + +#: actions/apioauthauthorize.php:159 +msgid "Database error deleting OAuth application user." +msgstr "OAuth アプリケーションユーザの削除時DBエラー。" + +#: actions/apioauthauthorize.php:185 +msgid "Database error inserting OAuth application user." +msgstr "OAuth アプリケーションユーザの追加時DBエラー。" + +#: actions/apioauthauthorize.php:214 +#, php-format +msgid "" +"The request token %s has been authorized. Please exchange it for an access " +"token." +msgstr "" +"リクエストトークン %s は承認されました。 アクセストークンとそれを交換してくだ" +"さい。" + +#: actions/apioauthauthorize.php:227 +#, php-format +msgid "The request token %s has been denied and revoked." +msgstr "リクエストトークン%sは、拒否されて、取り消されました。" + +#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 +#: actions/designadminpanel.php:103 actions/editapplication.php:139 +#: actions/emailsettings.php:256 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/newapplication.php:121 +#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 +#: actions/smssettings.php:248 lib/designsettings.php:304 +msgid "Unexpected form submission." +msgstr "予期せぬフォーム送信です。" + +#: actions/apioauthauthorize.php:259 +msgid "An application would like to connect to your account" +msgstr "アプリケーションはあなたのアカウントに接続したいです" + +#: actions/apioauthauthorize.php:276 +msgid "Allow or deny access" +msgstr "アクセスを許可または拒絶" + +#: actions/apioauthauthorize.php:292 +#, php-format +msgid "" +"The application %1$s by %2$s would like " +"the ability to %3$s your %4$s account data. You should only " +"give access to your %4$s account to third parties you trust." +msgstr "" + +#: actions/apioauthauthorize.php:310 lib/action.php:441 +msgid "Account" +msgstr "アカウント" + +#: actions/apioauthauthorize.php:313 actions/login.php:230 +#: actions/profilesettings.php:106 actions/register.php:424 +#: actions/showgroup.php:236 actions/tagother.php:94 +#: actions/userauthorization.php:145 lib/groupeditform.php:152 +#: lib/userprofile.php:131 +msgid "Nickname" +msgstr "ニックネーム" + +#: actions/apioauthauthorize.php:316 actions/login.php:233 +#: actions/register.php:429 lib/accountsettingsaction.php:116 +msgid "Password" +msgstr "パスワード" + +#: actions/apioauthauthorize.php:328 +msgid "Deny" +msgstr "拒絶" + +#: actions/apioauthauthorize.php:334 +msgid "Allow" +msgstr "許可" + +#: actions/apioauthauthorize.php:351 +msgid "Allow or deny access to your account information." +msgstr "アカウント情報へのアクセスを許可するか、または拒絶してください。" + #: actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." msgstr "このメソッドには POST か DELETE が必要です。" #: actions/apistatusesdestroy.php:130 msgid "You may not delete another user's status." -msgstr "他の利用者のステータスを消すことはできません。" +msgstr "他のユーザのステータスを消すことはできません。" #: actions/apistatusesretweet.php:75 actions/apistatusesretweets.php:72 #: actions/deletenotice.php:52 actions/shownotice.php:92 @@ -448,17 +613,17 @@ msgstr "ステータスを削除しました。" msgid "No status with that ID found." msgstr "そのIDでのステータスはありません。" -#: actions/apistatusesupdate.php:157 actions/newnotice.php:155 +#: actions/apistatusesupdate.php:161 actions/newnotice.php:155 #: lib/mailhandler.php:60 #, php-format msgid "That's too long. Max notice size is %d chars." msgstr "長すぎます。つぶやきは最大 140 字までです。" -#: actions/apistatusesupdate.php:198 +#: actions/apistatusesupdate.php:202 msgid "Not found" msgstr "みつかりません" -#: actions/apistatusesupdate.php:221 actions/newnotice.php:178 +#: actions/apistatusesupdate.php:225 actions/newnotice.php:178 #, php-format msgid "Max notice size is %d chars, including attachment URL." msgstr "つぶやきは URL を含めて最大 %d 字までです。" @@ -472,7 +637,7 @@ msgstr "サポート外の形式です。" msgid "%1$s / Favorites from %2$s" msgstr "%1$s / %2$s からのお気に入り" -#: actions/apitimelinefavorites.php:120 +#: actions/apitimelinefavorites.php:117 #, php-format msgid "%1$s updates favorited by %2$s / %2$s." msgstr "%1$s は %2$s でお気に入りを更新しました / %2$s。" @@ -483,7 +648,7 @@ msgstr "%1$s は %2$s でお気に入りを更新しました / %2$s。" msgid "%s timeline" msgstr "%s のタイムライン" -#: actions/apitimelinegroup.php:117 actions/apitimelineuser.php:126 +#: actions/apitimelinegroup.php:114 actions/apitimelineuser.php:126 #: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" @@ -499,27 +664,22 @@ msgstr "%1$s / %2$s について更新" msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "%2$s からアップデートに答える %1$s アップデート" -#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "%s のパブリックタイムライン" -#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "皆からの %s アップデート!" -#: actions/apitimelineretweetedbyme.php:112 -#, php-format -msgid "Repeated by %s" -msgstr "%s による繰り返し" - #: actions/apitimelineretweetedtome.php:111 #, php-format msgid "Repeated to %s" msgstr "%s への返信" -#: actions/apitimelineretweetsofme.php:112 +#: actions/apitimelineretweetsofme.php:114 #, php-format msgid "Repeats of %s" msgstr "%s の返信" @@ -529,7 +689,7 @@ msgstr "%s の返信" msgid "Notices tagged with %s" msgstr "%s とタグ付けされたつぶやき" -#: actions/apitimelinetag.php:108 actions/tagrss.php:64 +#: actions/apitimelinetag.php:104 actions/tagrss.php:64 #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "%2$s に %1$s による更新があります!" @@ -572,7 +732,7 @@ msgstr "自分のアバターをアップロードできます。最大サイズ #: actions/remotesubscribe.php:191 actions/userauthorization.php:72 #: actions/userrss.php:103 msgid "User without matching profile" -msgstr "合っているプロフィールのない利用者" +msgstr "合っているプロフィールのないユーザ" #: actions/avatarsettings.php:119 actions/avatarsettings.php:197 #: actions/grouplogo.php:251 @@ -589,8 +749,8 @@ msgstr "オリジナル" msgid "Preview" msgstr "プレビュー" -#: actions/avatarsettings.php:149 lib/deleteuserform.php:66 -#: lib/noticelist.php:611 +#: actions/avatarsettings.php:149 actions/showapplication.php:252 +#: lib/deleteuserform.php:66 lib/noticelist.php:637 msgid "Delete" msgstr "削除" @@ -602,29 +762,6 @@ msgstr "アップロード" msgid "Crop" msgstr "切り取り" -#: actions/avatarsettings.php:268 actions/deletenotice.php:157 -#: actions/disfavor.php:74 actions/emailsettings.php:238 actions/favor.php:75 -#: actions/geocode.php:50 actions/groupblock.php:66 actions/grouplogo.php:309 -#: actions/groupunblock.php:66 actions/imsettings.php:206 -#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 -#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 -#: actions/othersettings.php:145 actions/passwordsettings.php:138 -#: actions/profilesettings.php:194 actions/recoverpassword.php:337 -#: actions/register.php:165 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 -#: actions/subscribe.php:46 actions/tagother.php:166 -#: 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/avatarsettings.php:281 actions/designadminpanel.php:103 -#: actions/emailsettings.php:256 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/avatarsettings.php:328 msgid "Pick a square area of the image to be your avatar" msgstr "あなたのアバターとなるイメージを正方形で指定" @@ -647,11 +784,11 @@ msgstr "アバターが削除されました。" #: actions/block.php:69 msgid "You already blocked that user." -msgstr "その利用者はすでにブロック済みです。" +msgstr "そのユーザはすでにブロック済みです。" #: actions/block.php:105 actions/block.php:128 actions/groupblock.php:160 msgid "Block user" -msgstr "ブロック利用者" +msgstr "ユーザをブロック" #: actions/block.php:130 #, fuzzy @@ -664,8 +801,9 @@ msgstr "" "たからフォローを外されるでしょう、将来、あなたにフォローできないで、あなたは" "どんな @-返信 についてもそれらから通知されないでしょう。" -#: actions/block.php:143 actions/deletenotice.php:145 -#: actions/deleteuser.php:147 actions/groupblock.php:178 +#: actions/block.php:143 actions/deleteapplication.php:153 +#: actions/deletenotice.php:145 actions/deleteuser.php:147 +#: actions/groupblock.php:178 msgid "No" msgstr "No" @@ -673,13 +811,13 @@ msgstr "No" msgid "Do not block this user" msgstr "このユーザをアンブロックする" -#: actions/block.php:144 actions/deletenotice.php:146 -#: actions/deleteuser.php:148 actions/groupblock.php:179 -#: lib/repeatform.php:132 +#: actions/block.php:144 actions/deleteapplication.php:158 +#: actions/deletenotice.php:146 actions/deleteuser.php:148 +#: actions/groupblock.php:179 lib/repeatform.php:132 msgid "Yes" msgstr "Yes" -#: actions/block.php:144 actions/groupmembers.php:346 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80 msgid "Block this user" msgstr "このユーザをブロックする" @@ -709,11 +847,11 @@ msgstr "%1$s ブロックされたプロファイル、ページ %2$d" #: actions/blockedfromgroup.php:108 msgid "A list of the users blocked from joining this group." -msgstr "このグループへの参加をブロックされた利用者のリスト。" +msgstr "このグループへの参加をブロックされたユーザのリスト。" #: actions/blockedfromgroup.php:281 msgid "Unblock user from group" -msgstr "グループからのアンブロック利用者" +msgstr "グループからのアンブロックユーザ" #: actions/blockedfromgroup.php:313 lib/unblockform.php:69 msgid "Unblock" @@ -762,7 +900,7 @@ msgid "Couldn't delete email confirmation." msgstr "メール承認を削除できません" #: actions/confirmaddress.php:144 -msgid "Confirm Address" +msgid "Confirm address" msgstr "アドレスの確認" #: actions/confirmaddress.php:159 @@ -779,10 +917,51 @@ msgstr "会話" msgid "Notices" msgstr "つぶやき" +#: actions/deleteapplication.php:63 +msgid "You must be logged in to delete an application." +msgstr "アプリケーションを削除するにはログインしていなければなりません。" + +#: actions/deleteapplication.php:71 +msgid "Application not found." +msgstr "アプリケーションが見つかりません。" + +#: actions/deleteapplication.php:78 actions/editapplication.php:77 +#: actions/showapplication.php:94 +msgid "You are not the owner of this application." +msgstr "このアプリケーションのオーナーではありません。" + +#: actions/deleteapplication.php:102 actions/editapplication.php:127 +#: actions/newapplication.php:110 actions/showapplication.php:118 +#: lib/action.php:1197 +msgid "There was a problem with your session token." +msgstr "あなたのセッショントークンに関する問題がありました。" + +#: actions/deleteapplication.php:123 actions/deleteapplication.php:147 +msgid "Delete application" +msgstr "アプリケーション削除" + +#: actions/deleteapplication.php:149 +#, fuzzy +msgid "" +"Are you sure you want to delete this application? This will clear all data " +"about the application from the database, including all existing user " +"connections." +msgstr "" +"あなたは本当にこのユーザを削除したいですか? これはバックアップなしでデータ" +"ベースからユーザに関するすべてのデータをクリアします。" + +#: actions/deleteapplication.php:156 +msgid "Do not delete this application" +msgstr "このアプリケーションを削除しないでください" + +#: actions/deleteapplication.php:160 +msgid "Delete this application" +msgstr "このアプリケーションを削除" + #: 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/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 #: lib/adminpanelaction.php:72 lib/profileformaction.php:63 #: lib/settingsaction.php:72 @@ -798,7 +977,7 @@ msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " "be undone." msgstr "" -"あなたは永久につぶやきを削除しようとしています。 これが完了するとそれを元に戻" +"あなたはつぶやきを永久に削除しようとしています。 これが完了するとそれを元に戻" "すことはできません。" #: actions/deletenotice.php:109 actions/deletenotice.php:141 @@ -813,33 +992,33 @@ msgstr "本当にこのつぶやきを削除しますか?" msgid "Do not delete this notice" msgstr "このつぶやきを削除できません。" -#: actions/deletenotice.php:146 lib/noticelist.php:611 +#: actions/deletenotice.php:146 lib/noticelist.php:637 msgid "Delete this notice" msgstr "このつぶやきを削除" #: actions/deleteuser.php:67 msgid "You cannot delete users." -msgstr "利用者を削除できません" +msgstr "ユーザを削除できません" #: actions/deleteuser.php:74 msgid "You can only delete local users." -msgstr "ローカル利用者のみ削除できます。" +msgstr "ローカルユーザのみ削除できます。" #: actions/deleteuser.php:110 actions/deleteuser.php:133 msgid "Delete user" -msgstr "利用者削除" +msgstr "ユーザ削除" #: actions/deleteuser.php:135 msgid "" "Are you sure you want to delete this user? This will clear all data about " "the user from the database, without a backup." msgstr "" -"あなたは本当にこの利用者を削除したいですか? これはバックアップなしでデータ" -"ベースから利用者に関するすべてのデータをクリアします。" +"あなたは本当にこのユーザを削除したいですか? これはバックアップなしでデータ" +"ベースからユーザに関するすべてのデータをクリアします。" #: actions/deleteuser.php:148 lib/deleteuserform.php:77 msgid "Delete this user" -msgstr "このユーザーを削除" +msgstr "このユーザを削除" #: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 #: lib/adminpanelaction.php:316 lib/groupnav.php:119 @@ -945,16 +1124,6 @@ msgstr "デフォルトデザインに戻す。" msgid "Reset back to default" msgstr "デフォルトへリセットする" -#: actions/designadminpanel.php:586 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 -#: actions/pathsadminpanel.php:324 actions/profilesettings.php:174 -#: actions/siteadminpanel.php:388 actions/smssettings.php:181 -#: actions/subscriptions.php:203 actions/tagother.php:154 -#: actions/useradminpanel.php:313 lib/designsettings.php:256 -#: lib/groupeditform.php:202 -msgid "Save" -msgstr "保存" - #: actions/designadminpanel.php:587 lib/designsettings.php:257 msgid "Save design" msgstr "デザインの保存" @@ -967,9 +1136,75 @@ msgstr "このつぶやきはお気に入りではありません!" msgid "Add to favorites" msgstr "お気に入りに加える" -#: actions/doc.php:69 -msgid "No such document." -msgstr "そのようなドキュメントはありません。" +#: actions/doc.php:158 +#, php-format +msgid "No such document \"%s\"" +msgstr "そのようなドキュメントはありません。\"%s\"" + +#: actions/editapplication.php:54 +msgid "Edit Application" +msgstr "アプリケーション編集" + +#: actions/editapplication.php:66 +msgid "You must be logged in to edit an application." +msgstr "アプリケーションを編集するにはログインしていなければなりません。" + +#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:166 +#: actions/showapplication.php:87 +msgid "No such application." +msgstr "そのようなアプリケーションはありません。" + +#: actions/editapplication.php:161 +msgid "Use this form to edit your application." +msgstr "このフォームを使ってアプリケーションを編集します。" + +#: actions/editapplication.php:177 actions/newapplication.php:159 +msgid "Name is required." +msgstr "名前は必須です。" + +#: actions/editapplication.php:180 actions/newapplication.php:165 +msgid "Name is too long (max 255 chars)." +msgstr "名前が長すぎます。(最大255字まで)" + +#: actions/editapplication.php:183 actions/newapplication.php:162 +msgid "Name already in use. Try another one." +msgstr "そのニックネームは既に使用されています。他のものを試してみて下さい。" + +#: actions/editapplication.php:186 actions/newapplication.php:168 +msgid "Description is required." +msgstr "概要が必要です。" + +#: actions/editapplication.php:194 +msgid "Source URL is too long." +msgstr "ソースURLが長すぎます。" + +#: actions/editapplication.php:200 actions/newapplication.php:185 +msgid "Source URL is not valid." +msgstr "ソースURLが不正です。" + +#: actions/editapplication.php:203 actions/newapplication.php:188 +msgid "Organization is required." +msgstr "組織が必要です。" + +#: actions/editapplication.php:206 actions/newapplication.php:191 +msgid "Organization is too long (max 255 chars)." +msgstr "組織が長すぎます。(最大255字)" + +#: actions/editapplication.php:209 actions/newapplication.php:194 +msgid "Organization homepage is required." +msgstr "組織のホームページが必要です。" + +#: actions/editapplication.php:218 actions/newapplication.php:206 +msgid "Callback is too long." +msgstr "コールバックが長すぎます。" + +#: actions/editapplication.php:225 actions/newapplication.php:215 +msgid "Callback URL is not valid." +msgstr "コールバックURLが不正です。" + +#: actions/editapplication.php:258 +msgid "Could not update application." +msgstr "アプリケーションを更新できません。" #: actions/editgroup.php:56 #, php-format @@ -998,7 +1233,7 @@ msgstr "記述が長すぎます。(最長 %d 字)" msgid "Could not update group." msgstr "グループを更新できません。" -#: actions/editgroup.php:259 classes/User_group.php:390 +#: actions/editgroup.php:259 classes/User_group.php:433 msgid "Could not create aliases." msgstr "別名を作成できません。" @@ -1035,11 +1270,12 @@ msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." msgstr "" -"このアドレスは確認待ちです。受信ボックス(とスパムボックス)に追加の指示が書" +"このアドレスは承認待ちです。受信ボックス(とスパムボックス)に追加の指示が書" "かれたメッセージが届いていないか確認してください。" #: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 +#: actions/smssettings.php:126 lib/applicationeditform.php:331 +#: lib/applicationeditform.php:332 msgid "Cancel" msgstr "中止" @@ -1084,17 +1320,17 @@ msgstr "メールで新規フォローの通知を私に送ってください。 #: actions/emailsettings.php:163 msgid "Send me email when someone adds my notice as a favorite." msgstr "" -"だれかがお気に入りとして私のつぶやきを加えたらメールを私に送ってください。" +"だれかがお気に入りとして私のつぶやきを加えたら、メールを私に送ってください。" #: actions/emailsettings.php:169 msgid "Send me email when someone sends me a private message." msgstr "" -"だれかがプライベート・メッセージを私に送るときにはメールを私に送ってくださ" +"だれかがプライベート・メッセージを私に送るときには、メールを私に送ってくださ" "い。" #: actions/emailsettings.php:174 msgid "Send me email when someone sends me an \"@-reply\"." -msgstr "だれかが\"@-返信\"を私を送るときにはメールを私に送ってください、" +msgstr "だれかが\"@-返信\"を私を送るときには、メールを私に送ってください、" #: actions/emailsettings.php:179 msgid "Allow friends to nudge me and send me an email." @@ -1122,7 +1358,7 @@ msgid "Cannot normalize that email address" msgstr "そのメールアドレスを正規化できません" #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:157 +#: actions/siteadminpanel.php:143 msgid "Not a valid email address." msgstr "有効なメールアドレスではありません。" @@ -1134,24 +1370,24 @@ msgstr "これはすでにあなたのメールアドレスです。" msgid "That email address already belongs to another user." msgstr "このメールアドレスは既に他の人が使っています。" -#: actions/emailsettings.php:353 actions/imsettings.php:317 +#: actions/emailsettings.php:353 actions/imsettings.php:319 #: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." -msgstr "確認コードを追加できません" +msgstr "承認コードを追加できません" #: actions/emailsettings.php:359 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:379 actions/imsettings.php:351 #: actions/smssettings.php:370 msgid "No pending confirmation to cancel." -msgstr "認証待ちのものはありません。" +msgstr "承認待ちのものはありません。" #: actions/emailsettings.php:383 actions/imsettings.php:355 msgid "That is the wrong IM address." @@ -1160,7 +1396,7 @@ msgstr "その IM アドレスは不正です。" #: actions/emailsettings.php:395 actions/imsettings.php:367 #: actions/smssettings.php:386 msgid "Confirmation cancelled." -msgstr "確認作業が中止されました。" +msgstr "承認作業が中止されました。" #: actions/emailsettings.php:413 msgid "That is not your email address." @@ -1178,7 +1414,7 @@ msgstr "入ってくるメールアドレスではありません。" #: actions/emailsettings.php:456 actions/emailsettings.php:478 #: actions/smssettings.php:528 actions/smssettings.php:552 msgid "Couldn't update user record." -msgstr "利用者レコードを更新できません。" +msgstr "ユーザレコードを更新できません。" #: actions/emailsettings.php:459 actions/smssettings.php:531 msgid "Incoming email address removed." @@ -1196,7 +1432,7 @@ msgstr "このつぶやきはすでにお気に入りです!" msgid "Disfavor favorite" msgstr "お気に入りをやめる" -#: actions/favorited.php:65 lib/popularnoticesection.php:88 +#: actions/favorited.php:65 lib/popularnoticesection.php:91 #: lib/publicgroupnav.php:93 msgid "Popular notices" msgstr "人気のつぶやき" @@ -1247,17 +1483,17 @@ msgstr "%1$s による %2$s 上のお気に入りを更新!" #: actions/featured.php:69 lib/featureduserssection.php:87 #: lib/publicgroupnav.php:89 msgid "Featured users" -msgstr "フィーチャーされた利用者" +msgstr "フィーチャーされたユーザ" #: actions/featured.php:71 #, php-format msgid "Featured users, page %d" -msgstr "フィーチャーされた利用者、ページ %d" +msgstr "フィーチャーされたユーザ、ページ %d" #: actions/featured.php:99 #, php-format msgid "A selection of some great users on %s" -msgstr "%s 上の優れた利用者の集まり" +msgstr "%s 上の優れたユーザの集まり" #: actions/file.php:34 msgid "No notice ID." @@ -1289,7 +1525,7 @@ msgstr "ローカルサブスクリプションを使用可能です!" #: actions/finishremotesubscribe.php:99 msgid "That user has blocked you from subscribing." -msgstr "この利用者はフォローをブロックされています。" +msgstr "このユーザはフォローをブロックされています。" #: actions/finishremotesubscribe.php:110 msgid "You are not authorized." @@ -1339,15 +1575,15 @@ msgstr "管理者だけがグループメンバーをブロックできます。 #: actions/groupblock.php:95 msgid "User is already blocked from group." -msgstr "利用者はすでにグループからブロックされています。" +msgstr "ユーザはすでにグループからブロックされています。" #: actions/groupblock.php:100 msgid "User is not a member of group." -msgstr "利用者はグループのメンバーではありません。" +msgstr "ユーザはグループのメンバーではありません。" -#: actions/groupblock.php:136 actions/groupmembers.php:314 +#: actions/groupblock.php:136 actions/groupmembers.php:316 msgid "Block user from group" -msgstr "グループからブロックされた利用者" +msgstr "グループからユーザをブロック" #: actions/groupblock.php:162 #, php-format @@ -1356,12 +1592,12 @@ msgid "" "will be removed from the group, unable to post, and unable to subscribe to " "the group in the future." msgstr "" -"本当に利用者 %1$s をグループ %2$s からブロックしますか? 彼らはグループから削" +"本当にユーザ %1$s をグループ %2$s からブロックしますか? 彼らはグループから削" "除される、投稿できない、グループをフォローできなくなります。" #: actions/groupblock.php:178 msgid "Do not block this user from this group" -msgstr "このグループからこの利用者をブロックしない" +msgstr "このグループからこのユーザをブロックしない" #: actions/groupblock.php:179 msgid "Block this user from this group" @@ -1369,7 +1605,7 @@ msgstr "このグループからこのユーザをブロック" #: actions/groupblock.php:196 msgid "Database error blocking user from group." -msgstr "グループから利用者ブロックのデータベースエラー" +msgstr "グループからのブロックユーザのデータベースエラー" #: actions/groupbyid.php:74 actions/userbyid.php:70 msgid "No ID." @@ -1414,7 +1650,7 @@ msgstr "" #: actions/grouplogo.php:178 msgid "User without matching profile." -msgstr "合っているプロフィールのない利用者" +msgstr "合っているプロフィールのないユーザ" #: actions/grouplogo.php:362 msgid "Pick a square area of the image to be the logo." @@ -1440,27 +1676,27 @@ msgstr "%1$s グループメンバー、ページ %2$d" #: actions/groupmembers.php:111 msgid "A list of the users in this group." -msgstr "このグループの利用者のリスト。" +msgstr "このグループのユーザのリスト。" -#: actions/groupmembers.php:175 lib/action.php:442 lib/groupnav.php:107 +#: actions/groupmembers.php:175 lib/action.php:448 lib/groupnav.php:107 msgid "Admin" msgstr "管理者" -#: actions/groupmembers.php:346 lib/blockform.php:69 +#: actions/groupmembers.php:348 lib/blockform.php:69 msgid "Block" msgstr "ブロック" -#: actions/groupmembers.php:441 +#: actions/groupmembers.php:443 msgid "Make user an admin of the group" -msgstr "利用者をグループの管理者にする" +msgstr "ユーザをグループの管理者にする" -#: actions/groupmembers.php:473 +#: actions/groupmembers.php:475 msgid "Make Admin" msgstr "管理者にする" -#: actions/groupmembers.php:473 +#: actions/groupmembers.php:475 msgid "Make this user an admin" -msgstr "この利用者を管理者にする" +msgstr "このユーザを管理者にする" #: actions/grouprss.php:133 #, php-format @@ -1538,7 +1774,7 @@ msgstr "管理者だけがグループメンバーをアンブロックできま #: actions/groupunblock.php:95 msgid "User is not blocked from group." -msgstr "利用者はグループからブロックされていません。" +msgstr "ユーザはグループからブロックされていません。" #: actions/groupunblock.php:128 actions/unblock.php:86 msgid "Error removing the block." @@ -1571,7 +1807,7 @@ 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 のアカウントで追加の指示が書かれ" +"このアドレスは承認待ちです。Jabber か Gtalk のアカウントで追加の指示が書かれ" "たメッセージを確認してください。(%s を友人リストに追加しましたか?)" #: actions/imsettings.php:124 @@ -1631,13 +1867,18 @@ msgid "" "A confirmation code was sent to the IM address you added. You must approve %" "s for sending messages to you." msgstr "" -"確認用コードを入力された IM アドレスに送信しました。あなたにメッセージを送れ" -"るようにするには%sを承認してください。" +"承認コードを入力された IM アドレスに送信しました。あなたにメッセージを送れる" +"ようにするには%sを承認してください。" #: actions/imsettings.php:387 msgid "That is not your Jabber ID." msgstr "その Jabber ID はあなたのものではありません。" +#: actions/inbox.php:59 +#, php-format +msgid "Inbox for %1$s - page %2$d" +msgstr "%1$s の受信箱 - ページ %2$d" + #: actions/inbox.php:62 #, php-format msgid "Inbox for %s" @@ -1668,11 +1909,11 @@ msgstr "招待を送りました。" #: actions/invite.php:112 msgid "Invite new users" -msgstr "新しい利用者を招待" +msgstr "新しいユーザを招待" #: actions/invite.php:128 msgid "You are already subscribed to these users:" -msgstr "すでにこれらの利用者をフォローしています:" +msgstr "すでにこれらのユーザをフォローしています:" #: actions/invite.php:131 actions/invite.php:139 lib/command.php:306 #, php-format @@ -1720,9 +1961,9 @@ msgstr "パーソナルメッセージ" msgid "Optionally add a personal message to the invitation." msgstr "任意に招待にパーソナルメッセージを加えてください。" -#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:237 +#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:236 msgid "Send" -msgstr "送る" +msgstr "投稿" #: actions/invite.php:226 #, php-format @@ -1820,7 +2061,7 @@ msgstr "ユーザ名またはパスワードが間違っています。" msgid "Error setting user. You are probably not authorized." msgstr "ユーザ設定エラー。 あなたはたぶん承認されていません。" -#: actions/login.php:188 actions/login.php:241 lib/action.php:460 +#: actions/login.php:188 actions/login.php:241 lib/action.php:466 #: lib/logingroupnav.php:79 msgid "Login" msgstr "ログイン" @@ -1829,17 +2070,6 @@ msgstr "ログイン" msgid "Login to site" msgstr "サイトへログイン" -#: actions/login.php:230 actions/profilesettings.php:106 -#: actions/register.php:424 actions/showgroup.php:236 actions/tagother.php:94 -#: lib/groupeditform.php:152 lib/userprofile.php:131 -msgid "Nickname" -msgstr "ニックネーム" - -#: actions/login.php:233 actions/register.php:429 -#: lib/accountsettingsaction.php:116 -msgid "Password" -msgstr "パスワード" - #: actions/login.php:236 actions/register.php:478 msgid "Remember me" msgstr "ログイン状態を保持" @@ -1869,21 +2099,21 @@ msgstr "" "ユーザ名とパスワードで、ログインしてください。 まだユーザ名を持っていません" "か? 新しいアカウントを [登録](%%action.register%%)。" -#: actions/makeadmin.php:91 +#: actions/makeadmin.php:92 msgid "Only an admin can make another user an admin." msgstr "管理者だけが別のユーザを管理者にすることができます。" -#: actions/makeadmin.php:95 +#: actions/makeadmin.php:96 #, php-format msgid "%1$s is already an admin for group \"%2$s\"." msgstr "%1$s はすでにグループ \"%2$s\" の管理者です。" -#: actions/makeadmin.php:132 +#: actions/makeadmin.php:133 #, php-format msgid "Can't get membership record for %1$s in group %2$s." msgstr "%1$s の会員資格記録をグループ %2$s 中から取得できません。" -#: actions/makeadmin.php:145 +#: actions/makeadmin.php:146 #, php-format msgid "Can't make %1$s an admin for group %2$s." msgstr "%1$s をグループ %2$s の管理者にすることはできません" @@ -1892,6 +2122,26 @@ msgstr "%1$s をグループ %2$s の管理者にすることはできません" msgid "No current status" msgstr "現在のステータスはありません" +#: actions/newapplication.php:52 +msgid "New Application" +msgstr "新しいアプリケーション" + +#: actions/newapplication.php:64 +msgid "You must be logged in to register an application." +msgstr "アプリケーションを登録するにはログインしていなければなりません。" + +#: actions/newapplication.php:143 +msgid "Use this form to register a new application." +msgstr "このフォームを使って新しいアプリケーションを登録します。" + +#: actions/newapplication.php:176 +msgid "Source URL is required." +msgstr "ソースURLが必要です。" + +#: actions/newapplication.php:258 actions/newapplication.php:267 +msgid "Could not create application." +msgstr "アプリケーションを作成できません。" + #: actions/newgroup.php:53 msgid "New group" msgstr "新しいグループ" @@ -1906,7 +2156,7 @@ msgstr "新しいメッセージ" #: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:358 msgid "You can't send a message to this user." -msgstr "この利用者にメッセージを送ることはできません。" +msgstr "このユーザにメッセージを送ることはできません。" #: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:342 #: lib/command.php:475 @@ -1993,7 +2243,7 @@ msgstr "\"%2$s\" 上の検索語 \"$1$s\" に一致するすべての更新" msgid "" "This user doesn't allow nudges or hasn't confirmed or set his email yet." msgstr "" -"この利用者は、合図を許可していないか、確認されていた状態でないか、メール設定" +"このユーザは、合図を許可していないか、確認されていた状態でないか、メール設定" "をしていません。" #: actions/nudge.php:94 @@ -2004,6 +2254,50 @@ msgstr "合図を送った" msgid "Nudge sent!" msgstr "合図を送った!" +#: actions/oauthappssettings.php:59 +msgid "You must be logged in to list your applications." +msgstr "アプリケーションをリストするにはログインしていなければなりません。" + +#: actions/oauthappssettings.php:74 +msgid "OAuth applications" +msgstr "OAuth アプリケーション" + +#: actions/oauthappssettings.php:85 +msgid "Applications you have registered" +msgstr "あなたが登録したアプリケーション" + +#: actions/oauthappssettings.php:135 +#, php-format +msgid "You have not registered any applications yet." +msgstr "あなたはまだなんのアプリケーションも登録していません。" + +#: actions/oauthconnectionssettings.php:72 +msgid "Connected applications" +msgstr "接続されたアプリケーション" + +#: actions/oauthconnectionssettings.php:83 +msgid "You have allowed the following applications to access you account." +msgstr "あなたのアカウントにアクセスする以下のアプリケーションを許可しました。" + +#: actions/oauthconnectionssettings.php:175 +msgid "You are not a user of that application." +msgstr "あなたはそのアプリケーションのユーザではありません。" + +#: actions/oauthconnectionssettings.php:186 +msgid "Unable to revoke access for app: " +msgstr "アプリケーションのための取消しアクセスができません: " + +#: actions/oauthconnectionssettings.php:198 +#, php-format +msgid "You have not authorized any applications to use your account." +msgstr "" +"あなたは、どんなアプリケーションもあなたのアカウントを使用するのを認可してい" +"ません。" + +#: actions/oauthconnectionssettings.php:211 +msgid "Developers can edit the registration settings for their applications " +msgstr "開発者は彼らのアプリケーションのために登録設定を編集できます " + #: actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" msgstr "つぶやきにはプロファイルはありません。" @@ -2021,8 +2315,8 @@ msgstr "内容種別 " msgid "Only " msgstr "だけ " -#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1033 -#: lib/api.php:1061 lib/api.php:1171 +#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 +#: lib/api.php:1068 lib/api.php:1177 msgid "Not a supported data format." msgstr "サポートされていないデータ形式。" @@ -2035,7 +2329,7 @@ msgid "Notice Search" msgstr "つぶやき検索" #: actions/othersettings.php:60 -msgid "Other Settings" +msgid "Other settings" msgstr "その他の設定" #: actions/othersettings.php:71 @@ -2068,7 +2362,7 @@ msgstr "URL 短縮サービスが長すぎます。(最大50字)" #: actions/otp.php:69 msgid "No user ID specified." -msgstr "利用者IDの記述がありません。" +msgstr "ユーザIDの記述がありません。" #: actions/otp.php:83 msgid "No login token specified." @@ -2086,6 +2380,11 @@ msgstr "不正なログイントークンが指定されています。" msgid "Login token expired." msgstr "ログイントークンが期限切れです・" +#: actions/outbox.php:58 +#, php-format +msgid "Outbox for %1$s - page %2$d" +msgstr "%1$s の送信箱 - ページ %2$d" + #: actions/outbox.php:61 #, php-format msgid "Outbox for %s" @@ -2158,7 +2457,7 @@ msgstr "新しいパスワードを保存できません。" msgid "Password saved." msgstr "パスワードが保存されました。" -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:326 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:331 msgid "Paths" msgstr "パス" @@ -2166,132 +2465,148 @@ msgstr "パス" msgid "Path and server settings for this StatusNet site." msgstr "パスと StatusNet サイトのサーバー設定" -#: actions/pathsadminpanel.php:140 +#: actions/pathsadminpanel.php:157 #, php-format msgid "Theme directory not readable: %s" msgstr "テーマディレクトリが読み込めません: %s" -#: actions/pathsadminpanel.php:146 +#: actions/pathsadminpanel.php:163 #, php-format msgid "Avatar directory not writable: %s" msgstr "アバターディレクトリに書き込みできません: %s" -#: actions/pathsadminpanel.php:152 +#: actions/pathsadminpanel.php:169 #, php-format msgid "Background directory not writable: %s" msgstr "バックグラウンドディレクトリに書き込みできません : %s" -#: actions/pathsadminpanel.php:160 +#: actions/pathsadminpanel.php:177 #, php-format msgid "Locales directory not readable: %s" msgstr "場所ディレクトリが読み込めません: %s" -#: actions/pathsadminpanel.php:166 +#: actions/pathsadminpanel.php:183 msgid "Invalid SSL server. The maximum length is 255 characters." msgstr "不正な SSL サーバー。最大 255 文字まで。" -#: actions/pathsadminpanel.php:217 actions/siteadminpanel.php:58 +#: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58 #: lib/adminpanelaction.php:311 msgid "Site" msgstr "サイト" -#: actions/pathsadminpanel.php:221 +#: actions/pathsadminpanel.php:238 +msgid "Server" +msgstr "サーバー" + +#: actions/pathsadminpanel.php:238 +msgid "Site's server hostname." +msgstr "サイトのサーバーホスト名" + +#: actions/pathsadminpanel.php:242 msgid "Path" msgstr "パス" -#: actions/pathsadminpanel.php:221 +#: actions/pathsadminpanel.php:242 msgid "Site path" msgstr "サイトパス" -#: actions/pathsadminpanel.php:225 +#: actions/pathsadminpanel.php:246 msgid "Path to locales" msgstr "ロケールのパス" -#: actions/pathsadminpanel.php:225 +#: actions/pathsadminpanel.php:246 msgid "Directory path to locales" msgstr "ロケールへのディレクトリパス" -#: actions/pathsadminpanel.php:232 +#: actions/pathsadminpanel.php:250 +msgid "Fancy URLs" +msgstr "" + +#: actions/pathsadminpanel.php:252 +msgid "Use fancy (more readable and memorable) URLs?" +msgstr "Fancy URL (読みやすく忘れにくい) を使用しますか?" + +#: actions/pathsadminpanel.php:259 msgid "Theme" msgstr "テーマ" -#: actions/pathsadminpanel.php:237 +#: actions/pathsadminpanel.php:264 msgid "Theme server" msgstr "テーマサーバー" -#: actions/pathsadminpanel.php:241 +#: actions/pathsadminpanel.php:268 msgid "Theme path" msgstr "テーマパス" -#: actions/pathsadminpanel.php:245 +#: actions/pathsadminpanel.php:272 msgid "Theme directory" msgstr "テーマディレクトリ" -#: actions/pathsadminpanel.php:252 +#: actions/pathsadminpanel.php:279 msgid "Avatars" msgstr "アバター" -#: actions/pathsadminpanel.php:257 +#: actions/pathsadminpanel.php:284 msgid "Avatar server" msgstr "アバターサーバー" -#: actions/pathsadminpanel.php:261 +#: actions/pathsadminpanel.php:288 msgid "Avatar path" msgstr "アバターパス" -#: actions/pathsadminpanel.php:265 +#: actions/pathsadminpanel.php:292 msgid "Avatar directory" msgstr "アバターディレクトリ" -#: actions/pathsadminpanel.php:274 +#: actions/pathsadminpanel.php:301 msgid "Backgrounds" msgstr "バックグラウンド" -#: actions/pathsadminpanel.php:278 +#: actions/pathsadminpanel.php:305 msgid "Background server" msgstr "バックグラウンドサーバー" -#: actions/pathsadminpanel.php:282 +#: actions/pathsadminpanel.php:309 msgid "Background path" msgstr "バックグラウンドパス" -#: actions/pathsadminpanel.php:286 +#: actions/pathsadminpanel.php:313 msgid "Background directory" msgstr "バックグラウンドディレクトリ" -#: actions/pathsadminpanel.php:293 +#: actions/pathsadminpanel.php:320 msgid "SSL" msgstr "SSL" -#: actions/pathsadminpanel.php:296 actions/siteadminpanel.php:346 +#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 msgid "Never" msgstr "" -#: actions/pathsadminpanel.php:297 +#: actions/pathsadminpanel.php:324 msgid "Sometimes" msgstr "ときどき" -#: actions/pathsadminpanel.php:298 +#: actions/pathsadminpanel.php:325 msgid "Always" msgstr "いつも" -#: actions/pathsadminpanel.php:302 +#: actions/pathsadminpanel.php:329 msgid "Use SSL" msgstr "SSL 使用" -#: actions/pathsadminpanel.php:303 +#: actions/pathsadminpanel.php:330 msgid "When to use SSL" msgstr "SSL 使用時" -#: actions/pathsadminpanel.php:308 +#: actions/pathsadminpanel.php:335 msgid "SSL server" msgstr "SSLサーバ" -#: actions/pathsadminpanel.php:309 +#: actions/pathsadminpanel.php:336 msgid "Server to direct SSL requests to" msgstr "ダイレクト SSL リクエストを向けるサーバ" -#: actions/pathsadminpanel.php:325 +#: actions/pathsadminpanel.php:352 msgid "Save paths" msgstr "保存パス" @@ -2354,7 +2669,7 @@ msgid "Full name" msgstr "フルネーム" #: actions/profilesettings.php:115 actions/register.php:453 -#: lib/groupeditform.php:161 +#: lib/applicationeditform.php:228 lib/groupeditform.php:161 msgid "Homepage" msgstr "ホームページ" @@ -2377,7 +2692,7 @@ msgstr "自己紹介" #: actions/profilesettings.php:132 actions/register.php:471 #: actions/showgroup.php:256 actions/tagother.php:112 -#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:164 msgid "Location" msgstr "場所" @@ -2403,7 +2718,7 @@ msgstr "" "自分自身についてのタグ (アルファベット、数字、-、.、_)、カンマまたは空白区切" "りで" -#: actions/profilesettings.php:151 actions/siteadminpanel.php:294 +#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 msgid "Language" msgstr "言語" @@ -2429,7 +2744,7 @@ msgstr "自分をフォローしている者を自動的にフォローする (B msgid "Bio is too long (max %d chars)." msgstr "自己紹介が長すぎます (最長140文字)。" -#: actions/profilesettings.php:235 actions/siteadminpanel.php:164 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 msgid "Timezone not selected." msgstr "タイムゾーンが選ばれていません。" @@ -2442,23 +2757,23 @@ msgstr "言語が長すぎます。(最大50字)" msgid "Invalid tag: \"%s\"" msgstr "不正なタグ: \"%s\"" -#: actions/profilesettings.php:302 +#: actions/profilesettings.php:306 msgid "Couldn't update user for autosubscribe." -msgstr "自動フォローのための利用者を更新できませんでした。" +msgstr "自動フォローのためのユーザを更新できませんでした。" -#: actions/profilesettings.php:359 +#: actions/profilesettings.php:363 msgid "Couldn't save location prefs." msgstr "場所情報を保存できません。" -#: actions/profilesettings.php:371 +#: actions/profilesettings.php:375 msgid "Couldn't save profile." msgstr "プロファイルを保存できません" -#: actions/profilesettings.php:379 +#: actions/profilesettings.php:383 msgid "Couldn't save tags." msgstr "タグを保存できません。" -#: actions/profilesettings.php:387 lib/adminpanelaction.php:137 +#: actions/profilesettings.php:391 lib/adminpanelaction.php:137 msgid "Settings saved." msgstr "設定が保存されました。" @@ -2480,19 +2795,19 @@ msgstr "パブリックタイムライン、ページ %d" msgid "Public timeline" msgstr "パブリックタイムライン" -#: actions/public.php:151 +#: actions/public.php:159 msgid "Public Stream Feed (RSS 1.0)" msgstr "パブリックストリームフィード (RSS 1.0)" -#: actions/public.php:155 +#: actions/public.php:163 msgid "Public Stream Feed (RSS 2.0)" msgstr "パブリックストリームフィード (RSS 2.0)" -#: actions/public.php:159 +#: actions/public.php:167 msgid "Public Stream Feed (Atom)" msgstr "パブリックストリームフィード (Atom)" -#: actions/public.php:179 +#: actions/public.php:187 #, php-format msgid "" "This is the public timeline for %%site.name%% but no one has posted anything " @@ -2501,11 +2816,11 @@ msgstr "" "これは %%site.name%% のパブリックタイムラインです、しかしまだ誰も投稿していま" "せん。" -#: actions/public.php:182 +#: actions/public.php:190 msgid "Be the first to post!" msgstr "投稿する1番目になってください!" -#: actions/public.php:186 +#: actions/public.php:194 #, php-format msgid "" "Why not [register an account](%%action.register%%) and be the first to post!" @@ -2513,7 +2828,7 @@ msgstr "" "なぜ [アカウント登録](%%action.register%%) しないのですか、そして最初の投稿を" "してください!" -#: actions/public.php:233 +#: actions/public.php:241 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2527,7 +2842,7 @@ msgstr "" "族そして同僚などについてのつぶやきを共有しましょう! ([もっと読む](%%doc.help%" "%))" -#: actions/public.php:238 +#: actions/public.php:246 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2566,7 +2881,7 @@ msgstr "" "なぜ [アカウント登録](%%action.register%%) しないのですか。そして最初の投稿を" "してください!" -#: actions/publictagcloud.php:131 +#: actions/publictagcloud.php:134 msgid "Tag cloud" msgstr "タグクラウド" @@ -2596,7 +2911,7 @@ msgstr "確認コードが古すぎます。もう一度やり直してくださ #: actions/recoverpassword.php:111 msgid "Could not update user with confirmed email address." -msgstr "確認されたメールアドレスで利用者を更新できません。" +msgstr "確認されたメールアドレスでユーザを更新できません。" #: actions/recoverpassword.php:152 msgid "" @@ -2656,11 +2971,11 @@ msgstr "ニックネームかメールアドレスを入力してください。 #: actions/recoverpassword.php:272 msgid "No user with that email address or username." -msgstr "そのメールアドレスかユーザ名をもっている利用者がありません。" +msgstr "そのメールアドレスかユーザ名をもっているユーザがありません。" #: actions/recoverpassword.php:287 msgid "No registered email address for that user." -msgstr "その利用者にはメールアドレスの登録がありません。" +msgstr "そのユーザにはメールアドレスの登録がありません。" #: actions/recoverpassword.php:301 msgid "Error saving address confirmation." @@ -2704,7 +3019,7 @@ msgstr "すみません、不正な招待コード。" msgid "Registration successful" msgstr "登録成功" -#: actions/register.php:114 actions/register.php:503 lib/action.php:457 +#: actions/register.php:114 actions/register.php:503 lib/action.php:463 #: lib/logingroupnav.php:85 msgid "Register" msgstr "登録" @@ -2747,7 +3062,7 @@ msgid "Same as password above. Required." msgstr "上のパスワードと同じです。 必須。" #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:270 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 msgid "Email" msgstr "メール" @@ -2774,7 +3089,7 @@ msgid "" msgstr "個人情報を除く: パスワード、メールアドレス、IMアドレス、電話番号" #: actions/register.php:538 -#, fuzzy, php-format +#, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " "want to...\n" @@ -2791,15 +3106,15 @@ msgid "" "\n" "Thanks for signing up and we hope you enjoy using this service." msgstr "" -"%1$s さん、おめでとうございます!%%%%site.name%%%% へようこそ。以下のようにし" -"て始めることができます。\n" +"%1$s さん、おめでとうございます!%%%%site.name%%%% へようこそ。次のようにして" +"始めることができます。\n" "\n" "* [あなたのプロファイル](%2$s) を参照して最初のメッセージを投稿する\n" "* [Jabber や GTalk のアドレス](%%%%action.imsettings%%%%) を追加して、インス" "タントメッセージを通してつぶやきを送れるようにする\n" "* あなたが知っている人やあなたと同じ興味をもっている人を[検索](%%%%action." "peoplesearch%%%%) する\n" -"* [プロファイル設定](%%%%action.profilesettings%%%%) を更新して他の利用者にあ" +"* [プロファイル設定](%%%%action.profilesettings%%%%) を更新して他のユーザにあ" "なたのことをより詳しく知らせる\n" "* 探している機能について[オンライン文書](%%%%doc.help%%%%) を読む\n" "\n" @@ -2811,7 +3126,7 @@ msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" msgstr "" -"(メールアドレスを確認する方法を読んで、すぐにメールによるメッセージを受け取る" +"(メールアドレスを承認する方法を読んで、すぐにメールによるメッセージを受け取る" "ようにしてください)" #: actions/remotesubscribe.php:98 @@ -2836,7 +3151,7 @@ msgstr "リモートユーザーをフォロー" #: actions/remotesubscribe.php:129 msgid "User nickname" -msgstr "利用者のニックネーム" +msgstr "ユーザのニックネーム" #: actions/remotesubscribe.php:130 msgid "Nickname of the user you want to follow" @@ -2851,7 +3166,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "プロファイルサービスまたはマイクロブロギングサービスのURL" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:365 +#: lib/userprofile.php:368 msgid "Subscribe" msgstr "フォロー" @@ -2890,7 +3205,7 @@ msgstr "自分のつぶやきは繰り返せません。" msgid "You already repeated that notice." msgstr "すでにそのつぶやきを繰り返しています。" -#: actions/repeat.php:114 lib/noticelist.php:629 +#: actions/repeat.php:114 lib/noticelist.php:656 msgid "Repeated" msgstr "繰り返された" @@ -2904,6 +3219,11 @@ msgstr "繰り返されました!" msgid "Replies to %s" msgstr "%s への返信" +#: actions/replies.php:127 +#, php-format +msgid "Replies to %1$s, page %2$d" +msgstr "%1$s への返信、ページ %2$s" + #: actions/replies.php:144 #, php-format msgid "Replies feed for %s (RSS 1.0)" @@ -2935,7 +3255,7 @@ msgid "" "[join groups](%%action.groups%%)." msgstr "" "あなたは、他のユーザを会話をするか、多くの人々をフォローするか、または [グ" -"ループに加わる] (%%action.groups%%)ことができます。" +"ループに加わる](%%action.groups%%)ことができます。" #: actions/replies.php:205 #, php-format @@ -2951,13 +3271,133 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "%2$s 上の %1$s への返信!" +#: actions/rsd.php:146 actions/version.php:157 +msgid "StatusNet" +msgstr "StatusNet" + #: actions/sandbox.php:65 actions/unsandbox.php:65 msgid "You cannot sandbox users on this site." msgstr "あなたはこのサイトのサンドボックスユーザができません。" #: actions/sandbox.php:72 msgid "User is already sandboxed." -msgstr "利用者はすでにサンドボックスです。" +msgstr "ユーザはすでにサンドボックスです。" + +#: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:336 +msgid "Sessions" +msgstr "セッション" + +#: actions/sessionsadminpanel.php:65 +msgid "Session settings for this StatusNet site." +msgstr "この StatusNet サイトのセッション設定。" + +#: actions/sessionsadminpanel.php:175 +msgid "Handle sessions" +msgstr "セッションの扱い" + +#: actions/sessionsadminpanel.php:177 +msgid "Whether to handle sessions ourselves." +msgstr "自分達でセッションを扱うのであるかどうか。" + +#: actions/sessionsadminpanel.php:181 +msgid "Session debugging" +msgstr "セッションデバッグ" + +#: actions/sessionsadminpanel.php:183 +msgid "Turn on debugging output for sessions." +msgstr "セッションのためのデバッグ出力をオン。" + +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/useradminpanel.php:293 +msgid "Save site settings" +msgstr "サイト設定の保存" + +#: actions/showapplication.php:82 +msgid "You must be logged in to view an application." +msgstr "!!アプリケーションを見るためにはログインしていなければなりません。" + +#: actions/showapplication.php:157 +msgid "Application profile" +msgstr "アプリケーションプロファイル" + +#: actions/showapplication.php:159 lib/applicationeditform.php:180 +msgid "Icon" +msgstr "アイコン" + +#: actions/showapplication.php:169 actions/version.php:195 +#: lib/applicationeditform.php:195 +msgid "Name" +msgstr "名前" + +#: actions/showapplication.php:178 lib/applicationeditform.php:222 +msgid "Organization" +msgstr "組織" + +#: actions/showapplication.php:187 actions/version.php:198 +#: lib/applicationeditform.php:209 lib/groupeditform.php:172 +msgid "Description" +msgstr "概要" + +#: actions/showapplication.php:192 actions/showgroup.php:429 +#: lib/profileaction.php:174 +msgid "Statistics" +msgstr "統計データ" + +#: actions/showapplication.php:203 +#, php-format +msgid "Created by %1$s - %2$s access by default - %3$d users" +msgstr "" + +#: actions/showapplication.php:213 +msgid "Application actions" +msgstr "アプリケーションアクション" + +#: actions/showapplication.php:236 +msgid "Reset key & secret" +msgstr "key と secret のリセット" + +#: actions/showapplication.php:261 +msgid "Application info" +msgstr "アプリケーション情報" + +#: actions/showapplication.php:263 +msgid "Consumer key" +msgstr "" + +#: actions/showapplication.php:268 +msgid "Consumer secret" +msgstr "" + +#: actions/showapplication.php:273 +msgid "Request token URL" +msgstr "リクエストトークンURL" + +#: actions/showapplication.php:278 +msgid "Access token URL" +msgstr "アクセストークンURL" + +#: actions/showapplication.php:283 +msgid "Authorize URL" +msgstr "承認URL" + +#: actions/showapplication.php:288 +msgid "" +"Note: We support HMAC-SHA1 signatures. We do not support the plaintext " +"signature method." +msgstr "" +"注意: 私たちはHMAC-SHA1署名をサポートします。 私たちは平文署名メソッドをサ" +"ポートしません。" + +#: actions/showapplication.php:309 +#, fuzzy +msgid "Are you sure you want to reset your consumer key and secret?" +msgstr "本当にこのつぶやきを削除しますか?" + +#: actions/showfavorites.php:79 +#, php-format +msgid "%1$s's favorite notices, page %2$d" +msgstr "%1$s のお気に入りのつぶやき、ページ %2$d" #: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." @@ -3016,17 +3456,22 @@ msgstr "これは、あなたが好きなことを共有する方法です。" msgid "%s group" msgstr "%s グループ" +#: actions/showgroup.php:84 +#, php-format +msgid "%1$s group, page %2$d" +msgstr "%1$s グループ、ページ %2$d" + #: actions/showgroup.php:218 msgid "Group profile" msgstr "グループプロファイル" #: actions/showgroup.php:263 actions/tagother.php:118 -#: actions/userauthorization.php:167 lib/userprofile.php:177 +#: actions/userauthorization.php:175 lib/userprofile.php:177 msgid "URL" msgstr "URL" #: actions/showgroup.php:274 actions/tagother.php:128 -#: actions/userauthorization.php:179 lib/userprofile.php:194 +#: actions/userauthorization.php:187 lib/userprofile.php:194 msgid "Note" msgstr "ノート" @@ -3072,13 +3517,9 @@ msgstr "(なし)" msgid "All members" msgstr "全てのメンバー" -#: actions/showgroup.php:429 lib/profileaction.php:174 -msgid "Statistics" -msgstr "統計データ" - #: actions/showgroup.php:432 msgid "Created" -msgstr "作成されました" +msgstr "作成日" #: actions/showgroup.php:448 #, php-format @@ -3090,7 +3531,7 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" "**%s** は %%site.name%% 上のユーザグループです。フリーソフトウェアツール" -"[StatusNet](http://status.net/)を基にした[マイクロブロギング] (http://en." +"[StatusNet](http://status.net/)を基にした[マイクロブロギング](http://en." "wikipedia.org/wiki/Micro-blogging) サービス。メンバーは彼らの暮らしと興味に関" "する短いメッセージを共有します。[今すぐ参加](%%%%action.register%%%%) してこ" "のグループの一員になりましょう! ([もっと読む](%%%%doc.help%%%%))" @@ -3139,6 +3580,11 @@ msgstr "つぶやきを削除しました。" msgid " tagged %s" msgstr "タグ付けされた %s" +#: actions/showstream.php:79 +#, php-format +msgid "%1$s, page %2$d" +msgstr "%1$s、ページ %2$d" + #: actions/showstream.php:122 #, php-format msgid "Notice feed for %1$s tagged %2$s (RSS 1.0)" @@ -3164,12 +3610,12 @@ msgstr "%sのつぶやきフィード (Atom)" msgid "FOAF for %s" msgstr "%s の FOAF" -#: actions/showstream.php:191 +#: actions/showstream.php:200 #, php-format msgid "This is the timeline for %1$s but %2$s hasn't posted anything yet." msgstr "これは %1$s のタイムラインですが、%2$s はまだなにも投稿していません。" -#: actions/showstream.php:196 +#: actions/showstream.php:205 msgid "" "Seen anything interesting recently? You haven't posted any notices yet, now " "would be a good time to start :)" @@ -3177,7 +3623,7 @@ msgstr "" "最近おもしろいものは何でしょう? あなたは少しのつぶやきも投稿していませんが、" "いまは始める良い時でしょう:)" -#: actions/showstream.php:198 +#: actions/showstream.php:207 #, php-format msgid "" "You can try to nudge %1$s or [post something to his or her attention](%%%%" @@ -3186,7 +3632,7 @@ msgstr "" "あなたは、%1$s に合図するか、[またはその人宛に何かを投稿](%%%%action." "newnotice%%%%?status_textarea=%2$s) することができます。" -#: actions/showstream.php:234 +#: actions/showstream.php:243 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3194,13 +3640,13 @@ msgid "" "[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%% 上のアカウントです。フリーソフトウェアツール" -"[StatusNet](http://status.net/)を基にした[マイクロブロギング] (http://en." +"**%s** は %%%%site.name%%%% 上のアカウントです。フリーソフトウェアツール" +"[StatusNet](http://status.net/)を基にした[マイクロブロギング](http://en." "wikipedia.org/wiki/Micro-blogging) サービス。[今すぐ参加](%%%%action.register" "%%%%)して、**%s** のつぶやきなどをフォローしましょう! ([もっと読む](%%%%doc." "help%%%%))" -#: actions/showstream.php:239 +#: actions/showstream.php:248 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3208,10 +3654,10 @@ msgid "" "[StatusNet](http://status.net/) tool. " msgstr "" "**%s** は %%site.name%% 上のアカウントです。フリーソフトウェアツール" -"[StatusNet](http://status.net/)を基にした[マイクロブロギング] (http://en." +"[StatusNet](http://status.net/)を基にした[マイクロブロギング](http://en." "wikipedia.org/wiki/Micro-blogging) サービス。" -#: actions/showstream.php:313 +#: actions/showstream.php:305 #, php-format msgid "Repeat of %s" msgstr "%s の繰り返し" @@ -3222,206 +3668,154 @@ msgstr "あなたはこのサイトでユーザを黙らせることができま #: actions/silence.php:72 msgid "User is already silenced." -msgstr "利用者は既に黙っています。" +msgstr "ユーザは既に黙っています。" #: actions/siteadminpanel.php:69 msgid "Basic settings for this StatusNet site." msgstr "この StatusNet サイトの基本設定。" -#: actions/siteadminpanel.php:146 +#: actions/siteadminpanel.php:132 msgid "Site name must have non-zero length." msgstr "サイト名は長さ0ではいけません。" -#: actions/siteadminpanel.php:154 +#: actions/siteadminpanel.php:140 msgid "You must have a valid contact email address." msgstr "有効な連絡用メールアドレスがなければなりません。" -#: actions/siteadminpanel.php:172 +#: actions/siteadminpanel.php:158 #, php-format msgid "Unknown language \"%s\"." msgstr "不明な言語 \"%s\"" -#: actions/siteadminpanel.php:179 +#: actions/siteadminpanel.php:165 msgid "Invalid snapshot report URL." msgstr "不正なスナップショットレポートURL。" -#: actions/siteadminpanel.php:185 +#: actions/siteadminpanel.php:171 msgid "Invalid snapshot run value." msgstr "不正なスナップショットランバリュー" -#: actions/siteadminpanel.php:191 +#: actions/siteadminpanel.php:177 msgid "Snapshot frequency must be a number." msgstr "スナップショット頻度は数でなければなりません。" -#: actions/siteadminpanel.php:197 +#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "最小のテキスト制限は140字です。" -#: actions/siteadminpanel.php:203 +#: actions/siteadminpanel.php:189 msgid "Dupe limit must 1 or more seconds." msgstr "デュープ制限は1秒以上でなければなりません。" -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:239 msgid "General" msgstr "一般" -#: actions/siteadminpanel.php:256 +#: actions/siteadminpanel.php:242 msgid "Site name" msgstr "サイト名" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:243 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "あなたのサイトの名前、\"Yourcompany Microblog\"のような。" -#: actions/siteadminpanel.php:261 +#: actions/siteadminpanel.php:247 msgid "Brought by" msgstr "持って来られます" -#: actions/siteadminpanel.php:262 +#: actions/siteadminpanel.php:248 msgid "Text used for credits link in footer of each page" msgstr "" "クレジットに使用されるテキストは、それぞれのページのフッターでリンクされま" "す。" -#: actions/siteadminpanel.php:266 +#: actions/siteadminpanel.php:252 msgid "Brought by URL" msgstr "URLで、持って来られます" -#: actions/siteadminpanel.php:267 +#: actions/siteadminpanel.php:253 msgid "URL used for credits link in footer of each page" msgstr "" "クレジットに使用されるURLは、それぞれのページのフッターでリンクされます。" -#: actions/siteadminpanel.php:271 +#: actions/siteadminpanel.php:257 msgid "Contact email address for your site" msgstr "あなたのサイトにコンタクトするメールアドレス" -#: actions/siteadminpanel.php:277 +#: actions/siteadminpanel.php:263 msgid "Local" msgstr "ローカル" -#: actions/siteadminpanel.php:288 +#: actions/siteadminpanel.php:274 msgid "Default timezone" msgstr "デフォルトタイムゾーン" -#: actions/siteadminpanel.php:289 +#: actions/siteadminpanel.php:275 msgid "Default timezone for the site; usually UTC." msgstr "サイトのデフォルトタイムゾーン; 通常UTC。" -#: actions/siteadminpanel.php:295 +#: actions/siteadminpanel.php:281 msgid "Default site language" msgstr "デフォルトサイト言語" -#: actions/siteadminpanel.php:303 -msgid "URLs" -msgstr "" - -#: actions/siteadminpanel.php:306 -msgid "Server" -msgstr "サーバー" - -#: actions/siteadminpanel.php:306 -msgid "Site's server hostname." -msgstr "サイトのサーバーホスト名" - -#: actions/siteadminpanel.php:310 -msgid "Fancy URLs" -msgstr "" - -#: actions/siteadminpanel.php:312 -msgid "Use fancy (more readable and memorable) URLs?" -msgstr "Fancy URL (読みやすく忘れにくい) を使用しますか?" - -#: actions/siteadminpanel.php:318 -msgid "Access" -msgstr "アクセス" - -#: actions/siteadminpanel.php:321 -msgid "Private" -msgstr "プライベート" - -#: actions/siteadminpanel.php:323 -msgid "Prohibit anonymous users (not logged in) from viewing site?" -msgstr "匿名ユーザー(ログインしていません)がサイトを見るのを禁止しますか?" - -#: actions/siteadminpanel.php:327 -msgid "Invite only" -msgstr "招待のみ" - -#: actions/siteadminpanel.php:329 -msgid "Make registration invitation only." -msgstr "招待のみ登録する" - -#: actions/siteadminpanel.php:333 -msgid "Closed" -msgstr "閉じられた" - -#: actions/siteadminpanel.php:335 -msgid "Disable new registrations." -msgstr "新規登録を無効。" - -#: actions/siteadminpanel.php:341 +#: actions/siteadminpanel.php:289 msgid "Snapshots" msgstr "スナップショット" -#: actions/siteadminpanel.php:344 +#: actions/siteadminpanel.php:292 msgid "Randomly during Web hit" msgstr "" -#: actions/siteadminpanel.php:345 +#: actions/siteadminpanel.php:293 msgid "In a scheduled job" msgstr "予定されているジョブで" -#: actions/siteadminpanel.php:347 +#: actions/siteadminpanel.php:295 msgid "Data snapshots" msgstr "データスナップショット" -#: actions/siteadminpanel.php:348 +#: actions/siteadminpanel.php:296 msgid "When to send statistical data to status.net servers" msgstr "いつ status.net サーバに統計データを送りますか" -#: actions/siteadminpanel.php:353 +#: actions/siteadminpanel.php:301 msgid "Frequency" msgstr "頻度" -#: actions/siteadminpanel.php:354 +#: actions/siteadminpanel.php:302 msgid "Snapshots will be sent once every N web hits" msgstr "レポート URL" -#: actions/siteadminpanel.php:359 +#: actions/siteadminpanel.php:307 msgid "Report URL" msgstr "レポート URL" -#: actions/siteadminpanel.php:360 +#: actions/siteadminpanel.php:308 msgid "Snapshots will be sent to this URL" msgstr "このURLにスナップショットを送るでしょう" -#: actions/siteadminpanel.php:367 +#: actions/siteadminpanel.php:315 msgid "Limits" msgstr "制限" -#: actions/siteadminpanel.php:370 +#: actions/siteadminpanel.php:318 msgid "Text limit" msgstr "テキスト制限" -#: actions/siteadminpanel.php:370 +#: actions/siteadminpanel.php:318 msgid "Maximum number of characters for notices." msgstr "つぶやきの文字の最大数" -#: actions/siteadminpanel.php:374 +#: actions/siteadminpanel.php:322 msgid "Dupe limit" msgstr "デュープ制限" -#: actions/siteadminpanel.php:374 +#: actions/siteadminpanel.php:322 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" "どれくらい長い間(秒)、ユーザは、再び同じものを投稿するのを待たなければならな" "いか。" -#: actions/siteadminpanel.php:388 actions/useradminpanel.php:313 -msgid "Save site settings" -msgstr "サイト設定の保存" - #: actions/smssettings.php:58 msgid "SMS settings" msgstr "SMS 設定" @@ -3482,7 +3876,7 @@ msgstr "これはすでにあなたの電話番号です。" #: actions/smssettings.php:321 msgid "That phone number already belongs to another user." -msgstr "この電話番号はすでに他の利用者に使われています。" +msgstr "この電話番号はすでに他のユーザに使われています。" #: actions/smssettings.php:347 msgid "" @@ -3526,15 +3920,26 @@ msgstr "コードが入力されていません" msgid "You are not subscribed to that profile." msgstr "あなたはそのプロファイルにフォローされていません。" -#: actions/subedit.php:83 +#: actions/subedit.php:83 classes/Subscription.php:89 +#: classes/Subscription.php:116 msgid "Could not save subscription." msgstr "フォローを保存できません。" -#: actions/subscribe.php:55 -msgid "Not a local user." -msgstr "ローカルユーザではありません。" +#: actions/subscribe.php:77 +msgid "This action only accepts POST requests." +msgstr "" -#: actions/subscribe.php:69 +#: actions/subscribe.php:107 +#, fuzzy +msgid "No such profile." +msgstr "そのようなファイルはありません。" + +#: actions/subscribe.php:117 +#, fuzzy +msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." +msgstr "あなたはそのプロファイルにフォローされていません。" + +#: actions/subscribe.php:145 msgid "Subscribed" msgstr "フォローしている" @@ -3598,7 +4003,7 @@ msgstr "あなたがつぶやきを聞いている人" msgid "These are the people whose notices %s listens to." msgstr "%s がつぶやきを聞いている人" -#: actions/subscriptions.php:121 +#: actions/subscriptions.php:126 #, php-format msgid "" "You're not listening to anyone's notices right now, try subscribing to " @@ -3609,24 +4014,29 @@ msgid "" msgstr "" "今、だれのつぶやきも聞いていないなら、あなたが知っている人々をフォローしてみ" "てください。[ピープル検索](%%action.peoplesearch%%)を試してください。そして、" -"あなたが興味を持っているグループと私たちの[フィーチャーされた利用者](%%" +"あなたが興味を持っているグループと私たちの[フィーチャーされたユーザ](%%" "action.featured%%)のメンバーを探してください。もし[Twitterユーザ](%%action." "twittersettings%%)であれば、あなたは自動的に既にフォローしている人々をフォ" "ローできます。" -#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#: actions/subscriptions.php:128 actions/subscriptions.php:132 #, php-format msgid "%s is not listening to anyone." msgstr "%s はだれも言うことを聞いていません。" -#: actions/subscriptions.php:194 +#: actions/subscriptions.php:199 msgid "Jabber" msgstr "Jabber" -#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:204 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "SMS" +#: actions/tag.php:68 +#, php-format +msgid "Notices tagged with %1$s, page %2$d" +msgstr "%1$s とタグ付けされたつぶやき、ページ %2$d" + #: actions/tag.php:86 #, php-format msgid "Notice feed for tag %s (RSS 1.0)" @@ -3653,22 +4063,23 @@ msgstr "タグ %s" #: actions/tagother.php:77 lib/userprofile.php:75 msgid "User profile" -msgstr "利用者プロファイル" +msgstr "ユーザプロファイル" -#: actions/tagother.php:81 lib/userprofile.php:102 +#: actions/tagother.php:81 actions/userauthorization.php:132 +#: lib/userprofile.php:102 msgid "Photo" msgstr "写真" #: actions/tagother.php:141 msgid "Tag user" -msgstr "タグ利用者" +msgstr "タグユーザ" #: actions/tagother.php:151 msgid "" "Tags for this user (letters, numbers, -, ., and _), comma- or space- " "separated" msgstr "" -"この利用者のタグ (アルファベット、数字、-、.、_)、カンマかスペース区切り" +"このユーザのタグ (アルファベット、数字、-、.、_)、カンマかスペース区切り" #: actions/tagother.php:193 msgid "" @@ -3699,11 +4110,11 @@ msgstr "あなたはそのユーザをブロックしていません。" #: actions/unsandbox.php:72 msgid "User is not sandboxed." -msgstr "利用者はサンドボックスではありません。" +msgstr "ユーザはサンドボックスではありません。" #: actions/unsilence.php:72 msgid "User is not silenced." -msgstr "利用者はサイレンスではありません。" +msgstr "ユーザはサイレンスではありません。" #: actions/unsubscribe.php:77 msgid "No profile id in request." @@ -3713,7 +4124,7 @@ msgstr "リクエスト内にプロファイルIDがありません。" msgid "Unsubscribed" msgstr "フォロー解除済み" -#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#: actions/updateprofile.php:62 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -3724,89 +4135,69 @@ msgstr "" #: actions/useradminpanel.php:58 lib/adminpanelaction.php:321 #: lib/personalgroupnav.php:115 msgid "User" -msgstr "利用者" +msgstr "ユーザ" #: actions/useradminpanel.php:69 msgid "User settings for this StatusNet site." -msgstr "この StatusNet サイトの利用者設定。" +msgstr "この StatusNet サイトのユーザ設定。" -#: actions/useradminpanel.php:149 +#: actions/useradminpanel.php:148 msgid "Invalid bio limit. Must be numeric." msgstr "不正な自己紹介制限。数字である必要があります。" -#: actions/useradminpanel.php:155 +#: actions/useradminpanel.php:154 msgid "Invalid welcome text. Max length is 255 characters." msgstr "不正なウェルカムテキスト。最大長は255字です。" -#: actions/useradminpanel.php:165 +#: actions/useradminpanel.php:164 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." -msgstr "不正なデフォルトフォローです: '%1$s' は利用者ではありません。" +msgstr "不正なデフォルトフォローです: '%1$s' はユーザではありません。" -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 +#: actions/useradminpanel.php:217 lib/accountsettingsaction.php:108 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "プロファイル" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:221 msgid "Bio Limit" msgstr "自己紹介制限" -#: actions/useradminpanel.php:223 +#: actions/useradminpanel.php:222 msgid "Maximum length of a profile bio in characters." msgstr "プロファイル自己紹介の最大文字長。" -#: actions/useradminpanel.php:231 +#: actions/useradminpanel.php:230 msgid "New users" -msgstr "新しい利用者" +msgstr "新しいユーザ" + +#: actions/useradminpanel.php:234 +msgid "New user welcome" +msgstr "新しいユーザを歓迎" #: actions/useradminpanel.php:235 -msgid "New user welcome" -msgstr "新しい利用者を歓迎" - -#: actions/useradminpanel.php:236 msgid "Welcome text for new users (Max 255 chars)." -msgstr "新しい利用者へのウェルカムテキスト (最大255字)。" +msgstr "新しいユーザへのウェルカムテキスト (最大255字)。" -#: actions/useradminpanel.php:241 +#: actions/useradminpanel.php:240 msgid "Default subscription" msgstr "デフォルトフォロー" -#: actions/useradminpanel.php:242 +#: actions/useradminpanel.php:241 msgid "Automatically subscribe new users to this user." -msgstr "自動的にこの利用者に新しい利用者をフォローしてください。" +msgstr "自動的にこのユーザに新しいユーザをフォローしてください。" -#: actions/useradminpanel.php:251 +#: actions/useradminpanel.php:250 msgid "Invitations" msgstr "招待" -#: actions/useradminpanel.php:256 +#: actions/useradminpanel.php:255 msgid "Invitations enabled" msgstr "招待が可能" -#: actions/useradminpanel.php:258 +#: actions/useradminpanel.php:257 msgid "Whether to allow users to invite new users." -msgstr "利用者が新しい利用者を招待するのを許容するかどうか。" - -#: actions/useradminpanel.php:265 -msgid "Sessions" -msgstr "セッション" - -#: actions/useradminpanel.php:270 -msgid "Handle sessions" -msgstr "セッションの扱い" - -#: actions/useradminpanel.php:272 -msgid "Whether to handle sessions ourselves." -msgstr "自分達でセッションを扱うのであるかどうか。" - -#: actions/useradminpanel.php:276 -msgid "Session debugging" -msgstr "セッションデバッグ" - -#: actions/useradminpanel.php:278 -msgid "Turn on debugging output for sessions." -msgstr "セッションのためのデバッグ出力をオン。" +msgstr "ユーザが新しいユーザを招待するのを許容するかどうか。" #: actions/userauthorization.php:105 msgid "Authorize subscription" @@ -3821,36 +4212,36 @@ msgstr "" "ユーザのつぶやきをフォローするには詳細を確認して下さい。だれかのつぶやきを" "フォローするために尋ねない場合は、\"Reject\" をクリックして下さい。" -#: actions/userauthorization.php:188 actions/version.php:165 +#: actions/userauthorization.php:196 actions/version.php:165 msgid "License" msgstr "ライセンス" -#: actions/userauthorization.php:209 +#: actions/userauthorization.php:217 msgid "Accept" msgstr "承認" -#: actions/userauthorization.php:210 lib/subscribeform.php:115 +#: actions/userauthorization.php:218 lib/subscribeform.php:115 #: lib/subscribeform.php:139 msgid "Subscribe to this user" msgstr "このユーザーをフォロー" -#: actions/userauthorization.php:211 +#: actions/userauthorization.php:219 msgid "Reject" msgstr "拒否" -#: actions/userauthorization.php:212 +#: actions/userauthorization.php:220 msgid "Reject this subscription" msgstr "このフォローを拒否" -#: actions/userauthorization.php:225 +#: actions/userauthorization.php:232 msgid "No authorization request!" msgstr "認証のリクエストがありません。" -#: actions/userauthorization.php:247 +#: actions/userauthorization.php:254 msgid "Subscription authorized" msgstr "フォローが承認されました" -#: actions/userauthorization.php:249 +#: actions/userauthorization.php:256 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 " @@ -3860,11 +4251,11 @@ msgstr "" "フォローを承認するかに関する詳細のためのサイトの指示をチェックしてください。" "あなたのフォロートークンは:" -#: actions/userauthorization.php:259 +#: actions/userauthorization.php:266 msgid "Subscription rejected" msgstr "フォローが拒否" -#: actions/userauthorization.php:261 +#: actions/userauthorization.php:268 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 " @@ -3874,37 +4265,37 @@ msgstr "" "フォローを完全に拒絶するかに関する詳細のためのサイトの指示をチェックしてくだ" "さい。" -#: actions/userauthorization.php:296 +#: actions/userauthorization.php:303 #, php-format msgid "Listener URI ‘%s’ not found here." msgstr "リスナー URI ‘%s’ はここでは見つかりません。" -#: actions/userauthorization.php:301 +#: actions/userauthorization.php:308 #, php-format msgid "Listenee URI ‘%s’ is too long." msgstr "リスニー URI ‘%s’ が長すぎます。" -#: actions/userauthorization.php:307 +#: actions/userauthorization.php:314 #, php-format msgid "Listenee URI ‘%s’ is a local user." msgstr "リスニー URI ‘%s’ はローカルユーザーではありません。" -#: actions/userauthorization.php:322 +#: actions/userauthorization.php:329 #, php-format msgid "Profile URL ‘%s’ is for a local user." msgstr "プロファイル URL ‘%s’ はローカルユーザーではありません。" -#: actions/userauthorization.php:338 +#: actions/userauthorization.php:345 #, php-format msgid "Avatar URL ‘%s’ is not valid." msgstr "アバター URL ‘%s’ が正しくありません。" -#: actions/userauthorization.php:343 +#: actions/userauthorization.php:350 #, php-format msgid "Can’t read avatar URL ‘%s’." msgstr "アバターURL を読み取れません '%s'" -#: actions/userauthorization.php:348 +#: actions/userauthorization.php:355 #, php-format msgid "Wrong image type for avatar URL ‘%s’." msgstr "アバター URL '%s' は不正な画像形式。" @@ -3926,6 +4317,11 @@ msgstr "" msgid "Enjoy your hotdog!" msgstr "あなたのhotdogを楽しんでください!" +#: actions/usergroups.php:64 +#, php-format +msgid "%1$s groups, page %2$d" +msgstr "%1$s グループ、ページ %2$d" + #: actions/usergroups.php:130 msgid "Search for more groups" msgstr "もっとグループを検索" @@ -3954,10 +4350,6 @@ msgstr "" "This site is powered by %1$s version %2$s, Copyright 2008-2010 StatusNet, " "Inc. and contributors." -#: actions/version.php:157 -msgid "StatusNet" -msgstr "StatusNet" - #: actions/version.php:161 msgid "Contributors" msgstr "コントリビュータ" @@ -3989,11 +4381,7 @@ msgstr "" msgid "Plugins" msgstr "プラグイン" -#: actions/version.php:195 -msgid "Name" -msgstr "名前" - -#: actions/version.php:196 lib/action.php:741 +#: actions/version.php:196 lib/action.php:747 msgid "Version" msgstr "バージョン" @@ -4001,10 +4389,6 @@ msgstr "バージョン" msgid "Author(s)" msgstr "作者" -#: actions/version.php:198 lib/groupeditform.php:172 -msgid "Description" -msgstr "概要" - #: classes/File.php:144 #, php-format msgid "" @@ -4028,19 +4412,16 @@ msgstr "" "これほど大きいファイルはあなたの%dバイトの毎月の割当てを超えているでしょう。" #: classes/Group_member.php:41 -#, fuzzy msgid "Group join failed." -msgstr "グループプロファイル" +msgstr "グループ参加に失敗しました。" #: classes/Group_member.php:53 -#, fuzzy msgid "Not part of group." -msgstr "グループを更新できません。" +msgstr "グループの一部ではありません。" #: classes/Group_member.php:60 -#, fuzzy msgid "Group leave failed." -msgstr "グループプロファイル" +msgstr "グループ脱退に失敗しました。" #: classes/Login_token.php:76 #, php-format @@ -4059,26 +4440,26 @@ msgstr "メッセージを追加できません。" msgid "Could not update message with new URI." msgstr "新しいURIでメッセージをアップデートできませんでした。" -#: classes/Notice.php:171 +#: classes/Notice.php:157 #, php-format msgid "DB error inserting hashtag: %s" msgstr "ハッシュタグ追加 DB エラー: %s" -#: classes/Notice.php:225 +#: classes/Notice.php:222 msgid "Problem saving notice. Too long." msgstr "つぶやきを保存する際に問題が発生しました。長すぎです。" -#: classes/Notice.php:229 +#: classes/Notice.php:226 msgid "Problem saving notice. Unknown user." -msgstr "つぶやきを保存する際に問題が発生しました。不明な利用者です。" +msgstr "つぶやきを保存する際に問題が発生しました。不明なユーザです。" -#: classes/Notice.php:234 +#: classes/Notice.php:231 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" "多すぎるつぶやきが速すぎます; 数分間の休みを取ってから再投稿してください。" -#: classes/Notice.php:240 +#: classes/Notice.php:237 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." @@ -4086,34 +4467,57 @@ msgstr "" "多すぎる重複メッセージが速すぎます; 数分間休みを取ってから再度投稿してくださ" "い。" -#: classes/Notice.php:246 +#: classes/Notice.php:243 msgid "You are banned from posting notices on this site." msgstr "あなたはこのサイトでつぶやきを投稿するのが禁止されています。" -#: classes/Notice.php:305 classes/Notice.php:330 +#: classes/Notice.php:309 classes/Notice.php:335 msgid "Problem saving notice." msgstr "つぶやきを保存する際に問題が発生しました。" -#: classes/Notice.php:1052 -#, php-format -msgid "DB error inserting reply: %s" -msgstr "返信を追加する際にデータベースエラー : %s" +#: classes/Notice.php:882 +msgid "Problem saving group inbox." +msgstr "グループ受信箱を保存する際に問題が発生しました。" -#: classes/Notice.php:1423 +#: classes/Notice.php:1407 #, php-format msgid "RT @%1$s %2$s" msgstr "" -#: classes/User.php:382 +#: classes/Subscription.php:66 lib/oauthstore.php:465 +msgid "You have been banned from subscribing." +msgstr "あなたはフォローが禁止されました。" + +#: classes/Subscription.php:70 +msgid "Already subscribed!" +msgstr "すでにフォローしています!" + +#: classes/Subscription.php:74 +msgid "User has blocked you." +msgstr "ユーザはあなたをブロックしました。" + +#: classes/Subscription.php:157 +msgid "Not subscribed!" +msgstr "フォローしていません!" + +#: classes/Subscription.php:163 +msgid "Couldn't delete self-subscription." +msgstr "自己フォローを削除できません。" + +#: classes/Subscription.php:179 lib/subs.php:69 +msgid "Couldn't delete subscription." +msgstr "フォローを削除できません" + +#: classes/User.php:372 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "ようこそ %1$s、@%2$s!" -#: classes/User_group.php:380 +#: classes/User_group.php:423 msgid "Could not create group." msgstr "グループを作成できません。" -#: classes/User_group.php:409 +#: classes/User_group.php:452 msgid "Could not set group membership." msgstr "グループメンバーシップをセットできません。" @@ -4154,128 +4558,124 @@ msgstr "" msgid "Untitled page" msgstr "名称未設定ページ" -#: lib/action.php:427 +#: lib/action.php:433 msgid "Primary site navigation" msgstr "プライマリサイトナビゲーション" -#: lib/action.php:433 +#: lib/action.php:439 msgid "Home" msgstr "ホーム" -#: lib/action.php:433 +#: lib/action.php:439 msgid "Personal profile and friends timeline" msgstr "パーソナルプロファイルと友人のタイムライン" -#: lib/action.php:435 -msgid "Account" -msgstr "アカウント" - -#: lib/action.php:435 +#: lib/action.php:441 msgid "Change your email, avatar, password, profile" msgstr "メールアドレス、アバター、パスワード、プロパティの変更" -#: lib/action.php:438 +#: lib/action.php:444 msgid "Connect" msgstr "接続" -#: lib/action.php:438 +#: lib/action.php:444 msgid "Connect to services" msgstr "サービスへ接続" -#: lib/action.php:442 +#: lib/action.php:448 msgid "Change site configuration" msgstr "サイト設定の変更" -#: lib/action.php:446 lib/subgroupnav.php:105 +#: lib/action.php:452 lib/subgroupnav.php:105 msgid "Invite" msgstr "招待" -#: lib/action.php:447 lib/subgroupnav.php:106 +#: lib/action.php:453 lib/subgroupnav.php:106 #, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "友人や同僚が %s で加わるよう誘ってください。" -#: lib/action.php:452 +#: lib/action.php:458 msgid "Logout" msgstr "ログアウト" -#: lib/action.php:452 +#: lib/action.php:458 msgid "Logout from the site" msgstr "サイトからログアウト" -#: lib/action.php:457 +#: lib/action.php:463 msgid "Create an account" msgstr "アカウントを作成" -#: lib/action.php:460 +#: lib/action.php:466 msgid "Login to the site" msgstr "サイトへログイン" -#: lib/action.php:463 lib/action.php:726 +#: lib/action.php:469 lib/action.php:732 msgid "Help" msgstr "ヘルプ" -#: lib/action.php:463 +#: lib/action.php:469 msgid "Help me!" msgstr "助けて!" -#: lib/action.php:466 lib/searchaction.php:127 +#: lib/action.php:472 lib/searchaction.php:127 msgid "Search" msgstr "検索" -#: lib/action.php:466 +#: lib/action.php:472 msgid "Search for people or text" msgstr "人々かテキストを検索" -#: lib/action.php:487 +#: lib/action.php:493 msgid "Site notice" msgstr "サイトつぶやき" -#: lib/action.php:553 +#: lib/action.php:559 msgid "Local views" msgstr "ローカルビュー" -#: lib/action.php:619 +#: lib/action.php:625 msgid "Page notice" msgstr "ページつぶやき" -#: lib/action.php:721 +#: lib/action.php:727 msgid "Secondary site navigation" msgstr "セカンダリサイトナビゲーション" -#: lib/action.php:728 +#: lib/action.php:734 msgid "About" msgstr "About" -#: lib/action.php:730 +#: lib/action.php:736 msgid "FAQ" msgstr "よくある質問" -#: lib/action.php:734 +#: lib/action.php:740 msgid "TOS" msgstr "" -#: lib/action.php:737 +#: lib/action.php:743 msgid "Privacy" msgstr "プライバシー" -#: lib/action.php:739 +#: lib/action.php:745 msgid "Source" msgstr "ソース" -#: lib/action.php:743 +#: lib/action.php:749 msgid "Contact" msgstr "連絡先" -#: lib/action.php:745 +#: lib/action.php:751 msgid "Badge" msgstr "バッジ" -#: lib/action.php:773 +#: lib/action.php:779 msgid "StatusNet software license" msgstr "StatusNet ソフトウェアライセンス" -#: lib/action.php:776 +#: lib/action.php:782 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4284,12 +4684,12 @@ msgstr "" "**%%site.name%%** は [%%site.broughtby%%](%%site.broughtbyurl%%) が提供するマ" "イクロブログサービスです。 " -#: lib/action.php:778 +#: lib/action.php:784 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** はマイクロブログサービスです。 " -#: lib/action.php:780 +#: lib/action.php:786 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4300,33 +4700,55 @@ msgstr "" "いています。 ライセンス [GNU Affero General Public License](http://www.fsf." "org/licensing/licenses/agpl-3.0.html)。" -#: lib/action.php:794 +#: lib/action.php:801 msgid "Site content license" msgstr "サイト内容ライセンス" -#: lib/action.php:803 +#: lib/action.php:806 +#, php-format +msgid "Content and data of %1$s are private and confidential." +msgstr "" + +#: lib/action.php:811 +#, php-format +msgid "Content and data copyright by %1$s. All rights reserved." +msgstr "" + +#: lib/action.php:814 +msgid "Content and data copyright by contributors. All rights reserved." +msgstr "" + +#: lib/action.php:827 msgid "All " msgstr "全て " -#: lib/action.php:808 +#: lib/action.php:833 msgid "license." msgstr "ライセンス。" -#: lib/action.php:1102 +#: lib/action.php:1132 msgid "Pagination" msgstr "ページ化" -#: lib/action.php:1111 +#: lib/action.php:1141 msgid "After" msgstr "<<後" -#: lib/action.php:1119 +#: lib/action.php:1149 msgid "Before" msgstr "前>>" -#: lib/action.php:1167 -msgid "There was a problem with your session token." -msgstr "あなたのセッショントークンに関する問題がありました。" +#: lib/activity.php:382 +msgid "Can't handle remote content yet." +msgstr "" + +#: lib/activity.php:410 +msgid "Can't handle embedded XML content yet." +msgstr "" + +#: lib/activity.php:414 +msgid "Can't handle embedded Base64 content yet." +msgstr "" #: lib/adminpanelaction.php:96 msgid "You cannot make changes to this site." @@ -4356,10 +4778,100 @@ msgstr "基本サイト設定" msgid "Design configuration" msgstr "デザイン設定" -#: lib/adminpanelaction.php:322 lib/adminpanelaction.php:327 +#: lib/adminpanelaction.php:322 +msgid "User configuration" +msgstr "ユーザ設定" + +#: lib/adminpanelaction.php:327 +msgid "Access configuration" +msgstr "アクセス設定" + +#: lib/adminpanelaction.php:332 msgid "Paths configuration" msgstr "パス設定" +#: lib/adminpanelaction.php:337 +msgid "Sessions configuration" +msgstr "セッション設定" + +#: lib/apiauth.php:95 +msgid "API resource requires read-write access, but you only have read access." +msgstr "" +"APIリソースは読み書きアクセスが必要です、しかしあなたは読みアクセスしか持って" +"いません。" + +#: lib/apiauth.php:273 +#, php-format +msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" +msgstr "" + +#: lib/applicationeditform.php:136 +msgid "Edit application" +msgstr "アプリケーション編集" + +#: lib/applicationeditform.php:184 +msgid "Icon for this application" +msgstr "このアプリケーションのアイコン" + +#: lib/applicationeditform.php:204 +#, php-format +msgid "Describe your application in %d characters" +msgstr "あなたのアプリケーションを %d 字以内記述" + +#: lib/applicationeditform.php:207 +msgid "Describe your application" +msgstr "あなたのアプリケーションを記述" + +#: lib/applicationeditform.php:216 +msgid "Source URL" +msgstr "ソース URL" + +#: lib/applicationeditform.php:218 +msgid "URL of the homepage of this application" +msgstr "このアプリケーションのホームページの URL" + +#: lib/applicationeditform.php:224 +msgid "Organization responsible for this application" +msgstr "このアプリケーションに責任がある組織" + +#: lib/applicationeditform.php:230 +msgid "URL for the homepage of the organization" +msgstr "組織のホームページのURL" + +#: lib/applicationeditform.php:236 +msgid "URL to redirect to after authentication" +msgstr "認証の後にリダイレクトするURL" + +#: lib/applicationeditform.php:258 +msgid "Browser" +msgstr "ブラウザ" + +#: lib/applicationeditform.php:274 +msgid "Desktop" +msgstr "デスクトップ" + +#: lib/applicationeditform.php:275 +msgid "Type of application, browser or desktop" +msgstr "アプリケーション、ブラウザ、またはデスクトップのタイプ" + +#: lib/applicationeditform.php:297 +msgid "Read-only" +msgstr "リードオンリー" + +#: lib/applicationeditform.php:315 +msgid "Read-write" +msgstr "リードライト" + +#: lib/applicationeditform.php:316 +msgid "Default access for this application: read-only, or read-write" +msgstr "" +"このアプリケーションのためのデフォルトアクセス: リードオンリー、またはリード" +"ライト" + +#: lib/applicationlist.php:154 +msgid "Revoke" +msgstr "取消し" + #: lib/attachmentlist.php:87 msgid "Attachments" msgstr "添付" @@ -4380,11 +4892,11 @@ msgstr "この添付が現れるつぶやき" msgid "Tags for this attachment" msgstr "この添付のタグ" -#: lib/authenticationplugin.php:182 lib/authenticationplugin.php:187 +#: lib/authenticationplugin.php:218 lib/authenticationplugin.php:223 msgid "Password changing failed" msgstr "パスワード変更に失敗しました" -#: lib/authenticationplugin.php:197 +#: lib/authenticationplugin.php:233 msgid "Password changing is not allowed" msgstr "パスワード変更は許可されていません" @@ -4436,7 +4948,7 @@ msgstr "その ID によるつぶやきは存在していません" #: lib/command.php:168 lib/command.php:406 lib/command.php:467 #: lib/command.php:523 msgid "User has no last notice" -msgstr "利用者はまだつぶやいていません" +msgstr "ユーザはまだつぶやいていません" #: lib/command.php:190 msgid "Notice marked as fave." @@ -4449,7 +4961,7 @@ msgstr "あなたは既にそのグループに参加しています。" #: lib/command.php:231 #, php-format msgid "Could not join user %s to group %s" -msgstr "利用者 %s はグループ %s に参加できません" +msgstr "ユーザ %s はグループ %s に参加できません" #: lib/command.php:236 #, php-format @@ -4459,7 +4971,7 @@ msgstr "%s はグループ %s に参加しました" #: lib/command.php:275 #, php-format msgid "Could not remove user %s to group %s" -msgstr "利用者 %s をグループ %s から削除することができません" +msgstr "ユーザ %s をグループ %s から削除することができません" #: lib/command.php:280 #, php-format @@ -4533,79 +5045,89 @@ msgstr "つぶやき保存エラー。" #: lib/command.php:547 msgid "Specify the name of the user to subscribe to" -msgstr "フォローする利用者の名前を指定してください" +msgstr "フォローするユーザの名前を指定してください" -#: lib/command.php:554 +#: lib/command.php:554 lib/command.php:589 +#, fuzzy +msgid "No such user" +msgstr "そのようなユーザはいません。" + +#: lib/command.php:561 #, php-format msgid "Subscribed to %s" msgstr "%s をフォローしました" -#: lib/command.php:575 +#: lib/command.php:582 lib/command.php:685 msgid "Specify the name of the user to unsubscribe from" msgstr "フォローをやめるユーザの名前を指定してください" -#: lib/command.php:582 +#: lib/command.php:595 #, php-format msgid "Unsubscribed from %s" msgstr "%s のフォローをやめる" -#: lib/command.php:600 lib/command.php:623 +#: lib/command.php:613 lib/command.php:636 msgid "Command not yet implemented." msgstr "コマンドはまだ実装されていません。" -#: lib/command.php:603 +#: lib/command.php:616 msgid "Notification off." msgstr "通知オフ。" -#: lib/command.php:605 +#: lib/command.php:618 msgid "Can't turn off notification." msgstr "通知をオフできません。" -#: lib/command.php:626 +#: lib/command.php:639 msgid "Notification on." msgstr "通知オン。" -#: lib/command.php:628 +#: lib/command.php:641 msgid "Can't turn on notification." msgstr "通知をオンできません。" -#: lib/command.php:641 +#: lib/command.php:654 msgid "Login command is disabled" msgstr "ログインコマンドが無効になっています。" -#: lib/command.php:652 +#: lib/command.php:665 #, php-format msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "このリンクは、かつてだけ使用可能であり、2分間だけ良いです: %s" -#: lib/command.php:668 +#: lib/command.php:692 +#, fuzzy, php-format +msgid "Unsubscribed %s" +msgstr "%s のフォローをやめる" + +#: lib/command.php:709 msgid "You are not subscribed to anyone." msgstr "あなたはだれにもフォローされていません。" -#: lib/command.php:670 +#: lib/command.php:711 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "あなたはこの人にフォローされています:" -#: lib/command.php:690 +#: lib/command.php:731 msgid "No one is subscribed to you." msgstr "誰もフォローしていません。" -#: lib/command.php:692 +#: lib/command.php:733 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "この人はあなたにフォローされている:" -#: lib/command.php:712 +#: lib/command.php:753 msgid "You are not a member of any groups." msgstr "あなたはどのグループのメンバーでもありません。" -#: lib/command.php:714 +#: lib/command.php:755 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "あなたはこのグループのメンバーではありません:" -#: lib/command.php:728 +#: lib/command.php:769 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -4619,6 +5141,7 @@ msgid "" "d - direct message to user\n" "get - get last notice from user\n" "whois - get profile info on user\n" +"lose - force user to stop following you\n" "fav - add user's last notice as a 'fave'\n" "fav # - add notice with the given id as a 'fave'\n" "repeat # - repeat a notice with a given id\n" @@ -4646,21 +5169,21 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:131 +#: lib/common.php:136 msgid "No configuration file found. " msgstr "コンフィギュレーションファイルがありません。 " -#: lib/common.php:132 +#: lib/common.php:137 msgid "I looked for configuration files in the following places: " msgstr "私は以下の場所でコンフィギュレーションファイルを探しました: " -#: lib/common.php:134 +#: lib/common.php:139 msgid "You may wish to run the installer to fix this." msgstr "" "あなたは、これを修理するためにインストーラを動かしたがっているかもしれませ" "ん。" -#: lib/common.php:135 +#: lib/common.php:140 msgid "Go to the installer." msgstr "インストーラへ。" @@ -4676,6 +5199,14 @@ msgstr "インスタントメッセンジャー(IM)での更新" msgid "Updates by SMS" msgstr "SMSでの更新" +#: lib/connectsettingsaction.php:120 +msgid "Connections" +msgstr "接続" + +#: lib/connectsettingsaction.php:121 +msgid "Authorized connected applications" +msgstr "承認された接続アプリケーション" + #: lib/dberroraction.php:60 msgid "Database error" msgstr "データベースエラー" @@ -4785,7 +5316,7 @@ msgstr "ブロック" #: lib/groupnav.php:102 #, php-format msgid "%s blocked users" -msgstr "%s ブロック利用者" +msgstr "%s ブロックユーザ" #: lib/groupnav.php:108 #, php-format @@ -4817,7 +5348,7 @@ msgstr "投稿が多いグループ" #: lib/grouptagcloudsection.php:56 #, php-format msgid "Tags in %s group's notices" -msgstr "%s グループの通知にあるタグ" +msgstr "%s グループのつぶやきにあるタグ" #: lib/htmloutputter.php:103 msgid "This page is not available in a media type you accept" @@ -4860,15 +5391,15 @@ msgstr "MB" msgid "kB" msgstr "kB" -#: lib/jabber.php:202 +#: lib/jabber.php:220 #, php-format msgid "[%s]" msgstr "" -#: lib/jabber.php:385 -#, fuzzy, php-format +#: lib/jabber.php:400 +#, php-format msgid "Unknown inbox source %d." -msgstr "不明な言語 \"%s\"" +msgstr "不明な受信箱のソース %d。" #: lib/joinform.php:114 msgid "Join" @@ -4910,7 +5441,7 @@ msgstr "" "\n" "だれかがこのメールアドレスを %s に入力しました。\n" "\n" -"もしエントリーを確認したいなら、以下のURLを使用してください:\n" +"もし登録を承認したいなら、以下のURLを使用してください:\n" "\n" "%s\n" "\n" @@ -5134,18 +5665,18 @@ msgstr "" #: lib/mailbox.php:89 msgid "Only the user can read their own mailboxes." -msgstr "利用者だけがそれら自身のメールボックスを読むことができます。" +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:477 +#: lib/mailbox.php:227 lib/noticelist.php:482 msgid "from" msgstr "from" @@ -5266,61 +5797,59 @@ msgid "Do not share my location" msgstr "あなたの場所を共有しない" #: lib/noticeform.php:216 -msgid "Hide this info" -msgstr "この情報を隠す" - -#: lib/noticeform.php:217 msgid "" "Sorry, retrieving your geo location is taking longer than expected, please " "try again later" msgstr "" +"すみません、あなたの位置を検索するのが予想より長くかかっています、後でもう一" +"度試みてください" -#: lib/noticelist.php:428 +#: lib/noticelist.php:429 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "" -#: lib/noticelist.php:429 +#: lib/noticelist.php:430 #, fuzzy msgid "N" msgstr "北" -#: lib/noticelist.php:429 +#: lib/noticelist.php:430 #, fuzzy msgid "S" msgstr "南" -#: lib/noticelist.php:430 +#: lib/noticelist.php:431 #, fuzzy msgid "E" msgstr "東" -#: lib/noticelist.php:430 +#: lib/noticelist.php:431 #, fuzzy msgid "W" msgstr "西" -#: lib/noticelist.php:436 +#: lib/noticelist.php:438 msgid "at" msgstr "at" -#: lib/noticelist.php:531 +#: lib/noticelist.php:558 msgid "in context" msgstr "" -#: lib/noticelist.php:556 +#: lib/noticelist.php:583 msgid "Repeated by" msgstr "" -#: lib/noticelist.php:585 +#: lib/noticelist.php:610 msgid "Reply to this notice" msgstr "このつぶやきへ返信" -#: lib/noticelist.php:586 +#: lib/noticelist.php:611 msgid "Reply" msgstr "返信" -#: lib/noticelist.php:628 +#: lib/noticelist.php:655 msgid "Notice repeated" msgstr "つぶやきを繰り返しました" @@ -5352,11 +5881,7 @@ msgstr "リモートプロファイル追加エラー" msgid "Duplicate notice" msgstr "重複したつぶやき" -#: lib/oauthstore.php:466 lib/subs.php:48 -msgid "You have been banned from subscribing." -msgstr "あなたはフォローが禁止されました。" - -#: lib/oauthstore.php:491 +#: lib/oauthstore.php:490 msgid "Couldn't insert new subscription." msgstr "サブスクリプションを追加できません" @@ -5372,19 +5897,19 @@ msgstr "返信" msgid "Favorites" msgstr "お気に入り" -#: lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "受信箱" -#: lib/personalgroupnav.php:125 +#: lib/personalgroupnav.php:126 msgid "Your incoming messages" msgstr "あなたの入ってくるメッセージ" -#: lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 msgid "Outbox" msgstr "送信箱" -#: lib/personalgroupnav.php:130 +#: lib/personalgroupnav.php:131 msgid "Your sent messages" msgstr "あなたが送ったメッセージ" @@ -5415,11 +5940,11 @@ msgstr "すべてのフォローされている" #: lib/profileaction.php:178 msgid "User ID" -msgstr "利用者ID" +msgstr "ユーザID" #: lib/profileaction.php:183 msgid "Member since" -msgstr "からのメンバー" +msgstr "利用開始日" #: lib/profileaction.php:245 msgid "All groups" @@ -5461,6 +5986,10 @@ msgstr "このつぶやきを繰り返しますか?" msgid "Repeat this notice" msgstr "このつぶやきを繰り返す" +#: lib/router.php:665 +msgid "No single user defined for single-user mode." +msgstr "single-user モードのためのシングルユーザが定義されていません。" + #: lib/sandboxform.php:67 msgid "Sandbox" msgstr "サンドボックス" @@ -5528,34 +6057,6 @@ msgstr "人々は %s をフォローしました。" msgid "Groups %s is a member of" msgstr "グループ %s はメンバー" -#: lib/subs.php:52 -msgid "Already subscribed!" -msgstr "すでにフォローしています!" - -#: lib/subs.php:56 -msgid "User has blocked you." -msgstr "利用者はあなたをブロックしました。" - -#: lib/subs.php:63 -msgid "Could not subscribe." -msgstr "フォローできません。" - -#: lib/subs.php:82 -msgid "Could not subscribe other to you." -msgstr "他の人があなたをフォローできません。" - -#: lib/subs.php:137 -msgid "Not subscribed!" -msgstr "フォローしていません!" - -#: lib/subs.php:142 -msgid "Couldn't delete self-subscription." -msgstr "自己フォローを削除できません。" - -#: lib/subs.php:158 -msgid "Couldn't delete subscription." -msgstr "フォローを削除できません" - #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -5592,7 +6093,7 @@ msgstr "この利用者をアンサイレンス" #: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 msgid "Unsubscribe from this user" -msgstr "このユーザからのフォローを解除する" +msgstr "この利用者からのフォローを解除する" #: lib/unsubscribeform.php:137 msgid "Unsubscribe" @@ -5606,68 +6107,68 @@ msgstr "アバターを編集する" msgid "User actions" msgstr "利用者アクション" -#: lib/userprofile.php:248 +#: lib/userprofile.php:251 msgid "Edit profile settings" msgstr "プロファイル設定編集" -#: lib/userprofile.php:249 +#: lib/userprofile.php:252 msgid "Edit" msgstr "編集" -#: lib/userprofile.php:272 +#: lib/userprofile.php:275 msgid "Send a direct message to this user" msgstr "この利用者にダイレクトメッセージを送る" -#: lib/userprofile.php:273 +#: lib/userprofile.php:276 msgid "Message" msgstr "メッセージ" -#: lib/userprofile.php:311 +#: lib/userprofile.php:314 #, fuzzy msgid "Moderate" -msgstr "司会" +msgstr "管理" -#: lib/util.php:877 +#: lib/util.php:952 msgid "a few seconds ago" msgstr "数秒前" -#: lib/util.php:879 +#: lib/util.php:954 msgid "about a minute ago" msgstr "約 1 分前" -#: lib/util.php:881 +#: lib/util.php:956 #, php-format msgid "about %d minutes ago" msgstr "約 %d 分前" -#: lib/util.php:883 +#: lib/util.php:958 msgid "about an hour ago" msgstr "約 1 時間前" -#: lib/util.php:885 +#: lib/util.php:960 #, php-format msgid "about %d hours ago" msgstr "約 %d 時間前" -#: lib/util.php:887 +#: lib/util.php:962 msgid "about a day ago" msgstr "約 1 日前" -#: lib/util.php:889 +#: lib/util.php:964 #, php-format msgid "about %d days ago" msgstr "約 %d 日前" -#: lib/util.php:891 +#: lib/util.php:966 msgid "about a month ago" msgstr "約 1 ヵ月前" -#: lib/util.php:893 +#: lib/util.php:968 #, php-format msgid "about %d months ago" msgstr "約 %d ヵ月前" -#: lib/util.php:895 +#: lib/util.php:970 msgid "about a year ago" msgstr "約 1 年前" @@ -5681,7 +6182,7 @@ msgstr "%sは有効な色ではありません!" msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "%s は有効な色ではありません! 3か6の16進数を使ってください。" -#: scripts/xmppdaemon.php:301 +#: lib/xmppmanager.php:402 #, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "メッセージが長すぎます - 最大 %1$d 字、あなたが送ったのは %2$d。" diff --git a/locale/ko/LC_MESSAGES/statusnet.po b/locale/ko/LC_MESSAGES/statusnet.po index f37715eca6..1653bf31bc 100644 --- a/locale/ko/LC_MESSAGES/statusnet.po +++ b/locale/ko/LC_MESSAGES/statusnet.po @@ -7,17 +7,76 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-01-13 22:04+0000\n" -"PO-Revision-Date: 2010-01-13 22:05:40+0000\n" +"POT-Creation-Date: 2010-02-24 23:49+0000\n" +"PO-Revision-Date: 2010-02-24 23:51:15+0000\n" "Language-Team: Korean\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha (r61027); Translate extension (2010-01-04)\n" +"X-Generator: MediaWiki 1.17alpha (r62925); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ko\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: actions/accessadminpanel.php:54 lib/adminpanelaction.php:326 +#, fuzzy +msgid "Access" +msgstr "수락" + +#: actions/accessadminpanel.php:65 +#, fuzzy +msgid "Site access settings" +msgstr "아바타 설정" + +#: actions/accessadminpanel.php:158 +#, fuzzy +msgid "Registration" +msgstr "회원가입" + +#: actions/accessadminpanel.php:161 +#, fuzzy +msgid "Private" +msgstr "개인정보 취급방침" + +#: actions/accessadminpanel.php:163 +msgid "Prohibit anonymous users (not logged in) from viewing site?" +msgstr "" + +#: actions/accessadminpanel.php:167 +#, fuzzy +msgid "Invite only" +msgstr "초대" + +#: actions/accessadminpanel.php:169 +msgid "Make registration invitation only." +msgstr "" + +#: actions/accessadminpanel.php:173 +#, fuzzy +msgid "Closed" +msgstr "차단하기" + +#: actions/accessadminpanel.php:175 +msgid "Disable new registrations." +msgstr "" + +#: actions/accessadminpanel.php:189 actions/designadminpanel.php:586 +#: actions/emailsettings.php:195 actions/imsettings.php:163 +#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 +#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 +#: actions/siteadminpanel.php:336 actions/smssettings.php:181 +#: actions/subscriptions.php:208 actions/tagother.php:154 +#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 lib/designsettings.php:256 +#: lib/groupeditform.php:202 +msgid "Save" +msgstr "저장" + +#: actions/accessadminpanel.php:189 +#, fuzzy +msgid "Save access settings" +msgstr "아바타 설정" + #: actions/all.php:63 actions/public.php:97 actions/replies.php:92 #: actions/showfavorites.php:137 actions/tag.php:51 #, fuzzy @@ -33,25 +92,29 @@ msgstr "그러한 태그가 없습니다." #: 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:144 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apistatusesupdate.php:148 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:78 #: actions/apitimelinehome.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/otp.php:76 #: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154 -#: actions/replies.php:73 actions/repliesrss.php:38 +#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 #: 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:302 lib/command.php:355 #: lib/command.php:401 lib/command.php:462 lib/command.php:518 #: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 -#: lib/subs.php:34 lib/subs.php:125 msgid "No such user." msgstr "그러한 사용자는 없습니다." +#: actions/all.php:84 +#, fuzzy, php-format +msgid "%1$s and friends, page %2$d" +msgstr "%s 와 친구들, %d 페이지" + #: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 -#: actions/apitimelinefriends.php:115 actions/apitimelinehome.php:115 +#: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" @@ -92,7 +155,7 @@ msgid "" "his or her attention](%%%%action.newnotice%%%%?status_textarea=%3$s)." msgstr "" -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211 #, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " @@ -104,8 +167,8 @@ msgstr "" msgid "You and friends" msgstr "%s 및 친구들" -#: actions/allrss.php:119 actions/apitimelinefriends.php:122 -#: actions/apitimelinehome.php:122 +#: actions/allrss.php:119 actions/apitimelinefriends.php:119 +#: actions/apitimelinehome.php:120 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "%1$s 및 %2$s에 있는 친구들의 업데이트!" @@ -115,23 +178,23 @@ msgstr "%1$s 및 %2$s에 있는 친구들의 업데이트!" #: actions/apiaccountupdateprofile.php:97 #: actions/apiaccountupdateprofilebackgroundimage.php:94 #: actions/apiaccountupdateprofilecolors.php:118 -#: 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:136 actions/apigroupismember.php:114 -#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 -#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 -#: actions/apigroupmembership.php:106 actions/apigroupshow.php:105 -#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 -#: actions/apistatusesretweets.php:112 actions/apistatusesshow.php:108 -#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93 -#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:146 -#: actions/apitimelinefriends.php:156 actions/apitimelinegroup.php:150 -#: actions/apitimelinehome.php:156 actions/apitimelinementions.php:151 -#: actions/apitimelinepublic.php:131 actions/apitimelineretweetedbyme.php:122 +#: actions/apiaccountverifycredentials.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:128 actions/apigroupcreate.php:136 +#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 +#: actions/apigroupleave.php:141 actions/apigrouplist.php:132 +#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 +#: actions/apigroupshow.php:115 actions/apihelptest.php:88 +#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 +#: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 #: actions/apitimelineretweetedtome.php:121 -#: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141 -#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 +#: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 +#: actions/apitimelineuser.php:207 actions/apiusershow.php:101 #, fuzzy msgid "API method not found." msgstr "API 메서드를 찾을 수 없습니다." @@ -146,7 +209,7 @@ msgstr "API 메서드를 찾을 수 없습니다." #: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 #: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 #: actions/apigroupleave.php:91 actions/apistatusesretweet.php:65 -#: actions/apistatusesupdate.php:114 +#: actions/apistatusesupdate.php:118 msgid "This method requires a POST." msgstr "이 메서드는 등록을 요구합니다." @@ -177,8 +240,9 @@ msgstr "프로필을 저장 할 수 없습니다." #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:97 -#: actions/apistatusesupdate.php:127 actions/avatarsettings.php:257 -#: actions/designadminpanel.php:122 actions/newnotice.php:94 +#: actions/apistatusesupdate.php:131 actions/avatarsettings.php:257 +#: actions/designadminpanel.php:122 actions/editapplication.php:118 +#: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 #, php-format msgid "" @@ -299,12 +363,12 @@ msgstr "사용자를 업데이트 할 수 없습니다." msgid "Two user ids or screen_names must be supplied." msgstr "두 개의 사용자 ID나 대화명을 입력해야 합니다." -#: actions/apifriendshipsshow.php:135 +#: actions/apifriendshipsshow.php:134 #, fuzzy msgid "Could not determine source user." msgstr "공개 stream을 불러올 수 없습니다." -#: actions/apifriendshipsshow.php:143 +#: actions/apifriendshipsshow.php:142 #, fuzzy msgid "Could not find target user." msgstr "어떠한 상태도 찾을 수 없습니다." @@ -329,7 +393,8 @@ msgstr "별명이 이미 사용중 입니다. 다른 별명을 시도해 보십 msgid "Not a valid nickname." msgstr "유효한 별명이 아닙니다" -#: actions/apigroupcreate.php:196 actions/editgroup.php:195 +#: actions/apigroupcreate.php:196 actions/editapplication.php:215 +#: actions/editgroup.php:195 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:217 msgid "Homepage is not a valid URL." @@ -341,7 +406,8 @@ msgstr "홈페이지 주소형식이 올바르지 않습니다." msgid "Full name is too long (max 255 chars)." msgstr "실명이 너무 깁니다. (최대 255글자)" -#: actions/apigroupcreate.php:213 +#: actions/apigroupcreate.php:213 actions/editapplication.php:190 +#: actions/newapplication.php:172 #, fuzzy, php-format msgid "Description is too long (max %d chars)." msgstr "설명이 너무 길어요. (최대 140글자)" @@ -377,7 +443,7 @@ msgstr "" #: actions/apigroupismember.php:95 actions/apigroupjoin.php:104 #: actions/apigroupleave.php:104 actions/apigroupmembership.php:91 -#: actions/apigroupshow.php:90 actions/apitimelinegroup.php:91 +#: actions/apigroupshow.php:82 actions/apitimelinegroup.php:91 #, fuzzy msgid "Group not found!" msgstr "API 메서드를 찾을 수 없습니다." @@ -421,6 +487,115 @@ msgstr "%s 그룹" msgid "groups on %s" msgstr "그룹 행동" +#: actions/apioauthauthorize.php:101 +msgid "No oauth_token parameter provided." +msgstr "" + +#: actions/apioauthauthorize.php:106 +#, fuzzy +msgid "Invalid token." +msgstr "옳지 않은 크기" + +#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 +#: actions/deletenotice.php:157 actions/disfavor.php:74 +#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54 +#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupunblock.php:66 actions/imsettings.php:206 +#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 +#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 +#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135 +#: actions/othersettings.php:145 actions/passwordsettings.php:138 +#: actions/profilesettings.php:194 actions/recoverpassword.php:337 +#: actions/register.php:165 actions/remotesubscribe.php:77 +#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 +#: actions/subscribe.php:86 actions/tagother.php:166 +#: 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/apioauthauthorize.php:135 +#, fuzzy +msgid "Invalid nickname / password!" +msgstr "사용자 이름이나 비밀 번호가 틀렸습니다." + +#: actions/apioauthauthorize.php:159 +#, fuzzy +msgid "Database error deleting OAuth application user." +msgstr "사용자 세팅 오류" + +#: actions/apioauthauthorize.php:185 +#, fuzzy +msgid "Database error inserting OAuth application user." +msgstr "해쉬테그를 추가 할 때에 데이타베이스 에러 : %s" + +#: actions/apioauthauthorize.php:214 +#, php-format +msgid "" +"The request token %s has been authorized. Please exchange it for an access " +"token." +msgstr "" + +#: actions/apioauthauthorize.php:227 +#, php-format +msgid "The request token %s has been denied and revoked." +msgstr "" + +#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 +#: actions/designadminpanel.php:103 actions/editapplication.php:139 +#: actions/emailsettings.php:256 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/newapplication.php:121 +#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 +#: actions/smssettings.php:248 lib/designsettings.php:304 +msgid "Unexpected form submission." +msgstr "잘못된 폼 제출" + +#: actions/apioauthauthorize.php:259 +msgid "An application would like to connect to your account" +msgstr "" + +#: actions/apioauthauthorize.php:276 +msgid "Allow or deny access" +msgstr "" + +#: actions/apioauthauthorize.php:292 +#, php-format +msgid "" +"The application %1$s by %2$s would like " +"the ability to %3$s your %4$s account data. You should only " +"give access to your %4$s account to third parties you trust." +msgstr "" + +#: actions/apioauthauthorize.php:310 lib/action.php:441 +msgid "Account" +msgstr "계정" + +#: actions/apioauthauthorize.php:313 actions/login.php:230 +#: actions/profilesettings.php:106 actions/register.php:424 +#: actions/showgroup.php:236 actions/tagother.php:94 +#: actions/userauthorization.php:145 lib/groupeditform.php:152 +#: lib/userprofile.php:131 +msgid "Nickname" +msgstr "별명" + +#: actions/apioauthauthorize.php:316 actions/login.php:233 +#: actions/register.php:429 lib/accountsettingsaction.php:116 +msgid "Password" +msgstr "비밀 번호" + +#: actions/apioauthauthorize.php:328 +msgid "Deny" +msgstr "" + +#: actions/apioauthauthorize.php:334 +#, fuzzy +msgid "Allow" +msgstr "모든 것" + +#: actions/apioauthauthorize.php:351 +msgid "Allow or deny access to your account information." +msgstr "" + #: actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." msgstr "이 메서드는 등록 또는 삭제를 요구합니다." @@ -453,17 +628,17 @@ msgstr "아바타가 업데이트 되었습니다." msgid "No status with that ID found." msgstr "발견된 ID의 상태가 없습니다." -#: actions/apistatusesupdate.php:157 actions/newnotice.php:155 +#: actions/apistatusesupdate.php:161 actions/newnotice.php:155 #: lib/mailhandler.php:60 #, fuzzy, php-format msgid "That's too long. Max notice size is %d chars." msgstr "너무 깁니다. 통지의 최대 길이는 140글자 입니다." -#: actions/apistatusesupdate.php:198 +#: actions/apistatusesupdate.php:202 msgid "Not found" msgstr "찾지 못함" -#: actions/apistatusesupdate.php:221 actions/newnotice.php:178 +#: actions/apistatusesupdate.php:225 actions/newnotice.php:178 #, php-format msgid "Max notice size is %d chars, including attachment URL." msgstr "" @@ -478,7 +653,7 @@ msgstr "지원하지 않는 그림 파일 형식입니다." msgid "%1$s / Favorites from %2$s" msgstr "%s / %s의 좋아하는 글들" -#: actions/apitimelinefavorites.php:120 +#: actions/apitimelinefavorites.php:117 #, fuzzy, php-format msgid "%1$s updates favorited by %2$s / %2$s." msgstr "%s 좋아하는 글이 업데이트 됐습니다. %S에 의해 / %s." @@ -489,7 +664,7 @@ msgstr "%s 좋아하는 글이 업데이트 됐습니다. %S에 의해 / %s." msgid "%s timeline" msgstr "%s 타임라인" -#: actions/apitimelinegroup.php:117 actions/apitimelineuser.php:126 +#: actions/apitimelinegroup.php:114 actions/apitimelineuser.php:126 #: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" @@ -505,27 +680,22 @@ msgstr "%1$s / %2$s에게 답신 업데이트" msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "%1$s님이 %2$s/%3$s의 업데이트에 답변했습니다." -#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "%s 공개 타임라인" -#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "모두로부터의 업데이트 %s개!" -#: actions/apitimelineretweetedbyme.php:112 -#, php-format -msgid "Repeated by %s" -msgstr "" - #: actions/apitimelineretweetedtome.php:111 #, fuzzy, php-format msgid "Repeated to %s" msgstr "%s에 답신" -#: actions/apitimelineretweetsofme.php:112 +#: actions/apitimelineretweetsofme.php:114 #, fuzzy, php-format msgid "Repeats of %s" msgstr "%s에 답신" @@ -535,7 +705,7 @@ msgstr "%s에 답신" msgid "Notices tagged with %s" msgstr "%s 태그된 통지" -#: actions/apitimelinetag.php:108 actions/tagrss.php:64 +#: actions/apitimelinetag.php:104 actions/tagrss.php:64 #, fuzzy, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "%2$s에 있는 %1$s의 업데이트!" @@ -596,8 +766,8 @@ msgstr "원래 설정" msgid "Preview" msgstr "미리보기" -#: actions/avatarsettings.php:149 lib/deleteuserform.php:66 -#: lib/noticelist.php:611 +#: actions/avatarsettings.php:149 actions/showapplication.php:252 +#: lib/deleteuserform.php:66 lib/noticelist.php:637 msgid "Delete" msgstr "삭제" @@ -609,29 +779,6 @@ msgstr "올리기" msgid "Crop" msgstr "자르기" -#: actions/avatarsettings.php:268 actions/deletenotice.php:157 -#: actions/disfavor.php:74 actions/emailsettings.php:238 actions/favor.php:75 -#: actions/geocode.php:50 actions/groupblock.php:66 actions/grouplogo.php:309 -#: actions/groupunblock.php:66 actions/imsettings.php:206 -#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 -#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 -#: actions/othersettings.php:145 actions/passwordsettings.php:138 -#: actions/profilesettings.php:194 actions/recoverpassword.php:337 -#: actions/register.php:165 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 -#: actions/subscribe.php:46 actions/tagother.php:166 -#: 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/avatarsettings.php:281 actions/designadminpanel.php:103 -#: actions/emailsettings.php:256 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/avatarsettings.php:328 msgid "Pick a square area of the image to be your avatar" msgstr "당신의 아바타가 될 이미지영역을 지정하세요." @@ -669,8 +816,9 @@ msgid "" "will not be notified of any @-replies from them." msgstr "" -#: actions/block.php:143 actions/deletenotice.php:145 -#: actions/deleteuser.php:147 actions/groupblock.php:178 +#: actions/block.php:143 actions/deleteapplication.php:153 +#: actions/deletenotice.php:145 actions/deleteuser.php:147 +#: actions/groupblock.php:178 msgid "No" msgstr "아니오" @@ -679,13 +827,13 @@ msgstr "아니오" msgid "Do not block this user" msgstr "이 사용자를 차단해제합니다." -#: actions/block.php:144 actions/deletenotice.php:146 -#: actions/deleteuser.php:148 actions/groupblock.php:179 -#: lib/repeatform.php:132 +#: actions/block.php:144 actions/deleteapplication.php:158 +#: actions/deletenotice.php:146 actions/deleteuser.php:148 +#: actions/groupblock.php:179 lib/repeatform.php:132 msgid "Yes" msgstr "네, 맞습니다." -#: actions/block.php:144 actions/groupmembers.php:346 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80 msgid "Block this user" msgstr "이 사용자 차단하기" @@ -771,7 +919,8 @@ msgid "Couldn't delete email confirmation." msgstr "이메일 승인을 삭제 할 수 없습니다." #: actions/confirmaddress.php:144 -msgid "Confirm Address" +#, fuzzy +msgid "Confirm address" msgstr "주소 인증" #: actions/confirmaddress.php:159 @@ -789,10 +938,54 @@ msgstr "인증 코드" msgid "Notices" msgstr "통지" +#: actions/deleteapplication.php:63 +#, fuzzy +msgid "You must be logged in to delete an application." +msgstr "그룹을 만들기 위해서는 로그인해야 합니다." + +#: actions/deleteapplication.php:71 +#, fuzzy +msgid "Application not found." +msgstr "통지에 프로필이 없습니다." + +#: actions/deleteapplication.php:78 actions/editapplication.php:77 +#: actions/showapplication.php:94 +#, fuzzy +msgid "You are not the owner of this application." +msgstr "당신은 해당 그룹의 멤버가 아닙니다." + +#: actions/deleteapplication.php:102 actions/editapplication.php:127 +#: actions/newapplication.php:110 actions/showapplication.php:118 +#: lib/action.php:1197 +msgid "There was a problem with your session token." +msgstr "당신의 세션토큰관련 문제가 있습니다." + +#: actions/deleteapplication.php:123 actions/deleteapplication.php:147 +#, fuzzy +msgid "Delete application" +msgstr "그러한 통지는 없습니다." + +#: actions/deleteapplication.php:149 +msgid "" +"Are you sure you want to delete this application? This will clear all data " +"about the application from the database, including all existing user " +"connections." +msgstr "" + +#: actions/deleteapplication.php:156 +#, fuzzy +msgid "Do not delete this application" +msgstr "이 통지를 지울 수 없습니다." + +#: actions/deleteapplication.php:160 +#, fuzzy +msgid "Delete this application" +msgstr "이 게시글 삭제하기" + #: 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/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 #: lib/adminpanelaction.php:72 lib/profileformaction.php:63 #: lib/settingsaction.php:72 @@ -824,7 +1017,7 @@ msgstr "정말로 통지를 삭제하시겠습니까?" msgid "Do not delete this notice" msgstr "이 통지를 지울 수 없습니다." -#: actions/deletenotice.php:146 lib/noticelist.php:611 +#: actions/deletenotice.php:146 lib/noticelist.php:637 msgid "Delete this notice" msgstr "이 게시글 삭제하기" @@ -966,16 +1159,6 @@ msgstr "" msgid "Reset back to default" msgstr "" -#: actions/designadminpanel.php:586 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 -#: actions/pathsadminpanel.php:324 actions/profilesettings.php:174 -#: actions/siteadminpanel.php:388 actions/smssettings.php:181 -#: actions/subscriptions.php:203 actions/tagother.php:154 -#: actions/useradminpanel.php:313 lib/designsettings.php:256 -#: lib/groupeditform.php:202 -msgid "Save" -msgstr "저장" - #: actions/designadminpanel.php:587 lib/designsettings.php:257 msgid "Save design" msgstr "" @@ -988,10 +1171,87 @@ msgstr "이 메시지는 favorite이 아닙니다." msgid "Add to favorites" msgstr "좋아하는 게시글로 추가하기" -#: actions/doc.php:69 -msgid "No such document." +#: actions/doc.php:158 +#, fuzzy, php-format +msgid "No such document \"%s\"" msgstr "그러한 문서는 없습니다." +#: actions/editapplication.php:54 +#, fuzzy +msgid "Edit Application" +msgstr "다른 옵션들" + +#: actions/editapplication.php:66 +#, fuzzy +msgid "You must be logged in to edit an application." +msgstr "그룹을 만들기 위해서는 로그인해야 합니다." + +#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:166 +#: actions/showapplication.php:87 +#, fuzzy +msgid "No such application." +msgstr "그러한 통지는 없습니다." + +#: actions/editapplication.php:161 +#, fuzzy +msgid "Use this form to edit your application." +msgstr "다음 양식을 이용해 그룹을 편집하십시오." + +#: actions/editapplication.php:177 actions/newapplication.php:159 +#, fuzzy +msgid "Name is required." +msgstr "위와 같은 비밀 번호. 필수 사항." + +#: actions/editapplication.php:180 actions/newapplication.php:165 +#, fuzzy +msgid "Name is too long (max 255 chars)." +msgstr "실명이 너무 깁니다. (최대 255글자)" + +#: actions/editapplication.php:183 actions/newapplication.php:162 +#, fuzzy +msgid "Name already in use. Try another one." +msgstr "별명이 이미 사용중 입니다. 다른 별명을 시도해 보십시오." + +#: actions/editapplication.php:186 actions/newapplication.php:168 +#, fuzzy +msgid "Description is required." +msgstr "설명" + +#: actions/editapplication.php:194 +msgid "Source URL is too long." +msgstr "" + +#: actions/editapplication.php:200 actions/newapplication.php:185 +#, fuzzy +msgid "Source URL is not valid." +msgstr "홈페이지 주소형식이 올바르지 않습니다." + +#: actions/editapplication.php:203 actions/newapplication.php:188 +msgid "Organization is required." +msgstr "" + +#: actions/editapplication.php:206 actions/newapplication.php:191 +#, fuzzy +msgid "Organization is too long (max 255 chars)." +msgstr "위치가 너무 깁니다. (최대 255글자)" + +#: actions/editapplication.php:209 actions/newapplication.php:194 +msgid "Organization homepage is required." +msgstr "" + +#: actions/editapplication.php:218 actions/newapplication.php:206 +msgid "Callback is too long." +msgstr "" + +#: actions/editapplication.php:225 actions/newapplication.php:215 +msgid "Callback URL is not valid." +msgstr "" + +#: actions/editapplication.php:258 +#, fuzzy +msgid "Could not update application." +msgstr "그룹을 업데이트 할 수 없습니다." + #: actions/editgroup.php:56 #, php-format msgid "Edit %s group" @@ -1020,7 +1280,7 @@ msgstr "설명이 너무 길어요. (최대 140글자)" msgid "Could not update group." msgstr "그룹을 업데이트 할 수 없습니다." -#: actions/editgroup.php:259 classes/User_group.php:390 +#: actions/editgroup.php:259 classes/User_group.php:433 #, fuzzy msgid "Could not create aliases." msgstr "좋아하는 게시글을 생성할 수 없습니다." @@ -1063,7 +1323,8 @@ msgstr "" "주시기 바랍니다." #: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 +#: actions/smssettings.php:126 lib/applicationeditform.php:331 +#: lib/applicationeditform.php:332 msgid "Cancel" msgstr "취소" @@ -1145,7 +1406,7 @@ msgid "Cannot normalize that email address" msgstr "그 이메일 주소를 정규화 할 수 없습니다." #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:157 +#: actions/siteadminpanel.php:143 msgid "Not a valid email address." msgstr "유효한 이메일 주소가 아닙니다." @@ -1157,7 +1418,7 @@ msgstr "그 이메일 주소는 이미 귀하의 것입니다." msgid "That email address already belongs to another user." msgstr "그 이메일 주소는 이미 다른 사용자의 소유입니다." -#: actions/emailsettings.php:353 actions/imsettings.php:317 +#: actions/emailsettings.php:353 actions/imsettings.php:319 #: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." msgstr "확인 코드를 추가 할 수 없습니다." @@ -1218,7 +1479,7 @@ msgstr "이 게시글은 이미 좋아하는 게시글입니다." msgid "Disfavor favorite" msgstr "좋아하는글 취소" -#: actions/favorited.php:65 lib/popularnoticesection.php:88 +#: actions/favorited.php:65 lib/popularnoticesection.php:91 #: lib/publicgroupnav.php:93 msgid "Popular notices" msgstr "인기있는 게시글" @@ -1373,7 +1634,7 @@ msgstr "회원이 당신을 차단해왔습니다." msgid "User is not a member of group." msgstr "당신은 해당 그룹의 멤버가 아닙니다." -#: actions/groupblock.php:136 actions/groupmembers.php:314 +#: actions/groupblock.php:136 actions/groupmembers.php:316 #, fuzzy msgid "Block user from group" msgstr "사용자를 차단합니다." @@ -1474,25 +1735,25 @@ msgstr "%s 그룹 회원, %d페이지" msgid "A list of the users in this group." msgstr "이 그룹의 회원리스트" -#: actions/groupmembers.php:175 lib/action.php:442 lib/groupnav.php:107 +#: actions/groupmembers.php:175 lib/action.php:448 lib/groupnav.php:107 msgid "Admin" msgstr "관리자" -#: actions/groupmembers.php:346 lib/blockform.php:69 +#: actions/groupmembers.php:348 lib/blockform.php:69 msgid "Block" msgstr "차단하기" -#: actions/groupmembers.php:441 +#: actions/groupmembers.php:443 #, fuzzy msgid "Make user an admin of the group" msgstr "관리자만 그룹을 편집할 수 있습니다." -#: actions/groupmembers.php:473 +#: actions/groupmembers.php:475 #, fuzzy msgid "Make Admin" msgstr "관리자" -#: actions/groupmembers.php:473 +#: actions/groupmembers.php:475 msgid "Make this user an admin" msgstr "" @@ -1667,6 +1928,11 @@ msgstr "" msgid "That is not your Jabber ID." msgstr "그 Jabber ID는 귀하의 것이 아닙니다." +#: actions/inbox.php:59 +#, fuzzy, php-format +msgid "Inbox for %1$s - page %2$d" +msgstr "%s의 받은쪽지함" + #: actions/inbox.php:62 #, php-format msgid "Inbox for %s" @@ -1745,7 +2011,7 @@ msgstr "개인적인 메시지" msgid "Optionally add a personal message to the invitation." msgstr "초대장에 메시지 첨부하기." -#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:237 +#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:236 msgid "Send" msgstr "보내기" @@ -1841,7 +2107,7 @@ msgstr "틀린 계정 또는 비밀 번호" msgid "Error setting user. You are probably not authorized." msgstr "인증이 되지 않았습니다." -#: actions/login.php:188 actions/login.php:241 lib/action.php:460 +#: actions/login.php:188 actions/login.php:241 lib/action.php:466 #: lib/logingroupnav.php:79 msgid "Login" msgstr "로그인" @@ -1850,17 +2116,6 @@ msgstr "로그인" msgid "Login to site" msgstr "사이트에 로그인하세요." -#: actions/login.php:230 actions/profilesettings.php:106 -#: actions/register.php:424 actions/showgroup.php:236 actions/tagother.php:94 -#: lib/groupeditform.php:152 lib/userprofile.php:131 -msgid "Nickname" -msgstr "별명" - -#: actions/login.php:233 actions/register.php:429 -#: lib/accountsettingsaction.php:116 -msgid "Password" -msgstr "비밀 번호" - #: actions/login.php:236 actions/register.php:478 msgid "Remember me" msgstr "자동 로그인" @@ -1890,21 +2145,21 @@ msgstr "" "action.register%%) 새 계정을 생성 또는 [OpenID](%%action.openidlogin%%)를 사" "용해 보세요." -#: actions/makeadmin.php:91 +#: actions/makeadmin.php:92 msgid "Only an admin can make another user an admin." msgstr "" -#: actions/makeadmin.php:95 +#: actions/makeadmin.php:96 #, fuzzy, php-format msgid "%1$s is already an admin for group \"%2$s\"." msgstr "회원이 당신을 차단해왔습니다." -#: actions/makeadmin.php:132 +#: actions/makeadmin.php:133 #, fuzzy, php-format msgid "Can't get membership record for %1$s in group %2$s." msgstr "그룹 %s에서 %s 사용자를 제거할 수 없습니다." -#: actions/makeadmin.php:145 +#: actions/makeadmin.php:146 #, fuzzy, php-format msgid "Can't make %1$s an admin for group %2$s." msgstr "관리자만 그룹을 편집할 수 있습니다." @@ -1913,6 +2168,30 @@ msgstr "관리자만 그룹을 편집할 수 있습니다." msgid "No current status" msgstr "현재 상태가 없습니다." +#: actions/newapplication.php:52 +#, fuzzy +msgid "New Application" +msgstr "그러한 통지는 없습니다." + +#: actions/newapplication.php:64 +#, fuzzy +msgid "You must be logged in to register an application." +msgstr "그룹을 만들기 위해서는 로그인해야 합니다." + +#: actions/newapplication.php:143 +#, fuzzy +msgid "Use this form to register a new application." +msgstr "새 그룹을 만들기 위해 이 양식을 사용하세요." + +#: actions/newapplication.php:176 +msgid "Source URL is required." +msgstr "" + +#: actions/newapplication.php:258 actions/newapplication.php:267 +#, fuzzy +msgid "Could not create application." +msgstr "좋아하는 게시글을 생성할 수 없습니다." + #: actions/newgroup.php:53 msgid "New group" msgstr "새로운 그룹" @@ -2022,6 +2301,51 @@ msgstr "찔러 보기를 보냈습니다." msgid "Nudge sent!" msgstr "찔러 보기를 보냈습니다!" +#: actions/oauthappssettings.php:59 +#, fuzzy +msgid "You must be logged in to list your applications." +msgstr "그룹을 만들기 위해서는 로그인해야 합니다." + +#: actions/oauthappssettings.php:74 +#, fuzzy +msgid "OAuth applications" +msgstr "다른 옵션들" + +#: actions/oauthappssettings.php:85 +msgid "Applications you have registered" +msgstr "" + +#: actions/oauthappssettings.php:135 +#, php-format +msgid "You have not registered any applications yet." +msgstr "" + +#: actions/oauthconnectionssettings.php:72 +msgid "Connected applications" +msgstr "" + +#: actions/oauthconnectionssettings.php:83 +msgid "You have allowed the following applications to access you account." +msgstr "" + +#: actions/oauthconnectionssettings.php:175 +#, fuzzy +msgid "You are not a user of that application." +msgstr "당신은 해당 그룹의 멤버가 아닙니다." + +#: actions/oauthconnectionssettings.php:186 +msgid "Unable to revoke access for app: " +msgstr "" + +#: actions/oauthconnectionssettings.php:198 +#, php-format +msgid "You have not authorized any applications to use your account." +msgstr "" + +#: actions/oauthconnectionssettings.php:211 +msgid "Developers can edit the registration settings for their applications " +msgstr "" + #: actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" msgstr "통지에 프로필이 없습니다." @@ -2040,8 +2364,8 @@ msgstr "연결" msgid "Only " msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1033 -#: lib/api.php:1061 lib/api.php:1171 +#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 +#: lib/api.php:1068 lib/api.php:1177 msgid "Not a supported data format." msgstr "지원하는 형식의 데이터가 아닙니다." @@ -2054,7 +2378,8 @@ msgid "Notice Search" msgstr "통지 검색" #: actions/othersettings.php:60 -msgid "Other Settings" +#, fuzzy +msgid "Other settings" msgstr "기타 설정" #: actions/othersettings.php:71 @@ -2111,6 +2436,11 @@ msgstr "옳지 않은 통지 내용" msgid "Login token expired." msgstr "사이트에 로그인하세요." +#: actions/outbox.php:58 +#, fuzzy, php-format +msgid "Outbox for %1$s - page %2$d" +msgstr "%s의 보낸쪽지함" + #: actions/outbox.php:61 #, php-format msgid "Outbox for %s" @@ -2181,7 +2511,7 @@ msgstr "새 비밀번호를 저장 할 수 없습니다." msgid "Password saved." msgstr "비밀 번호 저장" -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:326 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:331 msgid "Paths" msgstr "" @@ -2189,142 +2519,159 @@ msgstr "" msgid "Path and server settings for this StatusNet site." msgstr "" -#: actions/pathsadminpanel.php:140 +#: actions/pathsadminpanel.php:157 #, fuzzy, php-format msgid "Theme directory not readable: %s" msgstr "이 페이지는 귀하가 승인한 미디어 타입에서는 이용할 수 없습니다." -#: actions/pathsadminpanel.php:146 +#: actions/pathsadminpanel.php:163 #, php-format msgid "Avatar directory not writable: %s" msgstr "" -#: actions/pathsadminpanel.php:152 +#: actions/pathsadminpanel.php:169 #, php-format msgid "Background directory not writable: %s" msgstr "" -#: actions/pathsadminpanel.php:160 +#: actions/pathsadminpanel.php:177 #, php-format msgid "Locales directory not readable: %s" msgstr "" -#: actions/pathsadminpanel.php:166 +#: actions/pathsadminpanel.php:183 msgid "Invalid SSL server. The maximum length is 255 characters." msgstr "" -#: actions/pathsadminpanel.php:217 actions/siteadminpanel.php:58 +#: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58 #: lib/adminpanelaction.php:311 #, fuzzy msgid "Site" msgstr "초대" -#: actions/pathsadminpanel.php:221 +#: actions/pathsadminpanel.php:238 +#, fuzzy +msgid "Server" +msgstr "복구" + +#: actions/pathsadminpanel.php:238 +msgid "Site's server hostname." +msgstr "" + +#: actions/pathsadminpanel.php:242 msgid "Path" msgstr "" -#: actions/pathsadminpanel.php:221 +#: actions/pathsadminpanel.php:242 #, fuzzy msgid "Site path" msgstr "사이트 공지" -#: actions/pathsadminpanel.php:225 +#: actions/pathsadminpanel.php:246 msgid "Path to locales" msgstr "" -#: actions/pathsadminpanel.php:225 +#: actions/pathsadminpanel.php:246 msgid "Directory path to locales" msgstr "" -#: actions/pathsadminpanel.php:232 -msgid "Theme" -msgstr "" - -#: actions/pathsadminpanel.php:237 -msgid "Theme server" -msgstr "" - -#: actions/pathsadminpanel.php:241 -msgid "Theme path" -msgstr "" - -#: actions/pathsadminpanel.php:245 -msgid "Theme directory" +#: actions/pathsadminpanel.php:250 +msgid "Fancy URLs" msgstr "" #: actions/pathsadminpanel.php:252 +msgid "Use fancy (more readable and memorable) URLs?" +msgstr "" + +#: actions/pathsadminpanel.php:259 +msgid "Theme" +msgstr "" + +#: actions/pathsadminpanel.php:264 +msgid "Theme server" +msgstr "" + +#: actions/pathsadminpanel.php:268 +msgid "Theme path" +msgstr "" + +#: actions/pathsadminpanel.php:272 +msgid "Theme directory" +msgstr "" + +#: actions/pathsadminpanel.php:279 #, fuzzy msgid "Avatars" msgstr "아바타" -#: actions/pathsadminpanel.php:257 +#: actions/pathsadminpanel.php:284 #, fuzzy msgid "Avatar server" msgstr "아바타 설정" -#: actions/pathsadminpanel.php:261 +#: actions/pathsadminpanel.php:288 #, fuzzy msgid "Avatar path" msgstr "아바타가 업데이트 되었습니다." -#: actions/pathsadminpanel.php:265 +#: actions/pathsadminpanel.php:292 #, fuzzy msgid "Avatar directory" msgstr "아바타가 업데이트 되었습니다." -#: actions/pathsadminpanel.php:274 +#: actions/pathsadminpanel.php:301 msgid "Backgrounds" msgstr "" -#: actions/pathsadminpanel.php:278 +#: actions/pathsadminpanel.php:305 msgid "Background server" msgstr "" -#: actions/pathsadminpanel.php:282 +#: actions/pathsadminpanel.php:309 msgid "Background path" msgstr "" -#: actions/pathsadminpanel.php:286 +#: actions/pathsadminpanel.php:313 msgid "Background directory" msgstr "" -#: actions/pathsadminpanel.php:293 +#: actions/pathsadminpanel.php:320 #, fuzzy msgid "SSL" msgstr "SMS" -#: actions/pathsadminpanel.php:296 actions/siteadminpanel.php:346 +#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 #, fuzzy msgid "Never" msgstr "복구" -#: actions/pathsadminpanel.php:297 +#: actions/pathsadminpanel.php:324 #, fuzzy msgid "Sometimes" msgstr "통지" -#: actions/pathsadminpanel.php:298 +#: actions/pathsadminpanel.php:325 msgid "Always" msgstr "" -#: actions/pathsadminpanel.php:302 +#: actions/pathsadminpanel.php:329 msgid "Use SSL" msgstr "" -#: actions/pathsadminpanel.php:303 +#: actions/pathsadminpanel.php:330 msgid "When to use SSL" msgstr "" -#: actions/pathsadminpanel.php:308 +#: actions/pathsadminpanel.php:335 #, fuzzy msgid "SSL server" msgstr "복구" -#: actions/pathsadminpanel.php:309 +#: actions/pathsadminpanel.php:336 msgid "Server to direct SSL requests to" msgstr "" -#: actions/pathsadminpanel.php:325 +#: actions/pathsadminpanel.php:352 #, fuzzy msgid "Save paths" msgstr "사이트 공지" @@ -2387,7 +2734,7 @@ msgid "Full name" msgstr "실명" #: actions/profilesettings.php:115 actions/register.php:453 -#: lib/groupeditform.php:161 +#: lib/applicationeditform.php:228 lib/groupeditform.php:161 msgid "Homepage" msgstr "홈페이지" @@ -2411,7 +2758,7 @@ msgstr "자기소개" #: actions/profilesettings.php:132 actions/register.php:471 #: actions/showgroup.php:256 actions/tagother.php:112 -#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:164 msgid "Location" msgstr "위치" @@ -2435,7 +2782,7 @@ msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "당신을 위한 태그, (문자,숫자,-, ., _로 구성) 콤마 혹은 공백으로 구분." -#: actions/profilesettings.php:151 actions/siteadminpanel.php:294 +#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 msgid "Language" msgstr "언어" @@ -2461,7 +2808,7 @@ msgstr "나에게 구독하는 사람에게 자동 구독 신청" msgid "Bio is too long (max %d chars)." msgstr "자기소개가 너무 깁니다. (최대 140글자)" -#: actions/profilesettings.php:235 actions/siteadminpanel.php:164 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 msgid "Timezone not selected." msgstr "타임존이 설정 되지 않았습니다." @@ -2474,24 +2821,24 @@ msgstr "언어가 너무 깁니다. (최대 50글자)" msgid "Invalid tag: \"%s\"" msgstr "유효하지 않은태그: \"%s\"" -#: actions/profilesettings.php:302 +#: actions/profilesettings.php:306 msgid "Couldn't update user for autosubscribe." msgstr "자동구독에 사용자를 업데이트 할 수 없습니다." -#: actions/profilesettings.php:359 +#: actions/profilesettings.php:363 #, fuzzy msgid "Couldn't save location prefs." msgstr "태그를 저장할 수 없습니다." -#: actions/profilesettings.php:371 +#: actions/profilesettings.php:375 msgid "Couldn't save profile." msgstr "프로필을 저장 할 수 없습니다." -#: actions/profilesettings.php:379 +#: actions/profilesettings.php:383 msgid "Couldn't save tags." msgstr "태그를 저장할 수 없습니다." -#: actions/profilesettings.php:387 lib/adminpanelaction.php:137 +#: actions/profilesettings.php:391 lib/adminpanelaction.php:137 msgid "Settings saved." msgstr "설정 저장" @@ -2513,39 +2860,39 @@ msgstr "공개 타임라인, %d 페이지" msgid "Public timeline" msgstr "퍼블릭 타임라인" -#: actions/public.php:151 +#: actions/public.php:159 #, fuzzy msgid "Public Stream Feed (RSS 1.0)" msgstr "퍼블릭 스트림 피드" -#: actions/public.php:155 +#: actions/public.php:163 #, fuzzy msgid "Public Stream Feed (RSS 2.0)" msgstr "퍼블릭 스트림 피드" -#: actions/public.php:159 +#: actions/public.php:167 #, fuzzy msgid "Public Stream Feed (Atom)" msgstr "퍼블릭 스트림 피드" -#: actions/public.php:179 +#: actions/public.php:187 #, php-format msgid "" "This is the public timeline for %%site.name%% but no one has posted anything " "yet." msgstr "" -#: actions/public.php:182 +#: actions/public.php:190 msgid "Be the first to post!" msgstr "" -#: actions/public.php:186 +#: actions/public.php:194 #, php-format msgid "" "Why not [register an account](%%action.register%%) and be the first to post!" msgstr "" -#: actions/public.php:233 +#: actions/public.php:241 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2554,7 +2901,7 @@ msgid "" "friends, family, and colleagues! ([Read more](%%doc.help%%))" msgstr "" -#: actions/public.php:238 +#: actions/public.php:246 #, fuzzy, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2589,7 +2936,7 @@ msgid "" "one!" msgstr "" -#: actions/publictagcloud.php:131 +#: actions/publictagcloud.php:134 msgid "Tag cloud" msgstr "태그 클라우드" @@ -2727,7 +3074,7 @@ msgstr "확인 코드 오류" msgid "Registration successful" msgstr "회원 가입이 성공적입니다." -#: actions/register.php:114 actions/register.php:503 lib/action.php:457 +#: actions/register.php:114 actions/register.php:503 lib/action.php:463 #: lib/logingroupnav.php:85 msgid "Register" msgstr "회원가입" @@ -2769,7 +3116,7 @@ msgid "Same as password above. Required." msgstr "위와 같은 비밀 번호. 필수 사항." #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:270 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 msgid "Email" msgstr "이메일" @@ -2874,7 +3221,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "다른 마이크로블로깅 서비스의 귀하의 프로필 URL" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:365 +#: lib/userprofile.php:368 msgid "Subscribe" msgstr "구독" @@ -2917,7 +3264,7 @@ msgstr "라이선스에 동의하지 않는다면 등록할 수 없습니다." msgid "You already repeated that notice." msgstr "당신은 이미 이 사용자를 차단하고 있습니다." -#: actions/repeat.php:114 lib/noticelist.php:629 +#: actions/repeat.php:114 lib/noticelist.php:656 #, fuzzy msgid "Repeated" msgstr "생성" @@ -2933,6 +3280,11 @@ msgstr "생성" msgid "Replies to %s" msgstr "%s에 답신" +#: actions/replies.php:127 +#, fuzzy, php-format +msgid "Replies to %1$s, page %2$d" +msgstr "%2$s에서 %1$s까지 메시지" + #: actions/replies.php:144 #, fuzzy, php-format msgid "Replies feed for %s (RSS 1.0)" @@ -2974,6 +3326,11 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "%2$s에서 %1$s까지 메시지" +#: actions/rsd.php:146 actions/version.php:157 +#, fuzzy +msgid "StatusNet" +msgstr "아바타가 업데이트 되었습니다." + #: actions/sandbox.php:65 actions/unsandbox.php:65 #, fuzzy msgid "You cannot sandbox users on this site." @@ -2984,6 +3341,125 @@ msgstr "당신은 이 사용자에게 메시지를 보낼 수 없습니다." msgid "User is already sandboxed." msgstr "회원이 당신을 차단해왔습니다." +#: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:336 +msgid "Sessions" +msgstr "" + +#: actions/sessionsadminpanel.php:65 +msgid "Session settings for this StatusNet site." +msgstr "" + +#: actions/sessionsadminpanel.php:175 +msgid "Handle sessions" +msgstr "" + +#: actions/sessionsadminpanel.php:177 +msgid "Whether to handle sessions ourselves." +msgstr "" + +#: actions/sessionsadminpanel.php:181 +msgid "Session debugging" +msgstr "" + +#: actions/sessionsadminpanel.php:183 +msgid "Turn on debugging output for sessions." +msgstr "" + +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/useradminpanel.php:293 +#, fuzzy +msgid "Save site settings" +msgstr "아바타 설정" + +#: actions/showapplication.php:82 +#, fuzzy +msgid "You must be logged in to view an application." +msgstr "그룹을 떠나기 위해서는 로그인해야 합니다." + +#: actions/showapplication.php:157 +#, fuzzy +msgid "Application profile" +msgstr "통지에 프로필이 없습니다." + +#: actions/showapplication.php:159 lib/applicationeditform.php:180 +msgid "Icon" +msgstr "" + +#: actions/showapplication.php:169 actions/version.php:195 +#: lib/applicationeditform.php:195 +#, fuzzy +msgid "Name" +msgstr "별명" + +#: actions/showapplication.php:178 lib/applicationeditform.php:222 +#, fuzzy +msgid "Organization" +msgstr "페이지수" + +#: actions/showapplication.php:187 actions/version.php:198 +#: lib/applicationeditform.php:209 lib/groupeditform.php:172 +msgid "Description" +msgstr "설명" + +#: actions/showapplication.php:192 actions/showgroup.php:429 +#: lib/profileaction.php:174 +msgid "Statistics" +msgstr "통계" + +#: actions/showapplication.php:203 +#, php-format +msgid "Created by %1$s - %2$s access by default - %3$d users" +msgstr "" + +#: actions/showapplication.php:213 +msgid "Application actions" +msgstr "" + +#: actions/showapplication.php:236 +msgid "Reset key & secret" +msgstr "" + +#: actions/showapplication.php:261 +msgid "Application info" +msgstr "" + +#: actions/showapplication.php:263 +msgid "Consumer key" +msgstr "" + +#: actions/showapplication.php:268 +msgid "Consumer secret" +msgstr "" + +#: actions/showapplication.php:273 +msgid "Request token URL" +msgstr "" + +#: actions/showapplication.php:278 +msgid "Access token URL" +msgstr "" + +#: actions/showapplication.php:283 +msgid "Authorize URL" +msgstr "" + +#: actions/showapplication.php:288 +msgid "" +"Note: We support HMAC-SHA1 signatures. We do not support the plaintext " +"signature method." +msgstr "" + +#: actions/showapplication.php:309 +#, fuzzy +msgid "Are you sure you want to reset your consumer key and secret?" +msgstr "정말로 통지를 삭제하시겠습니까?" + +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%1$s's favorite notices, page %2$d" +msgstr "%s 님의 좋아하는 글들" + #: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "좋아하는 게시글을 복구할 수 없습니다." @@ -3033,17 +3509,22 @@ msgstr "" msgid "%s group" msgstr "%s 그룹" +#: actions/showgroup.php:84 +#, fuzzy, php-format +msgid "%1$s group, page %2$d" +msgstr "%s 그룹 회원, %d페이지" + #: actions/showgroup.php:218 msgid "Group profile" msgstr "그룹 프로필" #: actions/showgroup.php:263 actions/tagother.php:118 -#: actions/userauthorization.php:167 lib/userprofile.php:177 +#: actions/userauthorization.php:175 lib/userprofile.php:177 msgid "URL" msgstr "URL" #: actions/showgroup.php:274 actions/tagother.php:128 -#: actions/userauthorization.php:179 lib/userprofile.php:194 +#: actions/userauthorization.php:187 lib/userprofile.php:194 msgid "Note" msgstr "설명" @@ -3089,10 +3570,6 @@ msgstr "(없습니다.)" msgid "All members" msgstr "모든 회원" -#: actions/showgroup.php:429 lib/profileaction.php:174 -msgid "Statistics" -msgstr "통계" - #: actions/showgroup.php:432 #, fuzzy msgid "Created" @@ -3152,6 +3629,11 @@ msgstr "게시글이 등록되었습니다." msgid " tagged %s" msgstr "%s 태그된 통지" +#: actions/showstream.php:79 +#, fuzzy, php-format +msgid "%1$s, page %2$d" +msgstr "%s 와 친구들, %d 페이지" + #: actions/showstream.php:122 #, fuzzy, php-format msgid "Notice feed for %1$s tagged %2$s (RSS 1.0)" @@ -3177,25 +3659,25 @@ msgstr "%s의 통지 피드" msgid "FOAF for %s" msgstr "%s의 보낸쪽지함" -#: actions/showstream.php:191 +#: actions/showstream.php:200 #, php-format msgid "This is the timeline for %1$s but %2$s hasn't posted anything yet." msgstr "" -#: actions/showstream.php:196 +#: actions/showstream.php:205 msgid "" "Seen anything interesting recently? You haven't posted any notices yet, now " "would be a good time to start :)" msgstr "" -#: actions/showstream.php:198 +#: actions/showstream.php:207 #, php-format msgid "" "You can try to nudge %1$s or [post something to his or her attention](%%%%" "action.newnotice%%%%?status_textarea=%2$s)." msgstr "" -#: actions/showstream.php:234 +#: actions/showstream.php:243 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3204,7 +3686,7 @@ msgid "" "follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showstream.php:239 +#: actions/showstream.php:248 #, fuzzy, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3214,7 +3696,7 @@ msgstr "" "**%s**는 %%%%site.name%%%% [마이크로블로깅](http://en.wikipedia.org/wiki/" "Micro-blogging) 서비스에 계정을 갖고 있습니다." -#: actions/showstream.php:313 +#: actions/showstream.php:305 #, fuzzy, php-format msgid "Repeat of %s" msgstr "%s에 답신" @@ -3233,207 +3715,148 @@ msgstr "회원이 당신을 차단해왔습니다." msgid "Basic settings for this StatusNet site." msgstr "" -#: actions/siteadminpanel.php:146 +#: actions/siteadminpanel.php:132 msgid "Site name must have non-zero length." msgstr "" -#: actions/siteadminpanel.php:154 +#: actions/siteadminpanel.php:140 #, fuzzy msgid "You must have a valid contact email address." msgstr "유효한 이메일 주소가 아닙니다." -#: actions/siteadminpanel.php:172 +#: actions/siteadminpanel.php:158 #, php-format msgid "Unknown language \"%s\"." msgstr "" -#: actions/siteadminpanel.php:179 +#: actions/siteadminpanel.php:165 msgid "Invalid snapshot report URL." msgstr "" -#: actions/siteadminpanel.php:185 +#: actions/siteadminpanel.php:171 msgid "Invalid snapshot run value." msgstr "" -#: actions/siteadminpanel.php:191 +#: actions/siteadminpanel.php:177 msgid "Snapshot frequency must be a number." msgstr "" -#: actions/siteadminpanel.php:197 +#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "" -#: actions/siteadminpanel.php:203 +#: actions/siteadminpanel.php:189 msgid "Dupe limit must 1 or more seconds." msgstr "" -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:239 msgid "General" msgstr "" -#: actions/siteadminpanel.php:256 +#: actions/siteadminpanel.php:242 #, fuzzy msgid "Site name" msgstr "사이트 공지" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:243 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "" -#: actions/siteadminpanel.php:261 +#: actions/siteadminpanel.php:247 msgid "Brought by" msgstr "" -#: actions/siteadminpanel.php:262 +#: actions/siteadminpanel.php:248 msgid "Text used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:266 +#: actions/siteadminpanel.php:252 msgid "Brought by URL" msgstr "" -#: actions/siteadminpanel.php:267 +#: actions/siteadminpanel.php:253 msgid "URL used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:271 +#: actions/siteadminpanel.php:257 #, fuzzy msgid "Contact email address for your site" msgstr "%s에 포스팅 할 새로운 이메일 주소" -#: actions/siteadminpanel.php:277 +#: actions/siteadminpanel.php:263 #, fuzzy msgid "Local" msgstr "로컬 뷰" -#: actions/siteadminpanel.php:288 +#: actions/siteadminpanel.php:274 msgid "Default timezone" msgstr "" -#: actions/siteadminpanel.php:289 +#: actions/siteadminpanel.php:275 msgid "Default timezone for the site; usually UTC." msgstr "" -#: actions/siteadminpanel.php:295 +#: actions/siteadminpanel.php:281 #, fuzzy msgid "Default site language" msgstr "언어 설정" -#: actions/siteadminpanel.php:303 -#, fuzzy -msgid "URLs" -msgstr "URL" - -#: actions/siteadminpanel.php:306 -#, fuzzy -msgid "Server" -msgstr "복구" - -#: actions/siteadminpanel.php:306 -msgid "Site's server hostname." -msgstr "" - -#: actions/siteadminpanel.php:310 -msgid "Fancy URLs" -msgstr "" - -#: actions/siteadminpanel.php:312 -msgid "Use fancy (more readable and memorable) URLs?" -msgstr "" - -#: actions/siteadminpanel.php:318 -#, fuzzy -msgid "Access" -msgstr "수락" - -#: actions/siteadminpanel.php:321 -#, fuzzy -msgid "Private" -msgstr "개인정보 취급방침" - -#: actions/siteadminpanel.php:323 -msgid "Prohibit anonymous users (not logged in) from viewing site?" -msgstr "" - -#: actions/siteadminpanel.php:327 -#, fuzzy -msgid "Invite only" -msgstr "초대" - -#: actions/siteadminpanel.php:329 -msgid "Make registration invitation only." -msgstr "" - -#: actions/siteadminpanel.php:333 -#, fuzzy -msgid "Closed" -msgstr "차단하기" - -#: actions/siteadminpanel.php:335 -msgid "Disable new registrations." -msgstr "" - -#: actions/siteadminpanel.php:341 +#: actions/siteadminpanel.php:289 msgid "Snapshots" msgstr "" -#: actions/siteadminpanel.php:344 +#: actions/siteadminpanel.php:292 msgid "Randomly during Web hit" msgstr "" -#: actions/siteadminpanel.php:345 +#: actions/siteadminpanel.php:293 msgid "In a scheduled job" msgstr "" -#: actions/siteadminpanel.php:347 +#: actions/siteadminpanel.php:295 msgid "Data snapshots" msgstr "" -#: actions/siteadminpanel.php:348 +#: actions/siteadminpanel.php:296 msgid "When to send statistical data to status.net servers" msgstr "" -#: actions/siteadminpanel.php:353 +#: actions/siteadminpanel.php:301 msgid "Frequency" msgstr "" -#: actions/siteadminpanel.php:354 +#: actions/siteadminpanel.php:302 msgid "Snapshots will be sent once every N web hits" msgstr "" -#: actions/siteadminpanel.php:359 +#: actions/siteadminpanel.php:307 msgid "Report URL" msgstr "" -#: actions/siteadminpanel.php:360 +#: actions/siteadminpanel.php:308 msgid "Snapshots will be sent to this URL" msgstr "" -#: actions/siteadminpanel.php:367 +#: actions/siteadminpanel.php:315 msgid "Limits" msgstr "" -#: actions/siteadminpanel.php:370 +#: actions/siteadminpanel.php:318 msgid "Text limit" msgstr "" -#: actions/siteadminpanel.php:370 +#: actions/siteadminpanel.php:318 msgid "Maximum number of characters for notices." msgstr "" -#: actions/siteadminpanel.php:374 +#: actions/siteadminpanel.php:322 msgid "Dupe limit" msgstr "" -#: actions/siteadminpanel.php:374 +#: actions/siteadminpanel.php:322 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" -#: actions/siteadminpanel.php:388 actions/useradminpanel.php:313 -#, fuzzy -msgid "Save site settings" -msgstr "아바타 설정" - #: actions/smssettings.php:58 #, fuzzy msgid "SMS settings" @@ -3539,15 +3962,26 @@ msgstr "코드가 입력 되지 않았습니다." msgid "You are not subscribed to that profile." msgstr "당신은 이 프로필에 구독되지 않고있습니다." -#: actions/subedit.php:83 +#: actions/subedit.php:83 classes/Subscription.php:89 +#: classes/Subscription.php:116 msgid "Could not save subscription." msgstr "구독을 저장할 수 없습니다." -#: actions/subscribe.php:55 -msgid "Not a local user." -msgstr "로컬 사용자 아닙니다." +#: actions/subscribe.php:77 +msgid "This action only accepts POST requests." +msgstr "" -#: actions/subscribe.php:69 +#: actions/subscribe.php:107 +#, fuzzy +msgid "No such profile." +msgstr "그러한 통지는 없습니다." + +#: actions/subscribe.php:117 +#, fuzzy +msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." +msgstr "당신은 이 프로필에 구독되지 않고있습니다." + +#: actions/subscribe.php:145 msgid "Subscribed" msgstr "구독하였습니다." @@ -3607,7 +4041,7 @@ msgstr "귀하의 통지를 받고 있는 사람" msgid "These are the people whose notices %s listens to." msgstr "%s님이 받고 있는 통지의 사람" -#: actions/subscriptions.php:121 +#: actions/subscriptions.php:126 #, php-format msgid "" "You're not listening to anyone's notices right now, try subscribing to " @@ -3617,19 +4051,24 @@ msgid "" "automatically subscribe to people you already follow there." msgstr "" -#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#: actions/subscriptions.php:128 actions/subscriptions.php:132 #, fuzzy, php-format msgid "%s is not listening to anyone." msgstr "%1$s 는 지금 듣고 있습니다." -#: actions/subscriptions.php:194 +#: actions/subscriptions.php:199 msgid "Jabber" msgstr "Jabber" -#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:204 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "SMS" +#: actions/tag.php:68 +#, fuzzy, php-format +msgid "Notices tagged with %1$s, page %2$d" +msgstr "이용자 셀프 테크 %s - %d 페이지" + #: actions/tag.php:86 #, fuzzy, php-format msgid "Notice feed for tag %s (RSS 1.0)" @@ -3659,7 +4098,8 @@ msgstr "태그 %s" msgid "User profile" msgstr "이용자 프로필" -#: actions/tagother.php:81 lib/userprofile.php:102 +#: actions/tagother.php:81 actions/userauthorization.php:132 +#: lib/userprofile.php:102 msgid "Photo" msgstr "사진" @@ -3720,7 +4160,7 @@ msgstr "요청한 프로필id가 없습니다." msgid "Unsubscribed" msgstr "구독취소 되었습니다." -#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#: actions/updateprofile.php:62 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -3735,89 +4175,69 @@ msgstr "이용자" msgid "User settings for this StatusNet site." msgstr "" -#: actions/useradminpanel.php:149 +#: actions/useradminpanel.php:148 msgid "Invalid bio limit. Must be numeric." msgstr "" -#: actions/useradminpanel.php:155 +#: actions/useradminpanel.php:154 msgid "Invalid welcome text. Max length is 255 characters." msgstr "" -#: actions/useradminpanel.php:165 +#: actions/useradminpanel.php:164 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 +#: actions/useradminpanel.php:217 lib/accountsettingsaction.php:108 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "프로필" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:221 msgid "Bio Limit" msgstr "" -#: actions/useradminpanel.php:223 +#: actions/useradminpanel.php:222 msgid "Maximum length of a profile bio in characters." msgstr "" -#: actions/useradminpanel.php:231 +#: actions/useradminpanel.php:230 #, fuzzy msgid "New users" msgstr "새 사용자를 초대" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:234 msgid "New user welcome" msgstr "" -#: actions/useradminpanel.php:236 +#: actions/useradminpanel.php:235 msgid "Welcome text for new users (Max 255 chars)." msgstr "" -#: actions/useradminpanel.php:241 +#: actions/useradminpanel.php:240 #, fuzzy msgid "Default subscription" msgstr "모든 예약 구독" -#: actions/useradminpanel.php:242 +#: actions/useradminpanel.php:241 #, fuzzy msgid "Automatically subscribe new users to this user." msgstr "나에게 구독하는 사람에게 자동 구독 신청" -#: actions/useradminpanel.php:251 +#: actions/useradminpanel.php:250 #, fuzzy msgid "Invitations" msgstr "초대권을 보냈습니다" -#: actions/useradminpanel.php:256 +#: actions/useradminpanel.php:255 #, fuzzy msgid "Invitations enabled" msgstr "초대권을 보냈습니다" -#: actions/useradminpanel.php:258 +#: actions/useradminpanel.php:257 msgid "Whether to allow users to invite new users." msgstr "" -#: actions/useradminpanel.php:265 -msgid "Sessions" -msgstr "" - -#: actions/useradminpanel.php:270 -msgid "Handle sessions" -msgstr "" - -#: actions/useradminpanel.php:272 -msgid "Whether to handle sessions ourselves." -msgstr "" - -#: actions/useradminpanel.php:276 -msgid "Session debugging" -msgstr "" - -#: actions/useradminpanel.php:278 -msgid "Turn on debugging output for sessions." -msgstr "" - #: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "구독을 허가" @@ -3832,38 +4252,38 @@ msgstr "" "사용자의 통지를 구독하려면 상세를 확인해 주세요. 구독하지 않는 경우는, \"취소" "\"를 클릭해 주세요." -#: actions/userauthorization.php:188 actions/version.php:165 +#: actions/userauthorization.php:196 actions/version.php:165 #, fuzzy msgid "License" msgstr "라이선스" -#: actions/userauthorization.php:209 +#: actions/userauthorization.php:217 msgid "Accept" msgstr "수락" -#: actions/userauthorization.php:210 lib/subscribeform.php:115 +#: actions/userauthorization.php:218 lib/subscribeform.php:115 #: lib/subscribeform.php:139 msgid "Subscribe to this user" msgstr "이 회원을 구독합니다." -#: actions/userauthorization.php:211 +#: actions/userauthorization.php:219 msgid "Reject" msgstr "거부" -#: actions/userauthorization.php:212 +#: actions/userauthorization.php:220 #, fuzzy msgid "Reject this subscription" msgstr "%s 구독" -#: actions/userauthorization.php:225 +#: actions/userauthorization.php:232 msgid "No authorization request!" msgstr "허용되지 않는 요청입니다." -#: actions/userauthorization.php:247 +#: actions/userauthorization.php:254 msgid "Subscription authorized" msgstr "구독 허가" -#: actions/userauthorization.php:249 +#: actions/userauthorization.php:256 #, fuzzy msgid "" "The subscription has been authorized, but no callback URL was passed. Check " @@ -3873,11 +4293,11 @@ msgstr "" "구독이 승인 되었습니다. 하지만 콜백 URL이 통과 되지 않았습니다. 웹사이트의 지" "시를 찾아 구독 승인 방법에 대하여 읽어보십시오. 귀하의 구독 토큰은 : " -#: actions/userauthorization.php:259 +#: actions/userauthorization.php:266 msgid "Subscription rejected" msgstr "구독 거부" -#: actions/userauthorization.php:261 +#: actions/userauthorization.php:268 #, fuzzy msgid "" "The subscription has been rejected, but no callback URL was passed. Check " @@ -3887,37 +4307,37 @@ msgstr "" "구독이 해지 되었습니다. 하지만 콜백 URL이 통과 되지 않았습니다. 웹사이트의 지" "시를 찾아 구독 해지 방법에 대하여 읽어보십시오." -#: actions/userauthorization.php:296 +#: actions/userauthorization.php:303 #, php-format msgid "Listener URI ‘%s’ not found here." msgstr "" -#: actions/userauthorization.php:301 +#: actions/userauthorization.php:308 #, php-format msgid "Listenee URI ‘%s’ is too long." msgstr "" -#: actions/userauthorization.php:307 +#: actions/userauthorization.php:314 #, php-format msgid "Listenee URI ‘%s’ is a local user." msgstr "" -#: actions/userauthorization.php:322 +#: actions/userauthorization.php:329 #, php-format msgid "Profile URL ‘%s’ is for a local user." msgstr "" -#: actions/userauthorization.php:338 +#: actions/userauthorization.php:345 #, php-format msgid "Avatar URL ‘%s’ is not valid." msgstr "" -#: actions/userauthorization.php:343 +#: actions/userauthorization.php:350 #, fuzzy, php-format msgid "Can’t read avatar URL ‘%s’." msgstr "아바타 URL '%s'을(를) 읽어낼 수 없습니다." -#: actions/userauthorization.php:348 +#: actions/userauthorization.php:355 #, fuzzy, php-format msgid "Wrong image type for avatar URL ‘%s’." msgstr "%S 잘못된 그림 파일 타입입니다. " @@ -3937,6 +4357,11 @@ msgstr "" msgid "Enjoy your hotdog!" msgstr "" +#: actions/usergroups.php:64 +#, fuzzy, php-format +msgid "%1$s groups, page %2$d" +msgstr "%s 그룹 회원, %d페이지" + #: actions/usergroups.php:130 #, fuzzy msgid "Search for more groups" @@ -3964,11 +4389,6 @@ msgid "" "Inc. and contributors." msgstr "" -#: actions/version.php:157 -#, fuzzy -msgid "StatusNet" -msgstr "아바타가 업데이트 되었습니다." - #: actions/version.php:161 msgid "Contributors" msgstr "" @@ -4000,12 +4420,7 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:195 -#, fuzzy -msgid "Name" -msgstr "별명" - -#: actions/version.php:196 lib/action.php:741 +#: actions/version.php:196 lib/action.php:747 #, fuzzy msgid "Version" msgstr "개인적인" @@ -4014,10 +4429,6 @@ msgstr "개인적인" msgid "Author(s)" msgstr "" -#: actions/version.php:198 lib/groupeditform.php:172 -msgid "Description" -msgstr "설명" - #: classes/File.php:144 #, php-format msgid "" @@ -4068,28 +4479,28 @@ msgstr "메시지를 삽입할 수 없습니다." msgid "Could not update message with new URI." msgstr "새 URI와 함께 메시지를 업데이트할 수 없습니다." -#: classes/Notice.php:171 +#: classes/Notice.php:157 #, php-format msgid "DB error inserting hashtag: %s" msgstr "해쉬테그를 추가 할 때에 데이타베이스 에러 : %s" -#: classes/Notice.php:225 +#: classes/Notice.php:222 #, fuzzy msgid "Problem saving notice. Too long." msgstr "통지를 저장하는데 문제가 발생했습니다." -#: classes/Notice.php:229 +#: classes/Notice.php:226 msgid "Problem saving notice. Unknown user." msgstr "게시글 저장문제. 알려지지않은 회원" -#: classes/Notice.php:234 +#: classes/Notice.php:231 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" "너무 많은 게시글이 너무 빠르게 올라옵니다. 한숨고르고 몇분후에 다시 포스트를 " "해보세요." -#: classes/Notice.php:240 +#: classes/Notice.php:237 #, fuzzy msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " @@ -4098,34 +4509,61 @@ msgstr "" "너무 많은 게시글이 너무 빠르게 올라옵니다. 한숨고르고 몇분후에 다시 포스트를 " "해보세요." -#: classes/Notice.php:246 +#: classes/Notice.php:243 msgid "You are banned from posting notices on this site." msgstr "이 사이트에 게시글 포스팅으로부터 당신은 금지되었습니다." -#: classes/Notice.php:305 classes/Notice.php:330 +#: classes/Notice.php:309 classes/Notice.php:335 msgid "Problem saving notice." msgstr "통지를 저장하는데 문제가 발생했습니다." -#: classes/Notice.php:1052 -#, php-format -msgid "DB error inserting reply: %s" -msgstr "답신을 추가 할 때에 데이타베이스 에러 : %s" +#: classes/Notice.php:882 +#, fuzzy +msgid "Problem saving group inbox." +msgstr "통지를 저장하는데 문제가 발생했습니다." -#: classes/Notice.php:1423 +#: classes/Notice.php:1407 #, fuzzy, php-format msgid "RT @%1$s %2$s" msgstr "%1$s (%2$s)" -#: classes/User.php:382 +#: classes/Subscription.php:66 lib/oauthstore.php:465 +#, fuzzy +msgid "You have been banned from subscribing." +msgstr "이 회원은 구독으로부터 당신을 차단해왔다." + +#: classes/Subscription.php:70 +msgid "Already subscribed!" +msgstr "" + +#: classes/Subscription.php:74 +msgid "User has blocked you." +msgstr "회원이 당신을 차단해왔습니다." + +#: classes/Subscription.php:157 +#, fuzzy +msgid "Not subscribed!" +msgstr "구독하고 있지 않습니다!" + +#: classes/Subscription.php:163 +#, fuzzy +msgid "Couldn't delete self-subscription." +msgstr "예약 구독을 삭제 할 수 없습니다." + +#: classes/Subscription.php:179 lib/subs.php:69 +msgid "Couldn't delete subscription." +msgstr "예약 구독을 삭제 할 수 없습니다." + +#: classes/User.php:372 #, fuzzy, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "%2$s에서 %1$s까지 메시지" -#: classes/User_group.php:380 +#: classes/User_group.php:423 msgid "Could not create group." msgstr "새 그룹을 만들 수 없습니다." -#: classes/User_group.php:409 +#: classes/User_group.php:452 msgid "Could not set group membership." msgstr "그룹 맴버십을 세팅할 수 없습니다." @@ -4167,131 +4605,127 @@ msgstr "%1$s (%2$s)" msgid "Untitled page" msgstr "제목없는 페이지" -#: lib/action.php:427 +#: lib/action.php:433 msgid "Primary site navigation" msgstr "주 사이트 네비게이션" -#: lib/action.php:433 +#: lib/action.php:439 msgid "Home" msgstr "홈" -#: lib/action.php:433 +#: lib/action.php:439 msgid "Personal profile and friends timeline" msgstr "개인 프로필과 친구 타임라인" -#: lib/action.php:435 -msgid "Account" -msgstr "계정" - -#: lib/action.php:435 +#: lib/action.php:441 msgid "Change your email, avatar, password, profile" msgstr "당신의 이메일, 아바타, 비밀 번호, 프로필을 변경하세요." -#: lib/action.php:438 +#: lib/action.php:444 msgid "Connect" msgstr "연결" -#: lib/action.php:438 +#: lib/action.php:444 #, fuzzy msgid "Connect to services" msgstr "서버에 재접속 할 수 없습니다 : %s" -#: lib/action.php:442 +#: lib/action.php:448 #, fuzzy msgid "Change site configuration" msgstr "주 사이트 네비게이션" -#: lib/action.php:446 lib/subgroupnav.php:105 +#: lib/action.php:452 lib/subgroupnav.php:105 msgid "Invite" msgstr "초대" -#: lib/action.php:447 lib/subgroupnav.php:106 +#: lib/action.php:453 lib/subgroupnav.php:106 #, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "%s에 친구를 가입시키기 위해 친구와 동료를 초대합니다." -#: lib/action.php:452 +#: lib/action.php:458 msgid "Logout" msgstr "로그아웃" -#: lib/action.php:452 +#: lib/action.php:458 msgid "Logout from the site" msgstr "이 사이트로부터 로그아웃" -#: lib/action.php:457 +#: lib/action.php:463 msgid "Create an account" msgstr "계정 만들기" -#: lib/action.php:460 +#: lib/action.php:466 msgid "Login to the site" msgstr "이 사이트 로그인" -#: lib/action.php:463 lib/action.php:726 +#: lib/action.php:469 lib/action.php:732 msgid "Help" msgstr "도움말" -#: lib/action.php:463 +#: lib/action.php:469 msgid "Help me!" msgstr "도움이 필요해!" -#: lib/action.php:466 lib/searchaction.php:127 +#: lib/action.php:472 lib/searchaction.php:127 msgid "Search" msgstr "검색" -#: lib/action.php:466 +#: lib/action.php:472 msgid "Search for people or text" msgstr "프로필이나 텍스트 검색" -#: lib/action.php:487 +#: lib/action.php:493 msgid "Site notice" msgstr "사이트 공지" -#: lib/action.php:553 +#: lib/action.php:559 msgid "Local views" msgstr "로컬 뷰" -#: lib/action.php:619 +#: lib/action.php:625 msgid "Page notice" msgstr "페이지 공지" -#: lib/action.php:721 +#: lib/action.php:727 msgid "Secondary site navigation" msgstr "보조 사이트 네비게이션" -#: lib/action.php:728 +#: lib/action.php:734 msgid "About" msgstr "정보" -#: lib/action.php:730 +#: lib/action.php:736 msgid "FAQ" msgstr "자주 묻는 질문" -#: lib/action.php:734 +#: lib/action.php:740 msgid "TOS" msgstr "" -#: lib/action.php:737 +#: lib/action.php:743 msgid "Privacy" msgstr "개인정보 취급방침" -#: lib/action.php:739 +#: lib/action.php:745 msgid "Source" msgstr "소스 코드" -#: lib/action.php:743 +#: lib/action.php:749 msgid "Contact" msgstr "연락하기" -#: lib/action.php:745 +#: lib/action.php:751 #, fuzzy msgid "Badge" msgstr "찔러 보기" -#: lib/action.php:773 +#: lib/action.php:779 msgid "StatusNet software license" msgstr "라코니카 소프트웨어 라이선스" -#: lib/action.php:776 +#: lib/action.php:782 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4300,12 +4734,12 @@ msgstr "" "**%%site.name%%** 는 [%%site.broughtby%%](%%site.broughtbyurl%%)가 제공하는 " "마이크로블로깅서비스입니다." -#: lib/action.php:778 +#: lib/action.php:784 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** 는 마이크로블로깅서비스입니다." -#: lib/action.php:780 +#: lib/action.php:786 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4316,34 +4750,56 @@ msgstr "" "을 사용합니다. StatusNet는 [GNU Affero General Public License](http://www." "fsf.org/licensing/licenses/agpl-3.0.html) 라이선스에 따라 사용할 수 있습니다." -#: lib/action.php:794 +#: lib/action.php:801 #, fuzzy msgid "Site content license" msgstr "라코니카 소프트웨어 라이선스" -#: lib/action.php:803 +#: lib/action.php:806 +#, php-format +msgid "Content and data of %1$s are private and confidential." +msgstr "" + +#: lib/action.php:811 +#, php-format +msgid "Content and data copyright by %1$s. All rights reserved." +msgstr "" + +#: lib/action.php:814 +msgid "Content and data copyright by contributors. All rights reserved." +msgstr "" + +#: lib/action.php:827 msgid "All " msgstr "모든 것" -#: lib/action.php:808 +#: lib/action.php:833 msgid "license." msgstr "라이선스" -#: lib/action.php:1102 +#: lib/action.php:1132 msgid "Pagination" msgstr "페이지수" -#: lib/action.php:1111 +#: lib/action.php:1141 msgid "After" msgstr "뒷 페이지" -#: lib/action.php:1119 +#: lib/action.php:1149 msgid "Before" msgstr "앞 페이지" -#: lib/action.php:1167 -msgid "There was a problem with your session token." -msgstr "당신의 세션토큰관련 문제가 있습니다." +#: lib/activity.php:382 +msgid "Can't handle remote content yet." +msgstr "" + +#: lib/activity.php:410 +msgid "Can't handle embedded XML content yet." +msgstr "" + +#: lib/activity.php:414 +msgid "Can't handle embedded Base64 content yet." +msgstr "" #: lib/adminpanelaction.php:96 #, fuzzy @@ -4380,11 +4836,105 @@ msgstr "이메일 주소 확인서" msgid "Design configuration" msgstr "SMS 인증" -#: lib/adminpanelaction.php:322 lib/adminpanelaction.php:327 +#: lib/adminpanelaction.php:322 +#, fuzzy +msgid "User configuration" +msgstr "SMS 인증" + +#: lib/adminpanelaction.php:327 +#, fuzzy +msgid "Access configuration" +msgstr "SMS 인증" + +#: lib/adminpanelaction.php:332 #, fuzzy msgid "Paths configuration" msgstr "SMS 인증" +#: lib/adminpanelaction.php:337 +#, fuzzy +msgid "Sessions configuration" +msgstr "SMS 인증" + +#: lib/apiauth.php:95 +msgid "API resource requires read-write access, but you only have read access." +msgstr "" + +#: lib/apiauth.php:273 +#, php-format +msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" +msgstr "" + +#: lib/applicationeditform.php:136 +msgid "Edit application" +msgstr "" + +#: lib/applicationeditform.php:184 +msgid "Icon for this application" +msgstr "" + +#: lib/applicationeditform.php:204 +#, fuzzy, php-format +msgid "Describe your application in %d characters" +msgstr "140글자로 그룹이나 토픽 설명하기" + +#: lib/applicationeditform.php:207 +#, fuzzy +msgid "Describe your application" +msgstr "140글자로 그룹이나 토픽 설명하기" + +#: lib/applicationeditform.php:216 +#, fuzzy +msgid "Source URL" +msgstr "소스 코드" + +#: lib/applicationeditform.php:218 +#, fuzzy +msgid "URL of the homepage of this application" +msgstr "그룹 혹은 토픽의 홈페이지나 블로그 URL" + +#: lib/applicationeditform.php:224 +msgid "Organization responsible for this application" +msgstr "" + +#: lib/applicationeditform.php:230 +#, fuzzy +msgid "URL for the homepage of the organization" +msgstr "그룹 혹은 토픽의 홈페이지나 블로그 URL" + +#: lib/applicationeditform.php:236 +msgid "URL to redirect to after authentication" +msgstr "" + +#: lib/applicationeditform.php:258 +msgid "Browser" +msgstr "" + +#: lib/applicationeditform.php:274 +msgid "Desktop" +msgstr "" + +#: lib/applicationeditform.php:275 +msgid "Type of application, browser or desktop" +msgstr "" + +#: lib/applicationeditform.php:297 +msgid "Read-only" +msgstr "" + +#: lib/applicationeditform.php:315 +msgid "Read-write" +msgstr "" + +#: lib/applicationeditform.php:316 +msgid "Default access for this application: read-only, or read-write" +msgstr "" + +#: lib/applicationlist.php:154 +#, fuzzy +msgid "Revoke" +msgstr "삭제" + #: lib/attachmentlist.php:87 msgid "Attachments" msgstr "" @@ -4406,12 +4956,12 @@ msgstr "" msgid "Tags for this attachment" msgstr "" -#: lib/authenticationplugin.php:182 lib/authenticationplugin.php:187 +#: lib/authenticationplugin.php:218 lib/authenticationplugin.php:223 #, fuzzy msgid "Password changing failed" msgstr "비밀번호 변경" -#: lib/authenticationplugin.php:197 +#: lib/authenticationplugin.php:233 #, fuzzy msgid "Password changing is not allowed" msgstr "비밀번호 변경" @@ -4565,80 +5115,89 @@ msgstr "통지를 저장하는데 문제가 발생했습니다." msgid "Specify the name of the user to subscribe to" msgstr "구독하려는 사용자의 이름을 지정하십시오." -#: lib/command.php:554 +#: lib/command.php:554 lib/command.php:589 +msgid "No such user" +msgstr "그러한 사용자는 없습니다." + +#: lib/command.php:561 #, php-format msgid "Subscribed to %s" msgstr "%s에게 구독되었습니다." -#: lib/command.php:575 +#: lib/command.php:582 lib/command.php:685 msgid "Specify the name of the user to unsubscribe from" msgstr "구독을 해제하려는 사용자의 이름을 지정하십시오." -#: lib/command.php:582 +#: lib/command.php:595 #, php-format msgid "Unsubscribed from %s" msgstr "%s에서 구독을 해제했습니다." -#: lib/command.php:600 lib/command.php:623 +#: lib/command.php:613 lib/command.php:636 msgid "Command not yet implemented." msgstr "명령이 아직 실행되지 않았습니다." -#: lib/command.php:603 +#: lib/command.php:616 msgid "Notification off." msgstr "알림끄기." -#: lib/command.php:605 +#: lib/command.php:618 msgid "Can't turn off notification." msgstr "알림을 끌 수 없습니다." -#: lib/command.php:626 +#: lib/command.php:639 msgid "Notification on." msgstr "알림이 켜졌습니다." -#: lib/command.php:628 +#: lib/command.php:641 msgid "Can't turn on notification." msgstr "알림을 켤 수 없습니다." -#: lib/command.php:641 +#: lib/command.php:654 msgid "Login command is disabled" msgstr "" -#: lib/command.php:652 +#: lib/command.php:665 #, php-format msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "" -#: lib/command.php:668 +#: lib/command.php:692 +#, fuzzy, php-format +msgid "Unsubscribed %s" +msgstr "%s에서 구독을 해제했습니다." + +#: lib/command.php:709 #, fuzzy msgid "You are not subscribed to anyone." msgstr "당신은 이 프로필에 구독되지 않고있습니다." -#: lib/command.php:670 +#: lib/command.php:711 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "당신은 다음 사용자를 이미 구독하고 있습니다." -#: lib/command.php:690 +#: lib/command.php:731 #, fuzzy msgid "No one is subscribed to you." msgstr "다른 사람을 구독 하실 수 없습니다." -#: lib/command.php:692 +#: lib/command.php:733 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "다른 사람을 구독 하실 수 없습니다." -#: lib/command.php:712 +#: lib/command.php:753 #, fuzzy msgid "You are not a member of any groups." msgstr "당신은 해당 그룹의 멤버가 아닙니다." -#: lib/command.php:714 +#: lib/command.php:755 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "당신은 해당 그룹의 멤버가 아닙니다." -#: lib/command.php:728 +#: lib/command.php:769 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -4652,6 +5211,7 @@ msgid "" "d - direct message to user\n" "get - get last notice from user\n" "whois - get profile info on user\n" +"lose - force user to stop following you\n" "fav - add user's last notice as a 'fave'\n" "fav # - add notice with the given id as a 'fave'\n" "repeat # - repeat a notice with a given id\n" @@ -4679,20 +5239,20 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:131 +#: lib/common.php:136 #, fuzzy msgid "No configuration file found. " msgstr "확인 코드가 없습니다." -#: lib/common.php:132 +#: lib/common.php:137 msgid "I looked for configuration files in the following places: " msgstr "" -#: lib/common.php:134 +#: lib/common.php:139 msgid "You may wish to run the installer to fix this." msgstr "" -#: lib/common.php:135 +#: lib/common.php:140 #, fuzzy msgid "Go to the installer." msgstr "이 사이트 로그인" @@ -4709,6 +5269,15 @@ msgstr "인스턴트 메신저에 의한 업데이트" msgid "Updates by SMS" msgstr "SMS에 의한 업데이트" +#: lib/connectsettingsaction.php:120 +#, fuzzy +msgid "Connections" +msgstr "연결" + +#: lib/connectsettingsaction.php:121 +msgid "Authorized connected applications" +msgstr "" + #: lib/dberroraction.php:60 msgid "Database error" msgstr "" @@ -4896,12 +5465,12 @@ msgstr "" msgid "kB" msgstr "" -#: lib/jabber.php:202 +#: lib/jabber.php:220 #, php-format msgid "[%s]" msgstr "" -#: lib/jabber.php:385 +#: lib/jabber.php:400 #, php-format msgid "Unknown inbox source %d." msgstr "" @@ -5104,7 +5673,7 @@ msgid "" "users in conversation. People can send you messages for your eyes only." msgstr "" -#: lib/mailbox.php:227 lib/noticelist.php:477 +#: lib/mailbox.php:227 lib/noticelist.php:482 #, fuzzy msgid "from" msgstr "다음에서:" @@ -5223,60 +5792,56 @@ msgid "Do not share my location" msgstr "태그를 저장할 수 없습니다." #: lib/noticeform.php:216 -msgid "Hide this info" -msgstr "" - -#: lib/noticeform.php:217 msgid "" "Sorry, retrieving your geo location is taking longer than expected, please " "try again later" msgstr "" -#: lib/noticelist.php:428 +#: lib/noticelist.php:429 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "" -#: lib/noticelist.php:429 +#: lib/noticelist.php:430 #, fuzzy msgid "N" msgstr "아니오" -#: lib/noticelist.php:429 +#: lib/noticelist.php:430 msgid "S" msgstr "" -#: lib/noticelist.php:430 +#: lib/noticelist.php:431 msgid "E" msgstr "" -#: lib/noticelist.php:430 +#: lib/noticelist.php:431 msgid "W" msgstr "" -#: lib/noticelist.php:436 +#: lib/noticelist.php:438 msgid "at" msgstr "" -#: lib/noticelist.php:531 +#: lib/noticelist.php:558 #, fuzzy msgid "in context" msgstr "내용이 없습니다!" -#: lib/noticelist.php:556 +#: lib/noticelist.php:583 #, fuzzy msgid "Repeated by" msgstr "생성" -#: lib/noticelist.php:585 +#: lib/noticelist.php:610 msgid "Reply to this notice" msgstr "이 게시글에 대해 답장하기" -#: lib/noticelist.php:586 +#: lib/noticelist.php:611 msgid "Reply" msgstr "답장하기" -#: lib/noticelist.php:628 +#: lib/noticelist.php:655 #, fuzzy msgid "Notice repeated" msgstr "게시글이 등록되었습니다." @@ -5310,12 +5875,7 @@ msgstr "리모트 프로필 추가 오류" msgid "Duplicate notice" msgstr "통지 삭제" -#: lib/oauthstore.php:466 lib/subs.php:48 -#, fuzzy -msgid "You have been banned from subscribing." -msgstr "이 회원은 구독으로부터 당신을 차단해왔다." - -#: lib/oauthstore.php:491 +#: lib/oauthstore.php:490 msgid "Couldn't insert new subscription." msgstr "예약 구독을 추가 할 수 없습니다." @@ -5331,19 +5891,19 @@ msgstr "답신" msgid "Favorites" msgstr "좋아하는 글들" -#: lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "받은 쪽지함" -#: lib/personalgroupnav.php:125 +#: lib/personalgroupnav.php:126 msgid "Your incoming messages" msgstr "당신의 받은 메시지들" -#: lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 msgid "Outbox" msgstr "보낸 쪽지함" -#: lib/personalgroupnav.php:130 +#: lib/personalgroupnav.php:131 msgid "Your sent messages" msgstr "당신의 보낸 메시지들" @@ -5425,6 +5985,10 @@ msgstr "이 게시글에 대해 답장하기" msgid "Repeat this notice" msgstr "이 게시글에 대해 답장하기" +#: lib/router.php:665 +msgid "No single user defined for single-user mode." +msgstr "" + #: lib/sandboxform.php:67 #, fuzzy msgid "Sandbox" @@ -5498,36 +6062,6 @@ msgstr "%s에 의해 구독되는 사람들" msgid "Groups %s is a member of" msgstr "%s 그룹들은 의 멤버입니다." -#: lib/subs.php:52 -msgid "Already subscribed!" -msgstr "" - -#: lib/subs.php:56 -msgid "User has blocked you." -msgstr "회원이 당신을 차단해왔습니다." - -#: lib/subs.php:63 -msgid "Could not subscribe." -msgstr "구독 하실 수 없습니다." - -#: lib/subs.php:82 -msgid "Could not subscribe other to you." -msgstr "다른 사람을 구독 하실 수 없습니다." - -#: lib/subs.php:137 -#, fuzzy -msgid "Not subscribed!" -msgstr "구독하고 있지 않습니다!" - -#: lib/subs.php:142 -#, fuzzy -msgid "Couldn't delete self-subscription." -msgstr "예약 구독을 삭제 할 수 없습니다." - -#: lib/subs.php:158 -msgid "Couldn't delete subscription." -msgstr "예약 구독을 삭제 할 수 없습니다." - #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -5581,68 +6115,68 @@ msgstr "아바타" msgid "User actions" msgstr "사용자 동작" -#: lib/userprofile.php:248 +#: lib/userprofile.php:251 #, fuzzy msgid "Edit profile settings" msgstr "프로필 세팅" -#: lib/userprofile.php:249 +#: lib/userprofile.php:252 msgid "Edit" msgstr "" -#: lib/userprofile.php:272 +#: lib/userprofile.php:275 msgid "Send a direct message to this user" msgstr "이 회원에게 직접 메시지를 보냅니다." -#: lib/userprofile.php:273 +#: lib/userprofile.php:276 msgid "Message" msgstr "메시지" -#: lib/userprofile.php:311 +#: lib/userprofile.php:314 msgid "Moderate" msgstr "" -#: lib/util.php:877 +#: lib/util.php:952 msgid "a few seconds ago" msgstr "몇 초 전" -#: lib/util.php:879 +#: lib/util.php:954 msgid "about a minute ago" msgstr "1분 전" -#: lib/util.php:881 +#: lib/util.php:956 #, php-format msgid "about %d minutes ago" msgstr "%d분 전" -#: lib/util.php:883 +#: lib/util.php:958 msgid "about an hour ago" msgstr "1시간 전" -#: lib/util.php:885 +#: lib/util.php:960 #, php-format msgid "about %d hours ago" msgstr "%d시간 전" -#: lib/util.php:887 +#: lib/util.php:962 msgid "about a day ago" msgstr "하루 전" -#: lib/util.php:889 +#: lib/util.php:964 #, php-format msgid "about %d days ago" msgstr "%d일 전" -#: lib/util.php:891 +#: lib/util.php:966 msgid "about a month ago" msgstr "1달 전" -#: lib/util.php:893 +#: lib/util.php:968 #, php-format msgid "about %d months ago" msgstr "%d달 전" -#: lib/util.php:895 +#: lib/util.php:970 msgid "about a year ago" msgstr "1년 전" @@ -5656,7 +6190,7 @@ msgstr "홈페이지 주소형식이 올바르지 않습니다." msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "" -#: scripts/xmppdaemon.php:301 +#: lib/xmppmanager.php:402 #, fuzzy, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "당신이 보낸 메시지가 너무 길어요. 최대 140글자까지입니다." diff --git a/locale/mk/LC_MESSAGES/statusnet.po b/locale/mk/LC_MESSAGES/statusnet.po index 4bda795f0a..14efaf620d 100644 --- a/locale/mk/LC_MESSAGES/statusnet.po +++ b/locale/mk/LC_MESSAGES/statusnet.po @@ -9,17 +9,71 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-01-13 22:04+0000\n" -"PO-Revision-Date: 2010-01-13 22:05:43+0000\n" +"POT-Creation-Date: 2010-02-24 23:49+0000\n" +"PO-Revision-Date: 2010-02-24 23:51:18+0000\n" "Language-Team: Macedonian\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha (r61027); Translate extension (2010-01-04)\n" +"X-Generator: MediaWiki 1.17alpha (r62925); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=2; plural= n==1 || n%10==1 ? 0 : 1;\n" +#: actions/accessadminpanel.php:54 lib/adminpanelaction.php:326 +msgid "Access" +msgstr "Пристап" + +#: actions/accessadminpanel.php:65 +msgid "Site access settings" +msgstr "Нагодувања за пристап на веб-страницата" + +#: actions/accessadminpanel.php:158 +msgid "Registration" +msgstr "Регистрација" + +#: actions/accessadminpanel.php:161 +msgid "Private" +msgstr "Приватен" + +#: actions/accessadminpanel.php:163 +msgid "Prohibit anonymous users (not logged in) from viewing site?" +msgstr "" +"Да им забранам на анонимните (ненајавени) корисници да ја гледаат веб-" +"страницата?" + +#: actions/accessadminpanel.php:167 +msgid "Invite only" +msgstr "Само со покана" + +#: actions/accessadminpanel.php:169 +msgid "Make registration invitation only." +msgstr "Регистрирање само со покана." + +#: actions/accessadminpanel.php:173 +msgid "Closed" +msgstr "Затворен" + +#: actions/accessadminpanel.php:175 +msgid "Disable new registrations." +msgstr "Оневозможи нови регистрации." + +#: actions/accessadminpanel.php:189 actions/designadminpanel.php:586 +#: actions/emailsettings.php:195 actions/imsettings.php:163 +#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 +#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 +#: actions/siteadminpanel.php:336 actions/smssettings.php:181 +#: actions/subscriptions.php:208 actions/tagother.php:154 +#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 lib/designsettings.php:256 +#: lib/groupeditform.php:202 +msgid "Save" +msgstr "Зачувај" + +#: actions/accessadminpanel.php:189 +msgid "Save access settings" +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" @@ -34,25 +88,29 @@ msgstr "Нема таква страница" #: 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:144 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apistatusesupdate.php:148 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:78 #: actions/apitimelinehome.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/otp.php:76 #: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154 -#: actions/replies.php:73 actions/repliesrss.php:38 +#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 #: 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:302 lib/command.php:355 #: lib/command.php:401 lib/command.php:462 lib/command.php:518 #: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 -#: lib/subs.php:34 lib/subs.php:125 msgid "No such user." msgstr "Нема таков корисник." +#: actions/all.php:84 +#, php-format +msgid "%1$s and friends, page %2$d" +msgstr "%1$s и пријателите, стр. %2$d" + #: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 -#: actions/apitimelinefriends.php:115 actions/apitimelinehome.php:115 +#: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" @@ -99,7 +157,7 @@ msgstr "" "на корисникот или да [објавите нешто што сакате тој да го прочита](%%%%" "action.newnotice%%%%?status_textarea=%3$s)." -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211 #, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " @@ -113,8 +171,8 @@ msgstr "" msgid "You and friends" msgstr "Вие и пријателите" -#: actions/allrss.php:119 actions/apitimelinefriends.php:122 -#: actions/apitimelinehome.php:122 +#: actions/allrss.php:119 actions/apitimelinefriends.php:119 +#: actions/apitimelinehome.php:120 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Подновувања од %1$s и пријатели на %2$s!" @@ -124,23 +182,23 @@ msgstr "Подновувања од %1$s и пријатели на %2$s!" #: actions/apiaccountupdateprofile.php:97 #: actions/apiaccountupdateprofilebackgroundimage.php:94 #: actions/apiaccountupdateprofilecolors.php:118 -#: 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:136 actions/apigroupismember.php:114 -#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 -#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 -#: actions/apigroupmembership.php:106 actions/apigroupshow.php:105 -#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 -#: actions/apistatusesretweets.php:112 actions/apistatusesshow.php:108 -#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93 -#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:146 -#: actions/apitimelinefriends.php:156 actions/apitimelinegroup.php:150 -#: actions/apitimelinehome.php:156 actions/apitimelinementions.php:151 -#: actions/apitimelinepublic.php:131 actions/apitimelineretweetedbyme.php:122 +#: actions/apiaccountverifycredentials.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:128 actions/apigroupcreate.php:136 +#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 +#: actions/apigroupleave.php:141 actions/apigrouplist.php:132 +#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 +#: actions/apigroupshow.php:115 actions/apihelptest.php:88 +#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 +#: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 #: actions/apitimelineretweetedtome.php:121 -#: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141 -#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 +#: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 +#: actions/apitimelineuser.php:207 actions/apiusershow.php:101 msgid "API method not found." msgstr "API методот не е пронајден." @@ -154,7 +212,7 @@ msgstr "API методот не е пронајден." #: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 #: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 #: actions/apigroupleave.php:91 actions/apistatusesretweet.php:65 -#: actions/apistatusesupdate.php:114 +#: actions/apistatusesupdate.php:118 msgid "This method requires a POST." msgstr "Овој метод бара POST." @@ -185,8 +243,9 @@ msgstr "Не може да се зачува профил." #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:97 -#: actions/apistatusesupdate.php:127 actions/avatarsettings.php:257 -#: actions/designadminpanel.php:122 actions/newnotice.php:94 +#: actions/apistatusesupdate.php:131 actions/avatarsettings.php:257 +#: actions/designadminpanel.php:122 actions/editapplication.php:118 +#: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 #, php-format msgid "" @@ -305,11 +364,11 @@ msgid "Two user ids or screen_names must be supplied." msgstr "" "Мора да бидат наведени два кориснички идентификатора (ID) или две имиња." -#: actions/apifriendshipsshow.php:135 +#: actions/apifriendshipsshow.php:134 msgid "Could not determine source user." msgstr "Не можев да го утврдам целниот корисник." -#: actions/apifriendshipsshow.php:143 +#: actions/apifriendshipsshow.php:142 msgid "Could not find target user." msgstr "Не можев да го пронајдам целниот корисник." @@ -331,7 +390,8 @@ msgstr "Тој прекар е во употреба. Одберете друг. msgid "Not a valid nickname." msgstr "Неправилен прекар." -#: actions/apigroupcreate.php:196 actions/editgroup.php:195 +#: actions/apigroupcreate.php:196 actions/editapplication.php:215 +#: actions/editgroup.php:195 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:217 msgid "Homepage is not a valid URL." @@ -343,7 +403,8 @@ msgstr "Главната страница не е важечка URL-адрес msgid "Full name is too long (max 255 chars)." msgstr "Целото име е предолго (максимум 255 знаци)" -#: actions/apigroupcreate.php:213 +#: actions/apigroupcreate.php:213 actions/editapplication.php:190 +#: actions/newapplication.php:172 #, php-format msgid "Description is too long (max %d chars)." msgstr "Описот е предолг (дозволено е највеќе %d знаци)." @@ -379,7 +440,7 @@ msgstr "Алијасот не може да биде ист како прека #: actions/apigroupismember.php:95 actions/apigroupjoin.php:104 #: actions/apigroupleave.php:104 actions/apigroupmembership.php:91 -#: actions/apigroupshow.php:90 actions/apitimelinegroup.php:91 +#: actions/apigroupshow.php:82 actions/apitimelinegroup.php:91 msgid "Group not found!" msgstr "Групата не е пронајдена!" @@ -420,6 +481,115 @@ msgstr "%s групи" msgid "groups on %s" msgstr "групи на %s" +#: actions/apioauthauthorize.php:101 +msgid "No oauth_token parameter provided." +msgstr "Нема наведено oauth_token параметар." + +#: actions/apioauthauthorize.php:106 +msgid "Invalid token." +msgstr "Погрешен жетон." + +#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 +#: actions/deletenotice.php:157 actions/disfavor.php:74 +#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54 +#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupunblock.php:66 actions/imsettings.php:206 +#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 +#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 +#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135 +#: actions/othersettings.php:145 actions/passwordsettings.php:138 +#: actions/profilesettings.php:194 actions/recoverpassword.php:337 +#: actions/register.php:165 actions/remotesubscribe.php:77 +#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 +#: actions/subscribe.php:86 actions/tagother.php:166 +#: 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/apioauthauthorize.php:135 +msgid "Invalid nickname / password!" +msgstr "Погрешен прекар / лозинка!" + +#: actions/apioauthauthorize.php:159 +msgid "Database error deleting OAuth application user." +msgstr "Грешка при бришењето на корисникот на OAuth-програмот." + +#: actions/apioauthauthorize.php:185 +msgid "Database error inserting OAuth application user." +msgstr "" +"Грешка во базата на податоци при вметнувањето на корисникот на OAuth-" +"програмот." + +#: actions/apioauthauthorize.php:214 +#, php-format +msgid "" +"The request token %s has been authorized. Please exchange it for an access " +"token." +msgstr "Жетонот на барањето %s е одобрен. Заменете го со жетон за пристап." + +#: actions/apioauthauthorize.php:227 +#, php-format +msgid "The request token %s has been denied and revoked." +msgstr "Жетонот на барањето %s е одбиен и поништен." + +#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 +#: actions/designadminpanel.php:103 actions/editapplication.php:139 +#: actions/emailsettings.php:256 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/newapplication.php:121 +#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 +#: actions/smssettings.php:248 lib/designsettings.php:304 +msgid "Unexpected form submission." +msgstr "Неочекувано поднесување на образец." + +#: actions/apioauthauthorize.php:259 +msgid "An application would like to connect to your account" +msgstr "Има програм кој сака да се поврзе со Вашата сметка" + +#: actions/apioauthauthorize.php:276 +msgid "Allow or deny access" +msgstr "Дозволи или одбиј пристап" + +#: actions/apioauthauthorize.php:292 +#, php-format +msgid "" +"The application %1$s by %2$s would like " +"the ability to %3$s your %4$s account data. You should only " +"give access to your %4$s account to third parties you trust." +msgstr "" +"Програмот %1$s од %2$s би сакал да може да " +"%3$s податоците за Вашата %4$s сметка. Треба да дозволувате " +"пристап до Вашата %4$s сметка само на трети страни на кои им верувате." + +#: actions/apioauthauthorize.php:310 lib/action.php:441 +msgid "Account" +msgstr "Сметка" + +#: actions/apioauthauthorize.php:313 actions/login.php:230 +#: actions/profilesettings.php:106 actions/register.php:424 +#: actions/showgroup.php:236 actions/tagother.php:94 +#: actions/userauthorization.php:145 lib/groupeditform.php:152 +#: lib/userprofile.php:131 +msgid "Nickname" +msgstr "Прекар" + +#: actions/apioauthauthorize.php:316 actions/login.php:233 +#: actions/register.php:429 lib/accountsettingsaction.php:116 +msgid "Password" +msgstr "Лозинка" + +#: actions/apioauthauthorize.php:328 +msgid "Deny" +msgstr "Одбиј" + +#: actions/apioauthauthorize.php:334 +msgid "Allow" +msgstr "Дозволи" + +#: actions/apioauthauthorize.php:351 +msgid "Allow or deny access to your account information." +msgstr "Дозволете или одбијте пристап до податоците за Вашата сметка." + #: actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." msgstr "Методот бара POST или DELETE." @@ -449,17 +619,17 @@ msgstr "Статусот е избришан." msgid "No status with that ID found." msgstr "Нема пронајдено статус со тој ID." -#: actions/apistatusesupdate.php:157 actions/newnotice.php:155 +#: actions/apistatusesupdate.php:161 actions/newnotice.php:155 #: lib/mailhandler.php:60 #, php-format msgid "That's too long. Max notice size is %d chars." msgstr "Ова е предолго. Максималната дозволена должина изнесува %d знаци." -#: actions/apistatusesupdate.php:198 +#: actions/apistatusesupdate.php:202 msgid "Not found" msgstr "Не е пронајдено" -#: actions/apistatusesupdate.php:221 actions/newnotice.php:178 +#: actions/apistatusesupdate.php:225 actions/newnotice.php:178 #, php-format msgid "Max notice size is %d chars, including attachment URL." msgstr "" @@ -475,7 +645,7 @@ msgstr "Неподдржан формат." msgid "%1$s / Favorites from %2$s" msgstr "%1$s / Омилени од %2$s" -#: actions/apitimelinefavorites.php:120 +#: actions/apitimelinefavorites.php:117 #, php-format msgid "%1$s updates favorited by %2$s / %2$s." msgstr "Подновувања на %1$s омилени на %2$s / %2$s." @@ -486,7 +656,7 @@ msgstr "Подновувања на %1$s омилени на %2$s / %2$s." msgid "%s timeline" msgstr "Историја на %s" -#: actions/apitimelinegroup.php:117 actions/apitimelineuser.php:126 +#: actions/apitimelinegroup.php:114 actions/apitimelineuser.php:126 #: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" @@ -502,27 +672,22 @@ msgstr "%1$s / Подновувања кои споменуваат %2$s" msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "%1$s подновувања коишто се одговор на подновувањата од %2$s / %3$s." -#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "Јавна историја на %s" -#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "%s подновуввања од сите!" -#: actions/apitimelineretweetedbyme.php:112 -#, php-format -msgid "Repeated by %s" -msgstr "Повторено од %s" - #: actions/apitimelineretweetedtome.php:111 #, php-format msgid "Repeated to %s" msgstr "Повторено за %s" -#: actions/apitimelineretweetsofme.php:112 +#: actions/apitimelineretweetsofme.php:114 #, php-format msgid "Repeats of %s" msgstr "Повторувања на %s" @@ -532,7 +697,7 @@ msgstr "Повторувања на %s" msgid "Notices tagged with %s" msgstr "Забелешки означени со %s" -#: actions/apitimelinetag.php:108 actions/tagrss.php:64 +#: actions/apitimelinetag.php:104 actions/tagrss.php:64 #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Подновувањата се означени со %1$s на %2$s!" @@ -594,8 +759,8 @@ msgstr "Оригинал" msgid "Preview" msgstr "Преглед" -#: actions/avatarsettings.php:149 lib/deleteuserform.php:66 -#: lib/noticelist.php:611 +#: actions/avatarsettings.php:149 actions/showapplication.php:252 +#: lib/deleteuserform.php:66 lib/noticelist.php:637 msgid "Delete" msgstr "Бриши" @@ -607,29 +772,6 @@ msgstr "Подигни" msgid "Crop" msgstr "Отсечи" -#: actions/avatarsettings.php:268 actions/deletenotice.php:157 -#: actions/disfavor.php:74 actions/emailsettings.php:238 actions/favor.php:75 -#: actions/geocode.php:50 actions/groupblock.php:66 actions/grouplogo.php:309 -#: actions/groupunblock.php:66 actions/imsettings.php:206 -#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 -#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 -#: actions/othersettings.php:145 actions/passwordsettings.php:138 -#: actions/profilesettings.php:194 actions/recoverpassword.php:337 -#: actions/register.php:165 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 -#: actions/subscribe.php:46 actions/tagother.php:166 -#: 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/avatarsettings.php:281 actions/designadminpanel.php:103 -#: actions/emailsettings.php:256 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/avatarsettings.php:328 msgid "Pick a square area of the image to be your avatar" msgstr "Одберете квадратна површина од сликата за аватар" @@ -669,8 +811,9 @@ msgstr "" "претплати на Вас во иднина, и нема да бидете известени ако имате @-одговори " "од корисникот." -#: actions/block.php:143 actions/deletenotice.php:145 -#: actions/deleteuser.php:147 actions/groupblock.php:178 +#: actions/block.php:143 actions/deleteapplication.php:153 +#: actions/deletenotice.php:145 actions/deleteuser.php:147 +#: actions/groupblock.php:178 msgid "No" msgstr "Не" @@ -678,13 +821,13 @@ msgstr "Не" msgid "Do not block this user" msgstr "Не го блокирај корисников" -#: actions/block.php:144 actions/deletenotice.php:146 -#: actions/deleteuser.php:148 actions/groupblock.php:179 -#: lib/repeatform.php:132 +#: actions/block.php:144 actions/deleteapplication.php:158 +#: actions/deletenotice.php:146 actions/deleteuser.php:148 +#: actions/groupblock.php:179 lib/repeatform.php:132 msgid "Yes" msgstr "Да" -#: actions/block.php:144 actions/groupmembers.php:346 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80 msgid "Block this user" msgstr "Блокирај го корисников" @@ -767,8 +910,8 @@ msgid "Couldn't delete email confirmation." msgstr "Не можев да ја избришам потврдата по е-пошта." #: actions/confirmaddress.php:144 -msgid "Confirm Address" -msgstr "Потврди ја адресата" +msgid "Confirm address" +msgstr "Потврди адреса" #: actions/confirmaddress.php:159 #, php-format @@ -784,10 +927,51 @@ msgstr "Разговор" msgid "Notices" msgstr "Забелешки" +#: actions/deleteapplication.php:63 +msgid "You must be logged in to delete an application." +msgstr "Мора да сте најавени за да можете да избришете програм." + +#: actions/deleteapplication.php:71 +msgid "Application not found." +msgstr "Програмот не е пронајден." + +#: actions/deleteapplication.php:78 actions/editapplication.php:77 +#: actions/showapplication.php:94 +msgid "You are not the owner of this application." +msgstr "Не сте сопственик на овој програм." + +#: actions/deleteapplication.php:102 actions/editapplication.php:127 +#: actions/newapplication.php:110 actions/showapplication.php:118 +#: lib/action.php:1197 +msgid "There was a problem with your session token." +msgstr "Се појави проблем со Вашиот сесиски жетон." + +#: actions/deleteapplication.php:123 actions/deleteapplication.php:147 +msgid "Delete application" +msgstr "Избриши програм" + +#: actions/deleteapplication.php:149 +msgid "" +"Are you sure you want to delete this application? This will clear all data " +"about the application from the database, including all existing user " +"connections." +msgstr "" +"Дали се сигурни дека сакате да го избришете овој програм? Ова воедно ќе ги " +"избрише сите податоци за програмот од базата, вклучувајќи ги сите постоечки " +"поврзувања." + +#: actions/deleteapplication.php:156 +msgid "Do not delete this application" +msgstr "Не го бриши овој програм" + +#: actions/deleteapplication.php:160 +msgid "Delete this application" +msgstr "Избриши го програмов" + #: 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/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 #: lib/adminpanelaction.php:72 lib/profileformaction.php:63 #: lib/settingsaction.php:72 @@ -818,7 +1002,7 @@ msgstr "Дали сте сигурни дека сакате да ја избр msgid "Do not delete this notice" msgstr "Не ја бриши оваа забелешка" -#: actions/deletenotice.php:146 lib/noticelist.php:611 +#: actions/deletenotice.php:146 lib/noticelist.php:637 msgid "Delete this notice" msgstr "Бриши ја оваа забелешка" @@ -950,16 +1134,6 @@ msgstr "Врати основно-зададени нагодувања" msgid "Reset back to default" msgstr "Врати по основно" -#: actions/designadminpanel.php:586 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 -#: actions/pathsadminpanel.php:324 actions/profilesettings.php:174 -#: actions/siteadminpanel.php:388 actions/smssettings.php:181 -#: actions/subscriptions.php:203 actions/tagother.php:154 -#: actions/useradminpanel.php:313 lib/designsettings.php:256 -#: lib/groupeditform.php:202 -msgid "Save" -msgstr "Зачувај" - #: actions/designadminpanel.php:587 lib/designsettings.php:257 msgid "Save design" msgstr "Зачувај изглед" @@ -972,9 +1146,75 @@ msgstr "Оваа забелешка не Ви е омилена!" msgid "Add to favorites" msgstr "Додај во омилени" -#: actions/doc.php:69 -msgid "No such document." -msgstr "Нема таков документ." +#: actions/doc.php:158 +#, php-format +msgid "No such document \"%s\"" +msgstr "Нема документ со наслов „%s“" + +#: actions/editapplication.php:54 +msgid "Edit Application" +msgstr "Уреди програм" + +#: actions/editapplication.php:66 +msgid "You must be logged in to edit an application." +msgstr "Мора да сте најавени за да можете да уредувате програми." + +#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:166 +#: actions/showapplication.php:87 +msgid "No such application." +msgstr "Нема таков програм." + +#: actions/editapplication.php:161 +msgid "Use this form to edit your application." +msgstr "Образецов служи за уредување на програмот." + +#: actions/editapplication.php:177 actions/newapplication.php:159 +msgid "Name is required." +msgstr "Треба име." + +#: actions/editapplication.php:180 actions/newapplication.php:165 +msgid "Name is too long (max 255 chars)." +msgstr "Името е предолго (максимум 255 знаци)." + +#: actions/editapplication.php:183 actions/newapplication.php:162 +msgid "Name already in use. Try another one." +msgstr "Тоа име е во употреба. Одберете друго." + +#: actions/editapplication.php:186 actions/newapplication.php:168 +msgid "Description is required." +msgstr "Треба опис." + +#: actions/editapplication.php:194 +msgid "Source URL is too long." +msgstr "Изворната URL-адреса е предолга." + +#: actions/editapplication.php:200 actions/newapplication.php:185 +msgid "Source URL is not valid." +msgstr "Изворната URL-адреса е неважечка." + +#: actions/editapplication.php:203 actions/newapplication.php:188 +msgid "Organization is required." +msgstr "Треба организација." + +#: actions/editapplication.php:206 actions/newapplication.php:191 +msgid "Organization is too long (max 255 chars)." +msgstr "Организацијата е предолга (максимумот е 255 знаци)." + +#: actions/editapplication.php:209 actions/newapplication.php:194 +msgid "Organization homepage is required." +msgstr "Треба домашна страница на организацијата." + +#: actions/editapplication.php:218 actions/newapplication.php:206 +msgid "Callback is too long." +msgstr "Повикувањето е предолго." + +#: actions/editapplication.php:225 actions/newapplication.php:215 +msgid "Callback URL is not valid." +msgstr "URL-адресата за повикување е неважечка." + +#: actions/editapplication.php:258 +msgid "Could not update application." +msgstr "Не можев да го подновам програмот." #: actions/editgroup.php:56 #, php-format @@ -1003,7 +1243,7 @@ msgstr "описот е предолг (максимум %d знаци)" msgid "Could not update group." msgstr "Не можев да ја подновам групата." -#: actions/editgroup.php:259 classes/User_group.php:390 +#: actions/editgroup.php:259 classes/User_group.php:433 msgid "Could not create aliases." msgstr "Не можеше да се создадат алијаси." @@ -1044,7 +1284,8 @@ msgstr "" "сандачето за спам!). Во писмото ќе следат понатамошни напатствија." #: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 +#: actions/smssettings.php:126 lib/applicationeditform.php:331 +#: lib/applicationeditform.php:332 msgid "Cancel" msgstr "Откажи" @@ -1127,7 +1368,7 @@ msgid "Cannot normalize that email address" msgstr "Неможам да ја нормализирам таа е-поштенска адреса" #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:157 +#: actions/siteadminpanel.php:143 msgid "Not a valid email address." msgstr "Неправилна адреса за е-пошта." @@ -1139,7 +1380,7 @@ msgstr "Оваа е-поштенска адреса е веќе Ваша." msgid "That email address already belongs to another user." msgstr "Таа е-поштенска адреса е веќе зафатена од друг корисник." -#: actions/emailsettings.php:353 actions/imsettings.php:317 +#: actions/emailsettings.php:353 actions/imsettings.php:319 #: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." msgstr "Кодот за потврда не може да се внесе." @@ -1201,7 +1442,7 @@ msgstr "Оваа белешка е веќе омилена!" msgid "Disfavor favorite" msgstr "Тргни од омилени" -#: actions/favorited.php:65 lib/popularnoticesection.php:88 +#: actions/favorited.php:65 lib/popularnoticesection.php:91 #: lib/publicgroupnav.php:93 msgid "Popular notices" msgstr "Популарни забелешки" @@ -1349,7 +1590,7 @@ msgstr "Корисникот е веќе блокиран од оваа груп msgid "User is not a member of group." msgstr "Корисникот не членува во групата." -#: actions/groupblock.php:136 actions/groupmembers.php:314 +#: actions/groupblock.php:136 actions/groupmembers.php:316 msgid "Block user from group" msgstr "Блокирај корисник од група" @@ -1449,23 +1690,23 @@ msgstr "Членови на групата %1$s, стр. %2$d" msgid "A list of the users in this group." msgstr "Листа на корисниците на овааг група." -#: actions/groupmembers.php:175 lib/action.php:442 lib/groupnav.php:107 +#: actions/groupmembers.php:175 lib/action.php:448 lib/groupnav.php:107 msgid "Admin" msgstr "Администратор" -#: actions/groupmembers.php:346 lib/blockform.php:69 +#: actions/groupmembers.php:348 lib/blockform.php:69 msgid "Block" msgstr "Блокирај" -#: actions/groupmembers.php:441 +#: actions/groupmembers.php:443 msgid "Make user an admin of the group" msgstr "Направи го корисникот администратор на групата" -#: actions/groupmembers.php:473 +#: actions/groupmembers.php:475 msgid "Make Admin" msgstr "Направи го/ја администратор" -#: actions/groupmembers.php:473 +#: actions/groupmembers.php:475 msgid "Make this user an admin" msgstr "Направи го корисникот администратор" @@ -1646,6 +1887,11 @@ msgstr "" msgid "That is not your Jabber ID." msgstr "Ова не е Вашиот Jabber ID." +#: actions/inbox.php:59 +#, php-format +msgid "Inbox for %1$s - page %2$d" +msgstr "Приемно сандаче за %1$s - стр. %2$d" + #: actions/inbox.php:62 #, php-format msgid "Inbox for %s" @@ -1730,7 +1976,7 @@ msgstr "Лична порака" msgid "Optionally add a personal message to the invitation." msgstr "Можете да додадете и лична порака во поканата." -#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:237 +#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:236 msgid "Send" msgstr "Испрати" @@ -1830,7 +2076,7 @@ msgstr "Неточно корисничко име или лозинка" msgid "Error setting user. You are probably not authorized." msgstr "Грешка при поставувањето на корисникот. Веројатно не се заверени." -#: actions/login.php:188 actions/login.php:241 lib/action.php:460 +#: actions/login.php:188 actions/login.php:241 lib/action.php:466 #: lib/logingroupnav.php:79 msgid "Login" msgstr "Најава" @@ -1839,17 +2085,6 @@ msgstr "Најава" msgid "Login to site" msgstr "Најавете се" -#: actions/login.php:230 actions/profilesettings.php:106 -#: actions/register.php:424 actions/showgroup.php:236 actions/tagother.php:94 -#: lib/groupeditform.php:152 lib/userprofile.php:131 -msgid "Nickname" -msgstr "Прекар" - -#: actions/login.php:233 actions/register.php:429 -#: lib/accountsettingsaction.php:116 -msgid "Password" -msgstr "Лозинка" - #: actions/login.php:236 actions/register.php:478 msgid "Remember me" msgstr "Запамети ме" @@ -1857,7 +2092,8 @@ msgstr "Запамети ме" #: actions/login.php:237 actions/register.php:480 msgid "Automatically login in the future; not for shared computers!" msgstr "" -"Следниот пат најавете се автоматски; не за компјутери кои ги делите со други!" +"Следниот пат најавете се автоматски; не е за компјутери кои ги делите со " +"други!" #: actions/login.php:247 msgid "Lost or forgotten password?" @@ -1880,21 +2116,21 @@ msgstr "" "Најавете се со Вашето корисничко име и лозинка. Сè уште немате корисничко " "име? [Регистрирајте](%%action.register%%) нова сметка." -#: actions/makeadmin.php:91 +#: actions/makeadmin.php:92 msgid "Only an admin can make another user an admin." msgstr "Само администратор може да направи друг корисник администратор." -#: actions/makeadmin.php:95 +#: actions/makeadmin.php:96 #, php-format msgid "%1$s is already an admin for group \"%2$s\"." msgstr "%1$s веќе е администратор на групата „%2$s“." -#: actions/makeadmin.php:132 +#: actions/makeadmin.php:133 #, php-format msgid "Can't get membership record for %1$s in group %2$s." msgstr "Не можам да добијам евиденција за членство на %1$s во групата %2$s." -#: actions/makeadmin.php:145 +#: actions/makeadmin.php:146 #, php-format msgid "Can't make %1$s an admin for group %2$s." msgstr "Не можам да го направам корисникот %1$s администратор на групата %2$s." @@ -1903,6 +2139,26 @@ msgstr "Не можам да го направам корисникот %1$s а msgid "No current status" msgstr "Нема тековен статус" +#: actions/newapplication.php:52 +msgid "New Application" +msgstr "Нов програм" + +#: actions/newapplication.php:64 +msgid "You must be logged in to register an application." +msgstr "Мора да сте најавени за да можете да регистрирате програм." + +#: actions/newapplication.php:143 +msgid "Use this form to register a new application." +msgstr "Овој образец служи за регистрирање на нов програм." + +#: actions/newapplication.php:176 +msgid "Source URL is required." +msgstr "Треба изворна URL-адреса." + +#: actions/newapplication.php:258 actions/newapplication.php:267 +msgid "Could not create application." +msgstr "Не можеше да се создаде програмот." + #: actions/newgroup.php:53 msgid "New group" msgstr "Нова група" @@ -2018,6 +2274,49 @@ msgstr "Подбуцнувањето е испратено" msgid "Nudge sent!" msgstr "Подбуцнувањето е испратено!" +#: actions/oauthappssettings.php:59 +msgid "You must be logged in to list your applications." +msgstr "Мора да сте најавени за да можете да ги наведете програмите." + +#: actions/oauthappssettings.php:74 +msgid "OAuth applications" +msgstr "OAuth програми" + +#: actions/oauthappssettings.php:85 +msgid "Applications you have registered" +msgstr "Програми што ги имате регистрирано" + +#: actions/oauthappssettings.php:135 +#, php-format +msgid "You have not registered any applications yet." +msgstr "Сè уште немате регистрирано ниеден програм," + +#: actions/oauthconnectionssettings.php:72 +msgid "Connected applications" +msgstr "Поврзани програми" + +#: actions/oauthconnectionssettings.php:83 +msgid "You have allowed the following applications to access you account." +msgstr "Им имате дозволено пристап до Вашата сметка на следните програми." + +#: actions/oauthconnectionssettings.php:175 +msgid "You are not a user of that application." +msgstr "Не сте корисник на тој програм." + +#: actions/oauthconnectionssettings.php:186 +msgid "Unable to revoke access for app: " +msgstr "Не можам да му го одземам пристапот на програмот: " + +#: actions/oauthconnectionssettings.php:198 +#, php-format +msgid "You have not authorized any applications to use your account." +msgstr "Му немате дозволено пристап до Вашата сметка на ниеден програм." + +#: actions/oauthconnectionssettings.php:211 +msgid "Developers can edit the registration settings for their applications " +msgstr "" +"Развивачите можат да ги нагодат регистрациските поставки за нивните програми " + #: actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" msgstr "Забелешката нема профил" @@ -2035,8 +2334,8 @@ msgstr "тип на содржини " msgid "Only " msgstr "Само " -#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1033 -#: lib/api.php:1061 lib/api.php:1171 +#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 +#: lib/api.php:1068 lib/api.php:1177 msgid "Not a supported data format." msgstr "Ова не е поддржан формат на податотека." @@ -2049,7 +2348,7 @@ msgid "Notice Search" msgstr "Пребарување на забелешки" #: actions/othersettings.php:60 -msgid "Other Settings" +msgid "Other settings" msgstr "Други нагодувања" #: actions/othersettings.php:71 @@ -2100,6 +2399,11 @@ msgstr "Назначен е неважечки најавен жетон." msgid "Login token expired." msgstr "Најавниот жетон е истечен." +#: actions/outbox.php:58 +#, php-format +msgid "Outbox for %1$s - page %2$d" +msgstr "Излезно сандаче за %1$s - стр. %2$d" + #: actions/outbox.php:61 #, php-format msgid "Outbox for %s" @@ -2108,7 +2412,7 @@ msgstr "Излезно сандаче за %s" #: actions/outbox.php:116 msgid "This is your outbox, which lists private messages you have sent." msgstr "" -"Ова е вашето излезно сандче, во кое се наведени приватните пораки кои ги " +"Ова е Вашето излезно сандче, во кое се наведени приватните пораки кои ги " "имате испратено." #: actions/passwordsettings.php:58 @@ -2172,7 +2476,7 @@ msgstr "Не можам да ја зачувам новата лозинка." msgid "Password saved." msgstr "Лозинката е зачувана." -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:326 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:331 msgid "Paths" msgstr "Патеки" @@ -2180,132 +2484,148 @@ msgstr "Патеки" msgid "Path and server settings for this StatusNet site." msgstr "Нагодувања за патеки и сервери за оваа StatusNet веб-страница." -#: actions/pathsadminpanel.php:140 +#: actions/pathsadminpanel.php:157 #, php-format msgid "Theme directory not readable: %s" msgstr "Директориумот на темата е нечитлив: %s" -#: actions/pathsadminpanel.php:146 +#: actions/pathsadminpanel.php:163 #, php-format msgid "Avatar directory not writable: %s" msgstr "Директориумот на аватарот е недостапен за пишување: %s" -#: actions/pathsadminpanel.php:152 +#: actions/pathsadminpanel.php:169 #, php-format msgid "Background directory not writable: %s" msgstr "Директориумот на позадината е нечитлив: %s" -#: actions/pathsadminpanel.php:160 +#: actions/pathsadminpanel.php:177 #, php-format msgid "Locales directory not readable: %s" msgstr "Директориумот на локалите е нечитлив: %s" -#: actions/pathsadminpanel.php:166 +#: actions/pathsadminpanel.php:183 msgid "Invalid SSL server. The maximum length is 255 characters." msgstr "Неважечки SSL-сервер. Дозволени се најмногу 255 знаци" -#: actions/pathsadminpanel.php:217 actions/siteadminpanel.php:58 +#: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58 #: lib/adminpanelaction.php:311 msgid "Site" msgstr "Веб-страница" -#: actions/pathsadminpanel.php:221 +#: actions/pathsadminpanel.php:238 +msgid "Server" +msgstr "Опслужувач" + +#: actions/pathsadminpanel.php:238 +msgid "Site's server hostname." +msgstr "Име на домаќинот на серверот на веб-страницата" + +#: actions/pathsadminpanel.php:242 msgid "Path" msgstr "Патека" -#: actions/pathsadminpanel.php:221 +#: actions/pathsadminpanel.php:242 msgid "Site path" msgstr "Патека на веб-страницата" -#: actions/pathsadminpanel.php:225 +#: actions/pathsadminpanel.php:246 msgid "Path to locales" msgstr "Патека до локалите" -#: actions/pathsadminpanel.php:225 +#: actions/pathsadminpanel.php:246 msgid "Directory path to locales" msgstr "Патека до директориумот на локалите" -#: actions/pathsadminpanel.php:232 +#: actions/pathsadminpanel.php:250 +msgid "Fancy URLs" +msgstr "Интересни URL-адреси" + +#: actions/pathsadminpanel.php:252 +msgid "Use fancy (more readable and memorable) URLs?" +msgstr "Да користам интересни (почитливи и повпечатливи) URL-адреси?" + +#: actions/pathsadminpanel.php:259 msgid "Theme" msgstr "Тема" -#: actions/pathsadminpanel.php:237 +#: actions/pathsadminpanel.php:264 msgid "Theme server" msgstr "Сервер на темата" -#: actions/pathsadminpanel.php:241 +#: actions/pathsadminpanel.php:268 msgid "Theme path" msgstr "Патека до темата" -#: actions/pathsadminpanel.php:245 +#: actions/pathsadminpanel.php:272 msgid "Theme directory" msgstr "Директориум на темата" -#: actions/pathsadminpanel.php:252 +#: actions/pathsadminpanel.php:279 msgid "Avatars" msgstr "Аватари" -#: actions/pathsadminpanel.php:257 +#: actions/pathsadminpanel.php:284 msgid "Avatar server" msgstr "Сервер на аватарот" -#: actions/pathsadminpanel.php:261 +#: actions/pathsadminpanel.php:288 msgid "Avatar path" msgstr "Патека на аватарот" -#: actions/pathsadminpanel.php:265 +#: actions/pathsadminpanel.php:292 msgid "Avatar directory" msgstr "Директориум на аватарот" -#: actions/pathsadminpanel.php:274 +#: actions/pathsadminpanel.php:301 msgid "Backgrounds" msgstr "Позадини" -#: actions/pathsadminpanel.php:278 +#: actions/pathsadminpanel.php:305 msgid "Background server" msgstr "Сервер на позаднината" -#: actions/pathsadminpanel.php:282 +#: actions/pathsadminpanel.php:309 msgid "Background path" msgstr "Патека до позадината" -#: actions/pathsadminpanel.php:286 +#: actions/pathsadminpanel.php:313 msgid "Background directory" msgstr "Директориум на позадината" -#: actions/pathsadminpanel.php:293 +#: actions/pathsadminpanel.php:320 msgid "SSL" msgstr "SSL" -#: actions/pathsadminpanel.php:296 actions/siteadminpanel.php:346 +#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 msgid "Never" msgstr "Никогаш" -#: actions/pathsadminpanel.php:297 +#: actions/pathsadminpanel.php:324 msgid "Sometimes" msgstr "Понекогаш" -#: actions/pathsadminpanel.php:298 +#: actions/pathsadminpanel.php:325 msgid "Always" msgstr "Секогаш" -#: actions/pathsadminpanel.php:302 +#: actions/pathsadminpanel.php:329 msgid "Use SSL" msgstr "Користи SSL" -#: actions/pathsadminpanel.php:303 +#: actions/pathsadminpanel.php:330 msgid "When to use SSL" msgstr "Кога се користи SSL" -#: actions/pathsadminpanel.php:308 +#: actions/pathsadminpanel.php:335 msgid "SSL server" msgstr "SSL-сервер" -#: actions/pathsadminpanel.php:309 +#: actions/pathsadminpanel.php:336 msgid "Server to direct SSL requests to" msgstr "Сервер, кому ќе му се испраќаат SSL-барања" -#: actions/pathsadminpanel.php:325 +#: actions/pathsadminpanel.php:352 msgid "Save paths" msgstr "Зачувај патеки" @@ -2370,7 +2690,7 @@ msgid "Full name" msgstr "Цело име" #: actions/profilesettings.php:115 actions/register.php:453 -#: lib/groupeditform.php:161 +#: lib/applicationeditform.php:228 lib/groupeditform.php:161 msgid "Homepage" msgstr "Домашна страница" @@ -2393,7 +2713,7 @@ msgstr "Биографија" #: actions/profilesettings.php:132 actions/register.php:471 #: actions/showgroup.php:256 actions/tagother.php:112 -#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:164 msgid "Location" msgstr "Локација" @@ -2419,7 +2739,7 @@ msgstr "" "Ознаки за Вас самите (букви, бројки, -, . и _), одделени со запирка или " "празно место" -#: actions/profilesettings.php:151 actions/siteadminpanel.php:294 +#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 msgid "Language" msgstr "Јазик" @@ -2447,7 +2767,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "Биографијата е преголема (највеќе до %d знаци)." -#: actions/profilesettings.php:235 actions/siteadminpanel.php:164 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 msgid "Timezone not selected." msgstr "Не е избрана часовна зона." @@ -2460,23 +2780,23 @@ msgstr "Јазикот е предлог (највеќе до 50 знаци)." msgid "Invalid tag: \"%s\"" msgstr "Неважечка ознака: „%s“" -#: actions/profilesettings.php:302 +#: actions/profilesettings.php:306 msgid "Couldn't update user for autosubscribe." msgstr "Не можев да го подновам корисникот за автопретплата." -#: actions/profilesettings.php:359 +#: actions/profilesettings.php:363 msgid "Couldn't save location prefs." msgstr "Не можев да ги зачувам нагодувањата за локација" -#: actions/profilesettings.php:371 +#: actions/profilesettings.php:375 msgid "Couldn't save profile." msgstr "Не можам да го зачувам профилот." -#: actions/profilesettings.php:379 +#: actions/profilesettings.php:383 msgid "Couldn't save tags." msgstr "Не можев да ги зачувам ознаките." -#: actions/profilesettings.php:387 lib/adminpanelaction.php:137 +#: actions/profilesettings.php:391 lib/adminpanelaction.php:137 msgid "Settings saved." msgstr "Нагодувањата се зачувани" @@ -2498,19 +2818,19 @@ msgstr "Јавна историја, стр. %d" msgid "Public timeline" msgstr "Јавна историја" -#: actions/public.php:151 +#: actions/public.php:159 msgid "Public Stream Feed (RSS 1.0)" msgstr "Канал на јавниот поток (RSS 1.0)" -#: actions/public.php:155 +#: actions/public.php:163 msgid "Public Stream Feed (RSS 2.0)" msgstr "Канал на јавниот поток (RSS 2.0)" -#: actions/public.php:159 +#: actions/public.php:167 msgid "Public Stream Feed (Atom)" msgstr "Канал на јавниот поток (Atom)" -#: actions/public.php:179 +#: actions/public.php:187 #, php-format msgid "" "This is the public timeline for %%site.name%% but no one has posted anything " @@ -2518,11 +2838,11 @@ msgid "" msgstr "" "Ова е јавната историја за %%site.name%%, но досега никој ништо нема објавено." -#: actions/public.php:182 +#: actions/public.php:190 msgid "Be the first to post!" msgstr "Создајте ја првата забелешка!" -#: actions/public.php:186 +#: actions/public.php:194 #, php-format msgid "" "Why not [register an account](%%action.register%%) and be the first to post!" @@ -2530,7 +2850,7 @@ msgstr "" "Зошто не [регистрирате сметка](%%action.register%%) и станете првиот " "објавувач!" -#: actions/public.php:233 +#: actions/public.php:241 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2544,7 +2864,7 @@ msgstr "" "споделувате забелешки за себе со приајтелите, семејството и колегите! " "([Прочитајте повеќе](%%doc.help%%))" -#: actions/public.php:238 +#: actions/public.php:246 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2582,7 +2902,7 @@ msgstr "" "Зошто не [регистрирате сметка](%%action.register%%) и станете прв што ќе " "објави!" -#: actions/publictagcloud.php:131 +#: actions/publictagcloud.php:134 msgid "Tag cloud" msgstr "Облак од ознаки" @@ -2724,7 +3044,7 @@ msgstr "Жалиме, неважечки код за поканата." msgid "Registration successful" msgstr "Регистрацијата е успешна" -#: actions/register.php:114 actions/register.php:503 lib/action.php:457 +#: actions/register.php:114 actions/register.php:503 lib/action.php:463 #: lib/logingroupnav.php:85 msgid "Register" msgstr "Регистрирај се" @@ -2768,7 +3088,7 @@ msgid "Same as password above. Required." msgstr "Исто што и лозинката погоре. Задолжително поле." #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:270 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 msgid "Email" msgstr "Е-пошта" @@ -2875,7 +3195,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "URL на Вашиот профил на друга компатибилна служба за микроблогирање." #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:365 +#: lib/userprofile.php:368 msgid "Subscribe" msgstr "Претплати се" @@ -2913,7 +3233,7 @@ msgstr "Не можете да повторувате сопствена заб msgid "You already repeated that notice." msgstr "Веќе ја имате повторено таа забелешка." -#: actions/repeat.php:114 lib/noticelist.php:629 +#: actions/repeat.php:114 lib/noticelist.php:656 msgid "Repeated" msgstr "Повторено" @@ -2927,6 +3247,11 @@ msgstr "Повторено!" msgid "Replies to %s" msgstr "Одговори испратени до %s" +#: actions/replies.php:127 +#, php-format +msgid "Replies to %1$s, page %2$d" +msgstr "Одговори на %1$s, стр. %2$d" + #: actions/replies.php:144 #, php-format msgid "Replies feed for %s (RSS 1.0)" @@ -2974,6 +3299,10 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "Одговори на %1$s на %2$s!" +#: actions/rsd.php:146 actions/version.php:157 +msgid "StatusNet" +msgstr "StatusNet" + #: actions/sandbox.php:65 actions/unsandbox.php:65 msgid "You cannot sandbox users on this site." msgstr "Не можете да ставате корисници во песочен режим на оваа веб-страница." @@ -2982,6 +3311,123 @@ msgstr "Не можете да ставате корисници во песоч msgid "User is already sandboxed." msgstr "Корисникот е веќе во песочен режим." +#: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:336 +msgid "Sessions" +msgstr "Сесии" + +#: actions/sessionsadminpanel.php:65 +msgid "Session settings for this StatusNet site." +msgstr "Нагодувања на сесиите за оваа StatusNet веб-страница." + +#: actions/sessionsadminpanel.php:175 +msgid "Handle sessions" +msgstr "Раководење со сесии" + +#: actions/sessionsadminpanel.php:177 +msgid "Whether to handle sessions ourselves." +msgstr "Дали самите да си раководиме со сесиите." + +#: actions/sessionsadminpanel.php:181 +msgid "Session debugging" +msgstr "Поправка на грешки во сесија" + +#: actions/sessionsadminpanel.php:183 +msgid "Turn on debugging output for sessions." +msgstr "Вклучи извод од поправка на грешки за сесии." + +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/useradminpanel.php:293 +msgid "Save site settings" +msgstr "Зачувај нагодувања на веб-страницата" + +#: actions/showapplication.php:82 +msgid "You must be logged in to view an application." +msgstr "Мора да сте најавени за да можете да го видите програмот." + +#: actions/showapplication.php:157 +msgid "Application profile" +msgstr "Профил на програмот" + +#: actions/showapplication.php:159 lib/applicationeditform.php:180 +msgid "Icon" +msgstr "Икона" + +#: actions/showapplication.php:169 actions/version.php:195 +#: lib/applicationeditform.php:195 +msgid "Name" +msgstr "Име" + +#: actions/showapplication.php:178 lib/applicationeditform.php:222 +msgid "Organization" +msgstr "Организација" + +#: actions/showapplication.php:187 actions/version.php:198 +#: lib/applicationeditform.php:209 lib/groupeditform.php:172 +msgid "Description" +msgstr "Опис" + +#: actions/showapplication.php:192 actions/showgroup.php:429 +#: lib/profileaction.php:174 +msgid "Statistics" +msgstr "Статистики" + +#: actions/showapplication.php:203 +#, php-format +msgid "Created by %1$s - %2$s access by default - %3$d users" +msgstr "Создадено од %1$s - основен пристап: %2$s - %3$d корисници" + +#: actions/showapplication.php:213 +msgid "Application actions" +msgstr "Дејства на програмот" + +#: actions/showapplication.php:236 +msgid "Reset key & secret" +msgstr "Клуч за промена и тајна" + +#: actions/showapplication.php:261 +msgid "Application info" +msgstr "Инфо за програмот" + +#: actions/showapplication.php:263 +msgid "Consumer key" +msgstr "Потрошувачки клуч" + +#: actions/showapplication.php:268 +msgid "Consumer secret" +msgstr "Потрошувачка тајна" + +#: actions/showapplication.php:273 +msgid "Request token URL" +msgstr "URL на жетонот на барањето" + +#: actions/showapplication.php:278 +msgid "Access token URL" +msgstr "URL на пристапниот жетон" + +#: actions/showapplication.php:283 +msgid "Authorize URL" +msgstr "Одобри URL" + +#: actions/showapplication.php:288 +msgid "" +"Note: We support HMAC-SHA1 signatures. We do not support the plaintext " +"signature method." +msgstr "" +"Напомена: Поддржуваме HMAC-SHA1 потписи. Не поддржуваме потпишување со прост " +"текст." + +#: actions/showapplication.php:309 +msgid "Are you sure you want to reset your consumer key and secret?" +msgstr "" +"Дали сте сигурни дека сакате да го смените вашиот кориснички клуч и тајната " +"фраза?" + +#: actions/showfavorites.php:79 +#, php-format +msgid "%1$s's favorite notices, page %2$d" +msgstr "Омилени забелешки на %1$s, стр. %2$d" + #: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "Не можев да ги вратам омилените забелешки." @@ -3039,17 +3485,22 @@ msgstr "Ова е начин да го споделите она што Ви с msgid "%s group" msgstr "Група %s" +#: actions/showgroup.php:84 +#, php-format +msgid "%1$s group, page %2$d" +msgstr "Група %1$s, стр. %2$d" + #: actions/showgroup.php:218 msgid "Group profile" msgstr "Профил на група" #: actions/showgroup.php:263 actions/tagother.php:118 -#: actions/userauthorization.php:167 lib/userprofile.php:177 +#: actions/userauthorization.php:175 lib/userprofile.php:177 msgid "URL" msgstr "URL" #: actions/showgroup.php:274 actions/tagother.php:128 -#: actions/userauthorization.php:179 lib/userprofile.php:194 +#: actions/userauthorization.php:187 lib/userprofile.php:194 msgid "Note" msgstr "Забелешка" @@ -3095,10 +3546,6 @@ msgstr "(Нема)" msgid "All members" msgstr "Сите членови" -#: actions/showgroup.php:429 lib/profileaction.php:174 -msgid "Statistics" -msgstr "Статистики" - #: actions/showgroup.php:432 msgid "Created" msgstr "Создадено" @@ -3163,6 +3610,11 @@ msgstr "Избришана забелешка" msgid " tagged %s" msgstr " означено со %s" +#: actions/showstream.php:79 +#, php-format +msgid "%1$s, page %2$d" +msgstr "%1$s, стр. %2$d" + #: actions/showstream.php:122 #, php-format msgid "Notice feed for %1$s tagged %2$s (RSS 1.0)" @@ -3188,12 +3640,12 @@ msgstr "Канал со забелешки за %s (Atom)" msgid "FOAF for %s" msgstr "FOAF за %s" -#: actions/showstream.php:191 +#: actions/showstream.php:200 #, php-format msgid "This is the timeline for %1$s but %2$s hasn't posted anything yet." msgstr "Ова е историјата за %1$s, но %2$s сè уште нема објавено ништо." -#: actions/showstream.php:196 +#: actions/showstream.php:205 msgid "" "Seen anything interesting recently? You haven't posted any notices yet, now " "would be a good time to start :)" @@ -3201,7 +3653,7 @@ msgstr "" "Имате видено нешто интересно во последно време? Сè уште немате објавено " "ниедна забелешка, но сега е добро време за да почнете :)" -#: actions/showstream.php:198 +#: actions/showstream.php:207 #, php-format msgid "" "You can try to nudge %1$s or [post something to his or her attention](%%%%" @@ -3210,7 +3662,7 @@ msgstr "" "Можете да го подбуцнете корисникот %1$s или [да објавите нешто што сакате да " "го прочита](%%%%action.newnotice%%%%?status_textarea=%2$s)." -#: actions/showstream.php:234 +#: actions/showstream.php:243 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3224,7 +3676,7 @@ msgstr "" "register%%%%) за да можете да ги следите забелешките на **%s** и многу " "повеќе! ([Прочитајте повеќе](%%%%doc.help%%%%))" -#: actions/showstream.php:239 +#: actions/showstream.php:248 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3235,7 +3687,7 @@ msgstr "" "(http://mk.wikipedia.org/wiki/Микроблогирање) базирана на слободната " "програмска алатка [StatusNet](http://status.net/). " -#: actions/showstream.php:313 +#: actions/showstream.php:305 #, php-format msgid "Repeat of %s" msgstr "Повторувања на %s" @@ -3252,203 +3704,149 @@ msgstr "Корисникот е веќе замолчен." msgid "Basic settings for this StatusNet site." msgstr "Основни нагодувања за оваа StatusNet веб-страница." -#: actions/siteadminpanel.php:146 +#: actions/siteadminpanel.php:132 msgid "Site name must have non-zero length." msgstr "Должината на името на веб-страницата не може да изнесува нула." -#: actions/siteadminpanel.php:154 +#: actions/siteadminpanel.php:140 msgid "You must have a valid contact email address." msgstr "Мора да имате важечка контактна е-поштенска адреса." -#: actions/siteadminpanel.php:172 +#: actions/siteadminpanel.php:158 #, php-format msgid "Unknown language \"%s\"." msgstr "Непознат јазик „%s“" -#: actions/siteadminpanel.php:179 +#: actions/siteadminpanel.php:165 msgid "Invalid snapshot report URL." msgstr "Неважечки URL за извештај од снимката." -#: actions/siteadminpanel.php:185 +#: actions/siteadminpanel.php:171 msgid "Invalid snapshot run value." msgstr "Неважечка вредност на пуштањето на снимката." -#: actions/siteadminpanel.php:191 +#: actions/siteadminpanel.php:177 msgid "Snapshot frequency must be a number." msgstr "Честотата на снимките мора да биде бројка." -#: actions/siteadminpanel.php:197 +#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "Минималното ограничување на текстот изнесува 140 знаци." -#: actions/siteadminpanel.php:203 +#: actions/siteadminpanel.php:189 msgid "Dupe limit must 1 or more seconds." msgstr "Ограничувањето на дуплирањето мора да изнесува барем 1 секунда." -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:239 msgid "General" msgstr "Општи" -#: actions/siteadminpanel.php:256 +#: actions/siteadminpanel.php:242 msgid "Site name" msgstr "Име на веб-страницата" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:243 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "Името на Вашата веб-страница, како на пр. „Микроблог на Вашафирма“" -#: actions/siteadminpanel.php:261 +#: actions/siteadminpanel.php:247 msgid "Brought by" msgstr "Овозможено од" -#: actions/siteadminpanel.php:262 +#: actions/siteadminpanel.php:248 msgid "Text used for credits link in footer of each page" msgstr "" "Текст за врската за наведување на авторите во долната колонцифра на секоја " "страница" -#: actions/siteadminpanel.php:266 +#: actions/siteadminpanel.php:252 msgid "Brought by URL" msgstr "URL-адреса на овозможувачот на услугите" -#: actions/siteadminpanel.php:267 +#: actions/siteadminpanel.php:253 msgid "URL used for credits link in footer of each page" msgstr "" "URL-адресата која е користи за врски за автори во долната колоцифра на " "секоја страница" -#: actions/siteadminpanel.php:271 +#: actions/siteadminpanel.php:257 msgid "Contact email address for your site" msgstr "Контактна е-пошта за Вашата веб-страница" -#: actions/siteadminpanel.php:277 +#: actions/siteadminpanel.php:263 msgid "Local" msgstr "Локално" -#: actions/siteadminpanel.php:288 +#: actions/siteadminpanel.php:274 msgid "Default timezone" msgstr "Основна часовна зона" -#: actions/siteadminpanel.php:289 +#: actions/siteadminpanel.php:275 msgid "Default timezone for the site; usually UTC." msgstr "Матична часовна зона за веб-страницата; обично UTC." -#: actions/siteadminpanel.php:295 +#: actions/siteadminpanel.php:281 msgid "Default site language" msgstr "Основен јазик" -#: actions/siteadminpanel.php:303 -msgid "URLs" -msgstr "URL-адреси" - -#: actions/siteadminpanel.php:306 -msgid "Server" -msgstr "Опслужувач" - -#: actions/siteadminpanel.php:306 -msgid "Site's server hostname." -msgstr "Име на домаќинот на серверот на веб-страницата" - -#: actions/siteadminpanel.php:310 -msgid "Fancy URLs" -msgstr "Интересни URL-адреси" - -#: actions/siteadminpanel.php:312 -msgid "Use fancy (more readable and memorable) URLs?" -msgstr "Да користам интересни (почитливи и повпечатливи) URL-адреси?" - -#: actions/siteadminpanel.php:318 -msgid "Access" -msgstr "Пристап" - -#: actions/siteadminpanel.php:321 -msgid "Private" -msgstr "Приватен" - -#: actions/siteadminpanel.php:323 -msgid "Prohibit anonymous users (not logged in) from viewing site?" -msgstr "" -"Да им забранам на анонимните (ненајавени) корисници да ја гледаат веб-" -"страницата?" - -#: actions/siteadminpanel.php:327 -msgid "Invite only" -msgstr "Само со покана" - -#: actions/siteadminpanel.php:329 -msgid "Make registration invitation only." -msgstr "Регистрирање само со покана." - -#: actions/siteadminpanel.php:333 -msgid "Closed" -msgstr "Затворен" - -#: actions/siteadminpanel.php:335 -msgid "Disable new registrations." -msgstr "Оневозможи нови регистрации." - -#: actions/siteadminpanel.php:341 +#: actions/siteadminpanel.php:289 msgid "Snapshots" msgstr "Снимки" -#: actions/siteadminpanel.php:344 +#: actions/siteadminpanel.php:292 msgid "Randomly during Web hit" msgstr "По случајност во текот на посета" -#: actions/siteadminpanel.php:345 +#: actions/siteadminpanel.php:293 msgid "In a scheduled job" msgstr "Во зададена задача" -#: actions/siteadminpanel.php:347 +#: actions/siteadminpanel.php:295 msgid "Data snapshots" msgstr "Снимки од податоци" -#: actions/siteadminpanel.php:348 +#: actions/siteadminpanel.php:296 msgid "When to send statistical data to status.net servers" msgstr "Кога да им се испраќаат статистички податоци на status.net серверите" -#: actions/siteadminpanel.php:353 +#: actions/siteadminpanel.php:301 msgid "Frequency" msgstr "Честота" -#: actions/siteadminpanel.php:354 +#: actions/siteadminpanel.php:302 msgid "Snapshots will be sent once every N web hits" msgstr "Ќе се испраќаат снимки на секои N посети" -#: actions/siteadminpanel.php:359 +#: actions/siteadminpanel.php:307 msgid "Report URL" msgstr "URL на извештајот" -#: actions/siteadminpanel.php:360 +#: actions/siteadminpanel.php:308 msgid "Snapshots will be sent to this URL" msgstr "Снимките ќе се испраќаат на оваа URL-адреса" -#: actions/siteadminpanel.php:367 +#: actions/siteadminpanel.php:315 msgid "Limits" msgstr "Ограничувања" -#: actions/siteadminpanel.php:370 +#: actions/siteadminpanel.php:318 msgid "Text limit" msgstr "Ограничување на текстот" -#: actions/siteadminpanel.php:370 +#: actions/siteadminpanel.php:318 msgid "Maximum number of characters for notices." msgstr "Максимален број на знаци за забелешки." -#: actions/siteadminpanel.php:374 +#: actions/siteadminpanel.php:322 msgid "Dupe limit" msgstr "Ограничување на дуплирањето" -#: actions/siteadminpanel.php:374 +#: actions/siteadminpanel.php:322 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" "Колку долго треба да почекаат корисниците (во секунди) за да можат повторно " "да го објават истото." -#: actions/siteadminpanel.php:388 actions/useradminpanel.php:313 -msgid "Save site settings" -msgstr "Зачувај нагодувања на веб-страницата" - #: actions/smssettings.php:58 msgid "SMS settings" msgstr "Нагодувања за СМС" @@ -3501,11 +3899,11 @@ msgstr "Нема телефонски број." #: actions/smssettings.php:311 msgid "No carrier selected." -msgstr "Нема избрано оператор." +msgstr "Немате избрано оператор." #: actions/smssettings.php:318 msgid "That is already your phone number." -msgstr "Ова и сега е вашиот телефонски број." +msgstr "Ова и сега е Вашиот телефонски број." #: actions/smssettings.php:321 msgid "That phone number already belongs to another user." @@ -3525,7 +3923,7 @@ msgstr "Ова е погрешен потврден број." #: actions/smssettings.php:405 msgid "That is not your phone number." -msgstr "Тоа не е вашиот телефонски број." +msgstr "Тоа не е Вашиот телефонски број." #: actions/smssettings.php:465 msgid "Mobile carrier" @@ -3552,15 +3950,26 @@ msgstr "Нема внесено код" msgid "You are not subscribed to that profile." msgstr "Не сте претплатени на тој профил." -#: actions/subedit.php:83 +#: actions/subedit.php:83 classes/Subscription.php:89 +#: classes/Subscription.php:116 msgid "Could not save subscription." msgstr "Не можев да ја зачувам претплатата." -#: actions/subscribe.php:55 -msgid "Not a local user." -msgstr "Не е локален корисник." +#: actions/subscribe.php:77 +msgid "This action only accepts POST requests." +msgstr "" -#: actions/subscribe.php:69 +#: actions/subscribe.php:107 +#, fuzzy +msgid "No such profile." +msgstr "Нема таква податотека." + +#: actions/subscribe.php:117 +#, fuzzy +msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." +msgstr "Не сте претплатени на тој профил." + +#: actions/subscribe.php:145 msgid "Subscribed" msgstr "Претплатено" @@ -3624,7 +4033,7 @@ msgstr "Ова се луѓето чии забелешки ги следите." msgid "These are the people whose notices %s listens to." msgstr "Ова се луѓето чии забелешки ги следи %s." -#: actions/subscriptions.php:121 +#: actions/subscriptions.php:126 #, php-format msgid "" "You're not listening to anyone's notices right now, try subscribing to " @@ -3639,19 +4048,24 @@ msgstr "" "(%%action.featured%%). Ако сте [корисник на Twitter](%%action.twittersettings" "%%), тука можете автоматски да се претплатите на луѓе кои таму ги следите." -#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#: actions/subscriptions.php:128 actions/subscriptions.php:132 #, php-format msgid "%s is not listening to anyone." msgstr "%s не следи никого." -#: actions/subscriptions.php:194 +#: actions/subscriptions.php:199 msgid "Jabber" msgstr "Jabber" -#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:204 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "СМС" +#: actions/tag.php:68 +#, php-format +msgid "Notices tagged with %1$s, page %2$d" +msgstr "Забелешки означени со %1$s, стр. %2$d" + #: actions/tag.php:86 #, php-format msgid "Notice feed for tag %s (RSS 1.0)" @@ -3680,7 +4094,8 @@ msgstr "Означи %s" msgid "User profile" msgstr "Кориснички профил" -#: actions/tagother.php:81 lib/userprofile.php:102 +#: actions/tagother.php:81 actions/userauthorization.php:132 +#: lib/userprofile.php:102 msgid "Photo" msgstr "Фото" @@ -3739,7 +4154,7 @@ msgstr "Во барањето нема id на профилот." msgid "Unsubscribed" msgstr "Претплатата е откажана" -#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#: actions/updateprofile.php:62 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -3756,84 +4171,64 @@ msgstr "Корисник" msgid "User settings for this StatusNet site." msgstr "Кориснички нагодувања за оваа StatusNet веб-страница." -#: actions/useradminpanel.php:149 +#: actions/useradminpanel.php:148 msgid "Invalid bio limit. Must be numeric." msgstr "Неважечко ограничување за биографијата. Мора да е бројчено." -#: actions/useradminpanel.php:155 +#: actions/useradminpanel.php:154 msgid "Invalid welcome text. Max length is 255 characters." msgstr "НЕважечки текст за добредојде. Дозволени се највеќе 255 знаци." -#: actions/useradminpanel.php:165 +#: actions/useradminpanel.php:164 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "Неважечки опис по основно: „%1$s“ не е корисник." -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 +#: actions/useradminpanel.php:217 lib/accountsettingsaction.php:108 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Профил" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:221 msgid "Bio Limit" msgstr "Ограничување за биографијата" -#: actions/useradminpanel.php:223 +#: actions/useradminpanel.php:222 msgid "Maximum length of a profile bio in characters." msgstr "Максимална големина на профилната биографија во знаци." -#: actions/useradminpanel.php:231 +#: actions/useradminpanel.php:230 msgid "New users" msgstr "Нови корисници" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:234 msgid "New user welcome" msgstr "Добредојде за нов корисник" -#: actions/useradminpanel.php:236 +#: actions/useradminpanel.php:235 msgid "Welcome text for new users (Max 255 chars)." msgstr "Текст за добредојде на нови корисници (највеќе до 255 знаци)." -#: actions/useradminpanel.php:241 +#: actions/useradminpanel.php:240 msgid "Default subscription" msgstr "Основно-зададена претплата" -#: actions/useradminpanel.php:242 +#: actions/useradminpanel.php:241 msgid "Automatically subscribe new users to this user." msgstr "Автоматски претплатувај нови корисници на овој корисник." -#: actions/useradminpanel.php:251 +#: actions/useradminpanel.php:250 msgid "Invitations" msgstr "Покани" -#: actions/useradminpanel.php:256 +#: actions/useradminpanel.php:255 msgid "Invitations enabled" msgstr "Поканите се овозможени" -#: actions/useradminpanel.php:258 +#: actions/useradminpanel.php:257 msgid "Whether to allow users to invite new users." msgstr "Дали да им е дозволено на корисниците да канат други корисници." -#: actions/useradminpanel.php:265 -msgid "Sessions" -msgstr "Сесии" - -#: actions/useradminpanel.php:270 -msgid "Handle sessions" -msgstr "Раководење со сесии" - -#: actions/useradminpanel.php:272 -msgid "Whether to handle sessions ourselves." -msgstr "Дали самите да си раководиме со сесиите." - -#: actions/useradminpanel.php:276 -msgid "Session debugging" -msgstr "Поправка на грешки во сесија" - -#: actions/useradminpanel.php:278 -msgid "Turn on debugging output for sessions." -msgstr "Вклучи извод од поправка на грешки за сесии." - #: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Одобрете ја претплатата" @@ -3848,36 +4243,36 @@ msgstr "" "за забелешките на овој корисник. Ако не сакате да се претплатите, едноставно " "кликнете на „Одбиј“" -#: actions/userauthorization.php:188 actions/version.php:165 +#: actions/userauthorization.php:196 actions/version.php:165 msgid "License" msgstr "Лиценца" -#: actions/userauthorization.php:209 +#: actions/userauthorization.php:217 msgid "Accept" msgstr "Прифати" -#: actions/userauthorization.php:210 lib/subscribeform.php:115 +#: actions/userauthorization.php:218 lib/subscribeform.php:115 #: lib/subscribeform.php:139 msgid "Subscribe to this user" msgstr "Претплати се на корисников" -#: actions/userauthorization.php:211 +#: actions/userauthorization.php:219 msgid "Reject" msgstr "Одбиј" -#: actions/userauthorization.php:212 +#: actions/userauthorization.php:220 msgid "Reject this subscription" msgstr "Одбиј ја оваа претплата" -#: actions/userauthorization.php:225 +#: actions/userauthorization.php:232 msgid "No authorization request!" msgstr "Нема барање за проверка!" -#: actions/userauthorization.php:247 +#: actions/userauthorization.php:254 msgid "Subscription authorized" msgstr "Претплатата е одобрена" -#: actions/userauthorization.php:249 +#: actions/userauthorization.php:256 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 " @@ -3887,11 +4282,11 @@ msgstr "" "инструкциите на веб-страницата за да дознаете како се одобрува претплата. " "Жетонот на Вашата претплата е:" -#: actions/userauthorization.php:259 +#: actions/userauthorization.php:266 msgid "Subscription rejected" msgstr "Претплатата е одбиена" -#: actions/userauthorization.php:261 +#: actions/userauthorization.php:268 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 " @@ -3901,37 +4296,37 @@ msgstr "" "инструкциите на веб-страницата за да дознаете како се одбива претплата во " "потполност." -#: actions/userauthorization.php:296 +#: actions/userauthorization.php:303 #, php-format msgid "Listener URI ‘%s’ not found here." msgstr "URI-то на следачот „%s“ не е пронајдено тука." -#: actions/userauthorization.php:301 +#: actions/userauthorization.php:308 #, php-format msgid "Listenee URI ‘%s’ is too long." msgstr "Следениот URI „%s“ е предолг." -#: actions/userauthorization.php:307 +#: actions/userauthorization.php:314 #, php-format msgid "Listenee URI ‘%s’ is a local user." msgstr "Следеното URI „%s“ е за локален корисник." -#: actions/userauthorization.php:322 +#: actions/userauthorization.php:329 #, php-format msgid "Profile URL ‘%s’ is for a local user." msgstr "Профилната URL-адреса „%s“ е за локален корисник." -#: actions/userauthorization.php:338 +#: actions/userauthorization.php:345 #, php-format msgid "Avatar URL ‘%s’ is not valid." msgstr "URL-адресата „%s“ за аватар е неважечка." -#: actions/userauthorization.php:343 +#: actions/userauthorization.php:350 #, php-format msgid "Can’t read avatar URL ‘%s’." msgstr "Не можам да ја прочитам URL на аватарот „%s“." -#: actions/userauthorization.php:348 +#: actions/userauthorization.php:355 #, php-format msgid "Wrong image type for avatar URL ‘%s’." msgstr "Погрешен тип на слика за URL на аватарот „%s“." @@ -3952,6 +4347,11 @@ msgstr "" msgid "Enjoy your hotdog!" msgstr "Добар апетит!" +#: actions/usergroups.php:64 +#, php-format +msgid "%1$s groups, page %2$d" +msgstr "Групи %1$s, стр. %2$d" + #: actions/usergroups.php:130 msgid "Search for more groups" msgstr "Пребарај уште групи" @@ -3982,10 +4382,6 @@ msgstr "" "Оваа веб-страница работи на %1$s верзија %2$s, Авторски права 2008-2010 " "StatusNet, Inc. и учесници." -#: actions/version.php:157 -msgid "StatusNet" -msgstr "StatusNet" - #: actions/version.php:161 msgid "Contributors" msgstr "Учесници" @@ -4027,11 +4423,7 @@ msgstr "" msgid "Plugins" msgstr "Приклучоци" -#: actions/version.php:195 -msgid "Name" -msgstr "Име" - -#: actions/version.php:196 lib/action.php:741 +#: actions/version.php:196 lib/action.php:747 msgid "Version" msgstr "Верзија" @@ -4039,10 +4431,6 @@ msgstr "Верзија" msgid "Author(s)" msgstr "Автор(и)" -#: actions/version.php:198 lib/groupeditform.php:172 -msgid "Description" -msgstr "Опис" - #: classes/File.php:144 #, php-format msgid "" @@ -4064,19 +4452,16 @@ msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "ВОлку голема податотека ќе ја надмине Вашата месечна квота од %d бајти" #: classes/Group_member.php:41 -#, fuzzy msgid "Group join failed." -msgstr "Профил на група" +msgstr "Зачленувањето во групата не успеа." #: classes/Group_member.php:53 -#, fuzzy msgid "Not part of group." -msgstr "Не можев да ја подновам групата." +msgstr "Не е дел од групата." #: classes/Group_member.php:60 -#, fuzzy msgid "Group leave failed." -msgstr "Профил на група" +msgstr "Напуштањето на групата не успеа." #: classes/Login_token.php:76 #, php-format @@ -4095,27 +4480,27 @@ msgstr "Не можев да ја испратам пораката." msgid "Could not update message with new URI." msgstr "Не можев да ја подновам пораката со нов URI." -#: classes/Notice.php:171 +#: classes/Notice.php:157 #, php-format msgid "DB error inserting hashtag: %s" msgstr "Грешка во базата на податоци при вметнувањето на хеш-ознака: %s" -#: classes/Notice.php:225 +#: classes/Notice.php:222 msgid "Problem saving notice. Too long." msgstr "Проблем со зачувувањето на белешката. Премногу долго." -#: classes/Notice.php:229 +#: classes/Notice.php:226 msgid "Problem saving notice. Unknown user." msgstr "Проблем со зачувувањето на белешката. Непознат корисник." -#: classes/Notice.php:234 +#: classes/Notice.php:231 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" "Премногу забелњшки за прекратко време; здивнете малку и продолжете за " "неколку минути." -#: classes/Notice.php:240 +#: classes/Notice.php:237 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." @@ -4123,34 +4508,58 @@ msgstr "" "Премногу дуплирани пораки во прекратко време; здивнете малку и продолжете за " "неколку минути." -#: classes/Notice.php:246 +#: classes/Notice.php:243 msgid "You are banned from posting notices on this site." msgstr "Забрането Ви е да објавувате забелешки на оваа веб-страница." -#: classes/Notice.php:305 classes/Notice.php:330 +#: classes/Notice.php:309 classes/Notice.php:335 msgid "Problem saving notice." msgstr "Проблем во зачувувањето на белешката." -#: classes/Notice.php:1052 -#, php-format -msgid "DB error inserting reply: %s" -msgstr "Одговор од внесот во базата: %s" +#: classes/Notice.php:882 +msgid "Problem saving group inbox." +msgstr "Проблем при зачувувањето на групното приемно сандаче." -#: classes/Notice.php:1423 +#: classes/Notice.php:1407 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" -#: classes/User.php:382 +#: classes/Subscription.php:66 lib/oauthstore.php:465 +msgid "You have been banned from subscribing." +msgstr "Блокирани сте од претплаќање." + +#: classes/Subscription.php:70 +msgid "Already subscribed!" +msgstr "Веќе претплатено!" + +#: classes/Subscription.php:74 +msgid "User has blocked you." +msgstr "Корисникот Ве има блокирано." + +#: classes/Subscription.php:157 +#, fuzzy +msgid "Not subscribed!" +msgstr "Не сте претплатени!" + +#: classes/Subscription.php:163 +msgid "Couldn't delete self-subscription." +msgstr "Не можам да ја избришам самопретплатата." + +#: classes/Subscription.php:179 lib/subs.php:69 +msgid "Couldn't delete subscription." +msgstr "Претплата не може да се избрише." + +#: classes/User.php:372 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "Добредојдовте на %1$s, @%2$s!" -#: classes/User_group.php:380 +#: classes/User_group.php:423 msgid "Could not create group." msgstr "Не можев да ја создадам групата." -#: classes/User_group.php:409 +#: classes/User_group.php:452 msgid "Could not set group membership." msgstr "Не можев да назначам членство во групата." @@ -4191,128 +4600,124 @@ msgstr "%1$s - %2$s" msgid "Untitled page" msgstr "Страница без наслов" -#: lib/action.php:427 +#: lib/action.php:433 msgid "Primary site navigation" msgstr "Главна навигација" -#: lib/action.php:433 +#: lib/action.php:439 msgid "Home" msgstr "Дома" -#: lib/action.php:433 +#: lib/action.php:439 msgid "Personal profile and friends timeline" msgstr "Личен профил и историја на пријатели" -#: lib/action.php:435 -msgid "Account" -msgstr "Сметка" - -#: lib/action.php:435 +#: lib/action.php:441 msgid "Change your email, avatar, password, profile" msgstr "Промена на е-пошта, аватар, лозинка, профил" -#: lib/action.php:438 +#: lib/action.php:444 msgid "Connect" msgstr "Поврзи се" -#: lib/action.php:438 +#: lib/action.php:444 msgid "Connect to services" msgstr "Поврзи се со услуги" -#: lib/action.php:442 +#: lib/action.php:448 msgid "Change site configuration" msgstr "Промена на конфигурацијата на веб-страницата" -#: lib/action.php:446 lib/subgroupnav.php:105 +#: lib/action.php:452 lib/subgroupnav.php:105 msgid "Invite" msgstr "Покани" -#: lib/action.php:447 lib/subgroupnav.php:106 +#: lib/action.php:453 lib/subgroupnav.php:106 #, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "Поканете пријатели и колеги да Ви се придружат на %s" -#: lib/action.php:452 +#: lib/action.php:458 msgid "Logout" msgstr "Одјави се" -#: lib/action.php:452 +#: lib/action.php:458 msgid "Logout from the site" msgstr "Одјава" -#: lib/action.php:457 +#: lib/action.php:463 msgid "Create an account" msgstr "Создај сметка" -#: lib/action.php:460 +#: lib/action.php:466 msgid "Login to the site" msgstr "Најава" -#: lib/action.php:463 lib/action.php:726 +#: lib/action.php:469 lib/action.php:732 msgid "Help" msgstr "Помош" -#: lib/action.php:463 +#: lib/action.php:469 msgid "Help me!" msgstr "Напомош!" -#: lib/action.php:466 lib/searchaction.php:127 +#: lib/action.php:472 lib/searchaction.php:127 msgid "Search" msgstr "Барај" -#: lib/action.php:466 +#: lib/action.php:472 msgid "Search for people or text" msgstr "Пребарајте луѓе или текст" -#: lib/action.php:487 +#: lib/action.php:493 msgid "Site notice" msgstr "Напомена за веб-страницата" -#: lib/action.php:553 +#: lib/action.php:559 msgid "Local views" msgstr "Локални прегледи" -#: lib/action.php:619 +#: lib/action.php:625 msgid "Page notice" msgstr "Напомена за страницата" -#: lib/action.php:721 +#: lib/action.php:727 msgid "Secondary site navigation" msgstr "Споредна навигација" -#: lib/action.php:728 +#: lib/action.php:734 msgid "About" msgstr "За" -#: lib/action.php:730 +#: lib/action.php:736 msgid "FAQ" msgstr "ЧПП" -#: lib/action.php:734 +#: lib/action.php:740 msgid "TOS" msgstr "Услови" -#: lib/action.php:737 +#: lib/action.php:743 msgid "Privacy" msgstr "Приватност" -#: lib/action.php:739 +#: lib/action.php:745 msgid "Source" msgstr "Изворен код" -#: lib/action.php:743 +#: lib/action.php:749 msgid "Contact" msgstr "Контакт" -#: lib/action.php:745 +#: lib/action.php:751 msgid "Badge" msgstr "Значка" -#: lib/action.php:773 +#: lib/action.php:779 msgid "StatusNet software license" msgstr "Лиценца на програмот StatusNet" -#: lib/action.php:776 +#: lib/action.php:782 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4321,12 +4726,12 @@ msgstr "" "**%%site.name%%** е сервис за микроблогирање што ви го овозможува [%%site." "broughtby%%](%%site.broughtbyurl%%). " -#: lib/action.php:778 +#: lib/action.php:784 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** е сервис за микроблогирање." -#: lib/action.php:780 +#: lib/action.php:786 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4337,33 +4742,59 @@ msgstr "" "верзија %s, достапен пд [GNU Affero General Public License](http://www.fsf." "org/licensing/licenses/agpl-3.0.html)." -#: lib/action.php:794 +#: lib/action.php:801 msgid "Site content license" msgstr "Лиценца на содржините на веб-страницата" -#: lib/action.php:803 +#: lib/action.php:806 +#, php-format +msgid "Content and data of %1$s are private and confidential." +msgstr "Содржината и податоците на %1$s се лични и доверливи." + +#: lib/action.php:811 +#, php-format +msgid "Content and data copyright by %1$s. All rights reserved." +msgstr "" +"Авторските права на содржината и податоците се во сопственост на %1$s. Сите " +"права задржани." + +#: lib/action.php:814 +msgid "Content and data copyright by contributors. All rights reserved." +msgstr "" +"Авторските права на содржината и податоците им припаѓаат на учесниците. Сите " +"права задржани." + +#: lib/action.php:827 msgid "All " msgstr "Сите " -#: lib/action.php:808 +#: lib/action.php:833 msgid "license." msgstr "лиценца." -#: lib/action.php:1102 +#: lib/action.php:1132 msgid "Pagination" msgstr "Прелом на страници" -#: lib/action.php:1111 +#: lib/action.php:1141 msgid "After" msgstr "По" -#: lib/action.php:1119 +#: lib/action.php:1149 msgid "Before" msgstr "Пред" -#: lib/action.php:1167 -msgid "There was a problem with your session token." -msgstr "Се појави проблем со Вашиот сесиски жетон." +#: lib/activity.php:382 +msgid "Can't handle remote content yet." +msgstr "" + +#: lib/activity.php:410 +msgid "Can't handle embedded XML content yet." +msgstr "" + +#: lib/activity.php:414 +msgid "Can't handle embedded Base64 content yet." +msgstr "" #: lib/adminpanelaction.php:96 msgid "You cannot make changes to this site." @@ -4393,10 +4824,99 @@ msgstr "Основни нагодувања на веб-страницата" msgid "Design configuration" msgstr "Конфигурација на изгледот" -#: lib/adminpanelaction.php:322 lib/adminpanelaction.php:327 +#: lib/adminpanelaction.php:322 +msgid "User configuration" +msgstr "Конфигурација на корисник" + +#: lib/adminpanelaction.php:327 +msgid "Access configuration" +msgstr "Конфигурација на пристапот" + +#: lib/adminpanelaction.php:332 msgid "Paths configuration" msgstr "Конфигурација на патеки" +#: lib/adminpanelaction.php:337 +msgid "Sessions configuration" +msgstr "Конфигурација на сесиите" + +#: lib/apiauth.php:95 +msgid "API resource requires read-write access, but you only have read access." +msgstr "" +"API-ресурсот бара да може и да чита и да запишува, а вие можете само да " +"читате." + +#: lib/apiauth.php:273 +#, php-format +msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" +msgstr "Неуспешен обид за API-заверка, прекар = %1$s, прокси = %2$s, IP = %3$s" + +#: lib/applicationeditform.php:136 +msgid "Edit application" +msgstr "Уреди програм" + +#: lib/applicationeditform.php:184 +msgid "Icon for this application" +msgstr "Икона за овој програм" + +#: lib/applicationeditform.php:204 +#, php-format +msgid "Describe your application in %d characters" +msgstr "Опишете го програмот со %d знаци" + +#: lib/applicationeditform.php:207 +msgid "Describe your application" +msgstr "Опишете го Вашиот програм" + +#: lib/applicationeditform.php:216 +msgid "Source URL" +msgstr "Изворна URL-адреса" + +#: lib/applicationeditform.php:218 +msgid "URL of the homepage of this application" +msgstr "URL на страницата на програмот" + +#: lib/applicationeditform.php:224 +msgid "Organization responsible for this application" +msgstr "Организацијата одговорна за овој програм" + +#: lib/applicationeditform.php:230 +msgid "URL for the homepage of the organization" +msgstr "URL на страницата на организацијата" + +#: lib/applicationeditform.php:236 +msgid "URL to redirect to after authentication" +msgstr "URL за пренасочување по заверката" + +#: lib/applicationeditform.php:258 +msgid "Browser" +msgstr "Прелистувач" + +#: lib/applicationeditform.php:274 +msgid "Desktop" +msgstr "Работна површина" + +#: lib/applicationeditform.php:275 +msgid "Type of application, browser or desktop" +msgstr "Тип на програм, прелистувач или работна површина" + +#: lib/applicationeditform.php:297 +msgid "Read-only" +msgstr "Само читање" + +#: lib/applicationeditform.php:315 +msgid "Read-write" +msgstr "Читање-пишување" + +#: lib/applicationeditform.php:316 +msgid "Default access for this application: read-only, or read-write" +msgstr "" +"Основно-зададен пристап за овој програм: само читање, или читање-пишување" + +#: lib/applicationlist.php:154 +msgid "Revoke" +msgstr "Одземи" + #: lib/attachmentlist.php:87 msgid "Attachments" msgstr "Прилози" @@ -4417,11 +4937,11 @@ msgstr "Забелешки кадешто се јавува овој прило msgid "Tags for this attachment" msgstr "Ознаки за овој прилог" -#: lib/authenticationplugin.php:182 lib/authenticationplugin.php:187 +#: lib/authenticationplugin.php:218 lib/authenticationplugin.php:223 msgid "Password changing failed" msgstr "Менувањето на лозинката не успеа" -#: lib/authenticationplugin.php:197 +#: lib/authenticationplugin.php:233 msgid "Password changing is not allowed" msgstr "Менувањето на лозинка не е дозволено" @@ -4575,80 +5095,90 @@ msgstr "Грешка при зачувувањето на белешката." msgid "Specify the name of the user to subscribe to" msgstr "Назначете го името на корисникот на којшто сакате да се претплатите" -#: lib/command.php:554 +#: lib/command.php:554 lib/command.php:589 +msgid "No such user" +msgstr "Нема таков корисник" + +#: lib/command.php:561 #, php-format msgid "Subscribed to %s" msgstr "Претплатено на %s" -#: lib/command.php:575 +#: lib/command.php:582 lib/command.php:685 msgid "Specify the name of the user to unsubscribe from" msgstr "Назначете го името на корисникот од кого откажувате претплата." -#: lib/command.php:582 +#: lib/command.php:595 #, php-format msgid "Unsubscribed from %s" msgstr "Претплатата на %s е откажана" -#: lib/command.php:600 lib/command.php:623 +#: lib/command.php:613 lib/command.php:636 msgid "Command not yet implemented." msgstr "Наредбата сè уште не е имплементирана." -#: lib/command.php:603 +#: lib/command.php:616 msgid "Notification off." msgstr "Известувањето е исклучено." -#: lib/command.php:605 +#: lib/command.php:618 msgid "Can't turn off notification." msgstr "Не можам да исклучам известување." -#: lib/command.php:626 +#: lib/command.php:639 msgid "Notification on." msgstr "Известувањето е вклучено." -#: lib/command.php:628 +#: lib/command.php:641 msgid "Can't turn on notification." msgstr "Не можам да вклучам известување." -#: lib/command.php:641 +#: lib/command.php:654 msgid "Login command is disabled" msgstr "Наредбата за најава е оневозможена" -#: lib/command.php:652 +#: lib/command.php:665 #, php-format msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "Оваа врска може да се употреби само еднаш, и трае само 2 минути: %s" -#: lib/command.php:668 +#: lib/command.php:692 +#, fuzzy, php-format +msgid "Unsubscribed %s" +msgstr "Претплатата на %s е откажана" + +#: lib/command.php:709 msgid "You are not subscribed to anyone." msgstr "Не сте претплатени никому." -#: lib/command.php:670 +#: lib/command.php:711 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "Не ни го испративте тој профил." msgstr[1] "Не ни го испративте тој профил." -#: lib/command.php:690 +#: lib/command.php:731 msgid "No one is subscribed to you." msgstr "Никој не е претплатен на Вас." -#: lib/command.php:692 +#: lib/command.php:733 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "Оддалечена претплата" msgstr[1] "Оддалечена претплата" -#: lib/command.php:712 +#: lib/command.php:753 msgid "You are not a member of any groups." msgstr "Не членувате во ниедна група." -#: lib/command.php:714 +#: lib/command.php:755 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "Не ни го испративте тој профил." msgstr[1] "Не ни го испративте тој профил." -#: lib/command.php:728 +#: lib/command.php:769 +#, fuzzy msgid "" "Commands:\n" "on - turn on notifications\n" @@ -4662,6 +5192,7 @@ msgid "" "d - direct message to user\n" "get - get last notice from user\n" "whois - get profile info on user\n" +"lose - force user to stop following you\n" "fav - add user's last notice as a 'fave'\n" "fav # - add notice with the given id as a 'fave'\n" "repeat # - repeat a notice with a given id\n" @@ -4726,19 +5257,19 @@ msgstr "" "tracks - сè уште не е имплементирано.\n" "tracking - сè уште не е имплементирано.\n" -#: lib/common.php:131 +#: lib/common.php:136 msgid "No configuration file found. " msgstr "Нема пронајдено конфигурациска податотека. " -#: lib/common.php:132 +#: lib/common.php:137 msgid "I looked for configuration files in the following places: " msgstr "Побарав конфигурациони податотеки на следниве места: " -#: lib/common.php:134 +#: lib/common.php:139 msgid "You may wish to run the installer to fix this." msgstr "Препорачуваме да го пуштите инсталатерот за да го поправите ова." -#: lib/common.php:135 +#: lib/common.php:140 msgid "Go to the installer." msgstr "Оди на инсталаторот." @@ -4754,6 +5285,14 @@ msgstr "Подновувања преку инстант-пораки (IM)" msgid "Updates by SMS" msgstr "Подновувања по СМС" +#: lib/connectsettingsaction.php:120 +msgid "Connections" +msgstr "Сврзувања" + +#: lib/connectsettingsaction.php:121 +msgid "Authorized connected applications" +msgstr "Овластени поврзани програми" + #: lib/dberroraction.php:60 msgid "Database error" msgstr "Грешка во базата на податоци" @@ -4766,8 +5305,8 @@ msgstr "Подигни податотека" msgid "" "You can upload your personal background image. The maximum file size is 2MB." msgstr "" -"Не можете да подигнете личната позадинска слика. Максималната дозволена " -"големина изнесува 2МБ." +"Можете да подигнете лична позадинска слика. Максималната дозволена големина " +"изнесува 2МБ." #: lib/designsettings.php:418 msgid "Design defaults restored." @@ -4940,15 +5479,15 @@ msgstr "МБ" msgid "kB" msgstr "кб" -#: lib/jabber.php:202 +#: lib/jabber.php:220 #, php-format msgid "[%s]" msgstr "[%s]" -#: lib/jabber.php:385 -#, fuzzy, php-format +#: lib/jabber.php:400 +#, php-format msgid "Unknown inbox source %d." -msgstr "Непознат јазик „%s“" +msgstr "Непознат извор на приемна пошта %d." #: lib/joinform.php:114 msgid "Join" @@ -5228,7 +5767,7 @@ msgstr "" "впуштите во разговор со други корисници. Луѓето можат да ви испраќаат пораки " "што ќе можете да ги видите само Вие." -#: lib/mailbox.php:227 lib/noticelist.php:477 +#: lib/mailbox.php:227 lib/noticelist.php:482 msgid "from" msgstr "од" @@ -5349,57 +5888,55 @@ msgid "Do not share my location" msgstr "Не ја прикажувај мојата локација" #: lib/noticeform.php:216 -msgid "Hide this info" -msgstr "Сокриј го ова инфо" - -#: lib/noticeform.php:217 msgid "" "Sorry, retrieving your geo location is taking longer than expected, please " "try again later" msgstr "" +"Жалиме, но добивањето на Вашата местоположба трае подолго од очекуваното. " +"Обидете се подоцна." -#: lib/noticelist.php:428 +#: lib/noticelist.php:429 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" -#: lib/noticelist.php:429 +#: lib/noticelist.php:430 msgid "N" msgstr "С" -#: lib/noticelist.php:429 +#: lib/noticelist.php:430 msgid "S" msgstr "Ј" -#: lib/noticelist.php:430 +#: lib/noticelist.php:431 msgid "E" msgstr "И" -#: lib/noticelist.php:430 +#: lib/noticelist.php:431 msgid "W" msgstr "З" -#: lib/noticelist.php:436 +#: lib/noticelist.php:438 msgid "at" msgstr "во" -#: lib/noticelist.php:531 +#: lib/noticelist.php:558 msgid "in context" msgstr "во контекст" -#: lib/noticelist.php:556 +#: lib/noticelist.php:583 msgid "Repeated by" msgstr "Повторено од" -#: lib/noticelist.php:585 +#: lib/noticelist.php:610 msgid "Reply to this notice" msgstr "Одговори на забелешкава" -#: lib/noticelist.php:586 +#: lib/noticelist.php:611 msgid "Reply" msgstr "Одговор" -#: lib/noticelist.php:628 +#: lib/noticelist.php:655 msgid "Notice repeated" msgstr "Забелешката е повторена" @@ -5431,11 +5968,7 @@ msgstr "Грешка во внесувањето на оддалечениот msgid "Duplicate notice" msgstr "Дуплирај забелешка" -#: lib/oauthstore.php:466 lib/subs.php:48 -msgid "You have been banned from subscribing." -msgstr "Блокирани сте од претплаќање." - -#: lib/oauthstore.php:491 +#: lib/oauthstore.php:490 msgid "Couldn't insert new subscription." msgstr "Не може да се внесе нова претплата." @@ -5451,19 +5984,19 @@ msgstr "Одговори" msgid "Favorites" msgstr "Омилени" -#: lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "Примени" -#: lib/personalgroupnav.php:125 +#: lib/personalgroupnav.php:126 msgid "Your incoming messages" msgstr "Ваши приемни пораки" -#: lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 msgid "Outbox" msgstr "За праќање" -#: lib/personalgroupnav.php:130 +#: lib/personalgroupnav.php:131 msgid "Your sent messages" msgstr "Ваши испратени пораки" @@ -5540,6 +6073,10 @@ msgstr "Да ја повторам белешкава?" msgid "Repeat this notice" msgstr "Повтори ја забелешкава" +#: lib/router.php:665 +msgid "No single user defined for single-user mode." +msgstr "Не е зададен корисник за еднокорисничкиот режим." + #: lib/sandboxform.php:67 msgid "Sandbox" msgstr "Песок" @@ -5607,35 +6144,6 @@ msgstr "Луѓе претплатени на %s" msgid "Groups %s is a member of" msgstr "Групи кадешто членува %s" -#: lib/subs.php:52 -msgid "Already subscribed!" -msgstr "Веќе претплатено!" - -#: lib/subs.php:56 -msgid "User has blocked you." -msgstr "Корисникот Ве има блокирано." - -#: lib/subs.php:63 -msgid "Could not subscribe." -msgstr "Претплатата е неуспешна." - -#: lib/subs.php:82 -msgid "Could not subscribe other to you." -msgstr "Не можев да прептлатам друг корисник на Вас." - -#: lib/subs.php:137 -#, fuzzy -msgid "Not subscribed!" -msgstr "Не сте претплатени!" - -#: lib/subs.php:142 -msgid "Couldn't delete self-subscription." -msgstr "Не можам да ја избришам самопретплатата." - -#: lib/subs.php:158 -msgid "Couldn't delete subscription." -msgstr "Претплата не може да се избрише." - #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -5686,67 +6194,67 @@ msgstr "Уреди аватар" msgid "User actions" msgstr "Кориснички дејства" -#: lib/userprofile.php:248 +#: lib/userprofile.php:251 msgid "Edit profile settings" msgstr "Уреди нагодувања на профилот" -#: lib/userprofile.php:249 +#: lib/userprofile.php:252 msgid "Edit" msgstr "Уреди" -#: lib/userprofile.php:272 +#: lib/userprofile.php:275 msgid "Send a direct message to this user" msgstr "Испрати му директна порака на корисников" -#: lib/userprofile.php:273 +#: lib/userprofile.php:276 msgid "Message" msgstr "Порака" -#: lib/userprofile.php:311 +#: lib/userprofile.php:314 msgid "Moderate" msgstr "Модерирај" -#: lib/util.php:877 +#: lib/util.php:952 msgid "a few seconds ago" msgstr "пред неколку секунди" -#: lib/util.php:879 +#: lib/util.php:954 msgid "about a minute ago" msgstr "пред една минута" -#: lib/util.php:881 +#: lib/util.php:956 #, php-format msgid "about %d minutes ago" msgstr "пред %d минути" -#: lib/util.php:883 +#: lib/util.php:958 msgid "about an hour ago" msgstr "пред еден час" -#: lib/util.php:885 +#: lib/util.php:960 #, php-format msgid "about %d hours ago" msgstr "пред %d часа" -#: lib/util.php:887 +#: lib/util.php:962 msgid "about a day ago" msgstr "пред еден ден" -#: lib/util.php:889 +#: lib/util.php:964 #, php-format msgid "about %d days ago" msgstr "пред %d денови" -#: lib/util.php:891 +#: lib/util.php:966 msgid "about a month ago" msgstr "пред еден месец" -#: lib/util.php:893 +#: lib/util.php:968 #, php-format msgid "about %d months ago" msgstr "пред %d месеца" -#: lib/util.php:895 +#: lib/util.php:970 msgid "about a year ago" msgstr "пред една година" @@ -5760,7 +6268,7 @@ msgstr "%s не е важечка боја!" msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "%s не е важечка боја! Користете 3 или 6 шеснаесетни (hex) знаци." -#: scripts/xmppdaemon.php:301 +#: lib/xmppmanager.php:402 #, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "" diff --git a/locale/nb/LC_MESSAGES/statusnet.po b/locale/nb/LC_MESSAGES/statusnet.po index 5fe48460e4..cf3daf0935 100644 --- a/locale/nb/LC_MESSAGES/statusnet.po +++ b/locale/nb/LC_MESSAGES/statusnet.po @@ -8,17 +8,69 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-01-13 22:04+0000\n" -"PO-Revision-Date: 2010-01-13 22:05:46+0000\n" +"POT-Creation-Date: 2010-02-24 23:49+0000\n" +"PO-Revision-Date: 2010-02-24 23:51:22+0000\n" "Language-Team: Norwegian (bokmål)‬\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha (r61027); Translate extension (2010-01-04)\n" +"X-Generator: MediaWiki 1.17alpha (r62925); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: actions/accessadminpanel.php:54 lib/adminpanelaction.php:326 +msgid "Access" +msgstr "Tilgang" + +#: actions/accessadminpanel.php:65 +msgid "Site access settings" +msgstr "Innstillinger for nettstedstilgang" + +#: actions/accessadminpanel.php:158 +msgid "Registration" +msgstr "Registrering" + +#: actions/accessadminpanel.php:161 +msgid "Private" +msgstr "Privat" + +#: actions/accessadminpanel.php:163 +msgid "Prohibit anonymous users (not logged in) from viewing site?" +msgstr "Forhindre anonyme brukere (ikke innlogget) å se nettsted?" + +#: actions/accessadminpanel.php:167 +msgid "Invite only" +msgstr "Kun invitasjon" + +#: actions/accessadminpanel.php:169 +msgid "Make registration invitation only." +msgstr "Gjør at registrering kun kan skje gjennom invitasjon." + +#: actions/accessadminpanel.php:173 +msgid "Closed" +msgstr "Lukket" + +#: actions/accessadminpanel.php:175 +msgid "Disable new registrations." +msgstr "Deaktiver nye registreringer." + +#: actions/accessadminpanel.php:189 actions/designadminpanel.php:586 +#: actions/emailsettings.php:195 actions/imsettings.php:163 +#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 +#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 +#: actions/siteadminpanel.php:336 actions/smssettings.php:181 +#: actions/subscriptions.php:208 actions/tagother.php:154 +#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 lib/designsettings.php:256 +#: lib/groupeditform.php:202 +msgid "Save" +msgstr "Lagre" + +#: actions/accessadminpanel.php:189 +msgid "Save access settings" +msgstr "Lagre tilgangsinnstillinger" + #: actions/all.php:63 actions/public.php:97 actions/replies.php:92 #: actions/showfavorites.php:137 actions/tag.php:51 msgid "No such page" @@ -33,25 +85,29 @@ msgstr "Ingen slik side" #: 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:144 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apistatusesupdate.php:148 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:78 #: actions/apitimelinehome.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/otp.php:76 #: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154 -#: actions/replies.php:73 actions/repliesrss.php:38 +#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 #: 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:302 lib/command.php:355 #: lib/command.php:401 lib/command.php:462 lib/command.php:518 #: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 -#: lib/subs.php:34 lib/subs.php:125 msgid "No such user." msgstr "Ingen slik bruker" +#: actions/all.php:84 +#, php-format +msgid "%1$s and friends, page %2$d" +msgstr "%1$s og venner, side %2$d" + #: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 -#: actions/apitimelinefriends.php:115 actions/apitimelinehome.php:115 +#: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" @@ -88,16 +144,16 @@ msgstr "" "eller post noe selv." #: actions/all.php:134 -#, fuzzy, php-format +#, php-format msgid "" "You can try to [nudge %1$s](../%2$s) from his profile or [post something to " "his or her attention](%%%%action.newnotice%%%%?status_textarea=%3$s)." msgstr "" -"Du kan prøve å [knuffe %s](../%s) fra dennes profil eller [post noe for å få " -"hans eller hennes oppmerksomhet](%%%%action.newnotice%%%%?status_textarea=%" -"s)." +"Du kan prøve å [knuffe %1$s](../%2$s) fra dennes profil eller [poste noe for " +"å få hans eller hennes oppmerksomhet](%%%%action.newnotice%%%%?" +"status_textarea=%3$s)." -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211 #, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " @@ -110,8 +166,8 @@ msgstr "" msgid "You and friends" msgstr "Du og venner" -#: actions/allrss.php:119 actions/apitimelinefriends.php:122 -#: actions/apitimelinehome.php:122 +#: actions/allrss.php:119 actions/apitimelinefriends.php:119 +#: actions/apitimelinehome.php:120 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Oppdateringer fra %1$s og venner på %2$s!" @@ -121,23 +177,23 @@ msgstr "Oppdateringer fra %1$s og venner på %2$s!" #: actions/apiaccountupdateprofile.php:97 #: actions/apiaccountupdateprofilebackgroundimage.php:94 #: actions/apiaccountupdateprofilecolors.php:118 -#: 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:136 actions/apigroupismember.php:114 -#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 -#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 -#: actions/apigroupmembership.php:106 actions/apigroupshow.php:105 -#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 -#: actions/apistatusesretweets.php:112 actions/apistatusesshow.php:108 -#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93 -#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:146 -#: actions/apitimelinefriends.php:156 actions/apitimelinegroup.php:150 -#: actions/apitimelinehome.php:156 actions/apitimelinementions.php:151 -#: actions/apitimelinepublic.php:131 actions/apitimelineretweetedbyme.php:122 +#: actions/apiaccountverifycredentials.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:128 actions/apigroupcreate.php:136 +#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 +#: actions/apigroupleave.php:141 actions/apigrouplist.php:132 +#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 +#: actions/apigroupshow.php:115 actions/apihelptest.php:88 +#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 +#: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 #: actions/apitimelineretweetedtome.php:121 -#: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141 -#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 +#: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 +#: actions/apitimelineuser.php:207 actions/apiusershow.php:101 #, fuzzy msgid "API method not found." msgstr "API-metode ikke funnet!" @@ -152,7 +208,7 @@ msgstr "API-metode ikke funnet!" #: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 #: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 #: actions/apigroupleave.php:91 actions/apistatusesretweet.php:65 -#: actions/apistatusesupdate.php:114 +#: actions/apistatusesupdate.php:118 msgid "This method requires a POST." msgstr "Denne metoden krever en POST." @@ -183,8 +239,9 @@ msgstr "Klarte ikke å lagre profil." #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:97 -#: actions/apistatusesupdate.php:127 actions/avatarsettings.php:257 -#: actions/designadminpanel.php:122 actions/newnotice.php:94 +#: actions/apistatusesupdate.php:131 actions/avatarsettings.php:257 +#: actions/designadminpanel.php:122 actions/editapplication.php:118 +#: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 #, php-format msgid "" @@ -265,18 +322,16 @@ msgid "No status found with that ID." msgstr "Fant ingen status med den ID-en." #: actions/apifavoritecreate.php:119 -#, fuzzy msgid "This status is already a favorite." -msgstr "Denne statusen er allerede en favoritt!" +msgstr "Denne statusen er allerede en favoritt." #: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:176 msgid "Could not create favorite." msgstr "Kunne ikke opprette favoritt." #: actions/apifavoritedestroy.php:122 -#, fuzzy msgid "That status is not a favorite." -msgstr "Den statusen er ikke en favoritt!" +msgstr "Den statusen er ikke en favoritt." #: actions/apifavoritedestroy.php:134 actions/disfavor.php:87 msgid "Could not delete favorite." @@ -296,23 +351,20 @@ msgid "Could not unfollow user: User not found." msgstr "Kunne ikke slutte å følge brukeren: Fant ikke brukeren." #: actions/apifriendshipsdestroy.php:120 -#, fuzzy msgid "You cannot unfollow yourself." -msgstr "Du kan ikke slutte å følge deg selv!" +msgstr "Du kan ikke slutte å følge deg selv." #: actions/apifriendshipsexists.php:94 msgid "Two user ids or screen_names must be supplied." msgstr "To bruker ID-er eller kallenavn må oppgis." -#: actions/apifriendshipsshow.php:135 -#, fuzzy +#: actions/apifriendshipsshow.php:134 msgid "Could not determine source user." -msgstr "Klarte ikke å oppdatere bruker." +msgstr "Kunne ikke bestemme kildebruker." -#: actions/apifriendshipsshow.php:143 -#, fuzzy +#: actions/apifriendshipsshow.php:142 msgid "Could not find target user." -msgstr "Klarte ikke å oppdatere bruker." +msgstr "Kunne ikke finne målbruker." #: actions/apigroupcreate.php:164 actions/editgroup.php:182 #: actions/newgroup.php:126 actions/profilesettings.php:215 @@ -332,7 +384,8 @@ msgstr "Det nicket er allerede i bruk. Prøv et annet." msgid "Not a valid nickname." msgstr "Ugyldig nick." -#: actions/apigroupcreate.php:196 actions/editgroup.php:195 +#: actions/apigroupcreate.php:196 actions/editapplication.php:215 +#: actions/editgroup.php:195 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:217 msgid "Homepage is not a valid URL." @@ -344,7 +397,8 @@ msgstr "Hjemmesiden er ikke en gyldig URL." msgid "Full name is too long (max 255 chars)." msgstr "Beklager, navnet er for langt (max 250 tegn)." -#: actions/apigroupcreate.php:213 +#: actions/apigroupcreate.php:213 actions/editapplication.php:190 +#: actions/newapplication.php:172 #, php-format msgid "Description is too long (max %d chars)." msgstr "Beskrivelsen er for lang (maks %d tegn)." @@ -359,31 +413,30 @@ msgstr "" #: actions/newgroup.php:159 #, php-format msgid "Too many aliases! Maximum %d." -msgstr "" +msgstr "For mange alias! Maksimum %d." #: actions/apigroupcreate.php:264 actions/editgroup.php:224 #: actions/newgroup.php:168 -#, fuzzy, php-format +#, php-format msgid "Invalid alias: \"%s\"" -msgstr "Ugyldig hjemmeside '%s'" +msgstr "Ugyldig alias: «%s»" #: actions/apigroupcreate.php:273 actions/editgroup.php:228 #: actions/newgroup.php:172 -#, fuzzy, php-format +#, php-format msgid "Alias \"%s\" already in use. Try another one." -msgstr "Det nicket er allerede i bruk. Prøv et annet." +msgstr "Aliaset «%s» er allerede i bruk. Prøv et annet." #: actions/apigroupcreate.php:286 actions/editgroup.php:234 #: actions/newgroup.php:178 msgid "Alias can't be the same as nickname." -msgstr "" +msgstr "Alias kan ikke være det samme som kallenavn." #: actions/apigroupismember.php:95 actions/apigroupjoin.php:104 #: actions/apigroupleave.php:104 actions/apigroupmembership.php:91 -#: actions/apigroupshow.php:90 actions/apitimelinegroup.php:91 -#, fuzzy +#: actions/apigroupshow.php:82 actions/apitimelinegroup.php:91 msgid "Group not found!" -msgstr "API-metode ikke funnet!" +msgstr "Gruppe ikke funnet!" #: actions/apigroupjoin.php:110 actions/joingroup.php:90 msgid "You are already a member of that group." @@ -391,22 +444,21 @@ msgstr "Du er allerede medlem av den gruppen." #: actions/apigroupjoin.php:119 actions/joingroup.php:95 lib/command.php:221 msgid "You have been blocked from that group by the admin." -msgstr "" +msgstr "Du har blitt blokkert fra den gruppen av administratoren." #: actions/apigroupjoin.php:138 actions/joingroup.php:124 -#, fuzzy, php-format +#, php-format msgid "Could not join user %1$s to group %2$s." -msgstr "Klarte ikke å oppdatere bruker." +msgstr "Kunne ikke legge bruker %1$s til gruppe %2$s." #: actions/apigroupleave.php:114 -#, fuzzy msgid "You are not a member of this group." -msgstr "Du er allerede logget inn!" +msgstr "Du er ikke et medlem av denne gruppen." #: actions/apigroupleave.php:124 actions/leavegroup.php:119 -#, fuzzy, php-format +#, php-format msgid "Could not remove user %1$s from group %2$s." -msgstr "Klarte ikke å oppdatere bruker." +msgstr "Kunne ikke fjerne bruker %1$s fra gruppe %2$s." #: actions/apigrouplist.php:95 #, php-format @@ -416,72 +468,175 @@ msgstr "%s sine grupper" #: actions/apigrouplistall.php:90 actions/usergroups.php:62 #, php-format msgid "%s groups" -msgstr "" +msgstr "%s grupper" #: actions/apigrouplistall.php:94 #, php-format msgid "groups on %s" +msgstr "grupper på %s" + +#: actions/apioauthauthorize.php:101 +msgid "No oauth_token parameter provided." +msgstr "Ingen verdi for oauth_token er oppgitt." + +#: actions/apioauthauthorize.php:106 +#, fuzzy +msgid "Invalid token." +msgstr "Ugyldig størrelse" + +#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 +#: actions/deletenotice.php:157 actions/disfavor.php:74 +#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54 +#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupunblock.php:66 actions/imsettings.php:206 +#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 +#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 +#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135 +#: actions/othersettings.php:145 actions/passwordsettings.php:138 +#: actions/profilesettings.php:194 actions/recoverpassword.php:337 +#: actions/register.php:165 actions/remotesubscribe.php:77 +#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 +#: actions/subscribe.php:86 actions/tagother.php:166 +#: 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/apioauthauthorize.php:135 +msgid "Invalid nickname / password!" +msgstr "Ugyldig kallenavn / passord!" + +#: actions/apioauthauthorize.php:159 +msgid "Database error deleting OAuth application user." +msgstr "" + +#: actions/apioauthauthorize.php:185 +msgid "Database error inserting OAuth application user." +msgstr "" + +#: actions/apioauthauthorize.php:214 +#, php-format +msgid "" +"The request token %s has been authorized. Please exchange it for an access " +"token." +msgstr "" + +#: actions/apioauthauthorize.php:227 +#, php-format +msgid "The request token %s has been denied and revoked." +msgstr "" + +#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 +#: actions/designadminpanel.php:103 actions/editapplication.php:139 +#: actions/emailsettings.php:256 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/newapplication.php:121 +#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 +#: actions/smssettings.php:248 lib/designsettings.php:304 +msgid "Unexpected form submission." +msgstr "" + +#: actions/apioauthauthorize.php:259 +msgid "An application would like to connect to your account" +msgstr "" + +#: actions/apioauthauthorize.php:276 +msgid "Allow or deny access" +msgstr "Tillat eller nekt tilgang" + +#: actions/apioauthauthorize.php:292 +#, php-format +msgid "" +"The application %1$s by %2$s would like " +"the ability to %3$s your %4$s account data. You should only " +"give access to your %4$s account to third parties you trust." +msgstr "" + +#: actions/apioauthauthorize.php:310 lib/action.php:441 +msgid "Account" +msgstr "Konto" + +#: actions/apioauthauthorize.php:313 actions/login.php:230 +#: actions/profilesettings.php:106 actions/register.php:424 +#: actions/showgroup.php:236 actions/tagother.php:94 +#: actions/userauthorization.php:145 lib/groupeditform.php:152 +#: lib/userprofile.php:131 +msgid "Nickname" +msgstr "Nick" + +#: actions/apioauthauthorize.php:316 actions/login.php:233 +#: actions/register.php:429 lib/accountsettingsaction.php:116 +msgid "Password" +msgstr "Passord" + +#: actions/apioauthauthorize.php:328 +msgid "Deny" +msgstr "Nekt" + +#: actions/apioauthauthorize.php:334 +msgid "Allow" +msgstr "Tillat" + +#: actions/apioauthauthorize.php:351 +msgid "Allow or deny access to your account information." +msgstr "Tillat eller nekt tilgang til din kontoinformasjon." + #: actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." msgstr "" #: actions/apistatusesdestroy.php:130 msgid "You may not delete another user's status." -msgstr "" +msgstr "Du kan ikke slette statusen til en annen bruker." #: actions/apistatusesretweet.php:75 actions/apistatusesretweets.php:72 #: actions/deletenotice.php:52 actions/shownotice.php:92 msgid "No such notice." -msgstr "" +msgstr "Ingen slik notis." #: actions/apistatusesretweet.php:83 -#, fuzzy msgid "Cannot repeat your own notice." -msgstr "Kan ikke slette notisen." +msgstr "Kan ikke gjenta din egen notis." #: actions/apistatusesretweet.php:91 -#, fuzzy msgid "Already repeated that notice." -msgstr "Kan ikke slette notisen." +msgstr "Allerede gjentatt den notisen." #: actions/apistatusesshow.php:138 msgid "Status deleted." -msgstr "" +msgstr "Status slettet." #: actions/apistatusesshow.php:144 msgid "No status with that ID found." -msgstr "" +msgstr "Ingen status med den ID-en funnet." -#: actions/apistatusesupdate.php:157 actions/newnotice.php:155 +#: actions/apistatusesupdate.php:161 actions/newnotice.php:155 #: lib/mailhandler.php:60 #, php-format msgid "That's too long. Max notice size is %d chars." msgstr "" -#: actions/apistatusesupdate.php:198 +#: actions/apistatusesupdate.php:202 msgid "Not found" -msgstr "" +msgstr "Ikke funnet" -#: actions/apistatusesupdate.php:221 actions/newnotice.php:178 +#: actions/apistatusesupdate.php:225 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 msgid "Unsupported format." -msgstr "" +msgstr "Formatet støttes ikke." #: actions/apitimelinefavorites.php:108 -#, fuzzy, php-format +#, php-format msgid "%1$s / Favorites from %2$s" -msgstr "%1$s / Oppdateringer som svarer til %2$s" +msgstr "%1$s / Favoritter fra %2$s" -#: actions/apitimelinefavorites.php:120 -#, fuzzy, php-format +#: actions/apitimelinefavorites.php:117 +#, php-format msgid "%1$s updates favorited by %2$s / %2$s." -msgstr "%1$s oppdateringer som svarer på oppdateringer fra %2$s / %3$s." +msgstr "%1$s oppdateringer markert som favoritt av %2$s / %2$s." #: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 #: actions/grouprss.php:131 actions/userrss.php:90 @@ -489,65 +644,59 @@ msgstr "%1$s oppdateringer som svarer på oppdateringer fra %2$s / %3$s." msgid "%s timeline" msgstr "%s tidslinje" -#: actions/apitimelinegroup.php:117 actions/apitimelineuser.php:126 +#: actions/apitimelinegroup.php:114 actions/apitimelineuser.php:126 #: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" -msgstr "" +msgstr "Oppdateringar fra %1$s på %2$s!" #: actions/apitimelinementions.php:117 -#, fuzzy, php-format +#, php-format msgid "%1$s / Updates mentioning %2$s" -msgstr "%1$s / Oppdateringer som svarer til %2$s" +msgstr "%1$s / Oppdateringer som nevner %2$s" #: actions/apitimelinementions.php:127 #, 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/apitimelinepublic.php:107 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "%s offentlig tidslinje" -#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "%s oppdateringer fra alle sammen!" -#: actions/apitimelineretweetedbyme.php:112 -#, php-format -msgid "Repeated by %s" -msgstr "" - #: actions/apitimelineretweetedtome.php:111 -#, fuzzy, php-format +#, php-format msgid "Repeated to %s" -msgstr "Svar til %s" +msgstr "Gjentatt til %s" -#: actions/apitimelineretweetsofme.php:112 -#, fuzzy, php-format +#: actions/apitimelineretweetsofme.php:114 +#, php-format msgid "Repeats of %s" -msgstr "Svar til %s" +msgstr "Repetisjoner av %s" #: actions/apitimelinetag.php:102 actions/tag.php:66 #, php-format msgid "Notices tagged with %s" -msgstr "" +msgstr "Notiser merket med %s" -#: actions/apitimelinetag.php:108 actions/tagrss.php:64 -#, fuzzy, php-format +#: actions/apitimelinetag.php:104 actions/tagrss.php:64 +#, php-format msgid "Updates tagged with %1$s on %2$s!" -msgstr "Mikroblogg av %s" +msgstr "Oppdateringer merket med %1$s på %2$s!" #: actions/apiusershow.php:96 -#, fuzzy msgid "Not found." -msgstr "Ingen id." +msgstr "Ikke funnet." #: actions/attachment.php:73 msgid "No such attachment." -msgstr "" +msgstr "Ingen slike vedlegg." #: actions/avatarbynickname.php:59 actions/blockedfromgroup.php:73 #: actions/editgroup.php:84 actions/groupdesignsettings.php:84 @@ -555,11 +704,11 @@ msgstr "" #: actions/grouprss.php:91 actions/joingroup.php:76 actions/leavegroup.php:76 #: actions/showgroup.php:121 msgid "No nickname." -msgstr "" +msgstr "Ingen kallenavn." #: actions/avatarbynickname.php:64 msgid "No size." -msgstr "" +msgstr "Ingen størrelse." #: actions/avatarbynickname.php:69 msgid "Invalid size." @@ -583,25 +732,23 @@ msgstr "" #: actions/avatarsettings.php:119 actions/avatarsettings.php:197 #: actions/grouplogo.php:251 -#, fuzzy msgid "Avatar settings" -msgstr "Innstillinger for IM" +msgstr "Avatarinnstillinger" #: actions/avatarsettings.php:127 actions/avatarsettings.php:205 #: actions/grouplogo.php:199 actions/grouplogo.php:259 msgid "Original" -msgstr "" +msgstr "Original" #: actions/avatarsettings.php:142 actions/avatarsettings.php:217 #: actions/grouplogo.php:210 actions/grouplogo.php:271 msgid "Preview" -msgstr "" +msgstr "Forhåndsvis" -#: actions/avatarsettings.php:149 lib/deleteuserform.php:66 -#: lib/noticelist.php:611 -#, fuzzy +#: actions/avatarsettings.php:149 actions/showapplication.php:252 +#: lib/deleteuserform.php:66 lib/noticelist.php:637 msgid "Delete" -msgstr "slett" +msgstr "Slett" #: actions/avatarsettings.php:166 actions/grouplogo.php:233 msgid "Upload" @@ -609,30 +756,7 @@ msgstr "Last opp" #: actions/avatarsettings.php:231 actions/grouplogo.php:286 msgid "Crop" -msgstr "" - -#: actions/avatarsettings.php:268 actions/deletenotice.php:157 -#: actions/disfavor.php:74 actions/emailsettings.php:238 actions/favor.php:75 -#: actions/geocode.php:50 actions/groupblock.php:66 actions/grouplogo.php:309 -#: actions/groupunblock.php:66 actions/imsettings.php:206 -#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 -#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 -#: actions/othersettings.php:145 actions/passwordsettings.php:138 -#: actions/profilesettings.php:194 actions/recoverpassword.php:337 -#: actions/register.php:165 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 -#: actions/subscribe.php:46 actions/tagother.php:166 -#: 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/avatarsettings.php:281 actions/designadminpanel.php:103 -#: actions/emailsettings.php:256 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 "" +msgstr "Beskjær" #: actions/avatarsettings.php:328 msgid "Pick a square area of the image to be your avatar" @@ -648,21 +772,19 @@ msgstr "Brukerbildet har blitt oppdatert." #: actions/avatarsettings.php:369 msgid "Failed updating avatar." -msgstr "" +msgstr "Oppdatering av avatar mislyktes." #: actions/avatarsettings.php:393 -#, fuzzy msgid "Avatar deleted." -msgstr "Brukerbildet har blitt oppdatert." +msgstr "Avatar slettet." #: actions/block.php:69 -#, fuzzy msgid "You already blocked that user." -msgstr "Du er allerede logget inn!" +msgstr "Du har allerede blokkert den brukeren." #: actions/block.php:105 actions/block.php:128 actions/groupblock.php:160 msgid "Block user" -msgstr "" +msgstr "Blokker brukeren" #: actions/block.php:130 msgid "" @@ -671,25 +793,25 @@ msgid "" "will not be notified of any @-replies from them." msgstr "" -#: actions/block.php:143 actions/deletenotice.php:145 -#: actions/deleteuser.php:147 actions/groupblock.php:178 +#: actions/block.php:143 actions/deleteapplication.php:153 +#: actions/deletenotice.php:145 actions/deleteuser.php:147 +#: actions/groupblock.php:178 msgid "No" -msgstr "" +msgstr "Nei" #: actions/block.php:143 actions/deleteuser.php:147 -#, fuzzy msgid "Do not block this user" -msgstr "Kan ikke slette notisen." +msgstr "Ikke blokker denne brukeren" -#: actions/block.php:144 actions/deletenotice.php:146 -#: actions/deleteuser.php:148 actions/groupblock.php:179 -#: lib/repeatform.php:132 +#: actions/block.php:144 actions/deleteapplication.php:158 +#: actions/deletenotice.php:146 actions/deleteuser.php:148 +#: actions/groupblock.php:179 lib/repeatform.php:132 msgid "Yes" msgstr "Ja" -#: actions/block.php:144 actions/groupmembers.php:346 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80 msgid "Block this user" -msgstr "" +msgstr "Blokker denne brukeren" #: actions/block.php:167 msgid "Failed to save block information." @@ -702,19 +824,18 @@ msgstr "" #: actions/grouprss.php:98 actions/groupunblock.php:86 #: actions/joingroup.php:83 actions/leavegroup.php:83 actions/makeadmin.php:86 #: actions/showgroup.php:137 lib/command.php:212 lib/command.php:260 -#, fuzzy msgid "No such group." -msgstr "Klarte ikke å lagre profil." +msgstr "Ingen slik gruppe." #: actions/blockedfromgroup.php:90 -#, fuzzy, php-format +#, php-format msgid "%s blocked profiles" -msgstr "Klarte ikke å lagre profil." +msgstr "%s blokkerte profiler" #: actions/blockedfromgroup.php:93 -#, fuzzy, php-format +#, php-format msgid "%1$s blocked profiles, page %2$d" -msgstr "%s og venner" +msgstr "%1$s blokkerte profiler, side %2$d" #: actions/blockedfromgroup.php:108 msgid "A list of the users blocked from joining this group." @@ -734,11 +855,11 @@ msgstr "" #: actions/bookmarklet.php:50 msgid "Post to " -msgstr "" +msgstr "Post til " #: actions/confirmaddress.php:75 msgid "No confirmation code." -msgstr "" +msgstr "Ingen bekreftelseskode." #: actions/confirmaddress.php:80 msgid "Confirmation code not found." @@ -755,7 +876,7 @@ msgstr "" #: actions/confirmaddress.php:94 msgid "That address has already been confirmed." -msgstr "" +msgstr "Den adressen har allerede blitt bekreftet." #: actions/confirmaddress.php:114 actions/emailsettings.php:296 #: actions/emailsettings.php:427 actions/imsettings.php:258 @@ -768,31 +889,71 @@ msgstr "Klarte ikke å oppdatere bruker." #: actions/confirmaddress.php:126 actions/emailsettings.php:391 #: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." -msgstr "" +msgstr "Kunne ikke slette e-postbekreftelse." #: actions/confirmaddress.php:144 -msgid "Confirm Address" +msgid "Confirm address" msgstr "Bekreft adresse" #: actions/confirmaddress.php:159 #, php-format msgid "The address \"%s\" has been confirmed for your account." -msgstr "" +msgstr "Adressen «%s» har blitt bekreftet for din konto." #: actions/conversation.php:99 -#, fuzzy msgid "Conversation" -msgstr "Bekreftelseskode" +msgstr "Samtale" #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 #: lib/profileaction.php:216 lib/searchgroupnav.php:82 msgid "Notices" msgstr "" +#: actions/deleteapplication.php:63 +msgid "You must be logged in to delete an application." +msgstr "Du må være innlogget for å slette et program." + +#: actions/deleteapplication.php:71 +msgid "Application not found." +msgstr "Program ikke funnet." + +#: actions/deleteapplication.php:78 actions/editapplication.php:77 +#: actions/showapplication.php:94 +msgid "You are not the owner of this application." +msgstr "Du er ikke eieren av dette programmet." + +#: actions/deleteapplication.php:102 actions/editapplication.php:127 +#: actions/newapplication.php:110 actions/showapplication.php:118 +#: lib/action.php:1197 +msgid "There was a problem with your session token." +msgstr "" + +#: actions/deleteapplication.php:123 actions/deleteapplication.php:147 +msgid "Delete application" +msgstr "Slett program" + +#: actions/deleteapplication.php:149 +msgid "" +"Are you sure you want to delete this application? This will clear all data " +"about the application from the database, including all existing user " +"connections." +msgstr "" +"Er du sikker på at du vil slette dette programmet? Dette vil slette alle " +"data om programmet fra databasen, inkludert alle eksisterende " +"brukertilkoblinger." + +#: actions/deleteapplication.php:156 +msgid "Do not delete this application" +msgstr "Ikke slett dette programmet" + +#: actions/deleteapplication.php:160 +msgid "Delete this application" +msgstr "Slett dette programmet" + #: 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/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 #: lib/adminpanelaction.php:72 lib/profileformaction.php:63 #: lib/settingsaction.php:72 @@ -808,49 +969,48 @@ msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " "be undone." msgstr "" +"Du er i ferd med å slette en notis permanent. Når dette er gjort kan det " +"ikke gjøres om." #: actions/deletenotice.php:109 actions/deletenotice.php:141 msgid "Delete notice" -msgstr "" +msgstr "Slett notis" #: 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/deletenotice.php:145 -#, fuzzy msgid "Do not delete this notice" -msgstr "Kan ikke slette notisen." +msgstr "Ikke slett denne notisen" -#: actions/deletenotice.php:146 lib/noticelist.php:611 +#: actions/deletenotice.php:146 lib/noticelist.php:637 msgid "Delete this notice" -msgstr "" +msgstr "Slett denne notisen" #: actions/deleteuser.php:67 -#, fuzzy msgid "You cannot delete users." -msgstr "Klarte ikke å oppdatere bruker." +msgstr "Du kan ikke slette brukere." #: actions/deleteuser.php:74 -#, fuzzy msgid "You can only delete local users." -msgstr "Ugyldig OpenID" +msgstr "Du kan bare slette lokale brukere." #: actions/deleteuser.php:110 actions/deleteuser.php:133 -#, fuzzy msgid "Delete user" -msgstr "slett" +msgstr "Slett bruker" #: actions/deleteuser.php:135 msgid "" "Are you sure you want to delete this user? This will clear all data about " "the user from the database, without a backup." msgstr "" +"Er du sikker på at du vil slette denne brukeren? Dette vil slette alle data " +"om brukeren fra databasen, uten sikkerhetskopi." #: actions/deleteuser.php:148 lib/deleteuserform.php:77 -#, fuzzy msgid "Delete this user" -msgstr "Kan ikke slette notisen." +msgstr "Slett denne brukeren" #: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 #: lib/adminpanelaction.php:316 lib/groupnav.php:119 @@ -862,9 +1022,8 @@ msgid "Design settings for this StatusNet site." msgstr "" #: actions/designadminpanel.php:275 -#, fuzzy msgid "Invalid logo URL." -msgstr "Ugyldig størrelse" +msgstr "Ugyldig logo-URL." #: actions/designadminpanel.php:279 #, php-format @@ -872,13 +1031,12 @@ msgid "Theme not available: %s" msgstr "" #: actions/designadminpanel.php:375 -#, fuzzy msgid "Change logo" -msgstr "Endre passordet ditt" +msgstr "Endre logo" #: actions/designadminpanel.php:380 msgid "Site logo" -msgstr "" +msgstr "Nettstedslogo" #: actions/designadminpanel.php:387 #, fuzzy @@ -896,12 +1054,12 @@ msgstr "" #: actions/designadminpanel.php:417 lib/designsettings.php:101 msgid "Change background image" -msgstr "" +msgstr "Endre bakgrunnsbilde" #: actions/designadminpanel.php:422 actions/designadminpanel.php:497 #: lib/designsettings.php:178 msgid "Background" -msgstr "" +msgstr "Bakgrunn" #: actions/designadminpanel.php:427 #, php-format @@ -931,9 +1089,8 @@ msgid "Change colours" msgstr "Endre farger" #: actions/designadminpanel.php:510 lib/designsettings.php:191 -#, fuzzy msgid "Content" -msgstr "Koble til" +msgstr "Innhold" #: actions/designadminpanel.php:523 lib/designsettings.php:204 #, fuzzy @@ -950,7 +1107,7 @@ msgstr "Lenker" #: actions/designadminpanel.php:577 lib/designsettings.php:247 msgid "Use defaults" -msgstr "" +msgstr "Bruk standard" #: actions/designadminpanel.php:578 lib/designsettings.php:248 msgid "Restore default designs" @@ -960,32 +1117,89 @@ msgstr "" msgid "Reset back to default" msgstr "" -#: actions/designadminpanel.php:586 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 -#: actions/pathsadminpanel.php:324 actions/profilesettings.php:174 -#: actions/siteadminpanel.php:388 actions/smssettings.php:181 -#: actions/subscriptions.php:203 actions/tagother.php:154 -#: actions/useradminpanel.php:313 lib/designsettings.php:256 -#: lib/groupeditform.php:202 -msgid "Save" -msgstr "Lagre" - #: actions/designadminpanel.php:587 lib/designsettings.php:257 msgid "Save design" msgstr "" #: actions/disfavor.php:81 msgid "This notice is not a favorite!" -msgstr "" +msgstr "Denne notisen er ikke en favoritt!" #: actions/disfavor.php:94 msgid "Add to favorites" +msgstr "Legg til i favoritter" + +#: actions/doc.php:158 +#, php-format +msgid "No such document \"%s\"" +msgstr "Inget slikt dokument «%s»" + +#: actions/editapplication.php:54 +msgid "Edit Application" +msgstr "Rediger program" + +#: actions/editapplication.php:66 +msgid "You must be logged in to edit an application." +msgstr "Du må være innlogget for å redigere et program." + +#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:166 +#: actions/showapplication.php:87 +msgid "No such application." +msgstr "Inget slikt program." + +#: actions/editapplication.php:161 +msgid "Use this form to edit your application." +msgstr "Bruk dette skjemaet for å redigere programmet ditt." + +#: actions/editapplication.php:177 actions/newapplication.php:159 +msgid "Name is required." +msgstr "Navn kreves." + +#: actions/editapplication.php:180 actions/newapplication.php:165 +msgid "Name is too long (max 255 chars)." +msgstr "Navn er for langt (maks 250 tegn)." + +#: actions/editapplication.php:183 actions/newapplication.php:162 +msgid "Name already in use. Try another one." +msgstr "Navn allerede i bruk. Prøv et annet." + +#: actions/editapplication.php:186 actions/newapplication.php:168 +msgid "Description is required." +msgstr "Beskrivelse kreves." + +#: actions/editapplication.php:194 +msgid "Source URL is too long." +msgstr "Kilde-URL er for lang." + +#: actions/editapplication.php:200 actions/newapplication.php:185 +msgid "Source URL is not valid." +msgstr "Kilde-URL er ikke gyldig." + +#: actions/editapplication.php:203 actions/newapplication.php:188 +msgid "Organization is required." +msgstr "Organisasjon kreves." + +#: actions/editapplication.php:206 actions/newapplication.php:191 +msgid "Organization is too long (max 255 chars)." +msgstr "Organisasjon er for lang (maks 255 tegn)." + +#: actions/editapplication.php:209 actions/newapplication.php:194 +msgid "Organization homepage is required." msgstr "" -#: actions/doc.php:69 -msgid "No such document." +#: actions/editapplication.php:218 actions/newapplication.php:206 +msgid "Callback is too long." msgstr "" +#: actions/editapplication.php:225 actions/newapplication.php:215 +msgid "Callback URL is not valid." +msgstr "" + +#: actions/editapplication.php:258 +#, fuzzy +msgid "Could not update application." +msgstr "Klarte ikke å oppdatere bruker." + #: actions/editgroup.php:56 #, php-format msgid "Edit %s group" @@ -993,7 +1207,7 @@ msgstr "" #: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." -msgstr "" +msgstr "Du må være innlogget for å opprette en gruppe." #: actions/editgroup.php:103 actions/editgroup.php:168 #: actions/groupdesignsettings.php:104 actions/grouplogo.php:106 @@ -1006,28 +1220,25 @@ msgid "Use this form to edit the group." msgstr "" #: actions/editgroup.php:201 actions/newgroup.php:145 -#, fuzzy, php-format +#, php-format msgid "description is too long (max %d chars)." -msgstr "Bioen er for lang (max 140 tegn)" +msgstr "beskrivelse er for lang (maks %d tegn)" #: actions/editgroup.php:253 -#, fuzzy msgid "Could not update group." -msgstr "Klarte ikke å oppdatere bruker." +msgstr "Kunne ikke oppdatere gruppe." -#: actions/editgroup.php:259 classes/User_group.php:390 -#, fuzzy +#: actions/editgroup.php:259 classes/User_group.php:433 msgid "Could not create aliases." -msgstr "Klarte ikke å lagre avatar-informasjonen" +msgstr "Kunne ikke opprette alias." #: actions/editgroup.php:269 msgid "Options saved." msgstr "" #: actions/emailsettings.php:60 -#, fuzzy msgid "Email settings" -msgstr "Innstillinger for e-post" +msgstr "E-postinnstillinger" #: actions/emailsettings.php:71 #, php-format @@ -1058,18 +1269,18 @@ msgstr "" "melding med videre veiledning." #: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 +#: actions/smssettings.php:126 lib/applicationeditform.php:331 +#: lib/applicationeditform.php:332 msgid "Cancel" msgstr "Avbryt" #: actions/emailsettings.php:121 -#, fuzzy msgid "Email address" msgstr "E-postadresse" #: actions/emailsettings.php:123 msgid "Email address, like \"UserName@example.org\"" -msgstr "" +msgstr "E-postadresse («brukernavn@eksempel.org»)" #: actions/emailsettings.php:126 actions/imsettings.php:133 #: actions/smssettings.php:145 @@ -1139,7 +1350,7 @@ msgid "Cannot normalize that email address" msgstr "Klarer ikke normalisere epostadressen" #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:157 +#: actions/siteadminpanel.php:143 msgid "Not a valid email address." msgstr "Ugyldig e-postadresse." @@ -1151,7 +1362,7 @@ msgstr "Det er allerede din e-postadresse." msgid "That email address already belongs to another user." msgstr "" -#: actions/emailsettings.php:353 actions/imsettings.php:317 +#: actions/emailsettings.php:353 actions/imsettings.php:319 #: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." msgstr "" @@ -1185,7 +1396,7 @@ msgstr "Det er ikke din e-postadresse." #: actions/emailsettings.php:432 actions/imsettings.php:408 #: actions/smssettings.php:425 msgid "The address was removed." -msgstr "" +msgstr "Adressen ble fjernet." #: actions/emailsettings.php:446 actions/smssettings.php:518 msgid "No incoming email address." @@ -1212,15 +1423,15 @@ msgstr "" msgid "Disfavor favorite" msgstr "" -#: actions/favorited.php:65 lib/popularnoticesection.php:88 +#: actions/favorited.php:65 lib/popularnoticesection.php:91 #: lib/publicgroupnav.php:93 msgid "Popular notices" -msgstr "" +msgstr "Populære notiser" #: actions/favorited.php:67 #, php-format msgid "Popular notices, page %d" -msgstr "" +msgstr "Populære notiser, side %d" #: actions/favorited.php:79 msgid "The most popular notices on the site right now." @@ -1321,14 +1532,12 @@ msgid "Error updating remote profile" msgstr "" #: actions/getfile.php:79 -#, fuzzy msgid "No such file." -msgstr "Klarte ikke å lagre profil." +msgstr "Ingen slik fil." #: actions/getfile.php:83 -#, fuzzy msgid "Cannot read file." -msgstr "Klarte ikke å lagre profil." +msgstr "Kan ikke lese fil." #: actions/groupblock.php:71 actions/groupunblock.php:71 #: actions/makeadmin.php:71 actions/subedit.php:46 @@ -1360,7 +1569,7 @@ msgstr "Du er allerede logget inn!" msgid "User is not a member of group." msgstr "" -#: actions/groupblock.php:136 actions/groupmembers.php:314 +#: actions/groupblock.php:136 actions/groupmembers.php:316 msgid "Block user from group" msgstr "" @@ -1385,9 +1594,8 @@ msgid "Database error blocking user from group." msgstr "" #: actions/groupbyid.php:74 actions/userbyid.php:70 -#, fuzzy msgid "No ID." -msgstr "Ingen id." +msgstr "Ingen ID." #: actions/groupdesignsettings.php:68 msgid "You must be logged in to edit a group." @@ -1415,7 +1623,7 @@ msgstr "" #: actions/grouplogo.php:139 actions/grouplogo.php:192 msgid "Group logo" -msgstr "" +msgstr "Gruppelogo" #: actions/grouplogo.php:150 #, php-format @@ -1433,9 +1641,8 @@ msgid "Pick a square area of the image to be the logo." msgstr "" #: actions/grouplogo.php:396 -#, fuzzy msgid "Logo updated." -msgstr "Avataren har blitt oppdatert." +msgstr "Logo oppdatert." #: actions/grouplogo.php:398 msgid "Failed updating logo." @@ -1444,7 +1651,7 @@ msgstr "" #: actions/groupmembers.php:93 lib/groupnav.php:92 #, php-format msgid "%s group members" -msgstr "" +msgstr "%s gruppemedlemmer" #: actions/groupmembers.php:96 #, php-format @@ -1455,23 +1662,23 @@ msgstr "" msgid "A list of the users in this group." msgstr "En liste over brukerne i denne gruppen." -#: actions/groupmembers.php:175 lib/action.php:442 lib/groupnav.php:107 +#: actions/groupmembers.php:175 lib/action.php:448 lib/groupnav.php:107 msgid "Admin" msgstr "Administrator" -#: actions/groupmembers.php:346 lib/blockform.php:69 +#: actions/groupmembers.php:348 lib/blockform.php:69 msgid "Block" msgstr "Blokkér" -#: actions/groupmembers.php:441 +#: actions/groupmembers.php:443 msgid "Make user an admin of the group" msgstr "Gjør brukeren til en administrator for gruppen" -#: actions/groupmembers.php:473 +#: actions/groupmembers.php:475 msgid "Make Admin" msgstr "Gjør til administrator" -#: actions/groupmembers.php:473 +#: actions/groupmembers.php:475 msgid "Make this user an admin" msgstr "Gjør denne brukeren til administrator" @@ -1501,9 +1708,8 @@ msgid "" msgstr "" #: actions/groups.php:107 actions/usergroups.php:124 lib/groupeditform.php:122 -#, fuzzy msgid "Create a new group" -msgstr "Opprett en ny konto" +msgstr "Opprett en ny gruppe" #: actions/groupsearch.php:52 #, php-format @@ -1513,14 +1719,13 @@ msgid "" msgstr "" #: actions/groupsearch.php:58 -#, fuzzy msgid "Group search" -msgstr "Tekst-søk" +msgstr "Gruppesøk" #: actions/groupsearch.php:79 actions/noticesearch.php:117 #: actions/peoplesearch.php:83 msgid "No results." -msgstr "" +msgstr "Ingen resultat." #: actions/groupsearch.php:82 #, php-format @@ -1638,10 +1843,15 @@ msgstr "" msgid "That is not your Jabber ID." msgstr "Det er ikke din Jabber ID." +#: actions/inbox.php:59 +#, php-format +msgid "Inbox for %1$s - page %2$d" +msgstr "Innboks for %1$s - side %2$d" + #: actions/inbox.php:62 #, php-format msgid "Inbox for %s" -msgstr "" +msgstr "Innboks for %s" #: actions/inbox.php:115 msgid "This is your inbox, which lists your incoming private messages." @@ -1649,7 +1859,7 @@ msgstr "" #: actions/invite.php:39 msgid "Invites have been disabled." -msgstr "" +msgstr "Invitasjoner har blitt deaktivert." #: actions/invite.php:41 #, php-format @@ -1659,15 +1869,15 @@ msgstr "" #: actions/invite.php:72 #, php-format msgid "Invalid email address: %s" -msgstr "" +msgstr "Ugyldig e-postadresse: %s" #: actions/invite.php:110 msgid "Invitation(s) sent" -msgstr "" +msgstr "Invitasjon(er) sendt" #: actions/invite.php:112 msgid "Invite new users" -msgstr "" +msgstr "Inviter nye brukere" #: actions/invite.php:128 msgid "You are already subscribed to these users:" @@ -1676,7 +1886,7 @@ msgstr "" #: actions/invite.php:131 actions/invite.php:139 lib/command.php:306 #, php-format msgid "%1$s (%2$s)" -msgstr "" +msgstr "%1$s (%2$s)" #: actions/invite.php:136 msgid "" @@ -1700,7 +1910,7 @@ msgstr "" #: actions/invite.php:187 msgid "Email addresses" -msgstr "" +msgstr "E-postadresser" #: actions/invite.php:189 msgid "Addresses of friends to invite (one per line)" @@ -1708,13 +1918,13 @@ msgstr "Adresser til venner som skal inviteres (én per linje)" #: actions/invite.php:192 msgid "Personal message" -msgstr "" +msgstr "Personlig melding" #: actions/invite.php:194 msgid "Optionally add a personal message to the invitation." msgstr "" -#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:237 +#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:236 msgid "Send" msgstr "Send" @@ -1777,7 +1987,7 @@ msgstr "" #: actions/joingroup.php:60 msgid "You must be logged in to join a group." -msgstr "" +msgstr "Du må være innlogget for å bli med i en gruppe." #: actions/joingroup.php:131 #, php-format @@ -1793,9 +2003,9 @@ msgid "You are not a member of that group." msgstr "" #: actions/leavegroup.php:127 -#, fuzzy, php-format +#, php-format msgid "%1$s left group %2$s" -msgstr "%1$s sin status på %2$s" +msgstr "%1$s forlot gruppe %2$s" #: actions/login.php:80 actions/otp.php:62 actions/register.php:137 msgid "Already logged in." @@ -1810,7 +2020,7 @@ msgstr "Feil brukernavn eller passord" msgid "Error setting user. You are probably not authorized." msgstr "Ikke autorisert." -#: actions/login.php:188 actions/login.php:241 lib/action.php:460 +#: actions/login.php:188 actions/login.php:241 lib/action.php:466 #: lib/logingroupnav.php:79 msgid "Login" msgstr "Logg inn" @@ -1819,17 +2029,6 @@ msgstr "Logg inn" msgid "Login to site" msgstr "" -#: actions/login.php:230 actions/profilesettings.php:106 -#: actions/register.php:424 actions/showgroup.php:236 actions/tagother.php:94 -#: lib/groupeditform.php:152 lib/userprofile.php:131 -msgid "Nickname" -msgstr "Nick" - -#: actions/login.php:233 actions/register.php:429 -#: lib/accountsettingsaction.php:116 -msgid "Password" -msgstr "Passord" - #: actions/login.php:236 actions/register.php:478 msgid "Remember me" msgstr "Husk meg" @@ -1856,29 +2055,51 @@ msgid "" "(%%action.register%%) a new account." msgstr "" -#: actions/makeadmin.php:91 +#: actions/makeadmin.php:92 msgid "Only an admin can make another user an admin." msgstr "" -#: actions/makeadmin.php:95 +#: actions/makeadmin.php:96 #, fuzzy, php-format msgid "%1$s is already an admin for group \"%2$s\"." msgstr "Du er allerede logget inn!" -#: actions/makeadmin.php:132 +#: actions/makeadmin.php:133 #, fuzzy, php-format msgid "Can't get membership record for %1$s in group %2$s." msgstr "Klarte ikke å oppdatere bruker." -#: actions/makeadmin.php:145 +#: actions/makeadmin.php:146 #, fuzzy, php-format msgid "Can't make %1$s an admin for group %2$s." msgstr "Gjør brukeren til en administrator for gruppen" #: actions/microsummary.php:69 msgid "No current status" +msgstr "Ingen nåværende status" + +#: actions/newapplication.php:52 +#, fuzzy +msgid "New Application" +msgstr "Ingen slik side" + +#: actions/newapplication.php:64 +msgid "You must be logged in to register an application." msgstr "" +#: actions/newapplication.php:143 +msgid "Use this form to register a new application." +msgstr "" + +#: actions/newapplication.php:176 +msgid "Source URL is required." +msgstr "" + +#: actions/newapplication.php:258 actions/newapplication.php:267 +#, fuzzy +msgid "Could not create application." +msgstr "Klarte ikke å lagre avatar-informasjonen" + #: actions/newgroup.php:53 msgid "New group" msgstr "" @@ -1977,10 +2198,53 @@ msgstr "" #: actions/nudge.php:94 msgid "Nudge sent" -msgstr "" +msgstr "Knuff sendt" #: actions/nudge.php:97 msgid "Nudge sent!" +msgstr "Knuff sendt!" + +#: actions/oauthappssettings.php:59 +msgid "You must be logged in to list your applications." +msgstr "" + +#: actions/oauthappssettings.php:74 +msgid "OAuth applications" +msgstr "" + +#: actions/oauthappssettings.php:85 +msgid "Applications you have registered" +msgstr "" + +#: actions/oauthappssettings.php:135 +#, php-format +msgid "You have not registered any applications yet." +msgstr "" + +#: actions/oauthconnectionssettings.php:72 +msgid "Connected applications" +msgstr "" + +#: actions/oauthconnectionssettings.php:83 +msgid "You have allowed the following applications to access you account." +msgstr "" + +#: actions/oauthconnectionssettings.php:175 +#, fuzzy +msgid "You are not a user of that application." +msgstr "Du er allerede logget inn!" + +#: actions/oauthconnectionssettings.php:186 +msgid "Unable to revoke access for app: " +msgstr "" + +#: actions/oauthconnectionssettings.php:198 +#, php-format +msgid "You have not authorized any applications to use your account." +msgstr "" + +#: actions/oauthconnectionssettings.php:211 +msgid "Developers can edit the registration settings for their applications " msgstr "" #: actions/oembed.php:79 actions/shownotice.php:100 @@ -1994,14 +2258,14 @@ msgstr "%1$s sin status på %2$s" #: actions/oembed.php:157 msgid "content type " -msgstr "" +msgstr "innholdstype " #: actions/oembed.php:160 msgid "Only " -msgstr "" +msgstr "Bare " -#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1033 -#: lib/api.php:1061 lib/api.php:1171 +#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 +#: lib/api.php:1068 lib/api.php:1177 msgid "Not a supported data format." msgstr "" @@ -2014,9 +2278,8 @@ msgid "Notice Search" msgstr "" #: actions/othersettings.php:60 -#, fuzzy -msgid "Other Settings" -msgstr "Innstillinger for IM" +msgid "Other settings" +msgstr "Andre innstillinger" #: actions/othersettings.php:71 msgid "Manage various other options." @@ -2070,28 +2333,31 @@ msgstr "Nytt nick" msgid "Login token expired." msgstr "" +#: actions/outbox.php:58 +#, php-format +msgid "Outbox for %1$s - page %2$d" +msgstr "Utboks for %1$s - side %2$d" + #: actions/outbox.php:61 #, php-format msgid "Outbox for %s" -msgstr "" +msgstr "Utboks for %s" #: actions/outbox.php:116 msgid "This is your outbox, which lists private messages you have sent." -msgstr "" +msgstr "Dette er utboksen din som viser alle private meldinger du har sendt." #: actions/passwordsettings.php:58 msgid "Change password" msgstr "Endre passord" #: actions/passwordsettings.php:69 -#, fuzzy msgid "Change your password." -msgstr "Endre passord" +msgstr "Endre passordet ditt." #: actions/passwordsettings.php:96 actions/recoverpassword.php:231 -#, fuzzy msgid "Password change" -msgstr "Passordet ble lagret" +msgstr "Endre passord" #: actions/passwordsettings.php:104 msgid "Old password" @@ -2112,7 +2378,7 @@ msgstr "Bekreft" #: actions/passwordsettings.php:113 actions/recoverpassword.php:240 msgid "Same as password above" -msgstr "" +msgstr "Samme som passord ovenfor" #: actions/passwordsettings.php:117 msgid "Change" @@ -2120,11 +2386,11 @@ msgstr "Endre" #: actions/passwordsettings.php:154 actions/register.php:230 msgid "Password must be 6 or more characters." -msgstr "" +msgstr "Passord må være minst 6 tegn." #: actions/passwordsettings.php:157 actions/register.php:233 msgid "Passwords don't match." -msgstr "" +msgstr "Passordene var ikke like." #: actions/passwordsettings.php:165 msgid "Incorrect old password" @@ -2142,7 +2408,7 @@ msgstr "Klarer ikke å lagre nytt passord." msgid "Password saved." msgstr "Passordet ble lagret" -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:326 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:331 msgid "Paths" msgstr "" @@ -2150,138 +2416,153 @@ msgstr "" msgid "Path and server settings for this StatusNet site." msgstr "" -#: actions/pathsadminpanel.php:140 +#: actions/pathsadminpanel.php:157 #, php-format msgid "Theme directory not readable: %s" msgstr "" -#: actions/pathsadminpanel.php:146 +#: actions/pathsadminpanel.php:163 #, php-format msgid "Avatar directory not writable: %s" msgstr "" -#: actions/pathsadminpanel.php:152 +#: actions/pathsadminpanel.php:169 #, php-format msgid "Background directory not writable: %s" msgstr "" -#: actions/pathsadminpanel.php:160 +#: actions/pathsadminpanel.php:177 #, php-format msgid "Locales directory not readable: %s" msgstr "" -#: actions/pathsadminpanel.php:166 +#: actions/pathsadminpanel.php:183 msgid "Invalid SSL server. The maximum length is 255 characters." msgstr "" -#: actions/pathsadminpanel.php:217 actions/siteadminpanel.php:58 +#: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58 #: lib/adminpanelaction.php:311 msgid "Site" msgstr "" -#: actions/pathsadminpanel.php:221 +#: actions/pathsadminpanel.php:238 +msgid "Server" +msgstr "Tjener" + +#: actions/pathsadminpanel.php:238 +msgid "Site's server hostname." +msgstr "" + +#: actions/pathsadminpanel.php:242 msgid "Path" msgstr "" -#: actions/pathsadminpanel.php:221 +#: actions/pathsadminpanel.php:242 msgid "Site path" msgstr "" -#: actions/pathsadminpanel.php:225 +#: actions/pathsadminpanel.php:246 msgid "Path to locales" msgstr "" -#: actions/pathsadminpanel.php:225 +#: actions/pathsadminpanel.php:246 msgid "Directory path to locales" msgstr "" -#: actions/pathsadminpanel.php:232 -msgid "Theme" -msgstr "" - -#: actions/pathsadminpanel.php:237 -msgid "Theme server" -msgstr "" - -#: actions/pathsadminpanel.php:241 -msgid "Theme path" -msgstr "" - -#: actions/pathsadminpanel.php:245 -msgid "Theme directory" +#: actions/pathsadminpanel.php:250 +msgid "Fancy URLs" msgstr "" #: actions/pathsadminpanel.php:252 +msgid "Use fancy (more readable and memorable) URLs?" +msgstr "" + +#: actions/pathsadminpanel.php:259 +msgid "Theme" +msgstr "" + +#: actions/pathsadminpanel.php:264 +msgid "Theme server" +msgstr "" + +#: actions/pathsadminpanel.php:268 +msgid "Theme path" +msgstr "" + +#: actions/pathsadminpanel.php:272 +msgid "Theme directory" +msgstr "" + +#: actions/pathsadminpanel.php:279 #, fuzzy msgid "Avatars" msgstr "Brukerbilde" -#: actions/pathsadminpanel.php:257 +#: actions/pathsadminpanel.php:284 #, fuzzy msgid "Avatar server" msgstr "Innstillinger for IM" -#: actions/pathsadminpanel.php:261 +#: actions/pathsadminpanel.php:288 #, fuzzy msgid "Avatar path" msgstr "Brukerbildet har blitt oppdatert." -#: actions/pathsadminpanel.php:265 +#: actions/pathsadminpanel.php:292 #, fuzzy msgid "Avatar directory" msgstr "Brukerbildet har blitt oppdatert." -#: actions/pathsadminpanel.php:274 +#: actions/pathsadminpanel.php:301 msgid "Backgrounds" msgstr "" -#: actions/pathsadminpanel.php:278 +#: actions/pathsadminpanel.php:305 msgid "Background server" msgstr "" -#: actions/pathsadminpanel.php:282 +#: actions/pathsadminpanel.php:309 msgid "Background path" msgstr "" -#: actions/pathsadminpanel.php:286 +#: actions/pathsadminpanel.php:313 msgid "Background directory" msgstr "" -#: actions/pathsadminpanel.php:293 +#: actions/pathsadminpanel.php:320 msgid "SSL" -msgstr "" +msgstr "SSL" -#: actions/pathsadminpanel.php:296 actions/siteadminpanel.php:346 -#, fuzzy +#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 msgid "Never" -msgstr "Gjenopprett" +msgstr "Aldri" -#: actions/pathsadminpanel.php:297 +#: actions/pathsadminpanel.php:324 msgid "Sometimes" -msgstr "" +msgstr "Noen ganger" -#: actions/pathsadminpanel.php:298 +#: actions/pathsadminpanel.php:325 msgid "Always" -msgstr "" +msgstr "Alltid" -#: actions/pathsadminpanel.php:302 +#: actions/pathsadminpanel.php:329 msgid "Use SSL" -msgstr "" +msgstr "Bruk SSL" -#: actions/pathsadminpanel.php:303 +#: actions/pathsadminpanel.php:330 msgid "When to use SSL" msgstr "" -#: actions/pathsadminpanel.php:308 +#: actions/pathsadminpanel.php:335 #, fuzzy msgid "SSL server" msgstr "Gjenopprett" -#: actions/pathsadminpanel.php:309 +#: actions/pathsadminpanel.php:336 msgid "Server to direct SSL requests to" msgstr "" -#: actions/pathsadminpanel.php:325 +#: actions/pathsadminpanel.php:352 msgid "Save paths" msgstr "" @@ -2339,7 +2620,7 @@ msgid "Full name" msgstr "Fullt navn" #: actions/profilesettings.php:115 actions/register.php:453 -#: lib/groupeditform.php:161 +#: lib/applicationeditform.php:228 lib/groupeditform.php:161 msgid "Homepage" msgstr "Hjemmesiden" @@ -2363,7 +2644,7 @@ msgstr "Om meg" #: actions/profilesettings.php:132 actions/register.php:471 #: actions/showgroup.php:256 actions/tagother.php:112 -#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:164 msgid "Location" msgstr "" @@ -2387,13 +2668,13 @@ msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" -#: actions/profilesettings.php:151 actions/siteadminpanel.php:294 +#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 msgid "Language" msgstr "Språk" #: actions/profilesettings.php:152 msgid "Preferred language" -msgstr "" +msgstr "Foretrukket språk" #: actions/profilesettings.php:161 msgid "Timezone" @@ -2401,7 +2682,7 @@ msgstr "Tidssone" #: actions/profilesettings.php:162 msgid "What timezone are you normally in?" -msgstr "" +msgstr "Hvilken tidssone er du vanligvis i?" #: actions/profilesettings.php:167 msgid "" @@ -2410,42 +2691,42 @@ msgstr "" "Abonner automatisk på de som abonnerer på meg (best for ikke-mennesker)" #: actions/profilesettings.php:228 actions/register.php:223 -#, fuzzy, php-format +#, php-format msgid "Bio is too long (max %d chars)." -msgstr "«Om meg» er for lang (maks 140 tegn)." +msgstr "«Om meg» er for lang (maks %d tegn)." -#: actions/profilesettings.php:235 actions/siteadminpanel.php:164 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 msgid "Timezone not selected." -msgstr "" +msgstr "Tidssone ikke valgt." #: actions/profilesettings.php:241 msgid "Language is too long (max 50 chars)." -msgstr "" +msgstr "Språk er for langt (maks 50 tegn)." #: actions/profilesettings.php:253 actions/tagother.php:178 #, fuzzy, php-format msgid "Invalid tag: \"%s\"" msgstr "Ugyldig hjemmeside '%s'" -#: actions/profilesettings.php:302 +#: actions/profilesettings.php:306 msgid "Couldn't update user for autosubscribe." msgstr "" -#: actions/profilesettings.php:359 +#: actions/profilesettings.php:363 #, fuzzy msgid "Couldn't save location prefs." msgstr "Klarte ikke å lagre profil." -#: actions/profilesettings.php:371 +#: actions/profilesettings.php:375 msgid "Couldn't save profile." msgstr "Klarte ikke å lagre profil." -#: actions/profilesettings.php:379 +#: actions/profilesettings.php:383 #, fuzzy msgid "Couldn't save tags." msgstr "Klarte ikke å lagre profil." -#: actions/profilesettings.php:387 lib/adminpanelaction.php:137 +#: actions/profilesettings.php:391 lib/adminpanelaction.php:137 msgid "Settings saved." msgstr "" @@ -2467,37 +2748,37 @@ msgstr "" msgid "Public timeline" msgstr "" -#: actions/public.php:151 +#: actions/public.php:159 msgid "Public Stream Feed (RSS 1.0)" msgstr "" -#: actions/public.php:155 +#: actions/public.php:163 msgid "Public Stream Feed (RSS 2.0)" msgstr "" -#: actions/public.php:159 +#: actions/public.php:167 #, fuzzy msgid "Public Stream Feed (Atom)" msgstr "%s offentlig strøm" -#: actions/public.php:179 +#: actions/public.php:187 #, php-format msgid "" "This is the public timeline for %%site.name%% but no one has posted anything " "yet." msgstr "" -#: actions/public.php:182 +#: actions/public.php:190 msgid "Be the first to post!" msgstr "" -#: actions/public.php:186 +#: actions/public.php:194 #, php-format msgid "" "Why not [register an account](%%action.register%%) and be the first to post!" msgstr "" -#: actions/public.php:233 +#: actions/public.php:241 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2506,7 +2787,7 @@ msgid "" "friends, family, and colleagues! ([Read more](%%doc.help%%))" msgstr "" -#: actions/public.php:238 +#: actions/public.php:246 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2539,7 +2820,7 @@ msgid "" "one!" msgstr "" -#: actions/publictagcloud.php:131 +#: actions/publictagcloud.php:134 msgid "Tag cloud" msgstr "" @@ -2677,7 +2958,7 @@ msgstr "" msgid "Registration successful" msgstr "" -#: actions/register.php:114 actions/register.php:503 lib/action.php:457 +#: actions/register.php:114 actions/register.php:503 lib/action.php:463 #: lib/logingroupnav.php:85 msgid "Register" msgstr "" @@ -2692,7 +2973,7 @@ msgstr "" #: actions/register.php:212 msgid "Email address already exists." -msgstr "" +msgstr "E-postadressen finnes allerede." #: actions/register.php:243 actions/register.php:265 msgid "Invalid username or password." @@ -2715,10 +2996,10 @@ msgstr "6 eller flere tegn. Påkrevd." #: actions/register.php:434 msgid "Same as password above. Required." -msgstr "" +msgstr "Samme som passord over. Kreves." #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:270 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 msgid "Email" msgstr "E-post" @@ -2732,23 +3013,22 @@ msgstr "Lengre navn, helst ditt \"ekte\" navn" #: actions/register.php:494 msgid "My text and files are available under " -msgstr "" +msgstr "Teksten og filene mine er tilgjengelig under " #: actions/register.php:496 msgid "Creative Commons Attribution 3.0" -msgstr "" +msgstr "Creative Commons Navngivelse 3.0" #: actions/register.php:497 -#, fuzzy msgid "" " except this private data: password, email address, IM address, and phone " "number." msgstr "" -"utenom disse private dataene: passord, epost, adresse, lynmeldingsadresse og " -"telefonnummer." +" utenom disse private dataene: passord, e-postadresse, lynmeldingsadresse " +"og telefonnummer." #: actions/register.php:538 -#, fuzzy, php-format +#, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " "want to...\n" @@ -2765,20 +3045,20 @@ msgid "" "\n" "Thanks for signing up and we hope you enjoy using this service." msgstr "" -"Gratulerer, %s! Og velkommen til %%%%site.name%%%%. Herfra vil du " +"Gratulerer, %1$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" +"* Gå til [din profil](%2$s) og sende din første melding.\n" +"* Legge til en [Jabber/GTalk-addresse](%%%%action.imsettings%%%%) så du kan " +"sende notiser gjennom lynmeldinger.\n" +"* [Søke etter brukere](%%%%action.peoplesearch%%%%) som du kanskje kjenner " +"eller deler dine interesser.\n" +"* Oppdater dine [profilinnstillinger](%%%%action.profilesettings%%%%) for å " +"fortelle mer om deg til andre.\n" +"* Les over [hjelpetekstene](%%%%doc.help%%%%) for funksjoner du kan ha gått " +"glipp av.\n" "\n" -"Thanks for signing up and we hope you enjoy using this service." +"Takk for at du registrerte deg og vi håper du kommer til å like tjenesten." #: actions/register.php:562 msgid "" @@ -2821,7 +3101,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:365 +#: lib/userprofile.php:368 msgid "Subscribe" msgstr "" @@ -2859,15 +3139,13 @@ msgstr "" msgid "You already repeated that notice." msgstr "Du er allerede logget inn!" -#: actions/repeat.php:114 lib/noticelist.php:629 -#, fuzzy +#: actions/repeat.php:114 lib/noticelist.php:656 msgid "Repeated" -msgstr "Opprett" +msgstr "Gjentatt" #: actions/repeat.php:119 -#, fuzzy msgid "Repeated!" -msgstr "Opprett" +msgstr "Gjentatt!" #: actions/replies.php:125 actions/repliesrss.php:68 #: lib/personalgroupnav.php:105 @@ -2875,20 +3153,25 @@ msgstr "Opprett" msgid "Replies to %s" msgstr "Svar til %s" +#: actions/replies.php:127 +#, php-format +msgid "Replies to %1$s, page %2$d" +msgstr "Svar til %1$s, side %2$d" + #: actions/replies.php:144 #, php-format msgid "Replies feed for %s (RSS 1.0)" -msgstr "" +msgstr "Svarstrøm for %s (RSS 1.0)" #: actions/replies.php:151 #, php-format msgid "Replies feed for %s (RSS 2.0)" -msgstr "" +msgstr "Svarstrøm for %s (RSS 2.0)" #: actions/replies.php:158 -#, fuzzy, php-format +#, php-format msgid "Replies feed for %s (Atom)" -msgstr "Svar til %s" +msgstr "Svarstrøm for %s (Atom)" #: actions/replies.php:198 #, fuzzy, php-format @@ -2915,9 +3198,13 @@ msgstr "" "s)." #: actions/repliesrss.php:72 -#, fuzzy, php-format +#, php-format msgid "Replies to %1$s on %2$s!" -msgstr "Svar til %s" +msgstr "Svar til %1$s på %2$s!" + +#: actions/rsd.php:146 actions/version.php:157 +msgid "StatusNet" +msgstr "StatusNet" #: actions/sandbox.php:65 actions/unsandbox.php:65 #, fuzzy @@ -2929,6 +3216,121 @@ msgstr "Du er allerede logget inn!" msgid "User is already sandboxed." msgstr "Du er allerede logget inn!" +#: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:336 +msgid "Sessions" +msgstr "" + +#: actions/sessionsadminpanel.php:65 +msgid "Session settings for this StatusNet site." +msgstr "" + +#: actions/sessionsadminpanel.php:175 +msgid "Handle sessions" +msgstr "" + +#: actions/sessionsadminpanel.php:177 +msgid "Whether to handle sessions ourselves." +msgstr "" + +#: actions/sessionsadminpanel.php:181 +msgid "Session debugging" +msgstr "" + +#: actions/sessionsadminpanel.php:183 +msgid "Turn on debugging output for sessions." +msgstr "" + +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/useradminpanel.php:293 +#, fuzzy +msgid "Save site settings" +msgstr "Innstillinger for IM" + +#: actions/showapplication.php:82 +msgid "You must be logged in to view an application." +msgstr "" + +#: actions/showapplication.php:157 +msgid "Application profile" +msgstr "" + +#: actions/showapplication.php:159 lib/applicationeditform.php:180 +msgid "Icon" +msgstr "Ikon" + +#: actions/showapplication.php:169 actions/version.php:195 +#: lib/applicationeditform.php:195 +msgid "Name" +msgstr "Navn" + +#: actions/showapplication.php:178 lib/applicationeditform.php:222 +msgid "Organization" +msgstr "Organisasjon" + +#: actions/showapplication.php:187 actions/version.php:198 +#: lib/applicationeditform.php:209 lib/groupeditform.php:172 +msgid "Description" +msgstr "Beskrivelse" + +#: actions/showapplication.php:192 actions/showgroup.php:429 +#: lib/profileaction.php:174 +msgid "Statistics" +msgstr "Statistikk" + +#: actions/showapplication.php:203 +#, php-format +msgid "Created by %1$s - %2$s access by default - %3$d users" +msgstr "Opprettet av %1$s - %2$s standardtilgang - %3$d brukere" + +#: actions/showapplication.php:213 +msgid "Application actions" +msgstr "" + +#: actions/showapplication.php:236 +msgid "Reset key & secret" +msgstr "" + +#: actions/showapplication.php:261 +msgid "Application info" +msgstr "" + +#: actions/showapplication.php:263 +msgid "Consumer key" +msgstr "" + +#: actions/showapplication.php:268 +msgid "Consumer secret" +msgstr "" + +#: actions/showapplication.php:273 +msgid "Request token URL" +msgstr "" + +#: actions/showapplication.php:278 +msgid "Access token URL" +msgstr "" + +#: actions/showapplication.php:283 +msgid "Authorize URL" +msgstr "" + +#: actions/showapplication.php:288 +msgid "" +"Note: We support HMAC-SHA1 signatures. We do not support the plaintext " +"signature method." +msgstr "" + +#: actions/showapplication.php:309 +#, fuzzy +msgid "Are you sure you want to reset your consumer key and secret?" +msgstr "Er du sikker på at du vil slette denne notisen?" + +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%1$s's favorite notices, page %2$d" +msgstr "%s og venner" + #: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "" @@ -2978,18 +3380,23 @@ msgstr "" msgid "%s group" msgstr "" +#: actions/showgroup.php:84 +#, fuzzy, php-format +msgid "%1$s group, page %2$d" +msgstr "Alle abonnementer" + #: actions/showgroup.php:218 #, fuzzy msgid "Group profile" msgstr "Klarte ikke å lagre profil." #: actions/showgroup.php:263 actions/tagother.php:118 -#: actions/userauthorization.php:167 lib/userprofile.php:177 +#: actions/userauthorization.php:175 lib/userprofile.php:177 msgid "URL" msgstr "" #: actions/showgroup.php:274 actions/tagother.php:128 -#: actions/userauthorization.php:179 lib/userprofile.php:194 +#: actions/userauthorization.php:187 lib/userprofile.php:194 msgid "Note" msgstr "" @@ -3036,10 +3443,6 @@ msgstr "" msgid "All members" msgstr "" -#: actions/showgroup.php:429 lib/profileaction.php:174 -msgid "Statistics" -msgstr "Statistikk" - #: actions/showgroup.php:432 #, fuzzy msgid "Created" @@ -3095,6 +3498,11 @@ msgstr "" msgid " tagged %s" msgstr "Tagger" +#: actions/showstream.php:79 +#, fuzzy, php-format +msgid "%1$s, page %2$d" +msgstr "%s og venner" + #: actions/showstream.php:122 #, fuzzy, php-format msgid "Notice feed for %1$s tagged %2$s (RSS 1.0)" @@ -3120,18 +3528,18 @@ msgstr "" msgid "FOAF for %s" msgstr "Feed for taggen %s" -#: actions/showstream.php:191 +#: actions/showstream.php:200 #, fuzzy, php-format msgid "This is the timeline for %1$s but %2$s hasn't posted anything yet." msgstr "Dette er tidslinjen for %s og venner, men ingen har postet noe enda." -#: actions/showstream.php:196 +#: actions/showstream.php:205 msgid "" "Seen anything interesting recently? You haven't posted any notices yet, now " "would be a good time to start :)" msgstr "" -#: actions/showstream.php:198 +#: actions/showstream.php:207 #, fuzzy, php-format msgid "" "You can try to nudge %1$s or [post something to his or her attention](%%%%" @@ -3141,7 +3549,7 @@ msgstr "" "hans eller hennes oppmerksomhet](%%%%action.newnotice%%%%?status_textarea=%" "s)." -#: actions/showstream.php:234 +#: actions/showstream.php:243 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3150,7 +3558,7 @@ msgid "" "follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showstream.php:239 +#: actions/showstream.php:248 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3158,7 +3566,7 @@ msgid "" "[StatusNet](http://status.net/) tool. " msgstr "" -#: actions/showstream.php:313 +#: actions/showstream.php:305 #, fuzzy, php-format msgid "Repeat of %s" msgstr "Svar til %s" @@ -3176,199 +3584,144 @@ msgstr "Du er allerede logget inn!" msgid "Basic settings for this StatusNet site." msgstr "" -#: actions/siteadminpanel.php:146 +#: actions/siteadminpanel.php:132 msgid "Site name must have non-zero length." msgstr "" -#: actions/siteadminpanel.php:154 +#: actions/siteadminpanel.php:140 #, fuzzy msgid "You must have a valid contact email address." msgstr "Ugyldig e-postadresse" -#: actions/siteadminpanel.php:172 +#: actions/siteadminpanel.php:158 #, php-format msgid "Unknown language \"%s\"." msgstr "" -#: actions/siteadminpanel.php:179 +#: actions/siteadminpanel.php:165 msgid "Invalid snapshot report URL." msgstr "" -#: actions/siteadminpanel.php:185 +#: actions/siteadminpanel.php:171 msgid "Invalid snapshot run value." msgstr "" -#: actions/siteadminpanel.php:191 +#: actions/siteadminpanel.php:177 msgid "Snapshot frequency must be a number." msgstr "" -#: actions/siteadminpanel.php:197 +#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "" -#: actions/siteadminpanel.php:203 +#: actions/siteadminpanel.php:189 msgid "Dupe limit must 1 or more seconds." msgstr "" -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:239 msgid "General" msgstr "" -#: actions/siteadminpanel.php:256 +#: actions/siteadminpanel.php:242 msgid "Site name" msgstr "" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:243 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "" -#: actions/siteadminpanel.php:261 +#: actions/siteadminpanel.php:247 msgid "Brought by" msgstr "" -#: actions/siteadminpanel.php:262 +#: actions/siteadminpanel.php:248 msgid "Text used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:266 +#: actions/siteadminpanel.php:252 msgid "Brought by URL" msgstr "" -#: actions/siteadminpanel.php:267 +#: actions/siteadminpanel.php:253 msgid "URL used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:271 +#: actions/siteadminpanel.php:257 msgid "Contact email address for your site" msgstr "" -#: actions/siteadminpanel.php:277 +#: actions/siteadminpanel.php:263 msgid "Local" msgstr "" -#: actions/siteadminpanel.php:288 +#: actions/siteadminpanel.php:274 msgid "Default timezone" msgstr "" -#: actions/siteadminpanel.php:289 +#: actions/siteadminpanel.php:275 msgid "Default timezone for the site; usually UTC." msgstr "" -#: actions/siteadminpanel.php:295 +#: actions/siteadminpanel.php:281 msgid "Default site language" msgstr "" -#: actions/siteadminpanel.php:303 -msgid "URLs" -msgstr "" - -#: actions/siteadminpanel.php:306 -#, fuzzy -msgid "Server" -msgstr "Gjenopprett" - -#: actions/siteadminpanel.php:306 -msgid "Site's server hostname." -msgstr "" - -#: actions/siteadminpanel.php:310 -msgid "Fancy URLs" -msgstr "" - -#: actions/siteadminpanel.php:312 -msgid "Use fancy (more readable and memorable) URLs?" -msgstr "" - -#: actions/siteadminpanel.php:318 -#, fuzzy -msgid "Access" -msgstr "Godta" - -#: actions/siteadminpanel.php:321 -msgid "Private" -msgstr "" - -#: actions/siteadminpanel.php:323 -msgid "Prohibit anonymous users (not logged in) from viewing site?" -msgstr "" - -#: actions/siteadminpanel.php:327 -msgid "Invite only" -msgstr "" - -#: actions/siteadminpanel.php:329 -msgid "Make registration invitation only." -msgstr "" - -#: actions/siteadminpanel.php:333 -msgid "Closed" -msgstr "" - -#: actions/siteadminpanel.php:335 -msgid "Disable new registrations." -msgstr "" - -#: actions/siteadminpanel.php:341 +#: actions/siteadminpanel.php:289 msgid "Snapshots" msgstr "" -#: actions/siteadminpanel.php:344 +#: actions/siteadminpanel.php:292 msgid "Randomly during Web hit" msgstr "" -#: actions/siteadminpanel.php:345 +#: actions/siteadminpanel.php:293 msgid "In a scheduled job" msgstr "" -#: actions/siteadminpanel.php:347 +#: actions/siteadminpanel.php:295 msgid "Data snapshots" msgstr "" -#: actions/siteadminpanel.php:348 +#: actions/siteadminpanel.php:296 msgid "When to send statistical data to status.net servers" msgstr "" -#: actions/siteadminpanel.php:353 +#: actions/siteadminpanel.php:301 msgid "Frequency" msgstr "" -#: actions/siteadminpanel.php:354 +#: actions/siteadminpanel.php:302 msgid "Snapshots will be sent once every N web hits" msgstr "" -#: actions/siteadminpanel.php:359 +#: actions/siteadminpanel.php:307 msgid "Report URL" msgstr "" -#: actions/siteadminpanel.php:360 +#: actions/siteadminpanel.php:308 msgid "Snapshots will be sent to this URL" msgstr "" -#: actions/siteadminpanel.php:367 +#: actions/siteadminpanel.php:315 msgid "Limits" msgstr "" -#: actions/siteadminpanel.php:370 +#: actions/siteadminpanel.php:318 msgid "Text limit" msgstr "" -#: actions/siteadminpanel.php:370 +#: actions/siteadminpanel.php:318 msgid "Maximum number of characters for notices." msgstr "" -#: actions/siteadminpanel.php:374 +#: actions/siteadminpanel.php:322 msgid "Dupe limit" msgstr "" -#: actions/siteadminpanel.php:374 +#: actions/siteadminpanel.php:322 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" -#: actions/siteadminpanel.php:388 actions/useradminpanel.php:313 -#, fuzzy -msgid "Save site settings" -msgstr "Innstillinger for IM" - #: actions/smssettings.php:58 #, fuzzy msgid "SMS settings" @@ -3470,17 +3823,26 @@ msgstr "" msgid "You are not subscribed to that profile." msgstr "" -#: actions/subedit.php:83 +#: actions/subedit.php:83 classes/Subscription.php:89 +#: classes/Subscription.php:116 #, 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:77 +msgid "This action only accepts POST requests." +msgstr "" -#: actions/subscribe.php:69 +#: actions/subscribe.php:107 +#, fuzzy +msgid "No such profile." +msgstr "Ingen slik fil." + +#: actions/subscribe.php:117 +msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." +msgstr "" + +#: actions/subscribe.php:145 msgid "Subscribed" msgstr "" @@ -3540,7 +3902,7 @@ msgstr "" msgid "These are the people whose notices %s listens to." msgstr "" -#: actions/subscriptions.php:121 +#: actions/subscriptions.php:126 #, php-format msgid "" "You're not listening to anyone's notices right now, try subscribing to " @@ -3550,20 +3912,25 @@ msgid "" "automatically subscribe to people you already follow there." msgstr "" -#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#: actions/subscriptions.php:128 actions/subscriptions.php:132 #, fuzzy, php-format msgid "%s is not listening to anyone." msgstr "%1$s lytter nå til dine notiser på %2$s." -#: actions/subscriptions.php:194 +#: actions/subscriptions.php:199 #, fuzzy msgid "Jabber" msgstr "Ingen Jabber ID." -#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:204 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "" +#: actions/tag.php:68 +#, fuzzy, php-format +msgid "Notices tagged with %1$s, page %2$d" +msgstr "Mikroblogg av %s" + #: actions/tag.php:86 #, php-format msgid "Notice feed for tag %s (RSS 1.0)" @@ -3593,7 +3960,8 @@ msgstr "Tagger" msgid "User profile" msgstr "Klarte ikke å lagre profil." -#: actions/tagother.php:81 lib/userprofile.php:102 +#: actions/tagother.php:81 actions/userauthorization.php:132 +#: lib/userprofile.php:102 msgid "Photo" msgstr "" @@ -3651,7 +4019,7 @@ msgstr "" msgid "Unsubscribed" msgstr "" -#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#: actions/updateprofile.php:62 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -3666,89 +4034,69 @@ msgstr "" msgid "User settings for this StatusNet site." msgstr "" -#: actions/useradminpanel.php:149 +#: actions/useradminpanel.php:148 msgid "Invalid bio limit. Must be numeric." msgstr "" -#: actions/useradminpanel.php:155 +#: actions/useradminpanel.php:154 msgid "Invalid welcome text. Max length is 255 characters." msgstr "" -#: actions/useradminpanel.php:165 +#: actions/useradminpanel.php:164 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 +#: actions/useradminpanel.php:217 lib/accountsettingsaction.php:108 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Profil" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:221 msgid "Bio Limit" msgstr "" -#: actions/useradminpanel.php:223 +#: actions/useradminpanel.php:222 msgid "Maximum length of a profile bio in characters." msgstr "" -#: actions/useradminpanel.php:231 +#: actions/useradminpanel.php:230 #, fuzzy msgid "New users" msgstr "slett" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:234 msgid "New user welcome" msgstr "" -#: actions/useradminpanel.php:236 +#: actions/useradminpanel.php:235 msgid "Welcome text for new users (Max 255 chars)." msgstr "" -#: actions/useradminpanel.php:241 +#: actions/useradminpanel.php:240 #, fuzzy msgid "Default subscription" msgstr "Alle abonnementer" -#: actions/useradminpanel.php:242 +#: actions/useradminpanel.php:241 #, fuzzy msgid "Automatically subscribe new users to this user." msgstr "" "Abonner automatisk på de som abonnerer på meg (best for ikke-mennesker)" -#: actions/useradminpanel.php:251 +#: actions/useradminpanel.php:250 #, fuzzy msgid "Invitations" msgstr "Bekreftelseskode" -#: actions/useradminpanel.php:256 +#: actions/useradminpanel.php:255 msgid "Invitations enabled" msgstr "" -#: actions/useradminpanel.php:258 +#: actions/useradminpanel.php:257 msgid "Whether to allow users to invite new users." msgstr "" -#: actions/useradminpanel.php:265 -msgid "Sessions" -msgstr "" - -#: actions/useradminpanel.php:270 -msgid "Handle sessions" -msgstr "" - -#: actions/useradminpanel.php:272 -msgid "Whether to handle sessions ourselves." -msgstr "" - -#: actions/useradminpanel.php:276 -msgid "Session debugging" -msgstr "" - -#: actions/useradminpanel.php:278 -msgid "Turn on debugging output for sessions." -msgstr "" - #: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Autoriser abonnementet" @@ -3760,85 +4108,85 @@ msgid "" "click “Reject”." msgstr "" -#: actions/userauthorization.php:188 actions/version.php:165 +#: actions/userauthorization.php:196 actions/version.php:165 msgid "License" msgstr "" -#: actions/userauthorization.php:209 +#: actions/userauthorization.php:217 msgid "Accept" msgstr "Godta" -#: actions/userauthorization.php:210 lib/subscribeform.php:115 +#: actions/userauthorization.php:218 lib/subscribeform.php:115 #: lib/subscribeform.php:139 msgid "Subscribe to this user" msgstr "" -#: actions/userauthorization.php:211 +#: actions/userauthorization.php:219 msgid "Reject" msgstr "" -#: actions/userauthorization.php:212 +#: actions/userauthorization.php:220 #, fuzzy msgid "Reject this subscription" msgstr "Alle abonnementer" -#: actions/userauthorization.php:225 +#: actions/userauthorization.php:232 msgid "No authorization request!" msgstr "" -#: actions/userauthorization.php:247 +#: actions/userauthorization.php:254 msgid "Subscription authorized" msgstr "" -#: actions/userauthorization.php:249 +#: actions/userauthorization.php:256 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 +#: actions/userauthorization.php:266 msgid "Subscription rejected" msgstr "" -#: actions/userauthorization.php:261 +#: actions/userauthorization.php:268 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 +#: actions/userauthorization.php:303 #, php-format msgid "Listener URI ‘%s’ not found here." msgstr "" -#: actions/userauthorization.php:301 +#: actions/userauthorization.php:308 #, php-format msgid "Listenee URI ‘%s’ is too long." msgstr "" -#: actions/userauthorization.php:307 +#: actions/userauthorization.php:314 #, php-format msgid "Listenee URI ‘%s’ is a local user." msgstr "" -#: actions/userauthorization.php:322 +#: actions/userauthorization.php:329 #, php-format msgid "Profile URL ‘%s’ is for a local user." msgstr "" -#: actions/userauthorization.php:338 +#: actions/userauthorization.php:345 #, php-format msgid "Avatar URL ‘%s’ is not valid." msgstr "" -#: actions/userauthorization.php:343 +#: actions/userauthorization.php:350 #, fuzzy, php-format msgid "Can’t read avatar URL ‘%s’." msgstr "Kan ikke lese brukerbilde-URL «%s»" -#: actions/userauthorization.php:348 +#: actions/userauthorization.php:355 #, php-format msgid "Wrong image type for avatar URL ‘%s’." msgstr "" @@ -3858,6 +4206,11 @@ msgstr "" msgid "Enjoy your hotdog!" msgstr "" +#: actions/usergroups.php:64 +#, fuzzy, php-format +msgid "%1$s groups, page %2$d" +msgstr "Alle abonnementer" + #: actions/usergroups.php:130 msgid "Search for more groups" msgstr "" @@ -3884,11 +4237,6 @@ msgid "" "Inc. and contributors." msgstr "" -#: actions/version.php:157 -#, fuzzy -msgid "StatusNet" -msgstr "Statistikk" - #: actions/version.php:161 msgid "Contributors" msgstr "" @@ -3920,12 +4268,7 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:195 -#, fuzzy -msgid "Name" -msgstr "Nick" - -#: actions/version.php:196 lib/action.php:741 +#: actions/version.php:196 lib/action.php:747 #, fuzzy msgid "Version" msgstr "Personlig" @@ -3934,11 +4277,6 @@ msgstr "Personlig" msgid "Author(s)" msgstr "" -#: actions/version.php:198 lib/groupeditform.php:172 -#, fuzzy -msgid "Description" -msgstr "Alle abonnementer" - #: classes/File.php:144 #, php-format msgid "" @@ -3988,59 +4326,84 @@ msgstr "" msgid "Could not update message with new URI." msgstr "" -#: classes/Notice.php:171 +#: classes/Notice.php:157 #, php-format msgid "DB error inserting hashtag: %s" msgstr "" -#: classes/Notice.php:225 +#: classes/Notice.php:222 msgid "Problem saving notice. Too long." msgstr "" -#: classes/Notice.php:229 +#: classes/Notice.php:226 msgid "Problem saving notice. Unknown user." msgstr "" -#: classes/Notice.php:234 +#: classes/Notice.php:231 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: classes/Notice.php:240 +#: classes/Notice.php:237 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." msgstr "" -#: classes/Notice.php:246 +#: classes/Notice.php:243 msgid "You are banned from posting notices on this site." msgstr "" -#: classes/Notice.php:305 classes/Notice.php:330 +#: classes/Notice.php:309 classes/Notice.php:335 msgid "Problem saving notice." msgstr "" -#: classes/Notice.php:1052 -#, php-format -msgid "DB error inserting reply: %s" +#: classes/Notice.php:882 +msgid "Problem saving group inbox." msgstr "" -#: classes/Notice.php:1423 +#: classes/Notice.php:1407 #, php-format msgid "RT @%1$s %2$s" msgstr "" -#: classes/User.php:382 +#: classes/Subscription.php:66 lib/oauthstore.php:465 +msgid "You have been banned from subscribing." +msgstr "" + +#: classes/Subscription.php:70 +msgid "Already subscribed!" +msgstr "" + +#: classes/Subscription.php:74 +msgid "User has blocked you." +msgstr "" + +#: classes/Subscription.php:157 +#, fuzzy +msgid "Not subscribed!" +msgstr "Alle abonnementer" + +#: classes/Subscription.php:163 +#, fuzzy +msgid "Couldn't delete self-subscription." +msgstr "Klarte ikke å lagre avatar-informasjonen" + +#: classes/Subscription.php:179 lib/subs.php:69 +msgid "Couldn't delete subscription." +msgstr "" + +#: classes/User.php:372 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "" -#: classes/User_group.php:380 +#: classes/User_group.php:423 #, fuzzy msgid "Could not create group." msgstr "Klarte ikke å lagre avatar-informasjonen" -#: classes/User_group.php:409 +#: classes/User_group.php:452 #, fuzzy msgid "Could not set group membership." msgstr "Klarte ikke å lagre avatar-informasjonen" @@ -4083,131 +4446,126 @@ msgstr "%1$s sin status på %2$s" msgid "Untitled page" msgstr "" -#: lib/action.php:427 +#: lib/action.php:433 msgid "Primary site navigation" msgstr "" -#: lib/action.php:433 +#: lib/action.php:439 msgid "Home" msgstr "Hjem" -#: lib/action.php:433 +#: lib/action.php:439 msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:435 -#, fuzzy -msgid "Account" -msgstr "Om" - -#: lib/action.php:435 +#: lib/action.php:441 msgid "Change your email, avatar, password, profile" msgstr "" -#: lib/action.php:438 +#: lib/action.php:444 msgid "Connect" msgstr "Koble til" -#: lib/action.php:438 +#: lib/action.php:444 msgid "Connect to services" msgstr "" -#: lib/action.php:442 +#: lib/action.php:448 msgid "Change site configuration" msgstr "" -#: lib/action.php:446 lib/subgroupnav.php:105 +#: lib/action.php:452 lib/subgroupnav.php:105 msgid "Invite" msgstr "" -#: lib/action.php:447 lib/subgroupnav.php:106 +#: lib/action.php:453 lib/subgroupnav.php:106 #, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "" -#: lib/action.php:452 +#: lib/action.php:458 msgid "Logout" msgstr "Logg ut" -#: lib/action.php:452 +#: lib/action.php:458 msgid "Logout from the site" msgstr "" -#: lib/action.php:457 +#: lib/action.php:463 #, fuzzy msgid "Create an account" msgstr "Opprett en ny konto" -#: lib/action.php:460 +#: lib/action.php:466 msgid "Login to the site" msgstr "" -#: lib/action.php:463 lib/action.php:726 +#: lib/action.php:469 lib/action.php:732 msgid "Help" msgstr "Hjelp" -#: lib/action.php:463 +#: lib/action.php:469 #, fuzzy msgid "Help me!" msgstr "Hjelp" -#: lib/action.php:466 lib/searchaction.php:127 +#: lib/action.php:472 lib/searchaction.php:127 msgid "Search" msgstr "Søk" -#: lib/action.php:466 +#: lib/action.php:472 msgid "Search for people or text" msgstr "" -#: lib/action.php:487 +#: lib/action.php:493 msgid "Site notice" msgstr "" -#: lib/action.php:553 +#: lib/action.php:559 msgid "Local views" msgstr "" -#: lib/action.php:619 +#: lib/action.php:625 msgid "Page notice" msgstr "" -#: lib/action.php:721 +#: lib/action.php:727 msgid "Secondary site navigation" msgstr "" -#: lib/action.php:728 +#: lib/action.php:734 msgid "About" msgstr "Om" -#: lib/action.php:730 +#: lib/action.php:736 msgid "FAQ" msgstr "OSS/FAQ" -#: lib/action.php:734 +#: lib/action.php:740 msgid "TOS" msgstr "" -#: lib/action.php:737 +#: lib/action.php:743 msgid "Privacy" msgstr "" -#: lib/action.php:739 +#: lib/action.php:745 msgid "Source" msgstr "Kilde" -#: lib/action.php:743 +#: lib/action.php:749 msgid "Contact" msgstr "Kontakt" -#: lib/action.php:745 +#: lib/action.php:751 msgid "Badge" msgstr "" -#: lib/action.php:773 +#: lib/action.php:779 msgid "StatusNet software license" msgstr "" -#: lib/action.php:776 +#: lib/action.php:782 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4216,12 +4574,12 @@ msgstr "" "**%%site.name%%** er en mikrobloggingtjeneste av [%%site.broughtby%%](%%site." "broughtbyurl%%). " -#: lib/action.php:778 +#: lib/action.php:784 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** er en mikrobloggingtjeneste. " -#: lib/action.php:780 +#: lib/action.php:786 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4229,33 +4587,55 @@ msgid "" "org/licensing/licenses/agpl-3.0.html)." msgstr "" -#: lib/action.php:794 +#: lib/action.php:801 msgid "Site content license" msgstr "" -#: lib/action.php:803 +#: lib/action.php:806 +#, php-format +msgid "Content and data of %1$s are private and confidential." +msgstr "" + +#: lib/action.php:811 +#, php-format +msgid "Content and data copyright by %1$s. All rights reserved." +msgstr "" + +#: lib/action.php:814 +msgid "Content and data copyright by contributors. All rights reserved." +msgstr "" + +#: lib/action.php:827 msgid "All " msgstr "" -#: lib/action.php:808 +#: lib/action.php:833 msgid "license." msgstr "" -#: lib/action.php:1102 +#: lib/action.php:1132 msgid "Pagination" msgstr "" -#: lib/action.php:1111 +#: lib/action.php:1141 msgid "After" msgstr "" -#: lib/action.php:1119 +#: lib/action.php:1149 #, fuzzy msgid "Before" msgstr "Tidligere »" -#: lib/action.php:1167 -msgid "There was a problem with your session token." +#: lib/activity.php:382 +msgid "Can't handle remote content yet." +msgstr "" + +#: lib/activity.php:410 +msgid "Can't handle embedded XML content yet." +msgstr "" + +#: lib/activity.php:414 +msgid "Can't handle embedded Base64 content yet." msgstr "" #: lib/adminpanelaction.php:96 @@ -4286,10 +4666,101 @@ msgstr "" msgid "Design configuration" msgstr "" -#: lib/adminpanelaction.php:322 lib/adminpanelaction.php:327 +#: lib/adminpanelaction.php:322 +msgid "User configuration" +msgstr "" + +#: lib/adminpanelaction.php:327 +msgid "Access configuration" +msgstr "" + +#: lib/adminpanelaction.php:332 msgid "Paths configuration" msgstr "" +#: lib/adminpanelaction.php:337 +msgid "Sessions configuration" +msgstr "" + +#: lib/apiauth.php:95 +msgid "API resource requires read-write access, but you only have read access." +msgstr "" + +#: lib/apiauth.php:273 +#, php-format +msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" +msgstr "" + +#: lib/applicationeditform.php:136 +msgid "Edit application" +msgstr "" + +#: lib/applicationeditform.php:184 +msgid "Icon for this application" +msgstr "" + +#: lib/applicationeditform.php:204 +#, fuzzy, php-format +msgid "Describe your application in %d characters" +msgstr "Beskriv degselv og dine interesser med 140 tegn" + +#: lib/applicationeditform.php:207 +#, fuzzy +msgid "Describe your application" +msgstr "Beskriv degselv og dine interesser med 140 tegn" + +#: lib/applicationeditform.php:216 +#, fuzzy +msgid "Source URL" +msgstr "Kilde" + +#: lib/applicationeditform.php:218 +#, fuzzy +msgid "URL of the homepage of this application" +msgstr "URL til din hjemmeside, blogg, eller profil på annen nettside." + +#: lib/applicationeditform.php:224 +msgid "Organization responsible for this application" +msgstr "" + +#: lib/applicationeditform.php:230 +#, fuzzy +msgid "URL for the homepage of the organization" +msgstr "URL til din hjemmeside, blogg, eller profil på annen nettside." + +#: lib/applicationeditform.php:236 +msgid "URL to redirect to after authentication" +msgstr "" + +#: lib/applicationeditform.php:258 +msgid "Browser" +msgstr "" + +#: lib/applicationeditform.php:274 +msgid "Desktop" +msgstr "" + +#: lib/applicationeditform.php:275 +msgid "Type of application, browser or desktop" +msgstr "" + +#: lib/applicationeditform.php:297 +msgid "Read-only" +msgstr "" + +#: lib/applicationeditform.php:315 +msgid "Read-write" +msgstr "" + +#: lib/applicationeditform.php:316 +msgid "Default access for this application: read-only, or read-write" +msgstr "" + +#: lib/applicationlist.php:154 +#, fuzzy +msgid "Revoke" +msgstr "Fjern" + #: lib/attachmentlist.php:87 msgid "Attachments" msgstr "" @@ -4311,12 +4782,12 @@ msgstr "" msgid "Tags for this attachment" msgstr "" -#: lib/authenticationplugin.php:182 lib/authenticationplugin.php:187 +#: lib/authenticationplugin.php:218 lib/authenticationplugin.php:223 #, fuzzy msgid "Password changing failed" msgstr "Passordet ble lagret" -#: lib/authenticationplugin.php:197 +#: lib/authenticationplugin.php:233 #, fuzzy msgid "Password changing is not allowed" msgstr "Passordet ble lagret" @@ -4468,83 +4939,93 @@ msgstr "" msgid "Specify the name of the user to subscribe to" msgstr "" -#: lib/command.php:554 +#: lib/command.php:554 lib/command.php:589 +#, fuzzy +msgid "No such user" +msgstr "Ingen slik bruker" + +#: lib/command.php:561 #, php-format msgid "Subscribed to %s" msgstr "" -#: lib/command.php:575 +#: lib/command.php:582 lib/command.php:685 msgid "Specify the name of the user to unsubscribe from" msgstr "" -#: lib/command.php:582 +#: lib/command.php:595 #, php-format msgid "Unsubscribed from %s" msgstr "" -#: lib/command.php:600 lib/command.php:623 +#: lib/command.php:613 lib/command.php:636 msgid "Command not yet implemented." msgstr "" -#: lib/command.php:603 +#: lib/command.php:616 msgid "Notification off." msgstr "" -#: lib/command.php:605 +#: lib/command.php:618 msgid "Can't turn off notification." msgstr "" -#: lib/command.php:626 +#: lib/command.php:639 msgid "Notification on." msgstr "" -#: lib/command.php:628 +#: lib/command.php:641 msgid "Can't turn on notification." msgstr "" -#: lib/command.php:641 +#: lib/command.php:654 msgid "Login command is disabled" msgstr "" -#: lib/command.php:652 +#: lib/command.php:665 #, php-format msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "" -#: lib/command.php:668 +#: lib/command.php:692 +#, fuzzy, php-format +msgid "Unsubscribed %s" +msgstr "Svar til %s" + +#: lib/command.php:709 #, fuzzy msgid "You are not subscribed to anyone." msgstr "Ikke autorisert." -#: lib/command.php:670 +#: lib/command.php:711 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "Ikke autorisert." msgstr[1] "Ikke autorisert." -#: lib/command.php:690 +#: lib/command.php:731 #, fuzzy msgid "No one is subscribed to you." msgstr "Svar til %s" -#: lib/command.php:692 +#: lib/command.php:733 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "Svar til %s" msgstr[1] "Svar til %s" -#: lib/command.php:712 +#: lib/command.php:753 #, fuzzy msgid "You are not a member of any groups." msgstr "Du er allerede logget inn!" -#: lib/command.php:714 +#: lib/command.php:755 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "Du er allerede logget inn!" msgstr[1] "Du er allerede logget inn!" -#: lib/command.php:728 +#: lib/command.php:769 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -4558,6 +5039,7 @@ msgid "" "d - direct message to user\n" "get - get last notice from user\n" "whois - get profile info on user\n" +"lose - force user to stop following you\n" "fav - add user's last notice as a 'fave'\n" "fav # - add notice with the given id as a 'fave'\n" "repeat # - repeat a notice with a given id\n" @@ -4585,20 +5067,20 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:131 +#: lib/common.php:136 #, fuzzy msgid "No configuration file found. " msgstr "Fant ikke bekreftelseskode." -#: lib/common.php:132 +#: lib/common.php:137 msgid "I looked for configuration files in the following places: " msgstr "" -#: lib/common.php:134 +#: lib/common.php:139 msgid "You may wish to run the installer to fix this." msgstr "" -#: lib/common.php:135 +#: lib/common.php:140 msgid "Go to the installer." msgstr "" @@ -4614,6 +5096,15 @@ msgstr "" msgid "Updates by SMS" msgstr "" +#: lib/connectsettingsaction.php:120 +#, fuzzy +msgid "Connections" +msgstr "Koble til" + +#: lib/connectsettingsaction.php:121 +msgid "Authorized connected applications" +msgstr "" + #: lib/dberroraction.php:60 msgid "Database error" msgstr "" @@ -4803,12 +5294,12 @@ msgstr "" msgid "kB" msgstr "" -#: lib/jabber.php:202 +#: lib/jabber.php:220 #, php-format msgid "[%s]" msgstr "" -#: lib/jabber.php:385 +#: lib/jabber.php:400 #, php-format msgid "Unknown inbox source %d." msgstr "" @@ -5013,7 +5504,7 @@ msgid "" "users in conversation. People can send you messages for your eyes only." msgstr "" -#: lib/mailbox.php:227 lib/noticelist.php:477 +#: lib/mailbox.php:227 lib/noticelist.php:482 #, fuzzy msgid "from" msgstr "fra" @@ -5133,59 +5624,55 @@ msgid "Do not share my location" msgstr "Klarte ikke å lagre profil." #: lib/noticeform.php:216 -msgid "Hide this info" -msgstr "" - -#: lib/noticeform.php:217 msgid "" "Sorry, retrieving your geo location is taking longer than expected, please " "try again later" msgstr "" -#: lib/noticelist.php:428 +#: lib/noticelist.php:429 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "" -#: lib/noticelist.php:429 +#: lib/noticelist.php:430 msgid "N" msgstr "" -#: lib/noticelist.php:429 +#: lib/noticelist.php:430 msgid "S" msgstr "" -#: lib/noticelist.php:430 +#: lib/noticelist.php:431 msgid "E" msgstr "" -#: lib/noticelist.php:430 +#: lib/noticelist.php:431 msgid "W" msgstr "" -#: lib/noticelist.php:436 +#: lib/noticelist.php:438 msgid "at" msgstr "" -#: lib/noticelist.php:531 +#: lib/noticelist.php:558 msgid "in context" msgstr "" -#: lib/noticelist.php:556 +#: lib/noticelist.php:583 #, fuzzy msgid "Repeated by" msgstr "Opprett" -#: lib/noticelist.php:585 +#: lib/noticelist.php:610 msgid "Reply to this notice" msgstr "" -#: lib/noticelist.php:586 +#: lib/noticelist.php:611 #, fuzzy msgid "Reply" msgstr "svar" -#: lib/noticelist.php:628 +#: lib/noticelist.php:655 #, fuzzy msgid "Notice repeated" msgstr "Nytt nick" @@ -5218,11 +5705,7 @@ msgstr "" msgid "Duplicate notice" msgstr "" -#: lib/oauthstore.php:466 lib/subs.php:48 -msgid "You have been banned from subscribing." -msgstr "" - -#: lib/oauthstore.php:491 +#: lib/oauthstore.php:490 msgid "Couldn't insert new subscription." msgstr "" @@ -5238,19 +5721,19 @@ msgstr "Svar" msgid "Favorites" msgstr "" -#: lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "" -#: lib/personalgroupnav.php:125 +#: lib/personalgroupnav.php:126 msgid "Your incoming messages" msgstr "" -#: lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 msgid "Outbox" msgstr "" -#: lib/personalgroupnav.php:130 +#: lib/personalgroupnav.php:131 msgid "Your sent messages" msgstr "" @@ -5332,6 +5815,10 @@ msgstr "Kan ikke slette notisen." msgid "Repeat this notice" msgstr "Kan ikke slette notisen." +#: lib/router.php:665 +msgid "No single user defined for single-user mode." +msgstr "" + #: lib/sandboxform.php:67 msgid "Sandbox" msgstr "" @@ -5403,36 +5890,6 @@ msgstr "Svar til %s" msgid "Groups %s is a member of" msgstr "" -#: lib/subs.php:52 -msgid "Already subscribed!" -msgstr "" - -#: lib/subs.php:56 -msgid "User has blocked you." -msgstr "" - -#: lib/subs.php:63 -msgid "Could not subscribe." -msgstr "" - -#: lib/subs.php:82 -msgid "Could not subscribe other to you." -msgstr "" - -#: lib/subs.php:137 -#, fuzzy -msgid "Not subscribed!" -msgstr "Alle abonnementer" - -#: lib/subs.php:142 -#, fuzzy -msgid "Couldn't delete self-subscription." -msgstr "Klarte ikke å lagre avatar-informasjonen" - -#: lib/subs.php:158 -msgid "Couldn't delete subscription." -msgstr "" - #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -5486,68 +5943,68 @@ msgstr "Brukerbilde" msgid "User actions" msgstr "" -#: lib/userprofile.php:248 +#: lib/userprofile.php:251 #, fuzzy msgid "Edit profile settings" msgstr "Endre profilinnstillingene dine" -#: lib/userprofile.php:249 +#: lib/userprofile.php:252 msgid "Edit" msgstr "" -#: lib/userprofile.php:272 +#: lib/userprofile.php:275 msgid "Send a direct message to this user" msgstr "" -#: lib/userprofile.php:273 +#: lib/userprofile.php:276 msgid "Message" msgstr "" -#: lib/userprofile.php:311 +#: lib/userprofile.php:314 msgid "Moderate" msgstr "" -#: lib/util.php:877 +#: lib/util.php:952 msgid "a few seconds ago" msgstr "noen få sekunder siden" -#: lib/util.php:879 +#: lib/util.php:954 msgid "about a minute ago" msgstr "omtrent ett minutt siden" -#: lib/util.php:881 +#: lib/util.php:956 #, php-format msgid "about %d minutes ago" msgstr "omtrent %d minutter siden" -#: lib/util.php:883 +#: lib/util.php:958 msgid "about an hour ago" msgstr "omtrent én time siden" -#: lib/util.php:885 +#: lib/util.php:960 #, php-format msgid "about %d hours ago" msgstr "omtrent %d timer siden" -#: lib/util.php:887 +#: lib/util.php:962 msgid "about a day ago" msgstr "omtrent én dag siden" -#: lib/util.php:889 +#: lib/util.php:964 #, php-format msgid "about %d days ago" msgstr "omtrent %d dager siden" -#: lib/util.php:891 +#: lib/util.php:966 msgid "about a month ago" msgstr "omtrent én måned siden" -#: lib/util.php:893 +#: lib/util.php:968 #, php-format msgid "about %d months ago" msgstr "omtrent %d måneder siden" -#: lib/util.php:895 +#: lib/util.php:970 msgid "about a year ago" msgstr "omtrent ett år siden" @@ -5561,7 +6018,7 @@ msgstr "" msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "" -#: scripts/xmppdaemon.php:301 +#: lib/xmppmanager.php:402 #, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "" diff --git a/locale/nl/LC_MESSAGES/statusnet.po b/locale/nl/LC_MESSAGES/statusnet.po index ade4434a53..1cd71ad868 100644 --- a/locale/nl/LC_MESSAGES/statusnet.po +++ b/locale/nl/LC_MESSAGES/statusnet.po @@ -10,17 +10,69 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-01-13 22:04+0000\n" -"PO-Revision-Date: 2010-01-13 22:05:52+0000\n" +"POT-Creation-Date: 2010-02-24 23:49+0000\n" +"PO-Revision-Date: 2010-02-24 23:51:28+0000\n" "Language-Team: Dutch\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha (r61027); Translate extension (2010-01-04)\n" +"X-Generator: MediaWiki 1.17alpha (r62925); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: actions/accessadminpanel.php:54 lib/adminpanelaction.php:326 +msgid "Access" +msgstr "Toegang" + +#: actions/accessadminpanel.php:65 +msgid "Site access settings" +msgstr "Instellingen voor sitetoegang" + +#: actions/accessadminpanel.php:158 +msgid "Registration" +msgstr "Registratie" + +#: actions/accessadminpanel.php:161 +msgid "Private" +msgstr "Privé" + +#: actions/accessadminpanel.php:163 +msgid "Prohibit anonymous users (not logged in) from viewing site?" +msgstr "Mogen anonieme gebruikers (niet aangemeld) de website bekijken?" + +#: actions/accessadminpanel.php:167 +msgid "Invite only" +msgstr "Alleen op uitnodiging" + +#: actions/accessadminpanel.php:169 +msgid "Make registration invitation only." +msgstr "Registratie alleen op uitnodiging." + +#: actions/accessadminpanel.php:173 +msgid "Closed" +msgstr "Gesloten" + +#: actions/accessadminpanel.php:175 +msgid "Disable new registrations." +msgstr "Nieuwe registraties uitschakelen." + +#: actions/accessadminpanel.php:189 actions/designadminpanel.php:586 +#: actions/emailsettings.php:195 actions/imsettings.php:163 +#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 +#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 +#: actions/siteadminpanel.php:336 actions/smssettings.php:181 +#: actions/subscriptions.php:208 actions/tagother.php:154 +#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 lib/designsettings.php:256 +#: lib/groupeditform.php:202 +msgid "Save" +msgstr "Opslaan" + +#: actions/accessadminpanel.php:189 +msgid "Save access settings" +msgstr "Toegangsinstellingen opslaan" + #: actions/all.php:63 actions/public.php:97 actions/replies.php:92 #: actions/showfavorites.php:137 actions/tag.php:51 msgid "No such page" @@ -35,25 +87,29 @@ msgstr "Deze pagina bestaat niet" #: 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:144 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apistatusesupdate.php:148 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:78 #: actions/apitimelinehome.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/otp.php:76 #: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154 -#: actions/replies.php:73 actions/repliesrss.php:38 +#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 #: 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:302 lib/command.php:355 #: lib/command.php:401 lib/command.php:462 lib/command.php:518 #: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 -#: lib/subs.php:34 lib/subs.php:125 msgid "No such user." msgstr "Onbekende gebruiker." +#: actions/all.php:84 +#, php-format +msgid "%1$s and friends, page %2$d" +msgstr "%1$s en vrienden, pagina %2$d" + #: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 -#: actions/apitimelinefriends.php:115 actions/apitimelinehome.php:115 +#: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" @@ -101,7 +157,7 @@ msgstr "" "bericht voor die gebruiker plaatsen](%%%%action.newnotice%%%%?" "status_textarea=%3$s)." -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211 #, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " @@ -114,8 +170,8 @@ msgstr "" msgid "You and friends" msgstr "U en vrienden" -#: actions/allrss.php:119 actions/apitimelinefriends.php:122 -#: actions/apitimelinehome.php:122 +#: actions/allrss.php:119 actions/apitimelinefriends.php:119 +#: actions/apitimelinehome.php:120 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Updates van %1$s en vrienden op %2$s." @@ -125,23 +181,23 @@ msgstr "Updates van %1$s en vrienden op %2$s." #: actions/apiaccountupdateprofile.php:97 #: actions/apiaccountupdateprofilebackgroundimage.php:94 #: actions/apiaccountupdateprofilecolors.php:118 -#: 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:136 actions/apigroupismember.php:114 -#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 -#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 -#: actions/apigroupmembership.php:106 actions/apigroupshow.php:105 -#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 -#: actions/apistatusesretweets.php:112 actions/apistatusesshow.php:108 -#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93 -#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:146 -#: actions/apitimelinefriends.php:156 actions/apitimelinegroup.php:150 -#: actions/apitimelinehome.php:156 actions/apitimelinementions.php:151 -#: actions/apitimelinepublic.php:131 actions/apitimelineretweetedbyme.php:122 +#: actions/apiaccountverifycredentials.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:128 actions/apigroupcreate.php:136 +#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 +#: actions/apigroupleave.php:141 actions/apigrouplist.php:132 +#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 +#: actions/apigroupshow.php:115 actions/apihelptest.php:88 +#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 +#: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 #: actions/apitimelineretweetedtome.php:121 -#: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141 -#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 +#: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 +#: actions/apitimelineuser.php:207 actions/apiusershow.php:101 msgid "API method not found." msgstr "De API-functie is niet aangetroffen." @@ -155,7 +211,7 @@ msgstr "De API-functie is niet aangetroffen." #: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 #: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 #: actions/apigroupleave.php:91 actions/apistatusesretweet.php:65 -#: actions/apistatusesupdate.php:114 +#: actions/apistatusesupdate.php:118 msgid "This method requires a POST." msgstr "Deze methode vereist een POST." @@ -186,8 +242,9 @@ msgstr "Het was niet mogelijk het profiel op te slaan." #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:97 -#: actions/apistatusesupdate.php:127 actions/avatarsettings.php:257 -#: actions/designadminpanel.php:122 actions/newnotice.php:94 +#: actions/apistatusesupdate.php:131 actions/avatarsettings.php:257 +#: actions/designadminpanel.php:122 actions/editapplication.php:118 +#: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 #, php-format msgid "" @@ -308,11 +365,11 @@ msgstr "U kunt het abonnement op uzelf niet opzeggen." msgid "Two user ids or screen_names must be supplied." msgstr "Er moeten twee gebruikersnamen of ID's opgegeven worden." -#: actions/apifriendshipsshow.php:135 +#: actions/apifriendshipsshow.php:134 msgid "Could not determine source user." msgstr "Het was niet mogelijk de brongebruiker te bepalen." -#: actions/apifriendshipsshow.php:143 +#: actions/apifriendshipsshow.php:142 msgid "Could not find target user." msgstr "Het was niet mogelijk de doelgebruiker te vinden." @@ -337,7 +394,8 @@ msgstr "" msgid "Not a valid nickname." msgstr "Ongeldige gebruikersnaam!" -#: actions/apigroupcreate.php:196 actions/editgroup.php:195 +#: actions/apigroupcreate.php:196 actions/editapplication.php:215 +#: actions/editgroup.php:195 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:217 msgid "Homepage is not a valid URL." @@ -349,7 +407,8 @@ msgstr "De thuispagina is geen geldige URL." msgid "Full name is too long (max 255 chars)." msgstr "De volledige naam is te lang (maximaal 255 tekens)." -#: actions/apigroupcreate.php:213 +#: actions/apigroupcreate.php:213 actions/editapplication.php:190 +#: actions/newapplication.php:172 #, php-format msgid "Description is too long (max %d chars)." msgstr "De beschrijving is te lang (maximaal %d tekens)." @@ -385,7 +444,7 @@ msgstr "Een alias kan niet hetzelfde zijn als de gebruikersnaam." #: actions/apigroupismember.php:95 actions/apigroupjoin.php:104 #: actions/apigroupleave.php:104 actions/apigroupmembership.php:91 -#: actions/apigroupshow.php:90 actions/apitimelinegroup.php:91 +#: actions/apigroupshow.php:82 actions/apitimelinegroup.php:91 msgid "Group not found!" msgstr "De groep is niet aangetroffen!" @@ -426,6 +485,121 @@ msgstr "%s groepen" msgid "groups on %s" msgstr "groepen op %s" +#: actions/apioauthauthorize.php:101 +msgid "No oauth_token parameter provided." +msgstr "Er is geen oauth_token parameter opgegeven." + +#: actions/apioauthauthorize.php:106 +msgid "Invalid token." +msgstr "Ongeldig token." + +#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 +#: actions/deletenotice.php:157 actions/disfavor.php:74 +#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54 +#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupunblock.php:66 actions/imsettings.php:206 +#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 +#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 +#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135 +#: actions/othersettings.php:145 actions/passwordsettings.php:138 +#: actions/profilesettings.php:194 actions/recoverpassword.php:337 +#: actions/register.php:165 actions/remotesubscribe.php:77 +#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 +#: actions/subscribe.php:86 actions/tagother.php:166 +#: 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/apioauthauthorize.php:135 +msgid "Invalid nickname / password!" +msgstr "Ongeldige gebruikersnaam of wachtwoord." + +#: actions/apioauthauthorize.php:159 +msgid "Database error deleting OAuth application user." +msgstr "" +"Er is een databasefout opgetreden tijdens het verwijderen van de OAuth " +"applicatiegebruiker." + +#: actions/apioauthauthorize.php:185 +msgid "Database error inserting OAuth application user." +msgstr "" +"Er is een databasefout opgetreden tijdens het toevoegen van de OAuth " +"applicatiegebruiker." + +#: actions/apioauthauthorize.php:214 +#, php-format +msgid "" +"The request token %s has been authorized. Please exchange it for an access " +"token." +msgstr "" +"Het verzoektoken %s is geautoriseerd. Wissel het alstublieft uit voor een " +"toegangstoken." + +#: actions/apioauthauthorize.php:227 +#, php-format +msgid "The request token %s has been denied and revoked." +msgstr "Het verzoektoken %s is geweigerd en ingetrokken." + +#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 +#: actions/designadminpanel.php:103 actions/editapplication.php:139 +#: actions/emailsettings.php:256 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/newapplication.php:121 +#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 +#: actions/smssettings.php:248 lib/designsettings.php:304 +msgid "Unexpected form submission." +msgstr "Het formulier is onverwacht ingezonden." + +#: actions/apioauthauthorize.php:259 +msgid "An application would like to connect to your account" +msgstr "Een applicatie vraagt toegang tot uw gebruikersgegevens" + +#: actions/apioauthauthorize.php:276 +msgid "Allow or deny access" +msgstr "Toegang toestaan of ontzeggen" + +#: actions/apioauthauthorize.php:292 +#, php-format +msgid "" +"The application %1$s by %2$s would like " +"the ability to %3$s your %4$s account data. You should only " +"give access to your %4$s account to third parties you trust." +msgstr "" +"De applicatie %1$s van %2$s vraagt toegang " +"van het type \"%3$s tot uw gebruikersgegevens. Geef alleen " +"toegang tot uw gebruiker bij %4$s aan derde partijen die u vertrouwt." + +#: actions/apioauthauthorize.php:310 lib/action.php:441 +msgid "Account" +msgstr "Gebruiker" + +#: actions/apioauthauthorize.php:313 actions/login.php:230 +#: actions/profilesettings.php:106 actions/register.php:424 +#: actions/showgroup.php:236 actions/tagother.php:94 +#: actions/userauthorization.php:145 lib/groupeditform.php:152 +#: lib/userprofile.php:131 +msgid "Nickname" +msgstr "Gebruikersnaam" + +#: actions/apioauthauthorize.php:316 actions/login.php:233 +#: actions/register.php:429 lib/accountsettingsaction.php:116 +msgid "Password" +msgstr "Wachtwoord" + +#: actions/apioauthauthorize.php:328 +msgid "Deny" +msgstr "Ontzeggen" + +#: actions/apioauthauthorize.php:334 +msgid "Allow" +msgstr "Toestaan" + +#: actions/apioauthauthorize.php:351 +msgid "Allow or deny access to your account information." +msgstr "Toegang tot uw gebruikersgegevens toestaan of ontzeggen." + #: actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." msgstr "Deze methode vereist een POST of DELETE." @@ -455,17 +629,17 @@ msgstr "De status is verwijderd." msgid "No status with that ID found." msgstr "Er is geen status gevonden met dit ID." -#: actions/apistatusesupdate.php:157 actions/newnotice.php:155 +#: actions/apistatusesupdate.php:161 actions/newnotice.php:155 #: lib/mailhandler.php:60 #, php-format msgid "That's too long. Max notice size is %d chars." msgstr "De mededeling is te lang. Gebruik maximaal %d tekens." -#: actions/apistatusesupdate.php:198 +#: actions/apistatusesupdate.php:202 msgid "Not found" msgstr "Niet gevonden" -#: actions/apistatusesupdate.php:221 actions/newnotice.php:178 +#: actions/apistatusesupdate.php:225 actions/newnotice.php:178 #, php-format msgid "Max notice size is %d chars, including attachment URL." msgstr "" @@ -481,7 +655,7 @@ msgstr "Niet-ondersteund bestandsformaat." msgid "%1$s / Favorites from %2$s" msgstr "%1$s / Favorieten van %2$s" -#: actions/apitimelinefavorites.php:120 +#: actions/apitimelinefavorites.php:117 #, php-format msgid "%1$s updates favorited by %2$s / %2$s." msgstr "%1$s updates op de favorietenlijst geplaatst door %2$s / %3$s" @@ -492,7 +666,7 @@ msgstr "%1$s updates op de favorietenlijst geplaatst door %2$s / %3$s" msgid "%s timeline" msgstr "%s tijdlijn" -#: actions/apitimelinegroup.php:117 actions/apitimelineuser.php:126 +#: actions/apitimelinegroup.php:114 actions/apitimelineuser.php:126 #: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" @@ -508,27 +682,22 @@ msgstr "%1$s / Updates over %2$s" 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/apitimelinepublic.php:107 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "%s publieke tijdlijn" -#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "%s updates van iedereen" -#: actions/apitimelineretweetedbyme.php:112 -#, php-format -msgid "Repeated by %s" -msgstr "Herhaald door %s" - #: actions/apitimelineretweetedtome.php:111 #, php-format msgid "Repeated to %s" msgstr "Herhaald naar %s" -#: actions/apitimelineretweetsofme.php:112 +#: actions/apitimelineretweetsofme.php:114 #, php-format msgid "Repeats of %s" msgstr "Herhaald van %s" @@ -538,7 +707,7 @@ msgstr "Herhaald van %s" msgid "Notices tagged with %s" msgstr "Mededelingen met het label %s" -#: actions/apitimelinetag.php:108 actions/tagrss.php:64 +#: actions/apitimelinetag.php:104 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!" @@ -599,8 +768,8 @@ msgstr "Origineel" msgid "Preview" msgstr "Voorvertoning" -#: actions/avatarsettings.php:149 lib/deleteuserform.php:66 -#: lib/noticelist.php:611 +#: actions/avatarsettings.php:149 actions/showapplication.php:252 +#: lib/deleteuserform.php:66 lib/noticelist.php:637 msgid "Delete" msgstr "Verwijderen" @@ -612,31 +781,6 @@ msgstr "Uploaden" msgid "Crop" msgstr "Uitsnijden" -#: actions/avatarsettings.php:268 actions/deletenotice.php:157 -#: actions/disfavor.php:74 actions/emailsettings.php:238 actions/favor.php:75 -#: actions/geocode.php:50 actions/groupblock.php:66 actions/grouplogo.php:309 -#: actions/groupunblock.php:66 actions/imsettings.php:206 -#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 -#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 -#: actions/othersettings.php:145 actions/passwordsettings.php:138 -#: actions/profilesettings.php:194 actions/recoverpassword.php:337 -#: actions/register.php:165 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 -#: actions/subscribe.php:46 actions/tagother.php:166 -#: 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/avatarsettings.php:281 actions/designadminpanel.php:103 -#: actions/emailsettings.php:256 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/avatarsettings.php:328 msgid "Pick a square area of the image to be your avatar" msgstr "" @@ -676,8 +820,9 @@ msgstr "" "niet meer volgen en u wordt niet op de hoogte gebracht van \"@\"-antwoorden " "van deze gebruiker." -#: actions/block.php:143 actions/deletenotice.php:145 -#: actions/deleteuser.php:147 actions/groupblock.php:178 +#: actions/block.php:143 actions/deleteapplication.php:153 +#: actions/deletenotice.php:145 actions/deleteuser.php:147 +#: actions/groupblock.php:178 msgid "No" msgstr "Nee" @@ -685,13 +830,13 @@ msgstr "Nee" msgid "Do not block this user" msgstr "Gebruiker niet blokkeren" -#: actions/block.php:144 actions/deletenotice.php:146 -#: actions/deleteuser.php:148 actions/groupblock.php:179 -#: lib/repeatform.php:132 +#: actions/block.php:144 actions/deleteapplication.php:158 +#: actions/deletenotice.php:146 actions/deleteuser.php:148 +#: actions/groupblock.php:179 lib/repeatform.php:132 msgid "Yes" msgstr "Ja" -#: actions/block.php:144 actions/groupmembers.php:346 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80 msgid "Block this user" msgstr "Deze gebruiker blokkeren" @@ -774,7 +919,7 @@ msgid "Couldn't delete email confirmation." msgstr "De e-mailbevestiging kon niet verwijderd worden." #: actions/confirmaddress.php:144 -msgid "Confirm Address" +msgid "Confirm address" msgstr "Adres bevestigen" #: actions/confirmaddress.php:159 @@ -791,10 +936,51 @@ msgstr "Dialoog" msgid "Notices" msgstr "Mededelingen" +#: actions/deleteapplication.php:63 +msgid "You must be logged in to delete an application." +msgstr "U moet aangemeld zijn om een applicatie te kunnen verwijderen." + +#: actions/deleteapplication.php:71 +msgid "Application not found." +msgstr "De applicatie is niet gevonden." + +#: actions/deleteapplication.php:78 actions/editapplication.php:77 +#: actions/showapplication.php:94 +msgid "You are not the owner of this application." +msgstr "U bent niet de eigenaar van deze applicatie." + +#: actions/deleteapplication.php:102 actions/editapplication.php:127 +#: actions/newapplication.php:110 actions/showapplication.php:118 +#: lib/action.php:1197 +msgid "There was a problem with your session token." +msgstr "Er is een probleem met uw sessietoken." + +#: actions/deleteapplication.php:123 actions/deleteapplication.php:147 +msgid "Delete application" +msgstr "Applicatie verwijderen" + +#: actions/deleteapplication.php:149 +msgid "" +"Are you sure you want to delete this application? This will clear all data " +"about the application from the database, including all existing user " +"connections." +msgstr "" +"Weet u zeker dat u deze applicatie wilt verwijderen? Door deze handeling " +"worden alle gegevens van deze applicatie uit de database verwijderd, " +"inclusief alle bestaande gebruikersverbindingen." + +#: actions/deleteapplication.php:156 +msgid "Do not delete this application" +msgstr "Deze applicatie niet verwijderen" + +#: actions/deleteapplication.php:160 +msgid "Delete this application" +msgstr "Deze applicatie verwijderen" + #: 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/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 #: lib/adminpanelaction.php:72 lib/profileformaction.php:63 #: lib/settingsaction.php:72 @@ -825,7 +1011,7 @@ msgstr "Weet u zeker dat u deze aankondiging wilt verwijderen?" msgid "Do not delete this notice" msgstr "Deze mededeling niet verwijderen" -#: actions/deletenotice.php:146 lib/noticelist.php:611 +#: actions/deletenotice.php:146 lib/noticelist.php:637 msgid "Delete this notice" msgstr "Deze mededeling verwijderen" @@ -857,7 +1043,7 @@ msgstr "Gebruiker verwijderen" #: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 #: lib/adminpanelaction.php:316 lib/groupnav.php:119 msgid "Design" -msgstr "Ontwerp" +msgstr "Uiterlijk" #: actions/designadminpanel.php:73 msgid "Design settings for this StatusNet site." @@ -958,16 +1144,6 @@ msgstr "Standaardontwerp toepassen" msgid "Reset back to default" msgstr "Standaardinstellingen toepassen" -#: actions/designadminpanel.php:586 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 -#: actions/pathsadminpanel.php:324 actions/profilesettings.php:174 -#: actions/siteadminpanel.php:388 actions/smssettings.php:181 -#: actions/subscriptions.php:203 actions/tagother.php:154 -#: actions/useradminpanel.php:313 lib/designsettings.php:256 -#: lib/groupeditform.php:202 -msgid "Save" -msgstr "Opslaan" - #: actions/designadminpanel.php:587 lib/designsettings.php:257 msgid "Save design" msgstr "Ontwerp opslaan" @@ -980,9 +1156,75 @@ msgstr "Deze mededeling staats niet op uw favorietenlijst." msgid "Add to favorites" msgstr "Aan favorieten toevoegen" -#: actions/doc.php:69 -msgid "No such document." -msgstr "Onbekend document." +#: actions/doc.php:158 +#, php-format +msgid "No such document \"%s\"" +msgstr "Onbekend document \"%s\"" + +#: actions/editapplication.php:54 +msgid "Edit Application" +msgstr "Applicatie bewerken" + +#: actions/editapplication.php:66 +msgid "You must be logged in to edit an application." +msgstr "U moet aangemeld zijn om een applicatie te kunnen bewerken." + +#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:166 +#: actions/showapplication.php:87 +msgid "No such application." +msgstr "De applicatie bestaat niet." + +#: actions/editapplication.php:161 +msgid "Use this form to edit your application." +msgstr "Gebruik dit formulier om uw applicatiegegevens te bewerken." + +#: actions/editapplication.php:177 actions/newapplication.php:159 +msgid "Name is required." +msgstr "Een naam is verplicht." + +#: actions/editapplication.php:180 actions/newapplication.php:165 +msgid "Name is too long (max 255 chars)." +msgstr "De naam is te lang (maximaal 255 tekens)." + +#: actions/editapplication.php:183 actions/newapplication.php:162 +msgid "Name already in use. Try another one." +msgstr "Deze naam wordt al gebruikt. Kies een andere." + +#: actions/editapplication.php:186 actions/newapplication.php:168 +msgid "Description is required." +msgstr "Een beschrijving is verplicht" + +#: actions/editapplication.php:194 +msgid "Source URL is too long." +msgstr "De bron-URL is te lang." + +#: actions/editapplication.php:200 actions/newapplication.php:185 +msgid "Source URL is not valid." +msgstr "De bron-URL is niet geldig." + +#: actions/editapplication.php:203 actions/newapplication.php:188 +msgid "Organization is required." +msgstr "Organisatie is verplicht." + +#: actions/editapplication.php:206 actions/newapplication.php:191 +msgid "Organization is too long (max 255 chars)." +msgstr "De organisatienaam is te lang (maximaal 255 tekens)." + +#: actions/editapplication.php:209 actions/newapplication.php:194 +msgid "Organization homepage is required." +msgstr "De homepage voor een organisatie is verplicht." + +#: actions/editapplication.php:218 actions/newapplication.php:206 +msgid "Callback is too long." +msgstr "De callback is te lang." + +#: actions/editapplication.php:225 actions/newapplication.php:215 +msgid "Callback URL is not valid." +msgstr "De callback-URL is niet geldig." + +#: actions/editapplication.php:258 +msgid "Could not update application." +msgstr "Het was niet mogelijk de applicatie bij te werken." #: actions/editgroup.php:56 #, php-format @@ -1011,7 +1253,7 @@ msgstr "de beschrijving is te lang (maximaal %d tekens)" msgid "Could not update group." msgstr "Het was niet mogelijk de groep bij te werken." -#: actions/editgroup.php:259 classes/User_group.php:390 +#: actions/editgroup.php:259 classes/User_group.php:433 msgid "Could not create aliases." msgstr "Het was niet mogelijk de aliassen aan te maken." @@ -1026,7 +1268,7 @@ msgstr "E-mailvoorkeuren" #: actions/emailsettings.php:71 #, php-format msgid "Manage how you get email from %%site.name%%." -msgstr "E-mail ontvangen van %%site.name%% beheren." +msgstr "Uw e-mailinstellingen op %%site.name%% beheren." #: actions/emailsettings.php:100 actions/imsettings.php:100 #: actions/smssettings.php:104 @@ -1052,13 +1294,14 @@ msgstr "" "ongewenste berichten/spam) voor een bericht met nadere instructies." #: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 +#: actions/smssettings.php:126 lib/applicationeditform.php:331 +#: lib/applicationeditform.php:332 msgid "Cancel" msgstr "Annuleren" #: actions/emailsettings.php:121 msgid "Email address" -msgstr "E-mailadressen" +msgstr "E-mailadres" #: actions/emailsettings.php:123 msgid "Email address, like \"UserName@example.org\"" @@ -1080,8 +1323,8 @@ msgstr "Stuur een email naar dit adres om een nieuw bericht te posten" #: actions/emailsettings.php:145 actions/smssettings.php:162 msgid "Make a new email address for posting to; cancels the old one." msgstr "" -"Stelt een nieuw e-mailadres in voor het plaatsen van berichten; verwijdert " -"het oude." +"Stelt een nieuw e-mailadres in voor het ontvangen van berichten. Het " +"bestaande e-mailadres wordt verwijderd." #: actions/emailsettings.php:148 actions/smssettings.php:164 msgid "New" @@ -1134,7 +1377,7 @@ msgid "Cannot normalize that email address" msgstr "Kan het emailadres niet normaliseren" #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:157 +#: actions/siteadminpanel.php:143 msgid "Not a valid email address." msgstr "Geen geldig e-mailadres." @@ -1146,7 +1389,7 @@ msgstr "U hebt dit e-mailadres als ingesteld als uw e-mailadres." msgid "That email address already belongs to another user." msgstr "Dit e-mailadres is al geregistreerd door een andere gebruiker." -#: actions/emailsettings.php:353 actions/imsettings.php:317 +#: actions/emailsettings.php:353 actions/imsettings.php:319 #: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." msgstr "De bevestigingscode kon niet ingevoegd worden." @@ -1208,7 +1451,7 @@ msgstr "Deze mededeling staat al in uw favorietenlijst." msgid "Disfavor favorite" msgstr "Van favotietenlijst verwijderen" -#: actions/favorited.php:65 lib/popularnoticesection.php:88 +#: actions/favorited.php:65 lib/popularnoticesection.php:91 #: lib/publicgroupnav.php:93 msgid "Popular notices" msgstr "Populaire mededelingen" @@ -1361,7 +1604,7 @@ msgstr "Deze gebruiker is al de toegang tot de groep ontzegd." msgid "User is not a member of group." msgstr "De gebruiker is geen lid van de groep." -#: actions/groupblock.php:136 actions/groupmembers.php:314 +#: actions/groupblock.php:136 actions/groupmembers.php:316 msgid "Block user from group" msgstr "Gebruiker toegang tot de groep blokkeren" @@ -1461,23 +1704,23 @@ msgstr "%1$s groeps leden, pagina %2$d" msgid "A list of the users in this group." msgstr "Ledenlijst van deze groep" -#: actions/groupmembers.php:175 lib/action.php:442 lib/groupnav.php:107 +#: actions/groupmembers.php:175 lib/action.php:448 lib/groupnav.php:107 msgid "Admin" msgstr "Beheerder" -#: actions/groupmembers.php:346 lib/blockform.php:69 +#: actions/groupmembers.php:348 lib/blockform.php:69 msgid "Block" msgstr "Blokkeren" -#: actions/groupmembers.php:441 +#: actions/groupmembers.php:443 msgid "Make user an admin of the group" msgstr "Deze gebruiker groepsbeheerder maken" -#: actions/groupmembers.php:473 +#: actions/groupmembers.php:475 msgid "Make Admin" msgstr "Beheerder maken" -#: actions/groupmembers.php:473 +#: actions/groupmembers.php:475 msgid "Make this user an admin" msgstr "Deze gebruiker beheerder maken" @@ -1660,6 +1903,11 @@ msgstr "" msgid "That is not your Jabber ID." msgstr "Dit is niet uw Jabber-ID." +#: actions/inbox.php:59 +#, php-format +msgid "Inbox for %1$s - page %2$d" +msgstr "Postvak IN van %s - pagina %2$d" + #: actions/inbox.php:62 #, php-format msgid "Inbox for %s" @@ -1744,7 +1992,7 @@ msgstr "Persoonlijk bericht" msgid "Optionally add a personal message to the invitation." msgstr "Persoonlijk bericht bij de uitnodiging (optioneel)." -#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:237 +#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:236 msgid "Send" msgstr "Verzenden" @@ -1846,7 +2094,7 @@ msgstr "" "Er is een fout opgetreden bij het maken van de instellingen. U hebt " "waarschijnlijk niet de juiste rechten." -#: actions/login.php:188 actions/login.php:241 lib/action.php:460 +#: actions/login.php:188 actions/login.php:241 lib/action.php:466 #: lib/logingroupnav.php:79 msgid "Login" msgstr "Aanmelden" @@ -1855,17 +2103,6 @@ msgstr "Aanmelden" msgid "Login to site" msgstr "Aanmelden" -#: actions/login.php:230 actions/profilesettings.php:106 -#: actions/register.php:424 actions/showgroup.php:236 actions/tagother.php:94 -#: lib/groupeditform.php:152 lib/userprofile.php:131 -msgid "Nickname" -msgstr "Gebruikersnaam" - -#: actions/login.php:233 actions/register.php:429 -#: lib/accountsettingsaction.php:116 -msgid "Password" -msgstr "Wachtwoord" - #: actions/login.php:236 actions/register.php:478 msgid "Remember me" msgstr "Aanmeldgegevens onthouden" @@ -1895,21 +2132,21 @@ msgstr "" "Meld u aan met uw gebruikersnaam en wachtwoord. Hebt u nog geen " "gebruikersnaam? [Registreer een nieuwe gebruiker](%%action.register%%)." -#: actions/makeadmin.php:91 +#: actions/makeadmin.php:92 msgid "Only an admin can make another user an admin." msgstr "Alleen beheerders kunnen andere gebruikers beheerder maken." -#: actions/makeadmin.php:95 +#: actions/makeadmin.php:96 #, php-format msgid "%1$s is already an admin for group \"%2$s\"." msgstr "%1$s is al beheerder van de groep \"%2$s\"" -#: actions/makeadmin.php:132 +#: actions/makeadmin.php:133 #, php-format msgid "Can't get membership record for %1$s in group %2$s." msgstr "Het was niet mogelijk te bevestigen dat %1$s lid is van de groep %2$s." -#: actions/makeadmin.php:145 +#: actions/makeadmin.php:146 #, php-format msgid "Can't make %1$s an admin for group %2$s." msgstr "Het is niet mogelijk %1$s beheerder te maken van de groep %2$s." @@ -1918,6 +2155,26 @@ msgstr "Het is niet mogelijk %1$s beheerder te maken van de groep %2$s." msgid "No current status" msgstr "Geen huidige status" +#: actions/newapplication.php:52 +msgid "New Application" +msgstr "Nieuwe applicatie" + +#: actions/newapplication.php:64 +msgid "You must be logged in to register an application." +msgstr "U moet aangemeld zijn om een applicatie te kunnen registreren." + +#: actions/newapplication.php:143 +msgid "Use this form to register a new application." +msgstr "Gebruik dit formulier om een nieuwe applicatie te registreren." + +#: actions/newapplication.php:176 +msgid "Source URL is required." +msgstr "Een bron-URL is verplicht." + +#: actions/newapplication.php:258 actions/newapplication.php:267 +msgid "Could not create application." +msgstr "Het was niet mogelijk de applicatie aan te maken." + #: actions/newgroup.php:53 msgid "New group" msgstr "Nieuwe groep" @@ -2031,6 +2288,54 @@ msgstr "De por is verzonden" msgid "Nudge sent!" msgstr "De por is verzonden!" +#: actions/oauthappssettings.php:59 +msgid "You must be logged in to list your applications." +msgstr "" +"U moet aangemeld zijn om een lijst met uw applicaties te kunnen bekijken." + +#: actions/oauthappssettings.php:74 +msgid "OAuth applications" +msgstr "Overige instellingen" + +#: actions/oauthappssettings.php:85 +msgid "Applications you have registered" +msgstr "Door u geregistreerde applicaties" + +#: actions/oauthappssettings.php:135 +#, php-format +msgid "You have not registered any applications yet." +msgstr "U hebt nog geen applicaties geregistreerd." + +#: actions/oauthconnectionssettings.php:72 +msgid "Connected applications" +msgstr "Verbonden applicaties" + +#: actions/oauthconnectionssettings.php:83 +msgid "You have allowed the following applications to access you account." +msgstr "" +"U hebt de volgende applicaties toegang gegeven tot uw gebruikersgegevens." + +#: actions/oauthconnectionssettings.php:175 +msgid "You are not a user of that application." +msgstr "U bent geen gebruiker van die applicatie." + +#: actions/oauthconnectionssettings.php:186 +msgid "Unable to revoke access for app: " +msgstr "" +"Het was niet mogelijk de toegang te ontzeggen voor de volgende applicatie: " + +#: actions/oauthconnectionssettings.php:198 +#, php-format +msgid "You have not authorized any applications to use your account." +msgstr "" +"U hebt geen enkele applicatie geautoriseerd voor toegang tot uw " +"gebruikersgegevens." + +#: actions/oauthconnectionssettings.php:211 +msgid "Developers can edit the registration settings for their applications " +msgstr "" +"Ontwikkelaars kunnen de registratiegegevens voor hun applicaties bewerken " + #: actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" msgstr "Mededeling heeft geen profiel" @@ -2048,8 +2353,8 @@ msgstr "inhoudstype " msgid "Only " msgstr "Alleen " -#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1033 -#: lib/api.php:1061 lib/api.php:1171 +#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 +#: lib/api.php:1068 lib/api.php:1177 msgid "Not a supported data format." msgstr "Geen ondersteund gegevensformaat." @@ -2062,7 +2367,7 @@ msgid "Notice Search" msgstr "Mededeling zoeken" #: actions/othersettings.php:60 -msgid "Other Settings" +msgid "Other settings" msgstr "Overige instellingen" #: actions/othersettings.php:71 @@ -2113,6 +2418,11 @@ msgstr "Het opgegeven token is ongeldig." msgid "Login token expired." msgstr "Het aanmeldtoken is verlopen." +#: actions/outbox.php:58 +#, php-format +msgid "Outbox for %1$s - page %2$d" +msgstr "Postvak UIT voor %1$s - pagina %2$d" + #: actions/outbox.php:61 #, php-format msgid "Outbox for %s" @@ -2183,7 +2493,7 @@ msgstr "Het was niet mogelijk het nieuwe wachtwoord op te slaan." msgid "Password saved." msgstr "Het wachtwoord is opgeslagen." -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:326 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:331 msgid "Paths" msgstr "Paden" @@ -2191,132 +2501,148 @@ msgstr "Paden" msgid "Path and server settings for this StatusNet site." msgstr "Pad- en serverinstellingen voor de StatusNet-website." -#: actions/pathsadminpanel.php:140 +#: actions/pathsadminpanel.php:157 #, php-format msgid "Theme directory not readable: %s" msgstr "Er kan niet uit de vormgevingmap gelezen worden: %s" -#: actions/pathsadminpanel.php:146 +#: actions/pathsadminpanel.php:163 #, php-format msgid "Avatar directory not writable: %s" msgstr "Er kan niet in de avatarmap geschreven worden: %s" -#: actions/pathsadminpanel.php:152 +#: actions/pathsadminpanel.php:169 #, php-format msgid "Background directory not writable: %s" msgstr "Er kan niet in de achtergrondmap geschreven worden: %s" -#: actions/pathsadminpanel.php:160 +#: actions/pathsadminpanel.php:177 #, php-format msgid "Locales directory not readable: %s" msgstr "Er kan niet uit de talenmap gelezen worden: %s" -#: actions/pathsadminpanel.php:166 +#: actions/pathsadminpanel.php:183 msgid "Invalid SSL server. The maximum length is 255 characters." msgstr "De SSL-server is ongeldig. De maximale lengte is 255 tekens." -#: actions/pathsadminpanel.php:217 actions/siteadminpanel.php:58 +#: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58 #: lib/adminpanelaction.php:311 msgid "Site" msgstr "Website" -#: actions/pathsadminpanel.php:221 +#: actions/pathsadminpanel.php:238 +msgid "Server" +msgstr "Server" + +#: actions/pathsadminpanel.php:238 +msgid "Site's server hostname." +msgstr "Hostnaam van de website server." + +#: actions/pathsadminpanel.php:242 msgid "Path" msgstr "Pad" -#: actions/pathsadminpanel.php:221 +#: actions/pathsadminpanel.php:242 msgid "Site path" msgstr "Websitepad" -#: actions/pathsadminpanel.php:225 +#: actions/pathsadminpanel.php:246 msgid "Path to locales" msgstr "Talenpad" -#: actions/pathsadminpanel.php:225 +#: actions/pathsadminpanel.php:246 msgid "Directory path to locales" msgstr "Talenmap" -#: actions/pathsadminpanel.php:232 +#: actions/pathsadminpanel.php:250 +msgid "Fancy URLs" +msgstr "Nette URL's" + +#: actions/pathsadminpanel.php:252 +msgid "Use fancy (more readable and memorable) URLs?" +msgstr "Nette URL's (meer leesbaar en beter te onthouden) gebruiken?" + +#: actions/pathsadminpanel.php:259 msgid "Theme" msgstr "Vormgeving" -#: actions/pathsadminpanel.php:237 +#: actions/pathsadminpanel.php:264 msgid "Theme server" msgstr "Vormgevingsserver" -#: actions/pathsadminpanel.php:241 +#: actions/pathsadminpanel.php:268 msgid "Theme path" msgstr "Vormgevingspad" -#: actions/pathsadminpanel.php:245 +#: actions/pathsadminpanel.php:272 msgid "Theme directory" msgstr "Vormgevingsmap" -#: actions/pathsadminpanel.php:252 +#: actions/pathsadminpanel.php:279 msgid "Avatars" msgstr "Avatars" -#: actions/pathsadminpanel.php:257 +#: actions/pathsadminpanel.php:284 msgid "Avatar server" msgstr "Avatarserver" -#: actions/pathsadminpanel.php:261 +#: actions/pathsadminpanel.php:288 msgid "Avatar path" msgstr "Avatarpad" -#: actions/pathsadminpanel.php:265 +#: actions/pathsadminpanel.php:292 msgid "Avatar directory" msgstr "Avatarmap" -#: actions/pathsadminpanel.php:274 +#: actions/pathsadminpanel.php:301 msgid "Backgrounds" msgstr "Achtergronden" -#: actions/pathsadminpanel.php:278 +#: actions/pathsadminpanel.php:305 msgid "Background server" msgstr "Achtergrondenserver" -#: actions/pathsadminpanel.php:282 +#: actions/pathsadminpanel.php:309 msgid "Background path" msgstr "Achtergrondpad" -#: actions/pathsadminpanel.php:286 +#: actions/pathsadminpanel.php:313 msgid "Background directory" msgstr "Achtergrondenmap" -#: actions/pathsadminpanel.php:293 +#: actions/pathsadminpanel.php:320 msgid "SSL" msgstr "SSL" -#: actions/pathsadminpanel.php:296 actions/siteadminpanel.php:346 +#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 msgid "Never" msgstr "Nooit" -#: actions/pathsadminpanel.php:297 +#: actions/pathsadminpanel.php:324 msgid "Sometimes" msgstr "Soms" -#: actions/pathsadminpanel.php:298 +#: actions/pathsadminpanel.php:325 msgid "Always" msgstr "Altijd" -#: actions/pathsadminpanel.php:302 +#: actions/pathsadminpanel.php:329 msgid "Use SSL" msgstr "SSL gebruiken" -#: actions/pathsadminpanel.php:303 +#: actions/pathsadminpanel.php:330 msgid "When to use SSL" msgstr "Wanneer SSL gebruikt moet worden" -#: actions/pathsadminpanel.php:308 +#: actions/pathsadminpanel.php:335 msgid "SSL server" msgstr "SSL-server" -#: actions/pathsadminpanel.php:309 +#: actions/pathsadminpanel.php:336 msgid "Server to direct SSL requests to" msgstr "De server waar SSL-verzoeken heen gestuurd moeten worden" -#: actions/pathsadminpanel.php:325 +#: actions/pathsadminpanel.php:352 msgid "Save paths" msgstr "Opslagpaden" @@ -2381,7 +2707,7 @@ msgid "Full name" msgstr "Volledige naam" #: actions/profilesettings.php:115 actions/register.php:453 -#: lib/groupeditform.php:161 +#: lib/applicationeditform.php:228 lib/groupeditform.php:161 msgid "Homepage" msgstr "Thuispagina" @@ -2404,7 +2730,7 @@ msgstr "Beschrijving" #: actions/profilesettings.php:132 actions/register.php:471 #: actions/showgroup.php:256 actions/tagother.php:112 -#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:164 msgid "Location" msgstr "Locatie" @@ -2430,7 +2756,7 @@ msgstr "" "Eigen labels (letter, getallen, -, ., en _). Gescheiden door komma's of " "spaties" -#: actions/profilesettings.php:151 actions/siteadminpanel.php:294 +#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 msgid "Language" msgstr "Taal" @@ -2458,7 +2784,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "De beschrijving is te lang (maximaal %d tekens)." -#: actions/profilesettings.php:235 actions/siteadminpanel.php:164 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 msgid "Timezone not selected." msgstr "Er is geen tijdzone geselecteerd." @@ -2471,25 +2797,25 @@ msgstr "Taal is te lang (max 50 tekens)." msgid "Invalid tag: \"%s\"" msgstr "Ongeldig label: '%s'" -#: actions/profilesettings.php:302 +#: actions/profilesettings.php:306 msgid "Couldn't update user for autosubscribe." msgstr "" "Het was niet mogelijk de instelling voor automatisch abonneren voor de " "gebruiker bij te werken." -#: actions/profilesettings.php:359 +#: actions/profilesettings.php:363 msgid "Couldn't save location prefs." msgstr "Het was niet mogelijk de locatievoorkeuren op te slaan." -#: actions/profilesettings.php:371 +#: actions/profilesettings.php:375 msgid "Couldn't save profile." msgstr "Het profiel kon niet opgeslagen worden." -#: actions/profilesettings.php:379 +#: actions/profilesettings.php:383 msgid "Couldn't save tags." msgstr "Het was niet mogelijk de labels op te slaan." -#: actions/profilesettings.php:387 lib/adminpanelaction.php:137 +#: actions/profilesettings.php:391 lib/adminpanelaction.php:137 msgid "Settings saved." msgstr "De instellingen zijn opgeslagen." @@ -2511,19 +2837,19 @@ msgstr "Openbare tijdlijn, pagina %d" msgid "Public timeline" msgstr "Openbare tijdlijn" -#: actions/public.php:151 +#: actions/public.php:159 msgid "Public Stream Feed (RSS 1.0)" msgstr "Publieke streamfeed (RSS 1.0)" -#: actions/public.php:155 +#: actions/public.php:163 msgid "Public Stream Feed (RSS 2.0)" msgstr "Publieke streamfeed (RSS 1.0)" -#: actions/public.php:159 +#: actions/public.php:167 msgid "Public Stream Feed (Atom)" msgstr "Publieke streamfeed (Atom)" -#: actions/public.php:179 +#: actions/public.php:187 #, php-format msgid "" "This is the public timeline for %%site.name%% but no one has posted anything " @@ -2532,11 +2858,11 @@ msgstr "" "Dit is de publieke tijdlijn voor %%site.name%%, maar niemand heeft nog " "berichten geplaatst." -#: actions/public.php:182 +#: actions/public.php:190 msgid "Be the first to post!" msgstr "U kunt de eerste zijn die een bericht plaatst!" -#: actions/public.php:186 +#: actions/public.php:194 #, php-format msgid "" "Why not [register an account](%%action.register%%) and be the first to post!" @@ -2544,7 +2870,7 @@ msgstr "" "Waarom [registreert u geen gebruiker](%%action.register%%) en plaatst u als " "eerste een bericht?" -#: actions/public.php:233 +#: actions/public.php:241 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2557,7 +2883,7 @@ msgstr "" "net/). [Registreer nu](%%action.register%%) om mededelingen over uzelf te " "delen met vrienden, familie en collega's! [Meer lezen...](%%doc.help%%)" -#: actions/public.php:238 +#: actions/public.php:246 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2596,7 +2922,7 @@ msgstr "" "U kunt een [gebruiker registeren](%%action.register%%) en dan de eerste zijn " "die er een plaatst!" -#: actions/publictagcloud.php:131 +#: actions/publictagcloud.php:134 msgid "Tag cloud" msgstr "Woordwolk" @@ -2741,7 +3067,7 @@ msgstr "Sorry. De uitnodigingscode is ongeldig." msgid "Registration successful" msgstr "De registratie is voltooid" -#: actions/register.php:114 actions/register.php:503 lib/action.php:457 +#: actions/register.php:114 actions/register.php:503 lib/action.php:463 #: lib/logingroupnav.php:85 msgid "Register" msgstr "Registreren" @@ -2783,7 +3109,7 @@ msgid "Same as password above. Required." msgstr "Gelijk aan het wachtwoord hierboven. Verplicht" #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:270 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 msgid "Email" msgstr "E-mail" @@ -2890,7 +3216,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "De URL van uw profiel bij een andere, compatibele microblogdienst" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:365 +#: lib/userprofile.php:368 msgid "Subscribe" msgstr "Abonneren" @@ -2928,7 +3254,7 @@ msgstr "U kunt uw eigen mededeling niet herhalen." msgid "You already repeated that notice." msgstr "U hent die mededeling al herhaald." -#: actions/repeat.php:114 lib/noticelist.php:629 +#: actions/repeat.php:114 lib/noticelist.php:656 msgid "Repeated" msgstr "Herhaald" @@ -2942,6 +3268,11 @@ msgstr "Herhaald!" msgid "Replies to %s" msgstr "Antwoorden aan %s" +#: actions/replies.php:127 +#, php-format +msgid "Replies to %1$s, page %2$d" +msgstr "Antwoorden aan %1$s, pagina %2$d" + #: actions/replies.php:144 #, php-format msgid "Replies feed for %s (RSS 1.0)" @@ -2989,6 +3320,10 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "Antwoorden aan %1$s op %2$s." +#: actions/rsd.php:146 actions/version.php:157 +msgid "StatusNet" +msgstr "StatusNet" + #: actions/sandbox.php:65 actions/unsandbox.php:65 msgid "You cannot sandbox users on this site." msgstr "Op deze website kunt u gebruikers niet in de zandbak plaatsen." @@ -2997,6 +3332,122 @@ msgstr "Op deze website kunt u gebruikers niet in de zandbak plaatsen." msgid "User is already sandboxed." msgstr "Deze gebruiker is al in de zandbak geplaatst." +#: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:336 +msgid "Sessions" +msgstr "Sessies" + +#: actions/sessionsadminpanel.php:65 +msgid "Session settings for this StatusNet site." +msgstr "Sessieinstellingen voor deze StatusNet-website." + +#: actions/sessionsadminpanel.php:175 +msgid "Handle sessions" +msgstr "Sessieafhandeling" + +#: actions/sessionsadminpanel.php:177 +msgid "Whether to handle sessions ourselves." +msgstr "Of sessies door de software zelf afgehandeld moeten worden." + +#: actions/sessionsadminpanel.php:181 +msgid "Session debugging" +msgstr "Sessies debuggen" + +#: actions/sessionsadminpanel.php:183 +msgid "Turn on debugging output for sessions." +msgstr "Debuguitvoer voor sessies inschakelen." + +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/useradminpanel.php:293 +msgid "Save site settings" +msgstr "Websiteinstellingen opslaan" + +#: actions/showapplication.php:82 +msgid "You must be logged in to view an application." +msgstr "U moet aangemeld zijn om een applicatie te kunnen bekijken." + +#: actions/showapplication.php:157 +msgid "Application profile" +msgstr "Applicatieprofiel" + +#: actions/showapplication.php:159 lib/applicationeditform.php:180 +msgid "Icon" +msgstr "Icoon" + +#: actions/showapplication.php:169 actions/version.php:195 +#: lib/applicationeditform.php:195 +msgid "Name" +msgstr "Naam" + +#: actions/showapplication.php:178 lib/applicationeditform.php:222 +msgid "Organization" +msgstr "Organisatie" + +#: actions/showapplication.php:187 actions/version.php:198 +#: lib/applicationeditform.php:209 lib/groupeditform.php:172 +msgid "Description" +msgstr "Beschrijving" + +#: actions/showapplication.php:192 actions/showgroup.php:429 +#: lib/profileaction.php:174 +msgid "Statistics" +msgstr "Statistieken" + +#: actions/showapplication.php:203 +#, php-format +msgid "Created by %1$s - %2$s access by default - %3$d users" +msgstr "Aangemaakt door %1$s - standaardtoegang \"%2$s\" - %3$d gebruikers" + +#: actions/showapplication.php:213 +msgid "Application actions" +msgstr "Applicatiehandelingen" + +#: actions/showapplication.php:236 +msgid "Reset key & secret" +msgstr "Sleutel en wachtwoord op nieuw instellen" + +#: actions/showapplication.php:261 +msgid "Application info" +msgstr "Applicatieinformatie" + +#: actions/showapplication.php:263 +msgid "Consumer key" +msgstr "Gebruikerssleutel" + +#: actions/showapplication.php:268 +msgid "Consumer secret" +msgstr "Gebruikerswachtwoord" + +#: actions/showapplication.php:273 +msgid "Request token URL" +msgstr "URL voor verzoektoken" + +#: actions/showapplication.php:278 +msgid "Access token URL" +msgstr "URL voor toegangstoken" + +#: actions/showapplication.php:283 +msgid "Authorize URL" +msgstr "Autorisatie-URL" + +#: actions/showapplication.php:288 +msgid "" +"Note: We support HMAC-SHA1 signatures. We do not support the plaintext " +"signature method." +msgstr "" +"Opmerking: HMAC-SHA1 ondertekening wordt ondersteund. Ondertekening in " +"platte tekst is niet mogelijk." + +#: actions/showapplication.php:309 +msgid "Are you sure you want to reset your consumer key and secret?" +msgstr "" +"Weet u zeker dat u uw gebruikerssleutel en geheime code wilt verwijderen?" + +#: actions/showfavorites.php:79 +#, php-format +msgid "%1$s's favorite notices, page %2$d" +msgstr "Favoriete mededelingen van %1$s, pagina %2$d" + #: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "Het was niet mogelijk de favoriete mededelingen op te halen." @@ -3055,17 +3506,22 @@ msgstr "Dit is de manier om dat te delen wat u wilt." msgid "%s group" msgstr "%s groep" +#: actions/showgroup.php:84 +#, php-format +msgid "%1$s group, page %2$d" +msgstr "Groep %1$s, pagina %2$d" + #: actions/showgroup.php:218 msgid "Group profile" msgstr "Groepsprofiel" #: actions/showgroup.php:263 actions/tagother.php:118 -#: actions/userauthorization.php:167 lib/userprofile.php:177 +#: actions/userauthorization.php:175 lib/userprofile.php:177 msgid "URL" msgstr "URL" #: actions/showgroup.php:274 actions/tagother.php:128 -#: actions/userauthorization.php:179 lib/userprofile.php:194 +#: actions/userauthorization.php:187 lib/userprofile.php:194 msgid "Note" msgstr "Opmerking" @@ -3111,10 +3567,6 @@ msgstr "(geen)" msgid "All members" msgstr "Alle leden" -#: actions/showgroup.php:429 lib/profileaction.php:174 -msgid "Statistics" -msgstr "Statistieken" - #: actions/showgroup.php:432 msgid "Created" msgstr "Aangemaakt" @@ -3179,6 +3631,11 @@ msgstr "Deze mededeling is verwijderd." msgid " tagged %s" msgstr " met het label %s" +#: actions/showstream.php:79 +#, php-format +msgid "%1$s, page %2$d" +msgstr "%1$s, pagina %2$d" + #: actions/showstream.php:122 #, php-format msgid "Notice feed for %1$s tagged %2$s (RSS 1.0)" @@ -3204,13 +3661,13 @@ msgstr "Mededelingenfeed voor %s (Atom)" msgid "FOAF for %s" msgstr "Vriend van een vriend (FOAF) voor %s" -#: actions/showstream.php:191 +#: actions/showstream.php:200 #, php-format msgid "This is the timeline for %1$s but %2$s hasn't posted anything yet." msgstr "" "Dit is de tijdlijn voor %1$s, maar %2$s heeft nog geen berichten verzonden." -#: actions/showstream.php:196 +#: actions/showstream.php:205 msgid "" "Seen anything interesting recently? You haven't posted any notices yet, now " "would be a good time to start :)" @@ -3218,7 +3675,7 @@ msgstr "" "Hebt u recentelijk iets interessants gezien? U hebt nog geen mededelingen " "verstuurd, dus dit is een ideaal moment om daarmee te beginnen!" -#: actions/showstream.php:198 +#: actions/showstream.php:207 #, php-format msgid "" "You can try to nudge %1$s or [post something to his or her attention](%%%%" @@ -3227,7 +3684,7 @@ msgstr "" "U kunt proberen %1$s te porren of [een bericht voor die gebruiker plaatsen](%" "%%%action.newnotice%%%%?status_textarea=%2$s)." -#: actions/showstream.php:234 +#: actions/showstream.php:243 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3241,7 +3698,7 @@ msgstr "" "abonneren op de mededelingen van **%s** en nog veel meer! [Meer lezen...](%%%" "%doc.help%%%%)" -#: actions/showstream.php:239 +#: actions/showstream.php:248 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3252,7 +3709,7 @@ msgstr "" "(http://en.wikipedia.org/wiki/Micro-blogging) gebaseerd op de Vrije Software " "[StatusNet](http://status.net/). " -#: actions/showstream.php:313 +#: actions/showstream.php:305 #, php-format msgid "Repeat of %s" msgstr "Herhaald van %s" @@ -3269,203 +3726,151 @@ msgstr "Deze gebruiker is al gemuilkorfd." msgid "Basic settings for this StatusNet site." msgstr "Basisinstellingen voor deze StatusNet-website." -#: actions/siteadminpanel.php:146 +#: actions/siteadminpanel.php:132 msgid "Site name must have non-zero length." msgstr "De sitenaam moet ingevoerd worden en mag niet leeg zijn." -#: actions/siteadminpanel.php:154 +#: actions/siteadminpanel.php:140 msgid "You must have a valid contact email address." msgstr "" "U moet een geldig e-mailadres opgeven waarop contact opgenomen kan worden." -#: actions/siteadminpanel.php:172 +#: actions/siteadminpanel.php:158 #, php-format msgid "Unknown language \"%s\"." msgstr "De taal \"%s\" is niet bekend." -#: actions/siteadminpanel.php:179 +#: actions/siteadminpanel.php:165 msgid "Invalid snapshot report URL." msgstr "De rapportage-URL voor snapshots is ongeldig." -#: actions/siteadminpanel.php:185 +#: actions/siteadminpanel.php:171 msgid "Invalid snapshot run value." msgstr "De waarde voor het uitvoeren van snapshots is ongeldig." -#: actions/siteadminpanel.php:191 +#: actions/siteadminpanel.php:177 msgid "Snapshot frequency must be a number." msgstr "De snapshotfrequentie moet een getal zijn." -#: actions/siteadminpanel.php:197 +#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "De minimale tekstlimiet is 140 tekens." -#: actions/siteadminpanel.php:203 +#: actions/siteadminpanel.php:189 msgid "Dupe limit must 1 or more seconds." msgstr "De duplicaatlimiet moet één of meer seconden zijn." -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:239 msgid "General" msgstr "Algemeen" -#: actions/siteadminpanel.php:256 +#: actions/siteadminpanel.php:242 msgid "Site name" msgstr "Websitenaam" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:243 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "De naam van de website, zoals \"UwBedrijf Microblog\"" -#: actions/siteadminpanel.php:261 +#: actions/siteadminpanel.php:247 msgid "Brought by" msgstr "Mogelijk gemaakt door" -#: actions/siteadminpanel.php:262 +#: actions/siteadminpanel.php:248 msgid "Text used for credits link in footer of each page" msgstr "" "De tekst die gebruikt worden in de \"creditsverwijzing\" in de voettekst van " "iedere pagina" -#: actions/siteadminpanel.php:266 +#: actions/siteadminpanel.php:252 msgid "Brought by URL" msgstr "\"Mogelijk gemaakt door\"-URL" -#: actions/siteadminpanel.php:267 +#: actions/siteadminpanel.php:253 msgid "URL used for credits link in footer of each page" msgstr "" "URL die wordt gebruikt voor de verwijzing naar de hoster en dergelijke in de " "voettekst van iedere pagina" -#: actions/siteadminpanel.php:271 +#: actions/siteadminpanel.php:257 msgid "Contact email address for your site" msgstr "E-mailadres om contact op te nemen met de websitebeheerder" -#: actions/siteadminpanel.php:277 +#: actions/siteadminpanel.php:263 msgid "Local" msgstr "Lokaal" -#: actions/siteadminpanel.php:288 +#: actions/siteadminpanel.php:274 msgid "Default timezone" msgstr "Standaardtijdzone" -#: actions/siteadminpanel.php:289 +#: actions/siteadminpanel.php:275 msgid "Default timezone for the site; usually UTC." msgstr "Standaardtijdzone voor de website. Meestal UTC." -#: actions/siteadminpanel.php:295 +#: actions/siteadminpanel.php:281 msgid "Default site language" msgstr "Standaardtaal" -#: actions/siteadminpanel.php:303 -msgid "URLs" -msgstr "URL's" - -#: actions/siteadminpanel.php:306 -msgid "Server" -msgstr "Server" - -#: actions/siteadminpanel.php:306 -msgid "Site's server hostname." -msgstr "Hostnaam van de website server." - -#: actions/siteadminpanel.php:310 -msgid "Fancy URLs" -msgstr "Nette URL's" - -#: actions/siteadminpanel.php:312 -msgid "Use fancy (more readable and memorable) URLs?" -msgstr "Nette URL's (meer leesbaar en beter te onthouden) gebruiken?" - -#: actions/siteadminpanel.php:318 -msgid "Access" -msgstr "Toegang" - -#: actions/siteadminpanel.php:321 -msgid "Private" -msgstr "Privé" - -#: actions/siteadminpanel.php:323 -msgid "Prohibit anonymous users (not logged in) from viewing site?" -msgstr "Mogen anonieme gebruikers (niet aangemeld) de website bekijken?" - -#: actions/siteadminpanel.php:327 -msgid "Invite only" -msgstr "Alleen op uitnodiging" - -#: actions/siteadminpanel.php:329 -msgid "Make registration invitation only." -msgstr "Registratie alleen op uitnodiging." - -#: actions/siteadminpanel.php:333 -msgid "Closed" -msgstr "Gesloten" - -#: actions/siteadminpanel.php:335 -msgid "Disable new registrations." -msgstr "Nieuwe registraties uitschakelen." - -#: actions/siteadminpanel.php:341 +#: actions/siteadminpanel.php:289 msgid "Snapshots" msgstr "Snapshots" -#: actions/siteadminpanel.php:344 +#: actions/siteadminpanel.php:292 msgid "Randomly during Web hit" msgstr "Willekeurig tijdens een websitehit" -#: actions/siteadminpanel.php:345 +#: actions/siteadminpanel.php:293 msgid "In a scheduled job" msgstr "Als geplande taak" -#: actions/siteadminpanel.php:347 +#: actions/siteadminpanel.php:295 msgid "Data snapshots" msgstr "Snapshots van gegevens" -#: actions/siteadminpanel.php:348 +#: actions/siteadminpanel.php:296 msgid "When to send statistical data to status.net servers" msgstr "" "Wanneer statistische gegevens naar de status.net-servers verzonden worden" -#: actions/siteadminpanel.php:353 +#: actions/siteadminpanel.php:301 msgid "Frequency" msgstr "Frequentie" -#: actions/siteadminpanel.php:354 +#: actions/siteadminpanel.php:302 msgid "Snapshots will be sent once every N web hits" msgstr "Iedere zoveel websitehits wordt een snapshot verzonden" -#: actions/siteadminpanel.php:359 +#: actions/siteadminpanel.php:307 msgid "Report URL" msgstr "Rapportage-URL" -#: actions/siteadminpanel.php:360 +#: actions/siteadminpanel.php:308 msgid "Snapshots will be sent to this URL" msgstr "Snapshots worden naar deze URL verzonden" -#: actions/siteadminpanel.php:367 +#: actions/siteadminpanel.php:315 msgid "Limits" msgstr "Limieten" -#: actions/siteadminpanel.php:370 +#: actions/siteadminpanel.php:318 msgid "Text limit" msgstr "Tekstlimiet" -#: actions/siteadminpanel.php:370 +#: actions/siteadminpanel.php:318 msgid "Maximum number of characters for notices." msgstr "Maximaal aantal te gebruiken tekens voor mededelingen." -#: actions/siteadminpanel.php:374 +#: actions/siteadminpanel.php:322 msgid "Dupe limit" msgstr "Duplicaatlimiet" -#: actions/siteadminpanel.php:374 +#: actions/siteadminpanel.php:322 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" "Hoe lang gebruikers moeten wachten (in seconden) voor ze hetzelfde kunnen " "zenden." -#: actions/siteadminpanel.php:388 actions/useradminpanel.php:313 -msgid "Save site settings" -msgstr "Websiteinstellingen opslaan" - #: actions/smssettings.php:58 msgid "SMS settings" msgstr "SMS-instellingen" @@ -3569,15 +3974,26 @@ msgstr "Er is geen code ingevoerd" msgid "You are not subscribed to that profile." msgstr "U bent niet geabonneerd op dat profiel." -#: actions/subedit.php:83 +#: actions/subedit.php:83 classes/Subscription.php:89 +#: classes/Subscription.php:116 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:77 +msgid "This action only accepts POST requests." +msgstr "" -#: actions/subscribe.php:69 +#: actions/subscribe.php:107 +#, fuzzy +msgid "No such profile." +msgstr "Het bestand bestaat niet." + +#: actions/subscribe.php:117 +#, fuzzy +msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." +msgstr "U bent niet geabonneerd op dat profiel." + +#: actions/subscribe.php:145 msgid "Subscribed" msgstr "Geabonneerd" @@ -3641,7 +4057,7 @@ msgstr "Dit zijn de gebruikers van wie u de mededelingen volgt." msgid "These are the people whose notices %s listens to." msgstr "Dit zijn de gebruikers waarvan %s de mededelingen volgt." -#: actions/subscriptions.php:121 +#: actions/subscriptions.php:126 #, php-format msgid "" "You're not listening to anyone's notices right now, try subscribing to " @@ -3657,19 +4073,24 @@ msgstr "" "action.twittersettings%%), kunt u automatisch abonneren op de gebruikers die " "u daar al volgt." -#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#: actions/subscriptions.php:128 actions/subscriptions.php:132 #, php-format msgid "%s is not listening to anyone." -msgstr "%s luistert nergens naar." +msgstr "%s volgt niemand." -#: actions/subscriptions.php:194 +#: actions/subscriptions.php:199 msgid "Jabber" msgstr "Jabber" -#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:204 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "SMS" +#: actions/tag.php:68 +#, php-format +msgid "Notices tagged with %1$s, page %2$d" +msgstr "Mededelingen met het label %1$s, pagina %2$d" + #: actions/tag.php:86 #, php-format msgid "Notice feed for tag %s (RSS 1.0)" @@ -3698,7 +4119,8 @@ msgstr "Label %s" msgid "User profile" msgstr "Gebruikersprofiel" -#: actions/tagother.php:81 lib/userprofile.php:102 +#: actions/tagother.php:81 actions/userauthorization.php:132 +#: lib/userprofile.php:102 msgid "Photo" msgstr "Foto" @@ -3759,7 +4181,7 @@ msgstr "Het profiel-ID was niet aanwezig in het verzoek." msgid "Unsubscribed" msgstr "Het abonnement is opgezegd" -#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#: actions/updateprofile.php:62 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -3776,84 +4198,64 @@ msgstr "Gebruiker" msgid "User settings for this StatusNet site." msgstr "Gebruikersinstellingen voor deze StatusNet-website." -#: actions/useradminpanel.php:149 +#: actions/useradminpanel.php:148 msgid "Invalid bio limit. Must be numeric." msgstr "Ongeldige beschrijvingslimiet. Het moet een getal zijn." -#: actions/useradminpanel.php:155 +#: actions/useradminpanel.php:154 msgid "Invalid welcome text. Max length is 255 characters." msgstr "Ongeldige welkomsttekst. De maximale lengte is 255 tekens." -#: actions/useradminpanel.php:165 +#: actions/useradminpanel.php:164 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "Ongeldig standaardabonnement: \"%1$s\" is geen gebruiker." -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 +#: actions/useradminpanel.php:217 lib/accountsettingsaction.php:108 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Profiel" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:221 msgid "Bio Limit" msgstr "Profiellimiet" -#: actions/useradminpanel.php:223 +#: actions/useradminpanel.php:222 msgid "Maximum length of a profile bio in characters." msgstr "De maximale lengte van de profieltekst in tekens." -#: actions/useradminpanel.php:231 +#: actions/useradminpanel.php:230 msgid "New users" msgstr "Nieuwe gebruikers" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:234 msgid "New user welcome" msgstr "Welkom voor nieuwe gebruikers" -#: actions/useradminpanel.php:236 +#: actions/useradminpanel.php:235 msgid "Welcome text for new users (Max 255 chars)." msgstr "Welkomsttekst voor nieuwe gebruikers. Maximaal 255 tekens." -#: actions/useradminpanel.php:241 +#: actions/useradminpanel.php:240 msgid "Default subscription" msgstr "Standaardabonnement" -#: actions/useradminpanel.php:242 +#: actions/useradminpanel.php:241 msgid "Automatically subscribe new users to this user." msgstr "Nieuwe gebruikers automatisch op deze gebruiker abonneren" -#: actions/useradminpanel.php:251 +#: actions/useradminpanel.php:250 msgid "Invitations" msgstr "Uitnodigingen" -#: actions/useradminpanel.php:256 +#: actions/useradminpanel.php:255 msgid "Invitations enabled" msgstr "Uitnodigingen ingeschakeld" -#: actions/useradminpanel.php:258 +#: actions/useradminpanel.php:257 msgid "Whether to allow users to invite new users." msgstr "Of gebruikers nieuwe gebruikers kunnen uitnodigen." -#: actions/useradminpanel.php:265 -msgid "Sessions" -msgstr "Sessies" - -#: actions/useradminpanel.php:270 -msgid "Handle sessions" -msgstr "Sessieafhandeling" - -#: actions/useradminpanel.php:272 -msgid "Whether to handle sessions ourselves." -msgstr "Of sessies door de software zelf afgehandeld moeten worden." - -#: actions/useradminpanel.php:276 -msgid "Session debugging" -msgstr "Sessies debuggen" - -#: actions/useradminpanel.php:278 -msgid "Turn on debugging output for sessions." -msgstr "Debuguitvoer voor sessies inschakelen." - #: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Abonneren" @@ -3869,36 +4271,36 @@ msgstr "" "aangegeven dat u zich op de mededelingen van een gebruiker wilt abonneren, " "klik dan op \"Afwijzen\"." -#: actions/userauthorization.php:188 actions/version.php:165 +#: actions/userauthorization.php:196 actions/version.php:165 msgid "License" msgstr "Licentie" -#: actions/userauthorization.php:209 +#: actions/userauthorization.php:217 msgid "Accept" msgstr "Aanvaarden" -#: actions/userauthorization.php:210 lib/subscribeform.php:115 +#: actions/userauthorization.php:218 lib/subscribeform.php:115 #: lib/subscribeform.php:139 msgid "Subscribe to this user" -msgstr "Abonnement geautoriseerd" +msgstr "Abonneer mij op deze gebruiker" -#: actions/userauthorization.php:211 +#: actions/userauthorization.php:219 msgid "Reject" msgstr "Afwijzen" -#: actions/userauthorization.php:212 +#: actions/userauthorization.php:220 msgid "Reject this subscription" msgstr "Dit abonnement weigeren" -#: actions/userauthorization.php:225 +#: actions/userauthorization.php:232 msgid "No authorization request!" msgstr "Geen autorisatieverzoek!" -#: actions/userauthorization.php:247 +#: actions/userauthorization.php:254 msgid "Subscription authorized" msgstr "Het abonnement is geautoriseerd" -#: actions/userauthorization.php:249 +#: actions/userauthorization.php:256 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 " @@ -3908,11 +4310,11 @@ msgstr "" "Controleer de instructies van de site voor informatie over het volledig " "afwijzen van een abonnement. Uw abonnementstoken is:" -#: actions/userauthorization.php:259 +#: actions/userauthorization.php:266 msgid "Subscription rejected" msgstr "Het abonnement is afgewezen" -#: actions/userauthorization.php:261 +#: actions/userauthorization.php:268 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 " @@ -3922,37 +4324,37 @@ msgstr "" "Controleer de instructies van de site voor informatie over het volledig " "afwijzen van een abonnement." -#: actions/userauthorization.php:296 +#: actions/userauthorization.php:303 #, php-format msgid "Listener URI ‘%s’ not found here." msgstr "De abonnee-URI \"%s\" is hier niet te vinden." -#: actions/userauthorization.php:301 +#: actions/userauthorization.php:308 #, php-format msgid "Listenee URI ‘%s’ is too long." msgstr "De URI \"%s\" voor de stream is te lang." -#: actions/userauthorization.php:307 +#: actions/userauthorization.php:314 #, php-format msgid "Listenee URI ‘%s’ is a local user." msgstr "de URI \"%s\" voor de stream is een lokale gebruiker." -#: actions/userauthorization.php:322 +#: actions/userauthorization.php:329 #, php-format msgid "Profile URL ‘%s’ is for a local user." -msgstr "De profiel-URL \"%s\" is niet geldig." +msgstr "De profiel-URL ‘%s’ is van een lokale gebruiker." -#: actions/userauthorization.php:338 +#: actions/userauthorization.php:345 #, php-format msgid "Avatar URL ‘%s’ is not valid." msgstr "De avatar-URL \"%s\" is niet geldig." -#: actions/userauthorization.php:343 +#: actions/userauthorization.php:350 #, php-format msgid "Can’t read avatar URL ‘%s’." msgstr "Het was niet mogelijk de avatar-URL \"%s\" te lezen." -#: actions/userauthorization.php:348 +#: actions/userauthorization.php:355 #, php-format msgid "Wrong image type for avatar URL ‘%s’." msgstr "Er staat een verkeerd afbeeldingsttype op de avatar-URL \"%s\"." @@ -3973,6 +4375,11 @@ msgstr "" msgid "Enjoy your hotdog!" msgstr "Geniet van uw hotdog!" +#: actions/usergroups.php:64 +#, php-format +msgid "%1$s groups, page %2$d" +msgstr "Groepen voor %1$s, pagina %2$d" + #: actions/usergroups.php:130 msgid "Search for more groups" msgstr "Meer groepen zoeken" @@ -4002,10 +4409,6 @@ msgstr "" "Deze website wordt aangedreven door %1$2 versie %2$s. Auteursrechten " "voorbehouden 2008-2010 Statusnet, Inc. en medewerkers." -#: actions/version.php:157 -msgid "StatusNet" -msgstr "StatusNet" - #: actions/version.php:161 msgid "Contributors" msgstr "Medewerkers" @@ -4030,9 +4433,9 @@ msgid "" "for more details. " msgstr "" "Dit programma wordt verspreid in de hoop dat het bruikbaar is, maar ZONDER " -"ENIGE GARANTIE; zonder zelfde impliciete garantie van VERMARKTBAARHEID of " -"GESCHIKTHEID VOOR EEN SPECIFIEK DOEL. Zie de GNU Affero General Public " -"License voor meer details. " +"ENIGE GARANTIE; zelfs zonder de impliciete garantie van VERKOOPBAARHEID of " +"GESCHIKTHEID VOOR EEN BEPAALD DOEL. Zie de GNU Affero General Public License " +"voor meer details. " #: actions/version.php:180 #, php-format @@ -4047,11 +4450,7 @@ msgstr "" msgid "Plugins" msgstr "Plug-ins" -#: actions/version.php:195 -msgid "Name" -msgstr "Naam" - -#: actions/version.php:196 lib/action.php:741 +#: actions/version.php:196 lib/action.php:747 msgid "Version" msgstr "Versie" @@ -4059,10 +4458,6 @@ msgstr "Versie" msgid "Author(s)" msgstr "Auteur(s)" -#: actions/version.php:198 lib/groupeditform.php:172 -msgid "Description" -msgstr "Beschrijving" - #: classes/File.php:144 #, php-format msgid "" @@ -4085,19 +4480,16 @@ msgstr "" "Een bestand van deze grootte overschijdt uw maandelijkse quota van %d bytes." #: classes/Group_member.php:41 -#, fuzzy msgid "Group join failed." -msgstr "Groepsprofiel" +msgstr "Groepslidmaatschap toevoegen is mislukt." #: classes/Group_member.php:53 -#, fuzzy msgid "Not part of group." -msgstr "Het was niet mogelijk de groep bij te werken." +msgstr "Geen lid van groep." #: classes/Group_member.php:60 -#, fuzzy msgid "Group leave failed." -msgstr "Groepsprofiel" +msgstr "Groepslidmaatschap opzeggen is mislukt." #: classes/Login_token.php:76 #, php-format @@ -4116,31 +4508,31 @@ msgstr "Het was niet mogelijk het bericht in te voegen." msgid "Could not update message with new URI." msgstr "Het was niet mogelijk het bericht bij te werken met de nieuwe URI." -#: classes/Notice.php:171 +#: classes/Notice.php:157 #, php-format msgid "DB error inserting hashtag: %s" msgstr "Er is een databasefout opgetreden bij de invoer van de hashtag: %s" -#: classes/Notice.php:225 +#: classes/Notice.php:222 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:229 +#: classes/Notice.php:226 msgid "Problem saving notice. Unknown user." msgstr "" "Er was een probleem bij het opslaan van de mededeling. De gebruiker is " "onbekend." -#: classes/Notice.php:234 +#: classes/Notice.php:231 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" "U hebt te snel te veel mededelingen verstuurd. Kom even op adem en probeer " "het over enige tijd weer." -#: classes/Notice.php:240 +#: classes/Notice.php:237 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." @@ -4148,36 +4540,60 @@ msgstr "" "Te veel duplicaatberichten te snel achter elkaar. Neem een adempauze en " "plaats over een aantal minuten pas weer een bericht." -#: classes/Notice.php:246 +#: classes/Notice.php:243 msgid "You are banned from posting notices on this site." msgstr "" "U bent geblokkeerd en mag geen mededelingen meer achterlaten op deze site." -#: classes/Notice.php:305 classes/Notice.php:330 +#: classes/Notice.php:309 classes/Notice.php:335 msgid "Problem saving notice." msgstr "Er is een probleem opgetreden bij het opslaan van de mededeling." -#: classes/Notice.php:1052 -#, php-format -msgid "DB error inserting reply: %s" +#: classes/Notice.php:882 +msgid "Problem saving group inbox." msgstr "" -"Er is een databasefout opgetreden bij het invoegen van het antwoord: %s" +"Er is een probleem opgetreden bij het opslaan van het Postvak IN van de " +"groep." -#: classes/Notice.php:1423 +#: classes/Notice.php:1407 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" -#: classes/User.php:382 +#: classes/Subscription.php:66 lib/oauthstore.php:465 +msgid "You have been banned from subscribing." +msgstr "U mag zich niet abonneren." + +#: classes/Subscription.php:70 +msgid "Already subscribed!" +msgstr "U bent al gebonneerd!" + +#: classes/Subscription.php:74 +msgid "User has blocked you." +msgstr "Deze gebruiker negeert u." + +#: classes/Subscription.php:157 +msgid "Not subscribed!" +msgstr "Niet geabonneerd!" + +#: classes/Subscription.php:163 +msgid "Couldn't delete self-subscription." +msgstr "Het was niet mogelijk het abonnement op uzelf te verwijderen." + +#: classes/Subscription.php:179 lib/subs.php:69 +msgid "Couldn't delete subscription." +msgstr "Kon abonnement niet verwijderen." + +#: classes/User.php:372 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "Welkom bij %1$s, @%2$s!" -#: classes/User_group.php:380 +#: classes/User_group.php:423 msgid "Could not create group." msgstr "Het was niet mogelijk de groep aan te maken." -#: classes/User_group.php:409 +#: classes/User_group.php:452 msgid "Could not set group membership." msgstr "Het was niet mogelijk het groepslidmaatschap in te stellen." @@ -4218,128 +4634,124 @@ msgstr "%1$s - %2$s" msgid "Untitled page" msgstr "Naamloze pagina" -#: lib/action.php:427 +#: lib/action.php:433 msgid "Primary site navigation" msgstr "Primaire sitenavigatie" -#: lib/action.php:433 +#: lib/action.php:439 msgid "Home" msgstr "Start" -#: lib/action.php:433 +#: lib/action.php:439 msgid "Personal profile and friends timeline" msgstr "Persoonlijk profiel en tijdlijn van vrienden" -#: lib/action.php:435 -msgid "Account" -msgstr "Gebruiker" - -#: lib/action.php:435 +#: lib/action.php:441 msgid "Change your email, avatar, password, profile" msgstr "Uw e-mailadres, avatar, wachtwoord of profiel wijzigen" -#: lib/action.php:438 +#: lib/action.php:444 msgid "Connect" msgstr "Koppelen" -#: lib/action.php:438 +#: lib/action.php:444 msgid "Connect to services" msgstr "Met diensten verbinden" -#: lib/action.php:442 +#: lib/action.php:448 msgid "Change site configuration" msgstr "Websiteinstellingen wijzigen" -#: lib/action.php:446 lib/subgroupnav.php:105 +#: lib/action.php:452 lib/subgroupnav.php:105 msgid "Invite" msgstr "Uitnodigen" -#: lib/action.php:447 lib/subgroupnav.php:106 +#: lib/action.php:453 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:452 +#: lib/action.php:458 msgid "Logout" msgstr "Afmelden" -#: lib/action.php:452 +#: lib/action.php:458 msgid "Logout from the site" msgstr "Van de site afmelden" -#: lib/action.php:457 +#: lib/action.php:463 msgid "Create an account" msgstr "Gebruiker aanmaken" -#: lib/action.php:460 +#: lib/action.php:466 msgid "Login to the site" msgstr "Bij de site aanmelden" -#: lib/action.php:463 lib/action.php:726 +#: lib/action.php:469 lib/action.php:732 msgid "Help" msgstr "Help" -#: lib/action.php:463 +#: lib/action.php:469 msgid "Help me!" msgstr "Help me!" -#: lib/action.php:466 lib/searchaction.php:127 +#: lib/action.php:472 lib/searchaction.php:127 msgid "Search" msgstr "Zoeken" -#: lib/action.php:466 +#: lib/action.php:472 msgid "Search for people or text" msgstr "Naar gebruikers of tekst zoeken" -#: lib/action.php:487 +#: lib/action.php:493 msgid "Site notice" msgstr "Mededeling van de website" -#: lib/action.php:553 +#: lib/action.php:559 msgid "Local views" msgstr "Lokale weergaven" -#: lib/action.php:619 +#: lib/action.php:625 msgid "Page notice" msgstr "Mededeling van de pagina" -#: lib/action.php:721 +#: lib/action.php:727 msgid "Secondary site navigation" msgstr "Secundaire sitenavigatie" -#: lib/action.php:728 +#: lib/action.php:734 msgid "About" msgstr "Over" -#: lib/action.php:730 +#: lib/action.php:736 msgid "FAQ" msgstr "Veel gestelde vragen" -#: lib/action.php:734 +#: lib/action.php:740 msgid "TOS" msgstr "Gebruiksvoorwaarden" -#: lib/action.php:737 +#: lib/action.php:743 msgid "Privacy" msgstr "Privacy" -#: lib/action.php:739 +#: lib/action.php:745 msgid "Source" msgstr "Broncode" -#: lib/action.php:743 +#: lib/action.php:749 msgid "Contact" msgstr "Contact" -#: lib/action.php:745 +#: lib/action.php:751 msgid "Badge" msgstr "Widget" -#: lib/action.php:773 +#: lib/action.php:779 msgid "StatusNet software license" msgstr "Licentie van de StatusNet-software" -#: lib/action.php:776 +#: lib/action.php:782 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4348,12 +4760,12 @@ msgstr "" "**%%site.name%%** is een microblogdienst van [%%site.broughtby%%](%%site." "broughtbyurl%%). " -#: lib/action.php:778 +#: lib/action.php:784 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** is een microblogdienst. " -#: lib/action.php:780 +#: lib/action.php:786 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4364,33 +4776,59 @@ msgstr "" "versie %s, beschikbaar onder de [GNU Affero General Public License](http://" "www.fsf.org/licensing/licenses/agpl-3.0.html)." -#: lib/action.php:794 +#: lib/action.php:801 msgid "Site content license" msgstr "Licentie voor siteinhoud" -#: lib/action.php:803 +#: lib/action.php:806 +#, php-format +msgid "Content and data of %1$s are private and confidential." +msgstr "Inhoud en gegevens van %1$s zijn persoonlijk en vertrouwelijk." + +#: lib/action.php:811 +#, php-format +msgid "Content and data copyright by %1$s. All rights reserved." +msgstr "" +"Auteursrechten op inhoud en gegevens rusten bij %1$s. Alle rechten " +"voorbehouden." + +#: lib/action.php:814 +msgid "Content and data copyright by contributors. All rights reserved." +msgstr "" +"Auteursrechten op inhoud en gegevens rusten bij de respectievelijke " +"gebruikers. Alle rechten voorbehouden." + +#: lib/action.php:827 msgid "All " msgstr "Alle " -#: lib/action.php:808 +#: lib/action.php:833 msgid "license." msgstr "licentie." -#: lib/action.php:1102 +#: lib/action.php:1132 msgid "Pagination" msgstr "Paginering" -#: lib/action.php:1111 +#: lib/action.php:1141 msgid "After" msgstr "Later" -#: lib/action.php:1119 +#: lib/action.php:1149 msgid "Before" msgstr "Eerder" -#: lib/action.php:1167 -msgid "There was a problem with your session token." -msgstr "Er is een probleem met uw sessietoken." +#: lib/activity.php:382 +msgid "Can't handle remote content yet." +msgstr "" + +#: lib/activity.php:410 +msgid "Can't handle embedded XML content yet." +msgstr "" + +#: lib/activity.php:414 +msgid "Can't handle embedded Base64 content yet." +msgstr "" #: lib/adminpanelaction.php:96 msgid "You cannot make changes to this site." @@ -4420,10 +4858,100 @@ msgstr "Basisinstellingen voor de website" msgid "Design configuration" msgstr "Instellingen vormgeving" -#: lib/adminpanelaction.php:322 lib/adminpanelaction.php:327 +#: lib/adminpanelaction.php:322 +msgid "User configuration" +msgstr "Gebruikersinstellingen" + +#: lib/adminpanelaction.php:327 +msgid "Access configuration" +msgstr "Toegangsinstellingen" + +#: lib/adminpanelaction.php:332 msgid "Paths configuration" msgstr "Padinstellingen" +#: lib/adminpanelaction.php:337 +msgid "Sessions configuration" +msgstr "Sessieinstellingen" + +#: lib/apiauth.php:95 +msgid "API resource requires read-write access, but you only have read access." +msgstr "" +"Het API-programma heeft lezen-en-schrijventoegang nodig, maar u hebt alleen " +"maar leestoegang." + +#: lib/apiauth.php:273 +#, php-format +msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" +msgstr "" +"De API-authenticatie is mislukt. nickname = %1$s, proxy - %2$s, ip = %3$s" + +#: lib/applicationeditform.php:136 +msgid "Edit application" +msgstr "Applicatie bewerken" + +#: lib/applicationeditform.php:184 +msgid "Icon for this application" +msgstr "Icoon voor deze applicatie" + +#: lib/applicationeditform.php:204 +#, php-format +msgid "Describe your application in %d characters" +msgstr "Beschrijf uw applicatie in %d tekens" + +#: lib/applicationeditform.php:207 +msgid "Describe your application" +msgstr "Beschrijf uw applicatie" + +#: lib/applicationeditform.php:216 +msgid "Source URL" +msgstr "Bron-URL" + +#: lib/applicationeditform.php:218 +msgid "URL of the homepage of this application" +msgstr "De URL van de homepage van deze applicatie" + +#: lib/applicationeditform.php:224 +msgid "Organization responsible for this application" +msgstr "Organisatie verantwoordelijk voor deze applicatie" + +#: lib/applicationeditform.php:230 +msgid "URL for the homepage of the organization" +msgstr "De URL van de homepage van de organisatie" + +#: lib/applicationeditform.php:236 +msgid "URL to redirect to after authentication" +msgstr "URL om naar door te verwijzen na authenticatie" + +#: lib/applicationeditform.php:258 +msgid "Browser" +msgstr "Browser" + +#: lib/applicationeditform.php:274 +msgid "Desktop" +msgstr "Desktop" + +#: lib/applicationeditform.php:275 +msgid "Type of application, browser or desktop" +msgstr "Type applicatie; browser of desktop" + +#: lib/applicationeditform.php:297 +msgid "Read-only" +msgstr "Alleen-lezen" + +#: lib/applicationeditform.php:315 +msgid "Read-write" +msgstr "Lezen en schrijven" + +#: lib/applicationeditform.php:316 +msgid "Default access for this application: read-only, or read-write" +msgstr "" +"Standaardtoegang voor deze applicatie: alleen-lezen of lezen en schrijven" + +#: lib/applicationlist.php:154 +msgid "Revoke" +msgstr "Intrekken" + #: lib/attachmentlist.php:87 msgid "Attachments" msgstr "Bijlagen" @@ -4444,11 +4972,11 @@ msgstr "Mededelingen die deze bijlage bevatten" msgid "Tags for this attachment" msgstr "Labels voor deze bijlage" -#: lib/authenticationplugin.php:182 lib/authenticationplugin.php:187 +#: lib/authenticationplugin.php:218 lib/authenticationplugin.php:223 msgid "Password changing failed" msgstr "Wachtwoord wijzigen is mislukt" -#: lib/authenticationplugin.php:197 +#: lib/authenticationplugin.php:233 msgid "Password changing is not allowed" msgstr "Wachtwoord wijzigen is niet toegestaan" @@ -4603,83 +5131,93 @@ msgstr "Er is een fout opgetreden bij het opslaan van de mededeling." msgid "Specify the name of the user to subscribe to" msgstr "Geef de naam op van de gebruiker waarop u wilt abonneren" -#: lib/command.php:554 +#: lib/command.php:554 lib/command.php:589 +msgid "No such user" +msgstr "De opgegeven gebruiker bestaat niet" + +#: lib/command.php:561 #, php-format msgid "Subscribed to %s" msgstr "Geabonneerd op %s" -#: lib/command.php:575 +#: lib/command.php:582 lib/command.php:685 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/command.php:582 +#: lib/command.php:595 #, php-format msgid "Unsubscribed from %s" msgstr "Uw abonnement op %s is opgezegd" -#: lib/command.php:600 lib/command.php:623 +#: lib/command.php:613 lib/command.php:636 msgid "Command not yet implemented." msgstr "Dit commando is nog niet geïmplementeerd." -#: lib/command.php:603 +#: lib/command.php:616 msgid "Notification off." msgstr "Notificaties uitgeschakeld." -#: lib/command.php:605 +#: lib/command.php:618 msgid "Can't turn off notification." msgstr "Het is niet mogelijk de mededelingen uit te schakelen." -#: lib/command.php:626 +#: lib/command.php:639 msgid "Notification on." msgstr "Notificaties ingeschakeld." -#: lib/command.php:628 +#: lib/command.php:641 msgid "Can't turn on notification." msgstr "Het is niet mogelijk de notificatie uit te schakelen." -#: lib/command.php:641 +#: lib/command.php:654 msgid "Login command is disabled" msgstr "Het aanmeldcommando is uitgeschakeld" -#: lib/command.php:652 +#: lib/command.php:665 #, php-format 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/command.php:668 +#: lib/command.php:692 +#, fuzzy, php-format +msgid "Unsubscribed %s" +msgstr "Uw abonnement op %s is opgezegd" + +#: lib/command.php:709 msgid "You are not subscribed to anyone." msgstr "U bent op geen enkele gebruiker geabonneerd." -#: lib/command.php:670 +#: lib/command.php:711 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "U bent geabonneerd op deze gebruiker:" msgstr[1] "U bent geabonneerd op deze gebruikers:" -#: lib/command.php:690 +#: lib/command.php:731 msgid "No one is subscribed to you." msgstr "Niemand heeft een abonnenment op u." -#: lib/command.php:692 +#: lib/command.php:733 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "Deze gebruiker is op u geabonneerd:" msgstr[1] "Deze gebruikers zijn op u geabonneerd:" -#: lib/command.php:712 +#: lib/command.php:753 msgid "You are not a member of any groups." msgstr "U bent lid van geen enkele groep." -#: lib/command.php:714 +#: lib/command.php:755 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "U bent lid van deze groep:" msgstr[1] "U bent lid van deze groepen:" -#: lib/command.php:728 +#: lib/command.php:769 +#, fuzzy msgid "" "Commands:\n" "on - turn on notifications\n" @@ -4693,6 +5231,7 @@ msgid "" "d - direct message to user\n" "get - get last notice from user\n" "whois - get profile info on user\n" +"lose - force user to stop following you\n" "fav - add user's last notice as a 'fave'\n" "fav # - add notice with the given id as a 'fave'\n" "repeat # - repeat a notice with a given id\n" @@ -4759,20 +5298,20 @@ msgstr "" "tracks - nog niet beschikbaar\n" "tracking - nog niet beschikbaar\n" -#: lib/common.php:131 +#: lib/common.php:136 msgid "No configuration file found. " msgstr "Er is geen instellingenbestand aangetroffen. " -#: lib/common.php:132 +#: lib/common.php:137 msgid "I looked for configuration files in the following places: " msgstr "Er is gezocht naar instellingenbestanden op de volgende plaatsen: " -#: lib/common.php:134 +#: lib/common.php:139 msgid "You may wish to run the installer to fix this." msgstr "" "U kunt proberen de installer uit te voeren om dit probleem op te lossen." -#: lib/common.php:135 +#: lib/common.php:140 msgid "Go to the installer." msgstr "Naar het installatieprogramma gaan." @@ -4788,6 +5327,14 @@ msgstr "Updates via instant messenger (IM)" msgid "Updates by SMS" msgstr "Updates via SMS" +#: lib/connectsettingsaction.php:120 +msgid "Connections" +msgstr "Verbindingen" + +#: lib/connectsettingsaction.php:121 +msgid "Authorized connected applications" +msgstr "Geautoriseerde verbonden applicaties" + #: lib/dberroraction.php:60 msgid "Database error" msgstr "Databasefout" @@ -4974,15 +5521,15 @@ msgstr "MB" msgid "kB" msgstr "kB" -#: lib/jabber.php:202 +#: lib/jabber.php:220 #, php-format msgid "[%s]" msgstr "[%s]" -#: lib/jabber.php:385 -#, fuzzy, php-format +#: lib/jabber.php:400 +#, php-format msgid "Unknown inbox source %d." -msgstr "De taal \"%s\" is niet bekend." +msgstr "Onbekende bron Postvak IN %d." #: lib/joinform.php:114 msgid "Join" @@ -5261,7 +5808,7 @@ msgstr "" "U hebt geen privéberichten. U kunt privéberichten verzenden aan andere " "gebruikers. Mensen kunnen u privéberichten sturen die alleen u kunt lezen." -#: lib/mailbox.php:227 lib/noticelist.php:477 +#: lib/mailbox.php:227 lib/noticelist.php:482 msgid "from" msgstr "van" @@ -5382,57 +5929,55 @@ msgid "Do not share my location" msgstr "Mijn locatie niet bekend maken" #: lib/noticeform.php:216 -msgid "Hide this info" -msgstr "Deze informatie verbergen" - -#: lib/noticeform.php:217 msgid "" "Sorry, retrieving your geo location is taking longer than expected, please " "try again later" msgstr "" +"Het ophalen van uw geolocatie duurt langer dan verwacht. Probeer het later " +"nog eens" -#: lib/noticelist.php:428 +#: lib/noticelist.php:429 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" -#: lib/noticelist.php:429 +#: lib/noticelist.php:430 msgid "N" msgstr "N" -#: lib/noticelist.php:429 +#: lib/noticelist.php:430 msgid "S" msgstr "Z" -#: lib/noticelist.php:430 +#: lib/noticelist.php:431 msgid "E" msgstr "O" -#: lib/noticelist.php:430 +#: lib/noticelist.php:431 msgid "W" msgstr "W" -#: lib/noticelist.php:436 +#: lib/noticelist.php:438 msgid "at" msgstr "op" -#: lib/noticelist.php:531 +#: lib/noticelist.php:558 msgid "in context" msgstr "in context" -#: lib/noticelist.php:556 +#: lib/noticelist.php:583 msgid "Repeated by" msgstr "Herhaald door" -#: lib/noticelist.php:585 +#: lib/noticelist.php:610 msgid "Reply to this notice" msgstr "Op deze mededeling antwoorden" -#: lib/noticelist.php:586 +#: lib/noticelist.php:611 msgid "Reply" msgstr "Antwoorden" -#: lib/noticelist.php:628 +#: lib/noticelist.php:655 msgid "Notice repeated" msgstr "Mededeling herhaald" @@ -5465,11 +6010,7 @@ msgstr "" msgid "Duplicate notice" msgstr "Duplicaatmelding" -#: lib/oauthstore.php:466 lib/subs.php:48 -msgid "You have been banned from subscribing." -msgstr "U mag zich niet abonneren." - -#: lib/oauthstore.php:491 +#: lib/oauthstore.php:490 msgid "Couldn't insert new subscription." msgstr "Kon nieuw abonnement niet toevoegen." @@ -5485,19 +6026,19 @@ msgstr "Antwoorden" msgid "Favorites" msgstr "Favorieten" -#: lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "Postvak IN" -#: lib/personalgroupnav.php:125 +#: lib/personalgroupnav.php:126 msgid "Your incoming messages" msgstr "Uw inkomende berichten" -#: lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 msgid "Outbox" msgstr "Postvak UIT" -#: lib/personalgroupnav.php:130 +#: lib/personalgroupnav.php:131 msgid "Your sent messages" msgstr "Uw verzonden berichten" @@ -5574,6 +6115,10 @@ msgstr "Deze mededeling herhalen?" msgid "Repeat this notice" msgstr "Deze mededeling herhalen" +#: lib/router.php:665 +msgid "No single user defined for single-user mode." +msgstr "Er is geen gebruiker gedefinieerd voor single-usermodus." + #: lib/sandboxform.php:67 msgid "Sandbox" msgstr "Zandbak" @@ -5641,34 +6186,6 @@ msgstr "Gebruikers met een abonnement op %s" msgid "Groups %s is a member of" msgstr "Groepen waar %s lid van is" -#: lib/subs.php:52 -msgid "Already subscribed!" -msgstr "U bent al gebonneerd!" - -#: lib/subs.php:56 -msgid "User has blocked you." -msgstr "Deze gebruiker negeert u." - -#: lib/subs.php:63 -msgid "Could not subscribe." -msgstr "Kan niet abonneren " - -#: lib/subs.php:82 -msgid "Could not subscribe other to you." -msgstr "Het was niet mogelijk om een ander op u te laten abonneren" - -#: lib/subs.php:137 -msgid "Not subscribed!" -msgstr "Niet geabonneerd!" - -#: lib/subs.php:142 -msgid "Couldn't delete self-subscription." -msgstr "Het was niet mogelijk het abonnement op uzelf te verwijderen." - -#: lib/subs.php:158 -msgid "Couldn't delete subscription." -msgstr "Kon abonnement niet verwijderen." - #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -5719,67 +6236,67 @@ msgstr "Avatar bewerken" msgid "User actions" msgstr "Gebruikershandelingen" -#: lib/userprofile.php:248 +#: lib/userprofile.php:251 msgid "Edit profile settings" msgstr "Profielinstellingen bewerken" -#: lib/userprofile.php:249 +#: lib/userprofile.php:252 msgid "Edit" msgstr "Bewerken" -#: lib/userprofile.php:272 +#: lib/userprofile.php:275 msgid "Send a direct message to this user" msgstr "Deze gebruiker een direct bericht zenden" -#: lib/userprofile.php:273 +#: lib/userprofile.php:276 msgid "Message" msgstr "Bericht" -#: lib/userprofile.php:311 +#: lib/userprofile.php:314 msgid "Moderate" msgstr "Modereren" -#: lib/util.php:877 +#: lib/util.php:952 msgid "a few seconds ago" msgstr "een paar seconden geleden" -#: lib/util.php:879 +#: lib/util.php:954 msgid "about a minute ago" msgstr "ongeveer een minuut geleden" -#: lib/util.php:881 +#: lib/util.php:956 #, php-format msgid "about %d minutes ago" msgstr "ongeveer %d minuten geleden" -#: lib/util.php:883 +#: lib/util.php:958 msgid "about an hour ago" msgstr "ongeveer een uur geleden" -#: lib/util.php:885 +#: lib/util.php:960 #, php-format msgid "about %d hours ago" msgstr "ongeveer %d uur geleden" -#: lib/util.php:887 +#: lib/util.php:962 msgid "about a day ago" msgstr "ongeveer een dag geleden" -#: lib/util.php:889 +#: lib/util.php:964 #, php-format msgid "about %d days ago" msgstr "ongeveer %d dagen geleden" -#: lib/util.php:891 +#: lib/util.php:966 msgid "about a month ago" msgstr "ongeveer een maand geleden" -#: lib/util.php:893 +#: lib/util.php:968 #, php-format msgid "about %d months ago" msgstr "ongeveer %d maanden geleden" -#: lib/util.php:895 +#: lib/util.php:970 msgid "about a year ago" msgstr "ongeveer een jaar geleden" @@ -5793,7 +6310,7 @@ msgstr "%s is geen geldige kleur." msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "%s is geen geldige kleur. Gebruik drie of zes hexadecimale tekens." -#: scripts/xmppdaemon.php:301 +#: lib/xmppmanager.php:402 #, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "" diff --git a/locale/nn/LC_MESSAGES/statusnet.po b/locale/nn/LC_MESSAGES/statusnet.po index 5bba0e8b01..55918d8802 100644 --- a/locale/nn/LC_MESSAGES/statusnet.po +++ b/locale/nn/LC_MESSAGES/statusnet.po @@ -7,17 +7,76 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-01-13 22:04+0000\n" -"PO-Revision-Date: 2010-01-13 22:05:49+0000\n" +"POT-Creation-Date: 2010-02-24 23:49+0000\n" +"PO-Revision-Date: 2010-02-24 23:51:25+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 (r61027); Translate extension (2010-01-04)\n" +"X-Generator: MediaWiki 1.17alpha (r62925); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nn\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: actions/accessadminpanel.php:54 lib/adminpanelaction.php:326 +#, fuzzy +msgid "Access" +msgstr "Godta" + +#: actions/accessadminpanel.php:65 +#, fuzzy +msgid "Site access settings" +msgstr "Avatar-innstillingar" + +#: actions/accessadminpanel.php:158 +#, fuzzy +msgid "Registration" +msgstr "Registrér" + +#: actions/accessadminpanel.php:161 +#, fuzzy +msgid "Private" +msgstr "Personvern" + +#: actions/accessadminpanel.php:163 +msgid "Prohibit anonymous users (not logged in) from viewing site?" +msgstr "" + +#: actions/accessadminpanel.php:167 +#, fuzzy +msgid "Invite only" +msgstr "Invitér" + +#: actions/accessadminpanel.php:169 +msgid "Make registration invitation only." +msgstr "" + +#: actions/accessadminpanel.php:173 +#, fuzzy +msgid "Closed" +msgstr "Blokkér" + +#: actions/accessadminpanel.php:175 +msgid "Disable new registrations." +msgstr "" + +#: actions/accessadminpanel.php:189 actions/designadminpanel.php:586 +#: actions/emailsettings.php:195 actions/imsettings.php:163 +#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 +#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 +#: actions/siteadminpanel.php:336 actions/smssettings.php:181 +#: actions/subscriptions.php:208 actions/tagother.php:154 +#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 lib/designsettings.php:256 +#: lib/groupeditform.php:202 +msgid "Save" +msgstr "Lagra" + +#: actions/accessadminpanel.php:189 +#, fuzzy +msgid "Save access settings" +msgstr "Avatar-innstillingar" + #: actions/all.php:63 actions/public.php:97 actions/replies.php:92 #: actions/showfavorites.php:137 actions/tag.php:51 #, fuzzy @@ -33,25 +92,29 @@ msgstr "Dette emneord finst ikkje." #: 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:144 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apistatusesupdate.php:148 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:78 #: actions/apitimelinehome.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/otp.php:76 #: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154 -#: actions/replies.php:73 actions/repliesrss.php:38 +#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 #: 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:302 lib/command.php:355 #: lib/command.php:401 lib/command.php:462 lib/command.php:518 #: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 -#: lib/subs.php:34 lib/subs.php:125 msgid "No such user." msgstr "Brukaren finst ikkje." +#: actions/all.php:84 +#, fuzzy, php-format +msgid "%1$s and friends, page %2$d" +msgstr "%s med vener, side %d" + #: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 -#: actions/apitimelinefriends.php:115 actions/apitimelinehome.php:115 +#: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" @@ -92,7 +155,7 @@ msgid "" "his or her attention](%%%%action.newnotice%%%%?status_textarea=%3$s)." msgstr "" -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211 #, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " @@ -104,8 +167,8 @@ msgstr "" msgid "You and friends" msgstr "%s med vener" -#: actions/allrss.php:119 actions/apitimelinefriends.php:122 -#: actions/apitimelinehome.php:122 +#: actions/allrss.php:119 actions/apitimelinefriends.php:119 +#: actions/apitimelinehome.php:120 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Oppdateringar frå %1$s og vener på %2$s!" @@ -115,23 +178,23 @@ msgstr "Oppdateringar frå %1$s og vener på %2$s!" #: actions/apiaccountupdateprofile.php:97 #: actions/apiaccountupdateprofilebackgroundimage.php:94 #: actions/apiaccountupdateprofilecolors.php:118 -#: 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:136 actions/apigroupismember.php:114 -#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 -#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 -#: actions/apigroupmembership.php:106 actions/apigroupshow.php:105 -#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 -#: actions/apistatusesretweets.php:112 actions/apistatusesshow.php:108 -#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93 -#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:146 -#: actions/apitimelinefriends.php:156 actions/apitimelinegroup.php:150 -#: actions/apitimelinehome.php:156 actions/apitimelinementions.php:151 -#: actions/apitimelinepublic.php:131 actions/apitimelineretweetedbyme.php:122 +#: actions/apiaccountverifycredentials.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:128 actions/apigroupcreate.php:136 +#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 +#: actions/apigroupleave.php:141 actions/apigrouplist.php:132 +#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 +#: actions/apigroupshow.php:115 actions/apihelptest.php:88 +#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 +#: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 #: actions/apitimelineretweetedtome.php:121 -#: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141 -#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 +#: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 +#: actions/apitimelineuser.php:207 actions/apiusershow.php:101 #, fuzzy msgid "API method not found." msgstr "Fann ikkje API-metode." @@ -146,7 +209,7 @@ msgstr "Fann ikkje API-metode." #: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 #: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 #: actions/apigroupleave.php:91 actions/apistatusesretweet.php:65 -#: actions/apistatusesupdate.php:114 +#: actions/apistatusesupdate.php:118 msgid "This method requires a POST." msgstr "Dette krev ein POST." @@ -177,8 +240,9 @@ msgstr "Kan ikkje lagra profil." #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:97 -#: actions/apistatusesupdate.php:127 actions/avatarsettings.php:257 -#: actions/designadminpanel.php:122 actions/newnotice.php:94 +#: actions/apistatusesupdate.php:131 actions/avatarsettings.php:257 +#: actions/designadminpanel.php:122 actions/editapplication.php:118 +#: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 #, php-format msgid "" @@ -299,12 +363,12 @@ msgstr "Kan ikkje oppdatera brukar." msgid "Two user ids or screen_names must be supplied." msgstr "To brukar IDer eller kallenamn er naudsynte." -#: actions/apifriendshipsshow.php:135 +#: actions/apifriendshipsshow.php:134 #, fuzzy msgid "Could not determine source user." msgstr "Kan ikkje hente offentleg straum." -#: actions/apifriendshipsshow.php:143 +#: actions/apifriendshipsshow.php:142 #, fuzzy msgid "Could not find target user." msgstr "Kan ikkje finna einkvan status." @@ -327,7 +391,8 @@ msgstr "Kallenamnet er allereie i bruk. Prøv eit anna." msgid "Not a valid nickname." msgstr "Ikkje eit gyldig brukarnamn." -#: actions/apigroupcreate.php:196 actions/editgroup.php:195 +#: actions/apigroupcreate.php:196 actions/editapplication.php:215 +#: actions/editgroup.php:195 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:217 msgid "Homepage is not a valid URL." @@ -339,7 +404,8 @@ msgstr "Heimesida er ikkje ei gyldig internettadresse." msgid "Full name is too long (max 255 chars)." msgstr "Ditt fulle namn er for langt (maksimalt 255 teikn)." -#: actions/apigroupcreate.php:213 +#: actions/apigroupcreate.php:213 actions/editapplication.php:190 +#: actions/newapplication.php:172 #, fuzzy, php-format msgid "Description is too long (max %d chars)." msgstr "skildringa er for lang (maks 140 teikn)." @@ -375,7 +441,7 @@ msgstr "" #: actions/apigroupismember.php:95 actions/apigroupjoin.php:104 #: actions/apigroupleave.php:104 actions/apigroupmembership.php:91 -#: actions/apigroupshow.php:90 actions/apitimelinegroup.php:91 +#: actions/apigroupshow.php:82 actions/apitimelinegroup.php:91 #, fuzzy msgid "Group not found!" msgstr "Fann ikkje API-metode." @@ -419,6 +485,115 @@ msgstr "%s grupper" msgid "groups on %s" msgstr "Gruppe handlingar" +#: actions/apioauthauthorize.php:101 +msgid "No oauth_token parameter provided." +msgstr "" + +#: actions/apioauthauthorize.php:106 +#, fuzzy +msgid "Invalid token." +msgstr "Ugyldig storleik." + +#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 +#: actions/deletenotice.php:157 actions/disfavor.php:74 +#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54 +#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupunblock.php:66 actions/imsettings.php:206 +#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 +#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 +#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135 +#: actions/othersettings.php:145 actions/passwordsettings.php:138 +#: actions/profilesettings.php:194 actions/recoverpassword.php:337 +#: actions/register.php:165 actions/remotesubscribe.php:77 +#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 +#: actions/subscribe.php:86 actions/tagother.php:166 +#: 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/apioauthauthorize.php:135 +#, fuzzy +msgid "Invalid nickname / password!" +msgstr "Ugyldig brukarnamn eller passord." + +#: actions/apioauthauthorize.php:159 +#, fuzzy +msgid "Database error deleting OAuth application user." +msgstr "Feil ved å setja brukar." + +#: actions/apioauthauthorize.php:185 +#, fuzzy +msgid "Database error inserting OAuth application user." +msgstr "databasefeil ved innsetjing av skigardmerkelapp (#merkelapp): %s" + +#: actions/apioauthauthorize.php:214 +#, php-format +msgid "" +"The request token %s has been authorized. Please exchange it for an access " +"token." +msgstr "" + +#: actions/apioauthauthorize.php:227 +#, php-format +msgid "The request token %s has been denied and revoked." +msgstr "" + +#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 +#: actions/designadminpanel.php:103 actions/editapplication.php:139 +#: actions/emailsettings.php:256 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/newapplication.php:121 +#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 +#: actions/smssettings.php:248 lib/designsettings.php:304 +msgid "Unexpected form submission." +msgstr "Uventa skjemasending." + +#: actions/apioauthauthorize.php:259 +msgid "An application would like to connect to your account" +msgstr "" + +#: actions/apioauthauthorize.php:276 +msgid "Allow or deny access" +msgstr "" + +#: actions/apioauthauthorize.php:292 +#, php-format +msgid "" +"The application %1$s by %2$s would like " +"the ability to %3$s your %4$s account data. You should only " +"give access to your %4$s account to third parties you trust." +msgstr "" + +#: actions/apioauthauthorize.php:310 lib/action.php:441 +msgid "Account" +msgstr "Konto" + +#: actions/apioauthauthorize.php:313 actions/login.php:230 +#: actions/profilesettings.php:106 actions/register.php:424 +#: actions/showgroup.php:236 actions/tagother.php:94 +#: actions/userauthorization.php:145 lib/groupeditform.php:152 +#: lib/userprofile.php:131 +msgid "Nickname" +msgstr "Kallenamn" + +#: actions/apioauthauthorize.php:316 actions/login.php:233 +#: actions/register.php:429 lib/accountsettingsaction.php:116 +msgid "Password" +msgstr "Passord" + +#: actions/apioauthauthorize.php:328 +msgid "Deny" +msgstr "" + +#: actions/apioauthauthorize.php:334 +#, fuzzy +msgid "Allow" +msgstr "Alle" + +#: actions/apioauthauthorize.php:351 +msgid "Allow or deny access to your account information." +msgstr "" + #: actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." msgstr "Dette krev anten ein POST eller DELETE." @@ -451,17 +626,17 @@ msgstr "Lasta opp brukarbilete." msgid "No status with that ID found." msgstr "Fann ingen status med den ID-en." -#: actions/apistatusesupdate.php:157 actions/newnotice.php:155 +#: actions/apistatusesupdate.php:161 actions/newnotice.php:155 #: lib/mailhandler.php:60 #, 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:198 +#: actions/apistatusesupdate.php:202 msgid "Not found" msgstr "Fann ikkje" -#: actions/apistatusesupdate.php:221 actions/newnotice.php:178 +#: actions/apistatusesupdate.php:225 actions/newnotice.php:178 #, php-format msgid "Max notice size is %d chars, including attachment URL." msgstr "" @@ -476,7 +651,7 @@ msgstr "Støttar ikkje bileteformatet." msgid "%1$s / Favorites from %2$s" msgstr "%s / Favorittar frå %s" -#: actions/apitimelinefavorites.php:120 +#: actions/apitimelinefavorites.php:117 #, fuzzy, php-format msgid "%1$s updates favorited by %2$s / %2$s." msgstr "%s oppdateringar favorisert av %s / %s." @@ -487,7 +662,7 @@ msgstr "%s oppdateringar favorisert av %s / %s." msgid "%s timeline" msgstr "%s tidsline" -#: actions/apitimelinegroup.php:117 actions/apitimelineuser.php:126 +#: actions/apitimelinegroup.php:114 actions/apitimelineuser.php:126 #: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" @@ -503,27 +678,22 @@ msgstr "%1$s / Oppdateringar som svarar til %2$s" 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/apitimelinepublic.php:107 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "%s offentleg tidsline" -#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "%s oppdateringar frå alle saman!" -#: actions/apitimelineretweetedbyme.php:112 -#, php-format -msgid "Repeated by %s" -msgstr "" - #: actions/apitimelineretweetedtome.php:111 #, fuzzy, php-format msgid "Repeated to %s" msgstr "Svar til %s" -#: actions/apitimelineretweetsofme.php:112 +#: actions/apitimelineretweetsofme.php:114 #, fuzzy, php-format msgid "Repeats of %s" msgstr "Svar til %s" @@ -533,7 +703,7 @@ msgstr "Svar til %s" msgid "Notices tagged with %s" msgstr "Notisar merka med %s" -#: actions/apitimelinetag.php:108 actions/tagrss.php:64 +#: actions/apitimelinetag.php:104 actions/tagrss.php:64 #, fuzzy, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Oppdateringar frå %1$s på %2$s!" @@ -594,8 +764,8 @@ msgstr "Original" msgid "Preview" msgstr "Forhandsvis" -#: actions/avatarsettings.php:149 lib/deleteuserform.php:66 -#: lib/noticelist.php:611 +#: actions/avatarsettings.php:149 actions/showapplication.php:252 +#: lib/deleteuserform.php:66 lib/noticelist.php:637 msgid "Delete" msgstr "Slett" @@ -607,29 +777,6 @@ msgstr "Last opp" msgid "Crop" msgstr "Skaler" -#: actions/avatarsettings.php:268 actions/deletenotice.php:157 -#: actions/disfavor.php:74 actions/emailsettings.php:238 actions/favor.php:75 -#: actions/geocode.php:50 actions/groupblock.php:66 actions/grouplogo.php:309 -#: actions/groupunblock.php:66 actions/imsettings.php:206 -#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 -#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 -#: actions/othersettings.php:145 actions/passwordsettings.php:138 -#: actions/profilesettings.php:194 actions/recoverpassword.php:337 -#: actions/register.php:165 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 -#: actions/subscribe.php:46 actions/tagother.php:166 -#: 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/avatarsettings.php:281 actions/designadminpanel.php:103 -#: actions/emailsettings.php:256 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/avatarsettings.php:328 msgid "Pick a square area of the image to be your avatar" msgstr "Velg eit utvalg av bildet som vil blir din avatar." @@ -667,8 +814,9 @@ msgid "" "will not be notified of any @-replies from them." msgstr "" -#: actions/block.php:143 actions/deletenotice.php:145 -#: actions/deleteuser.php:147 actions/groupblock.php:178 +#: actions/block.php:143 actions/deleteapplication.php:153 +#: actions/deletenotice.php:145 actions/deleteuser.php:147 +#: actions/groupblock.php:178 msgid "No" msgstr "Nei" @@ -677,13 +825,13 @@ msgstr "Nei" msgid "Do not block this user" msgstr "Lås opp brukaren" -#: actions/block.php:144 actions/deletenotice.php:146 -#: actions/deleteuser.php:148 actions/groupblock.php:179 -#: lib/repeatform.php:132 +#: actions/block.php:144 actions/deleteapplication.php:158 +#: actions/deletenotice.php:146 actions/deleteuser.php:148 +#: actions/groupblock.php:179 lib/repeatform.php:132 msgid "Yes" msgstr "Jau" -#: actions/block.php:144 actions/groupmembers.php:346 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80 msgid "Block this user" msgstr "Blokkér denne brukaren" @@ -769,7 +917,8 @@ msgid "Couldn't delete email confirmation." msgstr "Kan ikkje sletta e-postgodkjenning." #: actions/confirmaddress.php:144 -msgid "Confirm Address" +#, fuzzy +msgid "Confirm address" msgstr "Stadfest adresse" #: actions/confirmaddress.php:159 @@ -787,10 +936,54 @@ msgstr "Stadfestingskode" msgid "Notices" msgstr "Notisar" +#: actions/deleteapplication.php:63 +#, fuzzy +msgid "You must be logged in to delete an application." +msgstr "Du må være logga inn for å lage ei gruppe." + +#: actions/deleteapplication.php:71 +#, fuzzy +msgid "Application not found." +msgstr "Notisen har ingen profil" + +#: actions/deleteapplication.php:78 actions/editapplication.php:77 +#: actions/showapplication.php:94 +#, fuzzy +msgid "You are not the owner of this application." +msgstr "Du er ikkje medlem av den gruppa." + +#: actions/deleteapplication.php:102 actions/editapplication.php:127 +#: actions/newapplication.php:110 actions/showapplication.php:118 +#: lib/action.php:1197 +msgid "There was a problem with your session token." +msgstr "Det var eit problem med sesjons billetten din." + +#: actions/deleteapplication.php:123 actions/deleteapplication.php:147 +#, fuzzy +msgid "Delete application" +msgstr "Denne notisen finst ikkje." + +#: actions/deleteapplication.php:149 +msgid "" +"Are you sure you want to delete this application? This will clear all data " +"about the application from the database, including all existing user " +"connections." +msgstr "" + +#: actions/deleteapplication.php:156 +#, fuzzy +msgid "Do not delete this application" +msgstr "Kan ikkje sletta notisen." + +#: actions/deleteapplication.php:160 +#, fuzzy +msgid "Delete this application" +msgstr "Slett denne notisen" + #: 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/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 #: lib/adminpanelaction.php:72 lib/profileformaction.php:63 #: lib/settingsaction.php:72 @@ -823,7 +1016,7 @@ msgstr "Sikker på at du vil sletta notisen?" msgid "Do not delete this notice" msgstr "Kan ikkje sletta notisen." -#: actions/deletenotice.php:146 lib/noticelist.php:611 +#: actions/deletenotice.php:146 lib/noticelist.php:637 msgid "Delete this notice" msgstr "Slett denne notisen" @@ -965,16 +1158,6 @@ msgstr "" msgid "Reset back to default" msgstr "" -#: actions/designadminpanel.php:586 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 -#: actions/pathsadminpanel.php:324 actions/profilesettings.php:174 -#: actions/siteadminpanel.php:388 actions/smssettings.php:181 -#: actions/subscriptions.php:203 actions/tagother.php:154 -#: actions/useradminpanel.php:313 lib/designsettings.php:256 -#: lib/groupeditform.php:202 -msgid "Save" -msgstr "Lagra" - #: actions/designadminpanel.php:587 lib/designsettings.php:257 msgid "Save design" msgstr "" @@ -987,10 +1170,87 @@ msgstr "Denne notisen er ikkje ein favoritt!" msgid "Add to favorites" msgstr "Legg til i favorittar" -#: actions/doc.php:69 -msgid "No such document." +#: actions/doc.php:158 +#, fuzzy, php-format +msgid "No such document \"%s\"" msgstr "Slikt dokument finst ikkje." +#: actions/editapplication.php:54 +#, fuzzy +msgid "Edit Application" +msgstr "Andre val" + +#: actions/editapplication.php:66 +#, fuzzy +msgid "You must be logged in to edit an application." +msgstr "Du må være logga inn for å lage ei gruppe." + +#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:166 +#: actions/showapplication.php:87 +#, fuzzy +msgid "No such application." +msgstr "Denne notisen finst ikkje." + +#: actions/editapplication.php:161 +#, fuzzy +msgid "Use this form to edit your application." +msgstr "Bruk dette skjemaet for å redigere gruppa" + +#: actions/editapplication.php:177 actions/newapplication.php:159 +#, fuzzy +msgid "Name is required." +msgstr "Samme som passord over. Påkrevd." + +#: actions/editapplication.php:180 actions/newapplication.php:165 +#, fuzzy +msgid "Name is too long (max 255 chars)." +msgstr "Ditt fulle namn er for langt (maksimalt 255 teikn)." + +#: actions/editapplication.php:183 actions/newapplication.php:162 +#, fuzzy +msgid "Name already in use. Try another one." +msgstr "Kallenamnet er allereie i bruk. Prøv eit anna." + +#: actions/editapplication.php:186 actions/newapplication.php:168 +#, fuzzy +msgid "Description is required." +msgstr "Beskriving" + +#: actions/editapplication.php:194 +msgid "Source URL is too long." +msgstr "" + +#: actions/editapplication.php:200 actions/newapplication.php:185 +#, fuzzy +msgid "Source URL is not valid." +msgstr "Heimesida er ikkje ei gyldig internettadresse." + +#: actions/editapplication.php:203 actions/newapplication.php:188 +msgid "Organization is required." +msgstr "" + +#: actions/editapplication.php:206 actions/newapplication.php:191 +#, fuzzy +msgid "Organization is too long (max 255 chars)." +msgstr "Plassering er for lang (maksimalt 255 teikn)." + +#: actions/editapplication.php:209 actions/newapplication.php:194 +msgid "Organization homepage is required." +msgstr "" + +#: actions/editapplication.php:218 actions/newapplication.php:206 +msgid "Callback is too long." +msgstr "" + +#: actions/editapplication.php:225 actions/newapplication.php:215 +msgid "Callback URL is not valid." +msgstr "" + +#: actions/editapplication.php:258 +#, fuzzy +msgid "Could not update application." +msgstr "Kann ikkje oppdatera gruppa." + #: actions/editgroup.php:56 #, php-format msgid "Edit %s group" @@ -1019,7 +1279,7 @@ msgstr "skildringa er for lang (maks 140 teikn)." msgid "Could not update group." msgstr "Kann ikkje oppdatera gruppa." -#: actions/editgroup.php:259 classes/User_group.php:390 +#: actions/editgroup.php:259 classes/User_group.php:433 #, fuzzy msgid "Could not create aliases." msgstr "Kunne ikkje lagre favoritt." @@ -1062,7 +1322,8 @@ msgstr "" "med instruksjonar." #: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 +#: actions/smssettings.php:126 lib/applicationeditform.php:331 +#: lib/applicationeditform.php:332 msgid "Cancel" msgstr "Avbryt" @@ -1145,7 +1406,7 @@ msgid "Cannot normalize that email address" msgstr "Klarar ikkje normalisera epostadressa" #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:157 +#: actions/siteadminpanel.php:143 msgid "Not a valid email address." msgstr "Ikkje ei gyldig epostadresse." @@ -1157,7 +1418,7 @@ msgstr "Det er alt din epost addresse" msgid "That email address already belongs to another user." msgstr "Den epost addressa er alt registrert hos ein annan brukar." -#: actions/emailsettings.php:353 actions/imsettings.php:317 +#: actions/emailsettings.php:353 actions/imsettings.php:319 #: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." msgstr "Kan ikkje leggja til godkjenningskode." @@ -1218,7 +1479,7 @@ msgstr "Denne notisen er alt ein favoritt!" msgid "Disfavor favorite" msgstr "Fjern favoritt" -#: actions/favorited.php:65 lib/popularnoticesection.php:88 +#: actions/favorited.php:65 lib/popularnoticesection.php:91 #: lib/publicgroupnav.php:93 msgid "Popular notices" msgstr "Populære notisar" @@ -1373,7 +1634,7 @@ msgstr "Brukar har blokkert deg." msgid "User is not a member of group." msgstr "Du er ikkje medlem av den gruppa." -#: actions/groupblock.php:136 actions/groupmembers.php:314 +#: actions/groupblock.php:136 actions/groupmembers.php:316 #, fuzzy msgid "Block user from group" msgstr "Blokker brukaren" @@ -1474,25 +1735,25 @@ msgstr "%s medlemmar i gruppa, side %d" msgid "A list of the users in this group." msgstr "Ei liste over brukarane i denne gruppa." -#: actions/groupmembers.php:175 lib/action.php:442 lib/groupnav.php:107 +#: actions/groupmembers.php:175 lib/action.php:448 lib/groupnav.php:107 msgid "Admin" msgstr "Administrator" -#: actions/groupmembers.php:346 lib/blockform.php:69 +#: actions/groupmembers.php:348 lib/blockform.php:69 msgid "Block" msgstr "Blokkér" -#: actions/groupmembers.php:441 +#: actions/groupmembers.php:443 #, fuzzy msgid "Make user an admin of the group" msgstr "Du må være administrator for å redigere gruppa" -#: actions/groupmembers.php:473 +#: actions/groupmembers.php:475 #, fuzzy msgid "Make Admin" msgstr "Administrator" -#: actions/groupmembers.php:473 +#: actions/groupmembers.php:475 msgid "Make this user an admin" msgstr "" @@ -1666,6 +1927,11 @@ msgstr "" msgid "That is not your Jabber ID." msgstr "Det er ikkje din Jabber ID." +#: actions/inbox.php:59 +#, fuzzy, php-format +msgid "Inbox for %1$s - page %2$d" +msgstr "Innboks for %s" + #: actions/inbox.php:62 #, php-format msgid "Inbox for %s" @@ -1747,7 +2013,7 @@ msgstr "Personleg melding" msgid "Optionally add a personal message to the invitation." msgstr "Eventuelt legg til ei personleg melding til invitasjonen." -#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:237 +#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:236 msgid "Send" msgstr "Send" @@ -1843,7 +2109,7 @@ msgstr "Feil brukarnamn eller passord" msgid "Error setting user. You are probably not authorized." msgstr "Ikkje autorisert." -#: actions/login.php:188 actions/login.php:241 lib/action.php:460 +#: actions/login.php:188 actions/login.php:241 lib/action.php:466 #: lib/logingroupnav.php:79 msgid "Login" msgstr "Logg inn" @@ -1852,17 +2118,6 @@ msgstr "Logg inn" msgid "Login to site" msgstr "Logg inn " -#: actions/login.php:230 actions/profilesettings.php:106 -#: actions/register.php:424 actions/showgroup.php:236 actions/tagother.php:94 -#: lib/groupeditform.php:152 lib/userprofile.php:131 -msgid "Nickname" -msgstr "Kallenamn" - -#: actions/login.php:233 actions/register.php:429 -#: lib/accountsettingsaction.php:116 -msgid "Password" -msgstr "Passord" - #: actions/login.php:236 actions/register.php:478 msgid "Remember me" msgstr "Hugs meg" @@ -1893,21 +2148,21 @@ msgstr "" "%action.register%%) ein ny konto, eller prøv [OpenID](%%action.openidlogin%" "%)." -#: actions/makeadmin.php:91 +#: actions/makeadmin.php:92 msgid "Only an admin can make another user an admin." msgstr "" -#: actions/makeadmin.php:95 +#: actions/makeadmin.php:96 #, fuzzy, php-format msgid "%1$s is already an admin for group \"%2$s\"." msgstr "Brukar har blokkert deg." -#: actions/makeadmin.php:132 +#: actions/makeadmin.php:133 #, fuzzy, php-format msgid "Can't get membership record for %1$s in group %2$s." msgstr "Kunne ikkje fjerne %s fra %s gruppa " -#: actions/makeadmin.php:145 +#: actions/makeadmin.php:146 #, fuzzy, php-format msgid "Can't make %1$s an admin for group %2$s." msgstr "Du må være administrator for å redigere gruppa" @@ -1916,6 +2171,30 @@ msgstr "Du må være administrator for å redigere gruppa" msgid "No current status" msgstr "Ingen status" +#: actions/newapplication.php:52 +#, fuzzy +msgid "New Application" +msgstr "Denne notisen finst ikkje." + +#: actions/newapplication.php:64 +#, fuzzy +msgid "You must be logged in to register an application." +msgstr "Du må være logga inn for å lage ei gruppe." + +#: actions/newapplication.php:143 +#, fuzzy +msgid "Use this form to register a new application." +msgstr "Bruk dette skjemaet for å lage ein ny gruppe." + +#: actions/newapplication.php:176 +msgid "Source URL is required." +msgstr "" + +#: actions/newapplication.php:258 actions/newapplication.php:267 +#, fuzzy +msgid "Could not create application." +msgstr "Kunne ikkje lagre favoritt." + #: actions/newgroup.php:53 msgid "New group" msgstr "Ny gruppe" @@ -2027,6 +2306,51 @@ msgstr "Dytta!" msgid "Nudge sent!" msgstr "Dytta!" +#: actions/oauthappssettings.php:59 +#, fuzzy +msgid "You must be logged in to list your applications." +msgstr "Du må være logga inn for å lage ei gruppe." + +#: actions/oauthappssettings.php:74 +#, fuzzy +msgid "OAuth applications" +msgstr "Andre val" + +#: actions/oauthappssettings.php:85 +msgid "Applications you have registered" +msgstr "" + +#: actions/oauthappssettings.php:135 +#, php-format +msgid "You have not registered any applications yet." +msgstr "" + +#: actions/oauthconnectionssettings.php:72 +msgid "Connected applications" +msgstr "" + +#: actions/oauthconnectionssettings.php:83 +msgid "You have allowed the following applications to access you account." +msgstr "" + +#: actions/oauthconnectionssettings.php:175 +#, fuzzy +msgid "You are not a user of that application." +msgstr "Du er ikkje medlem av den gruppa." + +#: actions/oauthconnectionssettings.php:186 +msgid "Unable to revoke access for app: " +msgstr "" + +#: actions/oauthconnectionssettings.php:198 +#, php-format +msgid "You have not authorized any applications to use your account." +msgstr "" + +#: actions/oauthconnectionssettings.php:211 +msgid "Developers can edit the registration settings for their applications " +msgstr "" + #: actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" msgstr "Notisen har ingen profil" @@ -2045,8 +2369,8 @@ msgstr "Kopla til" msgid "Only " msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1033 -#: lib/api.php:1061 lib/api.php:1171 +#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 +#: lib/api.php:1068 lib/api.php:1177 msgid "Not a supported data format." msgstr "Ikkje eit støtta dataformat." @@ -2059,7 +2383,8 @@ msgid "Notice Search" msgstr "Notissøk" #: actions/othersettings.php:60 -msgid "Other Settings" +#, fuzzy +msgid "Other settings" msgstr "Andre innstillingar" #: actions/othersettings.php:71 @@ -2116,6 +2441,11 @@ msgstr "Ugyldig notisinnhald" msgid "Login token expired." msgstr "Logg inn " +#: actions/outbox.php:58 +#, fuzzy, php-format +msgid "Outbox for %1$s - page %2$d" +msgstr "Utboks for %s" + #: actions/outbox.php:61 #, php-format msgid "Outbox for %s" @@ -2186,7 +2516,7 @@ msgstr "Klarar ikkje lagra nytt passord." msgid "Password saved." msgstr "Lagra passord." -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:326 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:331 msgid "Paths" msgstr "" @@ -2194,142 +2524,159 @@ msgstr "" msgid "Path and server settings for this StatusNet site." msgstr "" -#: actions/pathsadminpanel.php:140 +#: actions/pathsadminpanel.php:157 #, fuzzy, php-format msgid "Theme directory not readable: %s" msgstr "Denne sida er ikkje tilgjengleg i eit" -#: actions/pathsadminpanel.php:146 +#: actions/pathsadminpanel.php:163 #, php-format msgid "Avatar directory not writable: %s" msgstr "" -#: actions/pathsadminpanel.php:152 +#: actions/pathsadminpanel.php:169 #, php-format msgid "Background directory not writable: %s" msgstr "" -#: actions/pathsadminpanel.php:160 +#: actions/pathsadminpanel.php:177 #, php-format msgid "Locales directory not readable: %s" msgstr "" -#: actions/pathsadminpanel.php:166 +#: actions/pathsadminpanel.php:183 msgid "Invalid SSL server. The maximum length is 255 characters." msgstr "" -#: actions/pathsadminpanel.php:217 actions/siteadminpanel.php:58 +#: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58 #: lib/adminpanelaction.php:311 #, fuzzy msgid "Site" msgstr "Invitér" -#: actions/pathsadminpanel.php:221 +#: actions/pathsadminpanel.php:238 +#, fuzzy +msgid "Server" +msgstr "Gjenopprett" + +#: actions/pathsadminpanel.php:238 +msgid "Site's server hostname." +msgstr "" + +#: actions/pathsadminpanel.php:242 msgid "Path" msgstr "" -#: actions/pathsadminpanel.php:221 +#: actions/pathsadminpanel.php:242 #, fuzzy msgid "Site path" msgstr "Statusmelding" -#: actions/pathsadminpanel.php:225 +#: actions/pathsadminpanel.php:246 msgid "Path to locales" msgstr "" -#: actions/pathsadminpanel.php:225 +#: actions/pathsadminpanel.php:246 msgid "Directory path to locales" msgstr "" -#: actions/pathsadminpanel.php:232 -msgid "Theme" -msgstr "" - -#: actions/pathsadminpanel.php:237 -msgid "Theme server" -msgstr "" - -#: actions/pathsadminpanel.php:241 -msgid "Theme path" -msgstr "" - -#: actions/pathsadminpanel.php:245 -msgid "Theme directory" +#: actions/pathsadminpanel.php:250 +msgid "Fancy URLs" msgstr "" #: actions/pathsadminpanel.php:252 +msgid "Use fancy (more readable and memorable) URLs?" +msgstr "" + +#: actions/pathsadminpanel.php:259 +msgid "Theme" +msgstr "" + +#: actions/pathsadminpanel.php:264 +msgid "Theme server" +msgstr "" + +#: actions/pathsadminpanel.php:268 +msgid "Theme path" +msgstr "" + +#: actions/pathsadminpanel.php:272 +msgid "Theme directory" +msgstr "" + +#: actions/pathsadminpanel.php:279 #, fuzzy msgid "Avatars" msgstr "Brukarbilete" -#: actions/pathsadminpanel.php:257 +#: actions/pathsadminpanel.php:284 #, fuzzy msgid "Avatar server" msgstr "Avatar-innstillingar" -#: actions/pathsadminpanel.php:261 +#: actions/pathsadminpanel.php:288 #, fuzzy msgid "Avatar path" msgstr "Lasta opp brukarbilete." -#: actions/pathsadminpanel.php:265 +#: actions/pathsadminpanel.php:292 #, fuzzy msgid "Avatar directory" msgstr "Lasta opp brukarbilete." -#: actions/pathsadminpanel.php:274 +#: actions/pathsadminpanel.php:301 msgid "Backgrounds" msgstr "" -#: actions/pathsadminpanel.php:278 +#: actions/pathsadminpanel.php:305 msgid "Background server" msgstr "" -#: actions/pathsadminpanel.php:282 +#: actions/pathsadminpanel.php:309 msgid "Background path" msgstr "" -#: actions/pathsadminpanel.php:286 +#: actions/pathsadminpanel.php:313 msgid "Background directory" msgstr "" -#: actions/pathsadminpanel.php:293 +#: actions/pathsadminpanel.php:320 #, fuzzy msgid "SSL" msgstr "SMS" -#: actions/pathsadminpanel.php:296 actions/siteadminpanel.php:346 +#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 #, fuzzy msgid "Never" msgstr "Gjenopprett" -#: actions/pathsadminpanel.php:297 +#: actions/pathsadminpanel.php:324 #, fuzzy msgid "Sometimes" msgstr "Notisar" -#: actions/pathsadminpanel.php:298 +#: actions/pathsadminpanel.php:325 msgid "Always" msgstr "" -#: actions/pathsadminpanel.php:302 +#: actions/pathsadminpanel.php:329 msgid "Use SSL" msgstr "" -#: actions/pathsadminpanel.php:303 +#: actions/pathsadminpanel.php:330 msgid "When to use SSL" msgstr "" -#: actions/pathsadminpanel.php:308 +#: actions/pathsadminpanel.php:335 #, fuzzy msgid "SSL server" msgstr "Gjenopprett" -#: actions/pathsadminpanel.php:309 +#: actions/pathsadminpanel.php:336 msgid "Server to direct SSL requests to" msgstr "" -#: actions/pathsadminpanel.php:325 +#: actions/pathsadminpanel.php:352 #, fuzzy msgid "Save paths" msgstr "Statusmelding" @@ -2393,7 +2740,7 @@ msgid "Full name" msgstr "Fullt namn" #: actions/profilesettings.php:115 actions/register.php:453 -#: lib/groupeditform.php:161 +#: lib/applicationeditform.php:228 lib/groupeditform.php:161 msgid "Homepage" msgstr "Heimeside" @@ -2417,7 +2764,7 @@ msgstr "Om meg" #: actions/profilesettings.php:132 actions/register.php:471 #: actions/showgroup.php:256 actions/tagother.php:112 -#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:164 msgid "Location" msgstr "Plassering" @@ -2443,7 +2790,7 @@ msgstr "" "merkelappar for deg sjølv ( bokstavar, nummer, -, ., og _ ), komma eller " "mellomroms separert." -#: actions/profilesettings.php:151 actions/siteadminpanel.php:294 +#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 msgid "Language" msgstr "Språk" @@ -2470,7 +2817,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "«Om meg» er for lang (maks 140 " -#: actions/profilesettings.php:235 actions/siteadminpanel.php:164 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 msgid "Timezone not selected." msgstr "Tidssone er ikkje valt." @@ -2483,24 +2830,24 @@ msgstr "Språk er for langt (maksimalt 50 teikn)." msgid "Invalid tag: \"%s\"" msgstr "Ugyldig merkelapp: %s" -#: actions/profilesettings.php:302 +#: actions/profilesettings.php:306 msgid "Couldn't update user for autosubscribe." msgstr "Kan ikkje oppdatera brukar for automatisk tinging." -#: actions/profilesettings.php:359 +#: actions/profilesettings.php:363 #, fuzzy msgid "Couldn't save location prefs." msgstr "Kan ikkje lagra merkelapp." -#: actions/profilesettings.php:371 +#: actions/profilesettings.php:375 msgid "Couldn't save profile." msgstr "Kan ikkje lagra profil." -#: actions/profilesettings.php:379 +#: actions/profilesettings.php:383 msgid "Couldn't save tags." msgstr "Kan ikkje lagra merkelapp." -#: actions/profilesettings.php:387 lib/adminpanelaction.php:137 +#: actions/profilesettings.php:391 lib/adminpanelaction.php:137 msgid "Settings saved." msgstr "Lagra innstillingar." @@ -2522,39 +2869,39 @@ msgstr "Offentleg tidsline, side %d" msgid "Public timeline" msgstr "Offentleg tidsline" -#: actions/public.php:151 +#: actions/public.php:159 #, fuzzy msgid "Public Stream Feed (RSS 1.0)" msgstr "Offentleg straum" -#: actions/public.php:155 +#: actions/public.php:163 #, fuzzy msgid "Public Stream Feed (RSS 2.0)" msgstr "Offentleg straum" -#: actions/public.php:159 +#: actions/public.php:167 #, fuzzy msgid "Public Stream Feed (Atom)" msgstr "Offentleg straum" -#: actions/public.php:179 +#: actions/public.php:187 #, php-format msgid "" "This is the public timeline for %%site.name%% but no one has posted anything " "yet." msgstr "" -#: actions/public.php:182 +#: actions/public.php:190 msgid "Be the first to post!" msgstr "" -#: actions/public.php:186 +#: actions/public.php:194 #, php-format msgid "" "Why not [register an account](%%action.register%%) and be the first to post!" msgstr "" -#: actions/public.php:233 +#: actions/public.php:241 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2563,7 +2910,7 @@ msgid "" "friends, family, and colleagues! ([Read more](%%doc.help%%))" msgstr "" -#: actions/public.php:238 +#: actions/public.php:246 #, fuzzy, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2598,7 +2945,7 @@ msgid "" "one!" msgstr "" -#: actions/publictagcloud.php:131 +#: actions/publictagcloud.php:134 msgid "Tag cloud" msgstr "Emne sky" @@ -2737,7 +3084,7 @@ msgstr "Feil med stadfestingskode." msgid "Registration successful" msgstr "Registreringa gikk bra" -#: actions/register.php:114 actions/register.php:503 lib/action.php:457 +#: actions/register.php:114 actions/register.php:503 lib/action.php:463 #: lib/logingroupnav.php:85 msgid "Register" msgstr "Registrér" @@ -2779,7 +3126,7 @@ msgid "Same as password above. Required." msgstr "Samme som passord over. Påkrevd." #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:270 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 msgid "Email" msgstr "Epost" @@ -2887,7 +3234,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "URL til profilsida di på ei anna kompatibel mikrobloggingteneste." #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:365 +#: lib/userprofile.php:368 msgid "Subscribe" msgstr "Ting" @@ -2930,7 +3277,7 @@ msgstr "Du kan ikkje registrera deg om du ikkje godtek vilkåra i lisensen." msgid "You already repeated that notice." msgstr "Du har allereie blokkert denne brukaren." -#: actions/repeat.php:114 lib/noticelist.php:629 +#: actions/repeat.php:114 lib/noticelist.php:656 #, fuzzy msgid "Repeated" msgstr "Lag" @@ -2946,6 +3293,11 @@ msgstr "Lag" msgid "Replies to %s" msgstr "Svar til %s" +#: actions/replies.php:127 +#, fuzzy, php-format +msgid "Replies to %1$s, page %2$d" +msgstr "Melding til %1$s på %2$s" + #: actions/replies.php:144 #, fuzzy, php-format msgid "Replies feed for %s (RSS 1.0)" @@ -2987,6 +3339,11 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "Melding til %1$s på %2$s" +#: actions/rsd.php:146 actions/version.php:157 +#, fuzzy +msgid "StatusNet" +msgstr "Lasta opp brukarbilete." + #: actions/sandbox.php:65 actions/unsandbox.php:65 #, fuzzy msgid "You cannot sandbox users on this site." @@ -2997,6 +3354,125 @@ msgstr "Du kan ikkje sende melding til denne brukaren." msgid "User is already sandboxed." msgstr "Brukar har blokkert deg." +#: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:336 +msgid "Sessions" +msgstr "" + +#: actions/sessionsadminpanel.php:65 +msgid "Session settings for this StatusNet site." +msgstr "" + +#: actions/sessionsadminpanel.php:175 +msgid "Handle sessions" +msgstr "" + +#: actions/sessionsadminpanel.php:177 +msgid "Whether to handle sessions ourselves." +msgstr "" + +#: actions/sessionsadminpanel.php:181 +msgid "Session debugging" +msgstr "" + +#: actions/sessionsadminpanel.php:183 +msgid "Turn on debugging output for sessions." +msgstr "" + +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/useradminpanel.php:293 +#, fuzzy +msgid "Save site settings" +msgstr "Avatar-innstillingar" + +#: actions/showapplication.php:82 +#, fuzzy +msgid "You must be logged in to view an application." +msgstr "Du må være innlogga for å melde deg ut av ei gruppe." + +#: actions/showapplication.php:157 +#, fuzzy +msgid "Application profile" +msgstr "Notisen har ingen profil" + +#: actions/showapplication.php:159 lib/applicationeditform.php:180 +msgid "Icon" +msgstr "" + +#: actions/showapplication.php:169 actions/version.php:195 +#: lib/applicationeditform.php:195 +#, fuzzy +msgid "Name" +msgstr "Kallenamn" + +#: actions/showapplication.php:178 lib/applicationeditform.php:222 +#, fuzzy +msgid "Organization" +msgstr "Paginering" + +#: actions/showapplication.php:187 actions/version.php:198 +#: lib/applicationeditform.php:209 lib/groupeditform.php:172 +msgid "Description" +msgstr "Beskriving" + +#: actions/showapplication.php:192 actions/showgroup.php:429 +#: lib/profileaction.php:174 +msgid "Statistics" +msgstr "Statistikk" + +#: actions/showapplication.php:203 +#, php-format +msgid "Created by %1$s - %2$s access by default - %3$d users" +msgstr "" + +#: actions/showapplication.php:213 +msgid "Application actions" +msgstr "" + +#: actions/showapplication.php:236 +msgid "Reset key & secret" +msgstr "" + +#: actions/showapplication.php:261 +msgid "Application info" +msgstr "" + +#: actions/showapplication.php:263 +msgid "Consumer key" +msgstr "" + +#: actions/showapplication.php:268 +msgid "Consumer secret" +msgstr "" + +#: actions/showapplication.php:273 +msgid "Request token URL" +msgstr "" + +#: actions/showapplication.php:278 +msgid "Access token URL" +msgstr "" + +#: actions/showapplication.php:283 +msgid "Authorize URL" +msgstr "" + +#: actions/showapplication.php:288 +msgid "" +"Note: We support HMAC-SHA1 signatures. We do not support the plaintext " +"signature method." +msgstr "" + +#: actions/showapplication.php:309 +#, fuzzy +msgid "Are you sure you want to reset your consumer key and secret?" +msgstr "Sikker på at du vil sletta notisen?" + +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%1$s's favorite notices, page %2$d" +msgstr "%s's favoritt meldingar" + #: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "Kunne ikkje hente fram favorittane." @@ -3046,17 +3522,22 @@ msgstr "" msgid "%s group" msgstr "%s gruppe" +#: actions/showgroup.php:84 +#, fuzzy, php-format +msgid "%1$s group, page %2$d" +msgstr "%s medlemmar i gruppa, side %d" + #: actions/showgroup.php:218 msgid "Group profile" msgstr "Gruppe profil" #: actions/showgroup.php:263 actions/tagother.php:118 -#: actions/userauthorization.php:167 lib/userprofile.php:177 +#: actions/userauthorization.php:175 lib/userprofile.php:177 msgid "URL" msgstr "URL" #: actions/showgroup.php:274 actions/tagother.php:128 -#: actions/userauthorization.php:179 lib/userprofile.php:194 +#: actions/userauthorization.php:187 lib/userprofile.php:194 msgid "Note" msgstr "Merknad" @@ -3102,10 +3583,6 @@ msgstr "(Ingen)" msgid "All members" msgstr "Alle medlemmar" -#: actions/showgroup.php:429 lib/profileaction.php:174 -msgid "Statistics" -msgstr "Statistikk" - #: actions/showgroup.php:432 #, fuzzy msgid "Created" @@ -3165,6 +3642,11 @@ msgstr "Melding lagra" msgid " tagged %s" msgstr "Notisar merka med %s" +#: actions/showstream.php:79 +#, fuzzy, php-format +msgid "%1$s, page %2$d" +msgstr "%s med vener, side %d" + #: actions/showstream.php:122 #, fuzzy, php-format msgid "Notice feed for %1$s tagged %2$s (RSS 1.0)" @@ -3190,25 +3672,25 @@ msgstr "Notisstraum for %s" msgid "FOAF for %s" msgstr "Utboks for %s" -#: actions/showstream.php:191 +#: actions/showstream.php:200 #, php-format msgid "This is the timeline for %1$s but %2$s hasn't posted anything yet." msgstr "" -#: actions/showstream.php:196 +#: actions/showstream.php:205 msgid "" "Seen anything interesting recently? You haven't posted any notices yet, now " "would be a good time to start :)" msgstr "" -#: actions/showstream.php:198 +#: actions/showstream.php:207 #, php-format msgid "" "You can try to nudge %1$s or [post something to his or her attention](%%%%" "action.newnotice%%%%?status_textarea=%2$s)." msgstr "" -#: actions/showstream.php:234 +#: actions/showstream.php:243 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3217,7 +3699,7 @@ msgid "" "follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showstream.php:239 +#: actions/showstream.php:248 #, fuzzy, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3227,7 +3709,7 @@ msgstr "" "**%s** har ein konto på %%%%site.name%%%%, ei [mikroblogging](http://en." "wikipedia.org/wiki/Micro-blogging)-teneste" -#: actions/showstream.php:313 +#: actions/showstream.php:305 #, fuzzy, php-format msgid "Repeat of %s" msgstr "Svar til %s" @@ -3246,207 +3728,148 @@ msgstr "Brukar har blokkert deg." msgid "Basic settings for this StatusNet site." msgstr "" -#: actions/siteadminpanel.php:146 +#: actions/siteadminpanel.php:132 msgid "Site name must have non-zero length." msgstr "" -#: actions/siteadminpanel.php:154 +#: actions/siteadminpanel.php:140 #, fuzzy msgid "You must have a valid contact email address." msgstr "Ikkje ei gyldig epostadresse" -#: actions/siteadminpanel.php:172 +#: actions/siteadminpanel.php:158 #, php-format msgid "Unknown language \"%s\"." msgstr "" -#: actions/siteadminpanel.php:179 +#: actions/siteadminpanel.php:165 msgid "Invalid snapshot report URL." msgstr "" -#: actions/siteadminpanel.php:185 +#: actions/siteadminpanel.php:171 msgid "Invalid snapshot run value." msgstr "" -#: actions/siteadminpanel.php:191 +#: actions/siteadminpanel.php:177 msgid "Snapshot frequency must be a number." msgstr "" -#: actions/siteadminpanel.php:197 +#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "" -#: actions/siteadminpanel.php:203 +#: actions/siteadminpanel.php:189 msgid "Dupe limit must 1 or more seconds." msgstr "" -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:239 msgid "General" msgstr "" -#: actions/siteadminpanel.php:256 +#: actions/siteadminpanel.php:242 #, fuzzy msgid "Site name" msgstr "Statusmelding" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:243 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "" -#: actions/siteadminpanel.php:261 +#: actions/siteadminpanel.php:247 msgid "Brought by" msgstr "" -#: actions/siteadminpanel.php:262 +#: actions/siteadminpanel.php:248 msgid "Text used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:266 +#: actions/siteadminpanel.php:252 msgid "Brought by URL" msgstr "" -#: actions/siteadminpanel.php:267 +#: actions/siteadminpanel.php:253 msgid "URL used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:271 +#: actions/siteadminpanel.php:257 #, fuzzy msgid "Contact email address for your site" msgstr "Ny epostadresse for å oppdatera %s" -#: actions/siteadminpanel.php:277 +#: actions/siteadminpanel.php:263 #, fuzzy msgid "Local" msgstr "Lokale syningar" -#: actions/siteadminpanel.php:288 +#: actions/siteadminpanel.php:274 msgid "Default timezone" msgstr "" -#: actions/siteadminpanel.php:289 +#: actions/siteadminpanel.php:275 msgid "Default timezone for the site; usually UTC." msgstr "" -#: actions/siteadminpanel.php:295 +#: actions/siteadminpanel.php:281 #, fuzzy msgid "Default site language" msgstr "Foretrukke språk" -#: actions/siteadminpanel.php:303 -#, fuzzy -msgid "URLs" -msgstr "URL" - -#: actions/siteadminpanel.php:306 -#, fuzzy -msgid "Server" -msgstr "Gjenopprett" - -#: actions/siteadminpanel.php:306 -msgid "Site's server hostname." -msgstr "" - -#: actions/siteadminpanel.php:310 -msgid "Fancy URLs" -msgstr "" - -#: actions/siteadminpanel.php:312 -msgid "Use fancy (more readable and memorable) URLs?" -msgstr "" - -#: actions/siteadminpanel.php:318 -#, fuzzy -msgid "Access" -msgstr "Godta" - -#: actions/siteadminpanel.php:321 -#, fuzzy -msgid "Private" -msgstr "Personvern" - -#: actions/siteadminpanel.php:323 -msgid "Prohibit anonymous users (not logged in) from viewing site?" -msgstr "" - -#: actions/siteadminpanel.php:327 -#, fuzzy -msgid "Invite only" -msgstr "Invitér" - -#: actions/siteadminpanel.php:329 -msgid "Make registration invitation only." -msgstr "" - -#: actions/siteadminpanel.php:333 -#, fuzzy -msgid "Closed" -msgstr "Blokkér" - -#: actions/siteadminpanel.php:335 -msgid "Disable new registrations." -msgstr "" - -#: actions/siteadminpanel.php:341 +#: actions/siteadminpanel.php:289 msgid "Snapshots" msgstr "" -#: actions/siteadminpanel.php:344 +#: actions/siteadminpanel.php:292 msgid "Randomly during Web hit" msgstr "" -#: actions/siteadminpanel.php:345 +#: actions/siteadminpanel.php:293 msgid "In a scheduled job" msgstr "" -#: actions/siteadminpanel.php:347 +#: actions/siteadminpanel.php:295 msgid "Data snapshots" msgstr "" -#: actions/siteadminpanel.php:348 +#: actions/siteadminpanel.php:296 msgid "When to send statistical data to status.net servers" msgstr "" -#: actions/siteadminpanel.php:353 +#: actions/siteadminpanel.php:301 msgid "Frequency" msgstr "" -#: actions/siteadminpanel.php:354 +#: actions/siteadminpanel.php:302 msgid "Snapshots will be sent once every N web hits" msgstr "" -#: actions/siteadminpanel.php:359 +#: actions/siteadminpanel.php:307 msgid "Report URL" msgstr "" -#: actions/siteadminpanel.php:360 +#: actions/siteadminpanel.php:308 msgid "Snapshots will be sent to this URL" msgstr "" -#: actions/siteadminpanel.php:367 +#: actions/siteadminpanel.php:315 msgid "Limits" msgstr "" -#: actions/siteadminpanel.php:370 +#: actions/siteadminpanel.php:318 msgid "Text limit" msgstr "" -#: actions/siteadminpanel.php:370 +#: actions/siteadminpanel.php:318 msgid "Maximum number of characters for notices." msgstr "" -#: actions/siteadminpanel.php:374 +#: actions/siteadminpanel.php:322 msgid "Dupe limit" msgstr "" -#: actions/siteadminpanel.php:374 +#: actions/siteadminpanel.php:322 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" -#: actions/siteadminpanel.php:388 actions/useradminpanel.php:313 -#, fuzzy -msgid "Save site settings" -msgstr "Avatar-innstillingar" - #: actions/smssettings.php:58 #, fuzzy msgid "SMS settings" @@ -3553,15 +3976,26 @@ msgstr "Ingen innskriven kode" msgid "You are not subscribed to that profile." msgstr "Du tingar ikkje oppdateringar til den profilen." -#: actions/subedit.php:83 +#: actions/subedit.php:83 classes/Subscription.php:89 +#: classes/Subscription.php:116 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:77 +msgid "This action only accepts POST requests." +msgstr "" -#: actions/subscribe.php:69 +#: actions/subscribe.php:107 +#, fuzzy +msgid "No such profile." +msgstr "Denne notisen finst ikkje." + +#: actions/subscribe.php:117 +#, fuzzy +msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." +msgstr "Du tingar ikkje oppdateringar til den profilen." + +#: actions/subscribe.php:145 msgid "Subscribed" msgstr "Abonnent" @@ -3621,7 +4055,7 @@ msgstr "Dette er dei du lyttar til." msgid "These are the people whose notices %s listens to." msgstr "Dette er folka som %s tingar oppdateringar frå." -#: actions/subscriptions.php:121 +#: actions/subscriptions.php:126 #, php-format msgid "" "You're not listening to anyone's notices right now, try subscribing to " @@ -3631,19 +4065,24 @@ msgid "" "automatically subscribe to people you already follow there." msgstr "" -#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#: actions/subscriptions.php:128 actions/subscriptions.php:132 #, fuzzy, php-format msgid "%s is not listening to anyone." msgstr "%1$s høyrer no på" -#: actions/subscriptions.php:194 +#: actions/subscriptions.php:199 msgid "Jabber" msgstr "Jabber" -#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:204 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "SMS" +#: actions/tag.php:68 +#, fuzzy, php-format +msgid "Notices tagged with %1$s, page %2$d" +msgstr "Brukarar sjølv-merka med %s, side %d" + #: actions/tag.php:86 #, fuzzy, php-format msgid "Notice feed for tag %s (RSS 1.0)" @@ -3673,7 +4112,8 @@ msgstr "Merkelapp %s" msgid "User profile" msgstr "Brukarprofil" -#: actions/tagother.php:81 lib/userprofile.php:102 +#: actions/tagother.php:81 actions/userauthorization.php:132 +#: lib/userprofile.php:102 msgid "Photo" msgstr "Bilete" @@ -3737,7 +4177,7 @@ msgstr "Ingen profil-ID i førespurnaden." msgid "Unsubscribed" msgstr "Fjerna tinging" -#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#: actions/updateprofile.php:62 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -3752,90 +4192,70 @@ msgstr "Brukar" msgid "User settings for this StatusNet site." msgstr "" -#: actions/useradminpanel.php:149 +#: actions/useradminpanel.php:148 msgid "Invalid bio limit. Must be numeric." msgstr "" -#: actions/useradminpanel.php:155 +#: actions/useradminpanel.php:154 msgid "Invalid welcome text. Max length is 255 characters." msgstr "" -#: actions/useradminpanel.php:165 +#: actions/useradminpanel.php:164 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 +#: actions/useradminpanel.php:217 lib/accountsettingsaction.php:108 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Profil" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:221 msgid "Bio Limit" msgstr "" -#: actions/useradminpanel.php:223 +#: actions/useradminpanel.php:222 msgid "Maximum length of a profile bio in characters." msgstr "" -#: actions/useradminpanel.php:231 +#: actions/useradminpanel.php:230 #, fuzzy msgid "New users" msgstr "Invitér nye brukarar" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:234 msgid "New user welcome" msgstr "" -#: actions/useradminpanel.php:236 +#: actions/useradminpanel.php:235 msgid "Welcome text for new users (Max 255 chars)." msgstr "" -#: actions/useradminpanel.php:241 +#: actions/useradminpanel.php:240 #, fuzzy msgid "Default subscription" msgstr "Alle tingingar" -#: actions/useradminpanel.php:242 +#: actions/useradminpanel.php:241 #, fuzzy msgid "Automatically subscribe new users to this user." msgstr "" "Automatisk ting notisane til dei som tingar mine (best for ikkje-menneskje)" -#: actions/useradminpanel.php:251 +#: actions/useradminpanel.php:250 #, fuzzy msgid "Invitations" msgstr "Invitasjon(er) sendt" -#: actions/useradminpanel.php:256 +#: actions/useradminpanel.php:255 #, fuzzy msgid "Invitations enabled" msgstr "Invitasjon(er) sendt" -#: actions/useradminpanel.php:258 +#: actions/useradminpanel.php:257 msgid "Whether to allow users to invite new users." msgstr "" -#: actions/useradminpanel.php:265 -msgid "Sessions" -msgstr "" - -#: actions/useradminpanel.php:270 -msgid "Handle sessions" -msgstr "" - -#: actions/useradminpanel.php:272 -msgid "Whether to handle sessions ourselves." -msgstr "" - -#: actions/useradminpanel.php:276 -msgid "Session debugging" -msgstr "" - -#: actions/useradminpanel.php:278 -msgid "Turn on debugging output for sessions." -msgstr "" - #: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Autoriser tinging" @@ -3850,38 +4270,38 @@ 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:188 actions/version.php:165 +#: actions/userauthorization.php:196 actions/version.php:165 #, fuzzy msgid "License" msgstr "lisens." -#: actions/userauthorization.php:209 +#: actions/userauthorization.php:217 msgid "Accept" msgstr "Godta" -#: actions/userauthorization.php:210 lib/subscribeform.php:115 +#: actions/userauthorization.php:218 lib/subscribeform.php:115 #: lib/subscribeform.php:139 msgid "Subscribe to this user" msgstr "Lagre tinging for brukar: %s" -#: actions/userauthorization.php:211 +#: actions/userauthorization.php:219 msgid "Reject" msgstr "Avslå" -#: actions/userauthorization.php:212 +#: actions/userauthorization.php:220 #, fuzzy msgid "Reject this subscription" msgstr "%s tingarar" -#: actions/userauthorization.php:225 +#: actions/userauthorization.php:232 msgid "No authorization request!" msgstr "Ingen autoriserings-spørjing!" -#: actions/userauthorization.php:247 +#: actions/userauthorization.php:254 msgid "Subscription authorized" msgstr "Tinging autorisert" -#: actions/userauthorization.php:249 +#: actions/userauthorization.php:256 #, fuzzy msgid "" "The subscription has been authorized, but no callback URL was passed. Check " @@ -3892,11 +4312,11 @@ msgstr "" "Sjekk med sida sine instruksjonar for korleis autorisering til tinginga skal " "gjennomførast. Ditt tingings teikn er: " -#: actions/userauthorization.php:259 +#: actions/userauthorization.php:266 msgid "Subscription rejected" msgstr "Tinging avvist" -#: actions/userauthorization.php:261 +#: actions/userauthorization.php:268 #, fuzzy msgid "" "The subscription has been rejected, but no callback URL was passed. Check " @@ -3906,37 +4326,37 @@ 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 +#: actions/userauthorization.php:303 #, php-format msgid "Listener URI ‘%s’ not found here." msgstr "" -#: actions/userauthorization.php:301 +#: actions/userauthorization.php:308 #, php-format msgid "Listenee URI ‘%s’ is too long." msgstr "" -#: actions/userauthorization.php:307 +#: actions/userauthorization.php:314 #, php-format msgid "Listenee URI ‘%s’ is a local user." msgstr "" -#: actions/userauthorization.php:322 +#: actions/userauthorization.php:329 #, php-format msgid "Profile URL ‘%s’ is for a local user." msgstr "" -#: actions/userauthorization.php:338 +#: actions/userauthorization.php:345 #, php-format msgid "Avatar URL ‘%s’ is not valid." msgstr "" -#: actions/userauthorization.php:343 +#: actions/userauthorization.php:350 #, fuzzy, php-format msgid "Can’t read avatar URL ‘%s’." msgstr "Kan ikkje lesa brukarbilete-URL «%s»" -#: actions/userauthorization.php:348 +#: actions/userauthorization.php:355 #, fuzzy, php-format msgid "Wrong image type for avatar URL ‘%s’." msgstr "Feil biletetype for '%s'" @@ -3956,6 +4376,11 @@ msgstr "" msgid "Enjoy your hotdog!" msgstr "" +#: actions/usergroups.php:64 +#, fuzzy, php-format +msgid "%1$s groups, page %2$d" +msgstr "%s medlemmar i gruppa, side %d" + #: actions/usergroups.php:130 #, fuzzy msgid "Search for more groups" @@ -3983,11 +4408,6 @@ msgid "" "Inc. and contributors." msgstr "" -#: actions/version.php:157 -#, fuzzy -msgid "StatusNet" -msgstr "Lasta opp brukarbilete." - #: actions/version.php:161 msgid "Contributors" msgstr "" @@ -4019,12 +4439,7 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:195 -#, fuzzy -msgid "Name" -msgstr "Kallenamn" - -#: actions/version.php:196 lib/action.php:741 +#: actions/version.php:196 lib/action.php:747 #, fuzzy msgid "Version" msgstr "Personleg" @@ -4033,10 +4448,6 @@ msgstr "Personleg" msgid "Author(s)" msgstr "" -#: actions/version.php:198 lib/groupeditform.php:172 -msgid "Description" -msgstr "Beskriving" - #: classes/File.php:144 #, php-format msgid "" @@ -4087,27 +4498,27 @@ msgstr "Kunne ikkje lagre melding." msgid "Could not update message with new URI." msgstr "Kunne ikkje oppdatere melding med ny URI." -#: classes/Notice.php:171 +#: classes/Notice.php:157 #, php-format msgid "DB error inserting hashtag: %s" msgstr "databasefeil ved innsetjing av skigardmerkelapp (#merkelapp): %s" -#: classes/Notice.php:225 +#: classes/Notice.php:222 #, fuzzy msgid "Problem saving notice. Too long." msgstr "Eit problem oppstod ved lagring av notis." -#: classes/Notice.php:229 +#: classes/Notice.php:226 msgid "Problem saving notice. Unknown user." msgstr "Feil ved lagring av notis. Ukjend brukar." -#: classes/Notice.php:234 +#: classes/Notice.php:231 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." -#: classes/Notice.php:240 +#: classes/Notice.php:237 #, fuzzy msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " @@ -4115,34 +4526,61 @@ msgid "" msgstr "" "For mange notisar for raskt; tek ei pause, og prøv igjen om eit par minutt." -#: classes/Notice.php:246 +#: classes/Notice.php:243 msgid "You are banned from posting notices on this site." msgstr "Du kan ikkje lengre legge inn notisar på denne sida." -#: classes/Notice.php:305 classes/Notice.php:330 +#: classes/Notice.php:309 classes/Notice.php:335 msgid "Problem saving notice." msgstr "Eit problem oppstod ved lagring av notis." -#: classes/Notice.php:1052 -#, php-format -msgid "DB error inserting reply: %s" -msgstr "Databasefeil, kan ikkje lagra svar: %s" +#: classes/Notice.php:882 +#, fuzzy +msgid "Problem saving group inbox." +msgstr "Eit problem oppstod ved lagring av notis." -#: classes/Notice.php:1423 +#: classes/Notice.php:1407 #, fuzzy, php-format msgid "RT @%1$s %2$s" msgstr "%1$s (%2$s)" -#: classes/User.php:382 +#: classes/Subscription.php:66 lib/oauthstore.php:465 +#, fuzzy +msgid "You have been banned from subscribing." +msgstr "Brukaren tillet deg ikkje å tinga meldingane sine." + +#: classes/Subscription.php:70 +msgid "Already subscribed!" +msgstr "" + +#: classes/Subscription.php:74 +msgid "User has blocked you." +msgstr "Brukar har blokkert deg." + +#: classes/Subscription.php:157 +#, fuzzy +msgid "Not subscribed!" +msgstr "Ikkje tinga." + +#: classes/Subscription.php:163 +#, fuzzy +msgid "Couldn't delete self-subscription." +msgstr "Kan ikkje sletta tinging." + +#: classes/Subscription.php:179 lib/subs.php:69 +msgid "Couldn't delete subscription." +msgstr "Kan ikkje sletta tinging." + +#: classes/User.php:372 #, fuzzy, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "Melding til %1$s på %2$s" -#: classes/User_group.php:380 +#: classes/User_group.php:423 msgid "Could not create group." msgstr "Kunne ikkje laga gruppa." -#: classes/User_group.php:409 +#: classes/User_group.php:452 msgid "Could not set group membership." msgstr "Kunne ikkje bli med i gruppa." @@ -4184,131 +4622,127 @@ msgstr "%1$s (%2$s)" msgid "Untitled page" msgstr "Ingen tittel" -#: lib/action.php:427 +#: lib/action.php:433 msgid "Primary site navigation" msgstr "Navigasjon for hovudsida" -#: lib/action.php:433 +#: lib/action.php:439 msgid "Home" msgstr "Heim" -#: lib/action.php:433 +#: lib/action.php:439 msgid "Personal profile and friends timeline" msgstr "Personleg profil og oversyn over vener" -#: lib/action.php:435 -msgid "Account" -msgstr "Konto" - -#: lib/action.php:435 +#: lib/action.php:441 msgid "Change your email, avatar, password, profile" msgstr "Endra e-posten, avataren, passordet eller profilen" -#: lib/action.php:438 +#: lib/action.php:444 msgid "Connect" msgstr "Kopla til" -#: lib/action.php:438 +#: lib/action.php:444 #, fuzzy msgid "Connect to services" msgstr "Klarte ikkje å omdirigera til tenaren: %s" -#: lib/action.php:442 +#: lib/action.php:448 #, fuzzy msgid "Change site configuration" msgstr "Navigasjon for hovudsida" -#: lib/action.php:446 lib/subgroupnav.php:105 +#: lib/action.php:452 lib/subgroupnav.php:105 msgid "Invite" msgstr "Invitér" -#: lib/action.php:447 lib/subgroupnav.php:106 +#: lib/action.php:453 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:452 +#: lib/action.php:458 msgid "Logout" msgstr "Logg ut" -#: lib/action.php:452 +#: lib/action.php:458 msgid "Logout from the site" msgstr "Logg ut or sida" -#: lib/action.php:457 +#: lib/action.php:463 msgid "Create an account" msgstr "Opprett ny konto" -#: lib/action.php:460 +#: lib/action.php:466 msgid "Login to the site" msgstr "Logg inn or sida" -#: lib/action.php:463 lib/action.php:726 +#: lib/action.php:469 lib/action.php:732 msgid "Help" msgstr "Hjelp" -#: lib/action.php:463 +#: lib/action.php:469 msgid "Help me!" msgstr "Hjelp meg!" -#: lib/action.php:466 lib/searchaction.php:127 +#: lib/action.php:472 lib/searchaction.php:127 msgid "Search" msgstr "Søk" -#: lib/action.php:466 +#: lib/action.php:472 msgid "Search for people or text" msgstr "Søk etter folk eller innhald" -#: lib/action.php:487 +#: lib/action.php:493 msgid "Site notice" msgstr "Statusmelding" -#: lib/action.php:553 +#: lib/action.php:559 msgid "Local views" msgstr "Lokale syningar" -#: lib/action.php:619 +#: lib/action.php:625 msgid "Page notice" msgstr "Sidenotis" -#: lib/action.php:721 +#: lib/action.php:727 msgid "Secondary site navigation" msgstr "Andrenivås side navigasjon" -#: lib/action.php:728 +#: lib/action.php:734 msgid "About" msgstr "Om" -#: lib/action.php:730 +#: lib/action.php:736 msgid "FAQ" msgstr "OSS" -#: lib/action.php:734 +#: lib/action.php:740 msgid "TOS" msgstr "" -#: lib/action.php:737 +#: lib/action.php:743 msgid "Privacy" msgstr "Personvern" -#: lib/action.php:739 +#: lib/action.php:745 msgid "Source" msgstr "Kjeldekode" -#: lib/action.php:743 +#: lib/action.php:749 msgid "Contact" msgstr "Kontakt" -#: lib/action.php:745 +#: lib/action.php:751 #, fuzzy msgid "Badge" msgstr "Dult" -#: lib/action.php:773 +#: lib/action.php:779 msgid "StatusNet software license" msgstr "StatusNets programvarelisens" -#: lib/action.php:776 +#: lib/action.php:782 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4317,12 +4751,12 @@ msgstr "" "**%%site.name%%** er ei mikrobloggingteneste av [%%site.broughtby%%](%%site." "broughtbyurl%%). " -#: lib/action.php:778 +#: lib/action.php:784 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** er ei mikrobloggingteneste. " -#: lib/action.php:780 +#: lib/action.php:786 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4333,34 +4767,56 @@ msgstr "" "%s, tilgjengeleg under [GNU Affero General Public License](http://www.fsf." "org/licensing/licenses/agpl-3.0.html)." -#: lib/action.php:794 +#: lib/action.php:801 #, fuzzy msgid "Site content license" msgstr "StatusNets programvarelisens" -#: lib/action.php:803 +#: lib/action.php:806 +#, php-format +msgid "Content and data of %1$s are private and confidential." +msgstr "" + +#: lib/action.php:811 +#, php-format +msgid "Content and data copyright by %1$s. All rights reserved." +msgstr "" + +#: lib/action.php:814 +msgid "Content and data copyright by contributors. All rights reserved." +msgstr "" + +#: lib/action.php:827 msgid "All " msgstr "Alle" -#: lib/action.php:808 +#: lib/action.php:833 msgid "license." msgstr "lisens." -#: lib/action.php:1102 +#: lib/action.php:1132 msgid "Pagination" msgstr "Paginering" -#: lib/action.php:1111 +#: lib/action.php:1141 msgid "After" msgstr "« Etter" -#: lib/action.php:1119 +#: lib/action.php:1149 msgid "Before" msgstr "Før »" -#: lib/action.php:1167 -msgid "There was a problem with your session token." -msgstr "Det var eit problem med sesjons billetten din." +#: lib/activity.php:382 +msgid "Can't handle remote content yet." +msgstr "" + +#: lib/activity.php:410 +msgid "Can't handle embedded XML content yet." +msgstr "" + +#: lib/activity.php:414 +msgid "Can't handle embedded Base64 content yet." +msgstr "" #: lib/adminpanelaction.php:96 #, fuzzy @@ -4397,11 +4853,105 @@ msgstr "Stadfesting av epostadresse" msgid "Design configuration" msgstr "SMS bekreftelse" -#: lib/adminpanelaction.php:322 lib/adminpanelaction.php:327 +#: lib/adminpanelaction.php:322 +#, fuzzy +msgid "User configuration" +msgstr "SMS bekreftelse" + +#: lib/adminpanelaction.php:327 +#, fuzzy +msgid "Access configuration" +msgstr "SMS bekreftelse" + +#: lib/adminpanelaction.php:332 #, fuzzy msgid "Paths configuration" msgstr "SMS bekreftelse" +#: lib/adminpanelaction.php:337 +#, fuzzy +msgid "Sessions configuration" +msgstr "SMS bekreftelse" + +#: lib/apiauth.php:95 +msgid "API resource requires read-write access, but you only have read access." +msgstr "" + +#: lib/apiauth.php:273 +#, php-format +msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" +msgstr "" + +#: lib/applicationeditform.php:136 +msgid "Edit application" +msgstr "" + +#: lib/applicationeditform.php:184 +msgid "Icon for this application" +msgstr "" + +#: lib/applicationeditform.php:204 +#, fuzzy, php-format +msgid "Describe your application in %d characters" +msgstr "Beskriv gruppa eller emnet med 140 teikn" + +#: lib/applicationeditform.php:207 +#, fuzzy +msgid "Describe your application" +msgstr "Beskriv gruppa eller emnet med 140 teikn" + +#: lib/applicationeditform.php:216 +#, fuzzy +msgid "Source URL" +msgstr "Kjeldekode" + +#: lib/applicationeditform.php:218 +#, fuzzy +msgid "URL of the homepage of this application" +msgstr "URL til heimesida eller bloggen for gruppa eller emnet" + +#: lib/applicationeditform.php:224 +msgid "Organization responsible for this application" +msgstr "" + +#: lib/applicationeditform.php:230 +#, fuzzy +msgid "URL for the homepage of the organization" +msgstr "URL til heimesida eller bloggen for gruppa eller emnet" + +#: lib/applicationeditform.php:236 +msgid "URL to redirect to after authentication" +msgstr "" + +#: lib/applicationeditform.php:258 +msgid "Browser" +msgstr "" + +#: lib/applicationeditform.php:274 +msgid "Desktop" +msgstr "" + +#: lib/applicationeditform.php:275 +msgid "Type of application, browser or desktop" +msgstr "" + +#: lib/applicationeditform.php:297 +msgid "Read-only" +msgstr "" + +#: lib/applicationeditform.php:315 +msgid "Read-write" +msgstr "" + +#: lib/applicationeditform.php:316 +msgid "Default access for this application: read-only, or read-write" +msgstr "" + +#: lib/applicationlist.php:154 +#, fuzzy +msgid "Revoke" +msgstr "Fjern" + #: lib/attachmentlist.php:87 msgid "Attachments" msgstr "" @@ -4423,12 +4973,12 @@ msgstr "" msgid "Tags for this attachment" msgstr "" -#: lib/authenticationplugin.php:182 lib/authenticationplugin.php:187 +#: lib/authenticationplugin.php:218 lib/authenticationplugin.php:223 #, fuzzy msgid "Password changing failed" msgstr "Endra passord" -#: lib/authenticationplugin.php:197 +#: lib/authenticationplugin.php:233 #, fuzzy msgid "Password changing is not allowed" msgstr "Endra passord" @@ -4582,83 +5132,92 @@ msgstr "Eit problem oppstod ved lagring av notis." msgid "Specify the name of the user to subscribe to" msgstr "Spesifer namnet til brukaren du vil tinge" -#: lib/command.php:554 +#: lib/command.php:554 lib/command.php:589 +msgid "No such user" +msgstr "Brukaren finst ikkje." + +#: lib/command.php:561 #, php-format msgid "Subscribed to %s" msgstr "Tingar %s" -#: lib/command.php:575 +#: lib/command.php:582 lib/command.php:685 msgid "Specify the name of the user to unsubscribe from" msgstr "Spesifer namnet til brukar du vil fjerne tinging på" -#: lib/command.php:582 +#: lib/command.php:595 #, php-format msgid "Unsubscribed from %s" msgstr "Tingar ikkje %s lengre" -#: lib/command.php:600 lib/command.php:623 +#: lib/command.php:613 lib/command.php:636 msgid "Command not yet implemented." msgstr "Kommando ikkje implementert." -#: lib/command.php:603 +#: lib/command.php:616 msgid "Notification off." msgstr "Notifikasjon av." -#: lib/command.php:605 +#: lib/command.php:618 msgid "Can't turn off notification." msgstr "Kan ikkje skru av notifikasjon." -#: lib/command.php:626 +#: lib/command.php:639 msgid "Notification on." msgstr "Notifikasjon på." -#: lib/command.php:628 +#: lib/command.php:641 msgid "Can't turn on notification." msgstr "Kan ikkje slå på notifikasjon." -#: lib/command.php:641 +#: lib/command.php:654 msgid "Login command is disabled" msgstr "" -#: lib/command.php:652 +#: lib/command.php:665 #, php-format msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "" -#: lib/command.php:668 +#: lib/command.php:692 +#, fuzzy, php-format +msgid "Unsubscribed %s" +msgstr "Tingar ikkje %s lengre" + +#: lib/command.php:709 #, fuzzy msgid "You are not subscribed to anyone." msgstr "Du tingar ikkje oppdateringar til den profilen." -#: lib/command.php:670 +#: lib/command.php:711 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "Du tingar allereie oppdatering frå desse brukarane:" msgstr[1] "Du tingar allereie oppdatering frå desse brukarane:" -#: lib/command.php:690 +#: lib/command.php:731 #, fuzzy msgid "No one is subscribed to you." msgstr "Kan ikkje tinga andre til deg." -#: lib/command.php:692 +#: lib/command.php:733 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "Kan ikkje tinga andre til deg." msgstr[1] "Kan ikkje tinga andre til deg." -#: lib/command.php:712 +#: lib/command.php:753 #, fuzzy msgid "You are not a member of any groups." msgstr "Du er ikkje medlem av den gruppa." -#: lib/command.php:714 +#: lib/command.php:755 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "Du er ikkje medlem av den gruppa." msgstr[1] "Du er ikkje medlem av den gruppa." -#: lib/command.php:728 +#: lib/command.php:769 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -4672,6 +5231,7 @@ msgid "" "d - direct message to user\n" "get - get last notice from user\n" "whois - get profile info on user\n" +"lose - force user to stop following you\n" "fav - add user's last notice as a 'fave'\n" "fav # - add notice with the given id as a 'fave'\n" "repeat # - repeat a notice with a given id\n" @@ -4699,20 +5259,20 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:131 +#: lib/common.php:136 #, fuzzy msgid "No configuration file found. " msgstr "Ingen stadfestingskode." -#: lib/common.php:132 +#: lib/common.php:137 msgid "I looked for configuration files in the following places: " msgstr "" -#: lib/common.php:134 +#: lib/common.php:139 msgid "You may wish to run the installer to fix this." msgstr "" -#: lib/common.php:135 +#: lib/common.php:140 #, fuzzy msgid "Go to the installer." msgstr "Logg inn or sida" @@ -4729,6 +5289,15 @@ msgstr "Oppdateringar over direktemeldingar (IM)" msgid "Updates by SMS" msgstr "Oppdateringar over SMS" +#: lib/connectsettingsaction.php:120 +#, fuzzy +msgid "Connections" +msgstr "Kopla til" + +#: lib/connectsettingsaction.php:121 +msgid "Authorized connected applications" +msgstr "" + #: lib/dberroraction.php:60 msgid "Database error" msgstr "" @@ -4916,12 +5485,12 @@ msgstr "" msgid "kB" msgstr "" -#: lib/jabber.php:202 +#: lib/jabber.php:220 #, php-format msgid "[%s]" msgstr "" -#: lib/jabber.php:385 +#: lib/jabber.php:400 #, php-format msgid "Unknown inbox source %d." msgstr "" @@ -5131,7 +5700,7 @@ msgid "" "users in conversation. People can send you messages for your eyes only." msgstr "" -#: lib/mailbox.php:227 lib/noticelist.php:477 +#: lib/mailbox.php:227 lib/noticelist.php:482 #, fuzzy msgid "from" msgstr " frå " @@ -5250,60 +5819,56 @@ msgid "Do not share my location" msgstr "Kan ikkje lagra merkelapp." #: lib/noticeform.php:216 -msgid "Hide this info" -msgstr "" - -#: lib/noticeform.php:217 msgid "" "Sorry, retrieving your geo location is taking longer than expected, please " "try again later" msgstr "" -#: lib/noticelist.php:428 +#: lib/noticelist.php:429 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "" -#: lib/noticelist.php:429 +#: lib/noticelist.php:430 #, fuzzy msgid "N" msgstr "Nei" -#: lib/noticelist.php:429 +#: lib/noticelist.php:430 msgid "S" msgstr "" -#: lib/noticelist.php:430 +#: lib/noticelist.php:431 msgid "E" msgstr "" -#: lib/noticelist.php:430 +#: lib/noticelist.php:431 msgid "W" msgstr "" -#: lib/noticelist.php:436 +#: lib/noticelist.php:438 msgid "at" msgstr "" -#: lib/noticelist.php:531 +#: lib/noticelist.php:558 #, fuzzy msgid "in context" msgstr "Ingen innhald." -#: lib/noticelist.php:556 +#: lib/noticelist.php:583 #, fuzzy msgid "Repeated by" msgstr "Lag" -#: lib/noticelist.php:585 +#: lib/noticelist.php:610 msgid "Reply to this notice" msgstr "Svar på denne notisen" -#: lib/noticelist.php:586 +#: lib/noticelist.php:611 msgid "Reply" msgstr "Svar" -#: lib/noticelist.php:628 +#: lib/noticelist.php:655 #, fuzzy msgid "Notice repeated" msgstr "Melding lagra" @@ -5337,12 +5902,7 @@ msgstr "Feil med å henta inn ekstern profil" msgid "Duplicate notice" msgstr "Slett notis" -#: lib/oauthstore.php:466 lib/subs.php:48 -#, fuzzy -msgid "You have been banned from subscribing." -msgstr "Brukaren tillet deg ikkje å tinga meldingane sine." - -#: lib/oauthstore.php:491 +#: lib/oauthstore.php:490 msgid "Couldn't insert new subscription." msgstr "Kan ikkje leggja til ny tinging." @@ -5358,19 +5918,19 @@ msgstr "Svar" msgid "Favorites" msgstr "Favorittar" -#: lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "Innboks" -#: lib/personalgroupnav.php:125 +#: lib/personalgroupnav.php:126 msgid "Your incoming messages" msgstr "Dine innkomande meldinger" -#: lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 msgid "Outbox" msgstr "Utboks" -#: lib/personalgroupnav.php:130 +#: lib/personalgroupnav.php:131 msgid "Your sent messages" msgstr "Dine sende meldingar" @@ -5452,6 +6012,10 @@ msgstr "Svar på denne notisen" msgid "Repeat this notice" msgstr "Svar på denne notisen" +#: lib/router.php:665 +msgid "No single user defined for single-user mode." +msgstr "" + #: lib/sandboxform.php:67 #, fuzzy msgid "Sandbox" @@ -5525,36 +6089,6 @@ msgstr "Mennesker som tingar %s" msgid "Groups %s is a member of" msgstr "Grupper %s er medlem av" -#: lib/subs.php:52 -msgid "Already subscribed!" -msgstr "" - -#: lib/subs.php:56 -msgid "User has blocked you." -msgstr "Brukar har blokkert deg." - -#: lib/subs.php:63 -msgid "Could not subscribe." -msgstr "Kan ikkje tinga." - -#: lib/subs.php:82 -msgid "Could not subscribe other to you." -msgstr "Kan ikkje tinga andre til deg." - -#: lib/subs.php:137 -#, fuzzy -msgid "Not subscribed!" -msgstr "Ikkje tinga." - -#: lib/subs.php:142 -#, fuzzy -msgid "Couldn't delete self-subscription." -msgstr "Kan ikkje sletta tinging." - -#: lib/subs.php:158 -msgid "Couldn't delete subscription." -msgstr "Kan ikkje sletta tinging." - #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -5608,68 +6142,68 @@ msgstr "Brukarbilete" msgid "User actions" msgstr "Brukarverkty" -#: lib/userprofile.php:248 +#: lib/userprofile.php:251 #, fuzzy msgid "Edit profile settings" msgstr "Profilinnstillingar" -#: lib/userprofile.php:249 +#: lib/userprofile.php:252 msgid "Edit" msgstr "" -#: lib/userprofile.php:272 +#: lib/userprofile.php:275 msgid "Send a direct message to this user" msgstr "Send ei direktemelding til denne brukaren" -#: lib/userprofile.php:273 +#: lib/userprofile.php:276 msgid "Message" msgstr "Melding" -#: lib/userprofile.php:311 +#: lib/userprofile.php:314 msgid "Moderate" msgstr "" -#: lib/util.php:877 +#: lib/util.php:952 msgid "a few seconds ago" msgstr "eit par sekund sidan" -#: lib/util.php:879 +#: lib/util.php:954 msgid "about a minute ago" msgstr "omtrent eitt minutt sidan" -#: lib/util.php:881 +#: lib/util.php:956 #, php-format msgid "about %d minutes ago" msgstr "~%d minutt sidan" -#: lib/util.php:883 +#: lib/util.php:958 msgid "about an hour ago" msgstr "omtrent ein time sidan" -#: lib/util.php:885 +#: lib/util.php:960 #, php-format msgid "about %d hours ago" msgstr "~%d timar sidan" -#: lib/util.php:887 +#: lib/util.php:962 msgid "about a day ago" msgstr "omtrent ein dag sidan" -#: lib/util.php:889 +#: lib/util.php:964 #, php-format msgid "about %d days ago" msgstr "~%d dagar sidan" -#: lib/util.php:891 +#: lib/util.php:966 msgid "about a month ago" msgstr "omtrent ein månad sidan" -#: lib/util.php:893 +#: lib/util.php:968 #, php-format msgid "about %d months ago" msgstr "~%d månadar sidan" -#: lib/util.php:895 +#: lib/util.php:970 msgid "about a year ago" msgstr "omtrent eitt år sidan" @@ -5683,7 +6217,7 @@ msgstr "Heimesida er ikkje ei gyldig internettadresse." msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "" -#: scripts/xmppdaemon.php:301 +#: lib/xmppmanager.php:402 #, fuzzy, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "Melding for lang - maksimum 140 teikn, du skreiv %d" diff --git a/locale/pl/LC_MESSAGES/statusnet.po b/locale/pl/LC_MESSAGES/statusnet.po index 9e8414dc19..79b37a5e4c 100644 --- a/locale/pl/LC_MESSAGES/statusnet.po +++ b/locale/pl/LC_MESSAGES/statusnet.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-01-13 22:04+0000\n" -"PO-Revision-Date: 2010-01-13 22:05:55+0000\n" +"POT-Creation-Date: 2010-02-24 23:49+0000\n" +"PO-Revision-Date: 2010-02-24 23:51:31+0000\n" "Last-Translator: Piotr Drąg \n" "Language-Team: Polish \n" "MIME-Version: 1.0\n" @@ -19,11 +19,63 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2);\n" -"X-Generator: MediaWiki 1.16alpha (r61027); Translate extension (2010-01-04)\n" +"X-Generator: MediaWiki 1.17alpha (r62925); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pl\n" "X-Message-Group: out-statusnet\n" +#: actions/accessadminpanel.php:54 lib/adminpanelaction.php:326 +msgid "Access" +msgstr "Dostęp" + +#: actions/accessadminpanel.php:65 +msgid "Site access settings" +msgstr "Ustawienia dostępu witryny" + +#: actions/accessadminpanel.php:158 +msgid "Registration" +msgstr "Rejestracja" + +#: actions/accessadminpanel.php:161 +msgid "Private" +msgstr "Prywatna" + +#: actions/accessadminpanel.php:163 +msgid "Prohibit anonymous users (not logged in) from viewing site?" +msgstr "Zabronić anonimowym użytkownikom (niezalogowanym) przeglądać witrynę?" + +#: actions/accessadminpanel.php:167 +msgid "Invite only" +msgstr "Tylko zaproszeni" + +#: actions/accessadminpanel.php:169 +msgid "Make registration invitation only." +msgstr "Rejestracja tylko za zaproszeniem." + +#: actions/accessadminpanel.php:173 +msgid "Closed" +msgstr "Zamknięte" + +#: actions/accessadminpanel.php:175 +msgid "Disable new registrations." +msgstr "Wyłączenie nowych rejestracji." + +#: actions/accessadminpanel.php:189 actions/designadminpanel.php:586 +#: actions/emailsettings.php:195 actions/imsettings.php:163 +#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 +#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 +#: actions/siteadminpanel.php:336 actions/smssettings.php:181 +#: actions/subscriptions.php:208 actions/tagother.php:154 +#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 lib/designsettings.php:256 +#: lib/groupeditform.php:202 +msgid "Save" +msgstr "Zapisz" + +#: actions/accessadminpanel.php:189 +msgid "Save access settings" +msgstr "Zapisz ustawienia dostępu" + #: actions/all.php:63 actions/public.php:97 actions/replies.php:92 #: actions/showfavorites.php:137 actions/tag.php:51 msgid "No such page" @@ -38,25 +90,29 @@ msgstr "Nie ma takiej strony" #: 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:144 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apistatusesupdate.php:148 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:78 #: actions/apitimelinehome.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/otp.php:76 #: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154 -#: actions/replies.php:73 actions/repliesrss.php:38 +#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 #: 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:302 lib/command.php:355 #: lib/command.php:401 lib/command.php:462 lib/command.php:518 #: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 -#: lib/subs.php:34 lib/subs.php:125 msgid "No such user." msgstr "Brak takiego użytkownika." +#: actions/all.php:84 +#, php-format +msgid "%1$s and friends, page %2$d" +msgstr "%1$s i przyjaciele, strona %2$d" + #: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 -#: actions/apitimelinefriends.php:115 actions/apitimelinehome.php:115 +#: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" @@ -104,7 +160,7 @@ msgstr "" "[wysłać coś wymagającego jego uwagi](%%%%action.newnotice%%%%?" "status_textarea=%3$s)." -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211 #, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " @@ -117,8 +173,8 @@ msgstr "" msgid "You and friends" msgstr "Ty i przyjaciele" -#: actions/allrss.php:119 actions/apitimelinefriends.php:122 -#: actions/apitimelinehome.php:122 +#: actions/allrss.php:119 actions/apitimelinefriends.php:119 +#: actions/apitimelinehome.php:120 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Aktualizacje z %1$s i przyjaciół na %2$s." @@ -128,23 +184,23 @@ msgstr "Aktualizacje z %1$s i przyjaciół na %2$s." #: actions/apiaccountupdateprofile.php:97 #: actions/apiaccountupdateprofilebackgroundimage.php:94 #: actions/apiaccountupdateprofilecolors.php:118 -#: 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:136 actions/apigroupismember.php:114 -#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 -#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 -#: actions/apigroupmembership.php:106 actions/apigroupshow.php:105 -#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 -#: actions/apistatusesretweets.php:112 actions/apistatusesshow.php:108 -#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93 -#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:146 -#: actions/apitimelinefriends.php:156 actions/apitimelinegroup.php:150 -#: actions/apitimelinehome.php:156 actions/apitimelinementions.php:151 -#: actions/apitimelinepublic.php:131 actions/apitimelineretweetedbyme.php:122 +#: actions/apiaccountverifycredentials.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:128 actions/apigroupcreate.php:136 +#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 +#: actions/apigroupleave.php:141 actions/apigrouplist.php:132 +#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 +#: actions/apigroupshow.php:115 actions/apihelptest.php:88 +#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 +#: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 #: actions/apitimelineretweetedtome.php:121 -#: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141 -#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 +#: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 +#: actions/apitimelineuser.php:207 actions/apiusershow.php:101 msgid "API method not found." msgstr "Nie odnaleziono metody API." @@ -158,7 +214,7 @@ msgstr "Nie odnaleziono metody API." #: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 #: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 #: actions/apigroupleave.php:91 actions/apistatusesretweet.php:65 -#: actions/apistatusesupdate.php:114 +#: actions/apistatusesupdate.php:118 msgid "This method requires a POST." msgstr "Ta metoda wymaga POST." @@ -188,8 +244,9 @@ msgstr "Nie można zapisać profilu." #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:97 -#: actions/apistatusesupdate.php:127 actions/avatarsettings.php:257 -#: actions/designadminpanel.php:122 actions/newnotice.php:94 +#: actions/apistatusesupdate.php:131 actions/avatarsettings.php:257 +#: actions/designadminpanel.php:122 actions/editapplication.php:118 +#: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 #, php-format msgid "" @@ -308,11 +365,11 @@ msgstr "Nie można zrezygnować z obserwacji samego siebie." msgid "Two user ids or screen_names must be supplied." msgstr "Należy dostarczyć dwa identyfikatory lub nazwy użytkowników." -#: actions/apifriendshipsshow.php:135 +#: actions/apifriendshipsshow.php:134 msgid "Could not determine source user." msgstr "Nie można określić użytkownika źródłowego." -#: actions/apifriendshipsshow.php:143 +#: actions/apifriendshipsshow.php:142 msgid "Could not find target user." msgstr "Nie można odnaleźć użytkownika docelowego." @@ -334,7 +391,8 @@ msgstr "Pseudonim jest już używany. Spróbuj innego." msgid "Not a valid nickname." msgstr "To nie jest prawidłowy pseudonim." -#: actions/apigroupcreate.php:196 actions/editgroup.php:195 +#: actions/apigroupcreate.php:196 actions/editapplication.php:215 +#: actions/editgroup.php:195 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:217 msgid "Homepage is not a valid URL." @@ -346,7 +404,8 @@ msgstr "Strona domowa nie jest prawidłowym adresem URL." msgid "Full name is too long (max 255 chars)." msgstr "Imię i nazwisko jest za długie (maksymalnie 255 znaków)." -#: actions/apigroupcreate.php:213 +#: actions/apigroupcreate.php:213 actions/editapplication.php:190 +#: actions/newapplication.php:172 #, php-format msgid "Description is too long (max %d chars)." msgstr "Opis jest za długi (maksymalnie %d znaków)." @@ -382,7 +441,7 @@ msgstr "Alias nie może być taki sam jak pseudonim." #: actions/apigroupismember.php:95 actions/apigroupjoin.php:104 #: actions/apigroupleave.php:104 actions/apigroupmembership.php:91 -#: actions/apigroupshow.php:90 actions/apitimelinegroup.php:91 +#: actions/apigroupshow.php:82 actions/apitimelinegroup.php:91 msgid "Group not found!" msgstr "Nie odnaleziono grupy." @@ -423,6 +482,114 @@ msgstr "Grupy %s" msgid "groups on %s" msgstr "grupy na %s" +#: actions/apioauthauthorize.php:101 +msgid "No oauth_token parameter provided." +msgstr "Nie podano parametru oauth_token." + +#: actions/apioauthauthorize.php:106 +msgid "Invalid token." +msgstr "Nieprawidłowy token." + +#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 +#: actions/deletenotice.php:157 actions/disfavor.php:74 +#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54 +#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupunblock.php:66 actions/imsettings.php:206 +#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 +#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 +#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135 +#: actions/othersettings.php:145 actions/passwordsettings.php:138 +#: actions/profilesettings.php:194 actions/recoverpassword.php:337 +#: actions/register.php:165 actions/remotesubscribe.php:77 +#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 +#: actions/subscribe.php:86 actions/tagother.php:166 +#: 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/apioauthauthorize.php:135 +msgid "Invalid nickname / password!" +msgstr "Nieprawidłowy pseudonim/hasło." + +#: actions/apioauthauthorize.php:159 +msgid "Database error deleting OAuth application user." +msgstr "Błąd bazy danych podczas usuwania użytkownika aplikacji OAuth." + +#: actions/apioauthauthorize.php:185 +msgid "Database error inserting OAuth application user." +msgstr "Błąd bazy danych podczas wprowadzania użytkownika aplikacji OAuth." + +#: actions/apioauthauthorize.php:214 +#, php-format +msgid "" +"The request token %s has been authorized. Please exchange it for an access " +"token." +msgstr "" +"Token żądania %s został upoważniony. Proszę wymienić go na token dostępu." + +#: actions/apioauthauthorize.php:227 +#, php-format +msgid "The request token %s has been denied and revoked." +msgstr "Token żądania %s został odrzucony lub unieważniony." + +#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 +#: actions/designadminpanel.php:103 actions/editapplication.php:139 +#: actions/emailsettings.php:256 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/newapplication.php:121 +#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 +#: actions/smssettings.php:248 lib/designsettings.php:304 +msgid "Unexpected form submission." +msgstr "Nieoczekiwane wysłanie formularza." + +#: actions/apioauthauthorize.php:259 +msgid "An application would like to connect to your account" +msgstr "Aplikacja chce połączyć się z kontem użytkownika" + +#: actions/apioauthauthorize.php:276 +msgid "Allow or deny access" +msgstr "Zezwolić czy odmówić dostęp" + +#: actions/apioauthauthorize.php:292 +#, php-format +msgid "" +"The application %1$s by %2$s would like " +"the ability to %3$s your %4$s account data. You should only " +"give access to your %4$s account to third parties you trust." +msgstr "" +"Aplikacja %1$s autorstwa %2$s chciałaby " +"uzyskać możliwość %3$s danych konta %4$s. Dostęp do konta %4" +"$s powinien być udostępniany tylko zaufanym osobom trzecim." + +#: actions/apioauthauthorize.php:310 lib/action.php:441 +msgid "Account" +msgstr "Konto" + +#: actions/apioauthauthorize.php:313 actions/login.php:230 +#: actions/profilesettings.php:106 actions/register.php:424 +#: actions/showgroup.php:236 actions/tagother.php:94 +#: actions/userauthorization.php:145 lib/groupeditform.php:152 +#: lib/userprofile.php:131 +msgid "Nickname" +msgstr "Pseudonim" + +#: actions/apioauthauthorize.php:316 actions/login.php:233 +#: actions/register.php:429 lib/accountsettingsaction.php:116 +msgid "Password" +msgstr "Hasło" + +#: actions/apioauthauthorize.php:328 +msgid "Deny" +msgstr "Odrzuć" + +#: actions/apioauthauthorize.php:334 +msgid "Allow" +msgstr "Zezwól" + +#: actions/apioauthauthorize.php:351 +msgid "Allow or deny access to your account information." +msgstr "Zezwól lub odmów dostęp do informacji konta." + #: actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." msgstr "Ta metoda wymaga POST lub DELETE." @@ -452,17 +619,17 @@ msgstr "Usunięto stan." msgid "No status with that ID found." msgstr "Nie odnaleziono stanów z tym identyfikatorem." -#: actions/apistatusesupdate.php:157 actions/newnotice.php:155 +#: actions/apistatusesupdate.php:161 actions/newnotice.php:155 #: lib/mailhandler.php:60 #, php-format msgid "That's too long. Max notice size is %d chars." msgstr "Wpis jest za długi. Maksymalna długość wynosi %d znaków." -#: actions/apistatusesupdate.php:198 +#: actions/apistatusesupdate.php:202 msgid "Not found" msgstr "Nie odnaleziono" -#: actions/apistatusesupdate.php:221 actions/newnotice.php:178 +#: actions/apistatusesupdate.php:225 actions/newnotice.php:178 #, php-format msgid "Max notice size is %d chars, including attachment URL." msgstr "Maksymalny rozmiar wpisu wynosi %d znaków, w tym adres URL załącznika." @@ -476,7 +643,7 @@ msgstr "Nieobsługiwany format." msgid "%1$s / Favorites from %2$s" msgstr "%1$s/ulubione wpisy od %2$s" -#: actions/apitimelinefavorites.php:120 +#: actions/apitimelinefavorites.php:117 #, php-format msgid "%1$s updates favorited by %2$s / %2$s." msgstr "Użytkownik %1$s aktualizuje ulubione według %2$s/%2$s." @@ -487,7 +654,7 @@ msgstr "Użytkownik %1$s aktualizuje ulubione według %2$s/%2$s." msgid "%s timeline" msgstr "Oś czasu użytkownika %s" -#: actions/apitimelinegroup.php:117 actions/apitimelineuser.php:126 +#: actions/apitimelinegroup.php:114 actions/apitimelineuser.php:126 #: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" @@ -503,27 +670,22 @@ msgstr "%1$s/aktualizacje wspominające %2$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/apitimelinepublic.php:107 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "Publiczna oś czasu użytkownika %s" -#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "Użytkownik %s aktualizuje od każdego." -#: actions/apitimelineretweetedbyme.php:112 -#, php-format -msgid "Repeated by %s" -msgstr "Powtórzone przez użytkownika %s" - #: actions/apitimelineretweetedtome.php:111 #, php-format msgid "Repeated to %s" msgstr "Powtórzone dla %s" -#: actions/apitimelineretweetsofme.php:112 +#: actions/apitimelineretweetsofme.php:114 #, php-format msgid "Repeats of %s" msgstr "Powtórzenia %s" @@ -533,7 +695,7 @@ msgstr "Powtórzenia %s" msgid "Notices tagged with %s" msgstr "Wpisy ze znacznikiem %s" -#: actions/apitimelinetag.php:108 actions/tagrss.php:64 +#: actions/apitimelinetag.php:104 actions/tagrss.php:64 #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Aktualizacje ze znacznikiem %1$s na %2$s." @@ -593,8 +755,8 @@ msgstr "Oryginał" msgid "Preview" msgstr "Podgląd" -#: actions/avatarsettings.php:149 lib/deleteuserform.php:66 -#: lib/noticelist.php:611 +#: actions/avatarsettings.php:149 actions/showapplication.php:252 +#: lib/deleteuserform.php:66 lib/noticelist.php:637 msgid "Delete" msgstr "Usuń" @@ -606,29 +768,6 @@ msgstr "Wyślij" msgid "Crop" msgstr "Przytnij" -#: actions/avatarsettings.php:268 actions/deletenotice.php:157 -#: actions/disfavor.php:74 actions/emailsettings.php:238 actions/favor.php:75 -#: actions/geocode.php:50 actions/groupblock.php:66 actions/grouplogo.php:309 -#: actions/groupunblock.php:66 actions/imsettings.php:206 -#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 -#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 -#: actions/othersettings.php:145 actions/passwordsettings.php:138 -#: actions/profilesettings.php:194 actions/recoverpassword.php:337 -#: actions/register.php:165 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 -#: actions/subscribe.php:46 actions/tagother.php:166 -#: 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/avatarsettings.php:281 actions/designadminpanel.php:103 -#: actions/emailsettings.php:256 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/avatarsettings.php:328 msgid "Pick a square area of the image to be your avatar" msgstr "Wybierz kwadratowy obszar obrazu do awatara" @@ -667,8 +806,9 @@ msgstr "" "do ciebie zostanie usunięta, nie będzie mógł cię subskrybować w przyszłości " "i nie będziesz powiadamiany o żadnych odpowiedziach @ od niego." -#: actions/block.php:143 actions/deletenotice.php:145 -#: actions/deleteuser.php:147 actions/groupblock.php:178 +#: actions/block.php:143 actions/deleteapplication.php:153 +#: actions/deletenotice.php:145 actions/deleteuser.php:147 +#: actions/groupblock.php:178 msgid "No" msgstr "Nie" @@ -676,13 +816,13 @@ msgstr "Nie" msgid "Do not block this user" msgstr "Nie blokuj tego użytkownika" -#: actions/block.php:144 actions/deletenotice.php:146 -#: actions/deleteuser.php:148 actions/groupblock.php:179 -#: lib/repeatform.php:132 +#: actions/block.php:144 actions/deleteapplication.php:158 +#: actions/deletenotice.php:146 actions/deleteuser.php:148 +#: actions/groupblock.php:179 lib/repeatform.php:132 msgid "Yes" msgstr "Tak" -#: actions/block.php:144 actions/groupmembers.php:346 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80 msgid "Block this user" msgstr "Zablokuj tego użytkownika" @@ -765,7 +905,7 @@ msgid "Couldn't delete email confirmation." msgstr "Nie można usunąć potwierdzenia adresu e-mail." #: actions/confirmaddress.php:144 -msgid "Confirm Address" +msgid "Confirm address" msgstr "Potwierdź adres" #: actions/confirmaddress.php:159 @@ -782,10 +922,50 @@ msgstr "Rozmowa" msgid "Notices" msgstr "Wpisy" +#: actions/deleteapplication.php:63 +msgid "You must be logged in to delete an application." +msgstr "Musisz być zalogowany, aby usunąć aplikację." + +#: actions/deleteapplication.php:71 +msgid "Application not found." +msgstr "Nie odnaleziono aplikacji." + +#: actions/deleteapplication.php:78 actions/editapplication.php:77 +#: actions/showapplication.php:94 +msgid "You are not the owner of this application." +msgstr "Nie jesteś właścicielem tej aplikacji." + +#: actions/deleteapplication.php:102 actions/editapplication.php:127 +#: actions/newapplication.php:110 actions/showapplication.php:118 +#: lib/action.php:1197 +msgid "There was a problem with your session token." +msgstr "Wystąpił problem z tokenem sesji." + +#: actions/deleteapplication.php:123 actions/deleteapplication.php:147 +msgid "Delete application" +msgstr "Usuń aplikację" + +#: actions/deleteapplication.php:149 +msgid "" +"Are you sure you want to delete this application? This will clear all data " +"about the application from the database, including all existing user " +"connections." +msgstr "" +"Na pewno usunąć tę aplikację? Wyczyści to wszystkie dane o aplikacji z bazy " +"danych, w tym wszystkie istniejące połączenia użytkowników." + +#: actions/deleteapplication.php:156 +msgid "Do not delete this application" +msgstr "Nie usuwaj tej aplikacji" + +#: actions/deleteapplication.php:160 +msgid "Delete this application" +msgstr "Usuń tę aplikację" + #: 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/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 #: lib/adminpanelaction.php:72 lib/profileformaction.php:63 #: lib/settingsaction.php:72 @@ -816,7 +996,7 @@ msgstr "Jesteś pewien, że chcesz usunąć ten wpis?" msgid "Do not delete this notice" msgstr "Nie usuwaj tego wpisu" -#: actions/deletenotice.php:146 lib/noticelist.php:611 +#: actions/deletenotice.php:146 lib/noticelist.php:637 msgid "Delete this notice" msgstr "Usuń ten wpis" @@ -851,7 +1031,7 @@ msgstr "Wygląd" #: actions/designadminpanel.php:73 msgid "Design settings for this StatusNet site." -msgstr "Ustawienia wyglądu tej strony StatusNet." +msgstr "Ustawienia wyglądu tej witryny StatusNet." #: actions/designadminpanel.php:275 msgid "Invalid logo URL." @@ -868,7 +1048,7 @@ msgstr "Zmień logo" #: actions/designadminpanel.php:380 msgid "Site logo" -msgstr "Logo strony" +msgstr "Logo witryny" #: actions/designadminpanel.php:387 msgid "Change theme" @@ -876,11 +1056,11 @@ msgstr "Zmień motyw" #: actions/designadminpanel.php:404 msgid "Site theme" -msgstr "Motyw strony" +msgstr "Motyw witryny" #: actions/designadminpanel.php:405 msgid "Theme for the site." -msgstr "Motyw strony." +msgstr "Motyw witryny." #: actions/designadminpanel.php:417 lib/designsettings.php:101 msgid "Change background image" @@ -896,7 +1076,7 @@ msgstr "Tło" msgid "" "You can upload a background image for the site. The maximum file size is %1" "$s." -msgstr "Można wysłać obraz tła dla strony. Maksymalny rozmiar pliku to %1$s." +msgstr "Można wysłać obraz tła dla witryny. Maksymalny rozmiar pliku to %1$s." #: actions/designadminpanel.php:457 lib/designsettings.php:139 msgid "On" @@ -946,16 +1126,6 @@ msgstr "Przywróć domyślny wygląd" msgid "Reset back to default" msgstr "Przywróć domyślne ustawienia" -#: actions/designadminpanel.php:586 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 -#: actions/pathsadminpanel.php:324 actions/profilesettings.php:174 -#: actions/siteadminpanel.php:388 actions/smssettings.php:181 -#: actions/subscriptions.php:203 actions/tagother.php:154 -#: actions/useradminpanel.php:313 lib/designsettings.php:256 -#: lib/groupeditform.php:202 -msgid "Save" -msgstr "Zapisz" - #: actions/designadminpanel.php:587 lib/designsettings.php:257 msgid "Save design" msgstr "Zapisz wygląd" @@ -968,9 +1138,75 @@ msgstr "Ten wpis nie jest ulubiony." msgid "Add to favorites" msgstr "Dodaj do ulubionych" -#: actions/doc.php:69 -msgid "No such document." -msgstr "Nie ma takiego dokumentu." +#: actions/doc.php:158 +#, php-format +msgid "No such document \"%s\"" +msgstr "Nie ma takiego dokumentu \\\"%s\\\"" + +#: actions/editapplication.php:54 +msgid "Edit Application" +msgstr "Zmodyfikuj aplikację" + +#: actions/editapplication.php:66 +msgid "You must be logged in to edit an application." +msgstr "Musisz być zalogowany, aby zmodyfikować aplikację." + +#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:166 +#: actions/showapplication.php:87 +msgid "No such application." +msgstr "Nie ma takiej aplikacji." + +#: actions/editapplication.php:161 +msgid "Use this form to edit your application." +msgstr "Użyj tego formularza, aby zmodyfikować aplikację." + +#: actions/editapplication.php:177 actions/newapplication.php:159 +msgid "Name is required." +msgstr "Nazwa jest wymagana." + +#: actions/editapplication.php:180 actions/newapplication.php:165 +msgid "Name is too long (max 255 chars)." +msgstr "Nazwa jest za długa (maksymalnie 255 znaków)." + +#: actions/editapplication.php:183 actions/newapplication.php:162 +msgid "Name already in use. Try another one." +msgstr "Nazwa jest już używana. Spróbuj innej." + +#: actions/editapplication.php:186 actions/newapplication.php:168 +msgid "Description is required." +msgstr "Opis jest wymagany." + +#: actions/editapplication.php:194 +msgid "Source URL is too long." +msgstr "Źródłowy adres URL jest za długi." + +#: actions/editapplication.php:200 actions/newapplication.php:185 +msgid "Source URL is not valid." +msgstr "Źródłowy adres URL jest nieprawidłowy." + +#: actions/editapplication.php:203 actions/newapplication.php:188 +msgid "Organization is required." +msgstr "Organizacja jest wymagana." + +#: actions/editapplication.php:206 actions/newapplication.php:191 +msgid "Organization is too long (max 255 chars)." +msgstr "Organizacja jest za długa (maksymalnie 255 znaków)." + +#: actions/editapplication.php:209 actions/newapplication.php:194 +msgid "Organization homepage is required." +msgstr "Strona domowa organizacji jest wymagana." + +#: actions/editapplication.php:218 actions/newapplication.php:206 +msgid "Callback is too long." +msgstr "Adres zwrotny jest za długi." + +#: actions/editapplication.php:225 actions/newapplication.php:215 +msgid "Callback URL is not valid." +msgstr "Adres zwrotny URL jest nieprawidłowy." + +#: actions/editapplication.php:258 +msgid "Could not update application." +msgstr "Nie można zaktualizować aplikacji." #: actions/editgroup.php:56 #, php-format @@ -999,7 +1235,7 @@ msgstr "opis jest za długi (maksymalnie %d znaków)." msgid "Could not update group." msgstr "Nie można zaktualizować grupy." -#: actions/editgroup.php:259 classes/User_group.php:390 +#: actions/editgroup.php:259 classes/User_group.php:433 msgid "Could not create aliases." msgstr "Nie można utworzyć aliasów." @@ -1041,7 +1277,8 @@ msgstr "" "instrukcjami." #: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 +#: actions/smssettings.php:126 lib/applicationeditform.php:331 +#: lib/applicationeditform.php:332 msgid "Cancel" msgstr "Anuluj" @@ -1121,7 +1358,7 @@ msgid "Cannot normalize that email address" msgstr "Nie można znormalizować tego adresu e-mail" #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:157 +#: actions/siteadminpanel.php:143 msgid "Not a valid email address." msgstr "To nie jest prawidłowy adres e-mail." @@ -1133,7 +1370,7 @@ msgstr "Ten adres e-mail jest już twój." msgid "That email address already belongs to another user." msgstr "Ten adres e-mail należy już do innego użytkownika." -#: actions/emailsettings.php:353 actions/imsettings.php:317 +#: actions/emailsettings.php:353 actions/imsettings.php:319 #: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." msgstr "Nie można wprowadzić kodu potwierdzającego." @@ -1195,7 +1432,7 @@ msgstr "Ten wpis jest już ulubiony." msgid "Disfavor favorite" msgstr "Usuń wpis z ulubionych" -#: actions/favorited.php:65 lib/popularnoticesection.php:88 +#: actions/favorited.php:65 lib/popularnoticesection.php:91 #: lib/publicgroupnav.php:93 msgid "Popular notices" msgstr "Popularne wpisy" @@ -1207,7 +1444,7 @@ msgstr "Popularne wpisy, strona %d" #: actions/favorited.php:79 msgid "The most popular notices on the site right now." -msgstr "Najpopularniejsze wpisy na stronie w te chwili." +msgstr "Najpopularniejsze wpisy na witrynie w te chwili." #: actions/favorited.php:150 msgid "Favorite notices appear on this page but no one has favorited one yet." @@ -1343,7 +1580,7 @@ msgstr "Użytkownik został już zablokował w grupie." msgid "User is not a member of group." msgstr "Użytkownik nie jest członkiem grupy." -#: actions/groupblock.php:136 actions/groupmembers.php:314 +#: actions/groupblock.php:136 actions/groupmembers.php:316 msgid "Block user from group" msgstr "Zablokuj użytkownika w grupie" @@ -1437,23 +1674,23 @@ msgstr "Członkowie grupy %1$s, strona %2$d" msgid "A list of the users in this group." msgstr "Lista użytkowników znajdujących się w tej grupie." -#: actions/groupmembers.php:175 lib/action.php:442 lib/groupnav.php:107 +#: actions/groupmembers.php:175 lib/action.php:448 lib/groupnav.php:107 msgid "Admin" msgstr "Administrator" -#: actions/groupmembers.php:346 lib/blockform.php:69 +#: actions/groupmembers.php:348 lib/blockform.php:69 msgid "Block" msgstr "Zablokuj" -#: actions/groupmembers.php:441 +#: actions/groupmembers.php:443 msgid "Make user an admin of the group" msgstr "Uczyń użytkownika administratorem grupy" -#: actions/groupmembers.php:473 +#: actions/groupmembers.php:475 msgid "Make Admin" msgstr "Uczyń administratorem" -#: actions/groupmembers.php:473 +#: actions/groupmembers.php:475 msgid "Make this user an admin" msgstr "Uczyń tego użytkownika administratorem" @@ -1633,6 +1870,11 @@ msgstr "" msgid "That is not your Jabber ID." msgstr "To nie jest twój identyfikator Jabbera." +#: actions/inbox.php:59 +#, php-format +msgid "Inbox for %1$s - page %2$d" +msgstr "Odebrane wiadomości użytkownika %1$s - strona %2$d" + #: actions/inbox.php:62 #, php-format msgid "Inbox for %s" @@ -1691,7 +1933,7 @@ msgid "" "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." +"się na witrynie. Dziękujemy za pomoc w zwiększaniu społeczności." #: actions/invite.php:162 msgid "" @@ -1716,7 +1958,7 @@ msgstr "Osobista wiadomość" msgid "Optionally add a personal message to the invitation." msgstr "Opcjonalnie dodaj osobistą wiadomość do zaproszenia." -#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:237 +#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:236 msgid "Send" msgstr "Wyślij" @@ -1816,25 +2058,14 @@ msgstr "Niepoprawna nazwa użytkownika lub hasło." msgid "Error setting user. You are probably not authorized." msgstr "Błąd podczas ustawiania użytkownika. Prawdopodobnie brak upoważnienia." -#: actions/login.php:188 actions/login.php:241 lib/action.php:460 +#: actions/login.php:188 actions/login.php:241 lib/action.php:466 #: lib/logingroupnav.php:79 msgid "Login" msgstr "Zaloguj się" #: actions/login.php:227 msgid "Login to site" -msgstr "Zaloguj się na stronie" - -#: actions/login.php:230 actions/profilesettings.php:106 -#: actions/register.php:424 actions/showgroup.php:236 actions/tagother.php:94 -#: lib/groupeditform.php:152 lib/userprofile.php:131 -msgid "Nickname" -msgstr "Pseudonim" - -#: actions/login.php:233 actions/register.php:429 -#: lib/accountsettingsaction.php:116 -msgid "Password" -msgstr "Hasło" +msgstr "Zaloguj się na witrynie" #: actions/login.php:236 actions/register.php:478 msgid "Remember me" @@ -1867,21 +2098,21 @@ msgstr "" "Zaloguj się za pomocą nazwy użytkownika i hasła. Nie masz ich jeszcze? " "[Zarejestruj](%%action.register%%) nowe konto." -#: actions/makeadmin.php:91 +#: actions/makeadmin.php:92 msgid "Only an admin can make another user an admin." msgstr "Tylko administrator może uczynić innego użytkownika administratorem." -#: actions/makeadmin.php:95 +#: actions/makeadmin.php:96 #, php-format msgid "%1$s is already an admin for group \"%2$s\"." msgstr "Użytkownika %1$s jest już administratorem grupy \"%2$s\"." -#: actions/makeadmin.php:132 +#: actions/makeadmin.php:133 #, php-format msgid "Can't get membership record for %1$s in group %2$s." msgstr "Nie można uzyskać wpisu członkostwa użytkownika %1$s w grupie %2$s." -#: actions/makeadmin.php:145 +#: actions/makeadmin.php:146 #, php-format msgid "Can't make %1$s an admin for group %2$s." msgstr "Nie można uczynić %1$s administratorem grupy %2$s." @@ -1890,6 +2121,26 @@ msgstr "Nie można uczynić %1$s administratorem grupy %2$s." msgid "No current status" msgstr "Brak obecnego stanu" +#: actions/newapplication.php:52 +msgid "New Application" +msgstr "Nowa aplikacja" + +#: actions/newapplication.php:64 +msgid "You must be logged in to register an application." +msgstr "Musisz być zalogowany, aby zarejestrować aplikację." + +#: actions/newapplication.php:143 +msgid "Use this form to register a new application." +msgstr "Użyj tego formularza, aby zarejestrować aplikację." + +#: actions/newapplication.php:176 +msgid "Source URL is required." +msgstr "Źródłowy adres URL jest wymagany." + +#: actions/newapplication.php:258 actions/newapplication.php:267 +msgid "Could not create application." +msgstr "Nie można utworzyć aplikacji." + #: actions/newgroup.php:53 msgid "New group" msgstr "Nowa grupa" @@ -2003,6 +2254,48 @@ msgstr "Wysłano szturchnięcie" msgid "Nudge sent!" msgstr "Wysłano szturchnięcie." +#: actions/oauthappssettings.php:59 +msgid "You must be logged in to list your applications." +msgstr "Musisz być zalogowany, aby wyświetlić listę aplikacji." + +#: actions/oauthappssettings.php:74 +msgid "OAuth applications" +msgstr "Aplikacje OAuth" + +#: actions/oauthappssettings.php:85 +msgid "Applications you have registered" +msgstr "Zarejestrowane aplikacje" + +#: actions/oauthappssettings.php:135 +#, php-format +msgid "You have not registered any applications yet." +msgstr "Nie zarejestrowano jeszcze żadnych aplikacji." + +#: actions/oauthconnectionssettings.php:72 +msgid "Connected applications" +msgstr "Połączone aplikacje" + +#: actions/oauthconnectionssettings.php:83 +msgid "You have allowed the following applications to access you account." +msgstr "Zezwolono następującym aplikacjom na dostęp do konta." + +#: actions/oauthconnectionssettings.php:175 +msgid "You are not a user of that application." +msgstr "Nie jesteś użytkownikiem tej aplikacji." + +#: actions/oauthconnectionssettings.php:186 +msgid "Unable to revoke access for app: " +msgstr "Nie można unieważnić dostępu dla aplikacji: " + +#: actions/oauthconnectionssettings.php:198 +#, php-format +msgid "You have not authorized any applications to use your account." +msgstr "Nie upoważniono żadnych aplikacji do używania konta." + +#: actions/oauthconnectionssettings.php:211 +msgid "Developers can edit the registration settings for their applications " +msgstr "Programiści mogą zmodyfikować ustawienia rejestracji swoich aplikacji " + #: actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" msgstr "Wpis nie posiada profilu" @@ -2020,8 +2313,8 @@ msgstr "typ zawartości " msgid "Only " msgstr "Tylko " -#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1033 -#: lib/api.php:1061 lib/api.php:1171 +#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 +#: lib/api.php:1068 lib/api.php:1177 msgid "Not a supported data format." msgstr "To nie jest obsługiwany format danych." @@ -2034,7 +2327,7 @@ msgid "Notice Search" msgstr "Wyszukiwanie wpisów" #: actions/othersettings.php:60 -msgid "Other Settings" +msgid "Other settings" msgstr "Inne ustawienia" #: actions/othersettings.php:71 @@ -2085,6 +2378,11 @@ msgstr "Podano nieprawidłowy token logowania." msgid "Login token expired." msgstr "Token logowania wygasł." +#: actions/outbox.php:58 +#, php-format +msgid "Outbox for %1$s - page %2$d" +msgstr "Wysłane wiadomości użytkownika %1$s - strona %2$d" + #: actions/outbox.php:61 #, php-format msgid "Outbox for %s" @@ -2155,140 +2453,158 @@ msgstr "Nie można zapisać nowego hasła." msgid "Password saved." msgstr "Zapisano hasło." -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:326 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:331 msgid "Paths" msgstr "Ścieżki" #: actions/pathsadminpanel.php:70 msgid "Path and server settings for this StatusNet site." -msgstr "Ustawienia ścieżki i serwera dla tej strony StatusNet." +msgstr "Ustawienia ścieżki i serwera dla tej witryny StatusNet." -#: actions/pathsadminpanel.php:140 +#: actions/pathsadminpanel.php:157 #, php-format msgid "Theme directory not readable: %s" msgstr "Katalog motywu jest nieczytelny: %s" -#: actions/pathsadminpanel.php:146 +#: actions/pathsadminpanel.php:163 #, php-format msgid "Avatar directory not writable: %s" msgstr "Katalog awatara jest niezapisywalny: %s" -#: actions/pathsadminpanel.php:152 +#: actions/pathsadminpanel.php:169 #, php-format msgid "Background directory not writable: %s" msgstr "Katalog tła jest niezapisywalny: %s" -#: actions/pathsadminpanel.php:160 +#: actions/pathsadminpanel.php:177 #, php-format msgid "Locales directory not readable: %s" msgstr "Katalog lokalizacji jest nieczytelny: %s" -#: actions/pathsadminpanel.php:166 +#: actions/pathsadminpanel.php:183 msgid "Invalid SSL server. The maximum length is 255 characters." msgstr "Nieprawidłowy serwer SSL. Maksymalna długość to 255 znaków." -#: actions/pathsadminpanel.php:217 actions/siteadminpanel.php:58 +#: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58 #: lib/adminpanelaction.php:311 msgid "Site" -msgstr "Strona" +msgstr "Witryny" -#: actions/pathsadminpanel.php:221 +#: actions/pathsadminpanel.php:238 +msgid "Server" +msgstr "Serwer" + +#: actions/pathsadminpanel.php:238 +msgid "Site's server hostname." +msgstr "Nazwa komputera serwera strony." + +#: actions/pathsadminpanel.php:242 msgid "Path" msgstr "Ścieżka" -#: actions/pathsadminpanel.php:221 +#: actions/pathsadminpanel.php:242 msgid "Site path" -msgstr "Ścieżka do strony" +msgstr "Ścieżka do witryny" -#: actions/pathsadminpanel.php:225 +#: actions/pathsadminpanel.php:246 msgid "Path to locales" msgstr "Ścieżka do lokalizacji" -#: actions/pathsadminpanel.php:225 +#: actions/pathsadminpanel.php:246 msgid "Directory path to locales" msgstr "Ścieżka do katalogu lokalizacji" -#: actions/pathsadminpanel.php:232 +#: actions/pathsadminpanel.php:250 +msgid "Fancy URLs" +msgstr "Eleganckie adresu URL" + +#: actions/pathsadminpanel.php:252 +msgid "Use fancy (more readable and memorable) URLs?" +msgstr "" +"Używać eleganckich (bardziej czytelnych i łatwiejszych do zapamiętania) " +"adresów URL?" + +#: actions/pathsadminpanel.php:259 msgid "Theme" msgstr "Motyw" -#: actions/pathsadminpanel.php:237 +#: actions/pathsadminpanel.php:264 msgid "Theme server" msgstr "Serwer motywu" -#: actions/pathsadminpanel.php:241 +#: actions/pathsadminpanel.php:268 msgid "Theme path" msgstr "Ścieżka do motywu" -#: actions/pathsadminpanel.php:245 +#: actions/pathsadminpanel.php:272 msgid "Theme directory" msgstr "Katalog motywu" -#: actions/pathsadminpanel.php:252 +#: actions/pathsadminpanel.php:279 msgid "Avatars" msgstr "Awatary" -#: actions/pathsadminpanel.php:257 +#: actions/pathsadminpanel.php:284 msgid "Avatar server" msgstr "Serwer awatara" -#: actions/pathsadminpanel.php:261 +#: actions/pathsadminpanel.php:288 msgid "Avatar path" msgstr "Ścieżka do awatara" -#: actions/pathsadminpanel.php:265 +#: actions/pathsadminpanel.php:292 msgid "Avatar directory" msgstr "Katalog awatara" -#: actions/pathsadminpanel.php:274 +#: actions/pathsadminpanel.php:301 msgid "Backgrounds" msgstr "Tła" -#: actions/pathsadminpanel.php:278 +#: actions/pathsadminpanel.php:305 msgid "Background server" msgstr "Serwer tła" -#: actions/pathsadminpanel.php:282 +#: actions/pathsadminpanel.php:309 msgid "Background path" msgstr "Ścieżka do tła" -#: actions/pathsadminpanel.php:286 +#: actions/pathsadminpanel.php:313 msgid "Background directory" msgstr "Katalog tła" -#: actions/pathsadminpanel.php:293 +#: actions/pathsadminpanel.php:320 msgid "SSL" msgstr "SSL" -#: actions/pathsadminpanel.php:296 actions/siteadminpanel.php:346 +#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 msgid "Never" msgstr "Nigdy" -#: actions/pathsadminpanel.php:297 +#: actions/pathsadminpanel.php:324 msgid "Sometimes" msgstr "Czasem" -#: actions/pathsadminpanel.php:298 +#: actions/pathsadminpanel.php:325 msgid "Always" msgstr "Zawsze" -#: actions/pathsadminpanel.php:302 +#: actions/pathsadminpanel.php:329 msgid "Use SSL" msgstr "Użycie SSL" -#: actions/pathsadminpanel.php:303 +#: actions/pathsadminpanel.php:330 msgid "When to use SSL" msgstr "Kiedy używać SSL" -#: actions/pathsadminpanel.php:308 +#: actions/pathsadminpanel.php:335 msgid "SSL server" msgstr "Serwer SSL" -#: actions/pathsadminpanel.php:309 +#: actions/pathsadminpanel.php:336 msgid "Server to direct SSL requests to" msgstr "Serwer do przekierowywania żądań SSL" -#: actions/pathsadminpanel.php:325 +#: actions/pathsadminpanel.php:352 msgid "Save paths" msgstr "Ścieżki zapisu" @@ -2323,7 +2639,7 @@ msgstr "Nieprawidłowa zawartość wpisu" #: actions/postnotice.php:90 #, php-format msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’." -msgstr "Licencja wpisu \"%1$s\" nie jest zgodna z licencją strony \"%2$s\"." +msgstr "Licencja wpisu \"%1$s\" nie jest zgodna z licencją witryny \"%2$s\"." #: actions/profilesettings.php:60 msgid "Profile settings" @@ -2351,13 +2667,13 @@ msgid "Full name" msgstr "Imię i nazwisko" #: actions/profilesettings.php:115 actions/register.php:453 -#: lib/groupeditform.php:161 +#: lib/applicationeditform.php:228 lib/groupeditform.php:161 msgid "Homepage" msgstr "Strona domowa" #: actions/profilesettings.php:117 actions/register.php:455 msgid "URL of your homepage, blog, or profile on another site" -msgstr "Adres URL strony domowej, bloga lub profilu na innej stronie" +msgstr "Adres URL strony domowej, bloga lub profilu na innej witrynie" #: actions/profilesettings.php:122 actions/register.php:461 #, php-format @@ -2374,7 +2690,7 @@ msgstr "O mnie" #: actions/profilesettings.php:132 actions/register.php:471 #: actions/showgroup.php:256 actions/tagother.php:112 -#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:164 msgid "Location" msgstr "Położenie" @@ -2400,7 +2716,7 @@ msgstr "" "Znaczniki dla siebie (litery, liczby, -, . i _), oddzielone przecinkami lub " "spacjami" -#: actions/profilesettings.php:151 actions/siteadminpanel.php:294 +#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 msgid "Language" msgstr "Język" @@ -2427,7 +2743,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "Wpis \"O mnie\" jest za długi (maksymalnie %d znaków)." -#: actions/profilesettings.php:235 actions/siteadminpanel.php:164 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 msgid "Timezone not selected." msgstr "Nie wybrano strefy czasowej." @@ -2440,23 +2756,23 @@ msgstr "Język jest za długi (maksymalnie 50 znaków)." msgid "Invalid tag: \"%s\"" msgstr "Nieprawidłowy znacznik: \"%s\"" -#: actions/profilesettings.php:302 +#: actions/profilesettings.php:306 msgid "Couldn't update user for autosubscribe." msgstr "Nie można zaktualizować użytkownika do automatycznej subskrypcji." -#: actions/profilesettings.php:359 +#: actions/profilesettings.php:363 msgid "Couldn't save location prefs." msgstr "Nie można zapisać preferencji położenia." -#: actions/profilesettings.php:371 +#: actions/profilesettings.php:375 msgid "Couldn't save profile." msgstr "Nie można zapisać profilu." -#: actions/profilesettings.php:379 +#: actions/profilesettings.php:383 msgid "Couldn't save tags." msgstr "Nie można zapisać znaczników." -#: actions/profilesettings.php:387 lib/adminpanelaction.php:137 +#: actions/profilesettings.php:391 lib/adminpanelaction.php:137 msgid "Settings saved." msgstr "Zapisano ustawienia." @@ -2478,19 +2794,19 @@ msgstr "Publiczna oś czasu, strona %d" msgid "Public timeline" msgstr "Publiczna oś czasu" -#: actions/public.php:151 +#: actions/public.php:159 msgid "Public Stream Feed (RSS 1.0)" msgstr "Kanał publicznego strumienia (RSS 1.0)" -#: actions/public.php:155 +#: actions/public.php:163 msgid "Public Stream Feed (RSS 2.0)" msgstr "Kanał publicznego strumienia (RSS 2.0)" -#: actions/public.php:159 +#: actions/public.php:167 msgid "Public Stream Feed (Atom)" msgstr "Kanał publicznego strumienia (Atom)" -#: actions/public.php:179 +#: actions/public.php:187 #, php-format msgid "" "This is the public timeline for %%site.name%% but no one has posted anything " @@ -2499,11 +2815,11 @@ msgstr "" "To jest publiczna oś czasu dla %%site.name%%, ale nikt jeszcze nic nie " "wysłał." -#: actions/public.php:182 +#: actions/public.php:190 msgid "Be the first to post!" msgstr "Zostań pierwszym, który coś wyśle." -#: actions/public.php:186 +#: actions/public.php:194 #, php-format msgid "" "Why not [register an account](%%action.register%%) and be the first to post!" @@ -2511,7 +2827,7 @@ msgstr "" "Dlaczego nie [zarejestrujesz konta](%%action.register%%) i zostaniesz " "pierwszym, który coś wyśle." -#: actions/public.php:233 +#: actions/public.php:241 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2524,7 +2840,7 @@ msgstr "" "[Dołącz teraz](%%action.register%%), aby dzielić się wpisami o sobie z " "przyjaciółmi, rodziną i kolegami. ([Przeczytaj więcej](%%doc.help%%))" -#: actions/public.php:238 +#: actions/public.php:246 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2562,7 +2878,7 @@ msgstr "" "Dlaczego nie [zarejestrujesz konta](%%action.register%%) i zostaniesz " "pierwszym, który go wyśle." -#: actions/publictagcloud.php:131 +#: actions/publictagcloud.php:134 msgid "Tag cloud" msgstr "Chmura znaczników" @@ -2702,7 +3018,7 @@ msgstr "Nieprawidłowy kod zaproszenia." msgid "Registration successful" msgstr "Rejestracja powiodła się" -#: actions/register.php:114 actions/register.php:503 lib/action.php:457 +#: actions/register.php:114 actions/register.php:503 lib/action.php:463 #: lib/logingroupnav.php:85 msgid "Register" msgstr "Zarejestruj się" @@ -2746,7 +3062,7 @@ msgid "Same as password above. Required." msgstr "Takie samo jak powyższe hasło. Wymagane." #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:270 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 msgid "Email" msgstr "E-mail" @@ -2824,7 +3140,7 @@ msgid "" msgstr "" "Aby subskrybować, 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 " +"witrynie mikroblogowania](%%doc.openmublog%%), podaj poniżej adres URL " "profilu." #: actions/remotesubscribe.php:112 @@ -2852,7 +3168,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "Adres URL profilu na innej, zgodnej usłudze mikroblogowania" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:365 +#: lib/userprofile.php:368 msgid "Subscribe" msgstr "Subskrybuj" @@ -2890,7 +3206,7 @@ msgstr "Nie można powtórzyć własnego wpisu." msgid "You already repeated that notice." msgstr "Już powtórzono ten wpis." -#: actions/repeat.php:114 lib/noticelist.php:629 +#: actions/repeat.php:114 lib/noticelist.php:656 msgid "Repeated" msgstr "Powtórzono" @@ -2904,6 +3220,11 @@ msgstr "Powtórzono." msgid "Replies to %s" msgstr "Odpowiedzi na %s" +#: actions/replies.php:127 +#, php-format +msgid "Replies to %1$s, page %2$d" +msgstr "odpowiedzi dla użytkownika %1$s, strona %2$s" + #: actions/replies.php:144 #, php-format msgid "Replies feed for %s (RSS 1.0)" @@ -2951,14 +3272,133 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "odpowiedzi dla użytkownika %1$s na %2$s." +#: actions/rsd.php:146 actions/version.php:157 +msgid "StatusNet" +msgstr "StatusNet" + #: actions/sandbox.php:65 actions/unsandbox.php:65 msgid "You cannot sandbox users on this site." -msgstr "Nie można ograniczać użytkowników na tej stronie." +msgstr "Nie można ograniczać użytkowników na tej witrynie." #: actions/sandbox.php:72 msgid "User is already sandboxed." msgstr "Użytkownik jest już ograniczony." +#: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:336 +msgid "Sessions" +msgstr "Sesje" + +#: actions/sessionsadminpanel.php:65 +msgid "Session settings for this StatusNet site." +msgstr "Ustawienia sesji tej witryny StatusNet." + +#: actions/sessionsadminpanel.php:175 +msgid "Handle sessions" +msgstr "Obsługa sesji" + +#: actions/sessionsadminpanel.php:177 +msgid "Whether to handle sessions ourselves." +msgstr "Czy samodzielnie obsługiwać sesje." + +#: actions/sessionsadminpanel.php:181 +msgid "Session debugging" +msgstr "Debugowanie sesji" + +#: actions/sessionsadminpanel.php:183 +msgid "Turn on debugging output for sessions." +msgstr "Włącza wyjście debugowania dla sesji." + +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/useradminpanel.php:293 +msgid "Save site settings" +msgstr "Zapisz ustawienia witryny" + +#: actions/showapplication.php:82 +msgid "You must be logged in to view an application." +msgstr "Musisz być zalogowany, aby wyświetlić aplikację." + +#: actions/showapplication.php:157 +msgid "Application profile" +msgstr "Profil aplikacji" + +#: actions/showapplication.php:159 lib/applicationeditform.php:180 +msgid "Icon" +msgstr "Ikona" + +#: actions/showapplication.php:169 actions/version.php:195 +#: lib/applicationeditform.php:195 +msgid "Name" +msgstr "Nazwa" + +#: actions/showapplication.php:178 lib/applicationeditform.php:222 +msgid "Organization" +msgstr "Organizacja" + +#: actions/showapplication.php:187 actions/version.php:198 +#: lib/applicationeditform.php:209 lib/groupeditform.php:172 +msgid "Description" +msgstr "Opis" + +#: actions/showapplication.php:192 actions/showgroup.php:429 +#: lib/profileaction.php:174 +msgid "Statistics" +msgstr "Statystyki" + +#: actions/showapplication.php:203 +#, php-format +msgid "Created by %1$s - %2$s access by default - %3$d users" +msgstr "Utworzona przez %1$s - domyślny dostęp: %2$s - %3$d użytkowników" + +#: actions/showapplication.php:213 +msgid "Application actions" +msgstr "Czynności aplikacji" + +#: actions/showapplication.php:236 +msgid "Reset key & secret" +msgstr "Przywrócenie klucza i sekretu" + +#: actions/showapplication.php:261 +msgid "Application info" +msgstr "Informacje o aplikacji" + +#: actions/showapplication.php:263 +msgid "Consumer key" +msgstr "Klucz klienta" + +#: actions/showapplication.php:268 +msgid "Consumer secret" +msgstr "Sekret klienta" + +#: actions/showapplication.php:273 +msgid "Request token URL" +msgstr "Adres URL tokenu żądania" + +#: actions/showapplication.php:278 +msgid "Access token URL" +msgstr "Adres URL tokenu żądania" + +#: actions/showapplication.php:283 +msgid "Authorize URL" +msgstr "Adres URL upoważnienia" + +#: actions/showapplication.php:288 +msgid "" +"Note: We support HMAC-SHA1 signatures. We do not support the plaintext " +"signature method." +msgstr "" +"Uwaga: obsługiwane są podpisy HMAC-SHA1. Metoda podpisu w zwykłym tekście " +"nie jest obsługiwana." + +#: actions/showapplication.php:309 +msgid "Are you sure you want to reset your consumer key and secret?" +msgstr "Jesteś pewien, że chcesz przywrócić klucz i sekret klienta?" + +#: actions/showfavorites.php:79 +#, php-format +msgid "%1$s's favorite notices, page %2$d" +msgstr "Ulubione wpisy użytkownika %1$s, strona %2$d" + #: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "Nie można odebrać ulubionych wpisów." @@ -3016,17 +3456,22 @@ msgstr "To jest sposób na współdzielenie tego, co chcesz." msgid "%s group" msgstr "Grupa %s" +#: actions/showgroup.php:84 +#, php-format +msgid "%1$s group, page %2$d" +msgstr "Grupa %1$s, strona %2$d" + #: actions/showgroup.php:218 msgid "Group profile" msgstr "Profil grupy" #: actions/showgroup.php:263 actions/tagother.php:118 -#: actions/userauthorization.php:167 lib/userprofile.php:177 +#: actions/userauthorization.php:175 lib/userprofile.php:177 msgid "URL" msgstr "Adres URL" #: actions/showgroup.php:274 actions/tagother.php:128 -#: actions/userauthorization.php:179 lib/userprofile.php:194 +#: actions/userauthorization.php:187 lib/userprofile.php:194 msgid "Note" msgstr "Wpis" @@ -3072,10 +3517,6 @@ msgstr "(Brak)" msgid "All members" msgstr "Wszyscy członkowie" -#: actions/showgroup.php:429 lib/profileaction.php:174 -msgid "Statistics" -msgstr "Statystyki" - #: actions/showgroup.php:432 msgid "Created" msgstr "Utworzono" @@ -3140,6 +3581,11 @@ msgstr "Usunięto wpis." msgid " tagged %s" msgstr " ze znacznikiem %s" +#: actions/showstream.php:79 +#, php-format +msgid "%1$s, page %2$d" +msgstr "%1$s, strona %2$d" + #: actions/showstream.php:122 #, php-format msgid "Notice feed for %1$s tagged %2$s (RSS 1.0)" @@ -3165,13 +3611,13 @@ msgstr "Kanał wpisów dla %s (Atom)" msgid "FOAF for %s" msgstr "FOAF dla %s" -#: actions/showstream.php:191 +#: actions/showstream.php:200 #, php-format msgid "This is the timeline for %1$s but %2$s hasn't posted anything yet." msgstr "" "To jest oś czasu dla użytkownika %1$s, ale %2$s nie nic jeszcze nie wysłał." -#: actions/showstream.php:196 +#: actions/showstream.php:205 msgid "" "Seen anything interesting recently? You haven't posted any notices yet, now " "would be a good time to start :)" @@ -3179,7 +3625,7 @@ msgstr "" "Widziałeś ostatnio coś interesującego? Nie wysłałeś jeszcze żadnych wpisów, " "teraz jest dobry czas, aby zacząć. :)" -#: actions/showstream.php:198 +#: actions/showstream.php:207 #, php-format msgid "" "You can try to nudge %1$s or [post something to his or her attention](%%%%" @@ -3188,7 +3634,7 @@ msgstr "" "Można spróbować szturchnąć użytkownika %1$s lub [wysłać coś, co wymaga jego " "uwagi](%%%%action.newnotice%%%%?status_textarea=%2$s)." -#: actions/showstream.php:234 +#: actions/showstream.php:243 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3202,7 +3648,7 @@ msgstr "" "obserwować wpisy użytkownika **%s** i wiele więcej. ([Przeczytaj więcej](%%%%" "doc.help%%%%))" -#: actions/showstream.php:239 +#: actions/showstream.php:248 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3213,14 +3659,14 @@ msgstr "" "pl.wikipedia.org/wiki/Mikroblog) opartej na wolnym narzędziu [StatusNet]" "(http://status.net/). " -#: actions/showstream.php:313 +#: actions/showstream.php:305 #, php-format msgid "Repeat of %s" msgstr "Powtórzenia %s" #: actions/silence.php:65 actions/unsilence.php:65 msgid "You cannot silence users on this site." -msgstr "Nie można wyciszać użytkowników na tej stronie." +msgstr "Nie można wyciszać użytkowników na tej witrynie." #: actions/silence.php:72 msgid "User is already silenced." @@ -3228,201 +3674,147 @@ msgstr "Użytkownik jest już wyciszony." #: actions/siteadminpanel.php:69 msgid "Basic settings for this StatusNet site." -msgstr "Podstawowe ustawienia tej strony StatusNet." +msgstr "Podstawowe ustawienia tej witryny StatusNet." -#: actions/siteadminpanel.php:146 +#: actions/siteadminpanel.php:132 msgid "Site name must have non-zero length." -msgstr "Nazwa strony nie może mieć zerową długość." +msgstr "Nazwa witryny nie może mieć zerową długość." -#: actions/siteadminpanel.php:154 +#: actions/siteadminpanel.php:140 msgid "You must have a valid contact email address." msgstr "Należy posiadać prawidłowy kontaktowy adres e-mail." -#: actions/siteadminpanel.php:172 +#: actions/siteadminpanel.php:158 #, php-format msgid "Unknown language \"%s\"." msgstr "Nieznany język \"%s\"." -#: actions/siteadminpanel.php:179 +#: actions/siteadminpanel.php:165 msgid "Invalid snapshot report URL." msgstr "Nieprawidłowy adres URL zgłaszania migawek." -#: actions/siteadminpanel.php:185 +#: actions/siteadminpanel.php:171 msgid "Invalid snapshot run value." msgstr "Nieprawidłowa wartość wykonania migawki." -#: actions/siteadminpanel.php:191 +#: actions/siteadminpanel.php:177 msgid "Snapshot frequency must be a number." msgstr "Częstotliwość migawek musi być liczbą." -#: actions/siteadminpanel.php:197 +#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "Maksymalne ograniczenie tekstu to 14 znaków." -#: actions/siteadminpanel.php:203 +#: actions/siteadminpanel.php:189 msgid "Dupe limit must 1 or more seconds." msgstr "Ograniczenie duplikatów musi wynosić jedną lub więcej sekund." -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:239 msgid "General" msgstr "Ogólne" -#: actions/siteadminpanel.php:256 +#: actions/siteadminpanel.php:242 msgid "Site name" -msgstr "Nazwa strony" +msgstr "Nazwa witryny" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:243 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "Nazwa strony, taka jak \"Mikroblog firmy X\"" -#: actions/siteadminpanel.php:261 +#: actions/siteadminpanel.php:247 msgid "Brought by" msgstr "Dostarczane przez" -#: actions/siteadminpanel.php:262 +#: actions/siteadminpanel.php:248 msgid "Text used for credits link in footer of each page" msgstr "Tekst używany do odnośnika do zasług w stopce każdej strony" -#: actions/siteadminpanel.php:266 +#: actions/siteadminpanel.php:252 msgid "Brought by URL" msgstr "Adres URL \"Dostarczane przez\"" -#: actions/siteadminpanel.php:267 +#: actions/siteadminpanel.php:253 msgid "URL used for credits link in footer of each page" msgstr "Adres URL używany do odnośnika do zasług w stopce każdej strony" -#: actions/siteadminpanel.php:271 +#: actions/siteadminpanel.php:257 msgid "Contact email address for your site" -msgstr "Kontaktowy adres e-mail strony" +msgstr "Kontaktowy adres e-mail witryny" -#: actions/siteadminpanel.php:277 +#: actions/siteadminpanel.php:263 msgid "Local" msgstr "Lokalne" -#: actions/siteadminpanel.php:288 +#: actions/siteadminpanel.php:274 msgid "Default timezone" msgstr "Domyślna strefa czasowa" -#: actions/siteadminpanel.php:289 +#: actions/siteadminpanel.php:275 msgid "Default timezone for the site; usually UTC." -msgstr "Domyśla strefa czasowa strony, zwykle UTC." +msgstr "Domyśla strefa czasowa witryny, zwykle UTC." -#: actions/siteadminpanel.php:295 +#: actions/siteadminpanel.php:281 msgid "Default site language" -msgstr "Domyślny język strony" +msgstr "Domyślny język witryny" -#: actions/siteadminpanel.php:303 -msgid "URLs" -msgstr "Adresy URL" - -#: actions/siteadminpanel.php:306 -msgid "Server" -msgstr "Serwer" - -#: actions/siteadminpanel.php:306 -msgid "Site's server hostname." -msgstr "Nazwa komputera serwera strony." - -#: actions/siteadminpanel.php:310 -msgid "Fancy URLs" -msgstr "Eleganckie adresu URL" - -#: actions/siteadminpanel.php:312 -msgid "Use fancy (more readable and memorable) URLs?" -msgstr "" -"Używać eleganckich (bardziej czytelnych i łatwiejszych do zapamiętania) " -"adresów URL?" - -#: actions/siteadminpanel.php:318 -msgid "Access" -msgstr "Dostęp" - -#: actions/siteadminpanel.php:321 -msgid "Private" -msgstr "Prywatna" - -#: actions/siteadminpanel.php:323 -msgid "Prohibit anonymous users (not logged in) from viewing site?" -msgstr "Zabronić anonimowym użytkownikom (niezalogowanym) przeglądać stronę?" - -#: actions/siteadminpanel.php:327 -msgid "Invite only" -msgstr "Tylko zaproszeni" - -#: actions/siteadminpanel.php:329 -msgid "Make registration invitation only." -msgstr "Rejestracja tylko za zaproszeniem." - -#: actions/siteadminpanel.php:333 -msgid "Closed" -msgstr "Zamknięte" - -#: actions/siteadminpanel.php:335 -msgid "Disable new registrations." -msgstr "Wyłączenie nowych rejestracji." - -#: actions/siteadminpanel.php:341 +#: actions/siteadminpanel.php:289 msgid "Snapshots" msgstr "Migawki" -#: actions/siteadminpanel.php:344 +#: actions/siteadminpanel.php:292 msgid "Randomly during Web hit" msgstr "Losowo podczas trafienia WWW" -#: actions/siteadminpanel.php:345 +#: actions/siteadminpanel.php:293 msgid "In a scheduled job" msgstr "Jako zaplanowane zadanie" -#: actions/siteadminpanel.php:347 +#: actions/siteadminpanel.php:295 msgid "Data snapshots" msgstr "Migawki danych" -#: actions/siteadminpanel.php:348 +#: actions/siteadminpanel.php:296 msgid "When to send statistical data to status.net servers" msgstr "Kiedy wysyłać dane statystyczne na serwery status.net" -#: actions/siteadminpanel.php:353 +#: actions/siteadminpanel.php:301 msgid "Frequency" msgstr "Częstotliwość" -#: actions/siteadminpanel.php:354 +#: actions/siteadminpanel.php:302 msgid "Snapshots will be sent once every N web hits" msgstr "Migawki będą wysyłane co N trafień WWW" -#: actions/siteadminpanel.php:359 +#: actions/siteadminpanel.php:307 msgid "Report URL" msgstr "Adres URL zgłaszania" -#: actions/siteadminpanel.php:360 +#: actions/siteadminpanel.php:308 msgid "Snapshots will be sent to this URL" msgstr "Migawki będą wysyłane na ten adres URL" -#: actions/siteadminpanel.php:367 +#: actions/siteadminpanel.php:315 msgid "Limits" msgstr "Ograniczenia" -#: actions/siteadminpanel.php:370 +#: actions/siteadminpanel.php:318 msgid "Text limit" msgstr "Ograniczenie tekstu" -#: actions/siteadminpanel.php:370 +#: actions/siteadminpanel.php:318 msgid "Maximum number of characters for notices." msgstr "Maksymalna liczba znaków wpisów." -#: actions/siteadminpanel.php:374 +#: actions/siteadminpanel.php:322 msgid "Dupe limit" msgstr "Ograniczenie duplikatów" -#: actions/siteadminpanel.php:374 +#: actions/siteadminpanel.php:322 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" "Ile czasu użytkownicy muszą czekać (w sekundach), aby ponownie wysłać to " "samo." -#: actions/siteadminpanel.php:388 actions/useradminpanel.php:313 -msgid "Save site settings" -msgstr "Zapisz ustawienia strony" - #: actions/smssettings.php:58 msgid "SMS settings" msgstr "Ustawienia SMS" @@ -3526,15 +3918,26 @@ msgstr "Nie podano kodu" msgid "You are not subscribed to that profile." msgstr "Nie jesteś subskrybowany do tego profilu." -#: actions/subedit.php:83 +#: actions/subedit.php:83 classes/Subscription.php:89 +#: classes/Subscription.php:116 msgid "Could not save subscription." msgstr "Nie można zapisać subskrypcji." -#: actions/subscribe.php:55 -msgid "Not a local user." -msgstr "Nie jest lokalnym użytkownikiem." +#: actions/subscribe.php:77 +msgid "This action only accepts POST requests." +msgstr "" -#: actions/subscribe.php:69 +#: actions/subscribe.php:107 +#, fuzzy +msgid "No such profile." +msgstr "Nie ma takiego pliku." + +#: actions/subscribe.php:117 +#, fuzzy +msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." +msgstr "Nie jesteś subskrybowany do tego profilu." + +#: actions/subscribe.php:145 msgid "Subscribed" msgstr "Subskrybowano" @@ -3598,7 +4001,7 @@ msgstr "Osoby, których wpisy obserwujesz." msgid "These are the people whose notices %s listens to." msgstr "Osoby, których wpisy obserwuje użytkownik %s." -#: actions/subscriptions.php:121 +#: actions/subscriptions.php:126 #, php-format msgid "" "You're not listening to anyone's notices right now, try subscribing to " @@ -3614,19 +4017,24 @@ msgstr "" "twittersettings%%), można automatycznie subskrybować osoby, które tam już " "obserwujesz." -#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#: actions/subscriptions.php:128 actions/subscriptions.php:132 #, php-format msgid "%s is not listening to anyone." msgstr "Użytkownik %s nie obserwuje nikogo." -#: actions/subscriptions.php:194 +#: actions/subscriptions.php:199 msgid "Jabber" msgstr "Jabber" -#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:204 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "SMS" +#: actions/tag.php:68 +#, php-format +msgid "Notices tagged with %1$s, page %2$d" +msgstr "Wpisy ze znacznikiem %1$s, strona %2$d" + #: actions/tag.php:86 #, php-format msgid "Notice feed for tag %s (RSS 1.0)" @@ -3655,7 +4063,8 @@ msgstr "Znacznik %s" msgid "User profile" msgstr "Profil użytkownika" -#: actions/tagother.php:81 lib/userprofile.php:102 +#: actions/tagother.php:81 actions/userauthorization.php:132 +#: lib/userprofile.php:102 msgid "Photo" msgstr "Zdjęcie" @@ -3715,13 +4124,13 @@ msgstr "Brak identyfikatora profilu w żądaniu." msgid "Unsubscribed" msgstr "Zrezygnowano z subskrypcji" -#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#: actions/updateprofile.php:62 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" "Licencja nasłuchiwanego strumienia \"%1$s\" nie jest zgodna z licencją " -"strony \"%2$s\"." +"witryny \"%2$s\"." #: actions/useradminpanel.php:58 lib/adminpanelaction.php:321 #: lib/personalgroupnav.php:115 @@ -3730,86 +4139,66 @@ msgstr "Użytkownik" #: actions/useradminpanel.php:69 msgid "User settings for this StatusNet site." -msgstr "Ustawienia użytkownika dla tej strony StatusNet." +msgstr "Ustawienia użytkownika dla tej witryny StatusNet." -#: actions/useradminpanel.php:149 +#: actions/useradminpanel.php:148 msgid "Invalid bio limit. Must be numeric." msgstr "Nieprawidłowe ograniczenie informacji o sobie. Musi być liczbowa." -#: actions/useradminpanel.php:155 +#: actions/useradminpanel.php:154 msgid "Invalid welcome text. Max length is 255 characters." msgstr "Nieprawidłowy tekst powitania. Maksymalna długość to 255 znaków." -#: actions/useradminpanel.php:165 +#: actions/useradminpanel.php:164 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "Nieprawidłowa domyślna subskrypcja: \"%1$s\" nie jest użytkownikiem." -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 +#: actions/useradminpanel.php:217 lib/accountsettingsaction.php:108 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Profil" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:221 msgid "Bio Limit" msgstr "Ograniczenie informacji o sobie" -#: actions/useradminpanel.php:223 +#: actions/useradminpanel.php:222 msgid "Maximum length of a profile bio in characters." msgstr "Maksymalna długość informacji o sobie jako liczba znaków." -#: actions/useradminpanel.php:231 +#: actions/useradminpanel.php:230 msgid "New users" msgstr "Nowi użytkownicy" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:234 msgid "New user welcome" msgstr "Powitanie nowego użytkownika" -#: actions/useradminpanel.php:236 +#: actions/useradminpanel.php:235 msgid "Welcome text for new users (Max 255 chars)." msgstr "Tekst powitania nowych użytkowników (maksymalnie 255 znaków)." -#: actions/useradminpanel.php:241 +#: actions/useradminpanel.php:240 msgid "Default subscription" msgstr "Domyślna subskrypcja" -#: actions/useradminpanel.php:242 +#: actions/useradminpanel.php:241 msgid "Automatically subscribe new users to this user." msgstr "Automatyczne subskrybowanie nowych użytkowników do tego użytkownika." -#: actions/useradminpanel.php:251 +#: actions/useradminpanel.php:250 msgid "Invitations" msgstr "Zaproszenia" -#: actions/useradminpanel.php:256 +#: actions/useradminpanel.php:255 msgid "Invitations enabled" msgstr "Zaproszenia są włączone" -#: actions/useradminpanel.php:258 +#: actions/useradminpanel.php:257 msgid "Whether to allow users to invite new users." msgstr "Czy zezwolić użytkownikom zapraszanie nowych użytkowników." -#: actions/useradminpanel.php:265 -msgid "Sessions" -msgstr "Sesje" - -#: actions/useradminpanel.php:270 -msgid "Handle sessions" -msgstr "Obsługa sesji" - -#: actions/useradminpanel.php:272 -msgid "Whether to handle sessions ourselves." -msgstr "Czy samodzielnie obsługiwać sesje." - -#: actions/useradminpanel.php:276 -msgid "Session debugging" -msgstr "Debugowanie sesji" - -#: actions/useradminpanel.php:278 -msgid "Turn on debugging output for sessions." -msgstr "Włącza wyjście debugowania dla sesji." - #: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Upoważnij subskrypcję" @@ -3824,88 +4213,88 @@ msgstr "" "wpisy tego użytkownika. Jeżeli nie prosiłeś o subskrypcję czyichś wpisów, " "naciśnij \"Odrzuć\"." -#: actions/userauthorization.php:188 actions/version.php:165 +#: actions/userauthorization.php:196 actions/version.php:165 msgid "License" msgstr "Licencja" -#: actions/userauthorization.php:209 +#: actions/userauthorization.php:217 msgid "Accept" msgstr "Zaakceptuj" -#: actions/userauthorization.php:210 lib/subscribeform.php:115 +#: actions/userauthorization.php:218 lib/subscribeform.php:115 #: lib/subscribeform.php:139 msgid "Subscribe to this user" msgstr "Subskrybuj tego użytkownika" -#: actions/userauthorization.php:211 +#: actions/userauthorization.php:219 msgid "Reject" msgstr "Odrzuć" -#: actions/userauthorization.php:212 +#: actions/userauthorization.php:220 msgid "Reject this subscription" msgstr "Odrzuć tę subskrypcję" -#: actions/userauthorization.php:225 +#: actions/userauthorization.php:232 msgid "No authorization request!" msgstr "Brak żądania upoważnienia." -#: actions/userauthorization.php:247 +#: actions/userauthorization.php:254 msgid "Subscription authorized" msgstr "Upoważniono subskrypcję" -#: actions/userauthorization.php:249 +#: actions/userauthorization.php:256 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:" +"Sprawdź w instrukcjach witryny, jak upoważnić subskrypcję. Token subskrypcji:" -#: actions/userauthorization.php:259 +#: actions/userauthorization.php:266 msgid "Subscription rejected" msgstr "Odrzucono subskrypcję" -#: actions/userauthorization.php:261 +#: actions/userauthorization.php:268 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ę." +"Sprawdź w instrukcjach witryny, jak w pełni odrzucić subskrypcję." -#: actions/userauthorization.php:296 +#: actions/userauthorization.php:303 #, php-format msgid "Listener URI ‘%s’ not found here." msgstr "Adres URI nasłuchującego \"%s\" nie został tutaj odnaleziony." -#: actions/userauthorization.php:301 +#: actions/userauthorization.php:308 #, php-format msgid "Listenee URI ‘%s’ is too long." msgstr "Adres URI nasłuchującego \"%s\" jest za długi." -#: actions/userauthorization.php:307 +#: actions/userauthorization.php:314 #, php-format msgid "Listenee URI ‘%s’ is a local user." msgstr "Adres URI nasłuchującego \"%s\" jest lokalnym użytkownikiem." -#: actions/userauthorization.php:322 +#: actions/userauthorization.php:329 #, php-format msgid "Profile URL ‘%s’ is for a local user." msgstr "Adres URL profilu \"%s\" jest dla lokalnego użytkownika." -#: actions/userauthorization.php:338 +#: actions/userauthorization.php:345 #, php-format msgid "Avatar URL ‘%s’ is not valid." msgstr "Adres URL \"%s\" jest nieprawidłowy." -#: actions/userauthorization.php:343 +#: actions/userauthorization.php:350 #, php-format msgid "Can’t read avatar URL ‘%s’." msgstr "Nie można odczytać adresu URL awatara \"%s\"." -#: actions/userauthorization.php:348 +#: actions/userauthorization.php:355 #, php-format msgid "Wrong image type for avatar URL ‘%s’." msgstr "Błędny typ obrazu dla adresu URL awatara \"%s\"." @@ -3925,6 +4314,11 @@ msgstr "" msgid "Enjoy your hotdog!" msgstr "Smacznego hot-doga." +#: actions/usergroups.php:64 +#, php-format +msgid "%1$s groups, page %2$d" +msgstr "Grupy użytkownika %1$s, strona %2$d" + #: actions/usergroups.php:130 msgid "Search for more groups" msgstr "Wyszukaj więcej grup" @@ -3950,13 +4344,9 @@ msgid "" "This site is powered by %1$s version %2$s, Copyright 2008-2010 StatusNet, " "Inc. and contributors." msgstr "" -"Ta strona korzysta z oprogramowania %1$s w wersji %2$s, Copyright 2008-2010 " +"Ta witryna korzysta z oprogramowania %1$s w wersji %2$s, Copyright 2008-2010 " "StatusNet, Inc. i współtwórcy." -#: actions/version.php:157 -msgid "StatusNet" -msgstr "StatusNet" - #: actions/version.php:161 msgid "Contributors" msgstr "Współtwórcy" @@ -4000,11 +4390,7 @@ msgstr "" msgid "Plugins" msgstr "Wtyczki" -#: actions/version.php:195 -msgid "Name" -msgstr "Nazwa" - -#: actions/version.php:196 lib/action.php:741 +#: actions/version.php:196 lib/action.php:747 msgid "Version" msgstr "Wersja" @@ -4012,10 +4398,6 @@ msgstr "Wersja" msgid "Author(s)" msgstr "Autorzy" -#: actions/version.php:198 lib/groupeditform.php:172 -msgid "Description" -msgstr "Opis" - #: classes/File.php:144 #, php-format msgid "" @@ -4039,19 +4421,16 @@ msgstr "" "d bajty." #: classes/Group_member.php:41 -#, fuzzy msgid "Group join failed." -msgstr "Profil grupy" +msgstr "Dołączenie do grupy nie powiodło się." #: classes/Group_member.php:53 -#, fuzzy msgid "Not part of group." -msgstr "Nie można zaktualizować grupy." +msgstr "Nie jest częścią grupy." #: classes/Group_member.php:60 -#, fuzzy msgid "Group leave failed." -msgstr "Profil grupy" +msgstr "Opuszczenie grupy nie powiodło się." #: classes/Login_token.php:76 #, php-format @@ -4070,27 +4449,27 @@ msgstr "Nie można wprowadzić wiadomości." msgid "Could not update message with new URI." msgstr "Nie można zaktualizować wiadomości za pomocą nowego adresu URL." -#: classes/Notice.php:171 +#: classes/Notice.php:157 #, php-format msgid "DB error inserting hashtag: %s" msgstr "Błąd bazy danych podczas wprowadzania znacznika mieszania: %s" -#: classes/Notice.php:225 +#: classes/Notice.php:222 msgid "Problem saving notice. Too long." msgstr "Problem podczas zapisywania wpisu. Za długi." -#: classes/Notice.php:229 +#: classes/Notice.php:226 msgid "Problem saving notice. Unknown user." msgstr "Problem podczas zapisywania wpisu. Nieznany użytkownik." -#: classes/Notice.php:234 +#: classes/Notice.php:231 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." -#: classes/Notice.php:240 +#: classes/Notice.php:237 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." @@ -4098,34 +4477,57 @@ msgstr "" "Za dużo takich samych wiadomości w za krótkim czasie, weź głęboki oddech i " "wyślij ponownie za kilka minut." -#: classes/Notice.php:246 +#: classes/Notice.php:243 msgid "You are banned from posting notices on this site." -msgstr "Zabroniono ci wysyłania wpisów na tej stronie." +msgstr "Zabroniono ci wysyłania wpisów na tej witrynie." -#: classes/Notice.php:305 classes/Notice.php:330 +#: classes/Notice.php:309 classes/Notice.php:335 msgid "Problem saving notice." msgstr "Problem podczas zapisywania wpisu." -#: classes/Notice.php:1052 -#, php-format -msgid "DB error inserting reply: %s" -msgstr "Błąd bazy danych podczas wprowadzania odpowiedzi: %s" +#: classes/Notice.php:882 +msgid "Problem saving group inbox." +msgstr "Problem podczas zapisywania skrzynki odbiorczej grupy." -#: classes/Notice.php:1423 +#: classes/Notice.php:1407 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" -#: classes/User.php:382 +#: classes/Subscription.php:66 lib/oauthstore.php:465 +msgid "You have been banned from subscribing." +msgstr "Zablokowano subskrybowanie." + +#: classes/Subscription.php:70 +msgid "Already subscribed!" +msgstr "Już subskrybowane." + +#: classes/Subscription.php:74 +msgid "User has blocked you." +msgstr "Użytkownik zablokował cię." + +#: classes/Subscription.php:157 +msgid "Not subscribed!" +msgstr "Niesubskrybowane." + +#: classes/Subscription.php:163 +msgid "Couldn't delete self-subscription." +msgstr "Nie można usunąć autosubskrypcji." + +#: classes/Subscription.php:179 lib/subs.php:69 +msgid "Couldn't delete subscription." +msgstr "Nie można usunąć subskrypcji." + +#: classes/User.php:372 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "Witaj w %1$s, @%2$s." -#: classes/User_group.php:380 +#: classes/User_group.php:423 msgid "Could not create group." msgstr "Nie można utworzyć grupy." -#: classes/User_group.php:409 +#: classes/User_group.php:452 msgid "Could not set group membership." msgstr "Nie można ustawić członkostwa w grupie." @@ -4166,128 +4568,124 @@ msgstr "%1$s - %2$s" msgid "Untitled page" msgstr "Strona bez nazwy" -#: lib/action.php:427 -msgid "Primary site navigation" -msgstr "Główna nawigacja strony" - #: lib/action.php:433 +msgid "Primary site navigation" +msgstr "Główna nawigacja witryny" + +#: lib/action.php:439 msgid "Home" msgstr "Strona domowa" -#: lib/action.php:433 +#: lib/action.php:439 msgid "Personal profile and friends timeline" msgstr "Profil osobisty i oś czasu przyjaciół" -#: lib/action.php:435 -msgid "Account" -msgstr "Konto" - -#: lib/action.php:435 +#: lib/action.php:441 msgid "Change your email, avatar, password, profile" msgstr "Zmień adres e-mail, awatar, hasło, profil" -#: lib/action.php:438 +#: lib/action.php:444 msgid "Connect" msgstr "Połącz" -#: lib/action.php:438 +#: lib/action.php:444 msgid "Connect to services" msgstr "Połącz z serwisami" -#: lib/action.php:442 +#: lib/action.php:448 msgid "Change site configuration" -msgstr "Zmień konfigurację strony" +msgstr "Zmień konfigurację witryny" -#: lib/action.php:446 lib/subgroupnav.php:105 +#: lib/action.php:452 lib/subgroupnav.php:105 msgid "Invite" msgstr "Zaproś" -#: lib/action.php:447 lib/subgroupnav.php:106 +#: lib/action.php:453 lib/subgroupnav.php:106 #, 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/action.php:452 +#: lib/action.php:458 msgid "Logout" msgstr "Wyloguj się" -#: lib/action.php:452 +#: lib/action.php:458 msgid "Logout from the site" -msgstr "Wyloguj się ze strony" +msgstr "Wyloguj się z witryny" -#: lib/action.php:457 +#: lib/action.php:463 msgid "Create an account" msgstr "Utwórz konto" -#: lib/action.php:460 +#: lib/action.php:466 msgid "Login to the site" -msgstr "Zaloguj się na stronę" +msgstr "Zaloguj się na witrynie" -#: lib/action.php:463 lib/action.php:726 +#: lib/action.php:469 lib/action.php:732 msgid "Help" msgstr "Pomoc" -#: lib/action.php:463 +#: lib/action.php:469 msgid "Help me!" msgstr "Pomóż mi." -#: lib/action.php:466 lib/searchaction.php:127 +#: lib/action.php:472 lib/searchaction.php:127 msgid "Search" msgstr "Wyszukaj" -#: lib/action.php:466 +#: lib/action.php:472 msgid "Search for people or text" msgstr "Wyszukaj osoby lub tekst" -#: lib/action.php:487 +#: lib/action.php:493 msgid "Site notice" -msgstr "Wpis strony" +msgstr "Wpis witryny" -#: lib/action.php:553 +#: lib/action.php:559 msgid "Local views" msgstr "Lokalne widoki" -#: lib/action.php:619 +#: lib/action.php:625 msgid "Page notice" msgstr "Wpis strony" -#: lib/action.php:721 +#: lib/action.php:727 msgid "Secondary site navigation" -msgstr "Druga nawigacja strony" +msgstr "Druga nawigacja witryny" -#: lib/action.php:728 +#: lib/action.php:734 msgid "About" msgstr "O usłudze" -#: lib/action.php:730 +#: lib/action.php:736 msgid "FAQ" msgstr "FAQ" -#: lib/action.php:734 +#: lib/action.php:740 msgid "TOS" msgstr "TOS" -#: lib/action.php:737 +#: lib/action.php:743 msgid "Privacy" msgstr "Prywatność" -#: lib/action.php:739 +#: lib/action.php:745 msgid "Source" msgstr "Kod źródłowy" -#: lib/action.php:743 +#: lib/action.php:749 msgid "Contact" msgstr "Kontakt" -#: lib/action.php:745 +#: lib/action.php:751 msgid "Badge" msgstr "Odznaka" -#: lib/action.php:773 +#: lib/action.php:779 msgid "StatusNet software license" msgstr "Licencja oprogramowania StatusNet" -#: lib/action.php:776 +#: lib/action.php:782 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4296,12 +4694,12 @@ msgstr "" "**%%site.name%%** jest usługą mikroblogowania prowadzoną przez [%%site." "broughtby%%](%%site.broughtbyurl%%). " -#: lib/action.php:778 +#: lib/action.php:784 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** jest usługą mikroblogowania. " -#: lib/action.php:780 +#: lib/action.php:786 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4312,37 +4710,63 @@ msgstr "" "status.net/) w wersji %s, dostępnego na [Powszechnej Licencji Publicznej GNU " "Affero](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." -#: lib/action.php:794 +#: lib/action.php:801 msgid "Site content license" -msgstr "Licencja zawartości strony" +msgstr "Licencja zawartości witryny" -#: lib/action.php:803 +#: lib/action.php:806 +#, php-format +msgid "Content and data of %1$s are private and confidential." +msgstr "Treść i dane %1$s są prywatne i poufne." + +#: lib/action.php:811 +#, php-format +msgid "Content and data copyright by %1$s. All rights reserved." +msgstr "" +"Prawa autorskie do treści i danych są własnością %1$s. Wszystkie prawa " +"zastrzeżone." + +#: lib/action.php:814 +msgid "Content and data copyright by contributors. All rights reserved." +msgstr "" +"Prawa autorskie do treści i danych są własnością współtwórców. Wszystkie " +"prawa zastrzeżone." + +#: lib/action.php:827 msgid "All " msgstr "Wszystko " -#: lib/action.php:808 +#: lib/action.php:833 msgid "license." msgstr "licencja." -#: lib/action.php:1102 +#: lib/action.php:1132 msgid "Pagination" msgstr "Paginacja" -#: lib/action.php:1111 +#: lib/action.php:1141 msgid "After" msgstr "Później" -#: lib/action.php:1119 +#: lib/action.php:1149 msgid "Before" msgstr "Wcześniej" -#: lib/action.php:1167 -msgid "There was a problem with your session token." -msgstr "Wystąpił problem z tokenem sesji." +#: lib/activity.php:382 +msgid "Can't handle remote content yet." +msgstr "" + +#: lib/activity.php:410 +msgid "Can't handle embedded XML content yet." +msgstr "" + +#: lib/activity.php:414 +msgid "Can't handle embedded Base64 content yet." +msgstr "" #: lib/adminpanelaction.php:96 msgid "You cannot make changes to this site." -msgstr "Nie można wprowadzić zmian strony." +msgstr "Nie można wprowadzić zmian witryny." #: lib/adminpanelaction.php:107 msgid "Changes to that panel are not allowed." @@ -4362,16 +4786,107 @@ msgstr "Nie można usunąć ustawienia wyglądu." #: lib/adminpanelaction.php:312 msgid "Basic site configuration" -msgstr "Podstawowa konfiguracja strony" +msgstr "Podstawowa konfiguracja witryny" #: lib/adminpanelaction.php:317 msgid "Design configuration" msgstr "Konfiguracja wyglądu" -#: lib/adminpanelaction.php:322 lib/adminpanelaction.php:327 +#: lib/adminpanelaction.php:322 +msgid "User configuration" +msgstr "Konfiguracja użytkownika" + +#: lib/adminpanelaction.php:327 +msgid "Access configuration" +msgstr "Konfiguracja dostępu" + +#: lib/adminpanelaction.php:332 msgid "Paths configuration" msgstr "Konfiguracja ścieżek" +#: lib/adminpanelaction.php:337 +msgid "Sessions configuration" +msgstr "Konfiguracja sesji" + +#: lib/apiauth.php:95 +msgid "API resource requires read-write access, but you only have read access." +msgstr "" +"Zasób API wymaga dostępu do zapisu i do odczytu, ale powiadasz dostęp tylko " +"do odczytu." + +#: lib/apiauth.php:273 +#, php-format +msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" +msgstr "" +"Próba uwierzytelnienia API nie powiodła się, pseudonim = %1$s, pośrednik = %2" +"$s, IP = %3$s" + +#: lib/applicationeditform.php:136 +msgid "Edit application" +msgstr "Zmodyfikuj aplikację" + +#: lib/applicationeditform.php:184 +msgid "Icon for this application" +msgstr "Ikona tej aplikacji" + +#: lib/applicationeditform.php:204 +#, php-format +msgid "Describe your application in %d characters" +msgstr "Opisz aplikację w %d znakach" + +#: lib/applicationeditform.php:207 +msgid "Describe your application" +msgstr "Opisz aplikację" + +#: lib/applicationeditform.php:216 +msgid "Source URL" +msgstr "Źródłowy adres URL" + +#: lib/applicationeditform.php:218 +msgid "URL of the homepage of this application" +msgstr "Adres URL strony domowej tej aplikacji" + +#: lib/applicationeditform.php:224 +msgid "Organization responsible for this application" +msgstr "Organizacja odpowiedzialna za tę aplikację" + +#: lib/applicationeditform.php:230 +msgid "URL for the homepage of the organization" +msgstr "Adres URL strony domowej organizacji" + +#: lib/applicationeditform.php:236 +msgid "URL to redirect to after authentication" +msgstr "Adres URL do przekierowania po uwierzytelnieniu" + +#: lib/applicationeditform.php:258 +msgid "Browser" +msgstr "Przeglądarka" + +#: lib/applicationeditform.php:274 +msgid "Desktop" +msgstr "Pulpit" + +#: lib/applicationeditform.php:275 +msgid "Type of application, browser or desktop" +msgstr "Typ aplikacji, przeglądarka lub pulpit" + +#: lib/applicationeditform.php:297 +msgid "Read-only" +msgstr "Tylko do odczytu" + +#: lib/applicationeditform.php:315 +msgid "Read-write" +msgstr "Odczyt i zapis" + +#: lib/applicationeditform.php:316 +msgid "Default access for this application: read-only, or read-write" +msgstr "" +"Domyślny dostęp do tej aplikacji: tylko do odczytu lub do odczytu i zapisu" + +#: lib/applicationlist.php:154 +msgid "Revoke" +msgstr "Unieważnij" + #: lib/attachmentlist.php:87 msgid "Attachments" msgstr "Załączniki" @@ -4392,11 +4907,11 @@ msgstr "Powiadamia, kiedy pojawia się ten załącznik" msgid "Tags for this attachment" msgstr "Znaczniki dla tego załącznika" -#: lib/authenticationplugin.php:182 lib/authenticationplugin.php:187 +#: lib/authenticationplugin.php:218 lib/authenticationplugin.php:223 msgid "Password changing failed" msgstr "Zmiana hasła nie powiodła się" -#: lib/authenticationplugin.php:197 +#: lib/authenticationplugin.php:233 msgid "Password changing is not allowed" msgstr "Zmiana hasła nie jest dozwolona" @@ -4547,85 +5062,95 @@ msgstr "Błąd podczas zapisywania wpisu." msgid "Specify the name of the user to subscribe to" msgstr "Podaj nazwę użytkownika do subskrybowania." -#: lib/command.php:554 +#: lib/command.php:554 lib/command.php:589 +msgid "No such user" +msgstr "Brak takiego użytkownika." + +#: lib/command.php:561 #, php-format msgid "Subscribed to %s" msgstr "Subskrybowano użytkownika %s" -#: lib/command.php:575 +#: lib/command.php:582 lib/command.php:685 msgid "Specify the name of the user to unsubscribe from" msgstr "Podaj nazwę użytkownika do usunięcia subskrypcji." -#: lib/command.php:582 +#: lib/command.php:595 #, php-format msgid "Unsubscribed from %s" msgstr "Usunięto subskrypcję użytkownika %s" -#: lib/command.php:600 lib/command.php:623 +#: lib/command.php:613 lib/command.php:636 msgid "Command not yet implemented." msgstr "Nie zaimplementowano polecenia." -#: lib/command.php:603 +#: lib/command.php:616 msgid "Notification off." msgstr "Wyłączono powiadomienia." -#: lib/command.php:605 +#: lib/command.php:618 msgid "Can't turn off notification." msgstr "Nie można wyłączyć powiadomień." -#: lib/command.php:626 +#: lib/command.php:639 msgid "Notification on." msgstr "Włączono powiadomienia." -#: lib/command.php:628 +#: lib/command.php:641 msgid "Can't turn on notification." msgstr "Nie można włączyć powiadomień." -#: lib/command.php:641 +#: lib/command.php:654 msgid "Login command is disabled" msgstr "Polecenie logowania jest wyłączone" -#: lib/command.php:652 +#: lib/command.php:665 #, php-format msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "" "Tego odnośnika można użyć tylko raz i będzie prawidłowy tylko przez dwie " "minuty: %s." -#: lib/command.php:668 +#: lib/command.php:692 +#, fuzzy, php-format +msgid "Unsubscribed %s" +msgstr "Usunięto subskrypcję użytkownika %s" + +#: lib/command.php:709 msgid "You are not subscribed to anyone." msgstr "Nie subskrybujesz nikogo." -#: lib/command.php:670 +#: lib/command.php:711 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "Subskrybujesz tę osobę:" msgstr[1] "Subskrybujesz te osoby:" msgstr[2] "Subskrybujesz te osoby:" -#: lib/command.php:690 +#: lib/command.php:731 msgid "No one is subscribed to you." msgstr "Nikt cię nie subskrybuje." -#: lib/command.php:692 +#: lib/command.php:733 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "Ta osoba cię subskrybuje:" msgstr[1] "Te osoby cię subskrybują:" msgstr[2] "Te osoby cię subskrybują:" -#: lib/command.php:712 +#: lib/command.php:753 msgid "You are not a member of any groups." msgstr "Nie jesteś członkiem żadnej grupy." -#: lib/command.php:714 +#: lib/command.php:755 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "Jesteś członkiem tej grupy:" msgstr[1] "Jesteś członkiem tych grup:" msgstr[2] "Jesteś członkiem tych grup:" -#: lib/command.php:728 +#: lib/command.php:769 +#, fuzzy msgid "" "Commands:\n" "on - turn on notifications\n" @@ -4639,6 +5164,7 @@ msgid "" "d - direct message to user\n" "get - get last notice from user\n" "whois - get profile info on user\n" +"lose - force user to stop following you\n" "fav - add user's last notice as a 'fave'\n" "fav # - add notice with the given id as a 'fave'\n" "repeat # - repeat a notice with a given id\n" @@ -4705,19 +5231,19 @@ msgstr "" "tracks - jeszcze nie zaimplementowano\n" "tracking - jeszcze nie zaimplementowano\n" -#: lib/common.php:131 +#: lib/common.php:136 msgid "No configuration file found. " msgstr "Nie odnaleziono pliku konfiguracji." -#: lib/common.php:132 +#: lib/common.php:137 msgid "I looked for configuration files in the following places: " msgstr "Szukano plików konfiguracji w następujących miejscach: " -#: lib/common.php:134 +#: lib/common.php:139 msgid "You may wish to run the installer to fix this." msgstr "Należy uruchomić instalator, aby to naprawić." -#: lib/common.php:135 +#: lib/common.php:140 msgid "Go to the installer." msgstr "Przejdź do instalatora." @@ -4733,6 +5259,14 @@ msgstr "Aktualizacje przez komunikator" msgid "Updates by SMS" msgstr "Aktualizacje przez wiadomości SMS" +#: lib/connectsettingsaction.php:120 +msgid "Connections" +msgstr "Połączenia" + +#: lib/connectsettingsaction.php:121 +msgid "Authorized connected applications" +msgstr "Upoważnione połączone aplikacje" + #: lib/dberroraction.php:60 msgid "Database error" msgstr "Błąd bazy danych" @@ -4919,15 +5453,15 @@ msgstr "MB" msgid "kB" msgstr "KB" -#: lib/jabber.php:202 +#: lib/jabber.php:220 #, php-format msgid "[%s]" msgstr "[%s]" -#: lib/jabber.php:385 -#, fuzzy, php-format +#: lib/jabber.php:400 +#, php-format msgid "Unknown inbox source %d." -msgstr "Nieznany język \"%s\"." +msgstr "Nieznane źródło skrzynki odbiorczej %d." #: lib/joinform.php:114 msgid "Join" @@ -5206,7 +5740,7 @@ msgstr "" "rozmowę z innymi użytkownikami. Inni mogą wysyłać ci wiadomości tylko dla " "twoich oczu." -#: lib/mailbox.php:227 lib/noticelist.php:477 +#: lib/mailbox.php:227 lib/noticelist.php:482 msgid "from" msgstr "z" @@ -5322,57 +5856,55 @@ msgid "Do not share my location" msgstr "Nie ujawniaj położenia" #: lib/noticeform.php:216 -msgid "Hide this info" -msgstr "Ukryj tę informację" - -#: lib/noticeform.php:217 msgid "" "Sorry, retrieving your geo location is taking longer than expected, please " "try again later" msgstr "" +"Pobieranie danych geolokalizacji trwa dłużej niż powinno, proszę spróbować " +"ponownie później" -#: lib/noticelist.php:428 +#: lib/noticelist.php:429 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" -#: lib/noticelist.php:429 +#: lib/noticelist.php:430 msgid "N" msgstr "Północ" -#: lib/noticelist.php:429 +#: lib/noticelist.php:430 msgid "S" msgstr "Południe" -#: lib/noticelist.php:430 +#: lib/noticelist.php:431 msgid "E" msgstr "Wschód" -#: lib/noticelist.php:430 +#: lib/noticelist.php:431 msgid "W" msgstr "Zachód" -#: lib/noticelist.php:436 +#: lib/noticelist.php:438 msgid "at" msgstr "w" -#: lib/noticelist.php:531 +#: lib/noticelist.php:558 msgid "in context" msgstr "w rozmowie" -#: lib/noticelist.php:556 +#: lib/noticelist.php:583 msgid "Repeated by" msgstr "Powtórzone przez" -#: lib/noticelist.php:585 +#: lib/noticelist.php:610 msgid "Reply to this notice" msgstr "Odpowiedz na ten wpis" -#: lib/noticelist.php:586 +#: lib/noticelist.php:611 msgid "Reply" msgstr "Odpowiedz" -#: lib/noticelist.php:628 +#: lib/noticelist.php:655 msgid "Notice repeated" msgstr "Powtórzono wpis" @@ -5404,11 +5936,7 @@ msgstr "Błąd podczas wprowadzania zdalnego profilu" msgid "Duplicate notice" msgstr "Duplikat wpisu" -#: lib/oauthstore.php:466 lib/subs.php:48 -msgid "You have been banned from subscribing." -msgstr "Zablokowano subskrybowanie." - -#: lib/oauthstore.php:491 +#: lib/oauthstore.php:490 msgid "Couldn't insert new subscription." msgstr "Nie można wprowadzić nowej subskrypcji." @@ -5424,19 +5952,19 @@ msgstr "Odpowiedzi" msgid "Favorites" msgstr "Ulubione" -#: lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "Odebrane" -#: lib/personalgroupnav.php:125 +#: lib/personalgroupnav.php:126 msgid "Your incoming messages" msgstr "Wiadomości przychodzące" -#: lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 msgid "Outbox" msgstr "Wysłane" -#: lib/personalgroupnav.php:130 +#: lib/personalgroupnav.php:131 msgid "Your sent messages" msgstr "Wysłane wiadomości" @@ -5513,6 +6041,11 @@ msgstr "Powtórzyć ten wpis?" msgid "Repeat this notice" msgstr "Powtórz ten wpis" +#: lib/router.php:665 +msgid "No single user defined for single-user mode." +msgstr "" +"Nie określono pojedynczego użytkownika dla trybu pojedynczego użytkownika." + #: lib/sandboxform.php:67 msgid "Sandbox" msgstr "Ogranicz" @@ -5523,7 +6056,7 @@ msgstr "Ogranicz tego użytkownika" #: lib/searchaction.php:120 msgid "Search site" -msgstr "Przeszukaj stronę" +msgstr "Przeszukaj witrynę" #: lib/searchaction.php:126 msgid "Keyword(s)" @@ -5539,7 +6072,7 @@ msgstr "Osoby" #: lib/searchgroupnav.php:81 msgid "Find people on this site" -msgstr "Znajdź osoby na tej stronie" +msgstr "Znajdź osoby na tej witrynie" #: lib/searchgroupnav.php:83 msgid "Find content of notices" @@ -5547,7 +6080,7 @@ msgstr "Przeszukaj zawartość wpisów" #: lib/searchgroupnav.php:85 msgid "Find groups on this site" -msgstr "Znajdź grupy na tej stronie" +msgstr "Znajdź grupy na tej witrynie" #: lib/section.php:89 msgid "Untitled section" @@ -5580,34 +6113,6 @@ msgstr "Osoby subskrybowane do %s" msgid "Groups %s is a member of" msgstr "Grupy %s są członkiem" -#: lib/subs.php:52 -msgid "Already subscribed!" -msgstr "Już subskrybowane." - -#: lib/subs.php:56 -msgid "User has blocked you." -msgstr "Użytkownik zablokował cię." - -#: lib/subs.php:63 -msgid "Could not subscribe." -msgstr "Nie można subskrybować." - -#: lib/subs.php:82 -msgid "Could not subscribe other to you." -msgstr "Nie można subskrybować innych do ciebie." - -#: lib/subs.php:137 -msgid "Not subscribed!" -msgstr "Niesubskrybowane." - -#: lib/subs.php:142 -msgid "Couldn't delete self-subscription." -msgstr "Nie można usunąć autosubskrypcji." - -#: lib/subs.php:158 -msgid "Couldn't delete subscription." -msgstr "Nie można usunąć subskrypcji." - #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -5658,67 +6163,67 @@ msgstr "Zmodyfikuj awatar" msgid "User actions" msgstr "Czynności użytkownika" -#: lib/userprofile.php:248 +#: lib/userprofile.php:251 msgid "Edit profile settings" msgstr "Zmodyfikuj ustawienia profilu" -#: lib/userprofile.php:249 +#: lib/userprofile.php:252 msgid "Edit" msgstr "Edycja" -#: lib/userprofile.php:272 +#: lib/userprofile.php:275 msgid "Send a direct message to this user" msgstr "Wyślij bezpośrednią wiadomość do tego użytkownika" -#: lib/userprofile.php:273 +#: lib/userprofile.php:276 msgid "Message" msgstr "Wiadomość" -#: lib/userprofile.php:311 +#: lib/userprofile.php:314 msgid "Moderate" msgstr "Moderuj" -#: lib/util.php:877 +#: lib/util.php:952 msgid "a few seconds ago" msgstr "kilka sekund temu" -#: lib/util.php:879 +#: lib/util.php:954 msgid "about a minute ago" msgstr "około minutę temu" -#: lib/util.php:881 +#: lib/util.php:956 #, php-format msgid "about %d minutes ago" msgstr "około %d minut temu" -#: lib/util.php:883 +#: lib/util.php:958 msgid "about an hour ago" msgstr "około godzinę temu" -#: lib/util.php:885 +#: lib/util.php:960 #, php-format msgid "about %d hours ago" msgstr "około %d godzin temu" -#: lib/util.php:887 +#: lib/util.php:962 msgid "about a day ago" msgstr "blisko dzień temu" -#: lib/util.php:889 +#: lib/util.php:964 #, php-format msgid "about %d days ago" msgstr "około %d dni temu" -#: lib/util.php:891 +#: lib/util.php:966 msgid "about a month ago" msgstr "około miesiąc temu" -#: lib/util.php:893 +#: lib/util.php:968 #, php-format msgid "about %d months ago" msgstr "około %d miesięcy temu" -#: lib/util.php:895 +#: lib/util.php:970 msgid "about a year ago" msgstr "około rok temu" @@ -5734,7 +6239,7 @@ msgstr "" "%s nie jest prawidłowym kolorem. Użyj trzech lub sześciu znaków " "szesnastkowych." -#: scripts/xmppdaemon.php:301 +#: lib/xmppmanager.php:402 #, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "Wiadomość jest za długa - maksymalnie %1$d znaków, wysłano %2$d." diff --git a/locale/pt/LC_MESSAGES/statusnet.po b/locale/pt/LC_MESSAGES/statusnet.po index f635266d10..e742dda197 100644 --- a/locale/pt/LC_MESSAGES/statusnet.po +++ b/locale/pt/LC_MESSAGES/statusnet.po @@ -9,17 +9,72 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-01-13 22:04+0000\n" -"PO-Revision-Date: 2010-01-13 22:05:58+0000\n" +"POT-Creation-Date: 2010-02-24 23:49+0000\n" +"PO-Revision-Date: 2010-02-24 23:51:34+0000\n" "Language-Team: Portuguese\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha (r61027); Translate extension (2010-01-04)\n" +"X-Generator: MediaWiki 1.17alpha (r62925); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: actions/accessadminpanel.php:54 lib/adminpanelaction.php:326 +msgid "Access" +msgstr "Acesso" + +#: actions/accessadminpanel.php:65 +#, fuzzy +msgid "Site access settings" +msgstr "Gravar configurações do site" + +#: actions/accessadminpanel.php:158 +#, fuzzy +msgid "Registration" +msgstr "Registar" + +#: actions/accessadminpanel.php:161 +msgid "Private" +msgstr "Privado" + +#: actions/accessadminpanel.php:163 +msgid "Prohibit anonymous users (not logged in) from viewing site?" +msgstr "Proibir utilizadores anónimos (sem sessão iniciada) de ver o site?" + +#: actions/accessadminpanel.php:167 +msgid "Invite only" +msgstr "Só por convite" + +#: actions/accessadminpanel.php:169 +msgid "Make registration invitation only." +msgstr "Permitir o registo só a convidados." + +#: actions/accessadminpanel.php:173 +msgid "Closed" +msgstr "Fechado" + +#: actions/accessadminpanel.php:175 +msgid "Disable new registrations." +msgstr "Impossibilitar registos novos." + +#: actions/accessadminpanel.php:189 actions/designadminpanel.php:586 +#: actions/emailsettings.php:195 actions/imsettings.php:163 +#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 +#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 +#: actions/siteadminpanel.php:336 actions/smssettings.php:181 +#: actions/subscriptions.php:208 actions/tagother.php:154 +#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 lib/designsettings.php:256 +#: lib/groupeditform.php:202 +msgid "Save" +msgstr "Gravar" + +#: actions/accessadminpanel.php:189 +#, fuzzy +msgid "Save access settings" +msgstr "Gravar configurações do site" + #: actions/all.php:63 actions/public.php:97 actions/replies.php:92 #: actions/showfavorites.php:137 actions/tag.php:51 msgid "No such page" @@ -34,25 +89,29 @@ msgstr "Página não encontrada." #: 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:144 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apistatusesupdate.php:148 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:78 #: actions/apitimelinehome.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/otp.php:76 #: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154 -#: actions/replies.php:73 actions/repliesrss.php:38 +#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 #: 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:302 lib/command.php:355 #: lib/command.php:401 lib/command.php:462 lib/command.php:518 #: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 -#: lib/subs.php:34 lib/subs.php:125 msgid "No such user." msgstr "Utilizador não encontrado." +#: actions/all.php:84 +#, fuzzy, php-format +msgid "%1$s and friends, page %2$d" +msgstr "Perfis bloqueados de %1$s, página %2$d" + #: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 -#: actions/apitimelinefriends.php:115 actions/apitimelinehome.php:115 +#: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" @@ -98,7 +157,7 @@ msgstr "" "Pode tentar [dar um toque em %1$s](../%2$s) a partir do perfil ou [publicar " "qualquer coisa à sua atenção](%%%%action.newnotice%%%%?status_textarea=%3$s)." -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211 #, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " @@ -111,8 +170,8 @@ msgstr "" msgid "You and friends" msgstr "Você e seus amigos" -#: actions/allrss.php:119 actions/apitimelinefriends.php:122 -#: actions/apitimelinehome.php:122 +#: actions/allrss.php:119 actions/apitimelinefriends.php:119 +#: actions/apitimelinehome.php:120 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Actualizações de %1$s e amigos no %2$s!" @@ -122,23 +181,23 @@ msgstr "Actualizações de %1$s e amigos no %2$s!" #: actions/apiaccountupdateprofile.php:97 #: actions/apiaccountupdateprofilebackgroundimage.php:94 #: actions/apiaccountupdateprofilecolors.php:118 -#: 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:136 actions/apigroupismember.php:114 -#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 -#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 -#: actions/apigroupmembership.php:106 actions/apigroupshow.php:105 -#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 -#: actions/apistatusesretweets.php:112 actions/apistatusesshow.php:108 -#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93 -#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:146 -#: actions/apitimelinefriends.php:156 actions/apitimelinegroup.php:150 -#: actions/apitimelinehome.php:156 actions/apitimelinementions.php:151 -#: actions/apitimelinepublic.php:131 actions/apitimelineretweetedbyme.php:122 +#: actions/apiaccountverifycredentials.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:128 actions/apigroupcreate.php:136 +#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 +#: actions/apigroupleave.php:141 actions/apigrouplist.php:132 +#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 +#: actions/apigroupshow.php:115 actions/apihelptest.php:88 +#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 +#: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 #: actions/apitimelineretweetedtome.php:121 -#: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141 -#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 +#: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 +#: actions/apitimelineuser.php:207 actions/apiusershow.php:101 msgid "API method not found." msgstr "Método da API não encontrado." @@ -152,7 +211,7 @@ msgstr "Método da API não encontrado." #: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 #: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 #: actions/apigroupleave.php:91 actions/apistatusesretweet.php:65 -#: actions/apistatusesupdate.php:114 +#: actions/apistatusesupdate.php:118 msgid "This method requires a POST." msgstr "Este método requer um POST." @@ -182,8 +241,9 @@ msgstr "Não foi possível gravar o perfil." #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:97 -#: actions/apistatusesupdate.php:127 actions/avatarsettings.php:257 -#: actions/designadminpanel.php:122 actions/newnotice.php:94 +#: actions/apistatusesupdate.php:131 actions/avatarsettings.php:257 +#: actions/designadminpanel.php:122 actions/editapplication.php:118 +#: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 #, php-format msgid "" @@ -301,11 +361,11 @@ msgstr "Não pode deixar de seguir-se a si próprio." msgid "Two user ids or screen_names must be supplied." msgstr "Devem ser fornecidos dois nomes de utilizador ou utilizadors." -#: actions/apifriendshipsshow.php:135 +#: actions/apifriendshipsshow.php:134 msgid "Could not determine source user." msgstr "Não foi possível determinar o utilizador de origem." -#: actions/apifriendshipsshow.php:143 +#: actions/apifriendshipsshow.php:142 msgid "Could not find target user." msgstr "Não foi possível encontrar o utilizador de destino." @@ -327,7 +387,8 @@ msgstr "Utilizador já é usado. Tente outro." msgid "Not a valid nickname." msgstr "Utilizador não é válido." -#: actions/apigroupcreate.php:196 actions/editgroup.php:195 +#: actions/apigroupcreate.php:196 actions/editapplication.php:215 +#: actions/editgroup.php:195 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:217 msgid "Homepage is not a valid URL." @@ -339,7 +400,8 @@ msgstr "Página de ínicio não é uma URL válida." msgid "Full name is too long (max 255 chars)." msgstr "Nome completo demasiado longo (máx. 255 caracteres)." -#: actions/apigroupcreate.php:213 +#: actions/apigroupcreate.php:213 actions/editapplication.php:190 +#: actions/newapplication.php:172 #, php-format msgid "Description is too long (max %d chars)." msgstr "Descrição demasiado longa (máx. 140 caracteres)." @@ -375,7 +437,7 @@ msgstr "Os sinónimos não podem ser iguais ao nome do utilizador." #: actions/apigroupismember.php:95 actions/apigroupjoin.php:104 #: actions/apigroupleave.php:104 actions/apigroupmembership.php:91 -#: actions/apigroupshow.php:90 actions/apitimelinegroup.php:91 +#: actions/apigroupshow.php:82 actions/apitimelinegroup.php:91 msgid "Group not found!" msgstr "Grupo não foi encontrado!" @@ -416,6 +478,116 @@ msgstr "Grupos de %s" msgid "groups on %s" msgstr "Grupos em %s" +#: actions/apioauthauthorize.php:101 +msgid "No oauth_token parameter provided." +msgstr "" + +#: actions/apioauthauthorize.php:106 +#, fuzzy +msgid "Invalid token." +msgstr "Tamanho inválido." + +#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 +#: actions/deletenotice.php:157 actions/disfavor.php:74 +#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54 +#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupunblock.php:66 actions/imsettings.php:206 +#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 +#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 +#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135 +#: actions/othersettings.php:145 actions/passwordsettings.php:138 +#: actions/profilesettings.php:194 actions/recoverpassword.php:337 +#: actions/register.php:165 actions/remotesubscribe.php:77 +#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 +#: actions/subscribe.php:86 actions/tagother.php:166 +#: 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 a sua sessão. Por favor, tente novamente." + +#: actions/apioauthauthorize.php:135 +#, fuzzy +msgid "Invalid nickname / password!" +msgstr "Nome de utilizador ou senha inválidos." + +#: actions/apioauthauthorize.php:159 +#, fuzzy +msgid "Database error deleting OAuth application user." +msgstr "Erro ao configurar utilizador." + +#: actions/apioauthauthorize.php:185 +#, fuzzy +msgid "Database error inserting OAuth application user." +msgstr "Erro na base de dados ao inserir a marca: %s" + +#: actions/apioauthauthorize.php:214 +#, php-format +msgid "" +"The request token %s has been authorized. Please exchange it for an access " +"token." +msgstr "" + +#: actions/apioauthauthorize.php:227 +#, php-format +msgid "The request token %s has been denied and revoked." +msgstr "" + +#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 +#: actions/designadminpanel.php:103 actions/editapplication.php:139 +#: actions/emailsettings.php:256 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/newapplication.php:121 +#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 +#: actions/smssettings.php:248 lib/designsettings.php:304 +msgid "Unexpected form submission." +msgstr "Envio inesperado de formulário." + +#: actions/apioauthauthorize.php:259 +msgid "An application would like to connect to your account" +msgstr "" + +#: actions/apioauthauthorize.php:276 +msgid "Allow or deny access" +msgstr "" + +#: actions/apioauthauthorize.php:292 +#, php-format +msgid "" +"The application %1$s by %2$s would like " +"the ability to %3$s your %4$s account data. You should only " +"give access to your %4$s account to third parties you trust." +msgstr "" + +#: actions/apioauthauthorize.php:310 lib/action.php:441 +msgid "Account" +msgstr "Conta" + +#: actions/apioauthauthorize.php:313 actions/login.php:230 +#: actions/profilesettings.php:106 actions/register.php:424 +#: actions/showgroup.php:236 actions/tagother.php:94 +#: actions/userauthorization.php:145 lib/groupeditform.php:152 +#: lib/userprofile.php:131 +msgid "Nickname" +msgstr "Utilizador" + +#: actions/apioauthauthorize.php:316 actions/login.php:233 +#: actions/register.php:429 lib/accountsettingsaction.php:116 +msgid "Password" +msgstr "Senha" + +#: actions/apioauthauthorize.php:328 +#, fuzzy +msgid "Deny" +msgstr "Estilo" + +#: actions/apioauthauthorize.php:334 +#, fuzzy +msgid "Allow" +msgstr "Todas" + +#: actions/apioauthauthorize.php:351 +msgid "Allow or deny access to your account information." +msgstr "" + #: actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." msgstr "Este método requer um POST ou DELETE." @@ -445,17 +617,17 @@ msgstr "Estado apagado." msgid "No status with that ID found." msgstr "Não foi encontrado um estado com esse ID." -#: actions/apistatusesupdate.php:157 actions/newnotice.php:155 +#: actions/apistatusesupdate.php:161 actions/newnotice.php:155 #: lib/mailhandler.php:60 #, php-format msgid "That's too long. Max notice size is %d chars." msgstr "Demasiado longo. Tamanho máx. das notas é %d caracteres." -#: actions/apistatusesupdate.php:198 +#: actions/apistatusesupdate.php:202 msgid "Not found" msgstr "Não encontrado" -#: actions/apistatusesupdate.php:221 actions/newnotice.php:178 +#: actions/apistatusesupdate.php:225 actions/newnotice.php:178 #, php-format msgid "Max notice size is %d chars, including attachment URL." msgstr "Tamanho máx. das notas é %d caracteres, incluíndo a URL do anexo." @@ -469,7 +641,7 @@ msgstr "Formato não suportado." msgid "%1$s / Favorites from %2$s" msgstr "%1$s / Favoritas de %2$s" -#: actions/apitimelinefavorites.php:120 +#: actions/apitimelinefavorites.php:117 #, php-format msgid "%1$s updates favorited by %2$s / %2$s." msgstr "%1$s actualizações preferidas por %2$s / %2$s." @@ -480,7 +652,7 @@ msgstr "%1$s actualizações preferidas por %2$s / %2$s." msgid "%s timeline" msgstr "Notas de %s" -#: actions/apitimelinegroup.php:117 actions/apitimelineuser.php:126 +#: actions/apitimelinegroup.php:114 actions/apitimelineuser.php:126 #: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" @@ -496,27 +668,22 @@ msgstr "%1$s / Actualizações que mencionam %2$s" msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "%1$s actualizações em resposta a actualizações de %2$s / %3$s." -#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "Notas públicas de %s" -#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "%s actualizações de todos!" -#: actions/apitimelineretweetedbyme.php:112 -#, php-format -msgid "Repeated by %s" -msgstr "Repetida por %s" - #: actions/apitimelineretweetedtome.php:111 #, php-format msgid "Repeated to %s" msgstr "Repetida para %s" -#: actions/apitimelineretweetsofme.php:112 +#: actions/apitimelineretweetsofme.php:114 #, php-format msgid "Repeats of %s" msgstr "Repetências de %s" @@ -526,7 +693,7 @@ msgstr "Repetências de %s" msgid "Notices tagged with %s" msgstr "Notas categorizadas com %s" -#: actions/apitimelinetag.php:108 actions/tagrss.php:64 +#: actions/apitimelinetag.php:104 actions/tagrss.php:64 #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Actualizações categorizadas com %1$s em %2$s!" @@ -586,8 +753,8 @@ msgstr "Original" msgid "Preview" msgstr "Antevisão" -#: actions/avatarsettings.php:149 lib/deleteuserform.php:66 -#: lib/noticelist.php:611 +#: actions/avatarsettings.php:149 actions/showapplication.php:252 +#: lib/deleteuserform.php:66 lib/noticelist.php:637 msgid "Delete" msgstr "Apagar" @@ -599,29 +766,6 @@ msgstr "Carregar" msgid "Crop" msgstr "Cortar" -#: actions/avatarsettings.php:268 actions/deletenotice.php:157 -#: actions/disfavor.php:74 actions/emailsettings.php:238 actions/favor.php:75 -#: actions/geocode.php:50 actions/groupblock.php:66 actions/grouplogo.php:309 -#: actions/groupunblock.php:66 actions/imsettings.php:206 -#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 -#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 -#: actions/othersettings.php:145 actions/passwordsettings.php:138 -#: actions/profilesettings.php:194 actions/recoverpassword.php:337 -#: actions/register.php:165 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 -#: actions/subscribe.php:46 actions/tagother.php:166 -#: 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 a sua sessão. Por favor, tente novamente." - -#: actions/avatarsettings.php:281 actions/designadminpanel.php:103 -#: actions/emailsettings.php:256 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 inesperado de formulário." - #: actions/avatarsettings.php:328 msgid "Pick a square area of the image to be your avatar" msgstr "Escolha uma área quadrada da imagem para ser o seu avatar" @@ -660,8 +804,9 @@ msgstr "" "subscrição por este utilizador será cancelada, ele não poderá subscrevê-lo " "de futuro e você não receberá notificações das @-respostas dele." -#: actions/block.php:143 actions/deletenotice.php:145 -#: actions/deleteuser.php:147 actions/groupblock.php:178 +#: actions/block.php:143 actions/deleteapplication.php:153 +#: actions/deletenotice.php:145 actions/deleteuser.php:147 +#: actions/groupblock.php:178 msgid "No" msgstr "Não" @@ -669,13 +814,13 @@ msgstr "Não" msgid "Do not block this user" msgstr "Não bloquear este utilizador" -#: actions/block.php:144 actions/deletenotice.php:146 -#: actions/deleteuser.php:148 actions/groupblock.php:179 -#: lib/repeatform.php:132 +#: actions/block.php:144 actions/deleteapplication.php:158 +#: actions/deletenotice.php:146 actions/deleteuser.php:148 +#: actions/groupblock.php:179 lib/repeatform.php:132 msgid "Yes" msgstr "Sim" -#: actions/block.php:144 actions/groupmembers.php:346 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80 msgid "Block this user" msgstr "Bloquear este utilizador" @@ -758,7 +903,8 @@ msgid "Couldn't delete email confirmation." msgstr "Não foi possível apagar a confirmação do endereço electrónico." #: actions/confirmaddress.php:144 -msgid "Confirm Address" +#, fuzzy +msgid "Confirm address" msgstr "Confirmar Endereço" #: actions/confirmaddress.php:159 @@ -775,10 +921,57 @@ msgstr "Conversação" msgid "Notices" msgstr "Notas" +#: actions/deleteapplication.php:63 +#, fuzzy +msgid "You must be logged in to delete an application." +msgstr "Precisa de iniciar sessão para editar um grupo." + +#: actions/deleteapplication.php:71 +#, fuzzy +msgid "Application not found." +msgstr "Nota não tem perfil" + +#: actions/deleteapplication.php:78 actions/editapplication.php:77 +#: actions/showapplication.php:94 +#, fuzzy +msgid "You are not the owner of this application." +msgstr "Não é membro deste grupo." + +#: actions/deleteapplication.php:102 actions/editapplication.php:127 +#: actions/newapplication.php:110 actions/showapplication.php:118 +#: lib/action.php:1197 +msgid "There was a problem with your session token." +msgstr "Ocorreu um problema com a sua sessão." + +#: actions/deleteapplication.php:123 actions/deleteapplication.php:147 +#, fuzzy +msgid "Delete application" +msgstr "Nota não encontrada." + +#: actions/deleteapplication.php:149 +#, fuzzy +msgid "" +"Are you sure you want to delete this application? This will clear all data " +"about the application from the database, including all existing user " +"connections." +msgstr "" +"Tem a certeza de que quer apagar este utilizador? Todos os dados do " +"utilizador serão eliminados da base de dados, sem haver cópias." + +#: actions/deleteapplication.php:156 +#, fuzzy +msgid "Do not delete this application" +msgstr "Não apagar esta nota" + +#: actions/deleteapplication.php:160 +#, fuzzy +msgid "Delete this application" +msgstr "Apagar esta nota" + #: 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/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 #: lib/adminpanelaction.php:72 lib/profileformaction.php:63 #: lib/settingsaction.php:72 @@ -809,7 +1002,7 @@ msgstr "Tem a certeza de que quer apagar esta nota?" msgid "Do not delete this notice" msgstr "Não apagar esta nota" -#: actions/deletenotice.php:146 lib/noticelist.php:611 +#: actions/deletenotice.php:146 lib/noticelist.php:637 msgid "Delete this notice" msgstr "Apagar esta nota" @@ -941,16 +1134,6 @@ msgstr "Repor estilos predefinidos" msgid "Reset back to default" msgstr "Repor predefinição" -#: actions/designadminpanel.php:586 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 -#: actions/pathsadminpanel.php:324 actions/profilesettings.php:174 -#: actions/siteadminpanel.php:388 actions/smssettings.php:181 -#: actions/subscriptions.php:203 actions/tagother.php:154 -#: actions/useradminpanel.php:313 lib/designsettings.php:256 -#: lib/groupeditform.php:202 -msgid "Save" -msgstr "Gravar" - #: actions/designadminpanel.php:587 lib/designsettings.php:257 msgid "Save design" msgstr "Gravar o estilo" @@ -963,10 +1146,88 @@ msgstr "Esta nota não é uma favorita!" msgid "Add to favorites" msgstr "Adicionar às favoritas" -#: actions/doc.php:69 -msgid "No such document." +#: actions/doc.php:158 +#, fuzzy, php-format +msgid "No such document \"%s\"" msgstr "Documento não encontrado." +#: actions/editapplication.php:54 +#, fuzzy +msgid "Edit Application" +msgstr "Outras opções" + +#: actions/editapplication.php:66 +#, fuzzy +msgid "You must be logged in to edit an application." +msgstr "Precisa de iniciar sessão para editar um grupo." + +#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:166 +#: actions/showapplication.php:87 +#, fuzzy +msgid "No such application." +msgstr "Nota não encontrada." + +#: actions/editapplication.php:161 +#, fuzzy +msgid "Use this form to edit your application." +msgstr "Use este formulário para editar o grupo." + +#: actions/editapplication.php:177 actions/newapplication.php:159 +#, fuzzy +msgid "Name is required." +msgstr "Repita a senha acima. Obrigatório." + +#: actions/editapplication.php:180 actions/newapplication.php:165 +#, fuzzy +msgid "Name is too long (max 255 chars)." +msgstr "Nome completo demasiado longo (máx. 255 caracteres)." + +#: actions/editapplication.php:183 actions/newapplication.php:162 +#, fuzzy +msgid "Name already in use. Try another one." +msgstr "Utilizador já é usado. Tente outro." + +#: actions/editapplication.php:186 actions/newapplication.php:168 +#, fuzzy +msgid "Description is required." +msgstr "Descrição" + +#: actions/editapplication.php:194 +msgid "Source URL is too long." +msgstr "" + +#: actions/editapplication.php:200 actions/newapplication.php:185 +#, fuzzy +msgid "Source URL is not valid." +msgstr "A URL ‘%s’ do avatar é inválida." + +#: actions/editapplication.php:203 actions/newapplication.php:188 +msgid "Organization is required." +msgstr "" + +#: actions/editapplication.php:206 actions/newapplication.php:191 +#, fuzzy +msgid "Organization is too long (max 255 chars)." +msgstr "Localidade demasiado longa (máx. 255 caracteres)." + +#: actions/editapplication.php:209 actions/newapplication.php:194 +msgid "Organization homepage is required." +msgstr "" + +#: actions/editapplication.php:218 actions/newapplication.php:206 +msgid "Callback is too long." +msgstr "" + +#: actions/editapplication.php:225 actions/newapplication.php:215 +#, fuzzy +msgid "Callback URL is not valid." +msgstr "A URL ‘%s’ do avatar é inválida." + +#: actions/editapplication.php:258 +#, fuzzy +msgid "Could not update application." +msgstr "Não foi possível actualizar o grupo." + #: actions/editgroup.php:56 #, php-format msgid "Edit %s group" @@ -994,7 +1255,7 @@ msgstr "descrição é demasiada extensa (máx. %d caracteres)." msgid "Could not update group." msgstr "Não foi possível actualizar o grupo." -#: actions/editgroup.php:259 classes/User_group.php:390 +#: actions/editgroup.php:259 classes/User_group.php:433 msgid "Could not create aliases." msgstr "Não foi possível criar sinónimos." @@ -1035,7 +1296,8 @@ msgstr "" "na caixa de spam!) uma mensagem com mais instruções." #: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 +#: actions/smssettings.php:126 lib/applicationeditform.php:331 +#: lib/applicationeditform.php:332 msgid "Cancel" msgstr "Cancelar" @@ -1120,7 +1382,7 @@ msgid "Cannot normalize that email address" msgstr "Não é possível normalizar esse endereço electrónico" #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:157 +#: actions/siteadminpanel.php:143 msgid "Not a valid email address." msgstr "Correio electrónico é inválido." @@ -1132,7 +1394,7 @@ msgstr "Esse já é o seu endereço electrónico." msgid "That email address already belongs to another user." msgstr "Esse endereço electrónico já pertence a outro utilizador." -#: actions/emailsettings.php:353 actions/imsettings.php:317 +#: actions/emailsettings.php:353 actions/imsettings.php:319 #: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." msgstr "Não foi possível inserir o código de confirmação." @@ -1194,7 +1456,7 @@ msgstr "Esta nota já é uma favorita!" msgid "Disfavor favorite" msgstr "Retirar das favoritas" -#: actions/favorited.php:65 lib/popularnoticesection.php:88 +#: actions/favorited.php:65 lib/popularnoticesection.php:91 #: lib/publicgroupnav.php:93 msgid "Popular notices" msgstr "Notas populares" @@ -1341,7 +1603,7 @@ msgstr "Acesso do utilizador ao grupo já foi bloqueado." msgid "User is not a member of group." msgstr "Utilizador não é membro do grupo." -#: actions/groupblock.php:136 actions/groupmembers.php:314 +#: actions/groupblock.php:136 actions/groupmembers.php:316 msgid "Block user from group" msgstr "Bloquear acesso do utilizador ao grupo" @@ -1439,23 +1701,23 @@ msgstr "Membros do grupo %1$s, página %2$d" msgid "A list of the users in this group." msgstr "Uma lista dos utilizadores neste grupo." -#: actions/groupmembers.php:175 lib/action.php:442 lib/groupnav.php:107 +#: actions/groupmembers.php:175 lib/action.php:448 lib/groupnav.php:107 msgid "Admin" msgstr "Gestor" -#: actions/groupmembers.php:346 lib/blockform.php:69 +#: actions/groupmembers.php:348 lib/blockform.php:69 msgid "Block" msgstr "Bloquear" -#: actions/groupmembers.php:441 +#: actions/groupmembers.php:443 msgid "Make user an admin of the group" msgstr "Tornar utilizador o gestor do grupo" -#: actions/groupmembers.php:473 +#: actions/groupmembers.php:475 msgid "Make Admin" msgstr "Tornar Gestor" -#: actions/groupmembers.php:473 +#: actions/groupmembers.php:475 msgid "Make this user an admin" msgstr "Tornar este utilizador um gestor" @@ -1635,6 +1897,11 @@ msgstr "" msgid "That is not your Jabber ID." msgstr "Esse não é o seu Jabber ID." +#: actions/inbox.php:59 +#, fuzzy, php-format +msgid "Inbox for %1$s - page %2$d" +msgstr "Caixa de entrada de %s" + #: actions/inbox.php:62 #, php-format msgid "Inbox for %s" @@ -1719,7 +1986,7 @@ msgstr "Mensagem pessoal" msgid "Optionally add a personal message to the invitation." msgstr "Pode optar por acrescentar uma mensagem pessoal ao convite" -#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:237 +#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:236 msgid "Send" msgstr "Enviar" @@ -1818,7 +2085,7 @@ msgstr "Nome de utilizador ou senha incorrectos." msgid "Error setting user. You are probably not authorized." msgstr "Erro ao preparar o utilizador. Provavelmente não está autorizado." -#: actions/login.php:188 actions/login.php:241 lib/action.php:460 +#: actions/login.php:188 actions/login.php:241 lib/action.php:466 #: lib/logingroupnav.php:79 msgid "Login" msgstr "Entrar" @@ -1827,17 +2094,6 @@ msgstr "Entrar" msgid "Login to site" msgstr "Iniciar sessão no site" -#: actions/login.php:230 actions/profilesettings.php:106 -#: actions/register.php:424 actions/showgroup.php:236 actions/tagother.php:94 -#: lib/groupeditform.php:152 lib/userprofile.php:131 -msgid "Nickname" -msgstr "Utilizador" - -#: actions/login.php:233 actions/register.php:429 -#: lib/accountsettingsaction.php:116 -msgid "Password" -msgstr "Senha" - #: actions/login.php:236 actions/register.php:478 msgid "Remember me" msgstr "Lembrar-me neste computador" @@ -1869,21 +2125,21 @@ msgstr "" "Entrar com o seu nome de utilizador e senha. Ainda não está registado? " "[Registe](%%action.register%%) uma conta." -#: actions/makeadmin.php:91 +#: actions/makeadmin.php:92 msgid "Only an admin can make another user an admin." msgstr "Só um gestor pode tornar outro utilizador num gestor." -#: actions/makeadmin.php:95 +#: actions/makeadmin.php:96 #, php-format msgid "%1$s is already an admin for group \"%2$s\"." msgstr "%1$s já é um administrador do grupo \"%2$s\"." -#: actions/makeadmin.php:132 +#: actions/makeadmin.php:133 #, php-format msgid "Can't get membership record for %1$s in group %2$s." msgstr "Não existe registo de %1$s ter entrado no grupo %2$s." -#: actions/makeadmin.php:145 +#: actions/makeadmin.php:146 #, php-format msgid "Can't make %1$s an admin for group %2$s." msgstr "Não é possível tornar %1$s administrador do grupo %2$s." @@ -1892,6 +2148,30 @@ msgstr "Não é possível tornar %1$s administrador do grupo %2$s." msgid "No current status" msgstr "Sem estado actual" +#: actions/newapplication.php:52 +#, fuzzy +msgid "New Application" +msgstr "Nota não encontrada." + +#: actions/newapplication.php:64 +#, fuzzy +msgid "You must be logged in to register an application." +msgstr "Tem de iniciar uma sessão para criar o grupo." + +#: actions/newapplication.php:143 +#, fuzzy +msgid "Use this form to register a new application." +msgstr "Use este formulário para criar um grupo novo." + +#: actions/newapplication.php:176 +msgid "Source URL is required." +msgstr "" + +#: actions/newapplication.php:258 actions/newapplication.php:267 +#, fuzzy +msgid "Could not create application." +msgstr "Não foi possível criar sinónimos." + #: actions/newgroup.php:53 msgid "New group" msgstr "Grupo novo" @@ -2004,6 +2284,51 @@ msgstr "Toque enviado" msgid "Nudge sent!" msgstr "Toque enviado!" +#: actions/oauthappssettings.php:59 +#, fuzzy +msgid "You must be logged in to list your applications." +msgstr "Precisa de iniciar sessão para editar um grupo." + +#: actions/oauthappssettings.php:74 +#, fuzzy +msgid "OAuth applications" +msgstr "Outras opções" + +#: actions/oauthappssettings.php:85 +msgid "Applications you have registered" +msgstr "" + +#: actions/oauthappssettings.php:135 +#, php-format +msgid "You have not registered any applications yet." +msgstr "" + +#: actions/oauthconnectionssettings.php:72 +msgid "Connected applications" +msgstr "" + +#: actions/oauthconnectionssettings.php:83 +msgid "You have allowed the following applications to access you account." +msgstr "" + +#: actions/oauthconnectionssettings.php:175 +#, fuzzy +msgid "You are not a user of that application." +msgstr "Não é um membro desse grupo." + +#: actions/oauthconnectionssettings.php:186 +msgid "Unable to revoke access for app: " +msgstr "" + +#: actions/oauthconnectionssettings.php:198 +#, php-format +msgid "You have not authorized any applications to use your account." +msgstr "" + +#: actions/oauthconnectionssettings.php:211 +msgid "Developers can edit the registration settings for their applications " +msgstr "" + #: actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" msgstr "Nota não tem perfil" @@ -2021,8 +2346,8 @@ msgstr "tipo de conteúdo " msgid "Only " msgstr "Apenas " -#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1033 -#: lib/api.php:1061 lib/api.php:1171 +#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 +#: lib/api.php:1068 lib/api.php:1177 msgid "Not a supported data format." msgstr "Formato de dados não suportado." @@ -2035,7 +2360,8 @@ msgid "Notice Search" msgstr "Pesquisa de Notas" #: actions/othersettings.php:60 -msgid "Other Settings" +#, fuzzy +msgid "Other settings" msgstr "Outras Configurações" #: actions/othersettings.php:71 @@ -2091,6 +2417,11 @@ msgstr "Chave inválida ou expirada." msgid "Login token expired." msgstr "Iniciar sessão no site" +#: actions/outbox.php:58 +#, fuzzy, php-format +msgid "Outbox for %1$s - page %2$d" +msgstr "Caixa de saída de %s" + #: actions/outbox.php:61 #, php-format msgid "Outbox for %s" @@ -2162,7 +2493,7 @@ msgstr "Não é possível guardar a nova senha." msgid "Password saved." msgstr "Senha gravada." -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:326 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:331 msgid "Paths" msgstr "Localizações" @@ -2170,132 +2501,148 @@ msgstr "Localizações" msgid "Path and server settings for this StatusNet site." msgstr "Configurações de localização e servidor deste site StatusNet." -#: actions/pathsadminpanel.php:140 +#: actions/pathsadminpanel.php:157 #, php-format msgid "Theme directory not readable: %s" msgstr "Sem acesso de leitura do directório do tema: %s" -#: actions/pathsadminpanel.php:146 +#: actions/pathsadminpanel.php:163 #, php-format msgid "Avatar directory not writable: %s" msgstr "Sem acesso de escrita no directório do avatar: %s" -#: actions/pathsadminpanel.php:152 +#: actions/pathsadminpanel.php:169 #, php-format msgid "Background directory not writable: %s" msgstr "Sem acesso de escrita no directório do fundo: %s" -#: actions/pathsadminpanel.php:160 +#: actions/pathsadminpanel.php:177 #, php-format msgid "Locales directory not readable: %s" msgstr "Sem acesso de leitura ao directório de idiomas: %s" -#: actions/pathsadminpanel.php:166 +#: actions/pathsadminpanel.php:183 msgid "Invalid SSL server. The maximum length is 255 characters." msgstr "Servidor SSL inválido. O tamanho máximo é 255 caracteres." -#: actions/pathsadminpanel.php:217 actions/siteadminpanel.php:58 +#: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58 #: lib/adminpanelaction.php:311 msgid "Site" msgstr "Site" -#: actions/pathsadminpanel.php:221 +#: actions/pathsadminpanel.php:238 +msgid "Server" +msgstr "Servidor" + +#: actions/pathsadminpanel.php:238 +msgid "Site's server hostname." +msgstr "Nome do servidor do site." + +#: actions/pathsadminpanel.php:242 msgid "Path" msgstr "Localização" -#: actions/pathsadminpanel.php:221 +#: actions/pathsadminpanel.php:242 msgid "Site path" msgstr "Localização do site" -#: actions/pathsadminpanel.php:225 +#: actions/pathsadminpanel.php:246 msgid "Path to locales" msgstr "Localização de idiomas" -#: actions/pathsadminpanel.php:225 +#: actions/pathsadminpanel.php:246 msgid "Directory path to locales" msgstr "Localização do directório de idiomas" -#: actions/pathsadminpanel.php:232 +#: actions/pathsadminpanel.php:250 +msgid "Fancy URLs" +msgstr "URLs bonitas" + +#: actions/pathsadminpanel.php:252 +msgid "Use fancy (more readable and memorable) URLs?" +msgstr "Usar URLs bonitas (mais legíveis e memoráveis)" + +#: actions/pathsadminpanel.php:259 msgid "Theme" msgstr "Tema" -#: actions/pathsadminpanel.php:237 +#: actions/pathsadminpanel.php:264 msgid "Theme server" msgstr "Servidor do tema" -#: actions/pathsadminpanel.php:241 +#: actions/pathsadminpanel.php:268 msgid "Theme path" msgstr "Localização do tema" -#: actions/pathsadminpanel.php:245 +#: actions/pathsadminpanel.php:272 msgid "Theme directory" msgstr "Directório do tema" -#: actions/pathsadminpanel.php:252 +#: actions/pathsadminpanel.php:279 msgid "Avatars" msgstr "Avatares" -#: actions/pathsadminpanel.php:257 +#: actions/pathsadminpanel.php:284 msgid "Avatar server" msgstr "Servidor do avatar" -#: actions/pathsadminpanel.php:261 +#: actions/pathsadminpanel.php:288 msgid "Avatar path" msgstr "Localização do avatar" -#: actions/pathsadminpanel.php:265 +#: actions/pathsadminpanel.php:292 msgid "Avatar directory" msgstr "Directório do avatar" -#: actions/pathsadminpanel.php:274 +#: actions/pathsadminpanel.php:301 msgid "Backgrounds" msgstr "Fundos" -#: actions/pathsadminpanel.php:278 +#: actions/pathsadminpanel.php:305 msgid "Background server" msgstr "Servidor de fundos" -#: actions/pathsadminpanel.php:282 +#: actions/pathsadminpanel.php:309 msgid "Background path" msgstr "Localização dos fundos" -#: actions/pathsadminpanel.php:286 +#: actions/pathsadminpanel.php:313 msgid "Background directory" msgstr "Directório dos fundos" -#: actions/pathsadminpanel.php:293 +#: actions/pathsadminpanel.php:320 msgid "SSL" msgstr "SSL" -#: actions/pathsadminpanel.php:296 actions/siteadminpanel.php:346 +#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 msgid "Never" msgstr "Nunca" -#: actions/pathsadminpanel.php:297 +#: actions/pathsadminpanel.php:324 msgid "Sometimes" msgstr "Às vezes" -#: actions/pathsadminpanel.php:298 +#: actions/pathsadminpanel.php:325 msgid "Always" msgstr "Sempre" -#: actions/pathsadminpanel.php:302 +#: actions/pathsadminpanel.php:329 msgid "Use SSL" msgstr "Usar SSL" -#: actions/pathsadminpanel.php:303 +#: actions/pathsadminpanel.php:330 msgid "When to use SSL" msgstr "Quando usar SSL" -#: actions/pathsadminpanel.php:308 +#: actions/pathsadminpanel.php:335 msgid "SSL server" msgstr "Servidor SSL" -#: actions/pathsadminpanel.php:309 +#: actions/pathsadminpanel.php:336 msgid "Server to direct SSL requests to" msgstr "Servidor para onde encaminhar pedidos SSL" -#: actions/pathsadminpanel.php:325 +#: actions/pathsadminpanel.php:352 msgid "Save paths" msgstr "Gravar localizações" @@ -2359,7 +2706,7 @@ msgid "Full name" msgstr "Nome completo" #: actions/profilesettings.php:115 actions/register.php:453 -#: lib/groupeditform.php:161 +#: lib/applicationeditform.php:228 lib/groupeditform.php:161 msgid "Homepage" msgstr "Página pessoal" @@ -2382,7 +2729,7 @@ msgstr "Biografia" #: actions/profilesettings.php:132 actions/register.php:471 #: actions/showgroup.php:256 actions/tagother.php:112 -#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:164 msgid "Location" msgstr "Localidade" @@ -2408,7 +2755,7 @@ msgstr "" "Categorias para si (letras, números, -, ., _), separadas por vírgulas ou " "espaços" -#: actions/profilesettings.php:151 actions/siteadminpanel.php:294 +#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 msgid "Language" msgstr "Idioma" @@ -2434,7 +2781,7 @@ msgstr "Subscrever automaticamente quem me subscreva (óptimo para não-humanos) msgid "Bio is too long (max %d chars)." msgstr "Biografia demasiado extensa (máx. %d caracteres)." -#: actions/profilesettings.php:235 actions/siteadminpanel.php:164 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 msgid "Timezone not selected." msgstr "Fuso horário não foi seleccionado." @@ -2447,23 +2794,23 @@ msgstr "Idioma é demasiado extenso (máx. 50 caracteres)." msgid "Invalid tag: \"%s\"" msgstr "Categoria inválida: \"%s\"" -#: actions/profilesettings.php:302 +#: actions/profilesettings.php:306 msgid "Couldn't update user for autosubscribe." msgstr "Não foi possível actualizar o utilizador para subscrição automática." -#: actions/profilesettings.php:359 +#: actions/profilesettings.php:363 msgid "Couldn't save location prefs." msgstr "Não foi possível gravar as preferências de localização." -#: actions/profilesettings.php:371 +#: actions/profilesettings.php:375 msgid "Couldn't save profile." msgstr "Não foi possível gravar o perfil." -#: actions/profilesettings.php:379 +#: actions/profilesettings.php:383 msgid "Couldn't save tags." msgstr "Não foi possível gravar as categorias." -#: actions/profilesettings.php:387 lib/adminpanelaction.php:137 +#: actions/profilesettings.php:391 lib/adminpanelaction.php:137 msgid "Settings saved." msgstr "Configurações gravadas." @@ -2485,19 +2832,19 @@ msgstr "Notas públicas, página %d" msgid "Public timeline" msgstr "Notas públicas" -#: actions/public.php:151 +#: actions/public.php:159 msgid "Public Stream Feed (RSS 1.0)" msgstr "Fonte de Notas Públicas (RSS 1.0)" -#: actions/public.php:155 +#: actions/public.php:163 msgid "Public Stream Feed (RSS 2.0)" msgstr "Fonte de Notas Públicas (RSS 2.0)" -#: actions/public.php:159 +#: actions/public.php:167 msgid "Public Stream Feed (Atom)" msgstr "Fonte de Notas Públicas (Atom)" -#: actions/public.php:179 +#: actions/public.php:187 #, php-format msgid "" "This is the public timeline for %%site.name%% but no one has posted anything " @@ -2506,11 +2853,11 @@ msgstr "" "Estas são as notas públicas do site %%site.name%% mas ninguém publicou nada " "ainda." -#: actions/public.php:182 +#: actions/public.php:190 msgid "Be the first to post!" msgstr "Seja a primeira pessoa a publicar!" -#: actions/public.php:186 +#: actions/public.php:194 #, php-format msgid "" "Why not [register an account](%%action.register%%) and be the first to post!" @@ -2518,7 +2865,7 @@ msgstr "" "Podia [registar uma conta](%%action.register%%) e ser a primeira pessoa a " "publicar!" -#: actions/public.php:233 +#: actions/public.php:241 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2531,7 +2878,7 @@ msgstr "" "[StatusNet](http://status.net/). [Registe-se agora](%%action.register%%) " "para partilhar notas sobre si, família e amigos! ([Saber mais](%%doc.help%%))" -#: actions/public.php:238 +#: actions/public.php:246 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2569,7 +2916,7 @@ msgstr "" "Podia [registar uma conta](%%action.register%%) e ser a primeira pessoa a " "publicar uma!" -#: actions/publictagcloud.php:131 +#: actions/publictagcloud.php:134 msgid "Tag cloud" msgstr "Nuvem de categorias" @@ -2713,7 +3060,7 @@ msgstr "Desculpe, código de convite inválido." msgid "Registration successful" msgstr "Registo efectuado" -#: actions/register.php:114 actions/register.php:503 lib/action.php:457 +#: actions/register.php:114 actions/register.php:503 lib/action.php:463 #: lib/logingroupnav.php:85 msgid "Register" msgstr "Registar" @@ -2756,7 +3103,7 @@ msgid "Same as password above. Required." msgstr "Repita a senha acima. Obrigatório." #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:270 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 msgid "Email" msgstr "Correio" @@ -2862,7 +3209,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "URL do seu perfil noutro serviço de microblogues compatível" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:365 +#: lib/userprofile.php:368 msgid "Subscribe" msgstr "Subscrever" @@ -2900,7 +3247,7 @@ msgstr "Não pode repetir a sua própria nota." msgid "You already repeated that notice." msgstr "Já repetiu essa nota." -#: actions/repeat.php:114 lib/noticelist.php:629 +#: actions/repeat.php:114 lib/noticelist.php:656 msgid "Repeated" msgstr "Repetida" @@ -2914,6 +3261,11 @@ msgstr "Repetida!" msgid "Replies to %s" msgstr "Respostas a %s" +#: actions/replies.php:127 +#, fuzzy, php-format +msgid "Replies to %1$s, page %2$d" +msgstr "Respostas a %1$s em %2$s!" + #: actions/replies.php:144 #, php-format msgid "Replies feed for %s (RSS 1.0)" @@ -2961,6 +3313,10 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "Respostas a %1$s em %2$s!" +#: actions/rsd.php:146 actions/version.php:157 +msgid "StatusNet" +msgstr "StatusNet" + #: actions/sandbox.php:65 actions/unsandbox.php:65 msgid "You cannot sandbox users on this site." msgstr "Não pode impedir notas públicas neste site." @@ -2969,6 +3325,125 @@ msgstr "Não pode impedir notas públicas neste site." msgid "User is already sandboxed." msgstr "Utilizador já está impedido de criar notas públicas." +#: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:336 +msgid "Sessions" +msgstr "Sessões" + +#: actions/sessionsadminpanel.php:65 +#, fuzzy +msgid "Session settings for this StatusNet site." +msgstr "Configurações do estilo deste site StatusNet." + +#: actions/sessionsadminpanel.php:175 +msgid "Handle sessions" +msgstr "Gerir sessões" + +#: actions/sessionsadminpanel.php:177 +msgid "Whether to handle sessions ourselves." +msgstr "Se devemos gerir sessões nós próprios." + +#: actions/sessionsadminpanel.php:181 +msgid "Session debugging" +msgstr "Depuração de sessões" + +#: actions/sessionsadminpanel.php:183 +msgid "Turn on debugging output for sessions." +msgstr "Ligar a impressão de dados de depuração, para sessões." + +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/useradminpanel.php:293 +msgid "Save site settings" +msgstr "Gravar configurações do site" + +#: actions/showapplication.php:82 +#, fuzzy +msgid "You must be logged in to view an application." +msgstr "Precisa de iniciar uma sessão para deixar um grupo." + +#: actions/showapplication.php:157 +#, fuzzy +msgid "Application profile" +msgstr "Nota não tem perfil" + +#: actions/showapplication.php:159 lib/applicationeditform.php:180 +msgid "Icon" +msgstr "" + +#: actions/showapplication.php:169 actions/version.php:195 +#: lib/applicationeditform.php:195 +msgid "Name" +msgstr "Nome" + +#: actions/showapplication.php:178 lib/applicationeditform.php:222 +#, fuzzy +msgid "Organization" +msgstr "Paginação" + +#: actions/showapplication.php:187 actions/version.php:198 +#: lib/applicationeditform.php:209 lib/groupeditform.php:172 +msgid "Description" +msgstr "Descrição" + +#: actions/showapplication.php:192 actions/showgroup.php:429 +#: lib/profileaction.php:174 +msgid "Statistics" +msgstr "Estatísticas" + +#: actions/showapplication.php:203 +#, php-format +msgid "Created by %1$s - %2$s access by default - %3$d users" +msgstr "" + +#: actions/showapplication.php:213 +msgid "Application actions" +msgstr "" + +#: actions/showapplication.php:236 +msgid "Reset key & secret" +msgstr "" + +#: actions/showapplication.php:261 +msgid "Application info" +msgstr "" + +#: actions/showapplication.php:263 +msgid "Consumer key" +msgstr "" + +#: actions/showapplication.php:268 +msgid "Consumer secret" +msgstr "" + +#: actions/showapplication.php:273 +msgid "Request token URL" +msgstr "" + +#: actions/showapplication.php:278 +msgid "Access token URL" +msgstr "" + +#: actions/showapplication.php:283 +#, fuzzy +msgid "Authorize URL" +msgstr "Autor" + +#: actions/showapplication.php:288 +msgid "" +"Note: We support HMAC-SHA1 signatures. We do not support the plaintext " +"signature method." +msgstr "" + +#: actions/showapplication.php:309 +#, fuzzy +msgid "Are you sure you want to reset your consumer key and secret?" +msgstr "Tem a certeza de que quer apagar esta nota?" + +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%1$s's favorite notices, page %2$d" +msgstr "Notas favoritas de %s" + #: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "Não foi possível importar notas favoritas." @@ -3026,17 +3501,22 @@ msgstr "Esta é uma forma de partilhar aquilo de que gosta." msgid "%s group" msgstr "Grupo %s" +#: actions/showgroup.php:84 +#, fuzzy, php-format +msgid "%1$s group, page %2$d" +msgstr "Membros do grupo %1$s, página %2$d" + #: actions/showgroup.php:218 msgid "Group profile" msgstr "Perfil do grupo" #: actions/showgroup.php:263 actions/tagother.php:118 -#: actions/userauthorization.php:167 lib/userprofile.php:177 +#: actions/userauthorization.php:175 lib/userprofile.php:177 msgid "URL" msgstr "URL" #: actions/showgroup.php:274 actions/tagother.php:128 -#: actions/userauthorization.php:179 lib/userprofile.php:194 +#: actions/userauthorization.php:187 lib/userprofile.php:194 msgid "Note" msgstr "Anotação" @@ -3082,10 +3562,6 @@ msgstr "(Nenhum)" msgid "All members" msgstr "Todos os membros" -#: actions/showgroup.php:429 lib/profileaction.php:174 -msgid "Statistics" -msgstr "Estatísticas" - #: actions/showgroup.php:432 msgid "Created" msgstr "Criado" @@ -3150,6 +3626,11 @@ msgstr "Avatar actualizado." msgid " tagged %s" msgstr " categorizou %s" +#: actions/showstream.php:79 +#, fuzzy, php-format +msgid "%1$s, page %2$d" +msgstr "Perfis bloqueados de %1$s, página %2$d" + #: actions/showstream.php:122 #, php-format msgid "Notice feed for %1$s tagged %2$s (RSS 1.0)" @@ -3175,12 +3656,12 @@ msgstr "Fonte de notas para %s (Atom)" msgid "FOAF for %s" msgstr "FOAF para %s" -#: actions/showstream.php:191 +#: actions/showstream.php:200 #, php-format msgid "This is the timeline for %1$s but %2$s hasn't posted anything yet." msgstr "Estas são as notas de %1$s, mas %2$s ainda não publicou nenhuma." -#: actions/showstream.php:196 +#: actions/showstream.php:205 msgid "" "Seen anything interesting recently? You haven't posted any notices yet, now " "would be a good time to start :)" @@ -3188,7 +3669,7 @@ msgstr "" "Viu algo de interessante ultimamente? Como ainda não publicou nenhuma nota, " "esta seria uma óptima altura para começar :)" -#: actions/showstream.php:198 +#: actions/showstream.php:207 #, php-format msgid "" "You can try to nudge %1$s or [post something to his or her attention](%%%%" @@ -3197,7 +3678,7 @@ msgstr "" "Pode tentar dar um toque em %1$s ou [publicar algo à sua atenção](%%%%action." "newnotice%%%%?status_textarea=%2$s)." -#: actions/showstream.php:234 +#: actions/showstream.php:243 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3211,7 +3692,7 @@ msgstr "" "register%%) para seguir as notas de **%s** e de muitos mais! ([Saber mais](%%" "doc.help%%))" -#: actions/showstream.php:239 +#: actions/showstream.php:248 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3222,7 +3703,7 @@ msgstr "" "(http://en.wikipedia.org/wiki/Micro-blogging) baseado no programa de " "Software Livre [StatusNet](http://status.net/). " -#: actions/showstream.php:313 +#: actions/showstream.php:305 #, php-format msgid "Repeat of %s" msgstr "Repetência de %s" @@ -3239,197 +3720,145 @@ msgstr "O utilizador já está silenciado." msgid "Basic settings for this StatusNet site." msgstr "Configurações básicas para este site StatusNet." -#: actions/siteadminpanel.php:146 +#: actions/siteadminpanel.php:132 msgid "Site name must have non-zero length." msgstr "Nome do site não pode ter comprimento zero." -#: actions/siteadminpanel.php:154 +#: actions/siteadminpanel.php:140 msgid "You must have a valid contact email address." msgstr "Tem de ter um endereço válido para o correio electrónico de contacto." -#: actions/siteadminpanel.php:172 +#: actions/siteadminpanel.php:158 #, php-format msgid "Unknown language \"%s\"." msgstr "Língua desconhecida \"%s\"." -#: actions/siteadminpanel.php:179 +#: actions/siteadminpanel.php:165 msgid "Invalid snapshot report URL." msgstr "URL para onde enviar instantâneos é inválida" -#: actions/siteadminpanel.php:185 +#: actions/siteadminpanel.php:171 msgid "Invalid snapshot run value." msgstr "Valor de criação do instantâneo é inválido." -#: actions/siteadminpanel.php:191 +#: actions/siteadminpanel.php:177 msgid "Snapshot frequency must be a number." msgstr "Frequência dos instantâneos estatísticos tem de ser um número." -#: actions/siteadminpanel.php:197 +#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "O valor mínimo de limite para o texto é 140 caracteres." -#: actions/siteadminpanel.php:203 +#: actions/siteadminpanel.php:189 msgid "Dupe limit must 1 or more seconds." msgstr "O limite de duplicados tem de ser 1 ou mais segundos." -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:239 msgid "General" msgstr "Geral" -#: actions/siteadminpanel.php:256 +#: actions/siteadminpanel.php:242 msgid "Site name" msgstr "Nome do site" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:243 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "O nome do seu site, por exemplo \"Microblogue NomeDaEmpresa\"" -#: actions/siteadminpanel.php:261 +#: actions/siteadminpanel.php:247 msgid "Brought by" msgstr "Disponibilizado por" -#: actions/siteadminpanel.php:262 +#: actions/siteadminpanel.php:248 msgid "Text used for credits link in footer of each page" msgstr "Texto usado para a ligação de atribuição no rodapé de cada página" -#: actions/siteadminpanel.php:266 +#: actions/siteadminpanel.php:252 msgid "Brought by URL" msgstr "URL da atribuição" -#: actions/siteadminpanel.php:267 +#: actions/siteadminpanel.php:253 msgid "URL used for credits link in footer of each page" msgstr "URL usada para a ligação de atribuição no rodapé de cada página" -#: actions/siteadminpanel.php:271 +#: actions/siteadminpanel.php:257 msgid "Contact email address for your site" msgstr "Endereço de correio electrónico de contacto para o site" -#: actions/siteadminpanel.php:277 +#: actions/siteadminpanel.php:263 msgid "Local" msgstr "Local" -#: actions/siteadminpanel.php:288 +#: actions/siteadminpanel.php:274 msgid "Default timezone" msgstr "Fuso horário, por omissão" -#: actions/siteadminpanel.php:289 +#: actions/siteadminpanel.php:275 msgid "Default timezone for the site; usually UTC." msgstr "Fuso horário por omissão, para o site; normalmente, UTC." -#: actions/siteadminpanel.php:295 +#: actions/siteadminpanel.php:281 msgid "Default site language" msgstr "Idioma do site, por omissão" -#: actions/siteadminpanel.php:303 -msgid "URLs" -msgstr "URLs" - -#: actions/siteadminpanel.php:306 -msgid "Server" -msgstr "Servidor" - -#: actions/siteadminpanel.php:306 -msgid "Site's server hostname." -msgstr "Nome do servidor do site." - -#: actions/siteadminpanel.php:310 -msgid "Fancy URLs" -msgstr "URLs bonitas" - -#: actions/siteadminpanel.php:312 -msgid "Use fancy (more readable and memorable) URLs?" -msgstr "Usar URLs bonitas (mais legíveis e memoráveis)" - -#: actions/siteadminpanel.php:318 -msgid "Access" -msgstr "Acesso" - -#: actions/siteadminpanel.php:321 -msgid "Private" -msgstr "Privado" - -#: actions/siteadminpanel.php:323 -msgid "Prohibit anonymous users (not logged in) from viewing site?" -msgstr "Proibir utilizadores anónimos (sem sessão iniciada) de ver o site?" - -#: actions/siteadminpanel.php:327 -msgid "Invite only" -msgstr "Só por convite" - -#: actions/siteadminpanel.php:329 -msgid "Make registration invitation only." -msgstr "Permitir o registo só a convidados." - -#: actions/siteadminpanel.php:333 -msgid "Closed" -msgstr "Fechado" - -#: actions/siteadminpanel.php:335 -msgid "Disable new registrations." -msgstr "Impossibilitar registos novos." - -#: actions/siteadminpanel.php:341 +#: actions/siteadminpanel.php:289 msgid "Snapshots" msgstr "Instantâneos" -#: actions/siteadminpanel.php:344 +#: actions/siteadminpanel.php:292 msgid "Randomly during Web hit" msgstr "Aleatoriamente, durante o acesso pela internet" -#: actions/siteadminpanel.php:345 +#: actions/siteadminpanel.php:293 msgid "In a scheduled job" msgstr "Num processo agendado" -#: actions/siteadminpanel.php:347 +#: actions/siteadminpanel.php:295 msgid "Data snapshots" msgstr "Instantâneos dos dados" -#: actions/siteadminpanel.php:348 +#: actions/siteadminpanel.php:296 msgid "When to send statistical data to status.net servers" msgstr "Quando enviar dados estatísticos para os servidores do status.net" -#: actions/siteadminpanel.php:353 +#: actions/siteadminpanel.php:301 msgid "Frequency" msgstr "Frequência" -#: actions/siteadminpanel.php:354 +#: actions/siteadminpanel.php:302 msgid "Snapshots will be sent once every N web hits" msgstr "Instantâneos serão enviados uma vez a cada N acessos da internet" -#: actions/siteadminpanel.php:359 +#: actions/siteadminpanel.php:307 msgid "Report URL" msgstr "URL para relatórios" -#: actions/siteadminpanel.php:360 +#: actions/siteadminpanel.php:308 msgid "Snapshots will be sent to this URL" msgstr "Instantâneos serão enviados para esta URL" -#: actions/siteadminpanel.php:367 +#: actions/siteadminpanel.php:315 msgid "Limits" msgstr "Limites" -#: actions/siteadminpanel.php:370 +#: actions/siteadminpanel.php:318 msgid "Text limit" msgstr "Limite de texto" -#: actions/siteadminpanel.php:370 +#: actions/siteadminpanel.php:318 msgid "Maximum number of characters for notices." msgstr "Número máximo de caracteres nas notas." -#: actions/siteadminpanel.php:374 +#: actions/siteadminpanel.php:322 msgid "Dupe limit" msgstr "Limite de duplicações" -#: actions/siteadminpanel.php:374 +#: actions/siteadminpanel.php:322 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" "Quanto tempo os utilizadores terão de esperar (em segundos) para publicar a " "mesma coisa outra vez." -#: actions/siteadminpanel.php:388 actions/useradminpanel.php:313 -msgid "Save site settings" -msgstr "Gravar configurações do site" - #: actions/smssettings.php:58 msgid "SMS settings" msgstr "Configurações de SMS" @@ -3534,15 +3963,26 @@ msgstr "Nenhum código introduzido" msgid "You are not subscribed to that profile." msgstr "Não subscreveu esse perfil." -#: actions/subedit.php:83 +#: actions/subedit.php:83 classes/Subscription.php:89 +#: classes/Subscription.php:116 msgid "Could not save subscription." msgstr "Não foi possível gravar a subscrição." -#: actions/subscribe.php:55 -msgid "Not a local user." -msgstr "O utilizador não é local." +#: actions/subscribe.php:77 +msgid "This action only accepts POST requests." +msgstr "" -#: actions/subscribe.php:69 +#: actions/subscribe.php:107 +#, fuzzy +msgid "No such profile." +msgstr "Ficheiro não foi encontrado." + +#: actions/subscribe.php:117 +#, fuzzy +msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." +msgstr "Não subscreveu esse perfil." + +#: actions/subscribe.php:145 msgid "Subscribed" msgstr "Subscrito" @@ -3606,7 +4046,7 @@ msgstr "Estas são as pessoas cujas notas está a escutar." msgid "These are the people whose notices %s listens to." msgstr "Estas são as pessoas cujas notas %s está a escutar." -#: actions/subscriptions.php:121 +#: actions/subscriptions.php:126 #, php-format msgid "" "You're not listening to anyone's notices right now, try subscribing to " @@ -3622,19 +4062,24 @@ msgstr "" "twittersettings%%) pode subscrever automaticamente as pessoas que já segue " "lá." -#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#: actions/subscriptions.php:128 actions/subscriptions.php:132 #, php-format msgid "%s is not listening to anyone." msgstr "%s não está a ouvir ninguém." -#: actions/subscriptions.php:194 +#: actions/subscriptions.php:199 msgid "Jabber" msgstr "Jabber" -#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:204 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "SMS" +#: actions/tag.php:68 +#, fuzzy, php-format +msgid "Notices tagged with %1$s, page %2$d" +msgstr "Utilizadores auto-categorizados com %1$s - página %2$d" + #: actions/tag.php:86 #, php-format msgid "Notice feed for tag %s (RSS 1.0)" @@ -3663,7 +4108,8 @@ msgstr "Categoria %s" msgid "User profile" msgstr "Perfil" -#: actions/tagother.php:81 lib/userprofile.php:102 +#: actions/tagother.php:81 actions/userauthorization.php:132 +#: lib/userprofile.php:102 msgid "Photo" msgstr "Foto" @@ -3722,7 +4168,7 @@ msgstr "O pedido não tem a identificação do perfil." msgid "Unsubscribed" msgstr "Subscrição cancelada" -#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#: actions/updateprofile.php:62 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -3739,84 +4185,64 @@ msgstr "Utilizador" msgid "User settings for this StatusNet site." msgstr "Configurações do utilizador para este site StatusNet." -#: actions/useradminpanel.php:149 +#: actions/useradminpanel.php:148 msgid "Invalid bio limit. Must be numeric." msgstr "Limite da biografia inválido. Tem de ser numérico." -#: actions/useradminpanel.php:155 +#: actions/useradminpanel.php:154 msgid "Invalid welcome text. Max length is 255 characters." msgstr "Texto de boas-vindas inválido. Tamanho máx. é 255 caracteres." -#: actions/useradminpanel.php:165 +#: actions/useradminpanel.php:164 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "Subscrição predefinida é inválida: '%1$s' não é utilizador." -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 +#: actions/useradminpanel.php:217 lib/accountsettingsaction.php:108 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Perfil" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:221 msgid "Bio Limit" msgstr "Limite da Biografia" -#: actions/useradminpanel.php:223 +#: actions/useradminpanel.php:222 msgid "Maximum length of a profile bio in characters." msgstr "Tamanho máximo de uma biografia em caracteres." -#: actions/useradminpanel.php:231 +#: actions/useradminpanel.php:230 msgid "New users" msgstr "Utilizadores novos" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:234 msgid "New user welcome" msgstr "Boas-vindas a utilizadores novos" -#: actions/useradminpanel.php:236 +#: actions/useradminpanel.php:235 msgid "Welcome text for new users (Max 255 chars)." msgstr "Texto de boas-vindas a utilizadores novos (máx. 255 caracteres)." -#: actions/useradminpanel.php:241 +#: actions/useradminpanel.php:240 msgid "Default subscription" msgstr "Subscrição predefinida" -#: actions/useradminpanel.php:242 +#: actions/useradminpanel.php:241 msgid "Automatically subscribe new users to this user." msgstr "Novos utilizadores subscrevem automaticamente este utilizador." -#: actions/useradminpanel.php:251 +#: actions/useradminpanel.php:250 msgid "Invitations" msgstr "Convites" -#: actions/useradminpanel.php:256 +#: actions/useradminpanel.php:255 msgid "Invitations enabled" msgstr "Convites habilitados" -#: actions/useradminpanel.php:258 +#: actions/useradminpanel.php:257 msgid "Whether to allow users to invite new users." msgstr "Permitir, ou não, que utilizadores convidem utilizadores novos." -#: actions/useradminpanel.php:265 -msgid "Sessions" -msgstr "Sessões" - -#: actions/useradminpanel.php:270 -msgid "Handle sessions" -msgstr "Gerir sessões" - -#: actions/useradminpanel.php:272 -msgid "Whether to handle sessions ourselves." -msgstr "Se devemos gerir sessões nós próprios." - -#: actions/useradminpanel.php:276 -msgid "Session debugging" -msgstr "Depuração de sessões" - -#: actions/useradminpanel.php:278 -msgid "Turn on debugging output for sessions." -msgstr "Ligar a impressão de dados de depuração, para sessões." - #: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Autorizar subscrição" @@ -3831,36 +4257,36 @@ msgstr "" "subscrever as notas deste utilizador. Se não fez um pedido para subscrever " "as notas de alguém, simplesmente clique \"Rejeitar\"." -#: actions/userauthorization.php:188 actions/version.php:165 +#: actions/userauthorization.php:196 actions/version.php:165 msgid "License" msgstr "Licença" -#: actions/userauthorization.php:209 +#: actions/userauthorization.php:217 msgid "Accept" msgstr "Aceitar" -#: actions/userauthorization.php:210 lib/subscribeform.php:115 +#: actions/userauthorization.php:218 lib/subscribeform.php:115 #: lib/subscribeform.php:139 msgid "Subscribe to this user" msgstr "Subscrever este utilizador" -#: actions/userauthorization.php:211 +#: actions/userauthorization.php:219 msgid "Reject" msgstr "Rejeitar" -#: actions/userauthorization.php:212 +#: actions/userauthorization.php:220 msgid "Reject this subscription" msgstr "Rejeitar esta subscrição" -#: actions/userauthorization.php:225 +#: actions/userauthorization.php:232 msgid "No authorization request!" msgstr "Não há pedido de autorização!" -#: actions/userauthorization.php:247 +#: actions/userauthorization.php:254 msgid "Subscription authorized" msgstr "Subscrição autorizada" -#: actions/userauthorization.php:249 +#: actions/userauthorization.php:256 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 " @@ -3870,11 +4296,11 @@ msgstr "" "Verifique as instruções do site para saber como autorizar a subscrição. A " "sua chave de subscrição é:" -#: actions/userauthorization.php:259 +#: actions/userauthorization.php:266 msgid "Subscription rejected" msgstr "Subscrição rejeitada" -#: actions/userauthorization.php:261 +#: actions/userauthorization.php:268 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 " @@ -3884,37 +4310,37 @@ msgstr "" "Verifique as instruções do site para saber como rejeitar completamente a " "subscrição." -#: actions/userauthorization.php:296 +#: actions/userauthorization.php:303 #, php-format msgid "Listener URI ‘%s’ not found here." msgstr "A listener URI ‘%s’ não foi encontrada aqui." -#: actions/userauthorization.php:301 +#: actions/userauthorization.php:308 #, php-format msgid "Listenee URI ‘%s’ is too long." msgstr "URI do escutado ‘%s’ é demasiado longo." -#: actions/userauthorization.php:307 +#: actions/userauthorization.php:314 #, php-format msgid "Listenee URI ‘%s’ is a local user." msgstr "URI do ouvido ‘%s’ é um utilizador local." -#: actions/userauthorization.php:322 +#: actions/userauthorization.php:329 #, php-format msgid "Profile URL ‘%s’ is for a local user." msgstr "A URL ‘%s’ do perfil é de um utilizador local." -#: actions/userauthorization.php:338 +#: actions/userauthorization.php:345 #, php-format msgid "Avatar URL ‘%s’ is not valid." msgstr "A URL ‘%s’ do avatar é inválida." -#: actions/userauthorization.php:343 +#: actions/userauthorization.php:350 #, php-format msgid "Can’t read avatar URL ‘%s’." msgstr "Não é possível ler a URL do avatar ‘%s’." -#: actions/userauthorization.php:348 +#: actions/userauthorization.php:355 #, php-format msgid "Wrong image type for avatar URL ‘%s’." msgstr "Tipo de imagem incorrecto para o avatar da URL ‘%s’." @@ -3935,6 +4361,11 @@ msgstr "" msgid "Enjoy your hotdog!" msgstr "Disfrute do seu cachorro-quente!" +#: actions/usergroups.php:64 +#, fuzzy, php-format +msgid "%1$s groups, page %2$d" +msgstr "Membros do grupo %1$s, página %2$d" + #: actions/usergroups.php:130 msgid "Search for more groups" msgstr "Procurar mais grupos" @@ -3963,10 +4394,6 @@ msgstr "" "Este site utiliza o %1$s versão %2$s, (c) 2008-2010 StatusNet, Inc. e " "colaboradores." -#: actions/version.php:157 -msgid "StatusNet" -msgstr "StatusNet" - #: actions/version.php:161 msgid "Contributors" msgstr "Colaboradores" @@ -4007,11 +4434,7 @@ msgstr "" msgid "Plugins" msgstr "Plugins" -#: actions/version.php:195 -msgid "Name" -msgstr "Nome" - -#: actions/version.php:196 lib/action.php:741 +#: actions/version.php:196 lib/action.php:747 msgid "Version" msgstr "Versão" @@ -4019,10 +4442,6 @@ msgstr "Versão" msgid "Author(s)" msgstr "Autores" -#: actions/version.php:198 lib/groupeditform.php:172 -msgid "Description" -msgstr "Descrição" - #: classes/File.php:144 #, php-format msgid "" @@ -4075,27 +4494,27 @@ msgstr "Não foi possível inserir a mensagem." msgid "Could not update message with new URI." msgstr "Não foi possível actualizar a mensagem com a nova URI." -#: classes/Notice.php:171 +#: classes/Notice.php:157 #, php-format msgid "DB error inserting hashtag: %s" msgstr "Erro na base de dados ao inserir a marca: %s" -#: classes/Notice.php:225 +#: classes/Notice.php:222 msgid "Problem saving notice. Too long." msgstr "Problema na gravação da nota. Demasiado longa." -#: classes/Notice.php:229 +#: classes/Notice.php:226 msgid "Problem saving notice. Unknown user." msgstr "Problema na gravação da nota. Utilizador desconhecido." -#: classes/Notice.php:234 +#: classes/Notice.php:231 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" "Demasiadas notas, demasiado rápido; descanse e volte a publicar daqui a " "alguns minutos." -#: classes/Notice.php:240 +#: classes/Notice.php:237 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." @@ -4103,34 +4522,58 @@ msgstr "" "Demasiadas mensagens duplicadas, demasiado rápido; descanse e volte a " "publicar daqui a alguns minutos." -#: classes/Notice.php:246 +#: classes/Notice.php:243 msgid "You are banned from posting notices on this site." msgstr "Está proibido de publicar notas neste site." -#: classes/Notice.php:305 classes/Notice.php:330 +#: classes/Notice.php:309 classes/Notice.php:335 msgid "Problem saving notice." msgstr "Problema na gravação da nota." -#: classes/Notice.php:1052 -#, php-format -msgid "DB error inserting reply: %s" -msgstr "Ocorreu um erro na base de dados ao inserir a resposta: %s" +#: classes/Notice.php:882 +#, fuzzy +msgid "Problem saving group inbox." +msgstr "Problema na gravação da nota." -#: classes/Notice.php:1423 +#: classes/Notice.php:1407 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" -#: classes/User.php:382 +#: classes/Subscription.php:66 lib/oauthstore.php:465 +msgid "You have been banned from subscribing." +msgstr "Foi bloqueado de fazer subscrições" + +#: classes/Subscription.php:70 +msgid "Already subscribed!" +msgstr "Já subscrito!" + +#: classes/Subscription.php:74 +msgid "User has blocked you." +msgstr "O utilizador bloqueou-o." + +#: classes/Subscription.php:157 +msgid "Not subscribed!" +msgstr "Não subscrito!" + +#: classes/Subscription.php:163 +msgid "Couldn't delete self-subscription." +msgstr "Não foi possível apagar a auto-subscrição." + +#: classes/Subscription.php:179 lib/subs.php:69 +msgid "Couldn't delete subscription." +msgstr "Não foi possível apagar a subscrição." + +#: classes/User.php:372 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "%1$s dá-lhe as boas-vindas, @%2$s!" -#: classes/User_group.php:380 +#: classes/User_group.php:423 msgid "Could not create group." msgstr "Não foi possível criar o grupo." -#: classes/User_group.php:409 +#: classes/User_group.php:452 msgid "Could not set group membership." msgstr "Não foi possível configurar membros do grupo." @@ -4171,128 +4614,124 @@ msgstr "%1$s (%2$s)" msgid "Untitled page" msgstr "Página sem título" -#: lib/action.php:427 +#: lib/action.php:433 msgid "Primary site navigation" msgstr "Navegação primária deste site" -#: lib/action.php:433 +#: lib/action.php:439 msgid "Home" msgstr "Início" -#: lib/action.php:433 +#: lib/action.php:439 msgid "Personal profile and friends timeline" msgstr "Perfil pessoal e notas dos amigos" -#: lib/action.php:435 -msgid "Account" -msgstr "Conta" - -#: lib/action.php:435 +#: lib/action.php:441 msgid "Change your email, avatar, password, profile" msgstr "Altere o seu endereço electrónico, avatar, senha, perfil" -#: lib/action.php:438 +#: lib/action.php:444 msgid "Connect" msgstr "Ligar" -#: lib/action.php:438 +#: lib/action.php:444 msgid "Connect to services" msgstr "Ligar aos serviços" -#: lib/action.php:442 +#: lib/action.php:448 msgid "Change site configuration" msgstr "Alterar a configuração do site" -#: lib/action.php:446 lib/subgroupnav.php:105 +#: lib/action.php:452 lib/subgroupnav.php:105 msgid "Invite" msgstr "Convidar" -#: lib/action.php:447 lib/subgroupnav.php:106 +#: lib/action.php:453 lib/subgroupnav.php:106 #, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "Convidar amigos e colegas para se juntarem a si em %s" -#: lib/action.php:452 +#: lib/action.php:458 msgid "Logout" msgstr "Sair" -#: lib/action.php:452 +#: lib/action.php:458 msgid "Logout from the site" msgstr "Terminar esta sessão" -#: lib/action.php:457 +#: lib/action.php:463 msgid "Create an account" msgstr "Criar uma conta" -#: lib/action.php:460 +#: lib/action.php:466 msgid "Login to the site" msgstr "Iniciar uma sessão" -#: lib/action.php:463 lib/action.php:726 +#: lib/action.php:469 lib/action.php:732 msgid "Help" msgstr "Ajuda" -#: lib/action.php:463 +#: lib/action.php:469 msgid "Help me!" msgstr "Ajudem-me!" -#: lib/action.php:466 lib/searchaction.php:127 +#: lib/action.php:472 lib/searchaction.php:127 msgid "Search" msgstr "Pesquisa" -#: lib/action.php:466 +#: lib/action.php:472 msgid "Search for people or text" msgstr "Procurar pessoas ou pesquisar texto" -#: lib/action.php:487 +#: lib/action.php:493 msgid "Site notice" msgstr "Aviso do site" -#: lib/action.php:553 +#: lib/action.php:559 msgid "Local views" msgstr "Vistas locais" -#: lib/action.php:619 +#: lib/action.php:625 msgid "Page notice" msgstr "Aviso da página" -#: lib/action.php:721 +#: lib/action.php:727 msgid "Secondary site navigation" msgstr "Navegação secundária deste site" -#: lib/action.php:728 +#: lib/action.php:734 msgid "About" msgstr "Sobre" -#: lib/action.php:730 +#: lib/action.php:736 msgid "FAQ" msgstr "FAQ" -#: lib/action.php:734 +#: lib/action.php:740 msgid "TOS" msgstr "Termos" -#: lib/action.php:737 +#: lib/action.php:743 msgid "Privacy" msgstr "Privacidade" -#: lib/action.php:739 +#: lib/action.php:745 msgid "Source" msgstr "Código" -#: lib/action.php:743 +#: lib/action.php:749 msgid "Contact" msgstr "Contacto" -#: lib/action.php:745 +#: lib/action.php:751 msgid "Badge" msgstr "Emblema" -#: lib/action.php:773 +#: lib/action.php:779 msgid "StatusNet software license" msgstr "Licença de software do StatusNet" -#: lib/action.php:776 +#: lib/action.php:782 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4301,12 +4740,12 @@ msgstr "" "**%%site.name%%** é um serviço de microblogues disponibilizado por [%%site." "broughtby%%](%%site.broughtbyurl%%). " -#: lib/action.php:778 +#: lib/action.php:784 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** é um serviço de microblogues. " -#: lib/action.php:780 +#: lib/action.php:786 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4317,33 +4756,55 @@ msgstr "" "disponibilizado nos termos da [GNU Affero General Public License](http://www." "fsf.org/licensing/licenses/agpl-3.0.html)." -#: lib/action.php:794 +#: lib/action.php:801 msgid "Site content license" msgstr "Licença de conteúdos do site" -#: lib/action.php:803 +#: lib/action.php:806 +#, php-format +msgid "Content and data of %1$s are private and confidential." +msgstr "" + +#: lib/action.php:811 +#, php-format +msgid "Content and data copyright by %1$s. All rights reserved." +msgstr "" + +#: lib/action.php:814 +msgid "Content and data copyright by contributors. All rights reserved." +msgstr "" + +#: lib/action.php:827 msgid "All " msgstr "Tudo " -#: lib/action.php:808 +#: lib/action.php:833 msgid "license." msgstr "licença." -#: lib/action.php:1102 +#: lib/action.php:1132 msgid "Pagination" msgstr "Paginação" -#: lib/action.php:1111 +#: lib/action.php:1141 msgid "After" msgstr "Posteriores" -#: lib/action.php:1119 +#: lib/action.php:1149 msgid "Before" msgstr "Anteriores" -#: lib/action.php:1167 -msgid "There was a problem with your session token." -msgstr "Ocorreu um problema com a sua sessão." +#: lib/activity.php:382 +msgid "Can't handle remote content yet." +msgstr "" + +#: lib/activity.php:410 +msgid "Can't handle embedded XML content yet." +msgstr "" + +#: lib/activity.php:414 +msgid "Can't handle embedded Base64 content yet." +msgstr "" #: lib/adminpanelaction.php:96 msgid "You cannot make changes to this site." @@ -4373,10 +4834,104 @@ msgstr "Configuração básica do site" msgid "Design configuration" msgstr "Configuração do estilo" -#: lib/adminpanelaction.php:322 lib/adminpanelaction.php:327 +#: lib/adminpanelaction.php:322 +#, fuzzy +msgid "User configuration" +msgstr "Configuração das localizações" + +#: lib/adminpanelaction.php:327 +#, fuzzy +msgid "Access configuration" +msgstr "Configuração do estilo" + +#: lib/adminpanelaction.php:332 msgid "Paths configuration" msgstr "Configuração das localizações" +#: lib/adminpanelaction.php:337 +#, fuzzy +msgid "Sessions configuration" +msgstr "Configuração do estilo" + +#: lib/apiauth.php:95 +msgid "API resource requires read-write access, but you only have read access." +msgstr "" + +#: lib/apiauth.php:273 +#, php-format +msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" +msgstr "" + +#: lib/applicationeditform.php:136 +msgid "Edit application" +msgstr "" + +#: lib/applicationeditform.php:184 +msgid "Icon for this application" +msgstr "" + +#: lib/applicationeditform.php:204 +#, fuzzy, php-format +msgid "Describe your application in %d characters" +msgstr "Descreva o grupo ou o assunto em %d caracteres" + +#: lib/applicationeditform.php:207 +#, fuzzy +msgid "Describe your application" +msgstr "Descreva o grupo ou assunto" + +#: lib/applicationeditform.php:216 +#, fuzzy +msgid "Source URL" +msgstr "Código" + +#: lib/applicationeditform.php:218 +#, fuzzy +msgid "URL of the homepage of this application" +msgstr "URL da página ou do blogue, deste grupo ou assunto" + +#: lib/applicationeditform.php:224 +msgid "Organization responsible for this application" +msgstr "" + +#: lib/applicationeditform.php:230 +#, fuzzy +msgid "URL for the homepage of the organization" +msgstr "URL da página ou do blogue, deste grupo ou assunto" + +#: lib/applicationeditform.php:236 +msgid "URL to redirect to after authentication" +msgstr "" + +#: lib/applicationeditform.php:258 +msgid "Browser" +msgstr "" + +#: lib/applicationeditform.php:274 +msgid "Desktop" +msgstr "" + +#: lib/applicationeditform.php:275 +msgid "Type of application, browser or desktop" +msgstr "" + +#: lib/applicationeditform.php:297 +msgid "Read-only" +msgstr "" + +#: lib/applicationeditform.php:315 +msgid "Read-write" +msgstr "" + +#: lib/applicationeditform.php:316 +msgid "Default access for this application: read-only, or read-write" +msgstr "" + +#: lib/applicationlist.php:154 +#, fuzzy +msgid "Revoke" +msgstr "Remover" + #: lib/attachmentlist.php:87 msgid "Attachments" msgstr "Anexos" @@ -4397,11 +4952,11 @@ msgstr "Notas em que este anexo aparece" msgid "Tags for this attachment" msgstr "Categorias para este anexo" -#: lib/authenticationplugin.php:182 lib/authenticationplugin.php:187 +#: lib/authenticationplugin.php:218 lib/authenticationplugin.php:223 msgid "Password changing failed" msgstr "Não foi possível mudar a palavra-chave" -#: lib/authenticationplugin.php:197 +#: lib/authenticationplugin.php:233 msgid "Password changing is not allowed" msgstr "Não é permitido mudar a palavra-chave" @@ -4552,82 +5107,93 @@ msgstr "Erro ao gravar nota." msgid "Specify the name of the user to subscribe to" msgstr "Introduza o nome do utilizador para subscrever" -#: lib/command.php:554 +#: lib/command.php:554 lib/command.php:589 +#, fuzzy +msgid "No such user" +msgstr "Utilizador não encontrado." + +#: lib/command.php:561 #, php-format msgid "Subscribed to %s" msgstr "Subscreveu %s" -#: lib/command.php:575 +#: lib/command.php:582 lib/command.php:685 msgid "Specify the name of the user to unsubscribe from" msgstr "Introduza o nome do utilizador para deixar de subscrever" -#: lib/command.php:582 +#: lib/command.php:595 #, php-format msgid "Unsubscribed from %s" msgstr "Deixou de subscrever %s" -#: lib/command.php:600 lib/command.php:623 +#: lib/command.php:613 lib/command.php:636 msgid "Command not yet implemented." msgstr "Comando ainda não implementado." -#: lib/command.php:603 +#: lib/command.php:616 msgid "Notification off." msgstr "Notificação desligada." -#: lib/command.php:605 +#: lib/command.php:618 msgid "Can't turn off notification." msgstr "Não foi possível desligar a notificação." -#: lib/command.php:626 +#: lib/command.php:639 msgid "Notification on." msgstr "Notificação ligada." -#: lib/command.php:628 +#: lib/command.php:641 msgid "Can't turn on notification." msgstr "Não foi possível ligar a notificação." -#: lib/command.php:641 +#: lib/command.php:654 msgid "Login command is disabled" msgstr "Comando para iniciar sessão foi desactivado" -#: lib/command.php:652 +#: lib/command.php:665 #, php-format msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "" "Esta ligação é utilizável uma única vez e só durante os próximos 2 minutos: %" "s" -#: lib/command.php:668 +#: lib/command.php:692 +#, fuzzy, php-format +msgid "Unsubscribed %s" +msgstr "Deixou de subscrever %s" + +#: lib/command.php:709 msgid "You are not subscribed to anyone." msgstr "Não subscreveu ninguém." -#: lib/command.php:670 +#: lib/command.php:711 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "Subscreveu esta pessoa:" msgstr[1] "Subscreveu estas pessoas:" -#: lib/command.php:690 +#: lib/command.php:731 msgid "No one is subscribed to you." msgstr "Ninguém subscreve as suas notas." -#: lib/command.php:692 +#: lib/command.php:733 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "Esta pessoa subscreve as suas notas:" msgstr[1] "Estas pessoas subscrevem as suas notas:" -#: lib/command.php:712 +#: lib/command.php:753 msgid "You are not a member of any groups." msgstr "Não está em nenhum grupo." -#: lib/command.php:714 +#: lib/command.php:755 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "Está no grupo:" msgstr[1] "Está nos grupos:" -#: lib/command.php:728 +#: lib/command.php:769 +#, fuzzy msgid "" "Commands:\n" "on - turn on notifications\n" @@ -4641,6 +5207,7 @@ msgid "" "d - direct message to user\n" "get - get last notice from user\n" "whois - get profile info on user\n" +"lose - force user to stop following you\n" "fav - add user's last notice as a 'fave'\n" "fav # - add notice with the given id as a 'fave'\n" "repeat # - repeat a notice with a given id\n" @@ -4705,19 +5272,19 @@ msgstr "" "tracks - ainda não implementado.\n" "tracking - ainda não implementado.\n" -#: lib/common.php:131 +#: lib/common.php:136 msgid "No configuration file found. " msgstr "Ficheiro de configuração não encontrado. " -#: lib/common.php:132 +#: lib/common.php:137 msgid "I looked for configuration files in the following places: " msgstr "Procurei ficheiros de configuração nos seguintes sítios: " -#: lib/common.php:134 +#: lib/common.php:139 msgid "You may wish to run the installer to fix this." msgstr "Talvez queira correr o instalador para resolver esta questão." -#: lib/common.php:135 +#: lib/common.php:140 msgid "Go to the installer." msgstr "Ir para o instalador." @@ -4733,6 +5300,15 @@ msgstr "Actualizações por mensagem instantânea (MI)" msgid "Updates by SMS" msgstr "Actualizações por SMS" +#: lib/connectsettingsaction.php:120 +#, fuzzy +msgid "Connections" +msgstr "Ligar" + +#: lib/connectsettingsaction.php:121 +msgid "Authorized connected applications" +msgstr "" + #: lib/dberroraction.php:60 msgid "Database error" msgstr "Erro de base de dados" @@ -4918,12 +5494,12 @@ msgstr "MB" msgid "kB" msgstr "kB" -#: lib/jabber.php:202 +#: lib/jabber.php:220 #, php-format msgid "[%s]" msgstr "[%s]" -#: lib/jabber.php:385 +#: lib/jabber.php:400 #, fuzzy, php-format msgid "Unknown inbox source %d." msgstr "Língua desconhecida \"%s\"." @@ -5204,7 +5780,7 @@ msgstr "" "conversa com outros utilizadores. Outros podem enviar-lhe mensagens, a que " "só você terá acesso." -#: lib/mailbox.php:227 lib/noticelist.php:477 +#: lib/mailbox.php:227 lib/noticelist.php:482 msgid "from" msgstr "de" @@ -5324,57 +5900,53 @@ msgid "Do not share my location" msgstr "Não partilhar a minha localização." #: lib/noticeform.php:216 -msgid "Hide this info" -msgstr "Ocultar esta informação" - -#: lib/noticeform.php:217 msgid "" "Sorry, retrieving your geo location is taking longer than expected, please " "try again later" msgstr "" -#: lib/noticelist.php:428 +#: lib/noticelist.php:429 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" -#: lib/noticelist.php:429 +#: lib/noticelist.php:430 msgid "N" msgstr "N" -#: lib/noticelist.php:429 +#: lib/noticelist.php:430 msgid "S" msgstr "S" -#: lib/noticelist.php:430 +#: lib/noticelist.php:431 msgid "E" msgstr "E" -#: lib/noticelist.php:430 +#: lib/noticelist.php:431 msgid "W" msgstr "O" -#: lib/noticelist.php:436 +#: lib/noticelist.php:438 msgid "at" msgstr "coords." -#: lib/noticelist.php:531 +#: lib/noticelist.php:558 msgid "in context" msgstr "no contexto" -#: lib/noticelist.php:556 +#: lib/noticelist.php:583 msgid "Repeated by" msgstr "Repetida por" -#: lib/noticelist.php:585 +#: lib/noticelist.php:610 msgid "Reply to this notice" msgstr "Responder a esta nota" -#: lib/noticelist.php:586 +#: lib/noticelist.php:611 msgid "Reply" msgstr "Responder" -#: lib/noticelist.php:628 +#: lib/noticelist.php:655 msgid "Notice repeated" msgstr "Nota repetida" @@ -5406,11 +5978,7 @@ msgstr "Erro ao inserir perfil remoto" msgid "Duplicate notice" msgstr "Nota duplicada" -#: lib/oauthstore.php:466 lib/subs.php:48 -msgid "You have been banned from subscribing." -msgstr "Foi bloqueado de fazer subscrições" - -#: lib/oauthstore.php:491 +#: lib/oauthstore.php:490 msgid "Couldn't insert new subscription." msgstr "Não foi possível inserir nova subscrição." @@ -5426,19 +5994,19 @@ msgstr "Respostas" msgid "Favorites" msgstr "Favoritas" -#: lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "Recebidas" -#: lib/personalgroupnav.php:125 +#: lib/personalgroupnav.php:126 msgid "Your incoming messages" msgstr "Mensagens recebidas" -#: lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 msgid "Outbox" msgstr "Enviadas" -#: lib/personalgroupnav.php:130 +#: lib/personalgroupnav.php:131 msgid "Your sent messages" msgstr "Mensagens enviadas" @@ -5515,6 +6083,10 @@ msgstr "Repetir esta nota?" msgid "Repeat this notice" msgstr "Repetir esta nota" +#: lib/router.php:665 +msgid "No single user defined for single-user mode." +msgstr "" + #: lib/sandboxform.php:67 msgid "Sandbox" msgstr "Bloquear notas públicas" @@ -5582,34 +6154,6 @@ msgstr "Pessoas que subscrevem %s" msgid "Groups %s is a member of" msgstr "Grupos de que %s é membro" -#: lib/subs.php:52 -msgid "Already subscribed!" -msgstr "Já subscrito!" - -#: lib/subs.php:56 -msgid "User has blocked you." -msgstr "O utilizador bloqueou-o." - -#: lib/subs.php:63 -msgid "Could not subscribe." -msgstr "Não foi possível subscrever." - -#: lib/subs.php:82 -msgid "Could not subscribe other to you." -msgstr "Não foi possível que outro o subscrevesse." - -#: lib/subs.php:137 -msgid "Not subscribed!" -msgstr "Não subscrito!" - -#: lib/subs.php:142 -msgid "Couldn't delete self-subscription." -msgstr "Não foi possível apagar a auto-subscrição." - -#: lib/subs.php:158 -msgid "Couldn't delete subscription." -msgstr "Não foi possível apagar a subscrição." - #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -5660,67 +6204,67 @@ msgstr "Editar Avatar" msgid "User actions" msgstr "Acções do utilizador" -#: lib/userprofile.php:248 +#: lib/userprofile.php:251 msgid "Edit profile settings" msgstr "Editar configurações do perfil" -#: lib/userprofile.php:249 +#: lib/userprofile.php:252 msgid "Edit" msgstr "Editar" -#: lib/userprofile.php:272 +#: lib/userprofile.php:275 msgid "Send a direct message to this user" msgstr "Enviar mensagem directa a este utilizador" -#: lib/userprofile.php:273 +#: lib/userprofile.php:276 msgid "Message" msgstr "Mensagem" -#: lib/userprofile.php:311 +#: lib/userprofile.php:314 msgid "Moderate" msgstr "Moderar" -#: lib/util.php:877 +#: lib/util.php:952 msgid "a few seconds ago" msgstr "há alguns segundos" -#: lib/util.php:879 +#: lib/util.php:954 msgid "about a minute ago" msgstr "há cerca de um minuto" -#: lib/util.php:881 +#: lib/util.php:956 #, php-format msgid "about %d minutes ago" msgstr "há cerca de %d minutos" -#: lib/util.php:883 +#: lib/util.php:958 msgid "about an hour ago" msgstr "há cerca de uma hora" -#: lib/util.php:885 +#: lib/util.php:960 #, php-format msgid "about %d hours ago" msgstr "há cerca de %d horas" -#: lib/util.php:887 +#: lib/util.php:962 msgid "about a day ago" msgstr "há cerca de um dia" -#: lib/util.php:889 +#: lib/util.php:964 #, php-format msgid "about %d days ago" msgstr "há cerca de %d dias" -#: lib/util.php:891 +#: lib/util.php:966 msgid "about a month ago" msgstr "há cerca de um mês" -#: lib/util.php:893 +#: lib/util.php:968 #, php-format msgid "about %d months ago" msgstr "há cerca de %d meses" -#: lib/util.php:895 +#: lib/util.php:970 msgid "about a year ago" msgstr "há cerca de um ano" @@ -5734,7 +6278,7 @@ msgstr "%s não é uma cor válida!" msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "%s não é uma cor válida! Use 3 ou 6 caracteres hexadecimais." -#: scripts/xmppdaemon.php:301 +#: lib/xmppmanager.php:402 #, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "Mensagem demasiado extensa - máx. %1$d caracteres, enviou %2$d." diff --git a/locale/pt_BR/LC_MESSAGES/statusnet.po b/locale/pt_BR/LC_MESSAGES/statusnet.po index cd0bdedd70..18659cecf5 100644 --- a/locale/pt_BR/LC_MESSAGES/statusnet.po +++ b/locale/pt_BR/LC_MESSAGES/statusnet.po @@ -2,6 +2,7 @@ # # Author@translatewiki.net: Aracnus # Author@translatewiki.net: Ewout +# Author@translatewiki.net: McDutchie # Author@translatewiki.net: Vuln # -- # This file is distributed under the same license as the StatusNet package. @@ -10,17 +11,69 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-01-13 22:04+0000\n" -"PO-Revision-Date: 2010-01-13 22:06:02+0000\n" +"POT-Creation-Date: 2010-02-24 23:49+0000\n" +"PO-Revision-Date: 2010-02-24 23:51:37+0000\n" "Language-Team: Brazilian Portuguese\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha (r61027); Translate extension (2010-01-04)\n" +"X-Generator: MediaWiki 1.17alpha (r62925); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#: actions/accessadminpanel.php:54 lib/adminpanelaction.php:326 +msgid "Access" +msgstr "Acesso" + +#: actions/accessadminpanel.php:65 +msgid "Site access settings" +msgstr "Configurações de acesso ao site" + +#: actions/accessadminpanel.php:158 +msgid "Registration" +msgstr "Registro" + +#: actions/accessadminpanel.php:161 +msgid "Private" +msgstr "Particular" + +#: actions/accessadminpanel.php:163 +msgid "Prohibit anonymous users (not logged in) from viewing site?" +msgstr "Impedir usuários anônimos (não autenticados) de visualizar o site?" + +#: actions/accessadminpanel.php:167 +msgid "Invite only" +msgstr "Somente convidados" + +#: actions/accessadminpanel.php:169 +msgid "Make registration invitation only." +msgstr "Cadastro liberado somente para convidados." + +#: actions/accessadminpanel.php:173 +msgid "Closed" +msgstr "Fechado" + +#: actions/accessadminpanel.php:175 +msgid "Disable new registrations." +msgstr "Desabilita novos registros." + +#: actions/accessadminpanel.php:189 actions/designadminpanel.php:586 +#: actions/emailsettings.php:195 actions/imsettings.php:163 +#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 +#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 +#: actions/siteadminpanel.php:336 actions/smssettings.php:181 +#: actions/subscriptions.php:208 actions/tagother.php:154 +#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 lib/designsettings.php:256 +#: lib/groupeditform.php:202 +msgid "Save" +msgstr "Salvar" + +#: actions/accessadminpanel.php:189 +msgid "Save access settings" +msgstr "Salvar as configurações de acesso" + #: actions/all.php:63 actions/public.php:97 actions/replies.php:92 #: actions/showfavorites.php:137 actions/tag.php:51 msgid "No such page" @@ -35,25 +88,29 @@ msgstr "Esta página não existe." #: 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:144 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apistatusesupdate.php:148 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:78 #: actions/apitimelinehome.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/otp.php:76 #: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154 -#: actions/replies.php:73 actions/repliesrss.php:38 +#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 #: 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:302 lib/command.php:355 #: lib/command.php:401 lib/command.php:462 lib/command.php:518 #: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 -#: lib/subs.php:34 lib/subs.php:125 msgid "No such user." msgstr "Este usuário não existe." +#: actions/all.php:84 +#, php-format +msgid "%1$s and friends, page %2$d" +msgstr "%1$s e amigos, pág. %2$d" + #: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 -#: actions/apitimelinefriends.php:115 actions/apitimelinehome.php:115 +#: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" @@ -92,16 +149,16 @@ msgstr "" "publicar algo." #: actions/all.php:134 -#, fuzzy, php-format +#, php-format msgid "" "You can try to [nudge %1$s](../%2$s) from his profile or [post something to " "his or her attention](%%%%action.newnotice%%%%?status_textarea=%3$s)." msgstr "" -"Você pode tentar [chamar a atenção de %s](../%s) em seu perfil ou [publicar " -"alguma coisa que desperte seu interesse](%%%%action.newnotice%%%%?" -"status_textarea=%s)." +"Você pode tentar [chamar a atenção de %1$s](../%2$s) em seu perfil ou " +"[publicar alguma coisa que desperte seu interesse](%%%%action.newnotice%%%%?" +"status_textarea=%3$s)." -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211 #, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " @@ -114,8 +171,8 @@ msgstr "" msgid "You and friends" msgstr "Você e amigos" -#: actions/allrss.php:119 actions/apitimelinefriends.php:122 -#: actions/apitimelinehome.php:122 +#: actions/allrss.php:119 actions/apitimelinefriends.php:119 +#: actions/apitimelinehome.php:120 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Atualizações de %1$s e amigos no %2$s!" @@ -125,23 +182,23 @@ msgstr "Atualizações de %1$s e amigos no %2$s!" #: actions/apiaccountupdateprofile.php:97 #: actions/apiaccountupdateprofilebackgroundimage.php:94 #: actions/apiaccountupdateprofilecolors.php:118 -#: 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:136 actions/apigroupismember.php:114 -#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 -#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 -#: actions/apigroupmembership.php:106 actions/apigroupshow.php:105 -#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 -#: actions/apistatusesretweets.php:112 actions/apistatusesshow.php:108 -#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93 -#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:146 -#: actions/apitimelinefriends.php:156 actions/apitimelinegroup.php:150 -#: actions/apitimelinehome.php:156 actions/apitimelinementions.php:151 -#: actions/apitimelinepublic.php:131 actions/apitimelineretweetedbyme.php:122 +#: actions/apiaccountverifycredentials.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:128 actions/apigroupcreate.php:136 +#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 +#: actions/apigroupleave.php:141 actions/apigrouplist.php:132 +#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 +#: actions/apigroupshow.php:115 actions/apihelptest.php:88 +#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 +#: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 #: actions/apitimelineretweetedtome.php:121 -#: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141 -#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 +#: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 +#: actions/apitimelineuser.php:207 actions/apiusershow.php:101 msgid "API method not found." msgstr "O método da API não foi encontrado!" @@ -155,7 +212,7 @@ msgstr "O método da API não foi encontrado!" #: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 #: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 #: actions/apigroupleave.php:91 actions/apistatusesretweet.php:65 -#: actions/apistatusesupdate.php:114 +#: actions/apistatusesupdate.php:118 msgid "This method requires a POST." msgstr "Este método requer um POST." @@ -186,8 +243,9 @@ msgstr "Não foi possível salvar o perfil." #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:97 -#: actions/apistatusesupdate.php:127 actions/avatarsettings.php:257 -#: actions/designadminpanel.php:122 actions/newnotice.php:94 +#: actions/apistatusesupdate.php:131 actions/avatarsettings.php:257 +#: actions/designadminpanel.php:122 actions/editapplication.php:118 +#: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 #, php-format msgid "" @@ -269,7 +327,6 @@ msgid "No status found with that ID." msgstr "Não foi encontrado nenhum status com esse ID." #: actions/apifavoritecreate.php:119 -#, fuzzy msgid "This status is already a favorite." msgstr "Esta mensagem já é favorita!" @@ -278,7 +335,6 @@ msgid "Could not create favorite." msgstr "Não foi possível criar a favorita." #: actions/apifavoritedestroy.php:122 -#, fuzzy msgid "That status is not a favorite." msgstr "Essa mensagem não é favorita!" @@ -300,7 +356,6 @@ msgid "Could not unfollow user: User not found." msgstr "Não é possível deixar de seguir o usuário: Usuário não encontrado." #: actions/apifriendshipsdestroy.php:120 -#, fuzzy msgid "You cannot unfollow yourself." msgstr "Você não pode deixar de seguir você mesmo!" @@ -308,11 +363,11 @@ msgstr "Você não pode deixar de seguir você mesmo!" msgid "Two user ids or screen_names must be supplied." msgstr "Duas IDs de usuário ou screen_names devem ser informados." -#: actions/apifriendshipsshow.php:135 +#: actions/apifriendshipsshow.php:134 msgid "Could not determine source user." msgstr "Não foi possível determinar o usuário de origem." -#: actions/apifriendshipsshow.php:143 +#: actions/apifriendshipsshow.php:142 msgid "Could not find target user." msgstr "Não foi possível encontrar usuário de destino." @@ -336,7 +391,8 @@ msgstr "Esta identificação já está em uso. Tente outro." msgid "Not a valid nickname." msgstr "Não é uma identificação válida." -#: actions/apigroupcreate.php:196 actions/editgroup.php:195 +#: actions/apigroupcreate.php:196 actions/editapplication.php:215 +#: actions/editgroup.php:195 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:217 msgid "Homepage is not a valid URL." @@ -348,7 +404,8 @@ msgstr "A URL informada não é válida." msgid "Full name is too long (max 255 chars)." msgstr "Nome completo muito extenso (máx. 255 caracteres)" -#: actions/apigroupcreate.php:213 +#: actions/apigroupcreate.php:213 actions/editapplication.php:190 +#: actions/newapplication.php:172 #, php-format msgid "Description is too long (max %d chars)." msgstr "Descrição muito extensa (máximo %d caracteres)." @@ -384,7 +441,7 @@ msgstr "O apelido não pode ser igual à identificação." #: actions/apigroupismember.php:95 actions/apigroupjoin.php:104 #: actions/apigroupleave.php:104 actions/apigroupmembership.php:91 -#: actions/apigroupshow.php:90 actions/apitimelinegroup.php:91 +#: actions/apigroupshow.php:82 actions/apitimelinegroup.php:91 msgid "Group not found!" msgstr "O grupo não foi encontrado!" @@ -397,18 +454,18 @@ msgid "You have been blocked from that group by the admin." msgstr "O administrador desse grupo bloqueou sua inscrição." #: actions/apigroupjoin.php:138 actions/joingroup.php:124 -#, fuzzy, php-format +#, php-format msgid "Could not join user %1$s to group %2$s." -msgstr "Não foi possível associar o usuário %s ao grupo %s." +msgstr "Não foi possível associar o usuário %1$s ao grupo %2$s." #: actions/apigroupleave.php:114 msgid "You are not a member of this group." msgstr "Você não é membro deste grupo." #: actions/apigroupleave.php:124 actions/leavegroup.php:119 -#, fuzzy, php-format +#, php-format msgid "Could not remove user %1$s from group %2$s." -msgstr "Não foi possível remover o usuário %s do grupo %s." +msgstr "Não foi possível remover o usuário %1$s do grupo %2$s." #: actions/apigrouplist.php:95 #, php-format @@ -425,6 +482,119 @@ msgstr "Grupos de %s" msgid "groups on %s" msgstr "grupos no %s" +#: actions/apioauthauthorize.php:101 +msgid "No oauth_token parameter provided." +msgstr "Não foi fornecido nenhum parâmetro oauth_token" + +#: actions/apioauthauthorize.php:106 +msgid "Invalid token." +msgstr "Token inválido." + +#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 +#: actions/deletenotice.php:157 actions/disfavor.php:74 +#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54 +#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupunblock.php:66 actions/imsettings.php:206 +#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 +#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 +#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135 +#: actions/othersettings.php:145 actions/passwordsettings.php:138 +#: actions/profilesettings.php:194 actions/recoverpassword.php:337 +#: actions/register.php:165 actions/remotesubscribe.php:77 +#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 +#: actions/subscribe.php:86 actions/tagother.php:166 +#: 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/apioauthauthorize.php:135 +msgid "Invalid nickname / password!" +msgstr "Nome de usuário e/ou senha inválido(s)!" + +#: actions/apioauthauthorize.php:159 +msgid "Database error deleting OAuth application user." +msgstr "" +"Erro no banco de dados durante a exclusão do usuário da aplicação OAuth." + +#: actions/apioauthauthorize.php:185 +msgid "Database error inserting OAuth application user." +msgstr "" +"Erro no banco de dados durante a inserção do usuário da aplicativo OAuth." + +#: actions/apioauthauthorize.php:214 +#, php-format +msgid "" +"The request token %s has been authorized. Please exchange it for an access " +"token." +msgstr "" +"O token de requisição %s foi autorizado. Por favor, troque-o por um token de " +"acesso." + +#: actions/apioauthauthorize.php:227 +#, php-format +msgid "The request token %s has been denied and revoked." +msgstr "O token %s solicitado foi negado e revogado." + +#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 +#: actions/designadminpanel.php:103 actions/editapplication.php:139 +#: actions/emailsettings.php:256 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/newapplication.php:121 +#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 +#: actions/smssettings.php:248 lib/designsettings.php:304 +msgid "Unexpected form submission." +msgstr "Submissão inesperada de formulário." + +#: actions/apioauthauthorize.php:259 +msgid "An application would like to connect to your account" +msgstr "Uma aplicação gostaria de se conectar à sua conta" + +#: actions/apioauthauthorize.php:276 +msgid "Allow or deny access" +msgstr "Permitir ou negar o acesso" + +#: actions/apioauthauthorize.php:292 +#, php-format +msgid "" +"The application %1$s by %2$s would like " +"the ability to %3$s your %4$s account data. You should only " +"give access to your %4$s account to third parties you trust." +msgstr "" +"A aplicação %1$s por %2$s solicita a " +"permissão para %3$s os dados da sua conta %4$s. Você deve " +"fornecer acesso à sua conta %4$s somente para terceiros nos quais você " +"confia." + +#: actions/apioauthauthorize.php:310 lib/action.php:441 +msgid "Account" +msgstr "Conta" + +#: actions/apioauthauthorize.php:313 actions/login.php:230 +#: actions/profilesettings.php:106 actions/register.php:424 +#: actions/showgroup.php:236 actions/tagother.php:94 +#: actions/userauthorization.php:145 lib/groupeditform.php:152 +#: lib/userprofile.php:131 +msgid "Nickname" +msgstr "Usuário" + +#: actions/apioauthauthorize.php:316 actions/login.php:233 +#: actions/register.php:429 lib/accountsettingsaction.php:116 +msgid "Password" +msgstr "Senha" + +#: actions/apioauthauthorize.php:328 +msgid "Deny" +msgstr "Negar" + +#: actions/apioauthauthorize.php:334 +msgid "Allow" +msgstr "Permitir" + +#: actions/apioauthauthorize.php:351 +msgid "Allow or deny access to your account information." +msgstr "Permitir ou negar o acesso às informações da sua conta." + #: actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." msgstr "Esse método requer um POST ou DELETE." @@ -454,17 +624,17 @@ msgstr "A mensagem foi excluída." msgid "No status with that ID found." msgstr "Não foi encontrada nenhuma mensagem com esse ID." -#: actions/apistatusesupdate.php:157 actions/newnotice.php:155 +#: actions/apistatusesupdate.php:161 actions/newnotice.php:155 #: lib/mailhandler.php:60 #, php-format msgid "That's too long. Max notice size is %d chars." msgstr "Está muito extenso. O tamanho máximo é de %s caracteres." -#: actions/apistatusesupdate.php:198 +#: actions/apistatusesupdate.php:202 msgid "Not found" msgstr "Não encontrado" -#: actions/apistatusesupdate.php:221 actions/newnotice.php:178 +#: actions/apistatusesupdate.php:225 actions/newnotice.php:178 #, php-format msgid "Max notice size is %d chars, including attachment URL." msgstr "O tamanho máximo da mensagem é de %s caracteres" @@ -474,14 +644,14 @@ msgid "Unsupported format." msgstr "Formato não suportado." #: actions/apitimelinefavorites.php:108 -#, fuzzy, php-format +#, php-format msgid "%1$s / Favorites from %2$s" -msgstr "%s / Favoritas de %s" +msgstr "%1$s / Favoritas de %2$s" -#: actions/apitimelinefavorites.php:120 -#, fuzzy, php-format +#: actions/apitimelinefavorites.php:117 +#, php-format msgid "%1$s updates favorited by %2$s / %2$s." -msgstr "%s marcadas como favoritas por %s / %s." +msgstr "%1$s marcadas como favoritas por %2$s / %2$s." #: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 #: actions/grouprss.php:131 actions/userrss.php:90 @@ -489,7 +659,7 @@ msgstr "%s marcadas como favoritas por %s / %s." msgid "%s timeline" msgstr "Mensagens de %s" -#: actions/apitimelinegroup.php:117 actions/apitimelineuser.php:126 +#: actions/apitimelinegroup.php:114 actions/apitimelineuser.php:126 #: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" @@ -505,27 +675,22 @@ msgstr "%1$s / Mensagens mencionando %2$s" msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "%1$s mensagens em resposta a mensagens de %2$s / %3$s." -#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "Mensagens públicas de %s" -#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "%s mensagens de todo mundo!" -#: actions/apitimelineretweetedbyme.php:112 -#, php-format -msgid "Repeated by %s" -msgstr "Repetida por %s" - #: actions/apitimelineretweetedtome.php:111 #, php-format msgid "Repeated to %s" msgstr "Repetida para %s" -#: actions/apitimelineretweetsofme.php:112 +#: actions/apitimelineretweetsofme.php:114 #, php-format msgid "Repeats of %s" msgstr "Repetições de %s" @@ -535,7 +700,7 @@ msgstr "Repetições de %s" msgid "Notices tagged with %s" msgstr "Mensagens etiquetadas como %s" -#: actions/apitimelinetag.php:108 actions/tagrss.php:64 +#: actions/apitimelinetag.php:104 actions/tagrss.php:64 #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Mensagens etiquetadas como %1$s no %2$s!" @@ -596,8 +761,8 @@ msgstr "Original" msgid "Preview" msgstr "Visualização" -#: actions/avatarsettings.php:149 lib/deleteuserform.php:66 -#: lib/noticelist.php:611 +#: actions/avatarsettings.php:149 actions/showapplication.php:252 +#: lib/deleteuserform.php:66 lib/noticelist.php:637 msgid "Delete" msgstr "Excluir" @@ -609,30 +774,6 @@ msgstr "Enviar" msgid "Crop" msgstr "Cortar" -#: actions/avatarsettings.php:268 actions/deletenotice.php:157 -#: actions/disfavor.php:74 actions/emailsettings.php:238 actions/favor.php:75 -#: actions/geocode.php:50 actions/groupblock.php:66 actions/grouplogo.php:309 -#: actions/groupunblock.php:66 actions/imsettings.php:206 -#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 -#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 -#: actions/othersettings.php:145 actions/passwordsettings.php:138 -#: actions/profilesettings.php:194 actions/recoverpassword.php:337 -#: actions/register.php:165 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 -#: actions/subscribe.php:46 actions/tagother.php:166 -#: 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/avatarsettings.php:281 actions/designadminpanel.php:103 -#: actions/emailsettings.php:256 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/avatarsettings.php:328 msgid "Pick a square area of the image to be your avatar" msgstr "Selecione uma área quadrada da imagem para ser seu avatar" @@ -672,8 +813,9 @@ msgstr "" "nenhuma notificação acerca de qualquer citação (@usuário) que ele fizer de " "você." -#: actions/block.php:143 actions/deletenotice.php:145 -#: actions/deleteuser.php:147 actions/groupblock.php:178 +#: actions/block.php:143 actions/deleteapplication.php:153 +#: actions/deletenotice.php:145 actions/deleteuser.php:147 +#: actions/groupblock.php:178 msgid "No" msgstr "Não" @@ -681,13 +823,13 @@ msgstr "Não" msgid "Do not block this user" msgstr "Não bloquear este usuário" -#: actions/block.php:144 actions/deletenotice.php:146 -#: actions/deleteuser.php:148 actions/groupblock.php:179 -#: lib/repeatform.php:132 +#: actions/block.php:144 actions/deleteapplication.php:158 +#: actions/deletenotice.php:146 actions/deleteuser.php:148 +#: actions/groupblock.php:179 lib/repeatform.php:132 msgid "Yes" msgstr "Sim" -#: actions/block.php:144 actions/groupmembers.php:346 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80 msgid "Block this user" msgstr "Bloquear este usuário" @@ -711,9 +853,9 @@ msgid "%s blocked profiles" msgstr "Perfis bloqueados no %s" #: actions/blockedfromgroup.php:93 -#, fuzzy, php-format +#, php-format msgid "%1$s blocked profiles, page %2$d" -msgstr "Perfis bloqueados no %s, página %d" +msgstr "Perfis bloqueados no %1$s, pág. %2$d" #: actions/blockedfromgroup.php:108 msgid "A list of the users blocked from joining this group." @@ -770,7 +912,7 @@ msgid "Couldn't delete email confirmation." msgstr "Não foi possível excluir a confirmação de e-mail." #: actions/confirmaddress.php:144 -msgid "Confirm Address" +msgid "Confirm address" msgstr "Confirme o endereço" #: actions/confirmaddress.php:159 @@ -787,10 +929,51 @@ msgstr "Conversa" msgid "Notices" msgstr "Mensagens" +#: actions/deleteapplication.php:63 +msgid "You must be logged in to delete an application." +msgstr "Você precisa estar autenticado para excluir uma aplicação." + +#: actions/deleteapplication.php:71 +msgid "Application not found." +msgstr "A aplicação não foi encontrada." + +#: actions/deleteapplication.php:78 actions/editapplication.php:77 +#: actions/showapplication.php:94 +msgid "You are not the owner of this application." +msgstr "Você não é o dono desta aplicação." + +#: actions/deleteapplication.php:102 actions/editapplication.php:127 +#: actions/newapplication.php:110 actions/showapplication.php:118 +#: lib/action.php:1197 +msgid "There was a problem with your session token." +msgstr "Ocorreu um problema com o seu token de sessão." + +#: actions/deleteapplication.php:123 actions/deleteapplication.php:147 +msgid "Delete application" +msgstr "Excluir a aplicação" + +#: actions/deleteapplication.php:149 +msgid "" +"Are you sure you want to delete this application? This will clear all data " +"about the application from the database, including all existing user " +"connections." +msgstr "" +"Tem certeza que deseja excluir esta aplicação? Isso eliminará todos os dados " +"desta aplicação do banco de dados, incluindo todas as conexões existentes " +"com os usuários." + +#: actions/deleteapplication.php:156 +msgid "Do not delete this application" +msgstr "Não excluir esta aplicação" + +#: actions/deleteapplication.php:160 +msgid "Delete this application" +msgstr "Excluir esta aplicação" + #: 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/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 #: lib/adminpanelaction.php:72 lib/profileformaction.php:63 #: lib/settingsaction.php:72 @@ -821,7 +1004,7 @@ msgstr "Tem certeza que deseja excluir esta mensagem?" msgid "Do not delete this notice" msgstr "Não excluir esta mensagem." -#: actions/deletenotice.php:146 lib/noticelist.php:611 +#: actions/deletenotice.php:146 lib/noticelist.php:637 msgid "Delete this notice" msgstr "Excluir esta mensagem" @@ -842,8 +1025,8 @@ msgid "" "Are you sure you want to delete this user? This will clear all data about " "the user from the database, without a backup." msgstr "" -"Tem certeza que deseja excluir este usuário? Isso irá eliminar todos os " -"dados deste usuário do banco de dados, sem cópia de segurança." +"Tem certeza que deseja excluir este usuário? Isso eliminará todos os dados " +"deste usuário do banco de dados, sem cópia de segurança." #: actions/deleteuser.php:148 lib/deleteuserform.php:77 msgid "Delete this user" @@ -953,16 +1136,6 @@ msgstr "Restaura a aparência padrão" msgid "Reset back to default" msgstr "Restaura de volta ao padrão" -#: actions/designadminpanel.php:586 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 -#: actions/pathsadminpanel.php:324 actions/profilesettings.php:174 -#: actions/siteadminpanel.php:388 actions/smssettings.php:181 -#: actions/subscriptions.php:203 actions/tagother.php:154 -#: actions/useradminpanel.php:313 lib/designsettings.php:256 -#: lib/groupeditform.php:202 -msgid "Save" -msgstr "Salvar" - #: actions/designadminpanel.php:587 lib/designsettings.php:257 msgid "Save design" msgstr "Salvar a aparência" @@ -975,9 +1148,75 @@ msgstr "Esta mensagem não é uma favorita!" msgid "Add to favorites" msgstr "Adicionar às favoritas" -#: actions/doc.php:69 -msgid "No such document." -msgstr "Esse documento não existe." +#: actions/doc.php:158 +#, php-format +msgid "No such document \"%s\"" +msgstr "O documento \"%s\" não existe" + +#: actions/editapplication.php:54 +msgid "Edit Application" +msgstr "Editar a aplicação" + +#: actions/editapplication.php:66 +msgid "You must be logged in to edit an application." +msgstr "Você precisa estar autenticado para editar uma aplicação." + +#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:166 +#: actions/showapplication.php:87 +msgid "No such application." +msgstr "Essa aplicação não existe." + +#: actions/editapplication.php:161 +msgid "Use this form to edit your application." +msgstr "Use este formulário para editar a sua aplicação." + +#: actions/editapplication.php:177 actions/newapplication.php:159 +msgid "Name is required." +msgstr "O nome é obrigatório." + +#: actions/editapplication.php:180 actions/newapplication.php:165 +msgid "Name is too long (max 255 chars)." +msgstr "O nome é muito extenso (máx. 255 caracteres)." + +#: actions/editapplication.php:183 actions/newapplication.php:162 +msgid "Name already in use. Try another one." +msgstr "Este nome já está em uso. Tente outro." + +#: actions/editapplication.php:186 actions/newapplication.php:168 +msgid "Description is required." +msgstr "A descrição é obrigatória." + +#: actions/editapplication.php:194 +msgid "Source URL is too long." +msgstr "A URL da fonte é muito extensa." + +#: actions/editapplication.php:200 actions/newapplication.php:185 +msgid "Source URL is not valid." +msgstr "A URL da fonte não é válida." + +#: actions/editapplication.php:203 actions/newapplication.php:188 +msgid "Organization is required." +msgstr "A organização é obrigatória." + +#: actions/editapplication.php:206 actions/newapplication.php:191 +msgid "Organization is too long (max 255 chars)." +msgstr "A organização é muito extensa (máx. 255 caracteres)." + +#: actions/editapplication.php:209 actions/newapplication.php:194 +msgid "Organization homepage is required." +msgstr "O site da organização é obrigatório." + +#: actions/editapplication.php:218 actions/newapplication.php:206 +msgid "Callback is too long." +msgstr "O retorno é muito extenso." + +#: actions/editapplication.php:225 actions/newapplication.php:215 +msgid "Callback URL is not valid." +msgstr "A URL de retorno não é válida." + +#: actions/editapplication.php:258 +msgid "Could not update application." +msgstr "Não foi possível atualizar a aplicação." #: actions/editgroup.php:56 #, php-format @@ -990,9 +1229,8 @@ msgstr "Você deve estar autenticado para criar um grupo." #: 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 "Você deve ser o administrador do grupo para editá-lo" +msgstr "Você deve ser um administrador para editar o grupo." #: actions/editgroup.php:154 msgid "Use this form to edit the group." @@ -1007,7 +1245,7 @@ msgstr "descrição muito extensa (máximo %d caracteres)." msgid "Could not update group." msgstr "Não foi possível atualizar o grupo." -#: actions/editgroup.php:259 classes/User_group.php:390 +#: actions/editgroup.php:259 classes/User_group.php:433 msgid "Could not create aliases." msgstr "Não foi possível criar os apelidos." @@ -1016,7 +1254,6 @@ msgid "Options saved." msgstr "As configurações foram salvas." #: actions/emailsettings.php:60 -#, fuzzy msgid "Email settings" msgstr "Configurações do e-mail" @@ -1049,14 +1286,14 @@ msgstr "" "de spam!) por uma mensagem com mais instruções." #: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 +#: actions/smssettings.php:126 lib/applicationeditform.php:331 +#: lib/applicationeditform.php:332 msgid "Cancel" msgstr "Cancelar" #: actions/emailsettings.php:121 -#, fuzzy msgid "Email address" -msgstr "Endereços de e-mail" +msgstr "Endereço de e-mail" #: actions/emailsettings.php:123 msgid "Email address, like \"UserName@example.org\"" @@ -1134,7 +1371,7 @@ msgid "Cannot normalize that email address" msgstr "Não foi possível normalizar este endereço de e-mail" #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:157 +#: actions/siteadminpanel.php:143 msgid "Not a valid email address." msgstr "Não é um endereço de e-mail válido." @@ -1146,7 +1383,7 @@ msgstr "Esse já é seu endereço de e-mail." msgid "That email address already belongs to another user." msgstr "Esse endereço de e-mail já pertence à outro usuário." -#: actions/emailsettings.php:353 actions/imsettings.php:317 +#: actions/emailsettings.php:353 actions/imsettings.php:319 #: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." msgstr "Não foi possível inserir o código de confirmação." @@ -1209,7 +1446,7 @@ msgstr "Essa mensagem já é uma favorita!" msgid "Disfavor favorite" msgstr "Desmarcar a favorita" -#: actions/favorited.php:65 lib/popularnoticesection.php:88 +#: actions/favorited.php:65 lib/popularnoticesection.php:91 #: lib/publicgroupnav.php:93 msgid "Popular notices" msgstr "Mensagens populares" @@ -1357,19 +1594,19 @@ msgstr "O usuário já está bloqueado no grupo." msgid "User is not a member of group." msgstr "O usuário não é um membro do grupo" -#: actions/groupblock.php:136 actions/groupmembers.php:314 +#: actions/groupblock.php:136 actions/groupmembers.php:316 msgid "Block user from group" msgstr "Bloquear o usuário no grupo" #: actions/groupblock.php:162 -#, fuzzy, php-format +#, php-format msgid "" "Are you sure you want to block user \"%1$s\" from the group \"%2$s\"? They " "will be removed from the group, unable to post, and unable to subscribe to " "the group in the future." msgstr "" -"Tem certeza que deseja bloquear o usuário \"%s\" no grupo \"%s\"? Ele será " -"removido do grupo e impossibilitado de publicar e de se juntar ao grupo " +"Tem certeza que deseja bloquear o usuário \"%1$s\" no grupo \"%2$s\"? Ele " +"será removido do grupo e impossibilitado de publicar e de se juntar ao grupo " "futuramente." #: actions/groupblock.php:178 @@ -1427,7 +1664,6 @@ msgstr "" "arquivo é %s." #: actions/grouplogo.php:178 -#, fuzzy msgid "User without matching profile." msgstr "Usuário sem um perfil correspondente" @@ -1449,31 +1685,31 @@ msgid "%s group members" msgstr "Membros do grupo %s" #: actions/groupmembers.php:96 -#, fuzzy, php-format +#, php-format msgid "%1$s group members, page %2$d" -msgstr "Membros do grupo %s, pág. %d" +msgstr "Membros do grupo %1$s, pág. %2$d" #: actions/groupmembers.php:111 msgid "A list of the users in this group." msgstr "Uma lista dos usuários deste grupo." -#: actions/groupmembers.php:175 lib/action.php:442 lib/groupnav.php:107 +#: actions/groupmembers.php:175 lib/action.php:448 lib/groupnav.php:107 msgid "Admin" msgstr "Admin" -#: actions/groupmembers.php:346 lib/blockform.php:69 +#: actions/groupmembers.php:348 lib/blockform.php:69 msgid "Block" msgstr "Bloquear" -#: actions/groupmembers.php:441 +#: actions/groupmembers.php:443 msgid "Make user an admin of the group" msgstr "Tornar o usuário um administrador do grupo" -#: actions/groupmembers.php:473 +#: actions/groupmembers.php:475 msgid "Make Admin" msgstr "Tornar administrador" -#: actions/groupmembers.php:473 +#: actions/groupmembers.php:475 msgid "Make this user an admin" msgstr "Torna este usuário um administrador" @@ -1560,7 +1796,6 @@ msgid "Error removing the block." msgstr "Erro na remoção do bloqueio." #: actions/imsettings.php:59 -#, fuzzy msgid "IM settings" msgstr "Configurações do MI" @@ -1592,7 +1827,6 @@ msgstr "" "contatos?)" #: actions/imsettings.php:124 -#, fuzzy msgid "IM address" msgstr "Endereço do MI" @@ -1657,6 +1891,11 @@ msgstr "" msgid "That is not your Jabber ID." msgstr "Essa não é sua ID do Jabber." +#: actions/inbox.php:59 +#, php-format +msgid "Inbox for %1$s - page %2$d" +msgstr "Recebidas por %s - pág. %2$d" + #: actions/inbox.php:62 #, php-format msgid "Inbox for %s" @@ -1740,7 +1979,7 @@ msgstr "Mensagem pessoal" msgid "Optionally add a personal message to the invitation." msgstr "Você pode, opcionalmente, adicionar uma mensagem pessoal ao convite." -#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:237 +#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:236 msgid "Send" msgstr "Enviar" @@ -1811,9 +2050,9 @@ msgid "You must be logged in to join a group." msgstr "Você deve estar autenticado para se associar a um grupo." #: actions/joingroup.php:131 -#, fuzzy, php-format +#, php-format msgid "%1$s joined group %2$s" -msgstr "%s associou-se ao grupo %s" +msgstr "%1$s associou-se ao grupo %2$s" #: actions/leavegroup.php:60 msgid "You must be logged in to leave a group." @@ -1824,9 +2063,9 @@ msgid "You are not a member of that group." msgstr "Você não é um membro desse grupo." #: actions/leavegroup.php:127 -#, fuzzy, php-format +#, php-format msgid "%1$s left group %2$s" -msgstr "%s deixou o grupo %s" +msgstr "%1$s deixou o grupo %2$s" #: actions/login.php:80 actions/otp.php:62 actions/register.php:137 msgid "Already logged in." @@ -1841,7 +2080,7 @@ msgid "Error setting user. You are probably not authorized." msgstr "" "Erro na configuração do usuário. Você provavelmente não tem autorização." -#: actions/login.php:188 actions/login.php:241 lib/action.php:460 +#: actions/login.php:188 actions/login.php:241 lib/action.php:466 #: lib/logingroupnav.php:79 msgid "Login" msgstr "Entrar" @@ -1850,17 +2089,6 @@ msgstr "Entrar" msgid "Login to site" msgstr "Autenticar-se no site" -#: actions/login.php:230 actions/profilesettings.php:106 -#: actions/register.php:424 actions/showgroup.php:236 actions/tagother.php:94 -#: lib/groupeditform.php:152 lib/userprofile.php:131 -msgid "Nickname" -msgstr "Usuário" - -#: actions/login.php:233 actions/register.php:429 -#: lib/accountsettingsaction.php:116 -msgid "Password" -msgstr "Senha" - #: actions/login.php:236 actions/register.php:478 msgid "Remember me" msgstr "Lembrar neste computador" @@ -1892,31 +2120,51 @@ msgstr "" "Digite seu nome de usuário e senha. Ainda não possui um usuário? [Registre](%" "%action.register%%) uma nova conta." -#: actions/makeadmin.php:91 +#: actions/makeadmin.php:92 msgid "Only an admin can make another user an admin." msgstr "" "Somente um administrador pode dar privilégios de administração para outro " "usuário." -#: actions/makeadmin.php:95 -#, fuzzy, php-format +#: actions/makeadmin.php:96 +#, php-format msgid "%1$s is already an admin for group \"%2$s\"." -msgstr "%s já é um administrador do grupo \"%s\"." +msgstr "%1$s já é um administrador do grupo \"%2$s\"." -#: actions/makeadmin.php:132 -#, fuzzy, php-format +#: actions/makeadmin.php:133 +#, php-format msgid "Can't get membership record for %1$s in group %2$s." -msgstr "Não foi possível obter o registro de membro de %s no grupo %s" +msgstr "Não foi possível obter o registro de membro de %1$s no grupo %2$s." -#: actions/makeadmin.php:145 -#, fuzzy, php-format +#: actions/makeadmin.php:146 +#, php-format msgid "Can't make %1$s an admin for group %2$s." -msgstr "Não foi possível tornar %s um administrador do grupo %s" +msgstr "Não foi possível tornar %1$s um administrador do grupo %2$s." #: actions/microsummary.php:69 msgid "No current status" msgstr "Nenhuma mensagem atual" +#: actions/newapplication.php:52 +msgid "New Application" +msgstr "Nova aplicação" + +#: actions/newapplication.php:64 +msgid "You must be logged in to register an application." +msgstr "Você deve estar autenticado para registrar uma aplicação." + +#: actions/newapplication.php:143 +msgid "Use this form to register a new application." +msgstr "Utilize este formulário para registrar uma nova aplicação." + +#: actions/newapplication.php:176 +msgid "Source URL is required." +msgstr "A URL da fonte é obrigatória." + +#: actions/newapplication.php:258 actions/newapplication.php:267 +msgid "Could not create application." +msgstr "Não foi possível criar a aplicação." + #: actions/newgroup.php:53 msgid "New group" msgstr "Novo grupo" @@ -1954,9 +2202,9 @@ msgid "Message sent" msgstr "A mensagem foi enviada" #: actions/newmessage.php:185 -#, fuzzy, php-format +#, php-format msgid "Direct message to %s sent." -msgstr "A mensagem direta para %s foi enviada" +msgstr "A mensagem direta para %s foi enviada." #: actions/newmessage.php:210 actions/newnotice.php:245 lib/channel.php:170 msgid "Ajax Error" @@ -1984,9 +2232,9 @@ msgid "Text search" msgstr "Procurar por texto" #: actions/noticesearch.php:91 -#, fuzzy, php-format +#, php-format msgid "Search results for \"%1$s\" on %2$s" -msgstr "Resultados da procura por \"%s\" no %s" +msgstr "Resultados da procura para \"%1$s\" no %2$s" #: actions/noticesearch.php:121 #, php-format @@ -2032,6 +2280,50 @@ msgstr "A chamada de atenção foi enviada" msgid "Nudge sent!" msgstr "A chamada de atenção foi enviada!" +#: actions/oauthappssettings.php:59 +msgid "You must be logged in to list your applications." +msgstr "Você precisa estar autenticado para listar suas aplicações." + +#: actions/oauthappssettings.php:74 +msgid "OAuth applications" +msgstr "Aplicações OAuth" + +#: actions/oauthappssettings.php:85 +msgid "Applications you have registered" +msgstr "Aplicações que você registrou" + +#: actions/oauthappssettings.php:135 +#, php-format +msgid "You have not registered any applications yet." +msgstr "Você ainda não registrou nenhuma aplicação." + +#: actions/oauthconnectionssettings.php:72 +msgid "Connected applications" +msgstr "Aplicações conectadas" + +#: actions/oauthconnectionssettings.php:83 +msgid "You have allowed the following applications to access you account." +msgstr "Você permitiu que as seguintes aplicações acessem a sua conta." + +#: actions/oauthconnectionssettings.php:175 +msgid "You are not a user of that application." +msgstr "Você não é um usuário dessa aplicação." + +#: actions/oauthconnectionssettings.php:186 +msgid "Unable to revoke access for app: " +msgstr "Não foi possível revogar o acesso para a aplicação: " + +#: actions/oauthconnectionssettings.php:198 +#, php-format +msgid "You have not authorized any applications to use your account." +msgstr "Você não autorizou nenhuma aplicação a usar a sua conta." + +#: actions/oauthconnectionssettings.php:211 +msgid "Developers can edit the registration settings for their applications " +msgstr "" +"Os desenvolvedores podem editar as configurações de registro para suas " +"aplicações " + #: actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" msgstr "A mensagem não está associada a nenhum perfil" @@ -2049,8 +2341,8 @@ msgstr "tipo de conteúdo " msgid "Only " msgstr "Apenas " -#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1033 -#: lib/api.php:1061 lib/api.php:1171 +#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 +#: lib/api.php:1068 lib/api.php:1177 msgid "Not a supported data format." msgstr "Não é um formato de dados suportado." @@ -2063,7 +2355,7 @@ msgid "Notice Search" msgstr "Procurar mensagens" #: actions/othersettings.php:60 -msgid "Other Settings" +msgid "Other settings" msgstr "Outras configurações" #: actions/othersettings.php:71 @@ -2095,29 +2387,29 @@ 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/otp.php:69 -#, fuzzy msgid "No user ID specified." -msgstr "Não foi especificado nenhum grupo." +msgstr "Não foi especificado nenhum ID de usuário." #: actions/otp.php:83 -#, fuzzy msgid "No login token specified." -msgstr "Não foi especificada nenhuma mensagem." +msgstr "Não foi especificado nenhum token de autenticação." #: actions/otp.php:90 -#, fuzzy msgid "No login token requested." -msgstr "Nenhuma ID de perfil na requisição." +msgstr "Não foi requerido nenhum token de autenticação." #: actions/otp.php:95 -#, fuzzy msgid "Invalid login token specified." -msgstr "Token inválido ou expirado." +msgstr "O token de autenticação especificado é inválido." #: actions/otp.php:104 -#, fuzzy msgid "Login token expired." -msgstr "Autenticar-se no site" +msgstr "O token de autenticação expirou." + +#: actions/outbox.php:58 +#, php-format +msgid "Outbox for %1$s - page %2$d" +msgstr "Enviadas por %s - pág. %2$d" #: actions/outbox.php:61 #, php-format @@ -2191,7 +2483,7 @@ msgstr "Não é possível salvar a nova senha." msgid "Password saved." msgstr "A senha foi salva." -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:326 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:331 msgid "Paths" msgstr "Caminhos" @@ -2199,134 +2491,149 @@ msgstr "Caminhos" msgid "Path and server settings for this StatusNet site." msgstr "Configurações dos caminhos e do servidor para este site StatusNet." -#: actions/pathsadminpanel.php:140 +#: actions/pathsadminpanel.php:157 #, php-format msgid "Theme directory not readable: %s" msgstr "Sem permissão de leitura no diretório de temas: %s" -#: actions/pathsadminpanel.php:146 +#: actions/pathsadminpanel.php:163 #, php-format msgid "Avatar directory not writable: %s" msgstr "Sem permissão de escrita no diretório de avatares: %s" -#: actions/pathsadminpanel.php:152 +#: actions/pathsadminpanel.php:169 #, php-format msgid "Background directory not writable: %s" msgstr "Sem permissão de escrita no diretório de imagens de fundo: %s" -#: actions/pathsadminpanel.php:160 +#: actions/pathsadminpanel.php:177 #, php-format msgid "Locales directory not readable: %s" msgstr "Sem permissão de leitura no diretório de locales: %s" -#: actions/pathsadminpanel.php:166 +#: actions/pathsadminpanel.php:183 msgid "Invalid SSL server. The maximum length is 255 characters." msgstr "" "Servidor SSL inválido. O comprimento máximo deve ser de 255 caracteres." -#: actions/pathsadminpanel.php:217 actions/siteadminpanel.php:58 +#: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58 #: lib/adminpanelaction.php:311 msgid "Site" msgstr "Site" -#: actions/pathsadminpanel.php:221 +#: actions/pathsadminpanel.php:238 +msgid "Server" +msgstr "Servidor" + +#: actions/pathsadminpanel.php:238 +msgid "Site's server hostname." +msgstr "Nome de host do servidor do site." + +#: actions/pathsadminpanel.php:242 msgid "Path" msgstr "Caminho" -#: actions/pathsadminpanel.php:221 +#: actions/pathsadminpanel.php:242 msgid "Site path" msgstr "Caminho do site" -#: actions/pathsadminpanel.php:225 +#: actions/pathsadminpanel.php:246 msgid "Path to locales" msgstr "Caminho para os locales" -#: actions/pathsadminpanel.php:225 +#: actions/pathsadminpanel.php:246 msgid "Directory path to locales" msgstr "Caminho do diretório de locales" -#: actions/pathsadminpanel.php:232 +#: actions/pathsadminpanel.php:250 +msgid "Fancy URLs" +msgstr "URLs limpas" + +#: actions/pathsadminpanel.php:252 +msgid "Use fancy (more readable and memorable) URLs?" +msgstr "Utilizar URLs limpas (mais legíveis e memorizáveis)?" + +#: actions/pathsadminpanel.php:259 msgid "Theme" msgstr "Tema" -#: actions/pathsadminpanel.php:237 +#: actions/pathsadminpanel.php:264 msgid "Theme server" msgstr "Servidor de temas" -#: actions/pathsadminpanel.php:241 +#: actions/pathsadminpanel.php:268 msgid "Theme path" msgstr "Caminho dos temas" -#: actions/pathsadminpanel.php:245 +#: actions/pathsadminpanel.php:272 msgid "Theme directory" msgstr "Diretório dos temas" -#: actions/pathsadminpanel.php:252 +#: actions/pathsadminpanel.php:279 msgid "Avatars" msgstr "Avatares" -#: actions/pathsadminpanel.php:257 +#: actions/pathsadminpanel.php:284 msgid "Avatar server" msgstr "Servidor de avatares" -#: actions/pathsadminpanel.php:261 +#: actions/pathsadminpanel.php:288 msgid "Avatar path" msgstr "Caminho dos avatares" -#: actions/pathsadminpanel.php:265 +#: actions/pathsadminpanel.php:292 msgid "Avatar directory" msgstr "Diretório dos avatares" -#: actions/pathsadminpanel.php:274 +#: actions/pathsadminpanel.php:301 msgid "Backgrounds" msgstr "Imagens de fundo" -#: actions/pathsadminpanel.php:278 +#: actions/pathsadminpanel.php:305 msgid "Background server" msgstr "Servidor de imagens de fundo" -#: actions/pathsadminpanel.php:282 +#: actions/pathsadminpanel.php:309 msgid "Background path" msgstr "Caminho das imagens de fundo" -#: actions/pathsadminpanel.php:286 +#: actions/pathsadminpanel.php:313 msgid "Background directory" msgstr "Diretório das imagens de fundo" -#: actions/pathsadminpanel.php:293 +#: actions/pathsadminpanel.php:320 msgid "SSL" msgstr "SSL" -#: actions/pathsadminpanel.php:296 actions/siteadminpanel.php:346 +#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 msgid "Never" msgstr "Nunca" -#: actions/pathsadminpanel.php:297 +#: actions/pathsadminpanel.php:324 msgid "Sometimes" msgstr "Algumas vezes" -#: actions/pathsadminpanel.php:298 +#: actions/pathsadminpanel.php:325 msgid "Always" msgstr "Sempre" -#: actions/pathsadminpanel.php:302 +#: actions/pathsadminpanel.php:329 msgid "Use SSL" msgstr "Usar SSL" -#: actions/pathsadminpanel.php:303 +#: actions/pathsadminpanel.php:330 msgid "When to use SSL" msgstr "Quando usar SSL" -#: actions/pathsadminpanel.php:308 -#, fuzzy +#: actions/pathsadminpanel.php:335 msgid "SSL server" msgstr "Servidor SSL" -#: actions/pathsadminpanel.php:309 +#: actions/pathsadminpanel.php:336 msgid "Server to direct SSL requests to" msgstr "Servidor para onde devem ser direcionadas as requisições SSL" -#: actions/pathsadminpanel.php:325 +#: actions/pathsadminpanel.php:352 msgid "Save paths" msgstr "Salvar caminhos" @@ -2349,19 +2656,19 @@ msgid "Not a valid people tag: %s" msgstr "Não é uma etiqueta de pessoa válida: %s" #: actions/peopletag.php:144 -#, fuzzy, php-format +#, php-format msgid "Users self-tagged with %1$s - page %2$d" -msgstr "Usuários auto-etiquetados com %s - pág. %d" +msgstr "Usuários auto-etiquetados com %1$s - pág. %2$d" #: actions/postnotice.php:84 msgid "Invalid notice content" msgstr "O conteúdo da mensagem é inválido" #: actions/postnotice.php:90 -#, fuzzy, php-format +#, php-format msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" -"A licença ‘%s’ da mensagem não é compatível com a licença ‘%s’ do site." +"A licença ‘%1$s’ da mensagem não é compatível com a licença ‘%2$s’ do site." #: actions/profilesettings.php:60 msgid "Profile settings" @@ -2389,7 +2696,7 @@ msgid "Full name" msgstr "Nome completo" #: actions/profilesettings.php:115 actions/register.php:453 -#: lib/groupeditform.php:161 +#: lib/applicationeditform.php:228 lib/groupeditform.php:161 msgid "Homepage" msgstr "Site" @@ -2412,7 +2719,7 @@ msgstr "Descrição" #: actions/profilesettings.php:132 actions/register.php:471 #: actions/showgroup.php:256 actions/tagother.php:112 -#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:164 msgid "Location" msgstr "Localização" @@ -2438,7 +2745,7 @@ msgstr "" "Suas etiquetas (letras, números, -, ., e _), separadas por vírgulas ou " "espaços" -#: actions/profilesettings.php:151 actions/siteadminpanel.php:294 +#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 msgid "Language" msgstr "Idioma" @@ -2465,7 +2772,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "A descrição é muito extensa (máximo %d caracteres)." -#: actions/profilesettings.php:235 actions/siteadminpanel.php:164 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 msgid "Timezone not selected." msgstr "O fuso horário não foi selecionado." @@ -2478,23 +2785,23 @@ msgstr "O nome do idioma é muito extenso (máx. 50 caracteres)." msgid "Invalid tag: \"%s\"" msgstr "Etiqueta inválida: \"%s\"" -#: actions/profilesettings.php:302 +#: actions/profilesettings.php:306 msgid "Couldn't update user for autosubscribe." msgstr "Não foi possível atualizar o usuário para assinar automaticamente." -#: actions/profilesettings.php:359 +#: actions/profilesettings.php:363 msgid "Couldn't save location prefs." msgstr "Não foi possível salvar as preferências de localização." -#: actions/profilesettings.php:371 +#: actions/profilesettings.php:375 msgid "Couldn't save profile." msgstr "Não foi possível salvar o perfil." -#: actions/profilesettings.php:379 +#: actions/profilesettings.php:383 msgid "Couldn't save tags." msgstr "Não foi possível salvar as etiquetas." -#: actions/profilesettings.php:387 lib/adminpanelaction.php:137 +#: actions/profilesettings.php:391 lib/adminpanelaction.php:137 msgid "Settings saved." msgstr "As configurações foram salvas." @@ -2516,19 +2823,19 @@ msgstr "Mensagens públicas, pág. %d" msgid "Public timeline" msgstr "Mensagens públicas" -#: actions/public.php:151 +#: actions/public.php:159 msgid "Public Stream Feed (RSS 1.0)" msgstr "Fonte de mensagens públicas (RSS 1.0)" -#: actions/public.php:155 +#: actions/public.php:163 msgid "Public Stream Feed (RSS 2.0)" msgstr "Fonte de mensagens públicas (RSS 2.0)" -#: actions/public.php:159 +#: actions/public.php:167 msgid "Public Stream Feed (Atom)" msgstr "Fonte de mensagens públicas (Atom)" -#: actions/public.php:179 +#: actions/public.php:187 #, php-format msgid "" "This is the public timeline for %%site.name%% but no one has posted anything " @@ -2537,11 +2844,11 @@ msgstr "" "Esse é o fluxo de mensagens públicas de %%site.name%%, mas ninguém publicou " "nada ainda." -#: actions/public.php:182 +#: actions/public.php:190 msgid "Be the first to post!" msgstr "Seja o primeiro a publicar!" -#: actions/public.php:186 +#: actions/public.php:194 #, php-format msgid "" "Why not [register an account](%%action.register%%) and be the first to post!" @@ -2549,7 +2856,7 @@ msgstr "" "Por que você não [registra uma conta](%%action.register%%) pra ser o " "primeiro a publicar?" -#: actions/public.php:233 +#: actions/public.php:241 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2562,7 +2869,7 @@ msgstr "" "[Cadastre-se agora](%%action.register%%) para compartilhar notícias sobre " "você com seus amigos, família e colegas! ([Saiba mais](%%doc.help%%))" -#: actions/public.php:238 +#: actions/public.php:246 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2600,7 +2907,7 @@ msgstr "" "Por que você não [registra uma conta](%%action.register%%) pra ser o " "primeiro a publicar?" -#: actions/publictagcloud.php:131 +#: actions/publictagcloud.php:134 msgid "Tag cloud" msgstr "Nuvem de etiquetas" @@ -2745,7 +3052,7 @@ msgstr "Desculpe, mas o código do convite é inválido." msgid "Registration successful" msgstr "Registro realizado com sucesso" -#: actions/register.php:114 actions/register.php:503 lib/action.php:457 +#: actions/register.php:114 actions/register.php:503 lib/action.php:463 #: lib/logingroupnav.php:85 msgid "Register" msgstr "Registrar-se" @@ -2788,7 +3095,7 @@ msgid "Same as password above. Required." msgstr "Igual à senha acima. Obrigatório." #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:270 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 msgid "Email" msgstr "E-mail" @@ -2817,7 +3124,7 @@ msgstr "" "e número de telefone." #: actions/register.php:538 -#, fuzzy, php-format +#, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " "want to...\n" @@ -2834,10 +3141,10 @@ msgid "" "\n" "Thanks for signing up and we hope you enjoy using this service." msgstr "" -"Parabéns, %s! E bem-vindo(a) a %%%%site.name%%%%. A partir daqui, você " +"Parabéns, %1$s! E bem-vindo(a) a %%%%site.name%%%%. A partir daqui, você " "pode...\n" "\n" -"* Acessar [seu perfil](%s) e publicar sua primeira mensagem.\n" +"* Acessar [seu perfil](%2$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 pessoas](%%%%action.peoplesearch%%%%) que você conheça ou que " @@ -2894,7 +3201,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "URL do seu perfil em outro serviço de microblog compatível" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:365 +#: lib/userprofile.php:368 msgid "Subscribe" msgstr "Assinar" @@ -2931,7 +3238,7 @@ msgstr "Você não pode repetir sua própria mensagem." msgid "You already repeated that notice." msgstr "Você já repetiu essa mensagem." -#: actions/repeat.php:114 lib/noticelist.php:629 +#: actions/repeat.php:114 lib/noticelist.php:656 msgid "Repeated" msgstr "Repetida" @@ -2945,6 +3252,11 @@ msgstr "Repetida!" msgid "Replies to %s" msgstr "Respostas para %s" +#: actions/replies.php:127 +#, php-format +msgid "Replies to %1$s, page %2$d" +msgstr "Respostas para %1$s, pág. %2$d" + #: actions/replies.php:144 #, php-format msgid "Replies feed for %s (RSS 1.0)" @@ -2961,13 +3273,13 @@ msgid "Replies feed for %s (Atom)" msgstr "Fonte de respostas para %s (Atom)" #: actions/replies.php:198 -#, fuzzy, php-format +#, php-format msgid "" "This is the timeline showing replies to %1$s but %2$s hasn't received a " "notice to his attention yet." msgstr "" -"Esse é o fluxo de mensagens de resposta para %s, mas %s ainda não recebeu " -"nenhuma mensagem direcionada a ele(a)." +"Esse é o fluxo de mensagens de resposta para %1$s, mas %2$s ainda não " +"recebeu nenhuma mensagem direcionada a ele(a)." #: actions/replies.php:203 #, php-format @@ -2979,19 +3291,24 @@ msgstr "" "pessoas ou [associe-se a grupos](%%action.groups%%)." #: actions/replies.php:205 -#, fuzzy, php-format +#, php-format msgid "" "You can try to [nudge %1$s](../%2$s) or [post something to his or her " "attention](%%%%action.newnotice%%%%?status_textarea=%3$s)." msgstr "" -"Você pode tentar [chamar a atenção de %s](../%s) ou [publicar alguma coisa " -"que desperte seu interesse](%%%%action.newnotice%%%%?status_textarea=%s)." +"Você pode tentar [chamar a atenção de %1$s](../%2$s) ou [publicar alguma " +"coisa que desperte seu interesse](%%%%action.newnotice%%%%?status_textarea=%3" +"$s)." #: actions/repliesrss.php:72 #, php-format msgid "Replies to %1$s on %2$s!" msgstr "Respostas para %1$s no %2$s" +#: actions/rsd.php:146 actions/version.php:157 +msgid "StatusNet" +msgstr "StatusNet" + #: actions/sandbox.php:65 actions/unsandbox.php:65 msgid "You cannot sandbox users on this site." msgstr "Você não pode colocar usuários deste site em isolamento." @@ -3000,6 +3317,121 @@ msgstr "Você não pode colocar usuários deste site em isolamento." msgid "User is already sandboxed." msgstr "O usuário já está em isolamento." +#: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:336 +msgid "Sessions" +msgstr "Sessões" + +#: actions/sessionsadminpanel.php:65 +msgid "Session settings for this StatusNet site." +msgstr "Configurações da sessão deste site StatusNet." + +#: actions/sessionsadminpanel.php:175 +msgid "Handle sessions" +msgstr "Gerenciar sessões" + +#: actions/sessionsadminpanel.php:177 +msgid "Whether to handle sessions ourselves." +msgstr "Define se nós cuidamos do gerenciamento das sessões." + +#: actions/sessionsadminpanel.php:181 +msgid "Session debugging" +msgstr "Depuração da sessão" + +#: actions/sessionsadminpanel.php:183 +msgid "Turn on debugging output for sessions." +msgstr "Ativa a saída de depuração para as sessões." + +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/useradminpanel.php:293 +msgid "Save site settings" +msgstr "Salvar as configurações do site" + +#: actions/showapplication.php:82 +msgid "You must be logged in to view an application." +msgstr "Você deve estar autenticado para visualizar uma aplicação." + +#: actions/showapplication.php:157 +msgid "Application profile" +msgstr "Perfil da aplicação" + +#: actions/showapplication.php:159 lib/applicationeditform.php:180 +msgid "Icon" +msgstr "Ícone" + +#: actions/showapplication.php:169 actions/version.php:195 +#: lib/applicationeditform.php:195 +msgid "Name" +msgstr "Nome" + +#: actions/showapplication.php:178 lib/applicationeditform.php:222 +msgid "Organization" +msgstr "Organização" + +#: actions/showapplication.php:187 actions/version.php:198 +#: lib/applicationeditform.php:209 lib/groupeditform.php:172 +msgid "Description" +msgstr "Descrição" + +#: actions/showapplication.php:192 actions/showgroup.php:429 +#: lib/profileaction.php:174 +msgid "Statistics" +msgstr "Estatísticas" + +#: actions/showapplication.php:203 +#, php-format +msgid "Created by %1$s - %2$s access by default - %3$d users" +msgstr "Criado por %1$s - acesso %2$s por padrão - %3$d usuários" + +#: actions/showapplication.php:213 +msgid "Application actions" +msgstr "Ações da aplicação" + +#: actions/showapplication.php:236 +msgid "Reset key & secret" +msgstr "Restaurar a chave e o segredo" + +#: actions/showapplication.php:261 +msgid "Application info" +msgstr "Informação da aplicação" + +#: actions/showapplication.php:263 +msgid "Consumer key" +msgstr "Chave do consumidor" + +#: actions/showapplication.php:268 +msgid "Consumer secret" +msgstr "Segredo do consumidor" + +#: actions/showapplication.php:273 +msgid "Request token URL" +msgstr "URL do token de requisição" + +#: actions/showapplication.php:278 +msgid "Access token URL" +msgstr "URL do token de acesso" + +#: actions/showapplication.php:283 +msgid "Authorize URL" +msgstr "Autorizar a URL" + +#: actions/showapplication.php:288 +msgid "" +"Note: We support HMAC-SHA1 signatures. We do not support the plaintext " +"signature method." +msgstr "" +"Nota: Nós suportamos assinaturas HMAC-SHA1. Nós não suportamos o método de " +"assinatura em texto plano." + +#: actions/showapplication.php:309 +msgid "Are you sure you want to reset your consumer key and secret?" +msgstr "Tem certeza que deseja restaurar sua chave e segredo de consumidor?" + +#: actions/showfavorites.php:79 +#, php-format +msgid "%1$s's favorite notices, page %2$d" +msgstr "Mensagens favoritas de %1$s, pág. %2$d" + #: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "Não foi possível recuperar as mensagens favoritas." @@ -3057,17 +3489,22 @@ msgstr "Esta é uma forma de compartilhar o que você gosta." msgid "%s group" msgstr "Grupo %s" +#: actions/showgroup.php:84 +#, php-format +msgid "%1$s group, page %2$d" +msgstr "Grupo %1$s, pág. %2$d" + #: actions/showgroup.php:218 msgid "Group profile" msgstr "Perfil do grupo" #: actions/showgroup.php:263 actions/tagother.php:118 -#: actions/userauthorization.php:167 lib/userprofile.php:177 +#: actions/userauthorization.php:175 lib/userprofile.php:177 msgid "URL" msgstr "Site" #: actions/showgroup.php:274 actions/tagother.php:128 -#: actions/userauthorization.php:179 lib/userprofile.php:194 +#: actions/userauthorization.php:187 lib/userprofile.php:194 msgid "Note" msgstr "Mensagem" @@ -3113,10 +3550,6 @@ msgstr "(Nenhum)" msgid "All members" msgstr "Todos os membros" -#: actions/showgroup.php:429 lib/profileaction.php:174 -msgid "Statistics" -msgstr "Estatísticas" - #: actions/showgroup.php:432 msgid "Created" msgstr "Criado" @@ -3181,10 +3614,15 @@ msgstr "A mensagem excluída." msgid " tagged %s" msgstr " etiquetada %s" +#: actions/showstream.php:79 +#, php-format +msgid "%1$s, page %2$d" +msgstr "%1$s, pág. %2$d" + #: actions/showstream.php:122 -#, fuzzy, php-format +#, php-format msgid "Notice feed for %1$s tagged %2$s (RSS 1.0)" -msgstr "Fonte de mensagens de %s etiquetada %s (RSS 1.0)" +msgstr "Fonte de mensagens de %1$s etiquetada como %2$s (RSS 1.0)" #: actions/showstream.php:129 #, php-format @@ -3206,13 +3644,14 @@ msgstr "Fonte de mensagens de %s (Atom)" msgid "FOAF for %s" msgstr "FOAF de %s" -#: actions/showstream.php:191 -#, fuzzy, php-format +#: actions/showstream.php:200 +#, php-format msgid "This is the timeline for %1$s but %2$s hasn't posted anything yet." msgstr "" -"Este é o fluxo público de mensagens de %s, mas %s não publicou nada ainda." +"Este é o fluxo público de mensagens de %1$s, mas %2$s não publicou nada " +"ainda." -#: actions/showstream.php:196 +#: actions/showstream.php:205 msgid "" "Seen anything interesting recently? You haven't posted any notices yet, now " "would be a good time to start :)" @@ -3220,16 +3659,16 @@ msgstr "" "Viu alguma coisa interessante recentemente? Você ainda não publicou nenhuma " "mensagem. Que tal começar agora? :)" -#: actions/showstream.php:198 -#, fuzzy, php-format +#: actions/showstream.php:207 +#, php-format msgid "" "You can try to nudge %1$s or [post something to his or her attention](%%%%" "action.newnotice%%%%?status_textarea=%2$s)." msgstr "" -"Você pode tentar chamar a atenção de %s ou [publicar alguma coisa que " -"desperte seu interesse](%%%%action.newnotice%%%%?status_textarea=%s)." +"Você pode tentar chamar a atenção de %1$s ou [publicar alguma coisa que " +"desperte seu interesse](%%%%action.newnotice%%%%?status_textarea=%2$s)." -#: actions/showstream.php:234 +#: actions/showstream.php:243 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3243,7 +3682,7 @@ msgstr "" "acompanhar as mensagens de **%s** e muito mais! ([Saiba mais](%%%%doc.help%%%" "%))" -#: actions/showstream.php:239 +#: actions/showstream.php:248 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3254,7 +3693,7 @@ msgstr "" "pt.wikipedia.org/wiki/Micro-blogging) baseado no software livre [StatusNet]" "(http://status.net/). " -#: actions/showstream.php:313 +#: actions/showstream.php:305 #, php-format msgid "Repeat of %s" msgstr "Repetição de %s" @@ -3271,202 +3710,148 @@ msgstr "O usuário já está silenciado." msgid "Basic settings for this StatusNet site." msgstr "Configurações básicas para esta instância do StatusNet." -#: actions/siteadminpanel.php:146 +#: actions/siteadminpanel.php:132 msgid "Site name must have non-zero length." msgstr "Você deve digitar alguma coisa para o nome do site." -#: actions/siteadminpanel.php:154 -#, fuzzy +#: actions/siteadminpanel.php:140 msgid "You must have a valid contact email address." msgstr "Você deve ter um endereço de e-mail para contato válido." -#: actions/siteadminpanel.php:172 -#, fuzzy, php-format +#: actions/siteadminpanel.php:158 +#, php-format msgid "Unknown language \"%s\"." -msgstr "Idioma desconhecido \"%s\"" +msgstr "Idioma \"%s\" desconhecido." -#: actions/siteadminpanel.php:179 +#: actions/siteadminpanel.php:165 msgid "Invalid snapshot report URL." msgstr "A URL para o envio das estatísticas é inválida." -#: actions/siteadminpanel.php:185 +#: actions/siteadminpanel.php:171 msgid "Invalid snapshot run value." msgstr "O valor de execução da obtenção das estatísticas é inválido." -#: actions/siteadminpanel.php:191 +#: actions/siteadminpanel.php:177 msgid "Snapshot frequency must be a number." msgstr "A frequência de geração de estatísticas deve ser um número." -#: actions/siteadminpanel.php:197 +#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "O comprimento máximo do texto é de 140 caracteres." -#: actions/siteadminpanel.php:203 +#: actions/siteadminpanel.php:189 msgid "Dupe limit must 1 or more seconds." msgstr "O limite de duplicatas deve ser de um ou mais segundos." -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:239 msgid "General" msgstr "Geral" -#: actions/siteadminpanel.php:256 +#: actions/siteadminpanel.php:242 msgid "Site name" msgstr "Nome do site" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:243 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "O nome do seu site, por exemplo \"Microblog da Sua Empresa\"" -#: actions/siteadminpanel.php:261 +#: actions/siteadminpanel.php:247 msgid "Brought by" msgstr "Disponibilizado por" -#: actions/siteadminpanel.php:262 +#: actions/siteadminpanel.php:248 msgid "Text used for credits link in footer of each page" msgstr "Texto utilizado para o link de créditos no rodapé de cada página" -#: actions/siteadminpanel.php:266 +#: actions/siteadminpanel.php:252 msgid "Brought by URL" msgstr "URL do disponibilizado por" -#: actions/siteadminpanel.php:267 +#: actions/siteadminpanel.php:253 msgid "URL used for credits link in footer of each page" msgstr "URL utilizada para o link de créditos no rodapé de cada página" -#: actions/siteadminpanel.php:271 +#: actions/siteadminpanel.php:257 msgid "Contact email address for your site" msgstr "Endereço de e-mail para contatos do seu site" -#: actions/siteadminpanel.php:277 +#: actions/siteadminpanel.php:263 msgid "Local" msgstr "Local" -#: actions/siteadminpanel.php:288 +#: actions/siteadminpanel.php:274 msgid "Default timezone" msgstr "Fuso horário padrão" -#: actions/siteadminpanel.php:289 +#: actions/siteadminpanel.php:275 msgid "Default timezone for the site; usually UTC." msgstr "Fuso horário padrão para o seu site; geralmente UTC." -#: actions/siteadminpanel.php:295 +#: actions/siteadminpanel.php:281 msgid "Default site language" msgstr "Idioma padrão do site" -#: actions/siteadminpanel.php:303 -msgid "URLs" -msgstr "URLs" - -#: actions/siteadminpanel.php:306 -msgid "Server" -msgstr "Servidor" - -#: actions/siteadminpanel.php:306 -msgid "Site's server hostname." -msgstr "Nome de host do servidor do site." - -#: actions/siteadminpanel.php:310 -msgid "Fancy URLs" -msgstr "URLs limpas" - -#: actions/siteadminpanel.php:312 -msgid "Use fancy (more readable and memorable) URLs?" -msgstr "Utilizar URLs limpas (mais legíveis e memorizáveis)?" - -#: actions/siteadminpanel.php:318 -msgid "Access" -msgstr "Acesso" - -#: actions/siteadminpanel.php:321 -msgid "Private" -msgstr "Particular" - -#: actions/siteadminpanel.php:323 -msgid "Prohibit anonymous users (not logged in) from viewing site?" -msgstr "Impedir usuários anônimos (não autenticados) de visualizar o site?" - -#: actions/siteadminpanel.php:327 -msgid "Invite only" -msgstr "Somente convidados" - -#: actions/siteadminpanel.php:329 -msgid "Make registration invitation only." -msgstr "Cadastro liberado somente para convidados." - -#: actions/siteadminpanel.php:333 -msgid "Closed" -msgstr "Fechado" - -#: actions/siteadminpanel.php:335 -msgid "Disable new registrations." -msgstr "Desabilita novos registros." - -#: actions/siteadminpanel.php:341 +#: actions/siteadminpanel.php:289 msgid "Snapshots" msgstr "Estatísticas" -#: actions/siteadminpanel.php:344 +#: actions/siteadminpanel.php:292 msgid "Randomly during Web hit" msgstr "Aleatoriamente durante o funcionamento" -#: actions/siteadminpanel.php:345 +#: actions/siteadminpanel.php:293 msgid "In a scheduled job" msgstr "Em horários pré-definidos" -#: actions/siteadminpanel.php:347 +#: actions/siteadminpanel.php:295 msgid "Data snapshots" msgstr "Estatísticas dos dados" -#: actions/siteadminpanel.php:348 +#: actions/siteadminpanel.php:296 msgid "When to send statistical data to status.net servers" msgstr "Quando enviar dados estatísticos para os servidores status.net" -#: actions/siteadminpanel.php:353 +#: actions/siteadminpanel.php:301 msgid "Frequency" msgstr "Frequentemente" -#: actions/siteadminpanel.php:354 +#: actions/siteadminpanel.php:302 msgid "Snapshots will be sent once every N web hits" msgstr "As estatísticas serão enviadas uma vez a cada N usos da web" -#: actions/siteadminpanel.php:359 +#: actions/siteadminpanel.php:307 msgid "Report URL" msgstr "URL para envio" -#: actions/siteadminpanel.php:360 +#: actions/siteadminpanel.php:308 msgid "Snapshots will be sent to this URL" msgstr "As estatísticas serão enviadas para esta URL" -#: actions/siteadminpanel.php:367 +#: actions/siteadminpanel.php:315 msgid "Limits" msgstr "Limites" -#: actions/siteadminpanel.php:370 +#: actions/siteadminpanel.php:318 msgid "Text limit" msgstr "Limite do texto" -#: actions/siteadminpanel.php:370 +#: actions/siteadminpanel.php:318 msgid "Maximum number of characters for notices." msgstr "Número máximo de caracteres para as mensagens." -#: actions/siteadminpanel.php:374 +#: actions/siteadminpanel.php:322 msgid "Dupe limit" msgstr "Limite de duplicatas" -#: actions/siteadminpanel.php:374 +#: actions/siteadminpanel.php:322 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" "Quanto tempo (em segundos) os usuários devem esperar para publicar a mesma " "coisa novamente." -#: actions/siteadminpanel.php:388 actions/useradminpanel.php:313 -msgid "Save site settings" -msgstr "Salvar as configurações do site" - #: actions/smssettings.php:58 -#, fuzzy msgid "SMS settings" -msgstr "Configuração de SMS" +msgstr "Configuração do SMS" #: actions/smssettings.php:69 #, php-format @@ -3494,7 +3879,6 @@ msgid "Enter the code you received on your phone." msgstr "Informe o código que você recebeu no seu telefone." #: actions/smssettings.php:138 -#, fuzzy msgid "SMS phone number" msgstr "Telefone para SMS" @@ -3567,15 +3951,26 @@ msgstr "Não foi digitado nenhum código" msgid "You are not subscribed to that profile." msgstr "Você não está assinando esse perfil." -#: actions/subedit.php:83 +#: actions/subedit.php:83 classes/Subscription.php:89 +#: classes/Subscription.php:116 msgid "Could not save subscription." msgstr "Não foi possível salvar a assinatura." -#: actions/subscribe.php:55 -msgid "Not a local user." -msgstr "Não é um usuário local." +#: actions/subscribe.php:77 +msgid "This action only accepts POST requests." +msgstr "" -#: actions/subscribe.php:69 +#: actions/subscribe.php:107 +#, fuzzy +msgid "No such profile." +msgstr "Esse arquivo não existe." + +#: actions/subscribe.php:117 +#, fuzzy +msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." +msgstr "Você não está assinando esse perfil." + +#: actions/subscribe.php:145 msgid "Subscribed" msgstr "Assinado" @@ -3585,9 +3980,9 @@ msgid "%s subscribers" msgstr "Assinantes de %s" #: actions/subscribers.php:52 -#, fuzzy, php-format +#, php-format msgid "%1$s subscribers, page %2$d" -msgstr "Assinantes de %s, pág. %d" +msgstr "Assinantes de %1$s, pág. %2$d" #: actions/subscribers.php:63 msgid "These are the people who listen to your notices." @@ -3626,9 +4021,9 @@ msgid "%s subscriptions" msgstr "Assinaturas de %s" #: actions/subscriptions.php:54 -#, fuzzy, php-format +#, php-format msgid "%1$s subscriptions, page %2$d" -msgstr "Assinaturas de %s, pág. %d" +msgstr "Assinaturas de %1$s, pág. %2$d" #: actions/subscriptions.php:65 msgid "These are the people whose notices you listen to." @@ -3639,7 +4034,7 @@ msgstr "Estas são as pessoas cujas mensagens você acompanha." msgid "These are the people whose notices %s listens to." msgstr "Estas são as pessoas cujas mensagens %s acompanha." -#: actions/subscriptions.php:121 +#: actions/subscriptions.php:126 #, php-format msgid "" "You're not listening to anyone's notices right now, try subscribing to " @@ -3655,19 +4050,24 @@ msgstr "" "[usuário do Twitter](%%action.twittersettings%%), você pode assinar " "automaticamente as pessoas que já segue lá." -#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#: actions/subscriptions.php:128 actions/subscriptions.php:132 #, php-format msgid "%s is not listening to anyone." msgstr "%s não está acompanhando ninguém." -#: actions/subscriptions.php:194 +#: actions/subscriptions.php:199 msgid "Jabber" msgstr "Jabber" -#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:204 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "SMS" +#: actions/tag.php:68 +#, php-format +msgid "Notices tagged with %1$s, page %2$d" +msgstr "Mensagens etiquetadas com %1$s, pág. %2$d" + #: actions/tag.php:86 #, php-format msgid "Notice feed for tag %s (RSS 1.0)" @@ -3696,7 +4096,8 @@ msgstr "Etiqueta %s" msgid "User profile" msgstr "Perfil do usuário" -#: actions/tagother.php:81 lib/userprofile.php:102 +#: actions/tagother.php:81 actions/userauthorization.php:132 +#: lib/userprofile.php:102 msgid "Photo" msgstr "Imagem" @@ -3755,13 +4156,13 @@ msgstr "Nenhuma ID de perfil na requisição." msgid "Unsubscribed" msgstr "Cancelado" -#: actions/updateprofile.php:62 actions/userauthorization.php:330 -#, fuzzy, php-format +#: actions/updateprofile.php:62 actions/userauthorization.php:337 +#, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" -"A licença '%s' do fluxo do usuário não é compatível com a licença '%s' do " -"site." +"A licença '%1$s' do fluxo do usuário não é compatível com a licença '%2$s' " +"do site." #: actions/useradminpanel.php:58 lib/adminpanelaction.php:321 #: lib/personalgroupnav.php:115 @@ -3772,85 +4173,65 @@ msgstr "Usuário" msgid "User settings for this StatusNet site." msgstr "Configurações de usuário para este site StatusNet." -#: actions/useradminpanel.php:149 +#: actions/useradminpanel.php:148 msgid "Invalid bio limit. Must be numeric." msgstr "Limite da descrição inválido. Seu valor deve ser numérico." -#: actions/useradminpanel.php:155 +#: actions/useradminpanel.php:154 msgid "Invalid welcome text. Max length is 255 characters." msgstr "" "Mensagem de boas vindas inválida. O comprimento máximo é de 255 caracteres." -#: actions/useradminpanel.php:165 +#: actions/useradminpanel.php:164 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "Assinatura padrão inválida: '%1$s' não é um usuário." -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 +#: actions/useradminpanel.php:217 lib/accountsettingsaction.php:108 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Perfil" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:221 msgid "Bio Limit" msgstr "Limite da descrição" -#: actions/useradminpanel.php:223 +#: actions/useradminpanel.php:222 msgid "Maximum length of a profile bio in characters." msgstr "Comprimento máximo da descrição do perfil, em caracteres." -#: actions/useradminpanel.php:231 +#: actions/useradminpanel.php:230 msgid "New users" msgstr "Novos usuários" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:234 msgid "New user welcome" msgstr "Boas vindas aos novos usuários" -#: actions/useradminpanel.php:236 +#: actions/useradminpanel.php:235 msgid "Welcome text for new users (Max 255 chars)." msgstr "Texto de boas vindas para os novos usuários (máx. 255 caracteres)." -#: actions/useradminpanel.php:241 +#: actions/useradminpanel.php:240 msgid "Default subscription" msgstr "Assinatura padrão" -#: actions/useradminpanel.php:242 +#: actions/useradminpanel.php:241 msgid "Automatically subscribe new users to this user." msgstr "Os novos usuários assinam esse usuário automaticamente." -#: actions/useradminpanel.php:251 +#: actions/useradminpanel.php:250 msgid "Invitations" msgstr "Convites" -#: actions/useradminpanel.php:256 +#: actions/useradminpanel.php:255 msgid "Invitations enabled" msgstr "Convites habilitados" -#: actions/useradminpanel.php:258 +#: actions/useradminpanel.php:257 msgid "Whether to allow users to invite new users." msgstr "Define se os usuários podem ou não convidar novos usuários." -#: actions/useradminpanel.php:265 -msgid "Sessions" -msgstr "Sessões" - -#: actions/useradminpanel.php:270 -msgid "Handle sessions" -msgstr "Gerenciar sessões" - -#: actions/useradminpanel.php:272 -msgid "Whether to handle sessions ourselves." -msgstr "Define se nós cuidamos do gerenciamento das sessões." - -#: actions/useradminpanel.php:276 -msgid "Session debugging" -msgstr "Depuração da sessão" - -#: actions/useradminpanel.php:278 -msgid "Turn on debugging output for sessions." -msgstr "Ativa a saída de depuração para as sessões." - #: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Autorizar a assinatura" @@ -3865,36 +4246,36 @@ msgstr "" "as mensagens deste usuário. Se você não solicitou assinar as mensagens de " "alguém, clique em \"Recusar\"." -#: actions/userauthorization.php:188 actions/version.php:165 +#: actions/userauthorization.php:196 actions/version.php:165 msgid "License" msgstr "Licença" -#: actions/userauthorization.php:209 +#: actions/userauthorization.php:217 msgid "Accept" msgstr "Aceitar" -#: actions/userauthorization.php:210 lib/subscribeform.php:115 +#: actions/userauthorization.php:218 lib/subscribeform.php:115 #: lib/subscribeform.php:139 msgid "Subscribe to this user" msgstr "Assinar este usuário" -#: actions/userauthorization.php:211 +#: actions/userauthorization.php:219 msgid "Reject" msgstr "Recusar" -#: actions/userauthorization.php:212 +#: actions/userauthorization.php:220 msgid "Reject this subscription" msgstr "Recusar esta assinatura" -#: actions/userauthorization.php:225 +#: actions/userauthorization.php:232 msgid "No authorization request!" msgstr "Nenhum pedido de autorização!" -#: actions/userauthorization.php:247 +#: actions/userauthorization.php:254 msgid "Subscription authorized" msgstr "A assinatura foi autorizada" -#: actions/userauthorization.php:249 +#: actions/userauthorization.php:256 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 " @@ -3904,11 +4285,11 @@ msgstr "" "Verifique as instruções do site para detalhes sobre como autorizar a " "assinatura. Seu token de assinatura é:" -#: actions/userauthorization.php:259 +#: actions/userauthorization.php:266 msgid "Subscription rejected" msgstr "A assinatura foi recusada" -#: actions/userauthorization.php:261 +#: actions/userauthorization.php:268 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 " @@ -3918,37 +4299,37 @@ msgstr "" "Verifique as instruções do site para detalhes sobre como rejeitar " "completamente a assinatura." -#: actions/userauthorization.php:296 -#, fuzzy, php-format +#: actions/userauthorization.php:303 +#, php-format msgid "Listener URI ‘%s’ not found here." -msgstr "A URI ‘%s’ do usuário não foi encontrada aqui" +msgstr "A URI ‘%s’ do usuário não foi encontrada aqui." -#: actions/userauthorization.php:301 +#: actions/userauthorization.php:308 #, php-format msgid "Listenee URI ‘%s’ is too long." msgstr "A URI ‘%s’ do usuário é muito extensa." -#: actions/userauthorization.php:307 +#: actions/userauthorization.php:314 #, php-format msgid "Listenee URI ‘%s’ is a local user." msgstr "A URI ‘%s’ é de um usuário local." -#: actions/userauthorization.php:322 +#: actions/userauthorization.php:329 #, php-format msgid "Profile URL ‘%s’ is for a local user." msgstr "A URL ‘%s’ do perfil é de um usuário local." -#: actions/userauthorization.php:338 +#: actions/userauthorization.php:345 #, php-format msgid "Avatar URL ‘%s’ is not valid." msgstr "A URL ‘%s’ do avatar não é válida." -#: actions/userauthorization.php:343 +#: actions/userauthorization.php:350 #, php-format msgid "Can’t read avatar URL ‘%s’." msgstr "Não é possível ler a URL '%s' do avatar." -#: actions/userauthorization.php:348 +#: actions/userauthorization.php:355 #, php-format msgid "Wrong image type for avatar URL ‘%s’." msgstr "Tipo de imagem errado para a URL '%s' do avatar." @@ -3969,6 +4350,11 @@ msgstr "" msgid "Enjoy your hotdog!" msgstr "Aproveite o seu cachorro-quente!" +#: actions/usergroups.php:64 +#, php-format +msgid "%1$s groups, page %2$d" +msgstr "Grupos de %1$s, pág. %2$d" + #: actions/usergroups.php:130 msgid "Search for more groups" msgstr "Procurar por outros grupos" @@ -3986,9 +4372,9 @@ msgstr "" "eles." #: actions/version.php:73 -#, fuzzy, php-format +#, php-format msgid "StatusNet %s" -msgstr "Estatísticas" +msgstr "StatusNet %s" #: actions/version.php:153 #, php-format @@ -3996,15 +4382,12 @@ msgid "" "This site is powered by %1$s version %2$s, Copyright 2008-2010 StatusNet, " "Inc. and contributors." msgstr "" - -#: actions/version.php:157 -#, fuzzy -msgid "StatusNet" -msgstr "A mensagem foi excluída." +"Este site funciona sobre %1$s versão %2$s, Copyright 2008-2010 StatusNet, " +"Inc. e colaboradores." #: actions/version.php:161 msgid "Contributors" -msgstr "" +msgstr "Colaboradores" #: actions/version.php:168 msgid "" @@ -4013,6 +4396,10 @@ msgid "" "Software Foundation, either version 3 of the License, or (at your option) " "any later version. " msgstr "" +"StatusNet é um software livre: você pode redistribui-lo e/ou modificá-lo sob " +"os termos da GNU Affero General Public License, conforme publicado pela Free " +"Software Foundation, na versão 3 desta licença ou (caso deseje) qualquer " +"versão posterior. " #: actions/version.php:174 msgid "" @@ -4021,6 +4408,10 @@ msgid "" "FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License " "for more details. " msgstr "" +"Este programa é distribuído na esperança de ser útil, mas NÃO POSSUI " +"QUALQUER GARANTIA, nem mesmo a garantia implícita de COMERCIALIZAÇÃO ou " +"ADEQUAÇÃO A UMA FINALIDADE ESPECÍFICA. Verifique a GNU Affero General " +"Public License para mais detalhes. " #: actions/version.php:180 #, php-format @@ -4028,29 +4419,20 @@ msgid "" "You should have received a copy of the GNU Affero General Public License " "along with this program. If not, see %s." msgstr "" +"Você deve ter recebido uma cópia da GNU Affero General Public License com " +"este programa. Caso contrário, veja %s." #: actions/version.php:189 msgid "Plugins" -msgstr "" +msgstr "Plugins" -#: actions/version.php:195 -#, fuzzy -msgid "Name" -msgstr "Usuário" - -#: actions/version.php:196 lib/action.php:741 -#, fuzzy +#: actions/version.php:196 lib/action.php:747 msgid "Version" -msgstr "Sessões" +msgstr "Versão" #: actions/version.php:197 -#, fuzzy msgid "Author(s)" -msgstr "Autor" - -#: actions/version.php:198 lib/groupeditform.php:172 -msgid "Description" -msgstr "Descrição" +msgstr "Autor(es)" #: classes/File.php:144 #, php-format @@ -4072,19 +4454,16 @@ msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "Um arquivo deste tamanho excederá a sua conta mensal de %d bytes." #: classes/Group_member.php:41 -#, fuzzy msgid "Group join failed." -msgstr "Perfil do grupo" +msgstr "Não foi possível se unir ao grupo." #: classes/Group_member.php:53 -#, fuzzy msgid "Not part of group." -msgstr "Não foi possível atualizar o grupo." +msgstr "Não é parte de um grupo." #: classes/Group_member.php:60 -#, fuzzy msgid "Group leave failed." -msgstr "Perfil do grupo" +msgstr "Não foi possível deixar o grupo." #: classes/Login_token.php:76 #, php-format @@ -4103,27 +4482,27 @@ msgstr "Não foi possível inserir a mensagem." msgid "Could not update message with new URI." msgstr "Não foi possível atualizar a mensagem com a nova URI." -#: classes/Notice.php:171 +#: classes/Notice.php:157 #, php-format msgid "DB error inserting hashtag: %s" msgstr "Erro no banco de dados durante a inserção da hashtag: %s" -#: classes/Notice.php:225 +#: classes/Notice.php:222 msgid "Problem saving notice. Too long." msgstr "Problema no salvamento da mensagem. Ela é muito extensa." -#: classes/Notice.php:229 +#: classes/Notice.php:226 msgid "Problem saving notice. Unknown user." msgstr "Problema no salvamento da mensagem. Usuário desconhecido." -#: classes/Notice.php:234 +#: classes/Notice.php:231 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." -#: classes/Notice.php:240 +#: classes/Notice.php:237 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." @@ -4131,34 +4510,57 @@ msgstr "" "Muitas mensagens duplicadas em um período curto de tempo; dê uma respirada e " "publique novamente daqui a alguns minutos." -#: classes/Notice.php:246 +#: classes/Notice.php:243 msgid "You are banned from posting notices on this site." msgstr "Você está proibido de publicar mensagens neste site." -#: classes/Notice.php:305 classes/Notice.php:330 +#: classes/Notice.php:309 classes/Notice.php:335 msgid "Problem saving notice." msgstr "Problema no salvamento da mensagem." -#: classes/Notice.php:1052 -#, php-format -msgid "DB error inserting reply: %s" -msgstr "Erro no banco de dados na inserção da reposta: %s" +#: classes/Notice.php:882 +msgid "Problem saving group inbox." +msgstr "Problema no salvamento das mensagens recebidas do grupo." -#: classes/Notice.php:1423 +#: classes/Notice.php:1407 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" -#: classes/User.php:382 +#: classes/Subscription.php:66 lib/oauthstore.php:465 +msgid "You have been banned from subscribing." +msgstr "Você está proibido de assinar." + +#: classes/Subscription.php:70 +msgid "Already subscribed!" +msgstr "Já assinado!" + +#: classes/Subscription.php:74 +msgid "User has blocked you." +msgstr "O usuário bloqueou você." + +#: classes/Subscription.php:157 +msgid "Not subscribed!" +msgstr "Não assinado!" + +#: classes/Subscription.php:163 +msgid "Couldn't delete self-subscription." +msgstr "Não foi possível excluir a auto-assinatura." + +#: classes/Subscription.php:179 lib/subs.php:69 +msgid "Couldn't delete subscription." +msgstr "Não foi possível excluir a assinatura." + +#: classes/User.php:372 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "Bem vindo(a) a %1$s, @%2$s!" -#: classes/User_group.php:380 +#: classes/User_group.php:423 msgid "Could not create group." msgstr "Não foi possível criar o grupo." -#: classes/User_group.php:409 +#: classes/User_group.php:452 msgid "Could not set group membership." msgstr "Não foi possível configurar a associação ao grupo." @@ -4191,136 +4593,132 @@ msgid "Other options" msgstr "Outras opções" #: lib/action.php:144 -#, fuzzy, php-format +#, php-format msgid "%1$s - %2$s" -msgstr "%1$s (%2$s)" +msgstr "%1$s - %2$s" #: lib/action.php:159 msgid "Untitled page" msgstr "Página sem título" -#: lib/action.php:427 +#: lib/action.php:433 msgid "Primary site navigation" msgstr "Navegação primária no site" -#: lib/action.php:433 +#: lib/action.php:439 msgid "Home" msgstr "Início" -#: lib/action.php:433 +#: lib/action.php:439 msgid "Personal profile and friends timeline" msgstr "Perfil pessoal e fluxo de mensagens dos amigos" -#: lib/action.php:435 -msgid "Account" -msgstr "Conta" - -#: lib/action.php:435 +#: lib/action.php:441 msgid "Change your email, avatar, password, profile" msgstr "Mude seu e-mail, avatar, senha, perfil" -#: lib/action.php:438 +#: lib/action.php:444 msgid "Connect" msgstr "Conectar" -#: lib/action.php:438 +#: lib/action.php:444 msgid "Connect to services" msgstr "Conecte-se a outros serviços" -#: lib/action.php:442 +#: lib/action.php:448 msgid "Change site configuration" msgstr "Mude as configurações do site" -#: lib/action.php:446 lib/subgroupnav.php:105 +#: lib/action.php:452 lib/subgroupnav.php:105 msgid "Invite" msgstr "Convidar" -#: lib/action.php:447 lib/subgroupnav.php:106 +#: lib/action.php:453 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" -#: lib/action.php:452 +#: lib/action.php:458 msgid "Logout" msgstr "Sair" -#: lib/action.php:452 +#: lib/action.php:458 msgid "Logout from the site" msgstr "Sai do site" -#: lib/action.php:457 +#: lib/action.php:463 msgid "Create an account" msgstr "Cria uma conta" -#: lib/action.php:460 +#: lib/action.php:466 msgid "Login to the site" msgstr "Autentique-se no site" -#: lib/action.php:463 lib/action.php:726 +#: lib/action.php:469 lib/action.php:732 msgid "Help" msgstr "Ajuda" -#: lib/action.php:463 +#: lib/action.php:469 msgid "Help me!" msgstr "Ajudem-me!" -#: lib/action.php:466 lib/searchaction.php:127 +#: lib/action.php:472 lib/searchaction.php:127 msgid "Search" msgstr "Procurar" -#: lib/action.php:466 +#: lib/action.php:472 msgid "Search for people or text" msgstr "Procura por pessoas ou textos" -#: lib/action.php:487 +#: lib/action.php:493 msgid "Site notice" msgstr "Mensagem do site" -#: lib/action.php:553 +#: lib/action.php:559 msgid "Local views" msgstr "Visualizações locais" -#: lib/action.php:619 +#: lib/action.php:625 msgid "Page notice" msgstr "Notícia da página" -#: lib/action.php:721 +#: lib/action.php:727 msgid "Secondary site navigation" msgstr "Navegação secundária no site" -#: lib/action.php:728 +#: lib/action.php:734 msgid "About" msgstr "Sobre" -#: lib/action.php:730 +#: lib/action.php:736 msgid "FAQ" msgstr "FAQ" -#: lib/action.php:734 +#: lib/action.php:740 msgid "TOS" msgstr "Termos de uso" -#: lib/action.php:737 +#: lib/action.php:743 msgid "Privacy" msgstr "Privacidade" -#: lib/action.php:739 +#: lib/action.php:745 msgid "Source" msgstr "Fonte" -#: lib/action.php:743 +#: lib/action.php:749 msgid "Contact" msgstr "Contato" -#: lib/action.php:745 +#: lib/action.php:751 msgid "Badge" msgstr "Mini-aplicativo" -#: lib/action.php:773 +#: lib/action.php:779 msgid "StatusNet software license" msgstr "Licença do software StatusNet" -#: lib/action.php:776 +#: lib/action.php:782 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4329,12 +4727,12 @@ msgstr "" "**%%site.name%%** é um serviço de microblog disponibilizado por [%%site." "broughtby%%](%%site.broughtbyurl%%). " -#: lib/action.php:778 +#: lib/action.php:784 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** é um serviço de microblog. " -#: lib/action.php:780 +#: lib/action.php:786 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4345,42 +4743,65 @@ msgstr "" "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:794 +#: lib/action.php:801 msgid "Site content license" msgstr "Licença do conteúdo do site" -#: lib/action.php:803 +#: lib/action.php:806 +#, php-format +msgid "Content and data of %1$s are private and confidential." +msgstr "O conteúdo e os dados de %1$s são privados e confidenciais." + +#: lib/action.php:811 +#, php-format +msgid "Content and data copyright by %1$s. All rights reserved." +msgstr "Conteúdo e dados licenciados sob %1$s. Todos os direitos reservados." + +#: lib/action.php:814 +msgid "Content and data copyright by contributors. All rights reserved." +msgstr "" +"Conteúdo e dados licenciados pelos colaboradores. Todos os direitos " +"reservados." + +#: lib/action.php:827 msgid "All " msgstr "Todas " -#: lib/action.php:808 +#: lib/action.php:833 msgid "license." msgstr "licença." -#: lib/action.php:1102 +#: lib/action.php:1132 msgid "Pagination" msgstr "Paginação" -#: lib/action.php:1111 +#: lib/action.php:1141 msgid "After" msgstr "Próximo" -#: lib/action.php:1119 +#: lib/action.php:1149 msgid "Before" msgstr "Anterior" -#: lib/action.php:1167 -msgid "There was a problem with your session token." -msgstr "Ocorreu um problema com o seu token de sessão." +#: lib/activity.php:382 +msgid "Can't handle remote content yet." +msgstr "" + +#: lib/activity.php:410 +msgid "Can't handle embedded XML content yet." +msgstr "" + +#: lib/activity.php:414 +msgid "Can't handle embedded Base64 content yet." +msgstr "" #: lib/adminpanelaction.php:96 msgid "You cannot make changes to this site." msgstr "Você não pode fazer alterações neste site." #: lib/adminpanelaction.php:107 -#, fuzzy msgid "Changes to that panel are not allowed." -msgstr "Não é permitido o registro." +msgstr "Não são permitidas alterações a esse painel." #: lib/adminpanelaction.php:206 msgid "showForm() not implemented." @@ -4402,10 +4823,101 @@ msgstr "Configuração básica do site" msgid "Design configuration" msgstr "Configuração da aparência" -#: lib/adminpanelaction.php:322 lib/adminpanelaction.php:327 +#: lib/adminpanelaction.php:322 +msgid "User configuration" +msgstr "Configuração do usuário" + +#: lib/adminpanelaction.php:327 +msgid "Access configuration" +msgstr "Configuração do acesso" + +#: lib/adminpanelaction.php:332 msgid "Paths configuration" msgstr "Configuração dos caminhos" +#: lib/adminpanelaction.php:337 +msgid "Sessions configuration" +msgstr "Configuração das sessões" + +#: lib/apiauth.php:95 +msgid "API resource requires read-write access, but you only have read access." +msgstr "" +"Os recursos de API exigem acesso de leitura e escrita, mas você possui " +"somente acesso de leitura." + +#: lib/apiauth.php:273 +#, php-format +msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" +msgstr "" +"A tentativa de autenticação na API falhou, identificação = %1$s, proxy = %2" +"$s, ip = %3$s" + +#: lib/applicationeditform.php:136 +msgid "Edit application" +msgstr "Editar a aplicação" + +#: lib/applicationeditform.php:184 +msgid "Icon for this application" +msgstr "Ícone para esta aplicação" + +#: lib/applicationeditform.php:204 +#, php-format +msgid "Describe your application in %d characters" +msgstr "Descreva a sua aplicação em %d caracteres" + +#: lib/applicationeditform.php:207 +msgid "Describe your application" +msgstr "Descreva sua aplicação" + +#: lib/applicationeditform.php:216 +msgid "Source URL" +msgstr "URL da fonte" + +#: lib/applicationeditform.php:218 +msgid "URL of the homepage of this application" +msgstr "URL do site desta aplicação" + +#: lib/applicationeditform.php:224 +msgid "Organization responsible for this application" +msgstr "Organização responsável por esta aplicação" + +#: lib/applicationeditform.php:230 +msgid "URL for the homepage of the organization" +msgstr "URL para o site da organização" + +#: lib/applicationeditform.php:236 +msgid "URL to redirect to after authentication" +msgstr "URL para o redirecionamento após a autenticação" + +#: lib/applicationeditform.php:258 +msgid "Browser" +msgstr "Navegador" + +#: lib/applicationeditform.php:274 +msgid "Desktop" +msgstr "Desktop" + +#: lib/applicationeditform.php:275 +msgid "Type of application, browser or desktop" +msgstr "Tipo de aplicação: navegador ou desktop" + +#: lib/applicationeditform.php:297 +msgid "Read-only" +msgstr "Somente leitura" + +#: lib/applicationeditform.php:315 +msgid "Read-write" +msgstr "Leitura e escrita" + +#: lib/applicationeditform.php:316 +msgid "Default access for this application: read-only, or read-write" +msgstr "" +"Acesso padrão para esta aplicação: somente leitura ou leitura e escrita" + +#: lib/applicationlist.php:154 +msgid "Revoke" +msgstr "Revogar" + #: lib/attachmentlist.php:87 msgid "Attachments" msgstr "Anexos" @@ -4426,15 +4938,13 @@ msgstr "Mensagens onde este anexo aparece" msgid "Tags for this attachment" msgstr "Etiquetas para este anexo" -#: lib/authenticationplugin.php:182 lib/authenticationplugin.php:187 -#, fuzzy +#: lib/authenticationplugin.php:218 lib/authenticationplugin.php:223 msgid "Password changing failed" -msgstr "Alterar a senha" +msgstr "Não foi possível alterar a senha" -#: lib/authenticationplugin.php:197 -#, fuzzy +#: lib/authenticationplugin.php:233 msgid "Password changing is not allowed" -msgstr "Alterar a senha" +msgstr "Não é permitido alterar a senha" #: lib/channel.php:138 lib/channel.php:158 msgid "Command results" @@ -4585,82 +5095,92 @@ msgstr "Erro no salvamento da mensagem." msgid "Specify the name of the user to subscribe to" msgstr "Especifique o nome do usuário que será assinado" -#: lib/command.php:554 +#: lib/command.php:554 lib/command.php:589 +msgid "No such user" +msgstr "Este usuário não existe." + +#: lib/command.php:561 #, php-format msgid "Subscribed to %s" msgstr "Efetuada a assinatura de %s" -#: lib/command.php:575 +#: lib/command.php:582 lib/command.php:685 msgid "Specify the name of the user to unsubscribe from" msgstr "Especifique o nome do usuário cuja assinatura será cancelada" -#: lib/command.php:582 +#: lib/command.php:595 #, php-format msgid "Unsubscribed from %s" msgstr "Cancelada a assinatura de %s" -#: lib/command.php:600 lib/command.php:623 +#: lib/command.php:613 lib/command.php:636 msgid "Command not yet implemented." msgstr "O comando não foi implementado ainda." -#: lib/command.php:603 +#: lib/command.php:616 msgid "Notification off." msgstr "Notificação desligada." -#: lib/command.php:605 +#: lib/command.php:618 msgid "Can't turn off notification." msgstr "Não é possível desligar a notificação." -#: lib/command.php:626 +#: lib/command.php:639 msgid "Notification on." msgstr "Notificação ligada." -#: lib/command.php:628 +#: lib/command.php:641 msgid "Can't turn on notification." msgstr "Não é possível ligar a notificação." -#: lib/command.php:641 +#: lib/command.php:654 msgid "Login command is disabled" msgstr "O comando para autenticação está desabilitado" -#: lib/command.php:652 +#: lib/command.php:665 #, php-format msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "" "Este link é utilizável somente uma vez e é válido somente por dois minutos: %" "s" -#: lib/command.php:668 +#: lib/command.php:692 +#, fuzzy, php-format +msgid "Unsubscribed %s" +msgstr "Cancelada a assinatura de %s" + +#: lib/command.php:709 msgid "You are not subscribed to anyone." msgstr "Você não está assinando ninguém." -#: lib/command.php:670 +#: lib/command.php:711 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "Você já está assinando esta pessoa:" msgstr[1] "Você já está assinando estas pessoas:" -#: lib/command.php:690 +#: lib/command.php:731 msgid "No one is subscribed to you." msgstr "Ninguém o assinou ainda." -#: lib/command.php:692 +#: lib/command.php:733 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "Esta pessoa está assinando você:" msgstr[1] "Estas pessoas estão assinando você:" -#: lib/command.php:712 +#: lib/command.php:753 msgid "You are not a member of any groups." msgstr "Você não é membro de nenhum grupo." -#: lib/command.php:714 +#: lib/command.php:755 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "Você é membro deste grupo:" msgstr[1] "Você é membro destes grupos:" -#: lib/command.php:728 +#: lib/command.php:769 +#, fuzzy msgid "" "Commands:\n" "on - turn on notifications\n" @@ -4674,6 +5194,7 @@ msgid "" "d - direct message to user\n" "get - get last notice from user\n" "whois - get profile info on user\n" +"lose - force user to stop following you\n" "fav - add user's last notice as a 'fave'\n" "fav # - add notice with the given id as a 'fave'\n" "repeat # - repeat a notice with a given id\n" @@ -4739,19 +5260,19 @@ msgstr "" "tracks - não implementado ainda\n" "tracking - não implementado ainda\n" -#: lib/common.php:131 +#: lib/common.php:136 msgid "No configuration file found. " msgstr "Não foi encontrado nenhum arquivo de configuração. " -#: lib/common.php:132 +#: lib/common.php:137 msgid "I looked for configuration files in the following places: " msgstr "Eu procurei pelos arquivos de configuração nos seguintes lugares: " -#: lib/common.php:134 +#: lib/common.php:139 msgid "You may wish to run the installer to fix this." msgstr "Você pode querer executar o instalador para corrigir isto." -#: lib/common.php:135 +#: lib/common.php:140 msgid "Go to the installer." msgstr "Ir para o instalador." @@ -4767,6 +5288,14 @@ msgstr "Atualizações via mensageiro instantâneo (MI)" msgid "Updates by SMS" msgstr "Atualizações via SMS" +#: lib/connectsettingsaction.php:120 +msgid "Connections" +msgstr "Conexões" + +#: lib/connectsettingsaction.php:121 +msgid "Authorized connected applications" +msgstr "Aplicações autorizadas conectadas" + #: lib/dberroraction.php:60 msgid "Database error" msgstr "Erro no banco de dados" @@ -4953,15 +5482,15 @@ msgstr "Mb" msgid "kB" msgstr "Kb" -#: lib/jabber.php:202 +#: lib/jabber.php:220 #, php-format msgid "[%s]" msgstr "[%s]" -#: lib/jabber.php:385 -#, fuzzy, php-format +#: lib/jabber.php:400 +#, php-format msgid "Unknown inbox source %d." -msgstr "Idioma desconhecido \"%s\"" +msgstr "Fonte da caixa de entrada desconhecida %d." #: lib/joinform.php:114 msgid "Join" @@ -5043,11 +5572,9 @@ msgstr "" "Altere seu endereço de e-mail e suas opções de notificação em %8$s\n" #: lib/mail.php:258 -#, fuzzy, php-format +#, php-format msgid "Bio: %s" -msgstr "" -"Descrição: %s\n" -"\n" +msgstr "Descrição: %s" #: lib/mail.php:286 #, php-format @@ -5240,7 +5767,7 @@ msgstr "" "privadas para envolver outras pessoas em uma conversa. Você também pode " "receber mensagens privadas." -#: lib/mailbox.php:227 lib/noticelist.php:477 +#: lib/mailbox.php:227 lib/noticelist.php:482 msgid "from" msgstr "de" @@ -5261,9 +5788,9 @@ msgid "Sorry, no incoming email allowed." msgstr "Desculpe-me, mas não é permitido o recebimento de e-mails." #: lib/mailhandler.php:228 -#, fuzzy, php-format +#, php-format msgid "Unsupported message type: %s" -msgstr "Formato de imagem não suportado." +msgstr "Tipo de mensagem não suportado: %s" #: lib/mediafile.php:98 lib/mediafile.php:123 msgid "There was a database error while saving your file. Please try again." @@ -5302,18 +5829,16 @@ msgid "File upload stopped by extension." msgstr "O arquivo a ser enviado foi barrado por causa de sua extensão." #: lib/mediafile.php:179 lib/mediafile.php:216 -#, fuzzy msgid "File exceeds user's quota." -msgstr "O arquivo excede a quota do usuário!" +msgstr "O arquivo excede a quota do usuário." #: lib/mediafile.php:196 lib/mediafile.php:233 msgid "File could not be moved to destination directory." msgstr "Não foi possível mover o arquivo para o diretório de destino." #: lib/mediafile.php:201 lib/mediafile.php:237 -#, fuzzy msgid "Could not determine file's MIME type." -msgstr "Não foi possível determinar o mime-type do arquivo!" +msgstr "Não foi possível determinar o tipo MIME do arquivo." #: lib/mediafile.php:270 #, php-format @@ -5321,7 +5846,7 @@ msgid " Try using another %s format." msgstr " Tente usar outro formato %s." #: lib/mediafile.php:275 -#, fuzzy, php-format +#, php-format msgid "%s is not a supported file type on this server." msgstr "%s não é um tipo de arquivo suportado neste servidor." @@ -5355,67 +5880,63 @@ msgid "Attach a file" msgstr "Anexar um arquivo" #: lib/noticeform.php:212 -#, fuzzy msgid "Share my location" -msgstr "Indique a sua localização" +msgstr "Divulgar minha localização" #: lib/noticeform.php:215 -#, fuzzy msgid "Do not share my location" -msgstr "Indique a sua localização" +msgstr "Não divulgar minha localização" #: lib/noticeform.php:216 -msgid "Hide this info" -msgstr "" - -#: lib/noticeform.php:217 msgid "" "Sorry, retrieving your geo location is taking longer than expected, please " "try again later" msgstr "" +"Desculpe, mas recuperar a sua geolocalização está demorando mais que o " +"esperado. Por favor, tente novamente mais tarde." -#: lib/noticelist.php:428 +#: lib/noticelist.php:429 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" -#: lib/noticelist.php:429 +#: lib/noticelist.php:430 msgid "N" msgstr "N" -#: lib/noticelist.php:429 +#: lib/noticelist.php:430 msgid "S" msgstr "S" -#: lib/noticelist.php:430 +#: lib/noticelist.php:431 msgid "E" msgstr "L" -#: lib/noticelist.php:430 +#: lib/noticelist.php:431 msgid "W" msgstr "O" -#: lib/noticelist.php:436 +#: lib/noticelist.php:438 msgid "at" msgstr "em" -#: lib/noticelist.php:531 +#: lib/noticelist.php:558 msgid "in context" msgstr "no contexto" -#: lib/noticelist.php:556 +#: lib/noticelist.php:583 msgid "Repeated by" msgstr "Repetida por" -#: lib/noticelist.php:585 +#: lib/noticelist.php:610 msgid "Reply to this notice" msgstr "Responder a esta mensagem" -#: lib/noticelist.php:586 +#: lib/noticelist.php:611 msgid "Reply" msgstr "Responder" -#: lib/noticelist.php:628 +#: lib/noticelist.php:655 msgid "Notice repeated" msgstr "Mensagem repetida" @@ -5447,11 +5968,7 @@ msgstr "Erro na inserção do perfil remoto" msgid "Duplicate notice" msgstr "Duplicar a mensagem" -#: lib/oauthstore.php:466 lib/subs.php:48 -msgid "You have been banned from subscribing." -msgstr "Você está proibido de assinar." - -#: lib/oauthstore.php:491 +#: lib/oauthstore.php:490 msgid "Couldn't insert new subscription." msgstr "Não foi possível inserir a nova assinatura." @@ -5467,19 +5984,19 @@ msgstr "Respostas" msgid "Favorites" msgstr "Favoritas" -#: lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "Recebidas" -#: lib/personalgroupnav.php:125 +#: lib/personalgroupnav.php:126 msgid "Your incoming messages" msgstr "Suas mensagens recebidas" -#: lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 msgid "Outbox" msgstr "Enviadas" -#: lib/personalgroupnav.php:130 +#: lib/personalgroupnav.php:131 msgid "Your sent messages" msgstr "Suas mensagens enviadas" @@ -5489,9 +6006,8 @@ msgid "Tags in %s's notices" msgstr "Etiquetas nas mensagens de %s" #: lib/plugin.php:114 -#, fuzzy msgid "Unknown" -msgstr "Ação desconhecida" +msgstr "Desconhecido" #: lib/profileaction.php:109 lib/profileaction.php:192 lib/subgroupnav.php:82 msgid "Subscriptions" @@ -5557,6 +6073,10 @@ msgstr "Repetir esta mensagem?" msgid "Repeat this notice" msgstr "Repetir esta mensagem" +#: lib/router.php:665 +msgid "No single user defined for single-user mode." +msgstr "Nenhum usuário definido para o modo de usuário único." + #: lib/sandboxform.php:67 msgid "Sandbox" msgstr "Isolamento" @@ -5624,34 +6144,6 @@ msgstr "Assinantes de %s" msgid "Groups %s is a member of" msgstr "Grupos dos quais %s é membro" -#: lib/subs.php:52 -msgid "Already subscribed!" -msgstr "Já assinado!" - -#: lib/subs.php:56 -msgid "User has blocked you." -msgstr "O usuário bloqueou você." - -#: lib/subs.php:63 -msgid "Could not subscribe." -msgstr "Não foi possível assinar." - -#: lib/subs.php:82 -msgid "Could not subscribe other to you." -msgstr "Não foi possível fazer com que outros o assinem." - -#: lib/subs.php:137 -msgid "Not subscribed!" -msgstr "Não assinado!" - -#: lib/subs.php:142 -msgid "Couldn't delete self-subscription." -msgstr "Não foi possível excluir a auto-assinatura." - -#: lib/subs.php:158 -msgid "Couldn't delete subscription." -msgstr "Não foi possível excluir a assinatura." - #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -5702,67 +6194,67 @@ msgstr "Editar o avatar" msgid "User actions" msgstr "Ações do usuário" -#: lib/userprofile.php:248 +#: lib/userprofile.php:251 msgid "Edit profile settings" msgstr "Editar as configurações do perfil" -#: lib/userprofile.php:249 +#: lib/userprofile.php:252 msgid "Edit" msgstr "Editar" -#: lib/userprofile.php:272 +#: lib/userprofile.php:275 msgid "Send a direct message to this user" msgstr "Enviar uma mensagem para este usuário." -#: lib/userprofile.php:273 +#: lib/userprofile.php:276 msgid "Message" msgstr "Mensagem" -#: lib/userprofile.php:311 +#: lib/userprofile.php:314 msgid "Moderate" msgstr "Moderar" -#: lib/util.php:877 +#: lib/util.php:952 msgid "a few seconds ago" msgstr "alguns segundos atrás" -#: lib/util.php:879 +#: lib/util.php:954 msgid "about a minute ago" msgstr "cerca de 1 minuto atrás" -#: lib/util.php:881 +#: lib/util.php:956 #, php-format msgid "about %d minutes ago" msgstr "cerca de %d minutos atrás" -#: lib/util.php:883 +#: lib/util.php:958 msgid "about an hour ago" msgstr "cerca de 1 hora atrás" -#: lib/util.php:885 +#: lib/util.php:960 #, php-format msgid "about %d hours ago" msgstr "cerca de %d horas atrás" -#: lib/util.php:887 +#: lib/util.php:962 msgid "about a day ago" msgstr "cerca de 1 dia atrás" -#: lib/util.php:889 +#: lib/util.php:964 #, php-format msgid "about %d days ago" msgstr "cerca de %d dias atrás" -#: lib/util.php:891 +#: lib/util.php:966 msgid "about a month ago" msgstr "cerca de 1 mês atrás" -#: lib/util.php:893 +#: lib/util.php:968 #, php-format msgid "about %d months ago" msgstr "cerca de %d meses atrás" -#: lib/util.php:895 +#: lib/util.php:970 msgid "about a year ago" msgstr "cerca de 1 ano atrás" @@ -5776,8 +6268,8 @@ msgstr "%s não é uma cor válida!" msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "%s não é uma cor válida! Utilize 3 ou 6 caracteres hexadecimais." -#: scripts/xmppdaemon.php:301 -#, fuzzy, php-format +#: lib/xmppmanager.php:402 +#, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "" -"A mensagem é muito extensa - o máximo são %d caracteres e você enviou %d" +"A mensagem é muito extensa - o máximo são %1$d caracteres e você enviou %2$d." diff --git a/locale/ru/LC_MESSAGES/statusnet.po b/locale/ru/LC_MESSAGES/statusnet.po index f727147b96..d4df1a6548 100644 --- a/locale/ru/LC_MESSAGES/statusnet.po +++ b/locale/ru/LC_MESSAGES/statusnet.po @@ -1,7 +1,9 @@ # Translation of StatusNet to Russian # # Author@translatewiki.net: Brion +# Author@translatewiki.net: Kirill # Author@translatewiki.net: Lockal +# Author@translatewiki.net: Rubin # Author@translatewiki.net: Александр Сигачёв # -- # This file is distributed under the same license as the StatusNet package. @@ -10,18 +12,71 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-01-13 22:04+0000\n" -"PO-Revision-Date: 2010-01-13 22:06:06+0000\n" +"POT-Creation-Date: 2010-02-24 23:49+0000\n" +"PO-Revision-Date: 2010-02-24 23:51:41+0000\n" "Language-Team: Russian\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha (r61027); Translate extension (2010-01-04)\n" +"X-Generator: MediaWiki 1.17alpha (r62925); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" "10< =4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +#: actions/accessadminpanel.php:54 lib/adminpanelaction.php:326 +msgid "Access" +msgstr "Принять" + +#: actions/accessadminpanel.php:65 +msgid "Site access settings" +msgstr "Настройки доступа к сайту" + +#: actions/accessadminpanel.php:158 +msgid "Registration" +msgstr "Регистрация" + +#: actions/accessadminpanel.php:161 +msgid "Private" +msgstr "Личное" + +#: actions/accessadminpanel.php:163 +msgid "Prohibit anonymous users (not logged in) from viewing site?" +msgstr "" +"Запретить анонимным (не авторизовавшимся) пользователям просматривать сайт?" + +#: actions/accessadminpanel.php:167 +msgid "Invite only" +msgstr "Только по приглашениям" + +#: actions/accessadminpanel.php:169 +msgid "Make registration invitation only." +msgstr "Разрешить регистрацию только по приглашениям." + +#: actions/accessadminpanel.php:173 +msgid "Closed" +msgstr "Закрыта" + +#: actions/accessadminpanel.php:175 +msgid "Disable new registrations." +msgstr "Отключить новые регистрации." + +#: actions/accessadminpanel.php:189 actions/designadminpanel.php:586 +#: actions/emailsettings.php:195 actions/imsettings.php:163 +#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 +#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 +#: actions/siteadminpanel.php:336 actions/smssettings.php:181 +#: actions/subscriptions.php:208 actions/tagother.php:154 +#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 lib/designsettings.php:256 +#: lib/groupeditform.php:202 +msgid "Save" +msgstr "Сохранить" + +#: actions/accessadminpanel.php:189 +msgid "Save access settings" +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" @@ -36,25 +91,29 @@ msgstr "Нет такой страницы" #: 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:144 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apistatusesupdate.php:148 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:78 #: actions/apitimelinehome.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/otp.php:76 #: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154 -#: actions/replies.php:73 actions/repliesrss.php:38 +#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 #: 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:302 lib/command.php:355 #: lib/command.php:401 lib/command.php:462 lib/command.php:518 #: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 -#: lib/subs.php:34 lib/subs.php:125 msgid "No such user." msgstr "Нет такого пользователя." +#: actions/all.php:84 +#, php-format +msgid "%1$s and friends, page %2$d" +msgstr "%1$s и друзья, страница %2$d" + #: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 -#: actions/apitimelinefriends.php:115 actions/apitimelinehome.php:115 +#: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" @@ -100,7 +159,7 @@ msgstr "" "что-нибудь для привлечения его или её внимания](%%%%action.newnotice%%%%?" "status_textarea=%3$s)." -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211 #, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " @@ -113,8 +172,8 @@ msgstr "" msgid "You and friends" msgstr "Вы и друзья" -#: actions/allrss.php:119 actions/apitimelinefriends.php:122 -#: actions/apitimelinehome.php:122 +#: actions/allrss.php:119 actions/apitimelinefriends.php:119 +#: actions/apitimelinehome.php:120 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Обновлено от %1$s и его друзей на %2$s!" @@ -124,23 +183,23 @@ msgstr "Обновлено от %1$s и его друзей на %2$s!" #: actions/apiaccountupdateprofile.php:97 #: actions/apiaccountupdateprofilebackgroundimage.php:94 #: actions/apiaccountupdateprofilecolors.php:118 -#: 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:136 actions/apigroupismember.php:114 -#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 -#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 -#: actions/apigroupmembership.php:106 actions/apigroupshow.php:105 -#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 -#: actions/apistatusesretweets.php:112 actions/apistatusesshow.php:108 -#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93 -#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:146 -#: actions/apitimelinefriends.php:156 actions/apitimelinegroup.php:150 -#: actions/apitimelinehome.php:156 actions/apitimelinementions.php:151 -#: actions/apitimelinepublic.php:131 actions/apitimelineretweetedbyme.php:122 +#: actions/apiaccountverifycredentials.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:128 actions/apigroupcreate.php:136 +#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 +#: actions/apigroupleave.php:141 actions/apigrouplist.php:132 +#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 +#: actions/apigroupshow.php:115 actions/apihelptest.php:88 +#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 +#: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 #: actions/apitimelineretweetedtome.php:121 -#: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141 -#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 +#: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 +#: actions/apitimelineuser.php:207 actions/apiusershow.php:101 msgid "API method not found." msgstr "Метод API не найден." @@ -154,7 +213,7 @@ msgstr "Метод API не найден." #: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 #: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 #: actions/apigroupleave.php:91 actions/apistatusesretweet.php:65 -#: actions/apistatusesupdate.php:114 +#: actions/apistatusesupdate.php:118 msgid "This method requires a POST." msgstr "Этот метод требует POST." @@ -183,8 +242,9 @@ msgstr "Не удаётся сохранить профиль." #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:97 -#: actions/apistatusesupdate.php:127 actions/avatarsettings.php:257 -#: actions/designadminpanel.php:122 actions/newnotice.php:94 +#: actions/apistatusesupdate.php:131 actions/avatarsettings.php:257 +#: actions/designadminpanel.php:122 actions/editapplication.php:118 +#: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 #, php-format msgid "" @@ -306,11 +366,11 @@ msgstr "Вы не можете перестать следовать за соб msgid "Two user ids or screen_names must be supplied." msgstr "Надо представить два имени пользователя или кода." -#: actions/apifriendshipsshow.php:135 +#: actions/apifriendshipsshow.php:134 msgid "Could not determine source user." msgstr "Не удаётся определить исходного пользователя." -#: actions/apifriendshipsshow.php:143 +#: actions/apifriendshipsshow.php:142 msgid "Could not find target user." msgstr "Не удаётся найти целевого пользователя." @@ -333,7 +393,8 @@ msgstr "Такое имя уже используется. Попробуйте msgid "Not a valid nickname." msgstr "Неверное имя." -#: actions/apigroupcreate.php:196 actions/editgroup.php:195 +#: actions/apigroupcreate.php:196 actions/editapplication.php:215 +#: actions/editgroup.php:195 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:217 msgid "Homepage is not a valid URL." @@ -345,7 +406,8 @@ msgstr "URL Главной страницы неверен." msgid "Full name is too long (max 255 chars)." msgstr "Полное имя слишком длинное (не больше 255 знаков)." -#: actions/apigroupcreate.php:213 +#: actions/apigroupcreate.php:213 actions/editapplication.php:190 +#: actions/newapplication.php:172 #, php-format msgid "Description is too long (max %d chars)." msgstr "Слишком длинное описание (максимум %d символов)" @@ -381,7 +443,7 @@ msgstr "Алиас не может совпадать с именем." #: actions/apigroupismember.php:95 actions/apigroupjoin.php:104 #: actions/apigroupleave.php:104 actions/apigroupmembership.php:91 -#: actions/apigroupshow.php:90 actions/apitimelinegroup.php:91 +#: actions/apigroupshow.php:82 actions/apitimelinegroup.php:91 msgid "Group not found!" msgstr "Группа не найдена!" @@ -422,6 +484,115 @@ msgstr "Группы %s" msgid "groups on %s" msgstr "группы на %s" +#: actions/apioauthauthorize.php:101 +msgid "No oauth_token parameter provided." +msgstr "Не задан параметр oauth_token." + +#: actions/apioauthauthorize.php:106 +msgid "Invalid token." +msgstr "Неправильный токен" + +#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 +#: actions/deletenotice.php:157 actions/disfavor.php:74 +#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54 +#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupunblock.php:66 actions/imsettings.php:206 +#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 +#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 +#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135 +#: actions/othersettings.php:145 actions/passwordsettings.php:138 +#: actions/profilesettings.php:194 actions/recoverpassword.php:337 +#: actions/register.php:165 actions/remotesubscribe.php:77 +#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 +#: actions/subscribe.php:86 actions/tagother.php:166 +#: 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/apioauthauthorize.php:135 +msgid "Invalid nickname / password!" +msgstr "Неверное имя или пароль." + +#: actions/apioauthauthorize.php:159 +msgid "Database error deleting OAuth application user." +msgstr "Ошибка базы данных при удалении пользователя приложения OAuth." + +#: actions/apioauthauthorize.php:185 +msgid "Database error inserting OAuth application user." +msgstr "Ошибка базы данных при добавлении пользователя приложения OAuth." + +#: actions/apioauthauthorize.php:214 +#, php-format +msgid "" +"The request token %s has been authorized. Please exchange it for an access " +"token." +msgstr "" +"Ключ запроса %s авторизован. Пожалуйста, обменяйте его на ключ доступа." + +#: actions/apioauthauthorize.php:227 +#, php-format +msgid "The request token %s has been denied and revoked." +msgstr "Запрос токена %s был запрещен и аннулирован." + +#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 +#: actions/designadminpanel.php:103 actions/editapplication.php:139 +#: actions/emailsettings.php:256 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/newapplication.php:121 +#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 +#: actions/smssettings.php:248 lib/designsettings.php:304 +msgid "Unexpected form submission." +msgstr "Нетиповое подтверждение формы." + +#: actions/apioauthauthorize.php:259 +msgid "An application would like to connect to your account" +msgstr "Приложение хочет соединиться с вашей учётной записью" + +#: actions/apioauthauthorize.php:276 +msgid "Allow or deny access" +msgstr "Разрешить или запретить доступ" + +#: actions/apioauthauthorize.php:292 +#, php-format +msgid "" +"The application %1$s by %2$s would like " +"the ability to %3$s your %4$s account data. You should only " +"give access to your %4$s account to third parties you trust." +msgstr "" +"Приложение %1$s от %2$s просит разрешение " +"на%3$s данных вашей учётной записи%4$s . Вы должны " +"предоставлять разрешение на доступ к вашей учётной записи %4$s только тем " +"сторонним приложениям, которым вы доверяете." + +#: actions/apioauthauthorize.php:310 lib/action.php:441 +msgid "Account" +msgstr "Настройки" + +#: actions/apioauthauthorize.php:313 actions/login.php:230 +#: actions/profilesettings.php:106 actions/register.php:424 +#: actions/showgroup.php:236 actions/tagother.php:94 +#: actions/userauthorization.php:145 lib/groupeditform.php:152 +#: lib/userprofile.php:131 +msgid "Nickname" +msgstr "Имя" + +#: actions/apioauthauthorize.php:316 actions/login.php:233 +#: actions/register.php:429 lib/accountsettingsaction.php:116 +msgid "Password" +msgstr "Пароль" + +#: actions/apioauthauthorize.php:328 +msgid "Deny" +msgstr "Запретить" + +#: actions/apioauthauthorize.php:334 +msgid "Allow" +msgstr "Разрешить" + +#: actions/apioauthauthorize.php:351 +msgid "Allow or deny access to your account information." +msgstr "Разрешить или запретить доступ к информации вашей учётной записи." + #: actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." msgstr "Этот метод требует POST или DELETE." @@ -451,17 +622,17 @@ msgstr "Статус удалён." msgid "No status with that ID found." msgstr "Не найдено статуса с таким ID." -#: actions/apistatusesupdate.php:157 actions/newnotice.php:155 +#: actions/apistatusesupdate.php:161 actions/newnotice.php:155 #: lib/mailhandler.php:60 #, php-format msgid "That's too long. Max notice size is %d chars." msgstr "Слишком длинная запись. Максимальная длина — %d знаков." -#: actions/apistatusesupdate.php:198 +#: actions/apistatusesupdate.php:202 msgid "Not found" msgstr "Не найдено" -#: actions/apistatusesupdate.php:221 actions/newnotice.php:178 +#: actions/apistatusesupdate.php:225 actions/newnotice.php:178 #, php-format msgid "Max notice size is %d chars, including attachment URL." msgstr "Максимальная длина записи — %d символов, включая URL вложения." @@ -475,7 +646,7 @@ msgstr "Неподдерживаемый формат." msgid "%1$s / Favorites from %2$s" msgstr "%1$s / Любимое от %2$s" -#: actions/apitimelinefavorites.php:120 +#: actions/apitimelinefavorites.php:117 #, php-format msgid "%1$s updates favorited by %2$s / %2$s." msgstr "Обновления %1$s, отмеченные как любимые %2$s / %2$s." @@ -486,7 +657,7 @@ msgstr "Обновления %1$s, отмеченные как любимые %2 msgid "%s timeline" msgstr "Лента %s" -#: actions/apitimelinegroup.php:117 actions/apitimelineuser.php:126 +#: actions/apitimelinegroup.php:114 actions/apitimelineuser.php:126 #: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" @@ -502,27 +673,22 @@ msgstr "%1$s / Обновления, упоминающие %2$s" msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "%1$s обновил этот ответ на сообщение: %2$s / %3$s." -#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "Общая лента %s" -#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "Обновления %s от всех!" -#: actions/apitimelineretweetedbyme.php:112 -#, php-format -msgid "Repeated by %s" -msgstr "Повторено %s" - #: actions/apitimelineretweetedtome.php:111 #, php-format msgid "Repeated to %s" msgstr "Повторено для %s" -#: actions/apitimelineretweetsofme.php:112 +#: actions/apitimelineretweetsofme.php:114 #, php-format msgid "Repeats of %s" msgstr "Повторы за %s" @@ -532,7 +698,7 @@ msgstr "Повторы за %s" msgid "Notices tagged with %s" msgstr "Записи с тегом %s" -#: actions/apitimelinetag.php:108 actions/tagrss.php:64 +#: actions/apitimelinetag.php:104 actions/tagrss.php:64 #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Обновления с тегом %1$s на %2$s!" @@ -593,8 +759,8 @@ msgstr "Оригинал" msgid "Preview" msgstr "Просмотр" -#: actions/avatarsettings.php:149 lib/deleteuserform.php:66 -#: lib/noticelist.php:611 +#: actions/avatarsettings.php:149 actions/showapplication.php:252 +#: lib/deleteuserform.php:66 lib/noticelist.php:637 msgid "Delete" msgstr "Удалить" @@ -606,29 +772,6 @@ msgstr "Загрузить" msgid "Crop" msgstr "Обрезать" -#: actions/avatarsettings.php:268 actions/deletenotice.php:157 -#: actions/disfavor.php:74 actions/emailsettings.php:238 actions/favor.php:75 -#: actions/geocode.php:50 actions/groupblock.php:66 actions/grouplogo.php:309 -#: actions/groupunblock.php:66 actions/imsettings.php:206 -#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 -#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 -#: actions/othersettings.php:145 actions/passwordsettings.php:138 -#: actions/profilesettings.php:194 actions/recoverpassword.php:337 -#: actions/register.php:165 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 -#: actions/subscribe.php:46 actions/tagother.php:166 -#: 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/avatarsettings.php:281 actions/designadminpanel.php:103 -#: actions/emailsettings.php:256 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/avatarsettings.php:328 msgid "Pick a square area of the image to be your avatar" msgstr "Подберите нужный квадратный участок для вашей аватары" @@ -667,8 +810,9 @@ msgstr "" "будет отписан от вас без возможности подписаться в будущем, а вам не будут " "приходить уведомления об @-ответах от него." -#: actions/block.php:143 actions/deletenotice.php:145 -#: actions/deleteuser.php:147 actions/groupblock.php:178 +#: actions/block.php:143 actions/deleteapplication.php:153 +#: actions/deletenotice.php:145 actions/deleteuser.php:147 +#: actions/groupblock.php:178 msgid "No" msgstr "Нет" @@ -676,13 +820,13 @@ msgstr "Нет" msgid "Do not block this user" msgstr "Не блокировать этого пользователя" -#: actions/block.php:144 actions/deletenotice.php:146 -#: actions/deleteuser.php:148 actions/groupblock.php:179 -#: lib/repeatform.php:132 +#: actions/block.php:144 actions/deleteapplication.php:158 +#: actions/deletenotice.php:146 actions/deleteuser.php:148 +#: actions/groupblock.php:179 lib/repeatform.php:132 msgid "Yes" msgstr "Да" -#: actions/block.php:144 actions/groupmembers.php:346 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80 msgid "Block this user" msgstr "Заблокировать пользователя." @@ -765,7 +909,7 @@ msgid "Couldn't delete email confirmation." msgstr "Не удаётся удалить подверждение по электронному адресу." #: actions/confirmaddress.php:144 -msgid "Confirm Address" +msgid "Confirm address" msgstr "Подтвердить адрес" #: actions/confirmaddress.php:159 @@ -782,10 +926,51 @@ msgstr "Дискуссия" msgid "Notices" msgstr "Записи" +#: actions/deleteapplication.php:63 +msgid "You must be logged in to delete an application." +msgstr "Вы должны войти в систему, чтобы удалить приложение." + +#: actions/deleteapplication.php:71 +msgid "Application not found." +msgstr "Приложение не найдено." + +#: actions/deleteapplication.php:78 actions/editapplication.php:77 +#: actions/showapplication.php:94 +msgid "You are not the owner of this application." +msgstr "Вы не являетесь владельцем этого приложения." + +#: actions/deleteapplication.php:102 actions/editapplication.php:127 +#: actions/newapplication.php:110 actions/showapplication.php:118 +#: lib/action.php:1197 +msgid "There was a problem with your session token." +msgstr "Проблема с Вашей сессией. Попробуйте ещё раз, пожалуйста." + +#: actions/deleteapplication.php:123 actions/deleteapplication.php:147 +msgid "Delete application" +msgstr "Удалить приложение" + +#: actions/deleteapplication.php:149 +msgid "" +"Are you sure you want to delete this application? This will clear all data " +"about the application from the database, including all existing user " +"connections." +msgstr "" +"Вы уверены, что хотите удалить это приложение? Это очистит все данные о " +"применении из базы данных, включая все существующие подключения " +"пользователей." + +#: actions/deleteapplication.php:156 +msgid "Do not delete this application" +msgstr "Не удаляйте это приложение" + +#: actions/deleteapplication.php:160 +msgid "Delete this application" +msgstr "Удалить это приложение" + #: 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/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 #: lib/adminpanelaction.php:72 lib/profileformaction.php:63 #: lib/settingsaction.php:72 @@ -816,7 +1001,7 @@ msgstr "Вы уверены, что хотите удалить эту запи msgid "Do not delete this notice" msgstr "Не удалять эту запись" -#: actions/deletenotice.php:146 lib/noticelist.php:611 +#: actions/deletenotice.php:146 lib/noticelist.php:637 msgid "Delete this notice" msgstr "Удалить эту запись" @@ -948,16 +1133,6 @@ msgstr "Восстановить оформление по умолчанию" msgid "Reset back to default" msgstr "Восстановить значения по умолчанию" -#: actions/designadminpanel.php:586 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 -#: actions/pathsadminpanel.php:324 actions/profilesettings.php:174 -#: actions/siteadminpanel.php:388 actions/smssettings.php:181 -#: actions/subscriptions.php:203 actions/tagother.php:154 -#: actions/useradminpanel.php:313 lib/designsettings.php:256 -#: lib/groupeditform.php:202 -msgid "Save" -msgstr "Сохранить" - #: actions/designadminpanel.php:587 lib/designsettings.php:257 msgid "Save design" msgstr "Сохранить оформление" @@ -970,9 +1145,75 @@ msgstr "Эта запись не входит в число ваших люби msgid "Add to favorites" msgstr "Добавить в любимые" -#: actions/doc.php:69 -msgid "No such document." -msgstr "Нет такого документа." +#: actions/doc.php:158 +#, php-format +msgid "No such document \"%s\"" +msgstr "Нет такого документа «%s»" + +#: actions/editapplication.php:54 +msgid "Edit Application" +msgstr "Изменить приложение" + +#: actions/editapplication.php:66 +msgid "You must be logged in to edit an application." +msgstr "Вы должны авторизоваться, чтобы изменить приложение." + +#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:166 +#: actions/showapplication.php:87 +msgid "No such application." +msgstr "Нет такого приложения." + +#: actions/editapplication.php:161 +msgid "Use this form to edit your application." +msgstr "Воспользуйтесь этой формой, чтобы изменить приложение." + +#: actions/editapplication.php:177 actions/newapplication.php:159 +msgid "Name is required." +msgstr "Имя обязательно." + +#: actions/editapplication.php:180 actions/newapplication.php:165 +msgid "Name is too long (max 255 chars)." +msgstr "Имя слишком длинное (не больше 255 знаков)." + +#: actions/editapplication.php:183 actions/newapplication.php:162 +msgid "Name already in use. Try another one." +msgstr "Такое имя уже используется. Попробуйте какое-нибудь другое." + +#: actions/editapplication.php:186 actions/newapplication.php:168 +msgid "Description is required." +msgstr "Описание обязательно." + +#: actions/editapplication.php:194 +msgid "Source URL is too long." +msgstr "URL источника слишком длинный." + +#: actions/editapplication.php:200 actions/newapplication.php:185 +msgid "Source URL is not valid." +msgstr "URL источника недействителен." + +#: actions/editapplication.php:203 actions/newapplication.php:188 +msgid "Organization is required." +msgstr "Организация обязательна." + +#: actions/editapplication.php:206 actions/newapplication.php:191 +msgid "Organization is too long (max 255 chars)." +msgstr "Слишком длинное название организации (максимум 255 знаков)." + +#: actions/editapplication.php:209 actions/newapplication.php:194 +msgid "Organization homepage is required." +msgstr "Домашняя страница организации обязательна." + +#: actions/editapplication.php:218 actions/newapplication.php:206 +msgid "Callback is too long." +msgstr "Обратный вызов слишком длинный." + +#: actions/editapplication.php:225 actions/newapplication.php:215 +msgid "Callback URL is not valid." +msgstr "URL-адрес обратного вызова недействителен." + +#: actions/editapplication.php:258 +msgid "Could not update application." +msgstr "Не удаётся обновить приложение." #: actions/editgroup.php:56 #, php-format @@ -1001,7 +1242,7 @@ msgstr "Слишком длинное описание (максимум %d си msgid "Could not update group." msgstr "Не удаётся обновить информацию о группе." -#: actions/editgroup.php:259 classes/User_group.php:390 +#: actions/editgroup.php:259 classes/User_group.php:433 msgid "Could not create aliases." msgstr "Не удаётся создать алиасы." @@ -1042,7 +1283,8 @@ msgstr "" "для спама!), там будут дальнейшие инструкции." #: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 +#: actions/smssettings.php:126 lib/applicationeditform.php:331 +#: lib/applicationeditform.php:332 msgid "Cancel" msgstr "Отменить" @@ -1132,7 +1374,7 @@ msgid "Cannot normalize that email address" msgstr "Не удаётся стандартизировать этот электронный адрес" #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:157 +#: actions/siteadminpanel.php:143 msgid "Not a valid email address." msgstr "Неверный электронный адрес." @@ -1144,7 +1386,7 @@ msgstr "Это уже Ваш электронный адрес." msgid "That email address already belongs to another user." msgstr "Этот электронный адрес уже задействован другим пользователем." -#: actions/emailsettings.php:353 actions/imsettings.php:317 +#: actions/emailsettings.php:353 actions/imsettings.php:319 #: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." msgstr "Не удаётся вставить код подтверждения." @@ -1206,7 +1448,7 @@ msgstr "Эта запись уже входит в число любимых!" msgid "Disfavor favorite" msgstr "Разлюбить" -#: actions/favorited.php:65 lib/popularnoticesection.php:88 +#: actions/favorited.php:65 lib/popularnoticesection.php:91 #: lib/publicgroupnav.php:93 msgid "Popular notices" msgstr "Популярные записи" @@ -1354,7 +1596,7 @@ msgstr "Пользователь уже заблокирован из групп msgid "User is not a member of group." msgstr "Пользователь не является членом этой группы." -#: actions/groupblock.php:136 actions/groupmembers.php:314 +#: actions/groupblock.php:136 actions/groupmembers.php:316 msgid "Block user from group" msgstr "Заблокировать пользователя из группы." @@ -1452,23 +1694,23 @@ msgstr "Участники группы %1$s, страница %2$d" msgid "A list of the users in this group." msgstr "Список пользователей, являющихся членами этой группы." -#: actions/groupmembers.php:175 lib/action.php:442 lib/groupnav.php:107 +#: actions/groupmembers.php:175 lib/action.php:448 lib/groupnav.php:107 msgid "Admin" msgstr "Настройки" -#: actions/groupmembers.php:346 lib/blockform.php:69 +#: actions/groupmembers.php:348 lib/blockform.php:69 msgid "Block" msgstr "Блокировать" -#: actions/groupmembers.php:441 +#: actions/groupmembers.php:443 msgid "Make user an admin of the group" msgstr "Сделать пользователя администратором группы" -#: actions/groupmembers.php:473 +#: actions/groupmembers.php:475 msgid "Make Admin" msgstr "Сделать администратором" -#: actions/groupmembers.php:473 +#: actions/groupmembers.php:475 msgid "Make this user an admin" msgstr "Сделать этого пользователя администратором" @@ -1500,7 +1742,7 @@ msgstr "" "общими интересами. После присоединения к группе и вы сможете отправлять " "сообщения до всех её участников, используя команду «!имягруппы». Не видите " "группу, которая вас интересует? Попробуйте [найти её](%%%%action.groupsearch%" -"%%%) или [создайте собственную!](%%%%action.newgroup%%%%)" +"%%%) или [создайте собственную](%%%%action.newgroup%%%%)!" #: actions/groups.php:107 actions/usergroups.php:124 lib/groupeditform.php:122 msgid "Create a new group" @@ -1649,6 +1891,11 @@ msgstr "" msgid "That is not your Jabber ID." msgstr "Это не Ваш Jabber ID." +#: actions/inbox.php:59 +#, php-format +msgid "Inbox for %1$s - page %2$d" +msgstr "Входящие для %1$s — страница %2$d" + #: actions/inbox.php:62 #, php-format msgid "Inbox for %s" @@ -1657,7 +1904,8 @@ 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." @@ -1714,7 +1962,7 @@ msgstr "" #: actions/invite.php:162 msgid "" "Use this form to invite your friends and colleagues to use this service." -msgstr "В этой форме ты можешь пригласить друзей и коллег на этот сервис." +msgstr "В этой форме вы можете пригласить друзей и коллег на этот сервис." #: actions/invite.php:187 msgid "Email addresses" @@ -1722,7 +1970,7 @@ msgstr "Почтовый адрес" #: actions/invite.php:189 msgid "Addresses of friends to invite (one per line)" -msgstr "Адреса друзей, которых ты хочешь пригласить (по одному на строчку)" +msgstr "Адреса друзей, которых вы хотите пригласить (по одному на строчку)" #: actions/invite.php:192 msgid "Personal message" @@ -1732,7 +1980,7 @@ msgstr "Личное сообщение" msgid "Optionally add a personal message to the invitation." msgstr "Можно добавить к приглашению личное сообщение." -#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:237 +#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:236 msgid "Send" msgstr "ОК" @@ -1832,7 +2080,7 @@ msgstr "Некорректное имя или пароль." msgid "Error setting user. You are probably not authorized." msgstr "Ошибка установки пользователя. Вы, вероятно, не авторизованы." -#: actions/login.php:188 actions/login.php:241 lib/action.php:460 +#: actions/login.php:188 actions/login.php:241 lib/action.php:466 #: lib/logingroupnav.php:79 msgid "Login" msgstr "Вход" @@ -1841,17 +2089,6 @@ msgstr "Вход" msgid "Login to site" msgstr "Авторизоваться" -#: actions/login.php:230 actions/profilesettings.php:106 -#: actions/register.php:424 actions/showgroup.php:236 actions/tagother.php:94 -#: lib/groupeditform.php:152 lib/userprofile.php:131 -msgid "Nickname" -msgstr "Имя" - -#: actions/login.php:233 actions/register.php:429 -#: lib/accountsettingsaction.php:116 -msgid "Password" -msgstr "Пароль" - #: actions/login.php:236 actions/register.php:478 msgid "Remember me" msgstr "Запомнить меня" @@ -1881,22 +2118,22 @@ msgstr "" "Вход с вашим логином и паролем. Нет аккаунта? [Зарегистрируйте](%%action." "register%%) новый аккаунт." -#: actions/makeadmin.php:91 +#: actions/makeadmin.php:92 msgid "Only an admin can make another user an admin." msgstr "" "Только администратор может сделать другого пользователя администратором." -#: actions/makeadmin.php:95 +#: actions/makeadmin.php:96 #, php-format msgid "%1$s is already an admin for group \"%2$s\"." msgstr "%1$s уже является администратором группы «%2$s»." -#: actions/makeadmin.php:132 +#: actions/makeadmin.php:133 #, php-format msgid "Can't get membership record for %1$s in group %2$s." msgstr "Не удаётся получить запись принадлежности для %1$s к группе %2$s." -#: actions/makeadmin.php:145 +#: actions/makeadmin.php:146 #, php-format msgid "Can't make %1$s an admin for group %2$s." msgstr "Невозможно сделать %1$s администратором группы %2$s." @@ -1905,6 +2142,26 @@ msgstr "Невозможно сделать %1$s администратором msgid "No current status" msgstr "Нет текущего статуса" +#: actions/newapplication.php:52 +msgid "New Application" +msgstr "Новое приложение" + +#: actions/newapplication.php:64 +msgid "You must be logged in to register an application." +msgstr "Вы должны авторизоваться, чтобы зарегистрировать приложение." + +#: actions/newapplication.php:143 +msgid "Use this form to register a new application." +msgstr "Используйте эту форму для создания нового приложения." + +#: actions/newapplication.php:176 +msgid "Source URL is required." +msgstr "URL источника обязателен." + +#: actions/newapplication.php:258 actions/newapplication.php:267 +msgid "Could not create application." +msgstr "Не удаётся создать приложение." + #: actions/newgroup.php:53 msgid "New group" msgstr "Новая группа" @@ -2017,6 +2274,48 @@ msgstr "«Подталкивание» послано" msgid "Nudge sent!" msgstr "«Подталкивание» отправлено!" +#: actions/oauthappssettings.php:59 +msgid "You must be logged in to list your applications." +msgstr "Вы должны авторизоваться, чтобы просматривать свои приложения." + +#: actions/oauthappssettings.php:74 +msgid "OAuth applications" +msgstr "Приложения OAuth" + +#: actions/oauthappssettings.php:85 +msgid "Applications you have registered" +msgstr "Приложения, которые вы зарегистрировали" + +#: actions/oauthappssettings.php:135 +#, php-format +msgid "You have not registered any applications yet." +msgstr "Вы пока не зарегистрировали ни одного приложения." + +#: actions/oauthconnectionssettings.php:72 +msgid "Connected applications" +msgstr "Подключённые приложения" + +#: actions/oauthconnectionssettings.php:83 +msgid "You have allowed the following applications to access you account." +msgstr "Вы разрешили доступ к учётной записи следующим приложениям." + +#: actions/oauthconnectionssettings.php:175 +msgid "You are not a user of that application." +msgstr "Вы не являетесь пользователем этого приложения." + +#: actions/oauthconnectionssettings.php:186 +msgid "Unable to revoke access for app: " +msgstr "Не удаётся отозвать права для приложения: " + +#: actions/oauthconnectionssettings.php:198 +#, php-format +msgid "You have not authorized any applications to use your account." +msgstr "Вы не разрешили приложениям использовать вашу учётную запись." + +#: actions/oauthconnectionssettings.php:211 +msgid "Developers can edit the registration settings for their applications " +msgstr "Разработчики могут изменять настройки регистрации своих приложений " + #: actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" msgstr "Запись без профиля" @@ -2034,8 +2333,8 @@ msgstr "тип содержимого " msgid "Only " msgstr "Только " -#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1033 -#: lib/api.php:1061 lib/api.php:1171 +#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 +#: lib/api.php:1068 lib/api.php:1177 msgid "Not a supported data format." msgstr "Неподдерживаемый формат данных." @@ -2048,7 +2347,7 @@ msgid "Notice Search" msgstr "Поиск в записях" #: actions/othersettings.php:60 -msgid "Other Settings" +msgid "Other settings" msgstr "Другие настройки" #: actions/othersettings.php:71 @@ -2080,29 +2379,29 @@ msgid "URL shortening service is too long (max 50 chars)." msgstr "Сервис сокращения URL слишком длинный (максимум 50 символов)." #: actions/otp.php:69 -#, fuzzy msgid "No user ID specified." -msgstr "Группа не определена." +msgstr "Не указан идентификатор пользователя." #: actions/otp.php:83 -#, fuzzy msgid "No login token specified." -msgstr "Не указана запись." +msgstr "Не указан ключ для входа." #: actions/otp.php:90 -#, fuzzy msgid "No login token requested." -msgstr "Нет ID профиля в запросе." +msgstr "Ключ для входа не был запрошен." #: actions/otp.php:95 -#, fuzzy msgid "Invalid login token specified." -msgstr "Неверный или устаревший ключ." +msgstr "Задан неверный ключ для входа." #: actions/otp.php:104 -#, fuzzy msgid "Login token expired." -msgstr "Авторизоваться" +msgstr "Срок действия ключа для входа истёк." + +#: actions/outbox.php:58 +#, php-format +msgid "Outbox for %1$s - page %2$d" +msgstr "Исходящие для %s — страница %2$d" #: actions/outbox.php:61 #, php-format @@ -2176,7 +2475,7 @@ msgstr "Не удаётся сохранить новый пароль." msgid "Password saved." msgstr "Пароль сохранён." -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:326 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:331 msgid "Paths" msgstr "Пути" @@ -2184,132 +2483,148 @@ msgstr "Пути" msgid "Path and server settings for this StatusNet site." msgstr "Настройки путей и серверов для этого сайта StatusNet." -#: actions/pathsadminpanel.php:140 +#: actions/pathsadminpanel.php:157 #, php-format msgid "Theme directory not readable: %s" msgstr "Директория тем недоступна для чтения: %s" -#: actions/pathsadminpanel.php:146 +#: actions/pathsadminpanel.php:163 #, php-format msgid "Avatar directory not writable: %s" msgstr "Директория аватар не доступна для записи: %s" -#: actions/pathsadminpanel.php:152 +#: actions/pathsadminpanel.php:169 #, php-format msgid "Background directory not writable: %s" msgstr "Директория фоновых изображений не доступна для записи: %s" -#: actions/pathsadminpanel.php:160 +#: actions/pathsadminpanel.php:177 #, php-format msgid "Locales directory not readable: %s" msgstr "Директория локализаций не доступна для чтения: %s" -#: actions/pathsadminpanel.php:166 +#: actions/pathsadminpanel.php:183 msgid "Invalid SSL server. The maximum length is 255 characters." msgstr "Неверный SSL-сервер. Максимальная длина составляет 255 символов." -#: actions/pathsadminpanel.php:217 actions/siteadminpanel.php:58 +#: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58 #: lib/adminpanelaction.php:311 msgid "Site" msgstr "Сайт" -#: actions/pathsadminpanel.php:221 +#: actions/pathsadminpanel.php:238 +msgid "Server" +msgstr "Сервер" + +#: actions/pathsadminpanel.php:238 +msgid "Site's server hostname." +msgstr "Имя хоста сервера сайта." + +#: actions/pathsadminpanel.php:242 msgid "Path" msgstr "Путь" -#: actions/pathsadminpanel.php:221 +#: actions/pathsadminpanel.php:242 msgid "Site path" msgstr "Путь к сайту" -#: actions/pathsadminpanel.php:225 +#: actions/pathsadminpanel.php:246 msgid "Path to locales" msgstr "Пусть к локализациям" -#: actions/pathsadminpanel.php:225 +#: actions/pathsadminpanel.php:246 msgid "Directory path to locales" msgstr "Путь к директории локализаций" -#: actions/pathsadminpanel.php:232 +#: actions/pathsadminpanel.php:250 +msgid "Fancy URLs" +msgstr "Короткие URL" + +#: actions/pathsadminpanel.php:252 +msgid "Use fancy (more readable and memorable) URLs?" +msgstr "Использовать ли короткие (более читаемые и запоминаемые) URL-адреса?" + +#: actions/pathsadminpanel.php:259 msgid "Theme" msgstr "Тема" -#: actions/pathsadminpanel.php:237 +#: actions/pathsadminpanel.php:264 msgid "Theme server" msgstr "Сервер темы" -#: actions/pathsadminpanel.php:241 +#: actions/pathsadminpanel.php:268 msgid "Theme path" msgstr "Путь темы" -#: actions/pathsadminpanel.php:245 +#: actions/pathsadminpanel.php:272 msgid "Theme directory" msgstr "Директория темы" -#: actions/pathsadminpanel.php:252 +#: actions/pathsadminpanel.php:279 msgid "Avatars" msgstr "Аватары" -#: actions/pathsadminpanel.php:257 +#: actions/pathsadminpanel.php:284 msgid "Avatar server" msgstr "Сервер аватар" -#: actions/pathsadminpanel.php:261 +#: actions/pathsadminpanel.php:288 msgid "Avatar path" msgstr "Путь к аватарам" -#: actions/pathsadminpanel.php:265 +#: actions/pathsadminpanel.php:292 msgid "Avatar directory" msgstr "Директория аватар" -#: actions/pathsadminpanel.php:274 +#: actions/pathsadminpanel.php:301 msgid "Backgrounds" msgstr "Фоновые изображения" -#: actions/pathsadminpanel.php:278 +#: actions/pathsadminpanel.php:305 msgid "Background server" msgstr "Сервер фонового изображения" -#: actions/pathsadminpanel.php:282 +#: actions/pathsadminpanel.php:309 msgid "Background path" msgstr "Путь к фоновому изображению" -#: actions/pathsadminpanel.php:286 +#: actions/pathsadminpanel.php:313 msgid "Background directory" msgstr "Директория фонового изображения" -#: actions/pathsadminpanel.php:293 +#: actions/pathsadminpanel.php:320 msgid "SSL" msgstr "SSL" -#: actions/pathsadminpanel.php:296 actions/siteadminpanel.php:346 +#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 msgid "Never" msgstr "Никогда" -#: actions/pathsadminpanel.php:297 +#: actions/pathsadminpanel.php:324 msgid "Sometimes" msgstr "Иногда" -#: actions/pathsadminpanel.php:298 +#: actions/pathsadminpanel.php:325 msgid "Always" msgstr "Всегда" -#: actions/pathsadminpanel.php:302 +#: actions/pathsadminpanel.php:329 msgid "Use SSL" msgstr "Использовать SSL" -#: actions/pathsadminpanel.php:303 +#: actions/pathsadminpanel.php:330 msgid "When to use SSL" msgstr "Когда использовать SSL" -#: actions/pathsadminpanel.php:308 +#: actions/pathsadminpanel.php:335 msgid "SSL server" msgstr "SSL-сервер" -#: actions/pathsadminpanel.php:309 +#: actions/pathsadminpanel.php:336 msgid "Server to direct SSL requests to" msgstr "Сервер, которому направлять SSL-запросы" -#: actions/pathsadminpanel.php:325 +#: actions/pathsadminpanel.php:352 msgid "Save paths" msgstr "Сохранить пути" @@ -2371,7 +2686,7 @@ msgid "Full name" msgstr "Полное имя" #: actions/profilesettings.php:115 actions/register.php:453 -#: lib/groupeditform.php:161 +#: lib/applicationeditform.php:228 lib/groupeditform.php:161 msgid "Homepage" msgstr "Главная" @@ -2394,7 +2709,7 @@ msgstr "Биография" #: actions/profilesettings.php:132 actions/register.php:471 #: actions/showgroup.php:256 actions/tagother.php:112 -#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:164 msgid "Location" msgstr "Месторасположение" @@ -2420,7 +2735,7 @@ msgstr "" "Теги для самого себя (буквы, цифры, -, ., и _), разделенные запятой или " "пробелом" -#: actions/profilesettings.php:151 actions/siteadminpanel.php:294 +#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 msgid "Language" msgstr "Язык" @@ -2446,7 +2761,7 @@ msgstr "Автоматически подписываться на всех, к msgid "Bio is too long (max %d chars)." msgstr "Слишком длинная биография (максимум %d символов)." -#: actions/profilesettings.php:235 actions/siteadminpanel.php:164 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 msgid "Timezone not selected." msgstr "Часовой пояс не выбран." @@ -2459,23 +2774,23 @@ msgstr "Слишком длинный язык (более 50 символов). msgid "Invalid tag: \"%s\"" msgstr "Неверный тег: «%s»" -#: actions/profilesettings.php:302 +#: actions/profilesettings.php:306 msgid "Couldn't update user for autosubscribe." msgstr "Не удаётся обновить пользователя для автоподписки." -#: actions/profilesettings.php:359 +#: actions/profilesettings.php:363 msgid "Couldn't save location prefs." msgstr "Не удаётся сохранить настройки местоположения." -#: actions/profilesettings.php:371 +#: actions/profilesettings.php:375 msgid "Couldn't save profile." msgstr "Не удаётся сохранить профиль." -#: actions/profilesettings.php:379 +#: actions/profilesettings.php:383 msgid "Couldn't save tags." msgstr "Не удаётся сохранить теги." -#: actions/profilesettings.php:387 lib/adminpanelaction.php:137 +#: actions/profilesettings.php:391 lib/adminpanelaction.php:137 msgid "Settings saved." msgstr "Настройки сохранены." @@ -2497,30 +2812,30 @@ msgstr "Общая лента, страница %d" msgid "Public timeline" msgstr "Общая лента" -#: actions/public.php:151 +#: actions/public.php:159 msgid "Public Stream Feed (RSS 1.0)" msgstr "Лента публичного потока (RSS 1.0)" -#: actions/public.php:155 +#: actions/public.php:163 msgid "Public Stream Feed (RSS 2.0)" msgstr "Лента публичного потока (RSS 2.0)" -#: actions/public.php:159 +#: actions/public.php:167 msgid "Public Stream Feed (Atom)" msgstr "Лента публичного потока (Atom)" -#: actions/public.php:179 +#: actions/public.php:187 #, php-format msgid "" "This is the public timeline for %%site.name%% but no one has posted anything " "yet." msgstr "Это общая лента %%site.name%%, однако пока никто ничего не отправил." -#: actions/public.php:182 +#: actions/public.php:190 msgid "Be the first to post!" msgstr "Создайте первую запись!" -#: actions/public.php:186 +#: actions/public.php:194 #, php-format msgid "" "Why not [register an account](%%action.register%%) and be the first to post!" @@ -2528,7 +2843,7 @@ msgstr "" "Почему бы не [зарегистрироваться](%%action.register%%), чтобы стать первым " "отправителем?" -#: actions/public.php:233 +#: actions/public.php:241 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2542,7 +2857,7 @@ msgstr "" "register%%), чтобы держать в курсе своих событий поклонников, друзей, " "родственников и коллег! ([Читать далее](%%doc.help%%))" -#: actions/public.php:238 +#: actions/public.php:246 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2580,7 +2895,7 @@ msgstr "" "Почему бы не [зарегистрироваться](%%action.register%%), чтобы отправить " "первым?" -#: actions/publictagcloud.php:131 +#: actions/publictagcloud.php:134 msgid "Tag cloud" msgstr "Облако тегов" @@ -2720,7 +3035,7 @@ msgstr "Извините, неверный пригласительный код msgid "Registration successful" msgstr "Регистрация успешна!" -#: actions/register.php:114 actions/register.php:503 lib/action.php:457 +#: actions/register.php:114 actions/register.php:503 lib/action.php:463 #: lib/logingroupnav.php:85 msgid "Register" msgstr "Регистрация" @@ -2767,7 +3082,7 @@ msgid "Same as password above. Required." msgstr "Тот же пароль что и сверху. Обязательное поле." #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:270 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 msgid "Email" msgstr "Email" @@ -2872,7 +3187,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "Адрес URL твоего профиля на другом подходящем сервисе микроблогинга" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:365 +#: lib/userprofile.php:368 msgid "Subscribe" msgstr "Подписаться" @@ -2908,7 +3223,7 @@ msgstr "Вы не можете повторить собственную зап msgid "You already repeated that notice." msgstr "Вы уже повторили эту запись." -#: actions/repeat.php:114 lib/noticelist.php:629 +#: actions/repeat.php:114 lib/noticelist.php:656 msgid "Repeated" msgstr "Повторено" @@ -2922,6 +3237,11 @@ msgstr "Повторено!" msgid "Replies to %s" msgstr "Ответы для %s" +#: actions/replies.php:127 +#, php-format +msgid "Replies to %1$s, page %2$d" +msgstr "Ответы для %1$s, страница %2$d" + #: actions/replies.php:144 #, php-format msgid "Replies feed for %s (RSS 1.0)" @@ -2969,6 +3289,10 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "Ответы на записи %1$s на %2$s!" +#: actions/rsd.php:146 actions/version.php:157 +msgid "StatusNet" +msgstr "StatusNet" + #: actions/sandbox.php:65 actions/unsandbox.php:65 msgid "You cannot sandbox users on this site." msgstr "" @@ -2978,6 +3302,122 @@ msgstr "" msgid "User is already sandboxed." msgstr "Пользователь уже в режиме песочницы." +#: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:336 +msgid "Sessions" +msgstr "Сессии" + +#: actions/sessionsadminpanel.php:65 +msgid "Session settings for this StatusNet site." +msgstr "Настройки сессии для этого сайта StatusNet." + +#: actions/sessionsadminpanel.php:175 +msgid "Handle sessions" +msgstr "Управление сессиями" + +#: actions/sessionsadminpanel.php:177 +msgid "Whether to handle sessions ourselves." +msgstr "Управлять ли сессиями самостоятельно." + +#: actions/sessionsadminpanel.php:181 +msgid "Session debugging" +msgstr "Отладка сессий" + +#: actions/sessionsadminpanel.php:183 +msgid "Turn on debugging output for sessions." +msgstr "Включить отладочный вывод для сессий." + +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/useradminpanel.php:293 +msgid "Save site settings" +msgstr "Сохранить настройки сайта" + +#: actions/showapplication.php:82 +msgid "You must be logged in to view an application." +msgstr "Вы должны авторизоваться, чтобы просматривать приложения." + +#: actions/showapplication.php:157 +msgid "Application profile" +msgstr "Профиль приложения" + +#: actions/showapplication.php:159 lib/applicationeditform.php:180 +msgid "Icon" +msgstr "Иконка" + +#: actions/showapplication.php:169 actions/version.php:195 +#: lib/applicationeditform.php:195 +msgid "Name" +msgstr "Имя" + +#: actions/showapplication.php:178 lib/applicationeditform.php:222 +msgid "Organization" +msgstr "Организация" + +#: actions/showapplication.php:187 actions/version.php:198 +#: lib/applicationeditform.php:209 lib/groupeditform.php:172 +msgid "Description" +msgstr "Описание" + +#: actions/showapplication.php:192 actions/showgroup.php:429 +#: lib/profileaction.php:174 +msgid "Statistics" +msgstr "Статистика" + +#: actions/showapplication.php:203 +#, php-format +msgid "Created by %1$s - %2$s access by default - %3$d users" +msgstr "Создано %1$s — доступ по умолчанию: %2$s — %3$d польз." + +#: actions/showapplication.php:213 +msgid "Application actions" +msgstr "Действия приложения" + +#: actions/showapplication.php:236 +msgid "Reset key & secret" +msgstr "Сбросить ключ и секретную фразу" + +#: actions/showapplication.php:261 +msgid "Application info" +msgstr "Информация о приложении" + +#: actions/showapplication.php:263 +msgid "Consumer key" +msgstr "Потребительский ключ" + +#: actions/showapplication.php:268 +msgid "Consumer secret" +msgstr "Секретная фраза потребителя" + +#: actions/showapplication.php:273 +msgid "Request token URL" +msgstr "URL ключа запроса" + +#: actions/showapplication.php:278 +msgid "Access token URL" +msgstr "URL ключа доступа" + +#: actions/showapplication.php:283 +msgid "Authorize URL" +msgstr "URL авторизации" + +#: actions/showapplication.php:288 +msgid "" +"Note: We support HMAC-SHA1 signatures. We do not support the plaintext " +"signature method." +msgstr "" +"Примечание: Мы поддерживаем подписи HMAC-SHA1. Мы не поддерживаем метод " +"подписи открытым текстом." + +#: actions/showapplication.php:309 +msgid "Are you sure you want to reset your consumer key and secret?" +msgstr "" +"Вы уверены, что хотите сбросить ваш ключ потребителя и секретную фразу?" + +#: actions/showfavorites.php:79 +#, php-format +msgid "%1$s's favorite notices, page %2$d" +msgstr "Любимые записи %1$s, страница %2$d" + #: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "Не удаётся восстановить любимые записи." @@ -3034,17 +3474,22 @@ msgstr "Это способ разделить то, что вам нравит msgid "%s group" msgstr "Группа %s" +#: actions/showgroup.php:84 +#, php-format +msgid "%1$s group, page %2$d" +msgstr "Группа %1$s, страница %2$d" + #: actions/showgroup.php:218 msgid "Group profile" msgstr "Профиль группы" #: actions/showgroup.php:263 actions/tagother.php:118 -#: actions/userauthorization.php:167 lib/userprofile.php:177 +#: actions/userauthorization.php:175 lib/userprofile.php:177 msgid "URL" msgstr "URL" #: actions/showgroup.php:274 actions/tagother.php:128 -#: actions/userauthorization.php:179 lib/userprofile.php:194 +#: actions/userauthorization.php:187 lib/userprofile.php:194 msgid "Note" msgstr "Запись" @@ -3090,10 +3535,6 @@ msgstr "(пока ничего нет)" msgid "All members" msgstr "Все участники" -#: actions/showgroup.php:429 lib/profileaction.php:174 -msgid "Statistics" -msgstr "Статистика" - #: actions/showgroup.php:432 msgid "Created" msgstr "Создано" @@ -3158,6 +3599,11 @@ msgstr "Запись удалена." msgid " tagged %s" msgstr " с тегом %s" +#: actions/showstream.php:79 +#, php-format +msgid "%1$s, page %2$d" +msgstr "%1$s, страница %2$d" + #: actions/showstream.php:122 #, php-format msgid "Notice feed for %1$s tagged %2$s (RSS 1.0)" @@ -3183,12 +3629,12 @@ msgstr "Лента записей для %s (Atom)" msgid "FOAF for %s" msgstr "FOAF для %s" -#: actions/showstream.php:191 +#: actions/showstream.php:200 #, php-format msgid "This is the timeline for %1$s but %2$s hasn't posted anything yet." msgstr "Это лента %1$s, однако %2$s пока ничего не отправил." -#: actions/showstream.php:196 +#: actions/showstream.php:205 msgid "" "Seen anything interesting recently? You haven't posted any notices yet, now " "would be a good time to start :)" @@ -3196,7 +3642,7 @@ msgstr "" "Видели недавно что-нибудь интересное? Вы ещё не отправили ни одной записи, " "сейчас хорошее время для начала :)" -#: actions/showstream.php:198 +#: actions/showstream.php:207 #, php-format msgid "" "You can try to nudge %1$s or [post something to his or her attention](%%%%" @@ -3206,7 +3652,7 @@ msgstr "" "привлечения его или её внимания](%%%%action.newnotice%%%%?status_textarea=%2" "$s)." -#: actions/showstream.php:234 +#: actions/showstream.php:243 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3221,7 +3667,7 @@ msgstr "" "сообщения участника **%s** и иметь доступ ко множеству других возможностей! " "([Читать далее](%%%%doc.help%%%%))" -#: actions/showstream.php:239 +#: actions/showstream.php:248 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3233,7 +3679,7 @@ msgstr "" "использованием свободного программного обеспечения [StatusNet](http://status." "net/)." -#: actions/showstream.php:313 +#: actions/showstream.php:305 #, php-format msgid "Repeat of %s" msgstr "Повтор за %s" @@ -3250,199 +3696,146 @@ msgstr "Пользователь уже заглушён." msgid "Basic settings for this StatusNet site." msgstr "Основные настройки для этого сайта StatusNet." -#: actions/siteadminpanel.php:146 +#: actions/siteadminpanel.php:132 msgid "Site name must have non-zero length." msgstr "Имя сайта должно быть ненулевой длины." -#: actions/siteadminpanel.php:154 +#: actions/siteadminpanel.php:140 msgid "You must have a valid contact email address." msgstr "У вас должен быть действительный контактный email-адрес." -#: actions/siteadminpanel.php:172 +#: actions/siteadminpanel.php:158 #, php-format msgid "Unknown language \"%s\"." msgstr "Неизвестный язык «%s»." -#: actions/siteadminpanel.php:179 +#: actions/siteadminpanel.php:165 msgid "Invalid snapshot report URL." msgstr "Неверный URL отчёта снимка." -#: actions/siteadminpanel.php:185 +#: actions/siteadminpanel.php:171 msgid "Invalid snapshot run value." msgstr "Неверное значение запуска снимка." -#: actions/siteadminpanel.php:191 +#: actions/siteadminpanel.php:177 msgid "Snapshot frequency must be a number." msgstr "Частота снимков должна быть числом." -#: actions/siteadminpanel.php:197 +#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "Минимальное ограничение текста составляет 140 символов." -#: actions/siteadminpanel.php:203 +#: actions/siteadminpanel.php:189 msgid "Dupe limit must 1 or more seconds." msgstr "Ограничение дублирования должно составлять 1 или более секунд." -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:239 msgid "General" msgstr "Базовые" -#: actions/siteadminpanel.php:256 +#: actions/siteadminpanel.php:242 msgid "Site name" msgstr "Имя сайта" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:243 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "Имя вашего сайта, например, «Yourcompany Microblog»" -#: actions/siteadminpanel.php:261 +#: actions/siteadminpanel.php:247 msgid "Brought by" msgstr "Предоставлено" -#: actions/siteadminpanel.php:262 +#: actions/siteadminpanel.php:248 msgid "Text used for credits link in footer of each page" msgstr "" "Текст, используемый для указания авторов в нижнем колонтитуле каждой страницы" -#: actions/siteadminpanel.php:266 +#: actions/siteadminpanel.php:252 msgid "Brought by URL" msgstr "URL-адрес поставщика услуг" -#: actions/siteadminpanel.php:267 +#: actions/siteadminpanel.php:253 msgid "URL used for credits link in footer of each page" msgstr "" "URL, используемый для ссылки на авторов в нижнем колонтитуле каждой страницы" -#: actions/siteadminpanel.php:271 +#: actions/siteadminpanel.php:257 msgid "Contact email address for your site" msgstr "Контактный email-адрес для вашего сайта" -#: actions/siteadminpanel.php:277 +#: actions/siteadminpanel.php:263 msgid "Local" msgstr "Внутренние настройки" -#: actions/siteadminpanel.php:288 +#: actions/siteadminpanel.php:274 msgid "Default timezone" msgstr "Часовой пояс по умолчанию" -#: actions/siteadminpanel.php:289 +#: actions/siteadminpanel.php:275 msgid "Default timezone for the site; usually UTC." msgstr "Часовой пояс по умолчанию для сайта; обычно UTC." -#: actions/siteadminpanel.php:295 +#: actions/siteadminpanel.php:281 msgid "Default site language" msgstr "Язык сайта по умолчанию" -#: actions/siteadminpanel.php:303 -msgid "URLs" -msgstr "URL-адреса" - -#: actions/siteadminpanel.php:306 -msgid "Server" -msgstr "Сервер" - -#: actions/siteadminpanel.php:306 -msgid "Site's server hostname." -msgstr "Имя хоста сервера сайта." - -#: actions/siteadminpanel.php:310 -msgid "Fancy URLs" -msgstr "Короткие URL" - -#: actions/siteadminpanel.php:312 -msgid "Use fancy (more readable and memorable) URLs?" -msgstr "Использовать ли короткие (более читаемые и запоминаемые) URL-адреса?" - -#: actions/siteadminpanel.php:318 -msgid "Access" -msgstr "Принять" - -#: actions/siteadminpanel.php:321 -msgid "Private" -msgstr "Личное" - -#: actions/siteadminpanel.php:323 -msgid "Prohibit anonymous users (not logged in) from viewing site?" -msgstr "" -"Запретить анонимным (не авторизовавшимся) пользователям просматривать сайт?" - -#: actions/siteadminpanel.php:327 -msgid "Invite only" -msgstr "Только по приглашениям" - -#: actions/siteadminpanel.php:329 -msgid "Make registration invitation only." -msgstr "Разрешить регистрацию только по приглашениям." - -#: actions/siteadminpanel.php:333 -msgid "Closed" -msgstr "Закрыта" - -#: actions/siteadminpanel.php:335 -msgid "Disable new registrations." -msgstr "Отключить новые регистрации." - -#: actions/siteadminpanel.php:341 +#: actions/siteadminpanel.php:289 msgid "Snapshots" msgstr "Снимки" -#: actions/siteadminpanel.php:344 +#: actions/siteadminpanel.php:292 msgid "Randomly during Web hit" msgstr "При случайном посещении" -#: actions/siteadminpanel.php:345 +#: actions/siteadminpanel.php:293 msgid "In a scheduled job" msgstr "По заданному графику" -#: actions/siteadminpanel.php:347 +#: actions/siteadminpanel.php:295 msgid "Data snapshots" msgstr "Снимки данных" -#: actions/siteadminpanel.php:348 +#: actions/siteadminpanel.php:296 msgid "When to send statistical data to status.net servers" msgstr "Когда отправлять статистические данные на сервера status.net" -#: actions/siteadminpanel.php:353 +#: actions/siteadminpanel.php:301 msgid "Frequency" msgstr "Частота" -#: actions/siteadminpanel.php:354 +#: actions/siteadminpanel.php:302 msgid "Snapshots will be sent once every N web hits" msgstr "Снимки будут отправляться каждые N посещений" -#: actions/siteadminpanel.php:359 +#: actions/siteadminpanel.php:307 msgid "Report URL" msgstr "URL отчёта" -#: actions/siteadminpanel.php:360 +#: actions/siteadminpanel.php:308 msgid "Snapshots will be sent to this URL" msgstr "Снимки будут отправляться по этому URL-адресу" -#: actions/siteadminpanel.php:367 +#: actions/siteadminpanel.php:315 msgid "Limits" msgstr "Границы" -#: actions/siteadminpanel.php:370 +#: actions/siteadminpanel.php:318 msgid "Text limit" msgstr "Границы текста" -#: actions/siteadminpanel.php:370 +#: actions/siteadminpanel.php:318 msgid "Maximum number of characters for notices." msgstr "Максимальное число символов для записей." -#: actions/siteadminpanel.php:374 +#: actions/siteadminpanel.php:322 msgid "Dupe limit" msgstr "Предел дубликатов" -#: actions/siteadminpanel.php:374 +#: actions/siteadminpanel.php:322 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" "Сколько нужно ждать пользователям (в секундах) для отправки того же ещё раз." -#: actions/siteadminpanel.php:388 actions/useradminpanel.php:313 -msgid "Save site settings" -msgstr "Сохранить настройки сайта" - #: actions/smssettings.php:58 msgid "SMS settings" msgstr "Установки СМС" @@ -3548,15 +3941,26 @@ msgstr "Код не введён" msgid "You are not subscribed to that profile." msgstr "Вы не подписаны на этот профиль." -#: actions/subedit.php:83 +#: actions/subedit.php:83 classes/Subscription.php:89 +#: classes/Subscription.php:116 msgid "Could not save subscription." msgstr "Не удаётся сохранить подписку." -#: actions/subscribe.php:55 -msgid "Not a local user." -msgstr "Не локальный пользователь." +#: actions/subscribe.php:77 +msgid "This action only accepts POST requests." +msgstr "" -#: actions/subscribe.php:69 +#: actions/subscribe.php:107 +#, fuzzy +msgid "No such profile." +msgstr "Нет такого файла." + +#: actions/subscribe.php:117 +#, fuzzy +msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." +msgstr "Вы не подписаны на этот профиль." + +#: actions/subscribe.php:145 msgid "Subscribed" msgstr "Подписано" @@ -3620,7 +4024,7 @@ msgstr "Это пользователи, записи которых вы чит msgid "These are the people whose notices %s listens to." msgstr "Это пользователи, записи которых читает %s." -#: actions/subscriptions.php:121 +#: actions/subscriptions.php:126 #, php-format msgid "" "You're not listening to anyone's notices right now, try subscribing to " @@ -3636,19 +4040,24 @@ msgstr "" "пользуетесь [Твиттером](%%action.twittersettings%%), то можете автоматически " "подписаться на тех людей, за которыми уже следите там." -#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#: actions/subscriptions.php:128 actions/subscriptions.php:132 #, php-format msgid "%s is not listening to anyone." msgstr "%s не просматривает ничьи записи." -#: actions/subscriptions.php:194 +#: actions/subscriptions.php:199 msgid "Jabber" msgstr "Jabber" -#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:204 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "СМС" +#: actions/tag.php:68 +#, php-format +msgid "Notices tagged with %1$s, page %2$d" +msgstr "Записи с тегом %1$s, страница %2$d" + #: actions/tag.php:86 #, php-format msgid "Notice feed for tag %s (RSS 1.0)" @@ -3677,7 +4086,8 @@ msgstr "Теги %s" msgid "User profile" msgstr "Профиль пользователя" -#: actions/tagother.php:81 lib/userprofile.php:102 +#: actions/tagother.php:81 actions/userauthorization.php:132 +#: lib/userprofile.php:102 msgid "Photo" msgstr "Фото" @@ -3737,7 +4147,7 @@ msgstr "Нет ID профиля в запросе." msgid "Unsubscribed" msgstr "Отписано" -#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#: actions/updateprofile.php:62 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -3753,85 +4163,65 @@ msgstr "Пользователь" msgid "User settings for this StatusNet site." msgstr "Пользовательские настройки для этого сайта StatusNet." -#: actions/useradminpanel.php:149 +#: actions/useradminpanel.php:148 msgid "Invalid bio limit. Must be numeric." msgstr "Неверное ограничение биографии. Должно быть числом." -#: actions/useradminpanel.php:155 +#: actions/useradminpanel.php:154 msgid "Invalid welcome text. Max length is 255 characters." msgstr "" "Неверный текст приветствия. Максимальная длина составляет 255 символов." -#: actions/useradminpanel.php:165 +#: actions/useradminpanel.php:164 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "Неверная подписка по умолчанию: «%1$s» не является пользователем." -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 +#: actions/useradminpanel.php:217 lib/accountsettingsaction.php:108 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Профиль" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:221 msgid "Bio Limit" msgstr "Ограничение биографии" -#: actions/useradminpanel.php:223 +#: actions/useradminpanel.php:222 msgid "Maximum length of a profile bio in characters." msgstr "Максимальная длина биографии профиля в символах." -#: actions/useradminpanel.php:231 +#: actions/useradminpanel.php:230 msgid "New users" msgstr "Новые пользователи" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:234 msgid "New user welcome" msgstr "Приветствие новым пользователям" -#: actions/useradminpanel.php:236 +#: actions/useradminpanel.php:235 msgid "Welcome text for new users (Max 255 chars)." msgstr "Текст приветствия для новых пользователей (максимум 255 символов)." -#: actions/useradminpanel.php:241 +#: actions/useradminpanel.php:240 msgid "Default subscription" msgstr "Подписка по умолчанию" -#: actions/useradminpanel.php:242 +#: actions/useradminpanel.php:241 msgid "Automatically subscribe new users to this user." msgstr "Автоматически подписывать новых пользователей на этого пользователя." -#: actions/useradminpanel.php:251 +#: actions/useradminpanel.php:250 msgid "Invitations" msgstr "Приглашения" -#: actions/useradminpanel.php:256 +#: actions/useradminpanel.php:255 msgid "Invitations enabled" msgstr "Приглашения включены" -#: actions/useradminpanel.php:258 +#: actions/useradminpanel.php:257 msgid "Whether to allow users to invite new users." msgstr "Разрешать ли пользователям приглашать новых пользователей." -#: actions/useradminpanel.php:265 -msgid "Sessions" -msgstr "Сессии" - -#: actions/useradminpanel.php:270 -msgid "Handle sessions" -msgstr "Управление сессиями" - -#: actions/useradminpanel.php:272 -msgid "Whether to handle sessions ourselves." -msgstr "Управлять ли сессиями самостоятельно." - -#: actions/useradminpanel.php:276 -msgid "Session debugging" -msgstr "Отладка сессий" - -#: actions/useradminpanel.php:278 -msgid "Turn on debugging output for sessions." -msgstr "Включить отладочный вывод для сессий." - #: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Авторизовать подписку" @@ -3846,36 +4236,36 @@ msgstr "" "подписаться на записи этого пользователя. Если Вы этого не хотите делать, " "нажмите «Отказ»." -#: actions/userauthorization.php:188 actions/version.php:165 +#: actions/userauthorization.php:196 actions/version.php:165 msgid "License" msgstr "Лицензия" -#: actions/userauthorization.php:209 +#: actions/userauthorization.php:217 msgid "Accept" msgstr "Принять" -#: actions/userauthorization.php:210 lib/subscribeform.php:115 +#: actions/userauthorization.php:218 lib/subscribeform.php:115 #: lib/subscribeform.php:139 msgid "Subscribe to this user" msgstr "Подписаться на %s" -#: actions/userauthorization.php:211 +#: actions/userauthorization.php:219 msgid "Reject" msgstr "Отбросить" -#: actions/userauthorization.php:212 +#: actions/userauthorization.php:220 msgid "Reject this subscription" msgstr "Отвергнуть эту подписку" -#: actions/userauthorization.php:225 +#: actions/userauthorization.php:232 msgid "No authorization request!" msgstr "Не авторизованный запрос!" -#: actions/userauthorization.php:247 +#: actions/userauthorization.php:254 msgid "Subscription authorized" msgstr "Подписка авторизована" -#: actions/userauthorization.php:249 +#: actions/userauthorization.php:256 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 " @@ -3884,11 +4274,11 @@ msgstr "" "Подписка авторизована, но нет обратного URL. Посмотрите инструкции на сайте " "о том, как авторизовать подписку. Ваш ключ подписки:" -#: actions/userauthorization.php:259 +#: actions/userauthorization.php:266 msgid "Subscription rejected" msgstr "Подписка отменена" -#: actions/userauthorization.php:261 +#: actions/userauthorization.php:268 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 " @@ -3897,37 +4287,37 @@ msgstr "" "Подписка отвергнута, но не бы передан URL обратного вызова. Проверьте " "инструкции на сайте, чтобы полностью отказаться от подписки." -#: actions/userauthorization.php:296 +#: actions/userauthorization.php:303 #, php-format msgid "Listener URI ‘%s’ not found here." msgstr "Смотрящий URI «%s» здесь не найден." -#: actions/userauthorization.php:301 +#: actions/userauthorization.php:308 #, php-format msgid "Listenee URI ‘%s’ is too long." msgstr "Просматриваемый URI «%s» слишком длинный." -#: actions/userauthorization.php:307 +#: actions/userauthorization.php:314 #, php-format msgid "Listenee URI ‘%s’ is a local user." msgstr "Просматриваемый URI «%s» — локальный пользователь." -#: actions/userauthorization.php:322 +#: actions/userauthorization.php:329 #, php-format msgid "Profile URL ‘%s’ is for a local user." msgstr "URL профиля «%s» предназначен только для локального пользователя." -#: actions/userauthorization.php:338 +#: actions/userauthorization.php:345 #, php-format msgid "Avatar URL ‘%s’ is not valid." msgstr "URL аватары «%s» недействителен." -#: actions/userauthorization.php:343 +#: actions/userauthorization.php:350 #, php-format msgid "Can’t read avatar URL ‘%s’." msgstr "Не удаётся прочитать URL аватары «%s»" -#: actions/userauthorization.php:348 +#: actions/userauthorization.php:355 #, php-format msgid "Wrong image type for avatar URL ‘%s’." msgstr "Неверный тип изображения для URL аватары «%s»." @@ -3948,6 +4338,11 @@ msgstr "" msgid "Enjoy your hotdog!" msgstr "Приятного аппетита!" +#: actions/usergroups.php:64 +#, php-format +msgid "%1$s groups, page %2$d" +msgstr "Группы %1$s, страница %2$d" + #: actions/usergroups.php:130 msgid "Search for more groups" msgstr "Искать другие группы" @@ -3977,10 +4372,6 @@ msgstr "" "Этот сайт создан на основе %1$s версии %2$s, Copyright 2008-2010 StatusNet, " "Inc. и участники." -#: actions/version.php:157 -msgid "StatusNet" -msgstr "StatusNet" - #: actions/version.php:161 msgid "Contributors" msgstr "Разработчики" @@ -4022,11 +4413,7 @@ msgstr "" msgid "Plugins" msgstr "Плагины" -#: actions/version.php:195 -msgid "Name" -msgstr "Имя" - -#: actions/version.php:196 lib/action.php:741 +#: actions/version.php:196 lib/action.php:747 msgid "Version" msgstr "Версия" @@ -4034,10 +4421,6 @@ msgstr "Версия" msgid "Author(s)" msgstr "Автор(ы)" -#: actions/version.php:198 lib/groupeditform.php:172 -msgid "Description" -msgstr "Описание" - #: classes/File.php:144 #, php-format msgid "" @@ -4058,19 +4441,16 @@ msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "Файл такого размера превысит вашу месячную квоту в %d байта." #: classes/Group_member.php:41 -#, fuzzy msgid "Group join failed." -msgstr "Профиль группы" +msgstr "Не удаётся присоединиться к группе." #: classes/Group_member.php:53 -#, fuzzy msgid "Not part of group." -msgstr "Не удаётся обновить информацию о группе." +msgstr "Не является частью группы." #: classes/Group_member.php:60 -#, fuzzy msgid "Group leave failed." -msgstr "Профиль группы" +msgstr "Не удаётся покинуть группу." #: classes/Login_token.php:76 #, php-format @@ -4089,27 +4469,27 @@ msgstr "Не удаётся вставить сообщение." msgid "Could not update message with new URI." msgstr "Не удаётся обновить сообщение с новым URI." -#: classes/Notice.php:171 +#: classes/Notice.php:157 #, php-format msgid "DB error inserting hashtag: %s" msgstr "Ошибка баз данных при вставке хеш-тегов для %s" -#: classes/Notice.php:225 +#: classes/Notice.php:222 msgid "Problem saving notice. Too long." msgstr "Проблемы с сохранением записи. Слишком длинно." -#: classes/Notice.php:229 +#: classes/Notice.php:226 msgid "Problem saving notice. Unknown user." msgstr "Проблема при сохранении записи. Неизвестный пользователь." -#: classes/Notice.php:234 +#: classes/Notice.php:231 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" "Слишком много записей за столь короткий срок; передохните немного и " "попробуйте вновь через пару минут." -#: classes/Notice.php:240 +#: classes/Notice.php:237 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." @@ -4117,34 +4497,57 @@ msgstr "" "Слишком много одинаковых записей за столь короткий срок; передохните немного " "и попробуйте вновь через пару минут." -#: classes/Notice.php:246 +#: classes/Notice.php:243 msgid "You are banned from posting notices on this site." msgstr "Вам запрещено поститься на этом сайте (бан)" -#: classes/Notice.php:305 classes/Notice.php:330 +#: classes/Notice.php:309 classes/Notice.php:335 msgid "Problem saving notice." msgstr "Проблемы с сохранением записи." -#: classes/Notice.php:1052 -#, php-format -msgid "DB error inserting reply: %s" -msgstr "Ошибка баз данных при вставке ответа для %s" +#: classes/Notice.php:882 +msgid "Problem saving group inbox." +msgstr "Проблемы с сохранением входящих сообщений группы." -#: classes/Notice.php:1423 +#: classes/Notice.php:1407 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" -#: classes/User.php:382 +#: classes/Subscription.php:66 lib/oauthstore.php:465 +msgid "You have been banned from subscribing." +msgstr "Вы заблокированы от подписки." + +#: classes/Subscription.php:70 +msgid "Already subscribed!" +msgstr "Уже подписаны!" + +#: classes/Subscription.php:74 +msgid "User has blocked you." +msgstr "Пользователь заблокировал Вас." + +#: classes/Subscription.php:157 +msgid "Not subscribed!" +msgstr "Не подписаны!" + +#: classes/Subscription.php:163 +msgid "Couldn't delete self-subscription." +msgstr "Невозможно удалить самоподписку." + +#: classes/Subscription.php:179 lib/subs.php:69 +msgid "Couldn't delete subscription." +msgstr "Не удаётся удалить подписку." + +#: classes/User.php:372 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "Добро пожаловать на %1$s, @%2$s!" -#: classes/User_group.php:380 +#: classes/User_group.php:423 msgid "Could not create group." msgstr "Не удаётся создать группу." -#: classes/User_group.php:409 +#: classes/User_group.php:452 msgid "Could not set group membership." msgstr "Не удаётся назначить членство в группе." @@ -4177,136 +4580,132 @@ msgid "Other options" msgstr "Другие опции" #: lib/action.php:144 -#, fuzzy, php-format +#, php-format msgid "%1$s - %2$s" -msgstr "%1$s (%2$s)" +msgstr "%1$s — %2$s" #: lib/action.php:159 msgid "Untitled page" msgstr "Страница без названия" -#: lib/action.php:427 +#: lib/action.php:433 msgid "Primary site navigation" msgstr "Главная навигация" -#: lib/action.php:433 +#: lib/action.php:439 msgid "Home" msgstr "Моё" -#: lib/action.php:433 +#: lib/action.php:439 msgid "Personal profile and friends timeline" msgstr "Личный профиль и лента друзей" -#: lib/action.php:435 -msgid "Account" -msgstr "Настройки" - -#: lib/action.php:435 +#: lib/action.php:441 msgid "Change your email, avatar, password, profile" msgstr "Изменить ваш email, аватару, пароль, профиль" -#: lib/action.php:438 +#: lib/action.php:444 msgid "Connect" msgstr "Соединить" -#: lib/action.php:438 +#: lib/action.php:444 msgid "Connect to services" msgstr "Соединить с сервисами" -#: lib/action.php:442 +#: lib/action.php:448 msgid "Change site configuration" msgstr "Изменить конфигурацию сайта" -#: lib/action.php:446 lib/subgroupnav.php:105 +#: lib/action.php:452 lib/subgroupnav.php:105 msgid "Invite" msgstr "Пригласить" -#: lib/action.php:447 lib/subgroupnav.php:106 +#: lib/action.php:453 lib/subgroupnav.php:106 #, php-format msgid "Invite friends and colleagues to join you on %s" -msgstr "Пригласи друзей и коллег стать такими же как ты участниками %s" +msgstr "Пригласите друзей и коллег стать такими же как вы участниками %s" -#: lib/action.php:452 +#: lib/action.php:458 msgid "Logout" msgstr "Выход" -#: lib/action.php:452 +#: lib/action.php:458 msgid "Logout from the site" msgstr "Выйти" -#: lib/action.php:457 +#: lib/action.php:463 msgid "Create an account" msgstr "Создать новый аккаунт" -#: lib/action.php:460 +#: lib/action.php:466 msgid "Login to the site" msgstr "Войти" -#: lib/action.php:463 lib/action.php:726 +#: lib/action.php:469 lib/action.php:732 msgid "Help" msgstr "Помощь" -#: lib/action.php:463 +#: lib/action.php:469 msgid "Help me!" msgstr "Помощь" -#: lib/action.php:466 lib/searchaction.php:127 +#: lib/action.php:472 lib/searchaction.php:127 msgid "Search" msgstr "Поиск" -#: lib/action.php:466 +#: lib/action.php:472 msgid "Search for people or text" msgstr "Искать людей или текст" -#: lib/action.php:487 +#: lib/action.php:493 msgid "Site notice" msgstr "Новая запись" -#: lib/action.php:553 +#: lib/action.php:559 msgid "Local views" msgstr "Локальные виды" -#: lib/action.php:619 +#: lib/action.php:625 msgid "Page notice" msgstr "Новая запись" -#: lib/action.php:721 +#: lib/action.php:727 msgid "Secondary site navigation" msgstr "Навигация по подпискам" -#: lib/action.php:728 +#: lib/action.php:734 msgid "About" msgstr "О проекте" -#: lib/action.php:730 +#: lib/action.php:736 msgid "FAQ" msgstr "ЧаВо" -#: lib/action.php:734 +#: lib/action.php:740 msgid "TOS" msgstr "TOS" -#: lib/action.php:737 +#: lib/action.php:743 msgid "Privacy" msgstr "Пользовательское соглашение" -#: lib/action.php:739 +#: lib/action.php:745 msgid "Source" msgstr "Исходный код" -#: lib/action.php:743 +#: lib/action.php:749 msgid "Contact" msgstr "Контактная информация" -#: lib/action.php:745 +#: lib/action.php:751 msgid "Badge" msgstr "Бедж" -#: lib/action.php:773 +#: lib/action.php:779 msgid "StatusNet software license" msgstr "StatusNet лицензия" -#: lib/action.php:776 +#: lib/action.php:782 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4315,50 +4714,75 @@ msgstr "" "**%%site.name%%** — это сервис микроблогинга, созданный для вас при помощи [%" "%site.broughtby%%](%%site.broughtbyurl%%). " -#: lib/action.php:778 +#: lib/action.php:784 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** — сервис микроблогинга. " -#: lib/action.php:780 +#: lib/action.php:786 #, 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](http://status.net/) — " +"программного обеспечения для микроблоггинга, версии %s, доступного под " "лицензией [GNU Affero General Public License](http://www.fsf.org/licensing/" "licenses/agpl-3.0.html)." -#: lib/action.php:794 +#: lib/action.php:801 msgid "Site content license" msgstr "Лицензия содержимого сайта" -#: lib/action.php:803 +#: lib/action.php:806 +#, php-format +msgid "Content and data of %1$s are private and confidential." +msgstr "Содержание и данные %1$s являются личными и конфиденциальными." + +#: lib/action.php:811 +#, php-format +msgid "Content and data copyright by %1$s. All rights reserved." +msgstr "" +"Авторские права на содержание и данные принадлежат %1$s. Все права защищены." + +#: lib/action.php:814 +msgid "Content and data copyright by contributors. All rights reserved." +msgstr "" +"Авторские права на содержание и данные принадлежат разработчикам. Все права " +"защищены." + +#: lib/action.php:827 msgid "All " msgstr "All " -#: lib/action.php:808 +#: lib/action.php:833 msgid "license." msgstr "license." -#: lib/action.php:1102 +#: lib/action.php:1132 msgid "Pagination" msgstr "Разбиение на страницы" -#: lib/action.php:1111 +#: lib/action.php:1141 msgid "After" msgstr "Сюда" -#: lib/action.php:1119 +#: lib/action.php:1149 msgid "Before" msgstr "Туда" -#: lib/action.php:1167 -msgid "There was a problem with your session token." -msgstr "Проблема с Вашей сессией. Попробуйте ещё раз, пожалуйста." +#: lib/activity.php:382 +msgid "Can't handle remote content yet." +msgstr "" + +#: lib/activity.php:410 +msgid "Can't handle embedded XML content yet." +msgstr "" + +#: lib/activity.php:414 +msgid "Can't handle embedded Base64 content yet." +msgstr "" #: lib/adminpanelaction.php:96 msgid "You cannot make changes to this site." @@ -4388,10 +4812,101 @@ msgstr "Основная конфигурация сайта" msgid "Design configuration" msgstr "Конфигурация оформления" -#: lib/adminpanelaction.php:322 lib/adminpanelaction.php:327 +#: lib/adminpanelaction.php:322 +msgid "User configuration" +msgstr "Конфигурация пользователя" + +#: lib/adminpanelaction.php:327 +msgid "Access configuration" +msgstr "Конфигурация доступа" + +#: lib/adminpanelaction.php:332 msgid "Paths configuration" msgstr "Конфигурация путей" +#: lib/adminpanelaction.php:337 +msgid "Sessions configuration" +msgstr "Конфигурация сессий" + +#: lib/apiauth.php:95 +msgid "API resource requires read-write access, but you only have read access." +msgstr "" +"API ресурса требует доступ для чтения и записи, но у вас есть только доступ " +"для чтения." + +#: lib/apiauth.php:273 +#, php-format +msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" +msgstr "" +"Неудачная попытка авторизации через API, nickname = %1$s, proxy = %2$s, ip = " +"%3$s" + +#: lib/applicationeditform.php:136 +msgid "Edit application" +msgstr "Изменить приложение" + +#: lib/applicationeditform.php:184 +msgid "Icon for this application" +msgstr "Иконка для этого приложения" + +#: lib/applicationeditform.php:204 +#, php-format +msgid "Describe your application in %d characters" +msgstr "Опишите ваше приложение при помощи %d символов" + +#: lib/applicationeditform.php:207 +msgid "Describe your application" +msgstr "Опишите ваше приложение" + +#: lib/applicationeditform.php:216 +msgid "Source URL" +msgstr "URL источника" + +#: lib/applicationeditform.php:218 +msgid "URL of the homepage of this application" +msgstr "URL-адрес домашней страницы этого приложения" + +#: lib/applicationeditform.php:224 +msgid "Organization responsible for this application" +msgstr "Организация, ответственная за это приложение" + +#: lib/applicationeditform.php:230 +msgid "URL for the homepage of the organization" +msgstr "URL-адрес домашней страницы организации" + +#: lib/applicationeditform.php:236 +msgid "URL to redirect to after authentication" +msgstr "URL для перенаправления после проверки подлинности" + +#: lib/applicationeditform.php:258 +msgid "Browser" +msgstr "Браузер" + +#: lib/applicationeditform.php:274 +msgid "Desktop" +msgstr "Операционная система" + +#: lib/applicationeditform.php:275 +msgid "Type of application, browser or desktop" +msgstr "Среда выполнения приложения: браузер или операционная система" + +#: lib/applicationeditform.php:297 +msgid "Read-only" +msgstr "Только чтение" + +#: lib/applicationeditform.php:315 +msgid "Read-write" +msgstr "Чтение и запись" + +#: lib/applicationeditform.php:316 +msgid "Default access for this application: read-only, or read-write" +msgstr "" +"Доступ по умолчанию для этого приложения: только чтение или чтение и запись" + +#: lib/applicationlist.php:154 +msgid "Revoke" +msgstr "Отозвать" + #: lib/attachmentlist.php:87 msgid "Attachments" msgstr "Вложения" @@ -4412,11 +4927,11 @@ msgstr "Сообщает, где появляется это вложение" msgid "Tags for this attachment" msgstr "Теги для этого вложения" -#: lib/authenticationplugin.php:182 lib/authenticationplugin.php:187 +#: lib/authenticationplugin.php:218 lib/authenticationplugin.php:223 msgid "Password changing failed" msgstr "Изменение пароля не удалось" -#: lib/authenticationplugin.php:197 +#: lib/authenticationplugin.php:233 msgid "Password changing is not allowed" msgstr "Смена пароля не разрешена" @@ -4567,83 +5082,93 @@ msgstr "Проблемы с сохранением записи." msgid "Specify the name of the user to subscribe to" msgstr "Укажите имя пользователя для подписки." -#: lib/command.php:554 +#: lib/command.php:554 lib/command.php:589 +msgid "No such user" +msgstr "Нет такого пользователя." + +#: lib/command.php:561 #, php-format msgid "Subscribed to %s" msgstr "Подписано на %s" -#: lib/command.php:575 +#: lib/command.php:582 lib/command.php:685 msgid "Specify the name of the user to unsubscribe from" msgstr "Укажите имя пользователя для отмены подписки." -#: lib/command.php:582 +#: lib/command.php:595 #, php-format msgid "Unsubscribed from %s" msgstr "Отписано от %s" -#: lib/command.php:600 lib/command.php:623 +#: lib/command.php:613 lib/command.php:636 msgid "Command not yet implemented." msgstr "Команда ещё не выполнена." -#: lib/command.php:603 +#: lib/command.php:616 msgid "Notification off." msgstr "Оповещение отсутствует." -#: lib/command.php:605 +#: lib/command.php:618 msgid "Can't turn off notification." msgstr "Нет оповещения." -#: lib/command.php:626 +#: lib/command.php:639 msgid "Notification on." msgstr "Есть оповещение." -#: lib/command.php:628 +#: lib/command.php:641 msgid "Can't turn on notification." msgstr "Есть оповещение." -#: lib/command.php:641 +#: lib/command.php:654 msgid "Login command is disabled" msgstr "Команда входа отключена" -#: lib/command.php:652 +#: lib/command.php:665 #, php-format msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "Эта ссылка действительна только один раз в течение 2 минут: %s" -#: lib/command.php:668 +#: lib/command.php:692 +#, fuzzy, php-format +msgid "Unsubscribed %s" +msgstr "Отписано от %s" + +#: lib/command.php:709 msgid "You are not subscribed to anyone." msgstr "Вы ни на кого не подписаны." -#: lib/command.php:670 +#: lib/command.php:711 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "Вы подписаны на этих людей:" msgstr[1] "Вы подписаны на этих людей:" msgstr[2] "Вы подписаны на этих людей:" -#: lib/command.php:690 +#: lib/command.php:731 msgid "No one is subscribed to you." msgstr "Никто не подписан на вас." -#: lib/command.php:692 +#: lib/command.php:733 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "Эти люди подписались на вас:" msgstr[1] "Эти люди подписались на вас:" msgstr[2] "Эти люди подписались на вас:" -#: lib/command.php:712 +#: lib/command.php:753 msgid "You are not a member of any groups." msgstr "Вы не состоите ни в одной группе." -#: lib/command.php:714 +#: lib/command.php:755 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "Вы являетесь участником следующих групп:" msgstr[1] "Вы являетесь участником следующих групп:" msgstr[2] "Вы являетесь участником следующих групп:" -#: lib/command.php:728 +#: lib/command.php:769 +#, fuzzy msgid "" "Commands:\n" "on - turn on notifications\n" @@ -4657,6 +5182,7 @@ msgid "" "d - direct message to user\n" "get - get last notice from user\n" "whois - get profile info on user\n" +"lose - force user to stop following you\n" "fav - add user's last notice as a 'fave'\n" "fav # - add notice with the given id as a 'fave'\n" "repeat # - repeat a notice with a given id\n" @@ -4721,19 +5247,19 @@ msgstr "" "tracks — пока не реализовано.\n" "tracking — пока не реализовано.\n" -#: lib/common.php:131 +#: lib/common.php:136 msgid "No configuration file found. " msgstr "Конфигурационный файл не найден. " -#: lib/common.php:132 +#: lib/common.php:137 msgid "I looked for configuration files in the following places: " msgstr "Конфигурационные файлы искались в следующих местах: " -#: lib/common.php:134 +#: lib/common.php:139 msgid "You may wish to run the installer to fix this." msgstr "Возможно, вы решите запустить установщик для исправления этого." -#: lib/common.php:135 +#: lib/common.php:140 msgid "Go to the installer." msgstr "Перейти к установщику" @@ -4749,6 +5275,14 @@ msgstr "Обновлено по IM" msgid "Updates by SMS" msgstr "Обновления по СМС" +#: lib/connectsettingsaction.php:120 +msgid "Connections" +msgstr "Соединения" + +#: lib/connectsettingsaction.php:121 +msgid "Authorized connected applications" +msgstr "Авторизованные соединённые приложения" + #: lib/dberroraction.php:60 msgid "Database error" msgstr "Ошибка базы данных" @@ -4935,15 +5469,15 @@ msgstr "МБ" msgid "kB" msgstr "КБ" -#: lib/jabber.php:202 +#: lib/jabber.php:220 #, php-format msgid "[%s]" msgstr "[%s]" -#: lib/jabber.php:385 -#, fuzzy, php-format +#: lib/jabber.php:400 +#, php-format msgid "Unknown inbox source %d." -msgstr "Неизвестный язык «%s»." +msgstr "Неизвестный источник входящих сообщений %d." #: lib/joinform.php:114 msgid "Join" @@ -5221,7 +5755,7 @@ msgstr "" "вовлечения других пользователей в разговор. Сообщения, получаемые от других " "людей, видите только вы." -#: lib/mailbox.php:227 lib/noticelist.php:477 +#: lib/mailbox.php:227 lib/noticelist.php:482 msgid "from" msgstr "от " @@ -5335,62 +5869,59 @@ msgid "Share my location" msgstr "Поделиться своим местоположением." #: lib/noticeform.php:215 -#, fuzzy msgid "Do not share my location" -msgstr "Не публиковать своё местоположение." +msgstr "Не публиковать своё местоположение" #: lib/noticeform.php:216 -msgid "Hide this info" -msgstr "Скрыть эту информацию" - -#: lib/noticeform.php:217 msgid "" "Sorry, retrieving your geo location is taking longer than expected, please " "try again later" msgstr "" +"К сожалению, получение информации о вашем местонахождении заняло больше " +"времени, чем ожидалось; повторите попытку позже" -#: lib/noticelist.php:428 +#: lib/noticelist.php:429 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\" %4$s %5$u°%6$u'%7$u\" %8$s" -#: lib/noticelist.php:429 +#: lib/noticelist.php:430 msgid "N" msgstr "с. ш." -#: lib/noticelist.php:429 +#: lib/noticelist.php:430 msgid "S" msgstr "ю. ш." -#: lib/noticelist.php:430 +#: lib/noticelist.php:431 msgid "E" msgstr "в. д." -#: lib/noticelist.php:430 +#: lib/noticelist.php:431 msgid "W" msgstr "з. д." -#: lib/noticelist.php:436 +#: lib/noticelist.php:438 msgid "at" msgstr "на" -#: lib/noticelist.php:531 +#: lib/noticelist.php:558 msgid "in context" msgstr "в контексте" -#: lib/noticelist.php:556 +#: lib/noticelist.php:583 msgid "Repeated by" msgstr "Повторено" -#: lib/noticelist.php:585 +#: lib/noticelist.php:610 msgid "Reply to this notice" msgstr "Ответить на эту запись" -#: lib/noticelist.php:586 +#: lib/noticelist.php:611 msgid "Reply" msgstr "Ответить" -#: lib/noticelist.php:628 +#: lib/noticelist.php:655 msgid "Notice repeated" msgstr "Запись повторена" @@ -5422,11 +5953,7 @@ msgstr "Ошибка вставки удалённого профиля" msgid "Duplicate notice" msgstr "Дублировать запись" -#: lib/oauthstore.php:466 lib/subs.php:48 -msgid "You have been banned from subscribing." -msgstr "Вы заблокированы от подписки." - -#: lib/oauthstore.php:491 +#: lib/oauthstore.php:490 msgid "Couldn't insert new subscription." msgstr "Не удаётся вставить новую подписку." @@ -5442,19 +5969,19 @@ msgstr "Ответы" msgid "Favorites" msgstr "Любимое" -#: lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "Входящие" -#: lib/personalgroupnav.php:125 +#: lib/personalgroupnav.php:126 msgid "Your incoming messages" msgstr "Ваши входящие сообщения" -#: lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 msgid "Outbox" msgstr "Исходящие" -#: lib/personalgroupnav.php:130 +#: lib/personalgroupnav.php:131 msgid "Your sent messages" msgstr "Ваши исходящие сообщения" @@ -5531,6 +6058,10 @@ msgstr "Повторить эту запись?" msgid "Repeat this notice" msgstr "Повторить эту запись" +#: lib/router.php:665 +msgid "No single user defined for single-user mode." +msgstr "Ни задан пользователь для однопользовательского режима." + #: lib/sandboxform.php:67 msgid "Sandbox" msgstr "Песочница" @@ -5598,34 +6129,6 @@ msgstr "Люди подписанные на %s" msgid "Groups %s is a member of" msgstr "Группы, в которых состоит %s" -#: lib/subs.php:52 -msgid "Already subscribed!" -msgstr "Уже подписаны!" - -#: lib/subs.php:56 -msgid "User has blocked you." -msgstr "Пользователь заблокировал Вас." - -#: lib/subs.php:63 -msgid "Could not subscribe." -msgstr "Подписка неудачна." - -#: lib/subs.php:82 -msgid "Could not subscribe other to you." -msgstr "Не удаётся подписать других на вашу ленту." - -#: lib/subs.php:137 -msgid "Not subscribed!" -msgstr "Не подписаны!" - -#: lib/subs.php:142 -msgid "Couldn't delete self-subscription." -msgstr "Невозможно удалить самоподписку." - -#: lib/subs.php:158 -msgid "Couldn't delete subscription." -msgstr "Не удаётся удалить подписку." - #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -5676,67 +6179,67 @@ msgstr "Изменить аватару" msgid "User actions" msgstr "Действия пользователя" -#: lib/userprofile.php:248 +#: lib/userprofile.php:251 msgid "Edit profile settings" msgstr "Изменение настроек профиля" -#: lib/userprofile.php:249 +#: lib/userprofile.php:252 msgid "Edit" msgstr "Редактировать" -#: lib/userprofile.php:272 +#: lib/userprofile.php:275 msgid "Send a direct message to this user" msgstr "Послать приватное сообщение этому пользователю." -#: lib/userprofile.php:273 +#: lib/userprofile.php:276 msgid "Message" msgstr "Сообщение" -#: lib/userprofile.php:311 +#: lib/userprofile.php:314 msgid "Moderate" msgstr "Модерировать" -#: lib/util.php:877 +#: lib/util.php:952 msgid "a few seconds ago" msgstr "пару секунд назад" -#: lib/util.php:879 +#: lib/util.php:954 msgid "about a minute ago" msgstr "около минуты назад" -#: lib/util.php:881 +#: lib/util.php:956 #, php-format msgid "about %d minutes ago" msgstr "около %d минут(ы) назад" -#: lib/util.php:883 +#: lib/util.php:958 msgid "about an hour ago" msgstr "около часа назад" -#: lib/util.php:885 +#: lib/util.php:960 #, php-format msgid "about %d hours ago" msgstr "около %d часа(ов) назад" -#: lib/util.php:887 +#: lib/util.php:962 msgid "about a day ago" msgstr "около дня назад" -#: lib/util.php:889 +#: lib/util.php:964 #, php-format msgid "about %d days ago" msgstr "около %d дня(ей) назад" -#: lib/util.php:891 +#: lib/util.php:966 msgid "about a month ago" msgstr "около месяца назад" -#: lib/util.php:893 +#: lib/util.php:968 #, php-format msgid "about %d months ago" msgstr "около %d месяца(ев) назад" -#: lib/util.php:895 +#: lib/util.php:970 msgid "about a year ago" msgstr "около года назад" @@ -5752,7 +6255,7 @@ msgstr "" "%s не является допустимым цветом! Используйте 3 или 6 шестнадцатеричных " "символов." -#: scripts/xmppdaemon.php:301 +#: lib/xmppmanager.php:402 #, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "" diff --git a/locale/statusnet.po b/locale/statusnet.po index fb8fd0ad6b..cf44e2d3c9 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: 2010-01-13 22:04+0000\n" +"POT-Creation-Date: 2010-02-24 23:49+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,6 +17,58 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" +#: actions/accessadminpanel.php:54 lib/adminpanelaction.php:326 +msgid "Access" +msgstr "" + +#: actions/accessadminpanel.php:65 +msgid "Site access settings" +msgstr "" + +#: actions/accessadminpanel.php:158 +msgid "Registration" +msgstr "" + +#: actions/accessadminpanel.php:161 +msgid "Private" +msgstr "" + +#: actions/accessadminpanel.php:163 +msgid "Prohibit anonymous users (not logged in) from viewing site?" +msgstr "" + +#: actions/accessadminpanel.php:167 +msgid "Invite only" +msgstr "" + +#: actions/accessadminpanel.php:169 +msgid "Make registration invitation only." +msgstr "" + +#: actions/accessadminpanel.php:173 +msgid "Closed" +msgstr "" + +#: actions/accessadminpanel.php:175 +msgid "Disable new registrations." +msgstr "" + +#: actions/accessadminpanel.php:189 actions/designadminpanel.php:586 +#: actions/emailsettings.php:195 actions/imsettings.php:163 +#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 +#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 +#: actions/siteadminpanel.php:336 actions/smssettings.php:181 +#: actions/subscriptions.php:208 actions/tagother.php:154 +#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 lib/designsettings.php:256 +#: lib/groupeditform.php:202 +msgid "Save" +msgstr "" + +#: actions/accessadminpanel.php:189 +msgid "Save access settings" +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" @@ -31,25 +83,29 @@ msgstr "" #: 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:144 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apistatusesupdate.php:148 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:78 #: actions/apitimelinehome.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/otp.php:76 #: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154 -#: actions/replies.php:73 actions/repliesrss.php:38 +#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 #: 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:302 lib/command.php:355 #: lib/command.php:401 lib/command.php:462 lib/command.php:518 #: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 -#: lib/subs.php:34 lib/subs.php:125 msgid "No such user." msgstr "" +#: actions/all.php:84 +#, php-format +msgid "%1$s and friends, page %2$d" +msgstr "" + #: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 -#: actions/apitimelinefriends.php:115 actions/apitimelinehome.php:115 +#: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" @@ -90,7 +146,7 @@ msgid "" "his or her attention](%%%%action.newnotice%%%%?status_textarea=%3$s)." msgstr "" -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211 #, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " @@ -101,8 +157,8 @@ msgstr "" msgid "You and friends" msgstr "" -#: actions/allrss.php:119 actions/apitimelinefriends.php:122 -#: actions/apitimelinehome.php:122 +#: actions/allrss.php:119 actions/apitimelinefriends.php:119 +#: actions/apitimelinehome.php:120 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "" @@ -112,23 +168,23 @@ msgstr "" #: actions/apiaccountupdateprofile.php:97 #: actions/apiaccountupdateprofilebackgroundimage.php:94 #: actions/apiaccountupdateprofilecolors.php:118 -#: 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:136 actions/apigroupismember.php:114 -#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 -#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 -#: actions/apigroupmembership.php:106 actions/apigroupshow.php:105 -#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 -#: actions/apistatusesretweets.php:112 actions/apistatusesshow.php:108 -#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93 -#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:146 -#: actions/apitimelinefriends.php:156 actions/apitimelinegroup.php:150 -#: actions/apitimelinehome.php:156 actions/apitimelinementions.php:151 -#: actions/apitimelinepublic.php:131 actions/apitimelineretweetedbyme.php:122 +#: actions/apiaccountverifycredentials.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:128 actions/apigroupcreate.php:136 +#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 +#: actions/apigroupleave.php:141 actions/apigrouplist.php:132 +#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 +#: actions/apigroupshow.php:115 actions/apihelptest.php:88 +#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 +#: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 #: actions/apitimelineretweetedtome.php:121 -#: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141 -#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 +#: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 +#: actions/apitimelineuser.php:207 actions/apiusershow.php:101 msgid "API method not found." msgstr "" @@ -142,7 +198,7 @@ msgstr "" #: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 #: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 #: actions/apigroupleave.php:91 actions/apistatusesretweet.php:65 -#: actions/apistatusesupdate.php:114 +#: actions/apistatusesupdate.php:118 msgid "This method requires a POST." msgstr "" @@ -171,8 +227,9 @@ msgstr "" #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:97 -#: actions/apistatusesupdate.php:127 actions/avatarsettings.php:257 -#: actions/designadminpanel.php:122 actions/newnotice.php:94 +#: actions/apistatusesupdate.php:131 actions/avatarsettings.php:257 +#: actions/designadminpanel.php:122 actions/editapplication.php:118 +#: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 #, php-format msgid "" @@ -286,11 +343,11 @@ msgstr "" msgid "Two user ids or screen_names must be supplied." msgstr "" -#: actions/apifriendshipsshow.php:135 +#: actions/apifriendshipsshow.php:134 msgid "Could not determine source user." msgstr "" -#: actions/apifriendshipsshow.php:143 +#: actions/apifriendshipsshow.php:142 msgid "Could not find target user." msgstr "" @@ -312,7 +369,8 @@ msgstr "" msgid "Not a valid nickname." msgstr "" -#: actions/apigroupcreate.php:196 actions/editgroup.php:195 +#: actions/apigroupcreate.php:196 actions/editapplication.php:215 +#: actions/editgroup.php:195 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:217 msgid "Homepage is not a valid URL." @@ -324,7 +382,8 @@ msgstr "" msgid "Full name is too long (max 255 chars)." msgstr "" -#: actions/apigroupcreate.php:213 +#: actions/apigroupcreate.php:213 actions/editapplication.php:190 +#: actions/newapplication.php:172 #, php-format msgid "Description is too long (max %d chars)." msgstr "" @@ -360,7 +419,7 @@ msgstr "" #: actions/apigroupismember.php:95 actions/apigroupjoin.php:104 #: actions/apigroupleave.php:104 actions/apigroupmembership.php:91 -#: actions/apigroupshow.php:90 actions/apitimelinegroup.php:91 +#: actions/apigroupshow.php:82 actions/apitimelinegroup.php:91 msgid "Group not found!" msgstr "" @@ -401,6 +460,110 @@ msgstr "" msgid "groups on %s" msgstr "" +#: actions/apioauthauthorize.php:101 +msgid "No oauth_token parameter provided." +msgstr "" + +#: actions/apioauthauthorize.php:106 +msgid "Invalid token." +msgstr "" + +#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 +#: actions/deletenotice.php:157 actions/disfavor.php:74 +#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54 +#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupunblock.php:66 actions/imsettings.php:206 +#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 +#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 +#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135 +#: actions/othersettings.php:145 actions/passwordsettings.php:138 +#: actions/profilesettings.php:194 actions/recoverpassword.php:337 +#: actions/register.php:165 actions/remotesubscribe.php:77 +#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 +#: actions/subscribe.php:86 actions/tagother.php:166 +#: 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/apioauthauthorize.php:135 +msgid "Invalid nickname / password!" +msgstr "" + +#: actions/apioauthauthorize.php:159 +msgid "Database error deleting OAuth application user." +msgstr "" + +#: actions/apioauthauthorize.php:185 +msgid "Database error inserting OAuth application user." +msgstr "" + +#: actions/apioauthauthorize.php:214 +#, php-format +msgid "" +"The request token %s has been authorized. Please exchange it for an access " +"token." +msgstr "" + +#: actions/apioauthauthorize.php:227 +#, php-format +msgid "The request token %s has been denied and revoked." +msgstr "" + +#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 +#: actions/designadminpanel.php:103 actions/editapplication.php:139 +#: actions/emailsettings.php:256 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/newapplication.php:121 +#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 +#: actions/smssettings.php:248 lib/designsettings.php:304 +msgid "Unexpected form submission." +msgstr "" + +#: actions/apioauthauthorize.php:259 +msgid "An application would like to connect to your account" +msgstr "" + +#: actions/apioauthauthorize.php:276 +msgid "Allow or deny access" +msgstr "" + +#: actions/apioauthauthorize.php:292 +#, php-format +msgid "" +"The application %1$s by %2$s would like " +"the ability to %3$s your %4$s account data. You should only " +"give access to your %4$s account to third parties you trust." +msgstr "" + +#: actions/apioauthauthorize.php:310 lib/action.php:441 +msgid "Account" +msgstr "" + +#: actions/apioauthauthorize.php:313 actions/login.php:230 +#: actions/profilesettings.php:106 actions/register.php:424 +#: actions/showgroup.php:236 actions/tagother.php:94 +#: actions/userauthorization.php:145 lib/groupeditform.php:152 +#: lib/userprofile.php:131 +msgid "Nickname" +msgstr "" + +#: actions/apioauthauthorize.php:316 actions/login.php:233 +#: actions/register.php:429 lib/accountsettingsaction.php:116 +msgid "Password" +msgstr "" + +#: actions/apioauthauthorize.php:328 +msgid "Deny" +msgstr "" + +#: actions/apioauthauthorize.php:334 +msgid "Allow" +msgstr "" + +#: actions/apioauthauthorize.php:351 +msgid "Allow or deny access to your account information." +msgstr "" + #: actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." msgstr "" @@ -430,17 +593,17 @@ msgstr "" msgid "No status with that ID found." msgstr "" -#: actions/apistatusesupdate.php:157 actions/newnotice.php:155 +#: actions/apistatusesupdate.php:161 actions/newnotice.php:155 #: lib/mailhandler.php:60 #, php-format msgid "That's too long. Max notice size is %d chars." msgstr "" -#: actions/apistatusesupdate.php:198 +#: actions/apistatusesupdate.php:202 msgid "Not found" msgstr "" -#: actions/apistatusesupdate.php:221 actions/newnotice.php:178 +#: actions/apistatusesupdate.php:225 actions/newnotice.php:178 #, php-format msgid "Max notice size is %d chars, including attachment URL." msgstr "" @@ -454,7 +617,7 @@ msgstr "" msgid "%1$s / Favorites from %2$s" msgstr "" -#: actions/apitimelinefavorites.php:120 +#: actions/apitimelinefavorites.php:117 #, php-format msgid "%1$s updates favorited by %2$s / %2$s." msgstr "" @@ -465,7 +628,7 @@ msgstr "" msgid "%s timeline" msgstr "" -#: actions/apitimelinegroup.php:117 actions/apitimelineuser.php:126 +#: actions/apitimelinegroup.php:114 actions/apitimelineuser.php:126 #: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" @@ -481,27 +644,22 @@ msgstr "" msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "" -#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "" -#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "" -#: actions/apitimelineretweetedbyme.php:112 -#, php-format -msgid "Repeated by %s" -msgstr "" - #: actions/apitimelineretweetedtome.php:111 #, php-format msgid "Repeated to %s" msgstr "" -#: actions/apitimelineretweetsofme.php:112 +#: actions/apitimelineretweetsofme.php:114 #, php-format msgid "Repeats of %s" msgstr "" @@ -511,7 +669,7 @@ msgstr "" msgid "Notices tagged with %s" msgstr "" -#: actions/apitimelinetag.php:108 actions/tagrss.php:64 +#: actions/apitimelinetag.php:104 actions/tagrss.php:64 #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "" @@ -571,8 +729,8 @@ msgstr "" msgid "Preview" msgstr "" -#: actions/avatarsettings.php:149 lib/deleteuserform.php:66 -#: lib/noticelist.php:611 +#: actions/avatarsettings.php:149 actions/showapplication.php:252 +#: lib/deleteuserform.php:66 lib/noticelist.php:637 msgid "Delete" msgstr "" @@ -584,29 +742,6 @@ msgstr "" msgid "Crop" msgstr "" -#: actions/avatarsettings.php:268 actions/deletenotice.php:157 -#: actions/disfavor.php:74 actions/emailsettings.php:238 actions/favor.php:75 -#: actions/geocode.php:50 actions/groupblock.php:66 actions/grouplogo.php:309 -#: actions/groupunblock.php:66 actions/imsettings.php:206 -#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 -#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 -#: actions/othersettings.php:145 actions/passwordsettings.php:138 -#: actions/profilesettings.php:194 actions/recoverpassword.php:337 -#: actions/register.php:165 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 -#: actions/subscribe.php:46 actions/tagother.php:166 -#: 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/avatarsettings.php:281 actions/designadminpanel.php:103 -#: actions/emailsettings.php:256 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/avatarsettings.php:328 msgid "Pick a square area of the image to be your avatar" msgstr "" @@ -642,8 +777,9 @@ msgid "" "will not be notified of any @-replies from them." msgstr "" -#: actions/block.php:143 actions/deletenotice.php:145 -#: actions/deleteuser.php:147 actions/groupblock.php:178 +#: actions/block.php:143 actions/deleteapplication.php:153 +#: actions/deletenotice.php:145 actions/deleteuser.php:147 +#: actions/groupblock.php:178 msgid "No" msgstr "" @@ -651,13 +787,13 @@ msgstr "" msgid "Do not block this user" msgstr "" -#: actions/block.php:144 actions/deletenotice.php:146 -#: actions/deleteuser.php:148 actions/groupblock.php:179 -#: lib/repeatform.php:132 +#: actions/block.php:144 actions/deleteapplication.php:158 +#: actions/deletenotice.php:146 actions/deleteuser.php:148 +#: actions/groupblock.php:179 lib/repeatform.php:132 msgid "Yes" msgstr "" -#: actions/block.php:144 actions/groupmembers.php:346 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80 msgid "Block this user" msgstr "" @@ -740,7 +876,7 @@ msgid "Couldn't delete email confirmation." msgstr "" #: actions/confirmaddress.php:144 -msgid "Confirm Address" +msgid "Confirm address" msgstr "" #: actions/confirmaddress.php:159 @@ -757,10 +893,48 @@ msgstr "" msgid "Notices" msgstr "" +#: actions/deleteapplication.php:63 +msgid "You must be logged in to delete an application." +msgstr "" + +#: actions/deleteapplication.php:71 +msgid "Application not found." +msgstr "" + +#: actions/deleteapplication.php:78 actions/editapplication.php:77 +#: actions/showapplication.php:94 +msgid "You are not the owner of this application." +msgstr "" + +#: actions/deleteapplication.php:102 actions/editapplication.php:127 +#: actions/newapplication.php:110 actions/showapplication.php:118 +#: lib/action.php:1197 +msgid "There was a problem with your session token." +msgstr "" + +#: actions/deleteapplication.php:123 actions/deleteapplication.php:147 +msgid "Delete application" +msgstr "" + +#: actions/deleteapplication.php:149 +msgid "" +"Are you sure you want to delete this application? This will clear all data " +"about the application from the database, including all existing user " +"connections." +msgstr "" + +#: actions/deleteapplication.php:156 +msgid "Do not delete this application" +msgstr "" + +#: actions/deleteapplication.php:160 +msgid "Delete this application" +msgstr "" + #: 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/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 #: lib/adminpanelaction.php:72 lib/profileformaction.php:63 #: lib/settingsaction.php:72 @@ -789,7 +963,7 @@ msgstr "" msgid "Do not delete this notice" msgstr "" -#: actions/deletenotice.php:146 lib/noticelist.php:611 +#: actions/deletenotice.php:146 lib/noticelist.php:637 msgid "Delete this notice" msgstr "" @@ -917,16 +1091,6 @@ msgstr "" msgid "Reset back to default" msgstr "" -#: actions/designadminpanel.php:586 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 -#: actions/pathsadminpanel.php:324 actions/profilesettings.php:174 -#: actions/siteadminpanel.php:388 actions/smssettings.php:181 -#: actions/subscriptions.php:203 actions/tagother.php:154 -#: actions/useradminpanel.php:313 lib/designsettings.php:256 -#: lib/groupeditform.php:202 -msgid "Save" -msgstr "" - #: actions/designadminpanel.php:587 lib/designsettings.php:257 msgid "Save design" msgstr "" @@ -939,8 +1103,74 @@ msgstr "" msgid "Add to favorites" msgstr "" -#: actions/doc.php:69 -msgid "No such document." +#: actions/doc.php:158 +#, php-format +msgid "No such document \"%s\"" +msgstr "" + +#: actions/editapplication.php:54 +msgid "Edit Application" +msgstr "" + +#: actions/editapplication.php:66 +msgid "You must be logged in to edit an application." +msgstr "" + +#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:166 +#: actions/showapplication.php:87 +msgid "No such application." +msgstr "" + +#: actions/editapplication.php:161 +msgid "Use this form to edit your application." +msgstr "" + +#: actions/editapplication.php:177 actions/newapplication.php:159 +msgid "Name is required." +msgstr "" + +#: actions/editapplication.php:180 actions/newapplication.php:165 +msgid "Name is too long (max 255 chars)." +msgstr "" + +#: actions/editapplication.php:183 actions/newapplication.php:162 +msgid "Name already in use. Try another one." +msgstr "" + +#: actions/editapplication.php:186 actions/newapplication.php:168 +msgid "Description is required." +msgstr "" + +#: actions/editapplication.php:194 +msgid "Source URL is too long." +msgstr "" + +#: actions/editapplication.php:200 actions/newapplication.php:185 +msgid "Source URL is not valid." +msgstr "" + +#: actions/editapplication.php:203 actions/newapplication.php:188 +msgid "Organization is required." +msgstr "" + +#: actions/editapplication.php:206 actions/newapplication.php:191 +msgid "Organization is too long (max 255 chars)." +msgstr "" + +#: actions/editapplication.php:209 actions/newapplication.php:194 +msgid "Organization homepage is required." +msgstr "" + +#: actions/editapplication.php:218 actions/newapplication.php:206 +msgid "Callback is too long." +msgstr "" + +#: actions/editapplication.php:225 actions/newapplication.php:215 +msgid "Callback URL is not valid." +msgstr "" + +#: actions/editapplication.php:258 +msgid "Could not update application." msgstr "" #: actions/editgroup.php:56 @@ -970,7 +1200,7 @@ msgstr "" msgid "Could not update group." msgstr "" -#: actions/editgroup.php:259 classes/User_group.php:390 +#: actions/editgroup.php:259 classes/User_group.php:433 msgid "Could not create aliases." msgstr "" @@ -1009,7 +1239,8 @@ msgid "" msgstr "" #: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 +#: actions/smssettings.php:126 lib/applicationeditform.php:331 +#: lib/applicationeditform.php:332 msgid "Cancel" msgstr "" @@ -1089,7 +1320,7 @@ msgid "Cannot normalize that email address" msgstr "" #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:157 +#: actions/siteadminpanel.php:143 msgid "Not a valid email address." msgstr "" @@ -1101,7 +1332,7 @@ msgstr "" msgid "That email address already belongs to another user." msgstr "" -#: actions/emailsettings.php:353 actions/imsettings.php:317 +#: actions/emailsettings.php:353 actions/imsettings.php:319 #: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." msgstr "" @@ -1160,7 +1391,7 @@ msgstr "" msgid "Disfavor favorite" msgstr "" -#: actions/favorited.php:65 lib/popularnoticesection.php:88 +#: actions/favorited.php:65 lib/popularnoticesection.php:91 #: lib/publicgroupnav.php:93 msgid "Popular notices" msgstr "" @@ -1302,7 +1533,7 @@ msgstr "" msgid "User is not a member of group." msgstr "" -#: actions/groupblock.php:136 actions/groupmembers.php:314 +#: actions/groupblock.php:136 actions/groupmembers.php:316 msgid "Block user from group" msgstr "" @@ -1393,23 +1624,23 @@ msgstr "" msgid "A list of the users in this group." msgstr "" -#: actions/groupmembers.php:175 lib/action.php:442 lib/groupnav.php:107 +#: actions/groupmembers.php:175 lib/action.php:448 lib/groupnav.php:107 msgid "Admin" msgstr "" -#: actions/groupmembers.php:346 lib/blockform.php:69 +#: actions/groupmembers.php:348 lib/blockform.php:69 msgid "Block" msgstr "" -#: actions/groupmembers.php:441 +#: actions/groupmembers.php:443 msgid "Make user an admin of the group" msgstr "" -#: actions/groupmembers.php:473 +#: actions/groupmembers.php:475 msgid "Make Admin" msgstr "" -#: actions/groupmembers.php:473 +#: actions/groupmembers.php:475 msgid "Make this user an admin" msgstr "" @@ -1568,6 +1799,11 @@ msgstr "" msgid "That is not your Jabber ID." msgstr "" +#: actions/inbox.php:59 +#, php-format +msgid "Inbox for %1$s - page %2$d" +msgstr "" + #: actions/inbox.php:62 #, php-format msgid "Inbox for %s" @@ -1644,7 +1880,7 @@ msgstr "" msgid "Optionally add a personal message to the invitation." msgstr "" -#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:237 +#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:236 msgid "Send" msgstr "" @@ -1718,7 +1954,7 @@ msgstr "" msgid "Error setting user. You are probably not authorized." msgstr "" -#: actions/login.php:188 actions/login.php:241 lib/action.php:460 +#: actions/login.php:188 actions/login.php:241 lib/action.php:466 #: lib/logingroupnav.php:79 msgid "Login" msgstr "" @@ -1727,17 +1963,6 @@ msgstr "" msgid "Login to site" msgstr "" -#: actions/login.php:230 actions/profilesettings.php:106 -#: actions/register.php:424 actions/showgroup.php:236 actions/tagother.php:94 -#: lib/groupeditform.php:152 lib/userprofile.php:131 -msgid "Nickname" -msgstr "" - -#: actions/login.php:233 actions/register.php:429 -#: lib/accountsettingsaction.php:116 -msgid "Password" -msgstr "" - #: actions/login.php:236 actions/register.php:478 msgid "Remember me" msgstr "" @@ -1763,21 +1988,21 @@ msgid "" "(%%action.register%%) a new account." msgstr "" -#: actions/makeadmin.php:91 +#: actions/makeadmin.php:92 msgid "Only an admin can make another user an admin." msgstr "" -#: actions/makeadmin.php:95 +#: actions/makeadmin.php:96 #, php-format msgid "%1$s is already an admin for group \"%2$s\"." msgstr "" -#: actions/makeadmin.php:132 +#: actions/makeadmin.php:133 #, php-format msgid "Can't get membership record for %1$s in group %2$s." msgstr "" -#: actions/makeadmin.php:145 +#: actions/makeadmin.php:146 #, php-format msgid "Can't make %1$s an admin for group %2$s." msgstr "" @@ -1786,6 +2011,26 @@ msgstr "" msgid "No current status" msgstr "" +#: actions/newapplication.php:52 +msgid "New Application" +msgstr "" + +#: actions/newapplication.php:64 +msgid "You must be logged in to register an application." +msgstr "" + +#: actions/newapplication.php:143 +msgid "Use this form to register a new application." +msgstr "" + +#: actions/newapplication.php:176 +msgid "Source URL is required." +msgstr "" + +#: actions/newapplication.php:258 actions/newapplication.php:267 +msgid "Could not create application." +msgstr "" + #: actions/newgroup.php:53 msgid "New group" msgstr "" @@ -1890,6 +2135,48 @@ msgstr "" msgid "Nudge sent!" msgstr "" +#: actions/oauthappssettings.php:59 +msgid "You must be logged in to list your applications." +msgstr "" + +#: actions/oauthappssettings.php:74 +msgid "OAuth applications" +msgstr "" + +#: actions/oauthappssettings.php:85 +msgid "Applications you have registered" +msgstr "" + +#: actions/oauthappssettings.php:135 +#, php-format +msgid "You have not registered any applications yet." +msgstr "" + +#: actions/oauthconnectionssettings.php:72 +msgid "Connected applications" +msgstr "" + +#: actions/oauthconnectionssettings.php:83 +msgid "You have allowed the following applications to access you account." +msgstr "" + +#: actions/oauthconnectionssettings.php:175 +msgid "You are not a user of that application." +msgstr "" + +#: actions/oauthconnectionssettings.php:186 +msgid "Unable to revoke access for app: " +msgstr "" + +#: actions/oauthconnectionssettings.php:198 +#, php-format +msgid "You have not authorized any applications to use your account." +msgstr "" + +#: actions/oauthconnectionssettings.php:211 +msgid "Developers can edit the registration settings for their applications " +msgstr "" + #: actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" msgstr "" @@ -1907,8 +2194,8 @@ msgstr "" msgid "Only " msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1033 -#: lib/api.php:1061 lib/api.php:1171 +#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 +#: lib/api.php:1068 lib/api.php:1177 msgid "Not a supported data format." msgstr "" @@ -1921,7 +2208,7 @@ msgid "Notice Search" msgstr "" #: actions/othersettings.php:60 -msgid "Other Settings" +msgid "Other settings" msgstr "" #: actions/othersettings.php:71 @@ -1972,6 +2259,11 @@ msgstr "" msgid "Login token expired." msgstr "" +#: actions/outbox.php:58 +#, php-format +msgid "Outbox for %1$s - page %2$d" +msgstr "" + #: actions/outbox.php:61 #, php-format msgid "Outbox for %s" @@ -2042,7 +2334,7 @@ msgstr "" msgid "Password saved." msgstr "" -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:326 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:331 msgid "Paths" msgstr "" @@ -2050,132 +2342,148 @@ msgstr "" msgid "Path and server settings for this StatusNet site." msgstr "" -#: actions/pathsadminpanel.php:140 +#: actions/pathsadminpanel.php:157 #, php-format msgid "Theme directory not readable: %s" msgstr "" -#: actions/pathsadminpanel.php:146 +#: actions/pathsadminpanel.php:163 #, php-format msgid "Avatar directory not writable: %s" msgstr "" -#: actions/pathsadminpanel.php:152 +#: actions/pathsadminpanel.php:169 #, php-format msgid "Background directory not writable: %s" msgstr "" -#: actions/pathsadminpanel.php:160 +#: actions/pathsadminpanel.php:177 #, php-format msgid "Locales directory not readable: %s" msgstr "" -#: actions/pathsadminpanel.php:166 +#: actions/pathsadminpanel.php:183 msgid "Invalid SSL server. The maximum length is 255 characters." msgstr "" -#: actions/pathsadminpanel.php:217 actions/siteadminpanel.php:58 +#: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58 #: lib/adminpanelaction.php:311 msgid "Site" msgstr "" -#: actions/pathsadminpanel.php:221 +#: actions/pathsadminpanel.php:238 +msgid "Server" +msgstr "" + +#: actions/pathsadminpanel.php:238 +msgid "Site's server hostname." +msgstr "" + +#: actions/pathsadminpanel.php:242 msgid "Path" msgstr "" -#: actions/pathsadminpanel.php:221 +#: actions/pathsadminpanel.php:242 msgid "Site path" msgstr "" -#: actions/pathsadminpanel.php:225 +#: actions/pathsadminpanel.php:246 msgid "Path to locales" msgstr "" -#: actions/pathsadminpanel.php:225 +#: actions/pathsadminpanel.php:246 msgid "Directory path to locales" msgstr "" -#: actions/pathsadminpanel.php:232 -msgid "Theme" -msgstr "" - -#: actions/pathsadminpanel.php:237 -msgid "Theme server" -msgstr "" - -#: actions/pathsadminpanel.php:241 -msgid "Theme path" -msgstr "" - -#: actions/pathsadminpanel.php:245 -msgid "Theme directory" +#: actions/pathsadminpanel.php:250 +msgid "Fancy URLs" msgstr "" #: actions/pathsadminpanel.php:252 +msgid "Use fancy (more readable and memorable) URLs?" +msgstr "" + +#: actions/pathsadminpanel.php:259 +msgid "Theme" +msgstr "" + +#: actions/pathsadminpanel.php:264 +msgid "Theme server" +msgstr "" + +#: actions/pathsadminpanel.php:268 +msgid "Theme path" +msgstr "" + +#: actions/pathsadminpanel.php:272 +msgid "Theme directory" +msgstr "" + +#: actions/pathsadminpanel.php:279 msgid "Avatars" msgstr "" -#: actions/pathsadminpanel.php:257 +#: actions/pathsadminpanel.php:284 msgid "Avatar server" msgstr "" -#: actions/pathsadminpanel.php:261 +#: actions/pathsadminpanel.php:288 msgid "Avatar path" msgstr "" -#: actions/pathsadminpanel.php:265 +#: actions/pathsadminpanel.php:292 msgid "Avatar directory" msgstr "" -#: actions/pathsadminpanel.php:274 +#: actions/pathsadminpanel.php:301 msgid "Backgrounds" msgstr "" -#: actions/pathsadminpanel.php:278 +#: actions/pathsadminpanel.php:305 msgid "Background server" msgstr "" -#: actions/pathsadminpanel.php:282 +#: actions/pathsadminpanel.php:309 msgid "Background path" msgstr "" -#: actions/pathsadminpanel.php:286 +#: actions/pathsadminpanel.php:313 msgid "Background directory" msgstr "" -#: actions/pathsadminpanel.php:293 +#: actions/pathsadminpanel.php:320 msgid "SSL" msgstr "" -#: actions/pathsadminpanel.php:296 actions/siteadminpanel.php:346 +#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 msgid "Never" msgstr "" -#: actions/pathsadminpanel.php:297 +#: actions/pathsadminpanel.php:324 msgid "Sometimes" msgstr "" -#: actions/pathsadminpanel.php:298 +#: actions/pathsadminpanel.php:325 msgid "Always" msgstr "" -#: actions/pathsadminpanel.php:302 +#: actions/pathsadminpanel.php:329 msgid "Use SSL" msgstr "" -#: actions/pathsadminpanel.php:303 +#: actions/pathsadminpanel.php:330 msgid "When to use SSL" msgstr "" -#: actions/pathsadminpanel.php:308 +#: actions/pathsadminpanel.php:335 msgid "SSL server" msgstr "" -#: actions/pathsadminpanel.php:309 +#: actions/pathsadminpanel.php:336 msgid "Server to direct SSL requests to" msgstr "" -#: actions/pathsadminpanel.php:325 +#: actions/pathsadminpanel.php:352 msgid "Save paths" msgstr "" @@ -2233,7 +2541,7 @@ msgid "Full name" msgstr "" #: actions/profilesettings.php:115 actions/register.php:453 -#: lib/groupeditform.php:161 +#: lib/applicationeditform.php:228 lib/groupeditform.php:161 msgid "Homepage" msgstr "" @@ -2256,7 +2564,7 @@ msgstr "" #: actions/profilesettings.php:132 actions/register.php:471 #: actions/showgroup.php:256 actions/tagother.php:112 -#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:164 msgid "Location" msgstr "" @@ -2280,7 +2588,7 @@ msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" -#: actions/profilesettings.php:151 actions/siteadminpanel.php:294 +#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 msgid "Language" msgstr "" @@ -2306,7 +2614,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "" -#: actions/profilesettings.php:235 actions/siteadminpanel.php:164 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 msgid "Timezone not selected." msgstr "" @@ -2319,23 +2627,23 @@ msgstr "" msgid "Invalid tag: \"%s\"" msgstr "" -#: actions/profilesettings.php:302 +#: actions/profilesettings.php:306 msgid "Couldn't update user for autosubscribe." msgstr "" -#: actions/profilesettings.php:359 +#: actions/profilesettings.php:363 msgid "Couldn't save location prefs." msgstr "" -#: actions/profilesettings.php:371 +#: actions/profilesettings.php:375 msgid "Couldn't save profile." msgstr "" -#: actions/profilesettings.php:379 +#: actions/profilesettings.php:383 msgid "Couldn't save tags." msgstr "" -#: actions/profilesettings.php:387 lib/adminpanelaction.php:137 +#: actions/profilesettings.php:391 lib/adminpanelaction.php:137 msgid "Settings saved." msgstr "" @@ -2357,36 +2665,36 @@ msgstr "" msgid "Public timeline" msgstr "" -#: actions/public.php:151 +#: actions/public.php:159 msgid "Public Stream Feed (RSS 1.0)" msgstr "" -#: actions/public.php:155 +#: actions/public.php:163 msgid "Public Stream Feed (RSS 2.0)" msgstr "" -#: actions/public.php:159 +#: actions/public.php:167 msgid "Public Stream Feed (Atom)" msgstr "" -#: actions/public.php:179 +#: actions/public.php:187 #, php-format msgid "" "This is the public timeline for %%site.name%% but no one has posted anything " "yet." msgstr "" -#: actions/public.php:182 +#: actions/public.php:190 msgid "Be the first to post!" msgstr "" -#: actions/public.php:186 +#: actions/public.php:194 #, php-format msgid "" "Why not [register an account](%%action.register%%) and be the first to post!" msgstr "" -#: actions/public.php:233 +#: actions/public.php:241 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2395,7 +2703,7 @@ msgid "" "friends, family, and colleagues! ([Read more](%%doc.help%%))" msgstr "" -#: actions/public.php:238 +#: actions/public.php:246 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2428,7 +2736,7 @@ msgid "" "one!" msgstr "" -#: actions/publictagcloud.php:131 +#: actions/publictagcloud.php:134 msgid "Tag cloud" msgstr "" @@ -2564,7 +2872,7 @@ msgstr "" msgid "Registration successful" msgstr "" -#: actions/register.php:114 actions/register.php:503 lib/action.php:457 +#: actions/register.php:114 actions/register.php:503 lib/action.php:463 #: lib/logingroupnav.php:85 msgid "Register" msgstr "" @@ -2604,7 +2912,7 @@ msgid "Same as password above. Required." msgstr "" #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:270 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 msgid "Email" msgstr "" @@ -2688,7 +2996,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:365 +#: lib/userprofile.php:368 msgid "Subscribe" msgstr "" @@ -2724,7 +3032,7 @@ msgstr "" msgid "You already repeated that notice." msgstr "" -#: actions/repeat.php:114 lib/noticelist.php:629 +#: actions/repeat.php:114 lib/noticelist.php:656 msgid "Repeated" msgstr "" @@ -2738,6 +3046,11 @@ msgstr "" msgid "Replies to %s" msgstr "" +#: actions/replies.php:127 +#, php-format +msgid "Replies to %1$s, page %2$d" +msgstr "" + #: actions/replies.php:144 #, php-format msgid "Replies feed for %s (RSS 1.0)" @@ -2779,6 +3092,10 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "" +#: actions/rsd.php:146 actions/version.php:157 +msgid "StatusNet" +msgstr "" + #: actions/sandbox.php:65 actions/unsandbox.php:65 msgid "You cannot sandbox users on this site." msgstr "" @@ -2787,6 +3104,119 @@ msgstr "" msgid "User is already sandboxed." msgstr "" +#: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:336 +msgid "Sessions" +msgstr "" + +#: actions/sessionsadminpanel.php:65 +msgid "Session settings for this StatusNet site." +msgstr "" + +#: actions/sessionsadminpanel.php:175 +msgid "Handle sessions" +msgstr "" + +#: actions/sessionsadminpanel.php:177 +msgid "Whether to handle sessions ourselves." +msgstr "" + +#: actions/sessionsadminpanel.php:181 +msgid "Session debugging" +msgstr "" + +#: actions/sessionsadminpanel.php:183 +msgid "Turn on debugging output for sessions." +msgstr "" + +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/useradminpanel.php:293 +msgid "Save site settings" +msgstr "" + +#: actions/showapplication.php:82 +msgid "You must be logged in to view an application." +msgstr "" + +#: actions/showapplication.php:157 +msgid "Application profile" +msgstr "" + +#: actions/showapplication.php:159 lib/applicationeditform.php:180 +msgid "Icon" +msgstr "" + +#: actions/showapplication.php:169 actions/version.php:195 +#: lib/applicationeditform.php:195 +msgid "Name" +msgstr "" + +#: actions/showapplication.php:178 lib/applicationeditform.php:222 +msgid "Organization" +msgstr "" + +#: actions/showapplication.php:187 actions/version.php:198 +#: lib/applicationeditform.php:209 lib/groupeditform.php:172 +msgid "Description" +msgstr "" + +#: actions/showapplication.php:192 actions/showgroup.php:429 +#: lib/profileaction.php:174 +msgid "Statistics" +msgstr "" + +#: actions/showapplication.php:203 +#, php-format +msgid "Created by %1$s - %2$s access by default - %3$d users" +msgstr "" + +#: actions/showapplication.php:213 +msgid "Application actions" +msgstr "" + +#: actions/showapplication.php:236 +msgid "Reset key & secret" +msgstr "" + +#: actions/showapplication.php:261 +msgid "Application info" +msgstr "" + +#: actions/showapplication.php:263 +msgid "Consumer key" +msgstr "" + +#: actions/showapplication.php:268 +msgid "Consumer secret" +msgstr "" + +#: actions/showapplication.php:273 +msgid "Request token URL" +msgstr "" + +#: actions/showapplication.php:278 +msgid "Access token URL" +msgstr "" + +#: actions/showapplication.php:283 +msgid "Authorize URL" +msgstr "" + +#: actions/showapplication.php:288 +msgid "" +"Note: We support HMAC-SHA1 signatures. We do not support the plaintext " +"signature method." +msgstr "" + +#: actions/showapplication.php:309 +msgid "Are you sure you want to reset your consumer key and secret?" +msgstr "" + +#: actions/showfavorites.php:79 +#, php-format +msgid "%1$s's favorite notices, page %2$d" +msgstr "" + #: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "" @@ -2836,17 +3266,22 @@ msgstr "" msgid "%s group" msgstr "" +#: actions/showgroup.php:84 +#, php-format +msgid "%1$s group, page %2$d" +msgstr "" + #: actions/showgroup.php:218 msgid "Group profile" msgstr "" #: actions/showgroup.php:263 actions/tagother.php:118 -#: actions/userauthorization.php:167 lib/userprofile.php:177 +#: actions/userauthorization.php:175 lib/userprofile.php:177 msgid "URL" msgstr "" #: actions/showgroup.php:274 actions/tagother.php:128 -#: actions/userauthorization.php:179 lib/userprofile.php:194 +#: actions/userauthorization.php:187 lib/userprofile.php:194 msgid "Note" msgstr "" @@ -2892,10 +3327,6 @@ msgstr "" msgid "All members" msgstr "" -#: actions/showgroup.php:429 lib/profileaction.php:174 -msgid "Statistics" -msgstr "" - #: actions/showgroup.php:432 msgid "Created" msgstr "" @@ -2950,6 +3381,11 @@ msgstr "" msgid " tagged %s" msgstr "" +#: actions/showstream.php:79 +#, php-format +msgid "%1$s, page %2$d" +msgstr "" + #: actions/showstream.php:122 #, php-format msgid "Notice feed for %1$s tagged %2$s (RSS 1.0)" @@ -2975,25 +3411,25 @@ msgstr "" msgid "FOAF for %s" msgstr "" -#: actions/showstream.php:191 +#: actions/showstream.php:200 #, php-format msgid "This is the timeline for %1$s but %2$s hasn't posted anything yet." msgstr "" -#: actions/showstream.php:196 +#: actions/showstream.php:205 msgid "" "Seen anything interesting recently? You haven't posted any notices yet, now " "would be a good time to start :)" msgstr "" -#: actions/showstream.php:198 +#: actions/showstream.php:207 #, php-format msgid "" "You can try to nudge %1$s or [post something to his or her attention](%%%%" "action.newnotice%%%%?status_textarea=%2$s)." msgstr "" -#: actions/showstream.php:234 +#: actions/showstream.php:243 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3002,7 +3438,7 @@ msgid "" "follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showstream.php:239 +#: actions/showstream.php:248 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3010,7 +3446,7 @@ msgid "" "[StatusNet](http://status.net/) tool. " msgstr "" -#: actions/showstream.php:313 +#: actions/showstream.php:305 #, php-format msgid "Repeat of %s" msgstr "" @@ -3027,195 +3463,143 @@ msgstr "" msgid "Basic settings for this StatusNet site." msgstr "" -#: actions/siteadminpanel.php:146 +#: actions/siteadminpanel.php:132 msgid "Site name must have non-zero length." msgstr "" -#: actions/siteadminpanel.php:154 +#: actions/siteadminpanel.php:140 msgid "You must have a valid contact email address." msgstr "" -#: actions/siteadminpanel.php:172 +#: actions/siteadminpanel.php:158 #, php-format msgid "Unknown language \"%s\"." msgstr "" -#: actions/siteadminpanel.php:179 +#: actions/siteadminpanel.php:165 msgid "Invalid snapshot report URL." msgstr "" -#: actions/siteadminpanel.php:185 +#: actions/siteadminpanel.php:171 msgid "Invalid snapshot run value." msgstr "" -#: actions/siteadminpanel.php:191 +#: actions/siteadminpanel.php:177 msgid "Snapshot frequency must be a number." msgstr "" -#: actions/siteadminpanel.php:197 +#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "" -#: actions/siteadminpanel.php:203 +#: actions/siteadminpanel.php:189 msgid "Dupe limit must 1 or more seconds." msgstr "" -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:239 msgid "General" msgstr "" -#: actions/siteadminpanel.php:256 +#: actions/siteadminpanel.php:242 msgid "Site name" msgstr "" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:243 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "" -#: actions/siteadminpanel.php:261 +#: actions/siteadminpanel.php:247 msgid "Brought by" msgstr "" -#: actions/siteadminpanel.php:262 +#: actions/siteadminpanel.php:248 msgid "Text used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:266 +#: actions/siteadminpanel.php:252 msgid "Brought by URL" msgstr "" -#: actions/siteadminpanel.php:267 +#: actions/siteadminpanel.php:253 msgid "URL used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:271 +#: actions/siteadminpanel.php:257 msgid "Contact email address for your site" msgstr "" -#: actions/siteadminpanel.php:277 +#: actions/siteadminpanel.php:263 msgid "Local" msgstr "" -#: actions/siteadminpanel.php:288 +#: actions/siteadminpanel.php:274 msgid "Default timezone" msgstr "" -#: actions/siteadminpanel.php:289 +#: actions/siteadminpanel.php:275 msgid "Default timezone for the site; usually UTC." msgstr "" -#: actions/siteadminpanel.php:295 +#: actions/siteadminpanel.php:281 msgid "Default site language" msgstr "" -#: actions/siteadminpanel.php:303 -msgid "URLs" -msgstr "" - -#: actions/siteadminpanel.php:306 -msgid "Server" -msgstr "" - -#: actions/siteadminpanel.php:306 -msgid "Site's server hostname." -msgstr "" - -#: actions/siteadminpanel.php:310 -msgid "Fancy URLs" -msgstr "" - -#: actions/siteadminpanel.php:312 -msgid "Use fancy (more readable and memorable) URLs?" -msgstr "" - -#: actions/siteadminpanel.php:318 -msgid "Access" -msgstr "" - -#: actions/siteadminpanel.php:321 -msgid "Private" -msgstr "" - -#: actions/siteadminpanel.php:323 -msgid "Prohibit anonymous users (not logged in) from viewing site?" -msgstr "" - -#: actions/siteadminpanel.php:327 -msgid "Invite only" -msgstr "" - -#: actions/siteadminpanel.php:329 -msgid "Make registration invitation only." -msgstr "" - -#: actions/siteadminpanel.php:333 -msgid "Closed" -msgstr "" - -#: actions/siteadminpanel.php:335 -msgid "Disable new registrations." -msgstr "" - -#: actions/siteadminpanel.php:341 +#: actions/siteadminpanel.php:289 msgid "Snapshots" msgstr "" -#: actions/siteadminpanel.php:344 +#: actions/siteadminpanel.php:292 msgid "Randomly during Web hit" msgstr "" -#: actions/siteadminpanel.php:345 +#: actions/siteadminpanel.php:293 msgid "In a scheduled job" msgstr "" -#: actions/siteadminpanel.php:347 +#: actions/siteadminpanel.php:295 msgid "Data snapshots" msgstr "" -#: actions/siteadminpanel.php:348 +#: actions/siteadminpanel.php:296 msgid "When to send statistical data to status.net servers" msgstr "" -#: actions/siteadminpanel.php:353 +#: actions/siteadminpanel.php:301 msgid "Frequency" msgstr "" -#: actions/siteadminpanel.php:354 +#: actions/siteadminpanel.php:302 msgid "Snapshots will be sent once every N web hits" msgstr "" -#: actions/siteadminpanel.php:359 +#: actions/siteadminpanel.php:307 msgid "Report URL" msgstr "" -#: actions/siteadminpanel.php:360 +#: actions/siteadminpanel.php:308 msgid "Snapshots will be sent to this URL" msgstr "" -#: actions/siteadminpanel.php:367 +#: actions/siteadminpanel.php:315 msgid "Limits" msgstr "" -#: actions/siteadminpanel.php:370 +#: actions/siteadminpanel.php:318 msgid "Text limit" msgstr "" -#: actions/siteadminpanel.php:370 +#: actions/siteadminpanel.php:318 msgid "Maximum number of characters for notices." msgstr "" -#: actions/siteadminpanel.php:374 +#: actions/siteadminpanel.php:322 msgid "Dupe limit" msgstr "" -#: actions/siteadminpanel.php:374 +#: actions/siteadminpanel.php:322 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" -#: actions/siteadminpanel.php:388 actions/useradminpanel.php:313 -msgid "Save site settings" -msgstr "" - #: actions/smssettings.php:58 msgid "SMS settings" msgstr "" @@ -3312,15 +3696,24 @@ msgstr "" msgid "You are not subscribed to that profile." msgstr "" -#: actions/subedit.php:83 +#: actions/subedit.php:83 classes/Subscription.php:89 +#: classes/Subscription.php:116 msgid "Could not save subscription." msgstr "" -#: actions/subscribe.php:55 -msgid "Not a local user." +#: actions/subscribe.php:77 +msgid "This action only accepts POST requests." msgstr "" -#: actions/subscribe.php:69 +#: actions/subscribe.php:107 +msgid "No such profile." +msgstr "" + +#: actions/subscribe.php:117 +msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." +msgstr "" + +#: actions/subscribe.php:145 msgid "Subscribed" msgstr "" @@ -3380,7 +3773,7 @@ msgstr "" msgid "These are the people whose notices %s listens to." msgstr "" -#: actions/subscriptions.php:121 +#: actions/subscriptions.php:126 #, php-format msgid "" "You're not listening to anyone's notices right now, try subscribing to " @@ -3390,19 +3783,24 @@ msgid "" "automatically subscribe to people you already follow there." msgstr "" -#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#: actions/subscriptions.php:128 actions/subscriptions.php:132 #, php-format msgid "%s is not listening to anyone." msgstr "" -#: actions/subscriptions.php:194 +#: actions/subscriptions.php:199 msgid "Jabber" msgstr "" -#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:204 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "" +#: actions/tag.php:68 +#, php-format +msgid "Notices tagged with %1$s, page %2$d" +msgstr "" + #: actions/tag.php:86 #, php-format msgid "Notice feed for tag %s (RSS 1.0)" @@ -3431,7 +3829,8 @@ msgstr "" msgid "User profile" msgstr "" -#: actions/tagother.php:81 lib/userprofile.php:102 +#: actions/tagother.php:81 actions/userauthorization.php:132 +#: lib/userprofile.php:102 msgid "Photo" msgstr "" @@ -3486,7 +3885,7 @@ msgstr "" msgid "Unsubscribed" msgstr "" -#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#: actions/updateprofile.php:62 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -3501,84 +3900,64 @@ msgstr "" msgid "User settings for this StatusNet site." msgstr "" -#: actions/useradminpanel.php:149 +#: actions/useradminpanel.php:148 msgid "Invalid bio limit. Must be numeric." msgstr "" -#: actions/useradminpanel.php:155 +#: actions/useradminpanel.php:154 msgid "Invalid welcome text. Max length is 255 characters." msgstr "" -#: actions/useradminpanel.php:165 +#: actions/useradminpanel.php:164 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 +#: actions/useradminpanel.php:217 lib/accountsettingsaction.php:108 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:221 msgid "Bio Limit" msgstr "" -#: actions/useradminpanel.php:223 +#: actions/useradminpanel.php:222 msgid "Maximum length of a profile bio in characters." msgstr "" -#: actions/useradminpanel.php:231 +#: actions/useradminpanel.php:230 msgid "New users" msgstr "" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:234 msgid "New user welcome" msgstr "" -#: actions/useradminpanel.php:236 +#: actions/useradminpanel.php:235 msgid "Welcome text for new users (Max 255 chars)." msgstr "" -#: actions/useradminpanel.php:241 +#: actions/useradminpanel.php:240 msgid "Default subscription" msgstr "" -#: actions/useradminpanel.php:242 +#: actions/useradminpanel.php:241 msgid "Automatically subscribe new users to this user." msgstr "" -#: actions/useradminpanel.php:251 +#: actions/useradminpanel.php:250 msgid "Invitations" msgstr "" -#: actions/useradminpanel.php:256 +#: actions/useradminpanel.php:255 msgid "Invitations enabled" msgstr "" -#: actions/useradminpanel.php:258 +#: actions/useradminpanel.php:257 msgid "Whether to allow users to invite new users." msgstr "" -#: actions/useradminpanel.php:265 -msgid "Sessions" -msgstr "" - -#: actions/useradminpanel.php:270 -msgid "Handle sessions" -msgstr "" - -#: actions/useradminpanel.php:272 -msgid "Whether to handle sessions ourselves." -msgstr "" - -#: actions/useradminpanel.php:276 -msgid "Session debugging" -msgstr "" - -#: actions/useradminpanel.php:278 -msgid "Turn on debugging output for sessions." -msgstr "" - #: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "" @@ -3590,84 +3969,84 @@ msgid "" "click “Reject”." msgstr "" -#: actions/userauthorization.php:188 actions/version.php:165 +#: actions/userauthorization.php:196 actions/version.php:165 msgid "License" msgstr "" -#: actions/userauthorization.php:209 +#: actions/userauthorization.php:217 msgid "Accept" msgstr "" -#: actions/userauthorization.php:210 lib/subscribeform.php:115 +#: actions/userauthorization.php:218 lib/subscribeform.php:115 #: lib/subscribeform.php:139 msgid "Subscribe to this user" msgstr "" -#: actions/userauthorization.php:211 +#: actions/userauthorization.php:219 msgid "Reject" msgstr "" -#: actions/userauthorization.php:212 +#: actions/userauthorization.php:220 msgid "Reject this subscription" msgstr "" -#: actions/userauthorization.php:225 +#: actions/userauthorization.php:232 msgid "No authorization request!" msgstr "" -#: actions/userauthorization.php:247 +#: actions/userauthorization.php:254 msgid "Subscription authorized" msgstr "" -#: actions/userauthorization.php:249 +#: actions/userauthorization.php:256 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 +#: actions/userauthorization.php:266 msgid "Subscription rejected" msgstr "" -#: actions/userauthorization.php:261 +#: actions/userauthorization.php:268 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 +#: actions/userauthorization.php:303 #, php-format msgid "Listener URI ‘%s’ not found here." msgstr "" -#: actions/userauthorization.php:301 +#: actions/userauthorization.php:308 #, php-format msgid "Listenee URI ‘%s’ is too long." msgstr "" -#: actions/userauthorization.php:307 +#: actions/userauthorization.php:314 #, php-format msgid "Listenee URI ‘%s’ is a local user." msgstr "" -#: actions/userauthorization.php:322 +#: actions/userauthorization.php:329 #, php-format msgid "Profile URL ‘%s’ is for a local user." msgstr "" -#: actions/userauthorization.php:338 +#: actions/userauthorization.php:345 #, php-format msgid "Avatar URL ‘%s’ is not valid." msgstr "" -#: actions/userauthorization.php:343 +#: actions/userauthorization.php:350 #, php-format msgid "Can’t read avatar URL ‘%s’." msgstr "" -#: actions/userauthorization.php:348 +#: actions/userauthorization.php:355 #, php-format msgid "Wrong image type for avatar URL ‘%s’." msgstr "" @@ -3686,6 +4065,11 @@ msgstr "" msgid "Enjoy your hotdog!" msgstr "" +#: actions/usergroups.php:64 +#, php-format +msgid "%1$s groups, page %2$d" +msgstr "" + #: actions/usergroups.php:130 msgid "Search for more groups" msgstr "" @@ -3712,10 +4096,6 @@ msgid "" "Inc. and contributors." msgstr "" -#: actions/version.php:157 -msgid "StatusNet" -msgstr "" - #: actions/version.php:161 msgid "Contributors" msgstr "" @@ -3747,11 +4127,7 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:195 -msgid "Name" -msgstr "" - -#: actions/version.php:196 lib/action.php:741 +#: actions/version.php:196 lib/action.php:747 msgid "Version" msgstr "" @@ -3759,10 +4135,6 @@ msgstr "" msgid "Author(s)" msgstr "" -#: actions/version.php:198 lib/groupeditform.php:172 -msgid "Description" -msgstr "" - #: classes/File.php:144 #, php-format msgid "" @@ -3809,58 +4181,81 @@ msgstr "" msgid "Could not update message with new URI." msgstr "" -#: classes/Notice.php:171 +#: classes/Notice.php:157 #, php-format msgid "DB error inserting hashtag: %s" msgstr "" -#: classes/Notice.php:225 +#: classes/Notice.php:222 msgid "Problem saving notice. Too long." msgstr "" -#: classes/Notice.php:229 +#: classes/Notice.php:226 msgid "Problem saving notice. Unknown user." msgstr "" -#: classes/Notice.php:234 +#: classes/Notice.php:231 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: classes/Notice.php:240 +#: classes/Notice.php:237 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." msgstr "" -#: classes/Notice.php:246 +#: classes/Notice.php:243 msgid "You are banned from posting notices on this site." msgstr "" -#: classes/Notice.php:305 classes/Notice.php:330 +#: classes/Notice.php:309 classes/Notice.php:335 msgid "Problem saving notice." msgstr "" -#: classes/Notice.php:1052 -#, php-format -msgid "DB error inserting reply: %s" +#: classes/Notice.php:882 +msgid "Problem saving group inbox." msgstr "" -#: classes/Notice.php:1423 +#: classes/Notice.php:1407 #, php-format msgid "RT @%1$s %2$s" msgstr "" -#: classes/User.php:382 +#: classes/Subscription.php:66 lib/oauthstore.php:465 +msgid "You have been banned from subscribing." +msgstr "" + +#: classes/Subscription.php:70 +msgid "Already subscribed!" +msgstr "" + +#: classes/Subscription.php:74 +msgid "User has blocked you." +msgstr "" + +#: classes/Subscription.php:157 +msgid "Not subscribed!" +msgstr "" + +#: classes/Subscription.php:163 +msgid "Couldn't delete self-subscription." +msgstr "" + +#: classes/Subscription.php:179 lib/subs.php:69 +msgid "Couldn't delete subscription." +msgstr "" + +#: classes/User.php:372 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "" -#: classes/User_group.php:380 +#: classes/User_group.php:423 msgid "Could not create group." msgstr "" -#: classes/User_group.php:409 +#: classes/User_group.php:452 msgid "Could not set group membership." msgstr "" @@ -3901,140 +4296,136 @@ msgstr "" msgid "Untitled page" msgstr "" -#: lib/action.php:427 +#: lib/action.php:433 msgid "Primary site navigation" msgstr "" -#: lib/action.php:433 +#: lib/action.php:439 msgid "Home" msgstr "" -#: lib/action.php:433 +#: lib/action.php:439 msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:435 -msgid "Account" -msgstr "" - -#: lib/action.php:435 +#: lib/action.php:441 msgid "Change your email, avatar, password, profile" msgstr "" -#: lib/action.php:438 +#: lib/action.php:444 msgid "Connect" msgstr "" -#: lib/action.php:438 +#: lib/action.php:444 msgid "Connect to services" msgstr "" -#: lib/action.php:442 +#: lib/action.php:448 msgid "Change site configuration" msgstr "" -#: lib/action.php:446 lib/subgroupnav.php:105 +#: lib/action.php:452 lib/subgroupnav.php:105 msgid "Invite" msgstr "" -#: lib/action.php:447 lib/subgroupnav.php:106 +#: lib/action.php:453 lib/subgroupnav.php:106 #, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "" -#: lib/action.php:452 +#: lib/action.php:458 msgid "Logout" msgstr "" -#: lib/action.php:452 +#: lib/action.php:458 msgid "Logout from the site" msgstr "" -#: lib/action.php:457 +#: lib/action.php:463 msgid "Create an account" msgstr "" -#: lib/action.php:460 +#: lib/action.php:466 msgid "Login to the site" msgstr "" -#: lib/action.php:463 lib/action.php:726 +#: lib/action.php:469 lib/action.php:732 msgid "Help" msgstr "" -#: lib/action.php:463 +#: lib/action.php:469 msgid "Help me!" msgstr "" -#: lib/action.php:466 lib/searchaction.php:127 +#: lib/action.php:472 lib/searchaction.php:127 msgid "Search" msgstr "" -#: lib/action.php:466 +#: lib/action.php:472 msgid "Search for people or text" msgstr "" -#: lib/action.php:487 +#: lib/action.php:493 msgid "Site notice" msgstr "" -#: lib/action.php:553 +#: lib/action.php:559 msgid "Local views" msgstr "" -#: lib/action.php:619 +#: lib/action.php:625 msgid "Page notice" msgstr "" -#: lib/action.php:721 +#: lib/action.php:727 msgid "Secondary site navigation" msgstr "" -#: lib/action.php:728 +#: lib/action.php:734 msgid "About" msgstr "" -#: lib/action.php:730 +#: lib/action.php:736 msgid "FAQ" msgstr "" -#: lib/action.php:734 +#: lib/action.php:740 msgid "TOS" msgstr "" -#: lib/action.php:737 +#: lib/action.php:743 msgid "Privacy" msgstr "" -#: lib/action.php:739 +#: lib/action.php:745 msgid "Source" msgstr "" -#: lib/action.php:743 +#: lib/action.php:749 msgid "Contact" msgstr "" -#: lib/action.php:745 +#: lib/action.php:751 msgid "Badge" msgstr "" -#: lib/action.php:773 +#: lib/action.php:779 msgid "StatusNet software license" msgstr "" -#: lib/action.php:776 +#: lib/action.php:782 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." "broughtby%%](%%site.broughtbyurl%%). " msgstr "" -#: lib/action.php:778 +#: lib/action.php:784 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "" -#: lib/action.php:780 +#: lib/action.php:786 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4042,32 +4433,54 @@ msgid "" "org/licensing/licenses/agpl-3.0.html)." msgstr "" -#: lib/action.php:794 +#: lib/action.php:801 msgid "Site content license" msgstr "" -#: lib/action.php:803 +#: lib/action.php:806 +#, php-format +msgid "Content and data of %1$s are private and confidential." +msgstr "" + +#: lib/action.php:811 +#, php-format +msgid "Content and data copyright by %1$s. All rights reserved." +msgstr "" + +#: lib/action.php:814 +msgid "Content and data copyright by contributors. All rights reserved." +msgstr "" + +#: lib/action.php:827 msgid "All " msgstr "" -#: lib/action.php:808 +#: lib/action.php:833 msgid "license." msgstr "" -#: lib/action.php:1102 +#: lib/action.php:1132 msgid "Pagination" msgstr "" -#: lib/action.php:1111 +#: lib/action.php:1141 msgid "After" msgstr "" -#: lib/action.php:1119 +#: lib/action.php:1149 msgid "Before" msgstr "" -#: lib/action.php:1167 -msgid "There was a problem with your session token." +#: lib/activity.php:382 +msgid "Can't handle remote content yet." +msgstr "" + +#: lib/activity.php:410 +msgid "Can't handle embedded XML content yet." +msgstr "" + +#: lib/activity.php:414 +msgid "Can't handle embedded Base64 content yet." msgstr "" #: lib/adminpanelaction.php:96 @@ -4098,10 +4511,96 @@ msgstr "" msgid "Design configuration" msgstr "" -#: lib/adminpanelaction.php:322 lib/adminpanelaction.php:327 +#: lib/adminpanelaction.php:322 +msgid "User configuration" +msgstr "" + +#: lib/adminpanelaction.php:327 +msgid "Access configuration" +msgstr "" + +#: lib/adminpanelaction.php:332 msgid "Paths configuration" msgstr "" +#: lib/adminpanelaction.php:337 +msgid "Sessions configuration" +msgstr "" + +#: lib/apiauth.php:95 +msgid "API resource requires read-write access, but you only have read access." +msgstr "" + +#: lib/apiauth.php:273 +#, php-format +msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" +msgstr "" + +#: lib/applicationeditform.php:136 +msgid "Edit application" +msgstr "" + +#: lib/applicationeditform.php:184 +msgid "Icon for this application" +msgstr "" + +#: lib/applicationeditform.php:204 +#, php-format +msgid "Describe your application in %d characters" +msgstr "" + +#: lib/applicationeditform.php:207 +msgid "Describe your application" +msgstr "" + +#: lib/applicationeditform.php:216 +msgid "Source URL" +msgstr "" + +#: lib/applicationeditform.php:218 +msgid "URL of the homepage of this application" +msgstr "" + +#: lib/applicationeditform.php:224 +msgid "Organization responsible for this application" +msgstr "" + +#: lib/applicationeditform.php:230 +msgid "URL for the homepage of the organization" +msgstr "" + +#: lib/applicationeditform.php:236 +msgid "URL to redirect to after authentication" +msgstr "" + +#: lib/applicationeditform.php:258 +msgid "Browser" +msgstr "" + +#: lib/applicationeditform.php:274 +msgid "Desktop" +msgstr "" + +#: lib/applicationeditform.php:275 +msgid "Type of application, browser or desktop" +msgstr "" + +#: lib/applicationeditform.php:297 +msgid "Read-only" +msgstr "" + +#: lib/applicationeditform.php:315 +msgid "Read-write" +msgstr "" + +#: lib/applicationeditform.php:316 +msgid "Default access for this application: read-only, or read-write" +msgstr "" + +#: lib/applicationlist.php:154 +msgid "Revoke" +msgstr "" + #: lib/attachmentlist.php:87 msgid "Attachments" msgstr "" @@ -4122,11 +4621,11 @@ msgstr "" msgid "Tags for this attachment" msgstr "" -#: lib/authenticationplugin.php:182 lib/authenticationplugin.php:187 +#: lib/authenticationplugin.php:218 lib/authenticationplugin.php:223 msgid "Password changing failed" msgstr "" -#: lib/authenticationplugin.php:197 +#: lib/authenticationplugin.php:233 msgid "Password changing is not allowed" msgstr "" @@ -4274,80 +4773,89 @@ msgstr "" msgid "Specify the name of the user to subscribe to" msgstr "" -#: lib/command.php:554 +#: lib/command.php:554 lib/command.php:589 +msgid "No such user" +msgstr "" + +#: lib/command.php:561 #, php-format msgid "Subscribed to %s" msgstr "" -#: lib/command.php:575 +#: lib/command.php:582 lib/command.php:685 msgid "Specify the name of the user to unsubscribe from" msgstr "" -#: lib/command.php:582 +#: lib/command.php:595 #, php-format msgid "Unsubscribed from %s" msgstr "" -#: lib/command.php:600 lib/command.php:623 +#: lib/command.php:613 lib/command.php:636 msgid "Command not yet implemented." msgstr "" -#: lib/command.php:603 +#: lib/command.php:616 msgid "Notification off." msgstr "" -#: lib/command.php:605 +#: lib/command.php:618 msgid "Can't turn off notification." msgstr "" -#: lib/command.php:626 +#: lib/command.php:639 msgid "Notification on." msgstr "" -#: lib/command.php:628 +#: lib/command.php:641 msgid "Can't turn on notification." msgstr "" -#: lib/command.php:641 +#: lib/command.php:654 msgid "Login command is disabled" msgstr "" -#: lib/command.php:652 +#: lib/command.php:665 #, php-format msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "" -#: lib/command.php:668 +#: lib/command.php:692 +#, php-format +msgid "Unsubscribed %s" +msgstr "" + +#: lib/command.php:709 msgid "You are not subscribed to anyone." msgstr "" -#: lib/command.php:670 +#: lib/command.php:711 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "" msgstr[1] "" -#: lib/command.php:690 +#: lib/command.php:731 msgid "No one is subscribed to you." msgstr "" -#: lib/command.php:692 +#: lib/command.php:733 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "" msgstr[1] "" -#: lib/command.php:712 +#: lib/command.php:753 msgid "You are not a member of any groups." msgstr "" -#: lib/command.php:714 +#: lib/command.php:755 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "" msgstr[1] "" -#: lib/command.php:728 +#: lib/command.php:769 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -4361,6 +4869,7 @@ msgid "" "d - direct message to user\n" "get - get last notice from user\n" "whois - get profile info on user\n" +"lose - force user to stop following you\n" "fav - add user's last notice as a 'fave'\n" "fav # - add notice with the given id as a 'fave'\n" "repeat # - repeat a notice with a given id\n" @@ -4388,19 +4897,19 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:131 +#: lib/common.php:136 msgid "No configuration file found. " msgstr "" -#: lib/common.php:132 +#: lib/common.php:137 msgid "I looked for configuration files in the following places: " msgstr "" -#: lib/common.php:134 +#: lib/common.php:139 msgid "You may wish to run the installer to fix this." msgstr "" -#: lib/common.php:135 +#: lib/common.php:140 msgid "Go to the installer." msgstr "" @@ -4416,6 +4925,14 @@ msgstr "" msgid "Updates by SMS" msgstr "" +#: lib/connectsettingsaction.php:120 +msgid "Connections" +msgstr "" + +#: lib/connectsettingsaction.php:121 +msgid "Authorized connected applications" +msgstr "" + #: lib/dberroraction.php:60 msgid "Database error" msgstr "" @@ -4598,12 +5115,12 @@ msgstr "" msgid "kB" msgstr "" -#: lib/jabber.php:202 +#: lib/jabber.php:220 #, php-format msgid "[%s]" msgstr "" -#: lib/jabber.php:385 +#: lib/jabber.php:400 #, php-format msgid "Unknown inbox source %d." msgstr "" @@ -4798,7 +5315,7 @@ msgid "" "users in conversation. People can send you messages for your eyes only." msgstr "" -#: lib/mailbox.php:227 lib/noticelist.php:477 +#: lib/mailbox.php:227 lib/noticelist.php:482 msgid "from" msgstr "" @@ -4913,57 +5430,53 @@ msgid "Do not share my location" msgstr "" #: lib/noticeform.php:216 -msgid "Hide this info" -msgstr "" - -#: lib/noticeform.php:217 msgid "" "Sorry, retrieving your geo location is taking longer than expected, please " "try again later" msgstr "" -#: lib/noticelist.php:428 +#: lib/noticelist.php:429 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "" -#: lib/noticelist.php:429 +#: lib/noticelist.php:430 msgid "N" msgstr "" -#: lib/noticelist.php:429 +#: lib/noticelist.php:430 msgid "S" msgstr "" -#: lib/noticelist.php:430 +#: lib/noticelist.php:431 msgid "E" msgstr "" -#: lib/noticelist.php:430 +#: lib/noticelist.php:431 msgid "W" msgstr "" -#: lib/noticelist.php:436 +#: lib/noticelist.php:438 msgid "at" msgstr "" -#: lib/noticelist.php:531 +#: lib/noticelist.php:558 msgid "in context" msgstr "" -#: lib/noticelist.php:556 +#: lib/noticelist.php:583 msgid "Repeated by" msgstr "" -#: lib/noticelist.php:585 +#: lib/noticelist.php:610 msgid "Reply to this notice" msgstr "" -#: lib/noticelist.php:586 +#: lib/noticelist.php:611 msgid "Reply" msgstr "" -#: lib/noticelist.php:628 +#: lib/noticelist.php:655 msgid "Notice repeated" msgstr "" @@ -4995,11 +5508,7 @@ msgstr "" msgid "Duplicate notice" msgstr "" -#: lib/oauthstore.php:466 lib/subs.php:48 -msgid "You have been banned from subscribing." -msgstr "" - -#: lib/oauthstore.php:491 +#: lib/oauthstore.php:490 msgid "Couldn't insert new subscription." msgstr "" @@ -5015,19 +5524,19 @@ msgstr "" msgid "Favorites" msgstr "" -#: lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "" -#: lib/personalgroupnav.php:125 +#: lib/personalgroupnav.php:126 msgid "Your incoming messages" msgstr "" -#: lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 msgid "Outbox" msgstr "" -#: lib/personalgroupnav.php:130 +#: lib/personalgroupnav.php:131 msgid "Your sent messages" msgstr "" @@ -5104,6 +5613,10 @@ msgstr "" msgid "Repeat this notice" msgstr "" +#: lib/router.php:665 +msgid "No single user defined for single-user mode." +msgstr "" + #: lib/sandboxform.php:67 msgid "Sandbox" msgstr "" @@ -5171,34 +5684,6 @@ msgstr "" msgid "Groups %s is a member of" msgstr "" -#: lib/subs.php:52 -msgid "Already subscribed!" -msgstr "" - -#: lib/subs.php:56 -msgid "User has blocked you." -msgstr "" - -#: lib/subs.php:63 -msgid "Could not subscribe." -msgstr "" - -#: lib/subs.php:82 -msgid "Could not subscribe other to you." -msgstr "" - -#: lib/subs.php:137 -msgid "Not subscribed!" -msgstr "" - -#: lib/subs.php:142 -msgid "Couldn't delete self-subscription." -msgstr "" - -#: lib/subs.php:158 -msgid "Couldn't delete subscription." -msgstr "" - #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -5249,67 +5734,67 @@ msgstr "" msgid "User actions" msgstr "" -#: lib/userprofile.php:248 +#: lib/userprofile.php:251 msgid "Edit profile settings" msgstr "" -#: lib/userprofile.php:249 +#: lib/userprofile.php:252 msgid "Edit" msgstr "" -#: lib/userprofile.php:272 +#: lib/userprofile.php:275 msgid "Send a direct message to this user" msgstr "" -#: lib/userprofile.php:273 +#: lib/userprofile.php:276 msgid "Message" msgstr "" -#: lib/userprofile.php:311 +#: lib/userprofile.php:314 msgid "Moderate" msgstr "" -#: lib/util.php:877 +#: lib/util.php:952 msgid "a few seconds ago" msgstr "" -#: lib/util.php:879 +#: lib/util.php:954 msgid "about a minute ago" msgstr "" -#: lib/util.php:881 +#: lib/util.php:956 #, php-format msgid "about %d minutes ago" msgstr "" -#: lib/util.php:883 +#: lib/util.php:958 msgid "about an hour ago" msgstr "" -#: lib/util.php:885 +#: lib/util.php:960 #, php-format msgid "about %d hours ago" msgstr "" -#: lib/util.php:887 +#: lib/util.php:962 msgid "about a day ago" msgstr "" -#: lib/util.php:889 +#: lib/util.php:964 #, php-format msgid "about %d days ago" msgstr "" -#: lib/util.php:891 +#: lib/util.php:966 msgid "about a month ago" msgstr "" -#: lib/util.php:893 +#: lib/util.php:968 #, php-format msgid "about %d months ago" msgstr "" -#: lib/util.php:895 +#: lib/util.php:970 msgid "about a year ago" msgstr "" @@ -5323,7 +5808,7 @@ msgstr "" msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "" -#: scripts/xmppdaemon.php:301 +#: lib/xmppmanager.php:402 #, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "" diff --git a/locale/sv/LC_MESSAGES/statusnet.po b/locale/sv/LC_MESSAGES/statusnet.po index aab154cafd..b09823e6be 100644 --- a/locale/sv/LC_MESSAGES/statusnet.po +++ b/locale/sv/LC_MESSAGES/statusnet.po @@ -9,17 +9,70 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-01-13 22:04+0000\n" -"PO-Revision-Date: 2010-01-13 22:06:09+0000\n" +"POT-Creation-Date: 2010-02-24 23:49+0000\n" +"PO-Revision-Date: 2010-02-24 23:51:44+0000\n" "Language-Team: Swedish\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha (r61027); Translate extension (2010-01-04)\n" +"X-Generator: MediaWiki 1.17alpha (r62925); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: actions/accessadminpanel.php:54 lib/adminpanelaction.php:326 +msgid "Access" +msgstr "Åtkomst" + +#: actions/accessadminpanel.php:65 +msgid "Site access settings" +msgstr "Inställningar för webbplatsåtkomst" + +#: actions/accessadminpanel.php:158 +msgid "Registration" +msgstr "Registrering" + +#: actions/accessadminpanel.php:161 +msgid "Private" +msgstr "Privat" + +#: actions/accessadminpanel.php:163 +msgid "Prohibit anonymous users (not logged in) from viewing site?" +msgstr "" +"Skall anonyma användare (inte inloggade) förhindras från att se webbplatsen?" + +#: actions/accessadminpanel.php:167 +msgid "Invite only" +msgstr "Endast inbjudan" + +#: actions/accessadminpanel.php:169 +msgid "Make registration invitation only." +msgstr "Gör så att registrering endast sker genom inbjudan." + +#: actions/accessadminpanel.php:173 +msgid "Closed" +msgstr "Stängd" + +#: actions/accessadminpanel.php:175 +msgid "Disable new registrations." +msgstr "Inaktivera nya registreringar." + +#: actions/accessadminpanel.php:189 actions/designadminpanel.php:586 +#: actions/emailsettings.php:195 actions/imsettings.php:163 +#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 +#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 +#: actions/siteadminpanel.php:336 actions/smssettings.php:181 +#: actions/subscriptions.php:208 actions/tagother.php:154 +#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 lib/designsettings.php:256 +#: lib/groupeditform.php:202 +msgid "Save" +msgstr "Spara" + +#: actions/accessadminpanel.php:189 +msgid "Save access settings" +msgstr "Spara inställningar för åtkomst" + #: actions/all.php:63 actions/public.php:97 actions/replies.php:92 #: actions/showfavorites.php:137 actions/tag.php:51 msgid "No such page" @@ -34,25 +87,29 @@ msgstr "Ingen sådan sida" #: 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:144 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apistatusesupdate.php:148 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:78 #: actions/apitimelinehome.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/otp.php:76 #: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154 -#: actions/replies.php:73 actions/repliesrss.php:38 +#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 #: 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:302 lib/command.php:355 #: lib/command.php:401 lib/command.php:462 lib/command.php:518 #: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 -#: lib/subs.php:34 lib/subs.php:125 msgid "No such user." msgstr "Ingen sådan användare." +#: actions/all.php:84 +#, php-format +msgid "%1$s and friends, page %2$d" +msgstr "%1$s och vänner, sida %2$d" + #: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 -#: actions/apitimelinefriends.php:115 actions/apitimelinehome.php:115 +#: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" @@ -77,7 +134,7 @@ msgstr "Flöden för %ss vänner (Atom)" #, php-format msgid "" "This is the timeline for %s and friends but no one has posted anything yet." -msgstr "Detta är tidslinjen för %s och vänner men ingen har postat något än." +msgstr "Detta är tidslinjen för %s och vänner, men ingen har skrivit något än." #: actions/all.php:132 #, php-format @@ -86,33 +143,33 @@ msgid "" "something yourself." msgstr "" "Prova att prenumerera på fler personer, [gå med i en grupp](%%action.groups%" -"%) eller posta något själv." +"%) eller skriv något själv." #: actions/all.php:134 -#, fuzzy, php-format +#, php-format msgid "" "You can try to [nudge %1$s](../%2$s) from his profile or [post something to " "his or her attention](%%%%action.newnotice%%%%?status_textarea=%3$s)." msgstr "" -"Du kan prova att [knuffa %s](../%s) från dennes profil eller [posta " +"Du kan prova att [knuffa %1$s](../%2$s) från dennes profil eller [skriva " "någonting för hans eller hennes uppmärksamhet](%%%%action.newnotice%%%%?" -"status_textarea=%s)." +"status_textarea=%3$s)." -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211 #, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " "post a notice to his or her attention." msgstr "" "Varför inte [registrera ett konto](%%%%action.register%%%%) och sedan knuffa " -"%s eller posta en notis för hans eller hennes uppmärksamhet." +"%s eller skriva en notis för hans eller hennes uppmärksamhet." #: actions/all.php:165 msgid "You and friends" msgstr "Du och vänner" -#: actions/allrss.php:119 actions/apitimelinefriends.php:122 -#: actions/apitimelinehome.php:122 +#: actions/allrss.php:119 actions/apitimelinefriends.php:119 +#: actions/apitimelinehome.php:120 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Uppdateringar från %1$s och vänner på %2$s!" @@ -122,25 +179,25 @@ msgstr "Uppdateringar från %1$s och vänner på %2$s!" #: actions/apiaccountupdateprofile.php:97 #: actions/apiaccountupdateprofilebackgroundimage.php:94 #: actions/apiaccountupdateprofilecolors.php:118 -#: 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:136 actions/apigroupismember.php:114 -#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 -#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 -#: actions/apigroupmembership.php:106 actions/apigroupshow.php:105 -#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 -#: actions/apistatusesretweets.php:112 actions/apistatusesshow.php:108 -#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93 -#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:146 -#: actions/apitimelinefriends.php:156 actions/apitimelinegroup.php:150 -#: actions/apitimelinehome.php:156 actions/apitimelinementions.php:151 -#: actions/apitimelinepublic.php:131 actions/apitimelineretweetedbyme.php:122 +#: actions/apiaccountverifycredentials.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:128 actions/apigroupcreate.php:136 +#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 +#: actions/apigroupleave.php:141 actions/apigrouplist.php:132 +#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 +#: actions/apigroupshow.php:115 actions/apihelptest.php:88 +#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 +#: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 #: actions/apitimelineretweetedtome.php:121 -#: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141 -#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 +#: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 +#: actions/apitimelineuser.php:207 actions/apiusershow.php:101 msgid "API method not found." -msgstr "API-metoden hittades inte" +msgstr "API-metod hittades inte." #: actions/apiaccountupdatedeliverydevice.php:85 #: actions/apiaccountupdateprofile.php:89 @@ -152,7 +209,7 @@ msgstr "API-metoden hittades inte" #: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 #: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 #: actions/apigroupleave.php:91 actions/apistatusesretweet.php:65 -#: actions/apistatusesupdate.php:114 +#: actions/apistatusesupdate.php:118 msgid "This method requires a POST." msgstr "Denna metod kräver en POST." @@ -181,8 +238,9 @@ msgstr "Kunde inte spara profil." #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:97 -#: actions/apistatusesupdate.php:127 actions/avatarsettings.php:257 -#: actions/designadminpanel.php:122 actions/newnotice.php:94 +#: actions/apistatusesupdate.php:131 actions/avatarsettings.php:257 +#: actions/designadminpanel.php:122 actions/editapplication.php:118 +#: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 #, php-format msgid "" @@ -222,7 +280,7 @@ msgstr "Hävning av blockering av användare misslyckades." #: actions/apidirectmessage.php:89 #, php-format msgid "Direct messages from %s" -msgstr "Direktmeddelande från %s" +msgstr "Direktmeddelanden från %s" #: actions/apidirectmessage.php:93 #, php-format @@ -262,18 +320,16 @@ msgid "No status found with that ID." msgstr "Ingen status hittad med det ID:t." #: actions/apifavoritecreate.php:119 -#, fuzzy msgid "This status is already a favorite." -msgstr "Denna status är redan en favorit!" +msgstr "Denna status är redan en favorit." #: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:176 msgid "Could not create favorite." msgstr "Kunde inte skapa favorit." #: actions/apifavoritedestroy.php:122 -#, fuzzy msgid "That status is not a favorite." -msgstr "Denna status är inte en favorit!" +msgstr "Denna status är inte en favorit." #: actions/apifavoritedestroy.php:134 actions/disfavor.php:87 msgid "Could not delete favorite." @@ -293,21 +349,20 @@ msgid "Could not unfollow user: User not found." msgstr "Kunde inte sluta följa användaren: användaren hittades inte." #: actions/apifriendshipsdestroy.php:120 -#, fuzzy msgid "You cannot unfollow yourself." -msgstr "Du kan inte sluta följa dig själv!" +msgstr "Du kan inte sluta följa dig själv." #: actions/apifriendshipsexists.php:94 msgid "Two user ids or screen_names must be supplied." msgstr "Två användar-ID:n eller screen_names måste tillhandahållas." -#: actions/apifriendshipsshow.php:135 +#: actions/apifriendshipsshow.php:134 msgid "Could not determine source user." -msgstr "" +msgstr "Kunde inte fastställa användare hos källan." -#: actions/apifriendshipsshow.php:143 +#: actions/apifriendshipsshow.php:142 msgid "Could not find target user." -msgstr "" +msgstr "Kunde inte hitta målanvändare." #: actions/apigroupcreate.php:164 actions/editgroup.php:182 #: actions/newgroup.php:126 actions/profilesettings.php:215 @@ -328,7 +383,8 @@ msgstr "Smeknamnet används redan. Försök med ett annat." msgid "Not a valid nickname." msgstr "Inte ett giltigt smeknamn." -#: actions/apigroupcreate.php:196 actions/editgroup.php:195 +#: actions/apigroupcreate.php:196 actions/editapplication.php:215 +#: actions/editgroup.php:195 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:217 msgid "Homepage is not a valid URL." @@ -340,10 +396,11 @@ msgstr "Hemsida är inte en giltig URL." msgid "Full name is too long (max 255 chars)." msgstr "Fullständigt namn är för långt (max 255 tecken)." -#: actions/apigroupcreate.php:213 +#: actions/apigroupcreate.php:213 actions/editapplication.php:190 +#: actions/newapplication.php:172 #, php-format msgid "Description is too long (max %d chars)." -msgstr "Beskrivning är för lång (max 140 tecken)" +msgstr "Beskrivning är för lång (max 140 tecken)." #: actions/apigroupcreate.php:224 actions/editgroup.php:204 #: actions/newgroup.php:148 actions/profilesettings.php:232 @@ -376,7 +433,7 @@ msgstr "Alias kan inte vara samma som smeknamn." #: actions/apigroupismember.php:95 actions/apigroupjoin.php:104 #: actions/apigroupleave.php:104 actions/apigroupmembership.php:91 -#: actions/apigroupshow.php:90 actions/apitimelinegroup.php:91 +#: actions/apigroupshow.php:82 actions/apitimelinegroup.php:91 msgid "Group not found!" msgstr "Grupp hittades inte!" @@ -389,18 +446,18 @@ msgid "You have been blocked from that group by the admin." msgstr "Du har blivit blockerad från denna grupp av administratören." #: actions/apigroupjoin.php:138 actions/joingroup.php:124 -#, fuzzy, php-format +#, php-format msgid "Could not join user %1$s to group %2$s." -msgstr "Kunde inte ansluta användare % till grupp %s." +msgstr "Kunde inte ansluta användare %1$s till grupp %2$s." #: actions/apigroupleave.php:114 msgid "You are not a member of this group." msgstr "Du är inte en medlem i denna grupp." #: actions/apigroupleave.php:124 actions/leavegroup.php:119 -#, fuzzy, php-format +#, php-format msgid "Could not remove user %1$s from group %2$s." -msgstr "Kunde inte ta bort användare %s från grupp %s." +msgstr "Kunde inte ta bort användare %1$s från grupp %2$s." #: actions/apigrouplist.php:95 #, php-format @@ -417,6 +474,113 @@ msgstr "%s grupper" msgid "groups on %s" msgstr "grupper på %s" +#: actions/apioauthauthorize.php:101 +msgid "No oauth_token parameter provided." +msgstr "Ingen oauth_token-parameter angiven." + +#: actions/apioauthauthorize.php:106 +msgid "Invalid token." +msgstr "Ogiltig token." + +#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 +#: actions/deletenotice.php:157 actions/disfavor.php:74 +#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54 +#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupunblock.php:66 actions/imsettings.php:206 +#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 +#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 +#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135 +#: actions/othersettings.php:145 actions/passwordsettings.php:138 +#: actions/profilesettings.php:194 actions/recoverpassword.php:337 +#: actions/register.php:165 actions/remotesubscribe.php:77 +#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 +#: actions/subscribe.php:86 actions/tagother.php:166 +#: 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 ett problem med din sessions-token. Var vänlig försök igen." + +#: actions/apioauthauthorize.php:135 +msgid "Invalid nickname / password!" +msgstr "Ogiltigt smeknamn / lösenord!" + +#: actions/apioauthauthorize.php:159 +msgid "Database error deleting OAuth application user." +msgstr "Databasfel vid borttagning av OAuth-applikationsanvändare." + +#: actions/apioauthauthorize.php:185 +msgid "Database error inserting OAuth application user." +msgstr "Databasfel vid infogning av OAuth-applikationsanvändare." + +#: actions/apioauthauthorize.php:214 +#, php-format +msgid "" +"The request token %s has been authorized. Please exchange it for an access " +"token." +msgstr "Begäran-token %s har godkänts. Byt ut den mot en åtkomst-token." + +#: actions/apioauthauthorize.php:227 +#, php-format +msgid "The request token %s has been denied and revoked." +msgstr "Begäran-token %s har nekats och återkallats." + +#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 +#: actions/designadminpanel.php:103 actions/editapplication.php:139 +#: actions/emailsettings.php:256 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/newapplication.php:121 +#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 +#: actions/smssettings.php:248 lib/designsettings.php:304 +msgid "Unexpected form submission." +msgstr "Oväntat inskick av formulär." + +#: actions/apioauthauthorize.php:259 +msgid "An application would like to connect to your account" +msgstr "En applikation skulle vilja ansluta till ditt konto" + +#: actions/apioauthauthorize.php:276 +msgid "Allow or deny access" +msgstr "Tillåt eller neka åtkomst" + +#: actions/apioauthauthorize.php:292 +#, php-format +msgid "" +"The application %1$s by %2$s would like " +"the ability to %3$s your %4$s account data. You should only " +"give access to your %4$s account to third parties you trust." +msgstr "" +"Applikationen %1$s av %2$s vill att " +"möjligheten att %3$s din %4$s kontoinformation. Du bör bara " +"ge tillgång till ditt %4$s-konto till tredje-parter du litar på." + +#: actions/apioauthauthorize.php:310 lib/action.php:441 +msgid "Account" +msgstr "Konto" + +#: actions/apioauthauthorize.php:313 actions/login.php:230 +#: actions/profilesettings.php:106 actions/register.php:424 +#: actions/showgroup.php:236 actions/tagother.php:94 +#: actions/userauthorization.php:145 lib/groupeditform.php:152 +#: lib/userprofile.php:131 +msgid "Nickname" +msgstr "Smeknamn" + +#: actions/apioauthauthorize.php:316 actions/login.php:233 +#: actions/register.php:429 lib/accountsettingsaction.php:116 +msgid "Password" +msgstr "Lösenord" + +#: actions/apioauthauthorize.php:328 +msgid "Deny" +msgstr "Neka" + +#: actions/apioauthauthorize.php:334 +msgid "Allow" +msgstr "Tillåt" + +#: actions/apioauthauthorize.php:351 +msgid "Allow or deny access to your account information." +msgstr "Tillåt eller neka åtkomst till din kontoinformation." + #: actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." msgstr "Denna metod kräver en POST eller en DELETE." @@ -446,34 +610,34 @@ msgstr "Status borttagen." msgid "No status with that ID found." msgstr "Ingen status med det ID:t hittades." -#: actions/apistatusesupdate.php:157 actions/newnotice.php:155 +#: actions/apistatusesupdate.php:161 actions/newnotice.php:155 #: lib/mailhandler.php:60 #, php-format msgid "That's too long. Max notice size is %d chars." msgstr "Det är för långt. Maximal notisstorlek är %d tecken." -#: actions/apistatusesupdate.php:198 +#: actions/apistatusesupdate.php:202 msgid "Not found" msgstr "Hittades inte" -#: actions/apistatusesupdate.php:221 actions/newnotice.php:178 +#: actions/apistatusesupdate.php:225 actions/newnotice.php:178 #, php-format msgid "Max notice size is %d chars, including attachment URL." -msgstr "Maximal notisstorlek är %d tecken, inklusive bilage-URL." +msgstr "Maximal notisstorlek är %d tecken, inklusive URL för bilaga." #: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 msgid "Unsupported format." msgstr "Format som inte stödjs." #: actions/apitimelinefavorites.php:108 -#, fuzzy, php-format +#, php-format msgid "%1$s / Favorites from %2$s" -msgstr "%s / Favoriter från %s" +msgstr "%1$s / Favoriter från %2$s" -#: actions/apitimelinefavorites.php:120 -#, fuzzy, php-format +#: actions/apitimelinefavorites.php:117 +#, php-format msgid "%1$s updates favorited by %2$s / %2$s." -msgstr "%s uppdateringar markerade som favorit av %s / %s." +msgstr "%1$s uppdateringar markerade som favorit av %2$s / %2$s." #: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 #: actions/grouprss.php:131 actions/userrss.php:90 @@ -481,7 +645,7 @@ msgstr "%s uppdateringar markerade som favorit av %s / %s." msgid "%s timeline" msgstr "%s tidslinje" -#: actions/apitimelinegroup.php:117 actions/apitimelineuser.php:126 +#: actions/apitimelinegroup.php:114 actions/apitimelineuser.php:126 #: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" @@ -497,27 +661,22 @@ msgstr "%1$s / Uppdateringar som nämner %2$s" msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "%1$s uppdateringar med svar på uppdatering från %2$s / %3$s." -#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "%s publika tidslinje" -#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "%s uppdateringar från alla!" -#: actions/apitimelineretweetedbyme.php:112 -#, php-format -msgid "Repeated by %s" -msgstr "Upprepat av %s" - #: actions/apitimelineretweetedtome.php:111 #, php-format msgid "Repeated to %s" msgstr "Upprepat till %s" -#: actions/apitimelineretweetsofme.php:112 +#: actions/apitimelineretweetsofme.php:114 #, php-format msgid "Repeats of %s" msgstr "Upprepningar av %s" @@ -527,7 +686,7 @@ msgstr "Upprepningar av %s" msgid "Notices tagged with %s" msgstr "Notiser taggade med %s" -#: actions/apitimelinetag.php:108 actions/tagrss.php:64 +#: actions/apitimelinetag.php:104 actions/tagrss.php:64 #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Uppdateringar taggade med %1$s på %2$s!" @@ -588,8 +747,8 @@ msgstr "Orginal" msgid "Preview" msgstr "Förhandsgranska" -#: actions/avatarsettings.php:149 lib/deleteuserform.php:66 -#: lib/noticelist.php:611 +#: actions/avatarsettings.php:149 actions/showapplication.php:252 +#: lib/deleteuserform.php:66 lib/noticelist.php:637 msgid "Delete" msgstr "Ta bort" @@ -601,29 +760,6 @@ msgstr "Ladda upp" msgid "Crop" msgstr "Beskär" -#: actions/avatarsettings.php:268 actions/deletenotice.php:157 -#: actions/disfavor.php:74 actions/emailsettings.php:238 actions/favor.php:75 -#: actions/geocode.php:50 actions/groupblock.php:66 actions/grouplogo.php:309 -#: actions/groupunblock.php:66 actions/imsettings.php:206 -#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 -#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 -#: actions/othersettings.php:145 actions/passwordsettings.php:138 -#: actions/profilesettings.php:194 actions/recoverpassword.php:337 -#: actions/register.php:165 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 -#: actions/subscribe.php:46 actions/tagother.php:166 -#: 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 ett problem med din sessions-token. Var vänlig försök igen." - -#: actions/avatarsettings.php:281 actions/designadminpanel.php:103 -#: actions/emailsettings.php:256 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 inskick av formulär." - #: actions/avatarsettings.php:328 msgid "Pick a square area of the image to be your avatar" msgstr "Välj ett kvadratiskt område i bilden som din avatar" @@ -662,8 +798,9 @@ msgstr "" "prenumeration på dig tas bort, de kommer inte kunna prenumerera på dig i " "framtiden och du kommer inte bli underrättad om några @-svar från dem." -#: actions/block.php:143 actions/deletenotice.php:145 -#: actions/deleteuser.php:147 actions/groupblock.php:178 +#: actions/block.php:143 actions/deleteapplication.php:153 +#: actions/deletenotice.php:145 actions/deleteuser.php:147 +#: actions/groupblock.php:178 msgid "No" msgstr "Nej" @@ -671,13 +808,13 @@ msgstr "Nej" msgid "Do not block this user" msgstr "Blockera inte denna användare" -#: actions/block.php:144 actions/deletenotice.php:146 -#: actions/deleteuser.php:148 actions/groupblock.php:179 -#: lib/repeatform.php:132 +#: actions/block.php:144 actions/deleteapplication.php:158 +#: actions/deletenotice.php:146 actions/deleteuser.php:148 +#: actions/groupblock.php:179 lib/repeatform.php:132 msgid "Yes" msgstr "Ja" -#: actions/block.php:144 actions/groupmembers.php:346 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80 msgid "Block this user" msgstr "Blockera denna användare" @@ -701,9 +838,9 @@ msgid "%s blocked profiles" msgstr "%s blockerade profiler" #: actions/blockedfromgroup.php:93 -#, fuzzy, php-format +#, php-format msgid "%1$s blocked profiles, page %2$d" -msgstr "%s blockerade profiler, sida %d" +msgstr "%1$s blockerade profiler, sida %2$d" #: actions/blockedfromgroup.php:108 msgid "A list of the users blocked from joining this group." @@ -761,7 +898,7 @@ msgid "Couldn't delete email confirmation." msgstr "Kunde inte ta bort e-postbekräftelse." #: actions/confirmaddress.php:144 -msgid "Confirm Address" +msgid "Confirm address" msgstr "Bekräfta adress" #: actions/confirmaddress.php:159 @@ -778,10 +915,51 @@ msgstr "Konversationer" msgid "Notices" msgstr "Notiser" +#: actions/deleteapplication.php:63 +msgid "You must be logged in to delete an application." +msgstr "Du måste vara inloggad för att ta bort en applikation." + +#: actions/deleteapplication.php:71 +msgid "Application not found." +msgstr "Applikation hittades inte." + +#: actions/deleteapplication.php:78 actions/editapplication.php:77 +#: actions/showapplication.php:94 +msgid "You are not the owner of this application." +msgstr "Du är inte ägaren av denna applikation." + +#: actions/deleteapplication.php:102 actions/editapplication.php:127 +#: actions/newapplication.php:110 actions/showapplication.php:118 +#: lib/action.php:1197 +msgid "There was a problem with your session token." +msgstr "Det var ett problem med din sessions-token." + +#: actions/deleteapplication.php:123 actions/deleteapplication.php:147 +msgid "Delete application" +msgstr "Ta bort applikation" + +#: actions/deleteapplication.php:149 +msgid "" +"Are you sure you want to delete this application? This will clear all data " +"about the application from the database, including all existing user " +"connections." +msgstr "" +"Är du säker på att du vill ta bort denna applikation? Detta kommer rensa " +"bort all data om applikationen från databasen, inklusive alla befintliga " +"användaranslutningar." + +#: actions/deleteapplication.php:156 +msgid "Do not delete this application" +msgstr "Ta inte bort denna applikation" + +#: actions/deleteapplication.php:160 +msgid "Delete this application" +msgstr "Ta bort denna applikation" + #: 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/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 #: lib/adminpanelaction.php:72 lib/profileformaction.php:63 #: lib/settingsaction.php:72 @@ -812,7 +990,7 @@ msgstr "Är du säker på att du vill ta bort denna notis?" msgid "Do not delete this notice" msgstr "Ta inte bort denna notis" -#: actions/deletenotice.php:146 lib/noticelist.php:611 +#: actions/deletenotice.php:146 lib/noticelist.php:637 msgid "Delete this notice" msgstr "Ta bort denna notis" @@ -944,16 +1122,6 @@ msgstr "Återställ standardutseende" msgid "Reset back to default" msgstr "Återställ till standardvärde" -#: actions/designadminpanel.php:586 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 -#: actions/pathsadminpanel.php:324 actions/profilesettings.php:174 -#: actions/siteadminpanel.php:388 actions/smssettings.php:181 -#: actions/subscriptions.php:203 actions/tagother.php:154 -#: actions/useradminpanel.php:313 lib/designsettings.php:256 -#: lib/groupeditform.php:202 -msgid "Save" -msgstr "Spara" - #: actions/designadminpanel.php:587 lib/designsettings.php:257 msgid "Save design" msgstr "Spara utseende" @@ -966,9 +1134,75 @@ msgstr "Denna notis är inte en favorit!" msgid "Add to favorites" msgstr "Lägg till i favoriter" -#: actions/doc.php:69 -msgid "No such document." -msgstr "Inget sådant dokument." +#: actions/doc.php:158 +#, php-format +msgid "No such document \"%s\"" +msgstr "Inget sådant dokument \"%s\"" + +#: actions/editapplication.php:54 +msgid "Edit Application" +msgstr "Redigera applikation" + +#: actions/editapplication.php:66 +msgid "You must be logged in to edit an application." +msgstr "Du måste vara inloggad för att redigera en applikation." + +#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:166 +#: actions/showapplication.php:87 +msgid "No such application." +msgstr "Ingen sådan applikation." + +#: actions/editapplication.php:161 +msgid "Use this form to edit your application." +msgstr "Använd detta formulär för att redigera din applikation." + +#: actions/editapplication.php:177 actions/newapplication.php:159 +msgid "Name is required." +msgstr "Namn krävs." + +#: actions/editapplication.php:180 actions/newapplication.php:165 +msgid "Name is too long (max 255 chars)." +msgstr "Namnet är för långt (max 255 tecken)." + +#: actions/editapplication.php:183 actions/newapplication.php:162 +msgid "Name already in use. Try another one." +msgstr "Namnet används redan. Prova ett annat." + +#: actions/editapplication.php:186 actions/newapplication.php:168 +msgid "Description is required." +msgstr "Beskrivning krävs." + +#: actions/editapplication.php:194 +msgid "Source URL is too long." +msgstr "URL till källa är för lång." + +#: actions/editapplication.php:200 actions/newapplication.php:185 +msgid "Source URL is not valid." +msgstr "URL till källa är inte giltig." + +#: actions/editapplication.php:203 actions/newapplication.php:188 +msgid "Organization is required." +msgstr "Organisation krävs." + +#: actions/editapplication.php:206 actions/newapplication.php:191 +msgid "Organization is too long (max 255 chars)." +msgstr "Organisation är för lång (max 255 tecken)." + +#: actions/editapplication.php:209 actions/newapplication.php:194 +msgid "Organization homepage is required." +msgstr "Hemsida för organisation krävs." + +#: actions/editapplication.php:218 actions/newapplication.php:206 +msgid "Callback is too long." +msgstr "Anrop är för lång." + +#: actions/editapplication.php:225 actions/newapplication.php:215 +msgid "Callback URL is not valid." +msgstr "URL för anrop är inte giltig." + +#: actions/editapplication.php:258 +msgid "Could not update application." +msgstr "Kunde inte uppdatera applikation." #: actions/editgroup.php:56 #, php-format @@ -981,9 +1215,8 @@ msgstr "Du måste vara inloggad för att skapa en grupp." #: 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 redigera gruppen" +msgstr "Du måste vara en administratör för att redigera gruppen." #: actions/editgroup.php:154 msgid "Use this form to edit the group." @@ -998,7 +1231,7 @@ msgstr "beskrivning är för lång (max %d tecken)." msgid "Could not update group." msgstr "Kunde inte uppdatera grupp." -#: actions/editgroup.php:259 classes/User_group.php:390 +#: actions/editgroup.php:259 classes/User_group.php:433 msgid "Could not create aliases." msgstr "Kunde inte skapa alias." @@ -1007,7 +1240,6 @@ msgid "Options saved." msgstr "Alternativ sparade." #: actions/emailsettings.php:60 -#, fuzzy msgid "Email settings" msgstr "E-postinställningar" @@ -1040,14 +1272,14 @@ msgstr "" "skräppostkorg!) efter ett meddelande med vidare instruktioner." #: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 +#: actions/smssettings.php:126 lib/applicationeditform.php:331 +#: lib/applicationeditform.php:332 msgid "Cancel" msgstr "Avbryt" #: actions/emailsettings.php:121 -#, fuzzy msgid "Email address" -msgstr "E-postadresser" +msgstr "E-postadress" #: actions/emailsettings.php:123 msgid "Email address, like \"UserName@example.org\"" @@ -1122,19 +1354,19 @@ msgid "Cannot normalize that email address" msgstr "Kan inte normalisera den e-postadressen" #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:157 +#: actions/siteadminpanel.php:143 msgid "Not a valid email address." msgstr "Inte en giltig e-postadress." #: actions/emailsettings.php:334 msgid "That is already your email address." -msgstr "Detta är redan din e-postadress." +msgstr "Det är redan din e-postadress." #: actions/emailsettings.php:337 msgid "That email address already belongs to another user." msgstr "Den e-postadressen tillhör redan en annan användare." -#: actions/emailsettings.php:353 actions/imsettings.php:317 +#: actions/emailsettings.php:353 actions/imsettings.php:319 #: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." msgstr "Kunde inte infoga bekräftelsekod." @@ -1164,7 +1396,7 @@ msgstr "Bekräftelse avbruten." #: actions/emailsettings.php:413 msgid "That is not your email address." -msgstr "Detta är inte din e-postadress." +msgstr "Det är inte din e-postadress." #: actions/emailsettings.php:432 actions/imsettings.php:408 #: actions/smssettings.php:425 @@ -1196,7 +1428,7 @@ msgstr "Denna notis är redan en favorit!" msgid "Disfavor favorite" msgstr "Ta bort märkning som favorit" -#: actions/favorited.php:65 lib/popularnoticesection.php:88 +#: actions/favorited.php:65 lib/popularnoticesection.php:91 #: lib/publicgroupnav.php:93 msgid "Popular notices" msgstr "Populära notiser" @@ -1221,8 +1453,8 @@ msgid "" "Be the first to add a notice to your favorites by clicking the fave button " "next to any notice you like." msgstr "" -"Bli först att lägga en notis till dina favoriter genom att klicka på favorit-" -"knappen bredvid någon notis du gillar." +"Var den första att lägga en notis till dina favoriter genom att klicka på " +"favorit-knappen bredvid någon notis du gillar." #: actions/favorited.php:156 #, php-format @@ -1230,8 +1462,8 @@ msgid "" "Why not [register an account](%%action.register%%) and be the first to add a " "notice to your favorites!" msgstr "" -"Varför inte [registrera ett konto](%%action.register%%) och bli först att " -"lägga en notis till dina favoriter!" +"Varför inte [registrera ett konto](%%action.register%%) och vara först med " +"att lägga en notis till dina favoriter!" #: actions/favoritesrss.php:111 actions/showfavorites.php:77 #: lib/personalgroupnav.php:115 @@ -1297,7 +1529,7 @@ msgstr "Du har inte tillstånd." #: actions/finishremotesubscribe.php:113 msgid "Could not convert request token to access token." -msgstr "Kunde inte konvertera förfrågnings-token till access-token." +msgstr "Kunde inte konvertera token för begäran till token för åtkomst." #: actions/finishremotesubscribe.php:118 msgid "Remote service uses unknown version of OMB protocol." @@ -1344,20 +1576,20 @@ msgstr "Användaren är redan blockerad från grupp." msgid "User is not a member of group." msgstr "Användare är inte en gruppmedlem." -#: actions/groupblock.php:136 actions/groupmembers.php:314 +#: actions/groupblock.php:136 actions/groupmembers.php:316 msgid "Block user from group" msgstr "Blockera användare från grupp" #: actions/groupblock.php:162 -#, fuzzy, php-format +#, php-format msgid "" "Are you sure you want to block user \"%1$s\" from the group \"%2$s\"? They " "will be removed from the group, unable to post, and unable to subscribe to " "the group in the future." msgstr "" -"Är du säker på att du vill blockera användare \"%s\" från gruppen \"%s\"? De " -"kommer bli borttagna från gruppen, inte kunna posta och inte kunna " -"prenumerera på gruppen i framtiden." +"Är du säker på att du vill blockera användare \"%1$s\" från gruppen \"%2$s" +"\"? De kommer bli borttagna från gruppen, inte kunna skriva till och inte " +"kunna prenumerera på gruppen i framtiden." #: actions/groupblock.php:178 msgid "Do not block this user from this group" @@ -1412,9 +1644,8 @@ msgstr "" "s." #: actions/grouplogo.php:178 -#, fuzzy msgid "User without matching profile." -msgstr "Användare utan matchande profil" +msgstr "Användare utan matchande profil." #: actions/grouplogo.php:362 msgid "Pick a square area of the image to be the logo." @@ -1434,31 +1665,31 @@ msgid "%s group members" msgstr "%s gruppmedlemmar" #: actions/groupmembers.php:96 -#, fuzzy, php-format +#, php-format msgid "%1$s group members, page %2$d" -msgstr "%s gruppmedlemmar, sida %d" +msgstr "%1$s gruppmedlemmar, sida %2$d" #: actions/groupmembers.php:111 msgid "A list of the users in this group." msgstr "En lista av användarna i denna grupp." -#: actions/groupmembers.php:175 lib/action.php:442 lib/groupnav.php:107 +#: actions/groupmembers.php:175 lib/action.php:448 lib/groupnav.php:107 msgid "Admin" msgstr "Administratör" -#: actions/groupmembers.php:346 lib/blockform.php:69 +#: actions/groupmembers.php:348 lib/blockform.php:69 msgid "Block" msgstr "Blockera" -#: actions/groupmembers.php:441 +#: actions/groupmembers.php:443 msgid "Make user an admin of the group" msgstr "Gör användare till en administratör för gruppen" -#: actions/groupmembers.php:473 +#: actions/groupmembers.php:475 msgid "Make Admin" msgstr "Gör till administratör" -#: actions/groupmembers.php:473 +#: actions/groupmembers.php:475 msgid "Make this user an admin" msgstr "Gör denna användare till administratör" @@ -1486,9 +1717,9 @@ msgid "" "for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" "%%%%)" msgstr "" -"%%%%site.name%%%% grupper låter dig hitta och prata med personer med " +"%%%%site.name%%%% grupper låter dig hitta och samtala med personer med " "liknande intressen. Efter att ha gått med i en grupp kan du skicka " -"meddelanden till alla andra medlemmar mha. syntaxen \"!gruppnamn\". Ser du " +"meddelanden till alla andra medlemmar mha syntaxen \"!gruppnamn\". Ser du " "inte någon grupp du gillar? Prova att [söka efter en](%%%%action.groupsearch%" "%%%) eller [starta din egen!](%%%%action.newgroup%%%%)" @@ -1546,9 +1777,8 @@ msgid "Error removing the block." msgstr "Fel vid hävning av blockering." #: actions/imsettings.php:59 -#, fuzzy msgid "IM settings" -msgstr "IM-inställningar" +msgstr "Inställningar för snabbmeddelanden" #: actions/imsettings.php:70 #, php-format @@ -1556,7 +1786,7 @@ 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 notiser genom Jabber/GTalk [snabbmeddelanden](%%" +"Du kan skicka och ta emot notiser genom Jabber/GTalk-[snabbmeddelanden](%%" "doc.im%%). Konfigurera din adress och dina inställningar nedan." #: actions/imsettings.php:89 @@ -1573,13 +1803,12 @@ 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 av denna adress. Kontrollera ditt Jabber/GTalk-konto för " -"vidare instruktioner. (La du till %s i din kompislista?)" +"Väntar på bekräftelse för denna adress. Kontrollera ditt Jabber/GTalk-konto " +"för vidare instruktioner. (La du till %s i din kompislista?)" #: actions/imsettings.php:124 -#, fuzzy msgid "IM address" -msgstr "IM-adress" +msgstr "Adress för snabbmeddelanden" #: actions/imsettings.php:126 #, php-format @@ -1587,8 +1816,8 @@ 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ändarnamn@example.org\". Se först " -"till att lägga till %s i din kompislista i din IM-klient eller hos GTalk." +"Jabber- eller GTalk-adress, som \"användarnamn@example.org\". Se först till " +"att lägga till %s i din kompislista i din IM-klient eller hos GTalk." #: actions/imsettings.php:143 msgid "Send me notices through Jabber/GTalk." @@ -1634,13 +1863,18 @@ 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 du angav. Du måste " -"godkänna att %s får skicka meddelanden till dig." +"En bekräftelsekod skickades till den IM-adress du angav. Du måste godkänna " +"att %s får skicka meddelanden till dig." #: actions/imsettings.php:387 msgid "That is not your Jabber ID." msgstr "Detta är inte ditt Jabber-ID." +#: actions/inbox.php:59 +#, php-format +msgid "Inbox for %1$s - page %2$d" +msgstr "Inkorg för %1$s - sida %2$d" + #: actions/inbox.php:62 #, php-format msgid "Inbox for %s" @@ -1705,8 +1939,8 @@ msgstr "" 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 " -"webbplats." +"Använd detta formulär för att bjuda in dina vänner och kollegor att använda " +"denna tjänst." #: actions/invite.php:187 msgid "Email addresses" @@ -1724,7 +1958,7 @@ msgstr "Personligt meddelande" msgid "Optionally add a personal message to the invitation." msgstr "Om du vill, skriv ett personligt meddelande till inbjudan." -#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:237 +#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:236 msgid "Send" msgstr "Skicka" @@ -1763,15 +1997,41 @@ msgid "" "\n" "Sincerely, %2$s\n" msgstr "" +"%1$s har bjudit in dig till dem på %2$s (%3$s).\n" +"\n" +"%2$s är en mikrobloggtjänst som låter dig hålla dig uppdaterad med folk du " +"känner och folk som intresserar dig . \n" +"\n" +"Du kan också dela nyheter om dig själv, dina tankar, eller ditt liv online " +"med folk som känner till dig. Det är också bra för att träffa nya människor " +"som delar dina intressen.\n" +"\n" +"%1$s sa:\n" +"\n" +"%4$s\n" +"\n" +"Du kan se %1$ss profilsida på %2$s här: \n" +"\n" +"%5$s\n" +"\n" +"Om du vill prova tjänsten, klicka på länken nedan för att acceptera " +"inbjudan. \n" +"\n" +"%6$s\n" +"\n" +"Om inte, kan du bortse från detta meddelande. Tack för ditt tålamod och din " +"tid\n" +"\n" +"Vänliga hälsningar, %2$s\n" #: actions/joingroup.php:60 msgid "You must be logged in to join a group." msgstr "Du måste vara inloggad för att kunna gå med i en grupp." #: actions/joingroup.php:131 -#, fuzzy, php-format +#, php-format msgid "%1$s joined group %2$s" -msgstr "%s gick med i grupp %s" +msgstr "%1$s gick med i grupp %2$s" #: actions/leavegroup.php:60 msgid "You must be logged in to leave a group." @@ -1782,9 +2042,9 @@ msgid "You are not a member of that group." msgstr "Du är inte en medlem i den gruppen." #: actions/leavegroup.php:127 -#, fuzzy, php-format +#, php-format msgid "%1$s left group %2$s" -msgstr "%s lämnade grupp %s" +msgstr "%1$s lämnade grupp %2$s" #: actions/login.php:80 actions/otp.php:62 actions/register.php:137 msgid "Already logged in." @@ -1798,7 +2058,7 @@ msgstr "Felaktigt användarnamn eller lösenord." msgid "Error setting user. You are probably not authorized." msgstr "Fel vid inställning av användare. Du har sannolikt inte tillstånd." -#: actions/login.php:188 actions/login.php:241 lib/action.php:460 +#: actions/login.php:188 actions/login.php:241 lib/action.php:466 #: lib/logingroupnav.php:79 msgid "Login" msgstr "Logga in" @@ -1807,17 +2067,6 @@ msgstr "Logga in" msgid "Login to site" msgstr "Logga in på webbplatsen" -#: actions/login.php:230 actions/profilesettings.php:106 -#: actions/register.php:424 actions/showgroup.php:236 actions/tagother.php:94 -#: lib/groupeditform.php:152 lib/userprofile.php:131 -msgid "Nickname" -msgstr "Smeknamn" - -#: actions/login.php:233 actions/register.php:429 -#: lib/accountsettingsaction.php:116 -msgid "Password" -msgstr "Lösenord" - #: actions/login.php:236 actions/register.php:478 msgid "Remember me" msgstr "Kom ihåg mig" @@ -1847,29 +2096,49 @@ msgstr "" "Logga in med ditt användarnamn och lösenord. Har du inget användarnamn ännu? " "[Registrera](%%action.register%%) ett nytt konto." -#: actions/makeadmin.php:91 +#: actions/makeadmin.php:92 msgid "Only an admin can make another user an admin." msgstr "Bara en administratör kan göra en annan användare till administratör." -#: actions/makeadmin.php:95 -#, fuzzy, php-format +#: actions/makeadmin.php:96 +#, php-format msgid "%1$s is already an admin for group \"%2$s\"." -msgstr "%s är redan en administratör för grupp \"%s\"." +msgstr "%1$s är redan en administratör för grupp \"%2$s\"." -#: actions/makeadmin.php:132 -#, fuzzy, php-format +#: actions/makeadmin.php:133 +#, php-format msgid "Can't get membership record for %1$s in group %2$s." -msgstr "Kan inte hämta uppgift om medlemskap för %s i grupp %s" +msgstr "Kan inte hämta uppgift om medlemskap för %1$s i grupp %2$s." -#: actions/makeadmin.php:145 -#, fuzzy, php-format +#: actions/makeadmin.php:146 +#, php-format msgid "Can't make %1$s an admin for group %2$s." -msgstr "Kan inte göra %s till en administratör för grupp %s" +msgstr "Kan inte göra %1$s till en administratör för grupp %2$s." #: actions/microsummary.php:69 msgid "No current status" msgstr "Ingen aktuell status" +#: actions/newapplication.php:52 +msgid "New Application" +msgstr "Ny applikation" + +#: actions/newapplication.php:64 +msgid "You must be logged in to register an application." +msgstr "Du måste vara inloggad för att registrera en applikation." + +#: actions/newapplication.php:143 +msgid "Use this form to register a new application." +msgstr "Använd detta formulär för att registrera en ny applikation." + +#: actions/newapplication.php:176 +msgid "Source URL is required." +msgstr "URL till källa krävs." + +#: actions/newapplication.php:258 actions/newapplication.php:267 +msgid "Could not create application." +msgstr "Kunde inte skapa applikation." + #: actions/newgroup.php:53 msgid "New group" msgstr "Ny grupp" @@ -1907,9 +2176,9 @@ msgid "Message sent" msgstr "Meddelande skickat" #: actions/newmessage.php:185 -#, fuzzy, php-format +#, php-format msgid "Direct message to %s sent." -msgstr "Direktmeddelande till %s skickat" +msgstr "Direktmeddelande till %s skickat." #: actions/newmessage.php:210 actions/newnotice.php:245 lib/channel.php:170 msgid "Ajax Error" @@ -1937,9 +2206,9 @@ msgid "Text search" msgstr "Textsökning" #: actions/noticesearch.php:91 -#, fuzzy, php-format +#, php-format msgid "Search results for \"%1$s\" on %2$s" -msgstr "Sökresultat för \"%s\" på %s" +msgstr "Sökresultat för \"%1$s\" på %2$s" #: actions/noticesearch.php:121 #, php-format @@ -1947,8 +2216,8 @@ msgid "" "Be the first to [post on this topic](%%%%action.newnotice%%%%?" "status_textarea=%s)!" msgstr "" -"Bli först att [posta i detta ämne](%%%%action.newnotice%%%%?status_textarea=%" -"s)!" +"Var den första att [skriva i detta ämne](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" #: actions/noticesearch.php:124 #, php-format @@ -1956,8 +2225,8 @@ msgid "" "Why not [register an account](%%%%action.register%%%%) and be the first to " "[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" msgstr "" -"Varför inte [registrera ett konto](%%%%action.register%%%%) och bli först " -"att [posta i detta ämne](%%%%action.newnotice%%%%?status_textarea=%s)!" +"Varför inte [registrera ett konto](%%%%action.register%%%%) och vara först " +"med att [skriva i detta ämne](%%%%action.newnotice%%%%?status_textarea=%s)!" #: actions/noticesearchrss.php:96 #, php-format @@ -1984,6 +2253,49 @@ msgstr "Knuff sänd" msgid "Nudge sent!" msgstr "Knuff sänd!" +#: actions/oauthappssettings.php:59 +msgid "You must be logged in to list your applications." +msgstr "Du måste vara inloggad för att lista dina applikationer." + +#: actions/oauthappssettings.php:74 +msgid "OAuth applications" +msgstr "OAuth-applikationer" + +#: actions/oauthappssettings.php:85 +msgid "Applications you have registered" +msgstr "Applikationer du har registrerat" + +#: actions/oauthappssettings.php:135 +#, php-format +msgid "You have not registered any applications yet." +msgstr "Du har inte registrerat några applikationer än." + +#: actions/oauthconnectionssettings.php:72 +msgid "Connected applications" +msgstr "Anslutna applikationer" + +#: actions/oauthconnectionssettings.php:83 +msgid "You have allowed the following applications to access you account." +msgstr "Du har tillåtit följande applikationer att komma åt ditt konto." + +#: actions/oauthconnectionssettings.php:175 +msgid "You are not a user of that application." +msgstr "Du är inte en användare av den applikationen." + +#: actions/oauthconnectionssettings.php:186 +msgid "Unable to revoke access for app: " +msgstr "Kunde inte återkalla åtkomst för applikation: " + +#: actions/oauthconnectionssettings.php:198 +#, php-format +msgid "You have not authorized any applications to use your account." +msgstr "Du har inte tillåtit några applikationer att använda ditt konto." + +#: actions/oauthconnectionssettings.php:211 +msgid "Developers can edit the registration settings for their applications " +msgstr "" +"Utvecklare kan redigera registreringsinställningarna för sina applikationer " + #: actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" msgstr "Notisen har ingen profil" @@ -2001,8 +2313,8 @@ msgstr "innehållstyp " msgid "Only " msgstr "Bara " -#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1033 -#: lib/api.php:1061 lib/api.php:1171 +#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 +#: lib/api.php:1068 lib/api.php:1177 msgid "Not a supported data format." msgstr "Ett dataformat som inte stödjs" @@ -2015,7 +2327,7 @@ msgid "Notice Search" msgstr "Notissökning" #: actions/othersettings.php:60 -msgid "Other Settings" +msgid "Other settings" msgstr "Övriga inställningar" #: actions/othersettings.php:71 @@ -2047,29 +2359,29 @@ msgid "URL shortening service is too long (max 50 chars)." msgstr "Namnet på URL-förkortningstjänsen är för långt (max 50 tecken)." #: actions/otp.php:69 -#, fuzzy msgid "No user ID specified." -msgstr "Ingen grupp angiven." +msgstr "Ingen användar-ID angiven." #: actions/otp.php:83 -#, fuzzy msgid "No login token specified." -msgstr "Ingen notis angiven." +msgstr "Ingen inloggnings-token angiven." #: actions/otp.php:90 -#, fuzzy msgid "No login token requested." -msgstr "Ingen profil-ID i begäran." +msgstr "Ingen token för inloggning begärd." #: actions/otp.php:95 -#, fuzzy msgid "Invalid login token specified." -msgstr "Ogiltig eller utgången token." +msgstr "Ogiltig inloggnings-token angiven." #: actions/otp.php:104 -#, fuzzy msgid "Login token expired." -msgstr "Logga in på webbplatsen" +msgstr "Inloggnings-token förfallen." + +#: actions/outbox.php:58 +#, php-format +msgid "Outbox for %1$s - page %2$d" +msgstr "Utkorg för %1$s - sida %2$d" #: actions/outbox.php:61 #, php-format @@ -2141,7 +2453,7 @@ msgstr "Kan inte spara nytt lösenord." msgid "Password saved." msgstr "Lösenord sparat." -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:326 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:331 msgid "Paths" msgstr "Sökvägar" @@ -2149,133 +2461,149 @@ msgstr "Sökvägar" msgid "Path and server settings for this StatusNet site." msgstr "Sökvägs- och serverinställningar för denna StatusNet-webbplats." -#: actions/pathsadminpanel.php:140 +#: actions/pathsadminpanel.php:157 #, php-format msgid "Theme directory not readable: %s" msgstr "Katalog med teman är inte läsbar: %s" -#: actions/pathsadminpanel.php:146 +#: actions/pathsadminpanel.php:163 #, php-format msgid "Avatar directory not writable: %s" msgstr "Katalog med avatarer är inte skrivbar: %s" -#: actions/pathsadminpanel.php:152 +#: actions/pathsadminpanel.php:169 #, php-format msgid "Background directory not writable: %s" msgstr "Katalog med bakgrunder är inte skrivbar: %s" -#: actions/pathsadminpanel.php:160 +#: actions/pathsadminpanel.php:177 #, php-format msgid "Locales directory not readable: %s" msgstr "Katalog med lokaliseringfiler (locales) är inte läsbar. %s" -#: actions/pathsadminpanel.php:166 +#: actions/pathsadminpanel.php:183 msgid "Invalid SSL server. The maximum length is 255 characters." msgstr "Ogiltigt SSL-servernamn. Den maximala längden är 255 tecken." -#: actions/pathsadminpanel.php:217 actions/siteadminpanel.php:58 +#: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58 #: lib/adminpanelaction.php:311 msgid "Site" msgstr "Webbplats" -#: actions/pathsadminpanel.php:221 +#: actions/pathsadminpanel.php:238 +msgid "Server" +msgstr "Server" + +#: actions/pathsadminpanel.php:238 +msgid "Site's server hostname." +msgstr "Värdnamn för webbplatsens server." + +#: actions/pathsadminpanel.php:242 msgid "Path" msgstr "Sökväg" -#: actions/pathsadminpanel.php:221 +#: actions/pathsadminpanel.php:242 msgid "Site path" msgstr "Sökväg till webbplats" -#: actions/pathsadminpanel.php:225 +#: actions/pathsadminpanel.php:246 msgid "Path to locales" msgstr "Sökväg till lokaliseringfiler (locales)" -#: actions/pathsadminpanel.php:225 +#: actions/pathsadminpanel.php:246 msgid "Directory path to locales" msgstr "Katalogsökväg till lokaliseringfiler (locales)" -#: actions/pathsadminpanel.php:232 +#: actions/pathsadminpanel.php:250 +msgid "Fancy URLs" +msgstr "Utsmyckade URL:er" + +#: actions/pathsadminpanel.php:252 +msgid "Use fancy (more readable and memorable) URLs?" +msgstr "" +"Skall utsmyckade URL:er användas (mer läsbara och lättare att komma ihåg)?" + +#: actions/pathsadminpanel.php:259 msgid "Theme" msgstr "Teman" -#: actions/pathsadminpanel.php:237 +#: actions/pathsadminpanel.php:264 msgid "Theme server" msgstr "Server med teman" -#: actions/pathsadminpanel.php:241 +#: actions/pathsadminpanel.php:268 msgid "Theme path" msgstr "Sökväg till teman" -#: actions/pathsadminpanel.php:245 +#: actions/pathsadminpanel.php:272 msgid "Theme directory" msgstr "Katalog med teman" -#: actions/pathsadminpanel.php:252 +#: actions/pathsadminpanel.php:279 msgid "Avatars" msgstr "Avatarer" -#: actions/pathsadminpanel.php:257 +#: actions/pathsadminpanel.php:284 msgid "Avatar server" msgstr "Server med avatarer" -#: actions/pathsadminpanel.php:261 +#: actions/pathsadminpanel.php:288 msgid "Avatar path" msgstr "Sökväg till avatarer" -#: actions/pathsadminpanel.php:265 +#: actions/pathsadminpanel.php:292 msgid "Avatar directory" msgstr "Katalog med avatarer" -#: actions/pathsadminpanel.php:274 +#: actions/pathsadminpanel.php:301 msgid "Backgrounds" msgstr "Bakgrunder" -#: actions/pathsadminpanel.php:278 +#: actions/pathsadminpanel.php:305 msgid "Background server" msgstr "Server med bakgrunder" -#: actions/pathsadminpanel.php:282 +#: actions/pathsadminpanel.php:309 msgid "Background path" msgstr "Sökväg till bakgrunder" -#: actions/pathsadminpanel.php:286 +#: actions/pathsadminpanel.php:313 msgid "Background directory" msgstr "Katalog med bakgrunder" -#: actions/pathsadminpanel.php:293 +#: actions/pathsadminpanel.php:320 msgid "SSL" msgstr "SSL" -#: actions/pathsadminpanel.php:296 actions/siteadminpanel.php:346 +#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 msgid "Never" msgstr "Aldrig" -#: actions/pathsadminpanel.php:297 +#: actions/pathsadminpanel.php:324 msgid "Sometimes" msgstr "Ibland" -#: actions/pathsadminpanel.php:298 +#: actions/pathsadminpanel.php:325 msgid "Always" msgstr "Alltid" -#: actions/pathsadminpanel.php:302 +#: actions/pathsadminpanel.php:329 msgid "Use SSL" msgstr "Använd SSL" -#: actions/pathsadminpanel.php:303 +#: actions/pathsadminpanel.php:330 msgid "When to use SSL" msgstr "När SSL skall användas" -#: actions/pathsadminpanel.php:308 -#, fuzzy +#: actions/pathsadminpanel.php:335 msgid "SSL server" msgstr "SSL-server" -#: actions/pathsadminpanel.php:309 +#: actions/pathsadminpanel.php:336 msgid "Server to direct SSL requests to" -msgstr "Server att dirigera SSL-förfrågningar till" +msgstr "Server att dirigera SSL-begäran till" -#: actions/pathsadminpanel.php:325 +#: actions/pathsadminpanel.php:352 msgid "Save paths" msgstr "Spara sökvägar" @@ -2298,18 +2626,18 @@ msgid "Not a valid people tag: %s" msgstr "Inte en giltig persontagg: %s" #: actions/peopletag.php:144 -#, fuzzy, php-format +#, php-format msgid "Users self-tagged with %1$s - page %2$d" -msgstr "Användare som taggat sig själv med %s - sida %d" +msgstr "Användare som taggat sig själv med %1$s - sida %2$d" #: actions/postnotice.php:84 msgid "Invalid notice content" msgstr "Ogiltigt notisinnehåll" #: actions/postnotice.php:90 -#, fuzzy, php-format +#, php-format msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’." -msgstr "Licensen för notiser ‘%s’ är inte förenlig webbplatslicensen ‘%s’." +msgstr "Licensen för notiser ‘%1$s’ är inte förenlig webbplatslicensen ‘%2$s’." #: actions/profilesettings.php:60 msgid "Profile settings" @@ -2319,8 +2647,8 @@ msgstr "Profilinställningar" msgid "" "You can update your personal profile info here so people know more about you." msgstr "" -"Du kan uppdatera din personliga profilinformation här så personer får veta " -"mer om dig." +"Du kan uppdatera din personliga profilinformation här så att folk vet mer om " +"dig." #: actions/profilesettings.php:99 msgid "Profile information" @@ -2337,7 +2665,7 @@ msgid "Full name" msgstr "Fullständigt namn" #: actions/profilesettings.php:115 actions/register.php:453 -#: lib/groupeditform.php:161 +#: lib/applicationeditform.php:228 lib/groupeditform.php:161 msgid "Homepage" msgstr "Hemsida" @@ -2360,7 +2688,7 @@ msgstr "Biografi" #: actions/profilesettings.php:132 actions/register.php:471 #: actions/showgroup.php:256 actions/tagother.php:112 -#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:164 msgid "Location" msgstr "Plats" @@ -2386,7 +2714,7 @@ msgstr "" "Taggar för dig själv (bokstäver, nummer, -, ., och _), separerade med " "kommatecken eller mellanslag" -#: actions/profilesettings.php:151 actions/siteadminpanel.php:294 +#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 msgid "Language" msgstr "Språk" @@ -2406,14 +2734,15 @@ msgstr "I vilken tidszon befinner du dig normalt?" msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)" msgstr "" -"Prenumerera automatiskt på den prenumererar på mig (bäst för icke-människa) " +"Prenumerera automatiskt på den som prenumererar på mig (bäst för icke-" +"människa) " #: actions/profilesettings.php:228 actions/register.php:223 #, php-format msgid "Bio is too long (max %d chars)." msgstr "Biografin är för lång (max %d tecken)." -#: actions/profilesettings.php:235 actions/siteadminpanel.php:164 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 msgid "Timezone not selected." msgstr "Tidszon inte valt." @@ -2426,23 +2755,23 @@ msgstr "Språknamn är för långt (max 50 tecken)." msgid "Invalid tag: \"%s\"" msgstr "Ogiltig tagg: \"%s\"" -#: actions/profilesettings.php:302 +#: actions/profilesettings.php:306 msgid "Couldn't update user for autosubscribe." msgstr "Kunde inte uppdatera användaren för automatisk prenumeration." -#: actions/profilesettings.php:359 +#: actions/profilesettings.php:363 msgid "Couldn't save location prefs." msgstr "Kunde inte spara platsinställningar." -#: actions/profilesettings.php:371 +#: actions/profilesettings.php:375 msgid "Couldn't save profile." msgstr "Kunde inte spara profil." -#: actions/profilesettings.php:379 +#: actions/profilesettings.php:383 msgid "Couldn't save tags." msgstr "Kunde inte spara taggar." -#: actions/profilesettings.php:387 lib/adminpanelaction.php:137 +#: actions/profilesettings.php:391 lib/adminpanelaction.php:137 msgid "Settings saved." msgstr "Inställningar sparade." @@ -2464,19 +2793,19 @@ msgstr "Publik tidslinje, sida %d" msgid "Public timeline" msgstr "Publik tidslinje" -#: actions/public.php:151 +#: actions/public.php:159 msgid "Public Stream Feed (RSS 1.0)" msgstr "Publikt flöde av ström (RSS 1.0)" -#: actions/public.php:155 +#: actions/public.php:163 msgid "Public Stream Feed (RSS 2.0)" msgstr "Publikt flöde av ström (RSS 2.0)" -#: actions/public.php:159 +#: actions/public.php:167 msgid "Public Stream Feed (Atom)" msgstr "Publikt flöde av ström (Atom)" -#: actions/public.php:179 +#: actions/public.php:187 #, php-format msgid "" "This is the public timeline for %%site.name%% but no one has posted anything " @@ -2485,11 +2814,11 @@ msgstr "" "Detta är den publika tidslinjen för %%site.name%% men ingen har postat något " "än." -#: actions/public.php:182 +#: actions/public.php:190 msgid "Be the first to post!" msgstr "Bli först att posta!" -#: actions/public.php:186 +#: actions/public.php:194 #, php-format msgid "" "Why not [register an account](%%action.register%%) and be the first to post!" @@ -2497,7 +2826,7 @@ msgstr "" "Varför inte [registrera ett konto](%%action.register%%) och bli först att " "posta!" -#: actions/public.php:233 +#: actions/public.php:241 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2505,20 +2834,20 @@ msgid "" "tool. [Join now](%%action.register%%) to share notices about yourself with " "friends, family, and colleagues! ([Read more](%%doc.help%%))" msgstr "" -"Detta är %%site.name%%, en [mikroblogg](http://en.wikipedia.org/wiki/Micro-" -"blogging)-tjänst baserad på den fria programvaran [StatusNet](http://status." +"Detta är %%site.name%%, en [mikroblogg](http://sv.wikipedia.org/wiki/" +"Mikroblogg)tjänst baserad på den fria programvaran [StatusNet](http://status." "net/). [Gå med nu](%%action.register%%) för att dela notiser om dig själv " "med vänner, familj och kollegor! ([Läs mer](%%doc.help%%))" -#: actions/public.php:238 +#: actions/public.php:246 #, 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 "" -"Detta är %%site.name%%, en [mikroblogg](http://en.wikipedia.org/wiki/Micro-" -"blogging)-tjänst baserad på den fria programvaran [StatusNet](http://status." +"Detta är %%site.name%%, en [mikroblogg](http://sv.wikipedia.org/wiki/" +"Mikroblogg)tjänst baserad på den fria programvaran [StatusNet](http://status." "net/)." #: actions/publictagcloud.php:57 @@ -2548,7 +2877,7 @@ msgstr "" "Varför inte [registrera ett konto](%%action.register%%) och bli först att " "posta en!" -#: actions/publictagcloud.php:131 +#: actions/publictagcloud.php:134 msgid "Tag cloud" msgstr "Taggmoln" @@ -2679,17 +3008,17 @@ msgstr "Nya lösenordet sparat. Du är nu inloggad." #: actions/register.php:85 actions/register.php:189 actions/register.php:405 msgid "Sorry, only invited people can register." -msgstr "Ledsen, bara inbjudna personer kan registrera sig." +msgstr "Tyvärr, bara inbjudna personer kan registrera sig." #: actions/register.php:92 msgid "Sorry, invalid invitation code." -msgstr "Ledsen, ogiltig inbjudningskod." +msgstr "Tyvärr, ogiltig inbjudningskod." #: actions/register.php:112 msgid "Registration successful" msgstr "Registreringen genomförd" -#: actions/register.php:114 actions/register.php:503 lib/action.php:457 +#: actions/register.php:114 actions/register.php:503 lib/action.php:463 #: lib/logingroupnav.php:85 msgid "Register" msgstr "Registrera" @@ -2733,7 +3062,7 @@ msgid "Same as password above. Required." msgstr "Samma som lösenordet ovan. Måste fyllas i." #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:270 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 msgid "Email" msgstr "E-post" @@ -2781,6 +3110,20 @@ msgid "" "\n" "Thanks for signing up and we hope you enjoy using this service." msgstr "" +"Grattis, %1$s! Och välkommen till %%%%site.name%%%%. Härifrån kan du...\n" +"\n" +"* Gå till [din profil](%2$s) och skicka ditt första meddelande.\n" +"* Lägg till en [Jabber/GTalk-adress](%%%%action.imsettings%%%%) så att du " +"kan skicka notiser via snabbmeddelanden.\n" +"* [Söka efter personer](%%%%action.peoplesearch%%%%) som du kanske känner " +"eller som delar dina intressen. \n" +"* Uppdatera dina [profilinställningar](%%%%action.profilesettings%%%%) för " +"att berätta mer om dig. \n" +"* Läs igenom [online-dokumentationen](%%%%doc.help%%%%) för funktioner du " +"kan ha missat. \n" +"\n" +"Tack för att du anmält dig och vi hoppas att du kommer tycka om att använda " +"denna tjänst." #: actions/register.php:562 msgid "" @@ -2827,7 +3170,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "URL till din profil på en annan kompatibel mikrobloggtjänst" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:365 +#: lib/userprofile.php:368 msgid "Subscribe" msgstr "Prenumerera" @@ -2847,7 +3190,7 @@ msgstr "Det där är en lokal profil! Logga in för att prenumerera." #: actions/remotesubscribe.php:183 msgid "Couldn’t get a request token." -msgstr "Kunde inte få en förfrågnings-token." +msgstr "Kunde inte få en token för begäran." #: actions/repeat.php:57 msgid "Only logged-in users can repeat notices." @@ -2865,7 +3208,7 @@ msgstr "Du kan inte upprepa din egna notis." msgid "You already repeated that notice." msgstr "Du har redan upprepat denna notis." -#: actions/repeat.php:114 lib/noticelist.php:629 +#: actions/repeat.php:114 lib/noticelist.php:656 msgid "Repeated" msgstr "Upprepad" @@ -2879,6 +3222,11 @@ msgstr "Upprepad!" msgid "Replies to %s" msgstr "Svarat till %s" +#: actions/replies.php:127 +#, php-format +msgid "Replies to %1$s, page %2$d" +msgstr "Svar till %1$s, sida %2$s" + #: actions/replies.php:144 #, php-format msgid "Replies feed for %s (RSS 1.0)" @@ -2895,12 +3243,12 @@ msgid "Replies feed for %s (Atom)" msgstr "Flöde med svar för %s (Atom)" #: actions/replies.php:198 -#, fuzzy, php-format +#, php-format msgid "" "This is the timeline showing replies to %1$s but %2$s hasn't received a " "notice to his attention yet." msgstr "" -"Detta är tidslinjen som visar svar till %s men %s har inte tagit emot en " +"Detta är tidslinjen som visar svar till %s1$ men %2$s har inte tagit emot en " "notis för dennes uppmärksamhet än." #: actions/replies.php:203 @@ -2913,19 +3261,23 @@ msgstr "" "personer eller [gå med i grupper](%%action.groups%%)." #: actions/replies.php:205 -#, fuzzy, php-format +#, php-format msgid "" "You can try to [nudge %1$s](../%2$s) or [post something to his or her " "attention](%%%%action.newnotice%%%%?status_textarea=%3$s)." msgstr "" -"Du kan prova att [knuffa %s](../%s) eller [posta någonting för hans eller " -"hennes uppmärksamhet](%%%%action.newnotice%%%%?status_textarea=%s)." +"Du kan prova att [knuffa %1$s](../%2$s) eller [posta någonting för hans " +"eller hennes uppmärksamhet](%%%%action.newnotice%%%%?status_textarea=%3$s)." #: actions/repliesrss.php:72 #, php-format msgid "Replies to %1$s on %2$s!" msgstr "Svar till %1$s på %2$s" +#: actions/rsd.php:146 actions/version.php:157 +msgid "StatusNet" +msgstr "StatusNet" + #: actions/sandbox.php:65 actions/unsandbox.php:65 msgid "You cannot sandbox users on this site." msgstr "Du kan inte flytta användare till sandlådan på denna webbplats." @@ -2934,6 +3286,122 @@ msgstr "Du kan inte flytta användare till sandlådan på denna webbplats." msgid "User is already sandboxed." msgstr "Användare är redan flyttad till sandlådan." +#: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:336 +msgid "Sessions" +msgstr "Sessioner" + +#: actions/sessionsadminpanel.php:65 +msgid "Session settings for this StatusNet site." +msgstr "Sessionsinställningar för denna StatusNet-webbplats." + +#: actions/sessionsadminpanel.php:175 +msgid "Handle sessions" +msgstr "Hantera sessioner" + +#: actions/sessionsadminpanel.php:177 +msgid "Whether to handle sessions ourselves." +msgstr "Hurvida sessioner skall hanteras av oss själva." + +#: actions/sessionsadminpanel.php:181 +msgid "Session debugging" +msgstr "Sessionsfelsökning" + +#: actions/sessionsadminpanel.php:183 +msgid "Turn on debugging output for sessions." +msgstr "Sätt på felsökningsutdata för sessioner." + +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/useradminpanel.php:293 +msgid "Save site settings" +msgstr "Spara webbplatsinställningar" + +#: actions/showapplication.php:82 +msgid "You must be logged in to view an application." +msgstr "Du måste vara inloggad för att se en applikation." + +#: actions/showapplication.php:157 +msgid "Application profile" +msgstr "Applikationsprofil" + +#: actions/showapplication.php:159 lib/applicationeditform.php:180 +msgid "Icon" +msgstr "Ikon" + +#: actions/showapplication.php:169 actions/version.php:195 +#: lib/applicationeditform.php:195 +msgid "Name" +msgstr "Namn" + +#: actions/showapplication.php:178 lib/applicationeditform.php:222 +msgid "Organization" +msgstr "Organisation" + +#: actions/showapplication.php:187 actions/version.php:198 +#: lib/applicationeditform.php:209 lib/groupeditform.php:172 +msgid "Description" +msgstr "Beskrivning" + +#: actions/showapplication.php:192 actions/showgroup.php:429 +#: lib/profileaction.php:174 +msgid "Statistics" +msgstr "Statistik" + +#: actions/showapplication.php:203 +#, php-format +msgid "Created by %1$s - %2$s access by default - %3$d users" +msgstr "Skapad av %1$s - %2$s standardåtkomst - %3$d användare" + +#: actions/showapplication.php:213 +msgid "Application actions" +msgstr "Åtgärder för applikation" + +#: actions/showapplication.php:236 +msgid "Reset key & secret" +msgstr "Återställ nyckel & hemlighet" + +#: actions/showapplication.php:261 +msgid "Application info" +msgstr "Information om applikation" + +#: actions/showapplication.php:263 +msgid "Consumer key" +msgstr "Nyckel för konsument" + +#: actions/showapplication.php:268 +msgid "Consumer secret" +msgstr "Hemlighet för konsument" + +#: actions/showapplication.php:273 +msgid "Request token URL" +msgstr "URL för begäran-token" + +#: actions/showapplication.php:278 +msgid "Access token URL" +msgstr "URL för åtkomst-token" + +#: actions/showapplication.php:283 +msgid "Authorize URL" +msgstr "Tillåt URL" + +#: actions/showapplication.php:288 +msgid "" +"Note: We support HMAC-SHA1 signatures. We do not support the plaintext " +"signature method." +msgstr "" +"Notera: Vi stöjder HMAC-SHA1-signaturer. Vi stödjer inte metoden med " +"klartextsignatur." + +#: actions/showapplication.php:309 +msgid "Are you sure you want to reset your consumer key and secret?" +msgstr "" +"Är du säker på att du vill återställa din konsumentnyckel och -hemlighet?" + +#: actions/showfavorites.php:79 +#, php-format +msgid "%1$s's favorite notices, page %2$d" +msgstr "%1$ss favoritnotiser, sida %2$d" + #: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "Kunde inte hämta favoritnotiser." @@ -2958,6 +3426,9 @@ 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 "" +"Du har inte valt några favoritnotiser ännu. Klicka på favorit-knappen " +"bredvid någon notis du skulle vilja bokmärka för senare tillfälle eller för " +"att sätta strålkastarljuset på." #: actions/showfavorites.php:207 #, php-format @@ -2965,6 +3436,8 @@ msgid "" "%s hasn't added any notices to his favorites yet. Post something interesting " "they would add to their favorites :)" msgstr "" +"%s har inte lagt till några notiser till sina favoriter ännu. Posta något " +"intressant de skulle lägga till sina favoriter :)" #: actions/showfavorites.php:211 #, php-format @@ -2973,27 +3446,35 @@ msgid "" "account](%%%%action.register%%%%) and then post something interesting they " "would add to their favorites :)" msgstr "" +"%s har inte lagt till några notiser till sina favoriter ännu. Varför inte " +"[registrera ett konto](%%%%action.register%%%%) och posta något intressant " +"de skulle lägga till sina favoriter :)" #: actions/showfavorites.php:242 msgid "This is a way to share what you like." -msgstr "Detta är ett sätt att dela vad du gillar." +msgstr "Detta är ett sätt att dela med av det du gillar." #: actions/showgroup.php:82 lib/groupnav.php:86 #, php-format msgid "%s group" msgstr "%s grupp" +#: actions/showgroup.php:84 +#, php-format +msgid "%1$s group, page %2$d" +msgstr "%1$s grupp, sida %2$d" + #: actions/showgroup.php:218 msgid "Group profile" msgstr "Grupprofil" #: actions/showgroup.php:263 actions/tagother.php:118 -#: actions/userauthorization.php:167 lib/userprofile.php:177 +#: actions/userauthorization.php:175 lib/userprofile.php:177 msgid "URL" msgstr "URL" #: actions/showgroup.php:274 actions/tagother.php:128 -#: actions/userauthorization.php:179 lib/userprofile.php:194 +#: actions/userauthorization.php:187 lib/userprofile.php:194 msgid "Note" msgstr "Notis" @@ -3003,7 +3484,7 @@ msgstr "Alias" #: actions/showgroup.php:293 msgid "Group actions" -msgstr "Gruppåtgärder" +msgstr "Åtgärder för grupp" #: actions/showgroup.php:328 #, php-format @@ -3039,10 +3520,6 @@ msgstr "(Ingen)" msgid "All members" msgstr "Alla medlemmar" -#: actions/showgroup.php:429 lib/profileaction.php:174 -msgid "Statistics" -msgstr "Statistik" - #: actions/showgroup.php:432 msgid "Created" msgstr "Skapad" @@ -3056,8 +3533,8 @@ msgid "" "their life and interests. [Join now](%%%%action.register%%%%) to become part " "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -"**%s** är en användargrupp på %%%%site.name%%%%, en [mikroblogg](http://en." -"wikipedia.org/wiki/Micro-blogging)-tjänst baserad den fria programvaran " +"**%s** är en användargrupp på %%%%site.name%%%%, en [mikroblogg](http://sv." +"wikipedia.org/wiki/Mikroblogg)tjänst baserad den fria programvaran " "[StatusNet](http://status.net/). Dess medlemmar delar korta meddelande om " "sina liv och intressen. [Gå med nu](%%%%action.register%%%%) för att bli en " "del av denna grupp och många fler! ([Läs mer](%%%%doc.help%%%%))" @@ -3070,8 +3547,8 @@ msgid "" "[StatusNet](http://status.net/) tool. Its members share short messages about " "their life and interests. " msgstr "" -"**%s** är en användargrupp på %%%%site.name%%%%, en [mikroblogg](http://en." -"wikipedia.org/wiki/Micro-blogging)-tjänst baserad den fria programvaran " +"**%s** är en användargrupp på %%%%site.name%%%%, en [mikroblogg](http://sv." +"wikipedia.org/wiki/Mikroblogg)tjänst baserad den fria programvaran " "[StatusNet](http://status.net/). Dess medlemmar delar korta meddelande om " "sina liv och intressen. " @@ -3106,10 +3583,15 @@ msgstr "Notis borttagen." msgid " tagged %s" msgstr "taggade %s" +#: actions/showstream.php:79 +#, php-format +msgid "%1$s, page %2$d" +msgstr "%1$s, sida %2$d" + #: actions/showstream.php:122 -#, fuzzy, php-format +#, php-format msgid "Notice feed for %1$s tagged %2$s (RSS 1.0)" -msgstr "Flöde av notiser för %s taggade %s (RSS 1.0)" +msgstr "Flöde av notiser för %1$s taggade %2$s (RSS 1.0)" #: actions/showstream.php:129 #, php-format @@ -3131,12 +3613,12 @@ msgstr "Flöde av notiser för %s (Atom)" msgid "FOAF for %s" msgstr "FOAF för %s" -#: actions/showstream.php:191 -#, fuzzy, php-format +#: actions/showstream.php:200 +#, php-format msgid "This is the timeline for %1$s but %2$s hasn't posted anything yet." -msgstr "Detta är tidslinjen för %s men %s har inte postat något än." +msgstr "Detta är tidslinjen för %1$s men %2$s har inte postat något än." -#: actions/showstream.php:196 +#: actions/showstream.php:205 msgid "" "Seen anything interesting recently? You haven't posted any notices yet, now " "would be a good time to start :)" @@ -3144,16 +3626,16 @@ msgstr "" "Sett något intressant nyligen? Du har inte postat några notiser än. Varför " "inte börja nu?" -#: actions/showstream.php:198 -#, fuzzy, php-format +#: actions/showstream.php:207 +#, php-format msgid "" "You can try to nudge %1$s or [post something to his or her attention](%%%%" "action.newnotice%%%%?status_textarea=%2$s)." msgstr "" -"Du kan prova att knuffa %s eller [posta något för hans eller hennes " -"uppmärksamhet](%%%%action.newnotice%%%%?status_textarea=%s)." +"Du kan prova att knuffa %1$s eller [posta något för hans eller hennes " +"uppmärksamhet](%%%%action.newnotice%%%%?status_textarea=%2$s)." -#: actions/showstream.php:234 +#: actions/showstream.php:243 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3161,23 +3643,23 @@ msgid "" "[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " "follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -"**%s** har ett konto på %%%%site.name%%%%, en [mikroblogg](http://en." -"wikipedia.org/wiki/Micro-blogging)-tjänst baserad på den fria programvaran " +"**%s** har ett konto på %%%%site.name%%%%, en [mikroblogg](http://sv." +"wikipedia.org/wiki/Mikroblogg)tjänst baserad på den fria programvaran " "[StatusNet](http://status.net/). [Gå med nu](%%%%action.register%%%%) för " "att följa **%s**s notiser och många fler! ([Läs mer](%%%%doc.help%%%%))" -#: actions/showstream.php:239 +#: actions/showstream.php:248 #, 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 ett konto på %%%%site.name%%%%, en [mikroblogg](http://en." -"wikipedia.org/wiki/Micro-blogging)-tjänst baserad på den fria programvaran " +"**%s** har ett konto på %%%%site.name%%%%, en [mikroblogg](http://sv." +"wikipedia.org/wiki/Mikroblogg)tjänst baserad på den fria programvaran " "[StatusNet](http://status.net/). " -#: actions/showstream.php:313 +#: actions/showstream.php:305 #, php-format msgid "Repeat of %s" msgstr "Upprepning av %s" @@ -3194,208 +3676,152 @@ msgstr "Användaren är redan nedtystad." msgid "Basic settings for this StatusNet site." msgstr "Grundinställningar för din StatusNet-webbplats" -#: actions/siteadminpanel.php:146 +#: actions/siteadminpanel.php:132 msgid "Site name must have non-zero length." msgstr "Webbplatsnamnet måste vara minst ett tecken långt." -#: actions/siteadminpanel.php:154 -#, fuzzy +#: actions/siteadminpanel.php:140 msgid "You must have a valid contact email address." -msgstr "Du måste ha en giltig kontakte-postadress" +msgstr "Du måste ha en giltig e-postadress." -#: actions/siteadminpanel.php:172 -#, fuzzy, php-format +#: actions/siteadminpanel.php:158 +#, php-format msgid "Unknown language \"%s\"." -msgstr "Okänt språk \"%s\"" +msgstr "Okänt språk \"%s\"." -#: actions/siteadminpanel.php:179 +#: actions/siteadminpanel.php:165 msgid "Invalid snapshot report URL." msgstr "Ogiltig rapport-URL för ögonblicksbild" -#: actions/siteadminpanel.php:185 +#: actions/siteadminpanel.php:171 msgid "Invalid snapshot run value." msgstr "Ogiltigt körvärde för ögonblicksbild." -#: actions/siteadminpanel.php:191 +#: actions/siteadminpanel.php:177 msgid "Snapshot frequency must be a number." msgstr "Frekvens för ögonblicksbilder måste vara ett nummer." -#: actions/siteadminpanel.php:197 +#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "Minsta textbegränsning är 140 tecken." -#: actions/siteadminpanel.php:203 +#: actions/siteadminpanel.php:189 msgid "Dupe limit must 1 or more seconds." msgstr "Begränsning av duplikat måste vara en eller fler sekuner." -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:239 msgid "General" msgstr "Allmänt" -#: actions/siteadminpanel.php:256 +#: actions/siteadminpanel.php:242 msgid "Site name" msgstr "Webbplatsnamn" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:243 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "Namnet på din webbplats, t.ex. \"Företagsnamn mikroblogg\"" -#: actions/siteadminpanel.php:261 +#: actions/siteadminpanel.php:247 msgid "Brought by" msgstr "Tillhandahållen av" -#: actions/siteadminpanel.php:262 +#: actions/siteadminpanel.php:248 msgid "Text used for credits link in footer of each page" msgstr "Text som används för tillskrivningslänkar i sidfoten på varje sida." -#: actions/siteadminpanel.php:266 +#: actions/siteadminpanel.php:252 msgid "Brought by URL" msgstr "Tillhandahållen av URL" -#: actions/siteadminpanel.php:267 +#: actions/siteadminpanel.php:253 msgid "URL used for credits link in footer of each page" msgstr "URL som används för tillskrivningslänkar i sidfoten på varje sida" -#: actions/siteadminpanel.php:271 +#: actions/siteadminpanel.php:257 msgid "Contact email address for your site" msgstr "Kontakte-postadress för din webbplats" -#: actions/siteadminpanel.php:277 +#: actions/siteadminpanel.php:263 msgid "Local" msgstr "Lokal" -#: actions/siteadminpanel.php:288 +#: actions/siteadminpanel.php:274 msgid "Default timezone" msgstr "Standardtidszon" -#: actions/siteadminpanel.php:289 +#: actions/siteadminpanel.php:275 msgid "Default timezone for the site; usually UTC." msgstr "Standardtidzon för denna webbplats; vanligtvis UTC." -#: actions/siteadminpanel.php:295 +#: actions/siteadminpanel.php:281 msgid "Default site language" msgstr "Webbplatsens standardspråk" -#: actions/siteadminpanel.php:303 -msgid "URLs" -msgstr "URL:er" - -#: actions/siteadminpanel.php:306 -msgid "Server" -msgstr "Server" - -#: actions/siteadminpanel.php:306 -msgid "Site's server hostname." -msgstr "Värdnamn för webbplatsens server." - -#: actions/siteadminpanel.php:310 -msgid "Fancy URLs" -msgstr "Utsmyckade URL:er" - -#: actions/siteadminpanel.php:312 -msgid "Use fancy (more readable and memorable) URLs?" -msgstr "" -"Skall utsmyckade URL:er användas (mer läsbara och lättare att komma ihåg)?" - -#: actions/siteadminpanel.php:318 -msgid "Access" -msgstr "Åtkomst" - -#: actions/siteadminpanel.php:321 -msgid "Private" -msgstr "Privat" - -#: actions/siteadminpanel.php:323 -msgid "Prohibit anonymous users (not logged in) from viewing site?" -msgstr "" -"Skall anonyma användare (inte inloggade) förhindras från att se webbplatsen?" - -#: actions/siteadminpanel.php:327 -msgid "Invite only" -msgstr "Endast inbjudan" - -#: actions/siteadminpanel.php:329 -msgid "Make registration invitation only." -msgstr "Gör så att registrering endast sker genom inbjudan." - -#: actions/siteadminpanel.php:333 -msgid "Closed" -msgstr "Stängd" - -#: actions/siteadminpanel.php:335 -msgid "Disable new registrations." -msgstr "Inaktivera nya registreringar." - -#: actions/siteadminpanel.php:341 +#: actions/siteadminpanel.php:289 msgid "Snapshots" msgstr "Ögonblicksbild" -#: actions/siteadminpanel.php:344 +#: actions/siteadminpanel.php:292 msgid "Randomly during Web hit" msgstr "Slumpmässigt vid webbförfrågningar" -#: actions/siteadminpanel.php:345 +#: actions/siteadminpanel.php:293 msgid "In a scheduled job" msgstr "I ett schemalagt jobb" -#: actions/siteadminpanel.php:347 +#: actions/siteadminpanel.php:295 msgid "Data snapshots" msgstr "Ögonblicksbild av data" -#: actions/siteadminpanel.php:348 +#: actions/siteadminpanel.php:296 msgid "When to send statistical data to status.net servers" msgstr "När statistikdata skall skickas till status.net-servrar" -#: actions/siteadminpanel.php:353 +#: actions/siteadminpanel.php:301 msgid "Frequency" msgstr "Frekvens" -#: actions/siteadminpanel.php:354 +#: actions/siteadminpanel.php:302 msgid "Snapshots will be sent once every N web hits" msgstr "Ögonblicksbild kommer skickas var N:te webbträff" -#: actions/siteadminpanel.php:359 +#: actions/siteadminpanel.php:307 msgid "Report URL" -msgstr "Rapport-URL" +msgstr "URL för rapport" -#: actions/siteadminpanel.php:360 +#: actions/siteadminpanel.php:308 msgid "Snapshots will be sent to this URL" msgstr "Ögonblicksbild kommer skickat till denna URL" -#: actions/siteadminpanel.php:367 +#: actions/siteadminpanel.php:315 msgid "Limits" msgstr "Begränsningar" -#: actions/siteadminpanel.php:370 +#: actions/siteadminpanel.php:318 msgid "Text limit" msgstr "Textbegränsning" -#: actions/siteadminpanel.php:370 +#: actions/siteadminpanel.php:318 msgid "Maximum number of characters for notices." msgstr "Maximala antalet tecken för notiser." -#: actions/siteadminpanel.php:374 +#: actions/siteadminpanel.php:322 msgid "Dupe limit" msgstr "Duplikatbegränsning" -#: actions/siteadminpanel.php:374 +#: actions/siteadminpanel.php:322 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" "Hur länge användare måste vänta (i sekunder) för att posta samma sak igen." -#: actions/siteadminpanel.php:388 actions/useradminpanel.php:313 -msgid "Save site settings" -msgstr "Spara webbplatsinställningar" - #: actions/smssettings.php:58 -#, fuzzy msgid "SMS settings" -msgstr "SMS-inställningar" +msgstr "Inställningar för SMS" #: actions/smssettings.php:69 #, php-format msgid "You can receive SMS messages through email from %%site.name%%." -msgstr "Du kan ta emot SMS-meddelande genom e-post från %%site.name%%." +msgstr "Du kan ta emot SMS-meddelanden genom e-post från %%site.name%%." #: actions/smssettings.php:91 msgid "SMS is not available." @@ -3418,7 +3844,6 @@ msgid "Enter the code you received on your phone." msgstr "Fyll i koden du mottog i din telefon." #: actions/smssettings.php:138 -#, fuzzy msgid "SMS phone number" msgstr "Telefonnummer för SMS" @@ -3492,15 +3917,26 @@ msgstr "Ingen kod ifylld" msgid "You are not subscribed to that profile." msgstr "Du är inte prenumerat hos den profilen." -#: actions/subedit.php:83 +#: actions/subedit.php:83 classes/Subscription.php:89 +#: classes/Subscription.php:116 msgid "Could not save subscription." msgstr "Kunde inte spara prenumeration." -#: actions/subscribe.php:55 -msgid "Not a local user." -msgstr "Inte en lokal användare." +#: actions/subscribe.php:77 +msgid "This action only accepts POST requests." +msgstr "" -#: actions/subscribe.php:69 +#: actions/subscribe.php:107 +#, fuzzy +msgid "No such profile." +msgstr "Ingen sådan fil." + +#: actions/subscribe.php:117 +#, fuzzy +msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." +msgstr "Du är inte prenumerat hos den profilen." + +#: actions/subscribe.php:145 msgid "Subscribed" msgstr "Prenumerant" @@ -3510,9 +3946,9 @@ msgid "%s subscribers" msgstr "%s prenumeranter" #: actions/subscribers.php:52 -#, fuzzy, php-format +#, php-format msgid "%1$s subscribers, page %2$d" -msgstr "%s prenumeranter, sida %d" +msgstr "%1$s prenumeranter, sida %2$d" #: actions/subscribers.php:63 msgid "These are the people who listen to your notices." @@ -3551,20 +3987,20 @@ msgid "%s subscriptions" msgstr "%s prenumerationer" #: actions/subscriptions.php:54 -#, fuzzy, php-format +#, php-format msgid "%1$s subscriptions, page %2$d" -msgstr "%s prenumerationer, sida %d" +msgstr "%1$s prenumerationer, sida %2$d" #: actions/subscriptions.php:65 msgid "These are the people whose notices you listen to." -msgstr "Dessa är de personer vars notiser du lyssnar på." +msgstr "Det är dessa personer vars meddelanden du lyssnar på." #: actions/subscriptions.php:69 #, php-format msgid "These are the people whose notices %s listens to." -msgstr "Dessa är de personer vars notiser %s lyssnar på." +msgstr "Det är dessa personer vars notiser %s lyssnar på." -#: actions/subscriptions.php:121 +#: actions/subscriptions.php:126 #, php-format msgid "" "You're not listening to anyone's notices right now, try subscribing to " @@ -3573,20 +4009,31 @@ msgid "" "featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " "automatically subscribe to people you already follow there." msgstr "" +"Du lyssnar inte på någons notiser just nu. Prova att prenumerera på personer " +"du känner. Prova [personsökning] (%%action.peoplesearch%%), leta bland " +"medlemmar i grupper som intresserad dig och bland våra [profilerade " +"användare] (%%action.featured%%). Om du är en [Twitter-användare] (%%action." +"twittersettings%%) kan du prenumerera automatiskt på personer som du redan " +"följer där." -#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#: actions/subscriptions.php:128 actions/subscriptions.php:132 #, php-format msgid "%s is not listening to anyone." msgstr "%s lyssnar inte på någon." -#: actions/subscriptions.php:194 +#: actions/subscriptions.php:199 msgid "Jabber" msgstr "Jabber" -#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:204 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "SMS" +#: actions/tag.php:68 +#, php-format +msgid "Notices tagged with %1$s, page %2$d" +msgstr "Notiser taggade med %1$s, sida %2$d" + #: actions/tag.php:86 #, php-format msgid "Notice feed for tag %s (RSS 1.0)" @@ -3615,7 +4062,8 @@ msgstr "Tagg %s" msgid "User profile" msgstr "Användarprofil" -#: actions/tagother.php:81 lib/userprofile.php:102 +#: actions/tagother.php:81 actions/userauthorization.php:132 +#: lib/userprofile.php:102 msgid "Photo" msgstr "Foto" @@ -3675,13 +4123,13 @@ msgstr "Ingen profil-ID i begäran." msgid "Unsubscribed" msgstr "Prenumeration avslutad" -#: actions/updateprofile.php:62 actions/userauthorization.php:330 -#, fuzzy, php-format +#: actions/updateprofile.php:62 actions/userauthorization.php:337 +#, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" -"Licensen för lyssnarströmmen '%s' är inte förenlig med webbplatslicensen '%" -"s'." +"Licensen för lyssnarströmmen '%1$s' är inte förenlig med webbplatslicensen '%" +"2$s'." #: actions/useradminpanel.php:58 lib/adminpanelaction.php:321 #: lib/personalgroupnav.php:115 @@ -3692,86 +4140,66 @@ msgstr "Användare" msgid "User settings for this StatusNet site." msgstr "Användarinställningar för denna StatusNet-webbplats" -#: actions/useradminpanel.php:149 +#: actions/useradminpanel.php:148 msgid "Invalid bio limit. Must be numeric." msgstr "Ogiltig begränsning av biografi. Måste vara numerisk." -#: actions/useradminpanel.php:155 +#: actions/useradminpanel.php:154 msgid "Invalid welcome text. Max length is 255 characters." msgstr "Ogiltig välkomsttext. Maximal längd är 255 tecken." -#: actions/useradminpanel.php:165 +#: actions/useradminpanel.php:164 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "Ogiltig standardprenumeration: '%1$s' är inte användare." -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 +#: actions/useradminpanel.php:217 lib/accountsettingsaction.php:108 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Profil" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:221 msgid "Bio Limit" msgstr "Begränsning av biografi" -#: actions/useradminpanel.php:223 +#: actions/useradminpanel.php:222 msgid "Maximum length of a profile bio in characters." msgstr "Maximal teckenlängd av profilbiografi." -#: actions/useradminpanel.php:231 +#: actions/useradminpanel.php:230 msgid "New users" msgstr "Nya användare" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:234 msgid "New user welcome" msgstr "Välkomnande av ny användare" -#: actions/useradminpanel.php:236 +#: actions/useradminpanel.php:235 msgid "Welcome text for new users (Max 255 chars)." msgstr "Välkomsttext för nya användare (max 255 tecken)." -#: actions/useradminpanel.php:241 +#: actions/useradminpanel.php:240 msgid "Default subscription" msgstr "Standardprenumerationer" -#: actions/useradminpanel.php:242 +#: actions/useradminpanel.php:241 msgid "Automatically subscribe new users to this user." msgstr "" "Lägg automatiskt till en prenumeration på denna användare för alla nya " "användare." -#: actions/useradminpanel.php:251 +#: actions/useradminpanel.php:250 msgid "Invitations" msgstr "Inbjudningar" -#: actions/useradminpanel.php:256 +#: actions/useradminpanel.php:255 msgid "Invitations enabled" msgstr "Inbjudningar aktiverade" -#: actions/useradminpanel.php:258 +#: actions/useradminpanel.php:257 msgid "Whether to allow users to invite new users." msgstr "Hurvida användare skall tillåtas bjuda in nya användare." -#: actions/useradminpanel.php:265 -msgid "Sessions" -msgstr "Sessioner" - -#: actions/useradminpanel.php:270 -msgid "Handle sessions" -msgstr "Hantera sessioner" - -#: actions/useradminpanel.php:272 -msgid "Whether to handle sessions ourselves." -msgstr "Hurvida sessioner skall hanteras av oss själva." - -#: actions/useradminpanel.php:276 -msgid "Session debugging" -msgstr "Sessionsfelsökning" - -#: actions/useradminpanel.php:278 -msgid "Turn on debugging output for sessions." -msgstr "Sätt på felsökningsutdata för sessioner." - #: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Godkänn prenumeration" @@ -3786,50 +4214,50 @@ msgstr "" "prenumerera på den här användarens notiser. Om du inte bett att prenumerera " "på någons meddelanden, klicka på \"Avvisa\"." -#: actions/userauthorization.php:188 actions/version.php:165 +#: actions/userauthorization.php:196 actions/version.php:165 msgid "License" msgstr "Licens" -#: actions/userauthorization.php:209 +#: actions/userauthorization.php:217 msgid "Accept" msgstr "Acceptera" -#: actions/userauthorization.php:210 lib/subscribeform.php:115 +#: actions/userauthorization.php:218 lib/subscribeform.php:115 #: lib/subscribeform.php:139 msgid "Subscribe to this user" msgstr "Prenumerera på denna användare" -#: actions/userauthorization.php:211 +#: actions/userauthorization.php:219 msgid "Reject" msgstr "Avvisa" -#: actions/userauthorization.php:212 +#: actions/userauthorization.php:220 msgid "Reject this subscription" msgstr "Avvisa denna prenumeration" -#: actions/userauthorization.php:225 +#: actions/userauthorization.php:232 msgid "No authorization request!" -msgstr "Ingen auktoriseringsförfrågan!" +msgstr "Ingen begäran om godkännande!" -#: actions/userauthorization.php:247 +#: actions/userauthorization.php:254 msgid "Subscription authorized" msgstr "Prenumeration godkänd" -#: actions/userauthorization.php:249 +#: actions/userauthorization.php:256 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 " +"Prenumerationen har godkänts, men ingen anrops-URL har gått igenom. Kolla " "med webbplatsens instruktioner hur du bekräftar en prenumeration. Din " "prenumerations-token är:" -#: actions/userauthorization.php:259 +#: actions/userauthorization.php:266 msgid "Subscription rejected" msgstr "Prenumeration avvisad" -#: actions/userauthorization.php:261 +#: actions/userauthorization.php:268 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 " @@ -3839,37 +4267,37 @@ msgstr "" "webbplatsens instruktioner för detaljer om hur du fullständingt avvisar " "prenumerationen." -#: actions/userauthorization.php:296 -#, fuzzy, php-format +#: actions/userauthorization.php:303 +#, php-format msgid "Listener URI ‘%s’ not found here." -msgstr "Lyssnar-URI '%s' hittades inte här" +msgstr "URI för lyssnare '%s' hittades inte här." -#: actions/userauthorization.php:301 +#: actions/userauthorization.php:308 #, php-format msgid "Listenee URI ‘%s’ is too long." msgstr "Lyssnar-URI '%s' är för lång." -#: actions/userauthorization.php:307 +#: actions/userauthorization.php:314 #, php-format msgid "Listenee URI ‘%s’ is a local user." msgstr "Lyssnar-URI '%s' är en lokal användare." -#: actions/userauthorization.php:322 +#: actions/userauthorization.php:329 #, php-format msgid "Profile URL ‘%s’ is for a local user." msgstr "Profil-URL ‘%s’ är för en lokal användare." -#: actions/userauthorization.php:338 +#: actions/userauthorization.php:345 #, php-format msgid "Avatar URL ‘%s’ is not valid." msgstr "Avatar-URL ‘%s’ är inte giltig." -#: actions/userauthorization.php:343 +#: actions/userauthorization.php:350 #, php-format msgid "Can’t read avatar URL ‘%s’." msgstr "Kan inte läsa avatar-URL '%s'." -#: actions/userauthorization.php:348 +#: actions/userauthorization.php:355 #, php-format msgid "Wrong image type for avatar URL ‘%s’." msgstr "Fel bildtyp för avatar-URL '%s'." @@ -3889,6 +4317,11 @@ msgstr "" msgid "Enjoy your hotdog!" msgstr "Smaklig måltid!" +#: actions/usergroups.php:64 +#, php-format +msgid "%1$s groups, page %2$d" +msgstr "%1$s grupper, sida %2$d" + #: actions/usergroups.php:130 msgid "Search for more groups" msgstr "Sök efter fler grupper" @@ -3905,9 +4338,9 @@ msgstr "" "Prova att [söka efter grupper](%%action.groupsearch%%) och gå med i dem." #: actions/version.php:73 -#, fuzzy, php-format +#, php-format msgid "StatusNet %s" -msgstr "Statistik" +msgstr "StatusNet %s" #: actions/version.php:153 #, php-format @@ -3915,15 +4348,12 @@ msgid "" "This site is powered by %1$s version %2$s, Copyright 2008-2010 StatusNet, " "Inc. and contributors." msgstr "" - -#: actions/version.php:157 -#, fuzzy -msgid "StatusNet" -msgstr "Status borttagen." +"Denna webbplats drivs med %1$s version %2$s, Copyright 2008-2010 StatusNet, " +"Inc. och medarbetare." #: actions/version.php:161 msgid "Contributors" -msgstr "" +msgstr "Medarbetare" #: actions/version.php:168 msgid "" @@ -3932,6 +4362,10 @@ msgid "" "Software Foundation, either version 3 of the License, or (at your option) " "any later version. " msgstr "" +"StatusNet är fri programvara: du kan distribuera det och/eller modifiera den " +"under GNU Affero General Public License såsom publicerad av Free Software " +"Foundation, antingen version 3 av licensen, eller (utifrån ditt val) någon " +"senare version. " #: actions/version.php:174 msgid "" @@ -3940,6 +4374,10 @@ msgid "" "FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License " "for more details. " msgstr "" +"Detta program distribueras i hopp om att det kommer att vara användbart, men " +"UTAN NÅGRA GARANTIER; även utan underförstådda garantier om SÄLJBARHET eller " +"LÄMPLIGHET FÖR ETT SÄRSKILT ÄNDAMÅL. Se GNU Affero General Public License " +"för mer information. " #: actions/version.php:180 #, php-format @@ -3947,30 +4385,21 @@ msgid "" "You should have received a copy of the GNU Affero General Public License " "along with this program. If not, see %s." msgstr "" +"Du bör ha fått en kopia av GNU Affero General Public License tillsammans med " +"detta program. Om inte, se %s." #: actions/version.php:189 msgid "Plugins" -msgstr "" +msgstr "Insticksmoduler" -#: actions/version.php:195 -#, fuzzy -msgid "Name" -msgstr "Smeknamn" - -#: actions/version.php:196 lib/action.php:741 -#, fuzzy +#: actions/version.php:196 lib/action.php:747 msgid "Version" -msgstr "Sessioner" +msgstr "Version" #: actions/version.php:197 -#, fuzzy msgid "Author(s)" msgstr "Författare" -#: actions/version.php:198 lib/groupeditform.php:172 -msgid "Description" -msgstr "Beskrivning" - #: classes/File.php:144 #, php-format msgid "" @@ -3991,19 +4420,16 @@ msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "En sådan här stor fil skulle överskrida din månatliga kvot på %d byte." #: classes/Group_member.php:41 -#, fuzzy msgid "Group join failed." -msgstr "Grupprofil" +msgstr "Gruppanslutning misslyckades." #: classes/Group_member.php:53 -#, fuzzy msgid "Not part of group." -msgstr "Kunde inte uppdatera grupp." +msgstr "Inte med i grupp." #: classes/Group_member.php:60 -#, fuzzy msgid "Group leave failed." -msgstr "Grupprofil" +msgstr "Grupputträde misslyckades." #: classes/Login_token.php:76 #, php-format @@ -4022,27 +4448,27 @@ msgstr "Kunde inte infoga meddelande." msgid "Could not update message with new URI." msgstr "Kunde inte uppdatera meddelande med ny URI." -#: classes/Notice.php:171 +#: classes/Notice.php:157 #, php-format msgid "DB error inserting hashtag: %s" msgstr "Databasfel vid infogning av hashtag: %s" -#: classes/Notice.php:225 +#: classes/Notice.php:222 msgid "Problem saving notice. Too long." msgstr "Problem vid sparande av notis. För långt." -#: classes/Notice.php:229 +#: classes/Notice.php:226 msgid "Problem saving notice. Unknown user." msgstr "Problem vid sparande av notis. Okänd användare." -#: classes/Notice.php:234 +#: classes/Notice.php:231 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" "För många notiser för snabbt; ta en vilopaus och posta igen om ett par " "minuter." -#: classes/Notice.php:240 +#: classes/Notice.php:237 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." @@ -4050,34 +4476,57 @@ msgstr "" "För många duplicerade meddelanden för snabbt; ta en vilopaus och posta igen " "om ett par minuter." -#: classes/Notice.php:246 +#: classes/Notice.php:243 msgid "You are banned from posting notices on this site." msgstr "Du är utestängd från att posta notiser på denna webbplats." -#: classes/Notice.php:305 classes/Notice.php:330 +#: classes/Notice.php:309 classes/Notice.php:335 msgid "Problem saving notice." msgstr "Problem med att spara notis." -#: classes/Notice.php:1052 -#, php-format -msgid "DB error inserting reply: %s" -msgstr "Databasfel vid infogning av svar: %s" +#: classes/Notice.php:882 +msgid "Problem saving group inbox." +msgstr "Problem med att spara gruppinkorg." -#: classes/Notice.php:1423 +#: classes/Notice.php:1407 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" -#: classes/User.php:382 +#: classes/Subscription.php:66 lib/oauthstore.php:465 +msgid "You have been banned from subscribing." +msgstr "Du har blivit utestängd från att prenumerera." + +#: classes/Subscription.php:70 +msgid "Already subscribed!" +msgstr "Redan prenumerant!" + +#: classes/Subscription.php:74 +msgid "User has blocked you." +msgstr "Användaren har blockerat dig." + +#: classes/Subscription.php:157 +msgid "Not subscribed!" +msgstr "Inte prenumerant!" + +#: classes/Subscription.php:163 +msgid "Couldn't delete self-subscription." +msgstr "Kunde inte ta bort själv-prenumeration." + +#: classes/Subscription.php:179 lib/subs.php:69 +msgid "Couldn't delete subscription." +msgstr "Kunde inte ta bort prenumeration." + +#: classes/User.php:372 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "Välkommen till %1$s, @%2$s!" -#: classes/User_group.php:380 +#: classes/User_group.php:423 msgid "Could not create group." msgstr "Kunde inte skapa grupp." -#: classes/User_group.php:409 +#: classes/User_group.php:452 msgid "Could not set group membership." msgstr "Kunde inte ställa in gruppmedlemskap." @@ -4110,196 +4559,214 @@ msgid "Other options" msgstr "Övriga alternativ" #: lib/action.php:144 -#, fuzzy, php-format +#, php-format msgid "%1$s - %2$s" -msgstr "%1$s (%2$s)" +msgstr "%1$s - %2$s" #: lib/action.php:159 msgid "Untitled page" msgstr "Namnlös sida" -#: lib/action.php:427 +#: lib/action.php:433 msgid "Primary site navigation" msgstr "Primär webbplatsnavigation" -#: lib/action.php:433 +#: lib/action.php:439 msgid "Home" msgstr "Hem" -#: lib/action.php:433 +#: lib/action.php:439 msgid "Personal profile and friends timeline" msgstr "Personlig profil och vänners tidslinje" -#: lib/action.php:435 -msgid "Account" -msgstr "Konto" - -#: lib/action.php:435 +#: lib/action.php:441 msgid "Change your email, avatar, password, profile" msgstr "Ändra din e-post, avatar, lösenord, profil" -#: lib/action.php:438 +#: lib/action.php:444 msgid "Connect" msgstr "Anslut" -#: lib/action.php:438 +#: lib/action.php:444 msgid "Connect to services" msgstr "Anslut till tjänster" -#: lib/action.php:442 +#: lib/action.php:448 msgid "Change site configuration" msgstr "Ändra webbplatskonfiguration" -#: lib/action.php:446 lib/subgroupnav.php:105 +#: lib/action.php:452 lib/subgroupnav.php:105 msgid "Invite" msgstr "Bjud in" -#: lib/action.php:447 lib/subgroupnav.php:106 +#: lib/action.php:453 lib/subgroupnav.php:106 #, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "Bjud in vänner och kollegor att gå med dig på %s" -#: lib/action.php:452 +#: lib/action.php:458 msgid "Logout" msgstr "Logga ut" -#: lib/action.php:452 +#: lib/action.php:458 msgid "Logout from the site" msgstr "Logga ut från webbplatsen" -#: lib/action.php:457 +#: lib/action.php:463 msgid "Create an account" msgstr "Skapa ett konto" -#: lib/action.php:460 +#: lib/action.php:466 msgid "Login to the site" msgstr "Logga in på webbplatsen" -#: lib/action.php:463 lib/action.php:726 +#: lib/action.php:469 lib/action.php:732 msgid "Help" msgstr "Hjälp" -#: lib/action.php:463 +#: lib/action.php:469 msgid "Help me!" msgstr "Hjälp mig!" -#: lib/action.php:466 lib/searchaction.php:127 +#: lib/action.php:472 lib/searchaction.php:127 msgid "Search" msgstr "Sök" -#: lib/action.php:466 +#: lib/action.php:472 msgid "Search for people or text" msgstr "Sök efter personer eller text" -#: lib/action.php:487 +#: lib/action.php:493 msgid "Site notice" msgstr "Webbplatsnotis" -#: lib/action.php:553 +#: lib/action.php:559 msgid "Local views" msgstr "Lokala vyer" -#: lib/action.php:619 +#: lib/action.php:625 msgid "Page notice" msgstr "Sidnotis" -#: lib/action.php:721 +#: lib/action.php:727 msgid "Secondary site navigation" msgstr "Sekundär webbplatsnavigation" -#: lib/action.php:728 +#: lib/action.php:734 msgid "About" msgstr "Om" -#: lib/action.php:730 +#: lib/action.php:736 msgid "FAQ" msgstr "Frågor & svar" -#: lib/action.php:734 +#: lib/action.php:740 msgid "TOS" msgstr "Användarvillkor" -#: lib/action.php:737 +#: lib/action.php:743 msgid "Privacy" msgstr "Sekretess" -#: lib/action.php:739 +#: lib/action.php:745 msgid "Source" msgstr "Källa" -#: lib/action.php:743 +#: lib/action.php:749 msgid "Contact" msgstr "Kontakt" -#: lib/action.php:745 +#: lib/action.php:751 msgid "Badge" msgstr "Emblem" -#: lib/action.php:773 +#: lib/action.php:779 msgid "StatusNet software license" msgstr "Programvarulicens för StatusNet" -#: lib/action.php:776 +#: lib/action.php:782 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." "broughtby%%](%%site.broughtbyurl%%). " msgstr "" "**%%site.name%%** är en mikrobloggtjänst tillhandahållen av [%%site.broughtby" -"%%](%%site.broughtbyurl%%)" +"%%](%%site.broughtbyurl%%). " -#: lib/action.php:778 +#: lib/action.php:784 #, php-format msgid "**%%site.name%%** is a microblogging service. " -msgstr "**%%site.name%%** är en mikrobloggtjänst." +msgstr "**%%site.name%%** är en mikrobloggtjänst. " -#: lib/action.php:780 +#: lib/action.php:786 #, 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 drivs med mikroblogg-programvaran [StatusNet](http://status.net/), " +"Den drivs med mikrobloggprogramvaran [StatusNet](http://status.net/), " "version %s, tillgänglig under [GNU Affero General Public License](http://www." "fsf.org/licensing/licenses/agpl-3.0.html)." -#: lib/action.php:794 +#: lib/action.php:801 msgid "Site content license" msgstr "Licens för webbplatsinnehåll" -#: lib/action.php:803 +#: lib/action.php:806 +#, php-format +msgid "Content and data of %1$s are private and confidential." +msgstr "Innehåll och data av %1$s är privat och konfidensiell." + +#: lib/action.php:811 +#, php-format +msgid "Content and data copyright by %1$s. All rights reserved." +msgstr "Innehåll och data copyright av %1$s. Alla rättigheter reserverade." + +#: lib/action.php:814 +msgid "Content and data copyright by contributors. All rights reserved." +msgstr "" +"Innehåll och data copyright av medarbetare. Alla rättigheter reserverade." + +#: lib/action.php:827 msgid "All " msgstr "Alla " -#: lib/action.php:808 +#: lib/action.php:833 msgid "license." msgstr "licens." -#: lib/action.php:1102 +#: lib/action.php:1132 msgid "Pagination" msgstr "Numrering av sidor" -#: lib/action.php:1111 +#: lib/action.php:1141 msgid "After" msgstr "Senare" -#: lib/action.php:1119 +#: lib/action.php:1149 msgid "Before" msgstr "Tidigare" -#: lib/action.php:1167 -msgid "There was a problem with your session token." -msgstr "Det var ett problem med din sessions-token." +#: lib/activity.php:382 +msgid "Can't handle remote content yet." +msgstr "" + +#: lib/activity.php:410 +msgid "Can't handle embedded XML content yet." +msgstr "" + +#: lib/activity.php:414 +msgid "Can't handle embedded Base64 content yet." +msgstr "" #: lib/adminpanelaction.php:96 msgid "You cannot make changes to this site." msgstr "Du kan inte göra förändringar av denna webbplats." #: lib/adminpanelaction.php:107 -#, fuzzy msgid "Changes to that panel are not allowed." -msgstr "Registrering inte tillåten." +msgstr "Ändringar av den panelen tillåts inte." #: lib/adminpanelaction.php:206 msgid "showForm() not implemented." @@ -4321,10 +4788,100 @@ msgstr "Grundläggande webbplatskonfiguration" msgid "Design configuration" msgstr "Konfiguration av utseende" -#: lib/adminpanelaction.php:322 lib/adminpanelaction.php:327 +#: lib/adminpanelaction.php:322 +msgid "User configuration" +msgstr "Konfiguration av användare" + +#: lib/adminpanelaction.php:327 +msgid "Access configuration" +msgstr "Konfiguration av åtkomst" + +#: lib/adminpanelaction.php:332 msgid "Paths configuration" msgstr "Konfiguration av sökvägar" +#: lib/adminpanelaction.php:337 +msgid "Sessions configuration" +msgstr "Konfiguration av sessioner" + +#: lib/apiauth.php:95 +msgid "API resource requires read-write access, but you only have read access." +msgstr "" +"API-resursen kräver läs- och skrivrättigheter, men du har bara läsrättighet." + +#: lib/apiauth.php:273 +#, php-format +msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" +msgstr "" +"Misslyckat försök till API-autentisering, smeknamn =%1$s, proxy =%2$s, ip =%3" +"$s" + +#: lib/applicationeditform.php:136 +msgid "Edit application" +msgstr "Redigera applikation" + +#: lib/applicationeditform.php:184 +msgid "Icon for this application" +msgstr "Ikon för denna applikation" + +#: lib/applicationeditform.php:204 +#, php-format +msgid "Describe your application in %d characters" +msgstr "Beskriv din applikation med högst %d tecken" + +#: lib/applicationeditform.php:207 +msgid "Describe your application" +msgstr "Beskriv din applikation" + +#: lib/applicationeditform.php:216 +msgid "Source URL" +msgstr "URL för källa" + +#: lib/applicationeditform.php:218 +msgid "URL of the homepage of this application" +msgstr "URL till hemsidan för denna applikation" + +#: lib/applicationeditform.php:224 +msgid "Organization responsible for this application" +msgstr "Organisation som ansvarar för denna applikation" + +#: lib/applicationeditform.php:230 +msgid "URL for the homepage of the organization" +msgstr "URL till organisationens hemsidan" + +#: lib/applicationeditform.php:236 +msgid "URL to redirect to after authentication" +msgstr "URL att omdirigera till efter autentisering" + +#: lib/applicationeditform.php:258 +msgid "Browser" +msgstr "Webbläsare" + +#: lib/applicationeditform.php:274 +msgid "Desktop" +msgstr "Skrivbord" + +#: lib/applicationeditform.php:275 +msgid "Type of application, browser or desktop" +msgstr "Typ av applikation, webbläsare eller skrivbord" + +#: lib/applicationeditform.php:297 +msgid "Read-only" +msgstr "Skrivskyddad" + +#: lib/applicationeditform.php:315 +msgid "Read-write" +msgstr "Läs och skriv" + +#: lib/applicationeditform.php:316 +msgid "Default access for this application: read-only, or read-write" +msgstr "" +"Standardåtkomst för denna applikation: skrivskyddad, eller läs och skriv" + +#: lib/applicationlist.php:154 +msgid "Revoke" +msgstr "Återkalla" + #: lib/attachmentlist.php:87 msgid "Attachments" msgstr "Bilagor" @@ -4345,11 +4902,11 @@ msgstr "Notiser där denna bilaga förekommer" msgid "Tags for this attachment" msgstr "Taggar för denna billaga" -#: lib/authenticationplugin.php:182 lib/authenticationplugin.php:187 +#: lib/authenticationplugin.php:218 lib/authenticationplugin.php:223 msgid "Password changing failed" msgstr "Byte av lösenord misslyckades" -#: lib/authenticationplugin.php:197 +#: lib/authenticationplugin.php:233 msgid "Password changing is not allowed" msgstr "Byte av lösenord är inte tillåtet" @@ -4367,7 +4924,7 @@ msgstr "Kommando misslyckades" #: lib/command.php:44 msgid "Sorry, this command is not yet implemented." -msgstr "Ledsen, detta kommando är inte implementerat än." +msgstr "Tyvärr, detta kommando är inte implementerat än." #: lib/command.php:88 #, php-format @@ -4500,81 +5057,91 @@ msgstr "Fel vid sparande av notis." msgid "Specify the name of the user to subscribe to" msgstr "Ange namnet på användaren att prenumerara på" -#: lib/command.php:554 +#: lib/command.php:554 lib/command.php:589 +msgid "No such user" +msgstr "Ingen sådan användare." + +#: lib/command.php:561 #, php-format msgid "Subscribed to %s" msgstr "Prenumerar på %s" -#: lib/command.php:575 +#: lib/command.php:582 lib/command.php:685 msgid "Specify the name of the user to unsubscribe from" msgstr "Ange namnet på användaren att avsluta prenumeration på" -#: lib/command.php:582 +#: lib/command.php:595 #, php-format msgid "Unsubscribed from %s" msgstr "Prenumeration hos %s avslutad" -#: lib/command.php:600 lib/command.php:623 +#: lib/command.php:613 lib/command.php:636 msgid "Command not yet implemented." msgstr "Kommando inte implementerat än." -#: lib/command.php:603 +#: lib/command.php:616 msgid "Notification off." msgstr "Notifikation av." -#: lib/command.php:605 +#: lib/command.php:618 msgid "Can't turn off notification." msgstr "Kan inte sätta på notifikation." -#: lib/command.php:626 +#: lib/command.php:639 msgid "Notification on." msgstr "Notifikation på." -#: lib/command.php:628 +#: lib/command.php:641 msgid "Can't turn on notification." msgstr "Kan inte stänga av notifikation." -#: lib/command.php:641 +#: lib/command.php:654 msgid "Login command is disabled" msgstr "Inloggningskommando är inaktiverat" -#: lib/command.php:652 +#: lib/command.php:665 #, php-format msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "" "Denna länk är endast användbar en gång, och gäller bara i 2 minuter: %s" -#: lib/command.php:668 +#: lib/command.php:692 +#, fuzzy, php-format +msgid "Unsubscribed %s" +msgstr "Prenumeration hos %s avslutad" + +#: lib/command.php:709 msgid "You are not subscribed to anyone." msgstr "Du prenumererar inte på någon." -#: lib/command.php:670 +#: lib/command.php:711 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "Du prenumererar på denna person:" msgstr[1] "Du prenumererar på dessa personer:" -#: lib/command.php:690 +#: lib/command.php:731 msgid "No one is subscribed to you." msgstr "Ingen prenumerar på dig." -#: lib/command.php:692 +#: lib/command.php:733 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "Denna person prenumererar på dig:" msgstr[1] "Dessa personer prenumererar på dig:" -#: lib/command.php:712 +#: lib/command.php:753 msgid "You are not a member of any groups." msgstr "Du är inte medlem i några grupper." -#: lib/command.php:714 +#: lib/command.php:755 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "Du är en medlem i denna grupp:" msgstr[1] "Du är en medlem i dessa grupper:" -#: lib/command.php:728 +#: lib/command.php:769 +#, fuzzy msgid "" "Commands:\n" "on - turn on notifications\n" @@ -4588,6 +5155,7 @@ msgid "" "d - direct message to user\n" "get - get last notice from user\n" "whois - get profile info on user\n" +"lose - force user to stop following you\n" "fav - add user's last notice as a 'fave'\n" "fav # - add notice with the given id as a 'fave'\n" "repeat # - repeat a notice with a given id\n" @@ -4614,26 +5182,63 @@ msgid "" "tracks - not yet implemented.\n" "tracking - not yet implemented.\n" msgstr "" +"Kommandon:\n" +"on - sätt på notifikationer\n" +"off - stäng av notifikationer\n" +"help - visa denna hjälp\n" +"follow - prenumerera på användare\n" +"groups - lista grupperna du tillhör\n" +"subscriptions - lista personerna du följer\n" +"subscribers - lista personerna som följer dig\n" +"leave - avsluta prenumeration på användare\n" +"d - direktmeddelande till användare\n" +"get - hämta senaste notis från användare\n" +"whois - hämta profilinformation om användare\n" +"fav - lägg till användarens senaste notis som favorit\n" +"fav # - lägg till notis med given id som favorit\n" +"repeat # - upprepa en notis med en given id\n" +"repeat - upprepa den senaste notisen från användare\n" +"reply # - svara på notis med en given id\n" +"reply - svara på den senaste notisen från användare\n" +"join - gå med i grupp\n" +"login - hämta en länk till webbgränssnittets inloggningssida\n" +"drop - lämna grupp\n" +"stats - hämta din statistik\n" +"stop - samma som 'off'\n" +"quit - samma som 'off'\n" +"sub - samma som 'follow'\n" +"unsub - samma som 'leave'\n" +"last - samma som 'get'\n" +"on - inte implementerat än.\n" +"off - inte implementerat än.\n" +"nudge - påminn en användare om att uppdatera\n" +"invite - inte implementerat än.\n" +"track - inte implementerat än.\n" +"untrack - inte implementerat än.\n" +"track off - inte implementerat än.\n" +"untrack all - inte implementerat än.\n" +"tracks - inte implementerat än.\n" +"tracking - inte implementerat än.\n" -#: lib/common.php:131 +#: lib/common.php:136 msgid "No configuration file found. " msgstr "Ingen konfigurationsfil hittades. " -#: lib/common.php:132 +#: lib/common.php:137 msgid "I looked for configuration files in the following places: " msgstr "Jag letade efter konfigurationsfiler på följande platser: " -#: lib/common.php:134 +#: lib/common.php:139 msgid "You may wish to run the installer to fix this." msgstr "Du kanske vill köra installeraren för att åtgärda detta." -#: lib/common.php:135 +#: lib/common.php:140 msgid "Go to the installer." msgstr "Gå till installeraren." #: lib/connectsettingsaction.php:110 msgid "IM" -msgstr "IM" +msgstr "Snabbmeddelande" #: lib/connectsettingsaction.php:111 msgid "Updates by instant messenger (IM)" @@ -4643,6 +5248,14 @@ msgstr "Uppdateringar via snabbmeddelande (IM)" msgid "Updates by SMS" msgstr "Uppdateringar via SMS" +#: lib/connectsettingsaction.php:120 +msgid "Connections" +msgstr "Anslutningar" + +#: lib/connectsettingsaction.php:121 +msgid "Authorized connected applications" +msgstr "Tillåt anslutna applikationer" + #: lib/dberroraction.php:60 msgid "Database error" msgstr "Databasfel" @@ -4827,15 +5440,15 @@ msgstr "MB" msgid "kB" msgstr "kB" -#: lib/jabber.php:202 +#: lib/jabber.php:220 #, php-format msgid "[%s]" msgstr "[%s]" -#: lib/jabber.php:385 -#, fuzzy, php-format +#: lib/jabber.php:400 +#, php-format msgid "Unknown inbox source %d." -msgstr "Okänt språk \"%s\"" +msgstr "Okänd källa för inkorg %d." #: lib/joinform.php:114 msgid "Join" @@ -4873,6 +5486,18 @@ msgid "" "Thanks for your time, \n" "%s\n" msgstr "" +"Hej %s!\n" +"\n" +"Någon la precis till den här e-postadressen på %s.\n" +"\n" +"Om det var du och du vill bekräfta det, använd webbadressen nedan:\n" +"\n" +"%s\n" +"\n" +"Om inte, ignorera bara det här meddelandet.\n" +"\n" +"Tack för din tid, \n" +"%s\n" #: lib/mail.php:236 #, php-format @@ -4893,13 +5518,21 @@ msgid "" "----\n" "Change your email address or notification options at %8$s\n" msgstr "" +"%1$s lyssnar nu på dina notiser på %2$s.\n" +"\n" +"%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Med vänliga hälsningar,\n" +"%7$s.\n" +"\n" +"----\n" +"Ändra din e-postadress eller notiferingsinställningar på %8$s\n" #: lib/mail.php:258 -#, fuzzy, php-format +#, php-format msgid "Bio: %s" -msgstr "" -"Biografi: %s\n" -"\n" +msgstr "Biografi: %s" #: lib/mail.php:286 #, php-format @@ -4956,6 +5589,17 @@ msgid "" "With kind regards,\n" "%4$s\n" msgstr "" +"%1$s (%2$s) undrar vad du håller på med nuförtiden och inbjuder dig att " +"lägga upp några nyheter.\n" +"\n" +"Så låt oss höra av dig :)\n" +"\n" +"%3$s\n" +"\n" +"Svara inte på det här e-postmeddelandet; det kommer inte komma fram.\n" +"\n" +"Med vänliga hälsningar,\n" +"%4$s\n" #: lib/mail.php:510 #, php-format @@ -4980,6 +5624,20 @@ msgid "" "With kind regards,\n" "%5$s\n" msgstr "" +"%1$s (%2$s) skickade ett privat meddelande till dig:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"Du kan svara på meddelandet här:\n" +"\n" +"%4$s\n" +"\n" +"Svara inte på detta e-postmeddelande; det kommer inte komma fram.\n" +"\n" +"Med vänliga hälsningar,\n" +"%5$s\n" #: lib/mail.php:559 #, php-format @@ -5006,6 +5664,22 @@ msgid "" "Faithfully yours,\n" "%6$s\n" msgstr "" +"%1$s (@%7$s) la precis till din notis från %2$s som en av sina favoriter.\n" +"\n" +"Webbadressen för din notis är:\n" +"\n" +"%3$s\n" +"\n" +"Texten i din notis är:\n" +"\n" +"%4$s\n" +"\n" +"Du kan se listan med %1$ss favoriter här:\n" +"\n" +"%5$s\n" +"\n" +"Med vänliga hälsningar,\n" +"%6$s\n" #: lib/mail.php:624 #, php-format @@ -5026,6 +5700,17 @@ msgid "" "\t%4$s\n" "\n" msgstr "" +"%1$s (@%9$s) skickade precis en notis för din uppmärksamhet (ett '@-svar') " +"på %2$s.\n" +"\n" +"Notisen är här:\n" +"\n" +"%3$s\n" +"\n" +"Den lyder:\n" +"\n" +"%4$s\n" +"\n" #: lib/mailbox.php:89 msgid "Only the user can read their own mailboxes." @@ -5040,7 +5725,7 @@ msgstr "" "engagera andra användare i konversationen. Folk kan skicka meddelanden till " "dig som bara du ser." -#: lib/mailbox.php:227 lib/noticelist.php:477 +#: lib/mailbox.php:227 lib/noticelist.php:482 msgid "from" msgstr "från" @@ -5054,16 +5739,16 @@ msgstr "Inte en registrerad användare." #: lib/mailhandler.php:46 msgid "Sorry, that is not your incoming email address." -msgstr "Ledsen, det är inte din inkommande e-postadress." +msgstr "Tyvärr, det är inte din inkommande e-postadress." #: lib/mailhandler.php:50 msgid "Sorry, no incoming email allowed." -msgstr "Ledsen, ingen inkommande e-post tillåts." +msgstr "Tyvärr, ingen inkommande e-post tillåts." #: lib/mailhandler.php:228 -#, fuzzy, php-format +#, php-format msgid "Unsupported message type: %s" -msgstr "Bildfilens format stödjs inte." +msgstr "Formatet %s för meddelande stödjs inte." #: lib/mediafile.php:98 lib/mediafile.php:123 msgid "There was a database error while saving your file. Please try again." @@ -5100,18 +5785,16 @@ msgid "File upload stopped by extension." msgstr "Filuppladdningen stoppad pga filändelse" #: lib/mediafile.php:179 lib/mediafile.php:216 -#, fuzzy msgid "File exceeds user's quota." -msgstr "Fil överstiger användaren kvot!" +msgstr "Fil överstiger användaren kvot." #: lib/mediafile.php:196 lib/mediafile.php:233 msgid "File could not be moved to destination directory." msgstr "Fil kunde inte flyttas till destinationskatalog." #: lib/mediafile.php:201 lib/mediafile.php:237 -#, fuzzy msgid "Could not determine file's MIME type." -msgstr "Kunde inte fastställa filens MIME-typ!" +msgstr "Kunde inte fastställa filens MIME-typ." #: lib/mediafile.php:270 #, php-format @@ -5119,13 +5802,13 @@ msgid " Try using another %s format." msgstr "Försök använda ett annat %s-format." #: lib/mediafile.php:275 -#, fuzzy, php-format +#, php-format msgid "%s is not a supported file type on this server." msgstr "%s är en filtyp som saknar stöd på denna server." #: lib/messageform.php:120 msgid "Send a direct notice" -msgstr "Skicka ett direktinlägg" +msgstr "Skicka en direktnotis" #: lib/messageform.php:146 msgid "To" @@ -5137,7 +5820,7 @@ msgstr "Tillgängliga tecken" #: lib/noticeform.php:160 msgid "Send a notice" -msgstr "Skicka ett inlägg" +msgstr "Skicka en notis" #: lib/noticeform.php:173 #, php-format @@ -5153,67 +5836,63 @@ msgid "Attach a file" msgstr "Bifoga en fil" #: lib/noticeform.php:212 -#, fuzzy msgid "Share my location" -msgstr "Dela din plats" +msgstr "Dela min plats" #: lib/noticeform.php:215 -#, fuzzy msgid "Do not share my location" -msgstr "Dela din plats" +msgstr "Dela inte min plats" #: lib/noticeform.php:216 -msgid "Hide this info" -msgstr "" - -#: lib/noticeform.php:217 msgid "" "Sorry, retrieving your geo location is taking longer than expected, please " "try again later" msgstr "" +"Tyvärr, hämtning av din geografiska plats tar längre tid än förväntat, var " +"god försök igen senare" -#: lib/noticelist.php:428 +#: lib/noticelist.php:429 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" -#: lib/noticelist.php:429 +#: lib/noticelist.php:430 msgid "N" msgstr "N" -#: lib/noticelist.php:429 +#: lib/noticelist.php:430 msgid "S" msgstr "S" -#: lib/noticelist.php:430 +#: lib/noticelist.php:431 msgid "E" msgstr "Ö" -#: lib/noticelist.php:430 +#: lib/noticelist.php:431 msgid "W" msgstr "V" -#: lib/noticelist.php:436 +#: lib/noticelist.php:438 msgid "at" msgstr "på" -#: lib/noticelist.php:531 +#: lib/noticelist.php:558 msgid "in context" msgstr "i sammanhang" -#: lib/noticelist.php:556 +#: lib/noticelist.php:583 msgid "Repeated by" msgstr "Upprepad av" -#: lib/noticelist.php:585 +#: lib/noticelist.php:610 msgid "Reply to this notice" -msgstr "Svara på detta inlägg" +msgstr "Svara på denna notis" -#: lib/noticelist.php:586 +#: lib/noticelist.php:611 msgid "Reply" msgstr "Svara" -#: lib/noticelist.php:628 +#: lib/noticelist.php:655 msgid "Notice repeated" msgstr "Notis upprepad" @@ -5227,7 +5906,7 @@ msgstr "Knuffa" #: lib/nudgeform.php:128 msgid "Send a nudge to this user" -msgstr "Skicka en knuff till den användaren." +msgstr "Skicka en knuff till denna användare" #: lib/oauthstore.php:283 msgid "Error inserting new profile" @@ -5243,19 +5922,15 @@ msgstr "Fel vid infogning av fjärrprofilen" #: lib/oauthstore.php:345 msgid "Duplicate notice" -msgstr "Duplicera notis" +msgstr "Duplicerad notis" -#: lib/oauthstore.php:466 lib/subs.php:48 -msgid "You have been banned from subscribing." -msgstr "Du har blivit utestängd från att prenumerera." - -#: lib/oauthstore.php:491 +#: lib/oauthstore.php:490 msgid "Couldn't insert new subscription." msgstr "Kunde inte infoga ny prenumeration." #: lib/personalgroupnav.php:99 msgid "Personal" -msgstr "Personlig" +msgstr "Personligt" #: lib/personalgroupnav.php:104 msgid "Replies" @@ -5265,19 +5940,19 @@ msgstr "Svar" msgid "Favorites" msgstr "Favoriter" -#: lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "Inkorg" -#: lib/personalgroupnav.php:125 +#: lib/personalgroupnav.php:126 msgid "Your incoming messages" msgstr "Dina inkommande meddelanden" -#: lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 msgid "Outbox" msgstr "Utkorg" -#: lib/personalgroupnav.php:130 +#: lib/personalgroupnav.php:131 msgid "Your sent messages" msgstr "Dina skickade meddelanden" @@ -5287,9 +5962,8 @@ msgid "Tags in %s's notices" msgstr "Taggar i %ss notiser" #: lib/plugin.php:114 -#, fuzzy msgid "Unknown" -msgstr "Okänd funktion" +msgstr "Okänd" #: lib/profileaction.php:109 lib/profileaction.php:192 lib/subgroupnav.php:82 msgid "Subscriptions" @@ -5329,7 +6003,7 @@ msgstr "Inte implementerad metod." #: lib/publicgroupnav.php:78 msgid "Public" -msgstr "Publik" +msgstr "Publikt" #: lib/publicgroupnav.php:82 msgid "User groups" @@ -5353,7 +6027,11 @@ msgstr "Upprepa denna notis?" #: lib/repeatform.php:132 msgid "Repeat this notice" -msgstr "Upprepa detta inlägg" +msgstr "Upprepa denna notis" + +#: lib/router.php:665 +msgid "No single user defined for single-user mode." +msgstr "Ingen enskild användare definierad för enanvändarläge." #: lib/sandboxform.php:67 msgid "Sandbox" @@ -5422,43 +6100,15 @@ msgstr "Personer som prenumererar på %s" msgid "Groups %s is a member of" msgstr "Grupper %s är en medlem i" -#: lib/subs.php:52 -msgid "Already subscribed!" -msgstr "Redan prenumerant!" - -#: lib/subs.php:56 -msgid "User has blocked you." -msgstr "Användaren har blockerat dig." - -#: lib/subs.php:63 -msgid "Could not subscribe." -msgstr "Kunde inte prenumerera." - -#: lib/subs.php:82 -msgid "Could not subscribe other to you." -msgstr "Kunde inte göra andra till prenumeranter hos dig." - -#: lib/subs.php:137 -msgid "Not subscribed!" -msgstr "Inte prenumerant!" - -#: lib/subs.php:142 -msgid "Couldn't delete self-subscription." -msgstr "Kunde inte ta bort själv-prenumeration." - -#: lib/subs.php:158 -msgid "Couldn't delete subscription." -msgstr "Kunde inte ta bort prenumeration." - #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" -msgstr "" +msgstr "Taggmoln för person, såsom taggat själv" #: lib/subscriberspeopletagcloudsection.php:48 #: lib/subscriptionspeopletagcloudsection.php:48 msgid "People Tagcloud as tagged" -msgstr "" +msgstr "Taggmoln för person, såsom taggats" #: lib/tagcloudsection.php:56 msgid "None" @@ -5498,69 +6148,69 @@ msgstr "Redigera avatar" #: lib/userprofile.php:236 msgid "User actions" -msgstr "Användaråtgärd" +msgstr "Åtgärder för användare" -#: lib/userprofile.php:248 +#: lib/userprofile.php:251 msgid "Edit profile settings" msgstr "Redigera profilinställningar" -#: lib/userprofile.php:249 +#: lib/userprofile.php:252 msgid "Edit" msgstr "Redigera" -#: lib/userprofile.php:272 +#: lib/userprofile.php:275 msgid "Send a direct message to this user" msgstr "Skicka ett direktmeddelande till denna användare" -#: lib/userprofile.php:273 +#: lib/userprofile.php:276 msgid "Message" msgstr "Meddelande" -#: lib/userprofile.php:311 +#: lib/userprofile.php:314 msgid "Moderate" msgstr "Moderera" -#: lib/util.php:877 +#: lib/util.php:952 msgid "a few seconds ago" msgstr "ett par sekunder sedan" -#: lib/util.php:879 +#: lib/util.php:954 msgid "about a minute ago" msgstr "för nån minut sedan" -#: lib/util.php:881 +#: lib/util.php:956 #, php-format msgid "about %d minutes ago" msgstr "för %d minuter sedan" -#: lib/util.php:883 +#: lib/util.php:958 msgid "about an hour ago" msgstr "för en timma sedan" -#: lib/util.php:885 +#: lib/util.php:960 #, php-format msgid "about %d hours ago" msgstr "för %d timmar sedan" -#: lib/util.php:887 +#: lib/util.php:962 msgid "about a day ago" msgstr "för en dag sedan" -#: lib/util.php:889 +#: lib/util.php:964 #, php-format msgid "about %d days ago" msgstr "för %d dagar sedan" -#: lib/util.php:891 +#: lib/util.php:966 msgid "about a month ago" msgstr "för en månad sedan" -#: lib/util.php:893 +#: lib/util.php:968 #, php-format msgid "about %d months ago" msgstr "för %d månader sedan" -#: lib/util.php:895 +#: lib/util.php:970 msgid "about a year ago" msgstr "för ett år sedan" @@ -5574,7 +6224,7 @@ msgstr "%s är inte en giltig färg!" msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "%s är inte en giltig färg! Använd 3 eller 6 hexadecimala tecken." -#: scripts/xmppdaemon.php:301 -#, fuzzy, php-format +#: lib/xmppmanager.php:402 +#, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." -msgstr "Meddelande för långt - maximum är %d tecken, du skickade %d" +msgstr "Meddelande för långt - maximum är %1$d tecken, du skickade %2$d." diff --git a/locale/te/LC_MESSAGES/statusnet.po b/locale/te/LC_MESSAGES/statusnet.po index 72ed8daafd..37a2582b30 100644 --- a/locale/te/LC_MESSAGES/statusnet.po +++ b/locale/te/LC_MESSAGES/statusnet.po @@ -8,17 +8,72 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-01-13 22:04+0000\n" -"PO-Revision-Date: 2010-01-13 22:06:12+0000\n" +"POT-Creation-Date: 2010-02-24 23:49+0000\n" +"PO-Revision-Date: 2010-02-24 23:51:47+0000\n" "Language-Team: Telugu\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha (r61027); Translate extension (2010-01-04)\n" +"X-Generator: MediaWiki 1.17alpha (r62925); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: te\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: actions/accessadminpanel.php:54 lib/adminpanelaction.php:326 +#, fuzzy +msgid "Access" +msgstr "అంగీకరించు" + +#: actions/accessadminpanel.php:65 +msgid "Site access settings" +msgstr "సైటు అందుబాటు అమరికలు" + +#: actions/accessadminpanel.php:158 +msgid "Registration" +msgstr "నమోదు" + +#: actions/accessadminpanel.php:161 +msgid "Private" +msgstr "అంతరంగికం" + +#: actions/accessadminpanel.php:163 +msgid "Prohibit anonymous users (not logged in) from viewing site?" +msgstr "అజ్ఞాత (ప్రవేశించని) వాడుకరులని సైటుని చూడకుండా నిషేధించాలా?" + +#: actions/accessadminpanel.php:167 +msgid "Invite only" +msgstr "ఆహ్వానితులకు మాత్రమే" + +#: actions/accessadminpanel.php:169 +msgid "Make registration invitation only." +msgstr "ఆహ్వానితులు మాత్రమే నమోదు అవ్వగలిగేలా చెయ్యి." + +#: actions/accessadminpanel.php:173 +#, fuzzy +msgid "Closed" +msgstr "అటువంటి వాడుకరి లేరు." + +#: actions/accessadminpanel.php:175 +msgid "Disable new registrations." +msgstr "కొత్త నమోదులను అచేతనంచేయి." + +#: actions/accessadminpanel.php:189 actions/designadminpanel.php:586 +#: actions/emailsettings.php:195 actions/imsettings.php:163 +#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 +#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 +#: actions/siteadminpanel.php:336 actions/smssettings.php:181 +#: actions/subscriptions.php:208 actions/tagother.php:154 +#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 lib/designsettings.php:256 +#: lib/groupeditform.php:202 +msgid "Save" +msgstr "భద్రపరచు" + +#: actions/accessadminpanel.php:189 +#, fuzzy +msgid "Save access settings" +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" @@ -33,25 +88,29 @@ msgstr "అటువంటి పేజీ లేదు" #: 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:144 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apistatusesupdate.php:148 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:78 #: actions/apitimelinehome.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/otp.php:76 #: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154 -#: actions/replies.php:73 actions/repliesrss.php:38 +#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 #: 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:302 lib/command.php:355 #: lib/command.php:401 lib/command.php:462 lib/command.php:518 #: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 -#: lib/subs.php:34 lib/subs.php:125 msgid "No such user." msgstr "అటువంటి వాడుకరి లేరు." +#: actions/all.php:84 +#, php-format +msgid "%1$s and friends, page %2$d" +msgstr "%1$s మరియు మిత్రులు, పేజీ %2$d" + #: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 -#: actions/apitimelinefriends.php:115 actions/apitimelinehome.php:115 +#: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" @@ -92,7 +151,7 @@ msgid "" "his or her attention](%%%%action.newnotice%%%%?status_textarea=%3$s)." msgstr "" -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211 #, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " @@ -103,8 +162,8 @@ msgstr "" msgid "You and friends" msgstr "మీరు మరియు మీ స్నేహితులు" -#: actions/allrss.php:119 actions/apitimelinefriends.php:122 -#: actions/apitimelinehome.php:122 +#: actions/allrss.php:119 actions/apitimelinefriends.php:119 +#: actions/apitimelinehome.php:120 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "" @@ -114,23 +173,23 @@ msgstr "" #: actions/apiaccountupdateprofile.php:97 #: actions/apiaccountupdateprofilebackgroundimage.php:94 #: actions/apiaccountupdateprofilecolors.php:118 -#: 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:136 actions/apigroupismember.php:114 -#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 -#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 -#: actions/apigroupmembership.php:106 actions/apigroupshow.php:105 -#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 -#: actions/apistatusesretweets.php:112 actions/apistatusesshow.php:108 -#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93 -#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:146 -#: actions/apitimelinefriends.php:156 actions/apitimelinegroup.php:150 -#: actions/apitimelinehome.php:156 actions/apitimelinementions.php:151 -#: actions/apitimelinepublic.php:131 actions/apitimelineretweetedbyme.php:122 +#: actions/apiaccountverifycredentials.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:128 actions/apigroupcreate.php:136 +#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 +#: actions/apigroupleave.php:141 actions/apigrouplist.php:132 +#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 +#: actions/apigroupshow.php:115 actions/apihelptest.php:88 +#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 +#: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 #: actions/apitimelineretweetedtome.php:121 -#: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141 -#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 +#: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 +#: actions/apitimelineuser.php:207 actions/apiusershow.php:101 #, fuzzy msgid "API method not found." msgstr "నిర్ధారణ సంకేతం కనబడలేదు." @@ -145,7 +204,7 @@ msgstr "నిర్ధారణ సంకేతం కనబడలేదు." #: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 #: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 #: actions/apigroupleave.php:91 actions/apistatusesretweet.php:65 -#: actions/apistatusesupdate.php:114 +#: actions/apistatusesupdate.php:118 msgid "This method requires a POST." msgstr "" @@ -176,8 +235,9 @@ msgstr "ప్రొఫైలుని భద్రపరచలేకున్ #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:97 -#: actions/apistatusesupdate.php:127 actions/avatarsettings.php:257 -#: actions/designadminpanel.php:122 actions/newnotice.php:94 +#: actions/apistatusesupdate.php:131 actions/avatarsettings.php:257 +#: actions/designadminpanel.php:122 actions/editapplication.php:118 +#: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 #, php-format msgid "" @@ -244,7 +304,7 @@ msgstr "చాలా పొడవుంది. గరిష్ఠ సందే #: actions/apidirectmessagenew.php:146 msgid "Recipient user not found." -msgstr "" +msgstr "అందుకోవాల్సిన వాడుకరి కనబడలేదు." #: actions/apidirectmessagenew.php:150 msgid "Can't send direct messages to users who aren't your friend." @@ -256,18 +316,16 @@ msgid "No status found with that ID." msgstr "" #: actions/apifavoritecreate.php:119 -#, fuzzy msgid "This status is already a favorite." -msgstr "ఈ నోటీసు ఇప్పటికే మీ ఇష్టాంశం!" +msgstr "ఈ నోటీసు ఇప్పటికే మీ ఇష్టాంశం." #: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:176 msgid "Could not create favorite." msgstr "ఇష్టాంశాన్ని సృష్టించలేకపోయాం." #: actions/apifavoritedestroy.php:122 -#, fuzzy msgid "That status is not a favorite." -msgstr "ఆ నోటీసు ఇష్టాంశం కాదు!" +msgstr "ఆ నోటీసు ఇష్టాంశం కాదు." #: actions/apifavoritedestroy.php:134 actions/disfavor.php:87 msgid "Could not delete favorite." @@ -275,12 +333,12 @@ msgstr "ఇష్టాంశాన్ని తొలగించలేకప #: actions/apifriendshipscreate.php:109 msgid "Could not follow user: User not found." -msgstr "" +msgstr "వాడుకరిని అనుసరించలేకపోయాం: వాడుకరి కనబడలేదు." #: actions/apifriendshipscreate.php:118 #, php-format msgid "Could not follow user: %s is already on your list." -msgstr "" +msgstr "వాడుకరిని అనుసరించలేకపోయాం: %s ఇప్పటికే మీ జాబితాలో ఉన్నారు." #: actions/apifriendshipsdestroy.php:109 #, fuzzy @@ -296,12 +354,12 @@ msgstr "మిమ్మల్ని మీరే నిరోధించుక msgid "Two user ids or screen_names must be supplied." msgstr "" -#: actions/apifriendshipsshow.php:135 +#: actions/apifriendshipsshow.php:134 #, fuzzy msgid "Could not determine source user." msgstr "వాడుకరిని తాజాకరించలేకున్నాం." -#: actions/apifriendshipsshow.php:143 +#: actions/apifriendshipsshow.php:142 msgid "Could not find target user." msgstr "లక్ష్యిత వాడుకరిని కనుగొనలేకపోయాం." @@ -323,7 +381,8 @@ msgstr "ఆ పేరుని ఇప్పటికే వాడుతున్ msgid "Not a valid nickname." msgstr "సరైన పేరు కాదు." -#: actions/apigroupcreate.php:196 actions/editgroup.php:195 +#: actions/apigroupcreate.php:196 actions/editapplication.php:215 +#: actions/editgroup.php:195 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:217 msgid "Homepage is not a valid URL." @@ -335,7 +394,8 @@ msgstr "హోమ్ పేజీ URL సరైనది కాదు." msgid "Full name is too long (max 255 chars)." msgstr "పూర్తి పేరు చాలా పెద్దగా ఉంది (గరిష్ఠంగా 255 అక్షరాలు)." -#: actions/apigroupcreate.php:213 +#: actions/apigroupcreate.php:213 actions/editapplication.php:190 +#: actions/newapplication.php:172 #, php-format msgid "Description is too long (max %d chars)." msgstr "వివరణ చాలా పెద్దగా ఉంది (%d అక్షరాలు గరిష్ఠం)." @@ -371,7 +431,7 @@ msgstr "మారుపేరు పేరుతో సమానంగా ఉం #: actions/apigroupismember.php:95 actions/apigroupjoin.php:104 #: actions/apigroupleave.php:104 actions/apigroupmembership.php:91 -#: actions/apigroupshow.php:90 actions/apitimelinegroup.php:91 +#: actions/apigroupshow.php:82 actions/apitimelinegroup.php:91 msgid "Group not found!" msgstr "గుంపు దొరకలేదు!" @@ -412,6 +472,113 @@ msgstr "%s గుంపులు" msgid "groups on %s" msgstr "%s పై గుంపులు" +#: actions/apioauthauthorize.php:101 +msgid "No oauth_token parameter provided." +msgstr "" + +#: actions/apioauthauthorize.php:106 +#, fuzzy +msgid "Invalid token." +msgstr "తప్పుడు పరిమాణం." + +#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 +#: actions/deletenotice.php:157 actions/disfavor.php:74 +#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54 +#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupunblock.php:66 actions/imsettings.php:206 +#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 +#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 +#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135 +#: actions/othersettings.php:145 actions/passwordsettings.php:138 +#: actions/profilesettings.php:194 actions/recoverpassword.php:337 +#: actions/register.php:165 actions/remotesubscribe.php:77 +#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 +#: actions/subscribe.php:86 actions/tagother.php:166 +#: 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/apioauthauthorize.php:135 +msgid "Invalid nickname / password!" +msgstr "తప్పుడు పేరు / సంకేతపదం!" + +#: actions/apioauthauthorize.php:159 +#, fuzzy +msgid "Database error deleting OAuth application user." +msgstr "అవతారాన్ని పెట్టడంలో పొరపాటు" + +#: actions/apioauthauthorize.php:185 +#, fuzzy +msgid "Database error inserting OAuth application user." +msgstr "అవతారాన్ని పెట్టడంలో పొరపాటు" + +#: actions/apioauthauthorize.php:214 +#, php-format +msgid "" +"The request token %s has been authorized. Please exchange it for an access " +"token." +msgstr "" + +#: actions/apioauthauthorize.php:227 +#, php-format +msgid "The request token %s has been denied and revoked." +msgstr "" + +#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 +#: actions/designadminpanel.php:103 actions/editapplication.php:139 +#: actions/emailsettings.php:256 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/newapplication.php:121 +#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 +#: actions/smssettings.php:248 lib/designsettings.php:304 +msgid "Unexpected form submission." +msgstr "" + +#: actions/apioauthauthorize.php:259 +msgid "An application would like to connect to your account" +msgstr "" + +#: actions/apioauthauthorize.php:276 +msgid "Allow or deny access" +msgstr "" + +#: actions/apioauthauthorize.php:292 +#, php-format +msgid "" +"The application %1$s by %2$s would like " +"the ability to %3$s your %4$s account data. You should only " +"give access to your %4$s account to third parties you trust." +msgstr "" + +#: actions/apioauthauthorize.php:310 lib/action.php:441 +msgid "Account" +msgstr "ఖాతా" + +#: actions/apioauthauthorize.php:313 actions/login.php:230 +#: actions/profilesettings.php:106 actions/register.php:424 +#: actions/showgroup.php:236 actions/tagother.php:94 +#: actions/userauthorization.php:145 lib/groupeditform.php:152 +#: lib/userprofile.php:131 +msgid "Nickname" +msgstr "పేరు" + +#: actions/apioauthauthorize.php:316 actions/login.php:233 +#: actions/register.php:429 lib/accountsettingsaction.php:116 +msgid "Password" +msgstr "సంకేతపదం" + +#: actions/apioauthauthorize.php:328 +msgid "Deny" +msgstr "తిరస్కరించు" + +#: actions/apioauthauthorize.php:334 +msgid "Allow" +msgstr "అనుమతించు" + +#: actions/apioauthauthorize.php:351 +msgid "Allow or deny access to your account information." +msgstr "" + #: actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." msgstr "" @@ -426,14 +593,12 @@ msgid "No such notice." msgstr "అటువంటి సందేశమేమీ లేదు." #: actions/apistatusesretweet.php:83 -#, fuzzy msgid "Cannot repeat your own notice." -msgstr "ఈ లైసెన్సుకి అంగీకరించకపోతే మీరు నమోదుచేసుకోలేరు." +msgstr "మీ నోటీసుని మీరే పునరావృతించలేరు." #: actions/apistatusesretweet.php:91 -#, fuzzy msgid "Already repeated that notice." -msgstr "ఈ నోటీసుని తొలగించు" +msgstr "ఇప్పటికే ఆ నోటీసుని పునరావృతించారు." #: actions/apistatusesshow.php:138 msgid "Status deleted." @@ -443,17 +608,17 @@ msgstr "స్థితిని తొలగించాం." msgid "No status with that ID found." msgstr "" -#: actions/apistatusesupdate.php:157 actions/newnotice.php:155 +#: actions/apistatusesupdate.php:161 actions/newnotice.php:155 #: lib/mailhandler.php:60 #, php-format msgid "That's too long. Max notice size is %d chars." msgstr "అది చాలా పొడవుంది. గరిష్ఠ నోటీసు పరిమాణం %d అక్షరాలు." -#: actions/apistatusesupdate.php:198 +#: actions/apistatusesupdate.php:202 msgid "Not found" msgstr "దొరకలేదు" -#: actions/apistatusesupdate.php:221 actions/newnotice.php:178 +#: actions/apistatusesupdate.php:225 actions/newnotice.php:178 #, php-format msgid "Max notice size is %d chars, including attachment URL." msgstr "గరిష్ఠ నోటీసు పొడవు %d అక్షరాలు, జోడింపు URLని కలుపుకుని." @@ -467,7 +632,7 @@ msgstr "" msgid "%1$s / Favorites from %2$s" msgstr "" -#: actions/apitimelinefavorites.php:120 +#: actions/apitimelinefavorites.php:117 #, fuzzy, php-format msgid "%1$s updates favorited by %2$s / %2$s." msgstr "%s యొక్క మైక్రోబ్లాగు" @@ -478,7 +643,7 @@ msgstr "%s యొక్క మైక్రోబ్లాగు" msgid "%s timeline" msgstr "%s కాలరేఖ" -#: actions/apitimelinegroup.php:117 actions/apitimelineuser.php:126 +#: actions/apitimelinegroup.php:114 actions/apitimelineuser.php:126 #: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" @@ -494,37 +659,32 @@ msgstr "" msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "" -#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "%s బహిరంగ కాలరేఖ" -#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" -msgstr "" - -#: actions/apitimelineretweetedbyme.php:112 -#, php-format -msgid "Repeated by %s" -msgstr "" +msgstr "అందరి నుండి %s తాజాకరణలు!" #: actions/apitimelineretweetedtome.php:111 #, fuzzy, php-format msgid "Repeated to %s" msgstr "%sకి స్పందనలు" -#: actions/apitimelineretweetsofme.php:112 -#, fuzzy, php-format +#: actions/apitimelineretweetsofme.php:114 +#, php-format msgid "Repeats of %s" -msgstr "%sకి స్పందనలు" +msgstr "%s యొక్క పునరావృతాలు" #: actions/apitimelinetag.php:102 actions/tag.php:66 #, php-format msgid "Notices tagged with %s" msgstr "" -#: actions/apitimelinetag.php:108 actions/tagrss.php:64 +#: actions/apitimelinetag.php:104 actions/tagrss.php:64 #, fuzzy, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "%s యొక్క మైక్రోబ్లాగు" @@ -585,8 +745,8 @@ msgstr "అసలు" msgid "Preview" msgstr "మునుజూపు" -#: actions/avatarsettings.php:149 lib/deleteuserform.php:66 -#: lib/noticelist.php:611 +#: actions/avatarsettings.php:149 actions/showapplication.php:252 +#: lib/deleteuserform.php:66 lib/noticelist.php:637 msgid "Delete" msgstr "తొలగించు" @@ -598,29 +758,6 @@ msgstr "ఎగుమతించు" msgid "Crop" msgstr "కత్తిరించు" -#: actions/avatarsettings.php:268 actions/deletenotice.php:157 -#: actions/disfavor.php:74 actions/emailsettings.php:238 actions/favor.php:75 -#: actions/geocode.php:50 actions/groupblock.php:66 actions/grouplogo.php:309 -#: actions/groupunblock.php:66 actions/imsettings.php:206 -#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 -#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 -#: actions/othersettings.php:145 actions/passwordsettings.php:138 -#: actions/profilesettings.php:194 actions/recoverpassword.php:337 -#: actions/register.php:165 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 -#: actions/subscribe.php:46 actions/tagother.php:166 -#: 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/avatarsettings.php:281 actions/designadminpanel.php:103 -#: actions/emailsettings.php:256 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/avatarsettings.php:328 msgid "Pick a square area of the image to be your avatar" msgstr "మీ అవతారానికి గానూ ఈ చిత్రం నుండి ఒక చతురస్రపు ప్రదేశాన్ని ఎంచుకోండి" @@ -656,8 +793,9 @@ msgid "" "will not be notified of any @-replies from them." msgstr "" -#: actions/block.php:143 actions/deletenotice.php:145 -#: actions/deleteuser.php:147 actions/groupblock.php:178 +#: actions/block.php:143 actions/deleteapplication.php:153 +#: actions/deletenotice.php:145 actions/deleteuser.php:147 +#: actions/groupblock.php:178 msgid "No" msgstr "కాదు" @@ -665,13 +803,13 @@ msgstr "కాదు" msgid "Do not block this user" msgstr "ఈ వాడుకరిని నిరోధించకు" -#: actions/block.php:144 actions/deletenotice.php:146 -#: actions/deleteuser.php:148 actions/groupblock.php:179 -#: lib/repeatform.php:132 +#: actions/block.php:144 actions/deleteapplication.php:158 +#: actions/deletenotice.php:146 actions/deleteuser.php:148 +#: actions/groupblock.php:179 lib/repeatform.php:132 msgid "Yes" msgstr "అవును" -#: actions/block.php:144 actions/groupmembers.php:346 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80 msgid "Block this user" msgstr "ఈ వాడుకరిని నిరోధించు" @@ -756,7 +894,7 @@ msgid "Couldn't delete email confirmation." msgstr "ఈమెయిల్ నిర్ధారణని తొలగించలేకున్నాం." #: actions/confirmaddress.php:144 -msgid "Confirm Address" +msgid "Confirm address" msgstr "చిరునామాని నిర్ధారించు" #: actions/confirmaddress.php:159 @@ -773,10 +911,50 @@ msgstr "సంభాషణ" msgid "Notices" msgstr "సందేశాలు" +#: actions/deleteapplication.php:63 +msgid "You must be logged in to delete an application." +msgstr "ఉపకరణాలని తొలగించడానికి మీరు ప్రవేశించి ఉండాలి." + +#: actions/deleteapplication.php:71 +msgid "Application not found." +msgstr "ఉపకరణం కనబడలేదు." + +#: actions/deleteapplication.php:78 actions/editapplication.php:77 +#: actions/showapplication.php:94 +msgid "You are not the owner of this application." +msgstr "మీరు ఈ ఉపకరణం యొక్క యజమాని కాదు." + +#: actions/deleteapplication.php:102 actions/editapplication.php:127 +#: actions/newapplication.php:110 actions/showapplication.php:118 +#: lib/action.php:1197 +msgid "There was a problem with your session token." +msgstr "" + +#: actions/deleteapplication.php:123 actions/deleteapplication.php:147 +msgid "Delete application" +msgstr "ఉపకరణ తొలగింపు" + +#: actions/deleteapplication.php:149 +msgid "" +"Are you sure you want to delete this application? This will clear all data " +"about the application from the database, including all existing user " +"connections." +msgstr "" +"మీరు నిజంగానే ఈ ఉపకరణాన్ని తొలగించాలనుకుంటున్నారా? ఇది ఆ ఉపకరణం గురించి భోగట్టాని, ప్రస్తుత " +"వాడుకరుల అనుసంధానాలతో సహా, డాటాబేసు నుండి తొలగిస్తుంది." + +#: actions/deleteapplication.php:156 +msgid "Do not delete this application" +msgstr "ఈ ఉపకరణాన్ని తొలగించకు" + +#: actions/deleteapplication.php:160 +msgid "Delete this application" +msgstr "ఈ ఉపకరణాన్ని తొలగించు" + #: 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/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 #: lib/adminpanelaction.php:72 lib/profileformaction.php:63 #: lib/settingsaction.php:72 @@ -805,7 +983,7 @@ msgstr "మీరు నిజంగానే ఈ నోటీసుని త msgid "Do not delete this notice" msgstr "ఈ నోటీసుని తొలగించకు" -#: actions/deletenotice.php:146 lib/noticelist.php:611 +#: actions/deletenotice.php:146 lib/noticelist.php:637 msgid "Delete this notice" msgstr "ఈ నోటీసుని తొలగించు" @@ -840,7 +1018,7 @@ msgstr "రూపురేఖలు" #: actions/designadminpanel.php:73 msgid "Design settings for this StatusNet site." -msgstr "" +msgstr "ఈ స్టేటస్‌నెట్ సైటుకి రూపురేఖల అమరికలు." #: actions/designadminpanel.php:275 msgid "Invalid logo URL." @@ -935,16 +1113,6 @@ msgstr "" msgid "Reset back to default" msgstr "" -#: actions/designadminpanel.php:586 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 -#: actions/pathsadminpanel.php:324 actions/profilesettings.php:174 -#: actions/siteadminpanel.php:388 actions/smssettings.php:181 -#: actions/subscriptions.php:203 actions/tagother.php:154 -#: actions/useradminpanel.php:313 lib/designsettings.php:256 -#: lib/groupeditform.php:202 -msgid "Save" -msgstr "భద్రపరచు" - #: actions/designadminpanel.php:587 lib/designsettings.php:257 msgid "Save design" msgstr "రూపురేఖలని భద్రపరచు" @@ -957,10 +1125,80 @@ msgstr "ఈ నోటీసు ఇష్టాంశం కాదు!" msgid "Add to favorites" msgstr "ఇష్టాంశాలకు చేర్చు" -#: actions/doc.php:69 -msgid "No such document." +#: actions/doc.php:158 +#, fuzzy, php-format +msgid "No such document \"%s\"" msgstr "అటువంటి పత్రమేమీ లేదు." +#: actions/editapplication.php:54 +#, fuzzy +msgid "Edit Application" +msgstr "ఉపకరణాన్ని మార్చు" + +#: actions/editapplication.php:66 +msgid "You must be logged in to edit an application." +msgstr "ఉపకరణాలని మార్చడానికి మీరు ప్రవేశించి ఉండాలి." + +#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:166 +#: actions/showapplication.php:87 +msgid "No such application." +msgstr "అటువంటి ఉపకరణం లేదు." + +#: actions/editapplication.php:161 +msgid "Use this form to edit your application." +msgstr "మీ ఉపకరణాన్ని మార్చడానికి ఈ ఫారాన్ని ఉపయోగించండి." + +#: actions/editapplication.php:177 actions/newapplication.php:159 +msgid "Name is required." +msgstr "పేరు తప్పనిసరి." + +#: actions/editapplication.php:180 actions/newapplication.php:165 +msgid "Name is too long (max 255 chars)." +msgstr "పేరు చాలా పెద్దగా ఉంది (గరిష్ఠంగా 255 అక్షరాలు)." + +#: actions/editapplication.php:183 actions/newapplication.php:162 +#, fuzzy +msgid "Name already in use. Try another one." +msgstr "ఆ పేరుని ఇప్పటికే వాడుతున్నారు. మరోటి ప్రయత్నించండి." + +#: actions/editapplication.php:186 actions/newapplication.php:168 +msgid "Description is required." +msgstr "వివరణ తప్పనిసరి." + +#: actions/editapplication.php:194 +msgid "Source URL is too long." +msgstr "" + +#: actions/editapplication.php:200 actions/newapplication.php:185 +#, fuzzy +msgid "Source URL is not valid." +msgstr "హోమ్ పేజీ URL సరైనది కాదు." + +#: actions/editapplication.php:203 actions/newapplication.php:188 +msgid "Organization is required." +msgstr "సంస్థ తప్పనిసరి." + +#: actions/editapplication.php:206 actions/newapplication.php:191 +msgid "Organization is too long (max 255 chars)." +msgstr "సంస్థ పేరు మరీ పెద్దగా ఉంది (255 అక్షరాలు గరిష్ఠం)." + +#: actions/editapplication.php:209 actions/newapplication.php:194 +msgid "Organization homepage is required." +msgstr "" + +#: actions/editapplication.php:218 actions/newapplication.php:206 +msgid "Callback is too long." +msgstr "" + +#: actions/editapplication.php:225 actions/newapplication.php:215 +msgid "Callback URL is not valid." +msgstr "" + +#: actions/editapplication.php:258 +#, fuzzy +msgid "Could not update application." +msgstr "గుంపుని తాజాకరించలేకున్నాం." + #: actions/editgroup.php:56 #, php-format msgid "Edit %s group" @@ -988,7 +1226,7 @@ msgstr "వివరణ చాలా పెద్దదిగా ఉంది (1 msgid "Could not update group." msgstr "గుంపుని తాజాకరించలేకున్నాం." -#: actions/editgroup.php:259 classes/User_group.php:390 +#: actions/editgroup.php:259 classes/User_group.php:433 msgid "Could not create aliases." msgstr "మారుపేర్లని సృష్టించలేకపోయాం." @@ -1027,7 +1265,8 @@ msgid "" msgstr "" #: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 +#: actions/smssettings.php:126 lib/applicationeditform.php:331 +#: lib/applicationeditform.php:332 msgid "Cancel" msgstr "రద్దుచేయి" @@ -1107,7 +1346,7 @@ msgid "Cannot normalize that email address" msgstr "" #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:157 +#: actions/siteadminpanel.php:143 msgid "Not a valid email address." msgstr "సరైన ఈమెయిల్ చిరునామా కాదు:" @@ -1119,7 +1358,7 @@ msgstr "అది ఇప్పటికే మీ ఈమెయిల్ చి msgid "That email address already belongs to another user." msgstr "ఆ ఈమెయిల్ చిరునామా ఇప్పటేకే ఇతర వాడుకరికి సంబంధించినది." -#: actions/emailsettings.php:353 actions/imsettings.php:317 +#: actions/emailsettings.php:353 actions/imsettings.php:319 #: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." msgstr "నిర్ధారణ సంకేతాన్ని చేర్చలేకపోయాం." @@ -1178,7 +1417,7 @@ msgstr "ఈ నోటీసు ఇప్పటికే మీ ఇష్టా msgid "Disfavor favorite" msgstr "" -#: actions/favorited.php:65 lib/popularnoticesection.php:88 +#: actions/favorited.php:65 lib/popularnoticesection.php:91 #: lib/publicgroupnav.php:93 msgid "Popular notices" msgstr "ప్రాచుర్య నోటీసులు" @@ -1233,7 +1472,7 @@ msgstr "విశేష వాడుకరులు, పేజీ %d" #: actions/featured.php:99 #, php-format msgid "A selection of some great users on %s" -msgstr "" +msgstr "%sలో కొందరు గొప్ప వాడుకరుల యొక్క ఎంపిక" #: actions/file.php:34 #, fuzzy @@ -1270,7 +1509,7 @@ msgstr "ఆ వాడుకరి మిమ్మల్ని చందాచే #: actions/finishremotesubscribe.php:110 msgid "You are not authorized." -msgstr "" +msgstr "మీకు అధీకరణ లేదు." #: actions/finishremotesubscribe.php:113 msgid "Could not convert request token to access token." @@ -1321,7 +1560,7 @@ msgstr "వాడుకరిని ఇప్పటికే గుంపున msgid "User is not a member of group." msgstr "వాడుకరి ఈ గుంపులో సభ్యులు కాదు." -#: actions/groupblock.php:136 actions/groupmembers.php:314 +#: actions/groupblock.php:136 actions/groupmembers.php:316 msgid "Block user from group" msgstr "వాడుకరిని గుంపు నుండి నిరోధించు" @@ -1332,6 +1571,8 @@ msgid "" "will be removed from the group, unable to post, and unable to subscribe to " "the group in the future." msgstr "" +"నిజంగానే వాడుకరి \"%1$s\"ని \"%2$s\" గుంపు నుండి నిరోధించాలనుకుంటున్నారా? వారిని గుంపు నుండి " +"తొలగిస్తాం, ఇక భవిష్యత్తులో వారు గుంపులో ప్రచురించలేరు, మరియు గుంపుకి చందాచేరలేరు." #: actions/groupblock.php:178 msgid "Do not block this user from this group" @@ -1407,31 +1648,31 @@ msgid "%s group members" msgstr "%s గుంపు సభ్యులు" #: actions/groupmembers.php:96 -#, fuzzy, php-format +#, php-format msgid "%1$s group members, page %2$d" -msgstr "%s గుంపు సభ్యులు, పేజీ %d" +msgstr "%1$s గుంపు సభ్యులు, పేజీ %2$d" #: actions/groupmembers.php:111 msgid "A list of the users in this group." msgstr "ఈ గుంపులో వాడుకరులు జాబితా." -#: actions/groupmembers.php:175 lib/action.php:442 lib/groupnav.php:107 +#: actions/groupmembers.php:175 lib/action.php:448 lib/groupnav.php:107 msgid "Admin" msgstr "" -#: actions/groupmembers.php:346 lib/blockform.php:69 +#: actions/groupmembers.php:348 lib/blockform.php:69 msgid "Block" msgstr "నిరోధించు" -#: actions/groupmembers.php:441 +#: actions/groupmembers.php:443 msgid "Make user an admin of the group" msgstr "వాడుకరిని గుంపుకి ఒక నిర్వాహకునిగా చేయి" -#: actions/groupmembers.php:473 +#: actions/groupmembers.php:475 msgid "Make Admin" msgstr "నిర్వాహకున్ని చేయి" -#: actions/groupmembers.php:473 +#: actions/groupmembers.php:475 msgid "Make this user an admin" msgstr "ఈ వాడుకరిని నిర్వాహకున్ని చేయి" @@ -1459,6 +1700,10 @@ msgid "" "for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" "%%%%)" msgstr "" +"ఒకే రకమైన ఆసక్తులు ఉన్న వ్యక్తులు కలుసుకోడానికి మరియు మాట్లాడుకోడానికి %%%%site.name%%%% " +"గుంపులు వీలుకల్పిస్తాయి. ఒక గుంపులో చేరిన తర్వాత మీరు \"!groupname\" అన్న సంకేతం ద్వారా ఆ " +"గుంపు లోని సభ్యులందరికీ సందేశాలని పంపించవచ్చు. మీకు నచ్చిన గుంపు కనబడలేదా? [దాని కోసం వెతకండి](%%" +"%%action.groupsearch%%%%) లేదా [మీరే కొత్తది సృష్టించండి!](%%%%action.newgroup%%%%)" #: actions/groups.php:107 actions/usergroups.php:124 lib/groupeditform.php:122 msgid "Create a new group" @@ -1496,6 +1741,8 @@ msgid "" "Why not [register an account](%%action.register%%) and [create the group](%%" "action.newgroup%%) yourself!" msgstr "" +"[ఒక ఖాతాని నమోదుచేసుకుని](%%action.register%%) మీరే ఎందుకు [ఆ గుంపుని సృష్టించ](%%" +"action.newgroup%%)కూడదు!" #: actions/groupunblock.php:91 msgid "Only an admin can unblock group members." @@ -1593,6 +1840,11 @@ msgstr "" msgid "That is not your Jabber ID." msgstr "ఇది మీ Jabber ID కాదు" +#: actions/inbox.php:59 +#, fuzzy, php-format +msgid "Inbox for %1$s - page %2$d" +msgstr "%sకి వచ్చినవి" + #: actions/inbox.php:62 #, php-format msgid "Inbox for %s" @@ -1651,7 +1903,7 @@ msgstr "" #: actions/invite.php:162 msgid "" "Use this form to invite your friends and colleagues to use this service." -msgstr "" +msgstr "ఈ ఫారాన్ని ఉపయోగించి మీ స్నేహితులను మరియు సహోద్యోగులను ఈ సేవను వినియోగించుకోమని ఆహ్వానించండి." #: actions/invite.php:187 msgid "Email addresses" @@ -1669,7 +1921,7 @@ msgstr "వ్యక్తిగత సందేశం" msgid "Optionally add a personal message to the invitation." msgstr "ఐచ్ఛికంగా ఆహ్వానానికి వ్యక్తిగత సందేశం చేర్చండి." -#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:237 +#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:236 msgid "Send" msgstr "పంపించు" @@ -1743,7 +1995,7 @@ msgstr "వాడుకరిపేరు లేదా సంకేతపదం msgid "Error setting user. You are probably not authorized." msgstr "" -#: actions/login.php:188 actions/login.php:241 lib/action.php:460 +#: actions/login.php:188 actions/login.php:241 lib/action.php:466 #: lib/logingroupnav.php:79 msgid "Login" msgstr "ప్రవేశించండి" @@ -1752,17 +2004,6 @@ msgstr "ప్రవేశించండి" msgid "Login to site" msgstr "సైటు లోనికి ప్రవేశించు" -#: actions/login.php:230 actions/profilesettings.php:106 -#: actions/register.php:424 actions/showgroup.php:236 actions/tagother.php:94 -#: lib/groupeditform.php:152 lib/userprofile.php:131 -msgid "Nickname" -msgstr "పేరు" - -#: actions/login.php:233 actions/register.php:429 -#: lib/accountsettingsaction.php:116 -msgid "Password" -msgstr "సంకేతపదం" - #: actions/login.php:236 actions/register.php:478 msgid "Remember me" msgstr "నన్ను గుర్తుంచుకో" @@ -1791,21 +2032,21 @@ msgstr "" "మీ వాడుకరిపేరు మరియు సంకేతపదాలతో ప్రవేశించండి. మీకు ఇంకా వాడుకరిపేరు లేదా? కొత్త ఖాతాని [నమోదుచేసుకోండి]" "(%%action.register%%)." -#: actions/makeadmin.php:91 +#: actions/makeadmin.php:92 msgid "Only an admin can make another user an admin." msgstr "నిర్వాహకులు మాత్రమే మరొక వాడుకరిని నిర్వాహకునిగా చేయగలరు." -#: actions/makeadmin.php:95 +#: actions/makeadmin.php:96 #, php-format msgid "%1$s is already an admin for group \"%2$s\"." msgstr "%1$s ఇప్పటికే \"%2$s\" గుంపు యొక్క ఒక నిర్వాకులు." -#: actions/makeadmin.php:132 +#: actions/makeadmin.php:133 #, fuzzy, php-format msgid "Can't get membership record for %1$s in group %2$s." msgstr "వాడుకరి %sని %s గుంపు నుండి తొలగించలేకపోయాం" -#: actions/makeadmin.php:145 +#: actions/makeadmin.php:146 #, fuzzy, php-format msgid "Can't make %1$s an admin for group %2$s." msgstr "%s ఇప్పటికే \"%s\" గుంపు యొక్క ఒక నిర్వాకులు." @@ -1814,6 +2055,27 @@ msgstr "%s ఇప్పటికే \"%s\" గుంపు యొక్క ఒ msgid "No current status" msgstr "ప్రస్తుత స్థితి ఏమీ లేదు" +#: actions/newapplication.php:52 +msgid "New Application" +msgstr "కొత్త ఉపకరణం" + +#: actions/newapplication.php:64 +msgid "You must be logged in to register an application." +msgstr "ఉపకరణాలని నమోదుచేసుకోడానికి మీరు లోనికి ప్రవేశించి ఉండాలి." + +#: actions/newapplication.php:143 +msgid "Use this form to register a new application." +msgstr "కొత్త ఉపకరణాన్ని నమోదుచేసుకోడానికి ఈ ఫారాన్ని ఉపయోగించండి." + +#: actions/newapplication.php:176 +msgid "Source URL is required." +msgstr "" + +#: actions/newapplication.php:258 actions/newapplication.php:267 +#, fuzzy +msgid "Could not create application." +msgstr "మారుపేర్లని సృష్టించలేకపోయాం." + #: actions/newgroup.php:53 msgid "New group" msgstr "కొత్త గుంపు" @@ -1897,6 +2159,8 @@ msgid "" "Why not [register an account](%%%%action.register%%%%) and be the first to " "[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" msgstr "" +"మీరు [ఒక ఖాతా నమోదు చేసుకుని](%%%%action.register%%%%) [ఈ విషయంపై వ్రాసే](%%%%action." +"newnotice%%%%?status_textarea=%s) మొదటివారు ఎందుకుకాకూడదు!" #: actions/noticesearchrss.php:96 #, fuzzy, php-format @@ -1921,6 +2185,49 @@ msgstr "" msgid "Nudge sent!" msgstr "" +#: actions/oauthappssettings.php:59 +msgid "You must be logged in to list your applications." +msgstr "మీ ఉపకరణాలను చూడడానికి మీరు ప్రవేశించి ఉండాలి." + +#: actions/oauthappssettings.php:74 +#, fuzzy +msgid "OAuth applications" +msgstr "ఇతర ఎంపికలు" + +#: actions/oauthappssettings.php:85 +msgid "Applications you have registered" +msgstr "మీరు నమోదు చేసివున్న ఉపకరణాలు" + +#: actions/oauthappssettings.php:135 +#, php-format +msgid "You have not registered any applications yet." +msgstr "" + +#: actions/oauthconnectionssettings.php:72 +msgid "Connected applications" +msgstr "సంధానిత ఉపకరణాలు" + +#: actions/oauthconnectionssettings.php:83 +msgid "You have allowed the following applications to access you account." +msgstr "" + +#: actions/oauthconnectionssettings.php:175 +msgid "You are not a user of that application." +msgstr "మీరు ఆ ఉపకరణం యొక్క వాడుకరి కాదు." + +#: actions/oauthconnectionssettings.php:186 +msgid "Unable to revoke access for app: " +msgstr "" + +#: actions/oauthconnectionssettings.php:198 +#, php-format +msgid "You have not authorized any applications to use your account." +msgstr "" + +#: actions/oauthconnectionssettings.php:211 +msgid "Developers can edit the registration settings for their applications " +msgstr "" + #: actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" msgstr "" @@ -1938,8 +2245,8 @@ msgstr "విషయ రకం " msgid "Only " msgstr "మాత్రమే " -#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1033 -#: lib/api.php:1061 lib/api.php:1171 +#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 +#: lib/api.php:1068 lib/api.php:1177 msgid "Not a supported data format." msgstr "" @@ -1952,7 +2259,7 @@ msgid "Notice Search" msgstr "నోటీసుల అన్వేషణ" #: actions/othersettings.php:60 -msgid "Other Settings" +msgid "Other settings" msgstr "ఇతర అమరికలు" #: actions/othersettings.php:71 @@ -2008,6 +2315,11 @@ msgstr "సందేశపు విషయం సరైనది కాదు" msgid "Login token expired." msgstr "సైటు లోనికి ప్రవేశించు" +#: actions/outbox.php:58 +#, php-format +msgid "Outbox for %1$s - page %2$d" +msgstr "" + #: actions/outbox.php:61 #, php-format msgid "Outbox for %s" @@ -2078,7 +2390,7 @@ msgstr "కొత్త సంకేతపదాన్ని భద్రపర msgid "Password saved." msgstr "సంకేతపదం భద్రమయ్యింది." -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:326 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:331 msgid "Paths" msgstr "" @@ -2086,137 +2398,153 @@ msgstr "" msgid "Path and server settings for this StatusNet site." msgstr "" -#: actions/pathsadminpanel.php:140 +#: actions/pathsadminpanel.php:157 #, fuzzy, php-format msgid "Theme directory not readable: %s" msgstr "హోమ్ పేజీ URL సరైనది కాదు." -#: actions/pathsadminpanel.php:146 +#: actions/pathsadminpanel.php:163 #, php-format msgid "Avatar directory not writable: %s" msgstr "" -#: actions/pathsadminpanel.php:152 +#: actions/pathsadminpanel.php:169 #, php-format msgid "Background directory not writable: %s" msgstr "" -#: actions/pathsadminpanel.php:160 +#: actions/pathsadminpanel.php:177 #, php-format msgid "Locales directory not readable: %s" msgstr "" -#: actions/pathsadminpanel.php:166 +#: actions/pathsadminpanel.php:183 msgid "Invalid SSL server. The maximum length is 255 characters." msgstr "" -#: actions/pathsadminpanel.php:217 actions/siteadminpanel.php:58 +#: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58 #: lib/adminpanelaction.php:311 msgid "Site" msgstr "సైటు" -#: actions/pathsadminpanel.php:221 +#: actions/pathsadminpanel.php:238 +msgid "Server" +msgstr "సేవకి" + +#: actions/pathsadminpanel.php:238 +msgid "Site's server hostname." +msgstr "" + +#: actions/pathsadminpanel.php:242 msgid "Path" msgstr "" -#: actions/pathsadminpanel.php:221 +#: actions/pathsadminpanel.php:242 #, fuzzy msgid "Site path" msgstr "కొత్త సందేశం" -#: actions/pathsadminpanel.php:225 +#: actions/pathsadminpanel.php:246 msgid "Path to locales" msgstr "" -#: actions/pathsadminpanel.php:225 +#: actions/pathsadminpanel.php:246 msgid "Directory path to locales" msgstr "" -#: actions/pathsadminpanel.php:232 +#: actions/pathsadminpanel.php:250 +msgid "Fancy URLs" +msgstr "" + +#: actions/pathsadminpanel.php:252 +msgid "Use fancy (more readable and memorable) URLs?" +msgstr "" + +#: actions/pathsadminpanel.php:259 msgid "Theme" msgstr "అలంకారం" -#: actions/pathsadminpanel.php:237 +#: actions/pathsadminpanel.php:264 msgid "Theme server" msgstr "అలంకారాల సేవకి" -#: actions/pathsadminpanel.php:241 +#: actions/pathsadminpanel.php:268 msgid "Theme path" msgstr "" -#: actions/pathsadminpanel.php:245 +#: actions/pathsadminpanel.php:272 msgid "Theme directory" msgstr "అలంకార సంచయం" -#: actions/pathsadminpanel.php:252 +#: actions/pathsadminpanel.php:279 msgid "Avatars" msgstr "అవతారాలు" -#: actions/pathsadminpanel.php:257 +#: actions/pathsadminpanel.php:284 msgid "Avatar server" msgstr "అవతారాల సేవకి" -#: actions/pathsadminpanel.php:261 +#: actions/pathsadminpanel.php:288 #, fuzzy msgid "Avatar path" msgstr "అవతారాన్ని తాజాకరించాం." -#: actions/pathsadminpanel.php:265 +#: actions/pathsadminpanel.php:292 msgid "Avatar directory" msgstr "అవతారాల సంచయం" -#: actions/pathsadminpanel.php:274 +#: actions/pathsadminpanel.php:301 msgid "Backgrounds" msgstr "నేపథ్యాలు" -#: actions/pathsadminpanel.php:278 +#: actions/pathsadminpanel.php:305 msgid "Background server" msgstr "నేపథ్యాల సేవకి" -#: actions/pathsadminpanel.php:282 +#: actions/pathsadminpanel.php:309 #, fuzzy msgid "Background path" msgstr "నేపథ్యం" -#: actions/pathsadminpanel.php:286 +#: actions/pathsadminpanel.php:313 msgid "Background directory" msgstr "నేపథ్యాల సంచయం" -#: actions/pathsadminpanel.php:293 +#: actions/pathsadminpanel.php:320 msgid "SSL" msgstr "" -#: actions/pathsadminpanel.php:296 actions/siteadminpanel.php:346 +#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 #, fuzzy msgid "Never" msgstr "వైదొలగు" -#: actions/pathsadminpanel.php:297 +#: actions/pathsadminpanel.php:324 msgid "Sometimes" msgstr "కొన్నిసార్లు" -#: actions/pathsadminpanel.php:298 +#: actions/pathsadminpanel.php:325 msgid "Always" msgstr "ఎల్లప్పుడూ" -#: actions/pathsadminpanel.php:302 +#: actions/pathsadminpanel.php:329 msgid "Use SSL" msgstr "" -#: actions/pathsadminpanel.php:303 +#: actions/pathsadminpanel.php:330 msgid "When to use SSL" msgstr "" -#: actions/pathsadminpanel.php:308 +#: actions/pathsadminpanel.php:335 #, fuzzy msgid "SSL server" msgstr "వైదొలగు" -#: actions/pathsadminpanel.php:309 +#: actions/pathsadminpanel.php:336 msgid "Server to direct SSL requests to" msgstr "" -#: actions/pathsadminpanel.php:325 +#: actions/pathsadminpanel.php:352 #, fuzzy msgid "Save paths" msgstr "కొత్త సందేశం" @@ -2279,7 +2607,7 @@ msgid "Full name" msgstr "పూర్తి పేరు" #: actions/profilesettings.php:115 actions/register.php:453 -#: lib/groupeditform.php:161 +#: lib/applicationeditform.php:228 lib/groupeditform.php:161 msgid "Homepage" msgstr "హోమ్ పేజీ" @@ -2302,7 +2630,7 @@ msgstr "స్వపరిచయం" #: actions/profilesettings.php:132 actions/register.php:471 #: actions/showgroup.php:256 actions/tagother.php:112 -#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:164 msgid "Location" msgstr "ప్రాంతం" @@ -2326,7 +2654,7 @@ msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" -#: actions/profilesettings.php:151 actions/siteadminpanel.php:294 +#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 msgid "Language" msgstr "భాష" @@ -2352,7 +2680,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "స్వపరిచయం చాలా పెద్దగా ఉంది (%d అక్షరాలు గరిష్ఠం)." -#: actions/profilesettings.php:235 actions/siteadminpanel.php:164 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 msgid "Timezone not selected." msgstr "కాలమండలాన్ని ఎంచుకోలేదు." @@ -2365,24 +2693,24 @@ msgstr "భాష మరీ పెద్దగా ఉంది (50 అక్ష msgid "Invalid tag: \"%s\"" msgstr "'%s' అనే హోమ్ పేజీ సరైనదికాదు" -#: actions/profilesettings.php:302 +#: actions/profilesettings.php:306 msgid "Couldn't update user for autosubscribe." msgstr "" -#: actions/profilesettings.php:359 +#: actions/profilesettings.php:363 #, fuzzy msgid "Couldn't save location prefs." msgstr "ట్యాగులని భద్రపరచలేకున్నాం." -#: actions/profilesettings.php:371 +#: actions/profilesettings.php:375 msgid "Couldn't save profile." msgstr "ప్రొఫైలుని భద్రపరచలేకున్నాం." -#: actions/profilesettings.php:379 +#: actions/profilesettings.php:383 msgid "Couldn't save tags." msgstr "ట్యాగులని భద్రపరచలేకున్నాం." -#: actions/profilesettings.php:387 lib/adminpanelaction.php:137 +#: actions/profilesettings.php:391 lib/adminpanelaction.php:137 msgid "Settings saved." msgstr "అమరికలు భద్రమయ్యాయి." @@ -2404,39 +2732,39 @@ msgstr "ప్రజా కాలరేఖ, పేజీ %d" msgid "Public timeline" msgstr "ప్రజా కాలరేఖ" -#: actions/public.php:151 +#: actions/public.php:159 #, fuzzy msgid "Public Stream Feed (RSS 1.0)" msgstr "ప్రజా వాహిని ఫీడు" -#: actions/public.php:155 +#: actions/public.php:163 #, fuzzy msgid "Public Stream Feed (RSS 2.0)" msgstr "ప్రజా వాహిని ఫీడు" -#: actions/public.php:159 +#: actions/public.php:167 #, fuzzy msgid "Public Stream Feed (Atom)" msgstr "ప్రజా వాహిని ఫీడు" -#: actions/public.php:179 +#: actions/public.php:187 #, php-format msgid "" "This is the public timeline for %%site.name%% but no one has posted anything " "yet." msgstr "" -#: actions/public.php:182 +#: actions/public.php:190 msgid "Be the first to post!" msgstr "" -#: actions/public.php:186 +#: actions/public.php:194 #, php-format msgid "" "Why not [register an account](%%action.register%%) and be the first to post!" msgstr "" -#: actions/public.php:233 +#: actions/public.php:241 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2445,13 +2773,15 @@ msgid "" "friends, family, and colleagues! ([Read more](%%doc.help%%))" msgstr "" -#: actions/public.php:238 +#: actions/public.php:246 #, 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://status.net/) అనే పనిముట్టుపై " +"ఆధారపడిన ఒక [మైక్రో-బ్లాగింగు](http://en.wikipedia.org/wiki/Micro-blogging) సేవ." #: actions/publictagcloud.php:57 #, fuzzy @@ -2477,9 +2807,9 @@ msgstr "" msgid "" "Why not [register an account](%%action.register%%) and be the first to post " "one!" -msgstr "" +msgstr "[ఒక ఖాతాని నమోదుచేసుకుని](%%action.register%%) మీరే మొదట వ్రాసేవారు ఎందుకు కాకూడదు!" -#: actions/publictagcloud.php:131 +#: actions/publictagcloud.php:134 msgid "Tag cloud" msgstr "ట్యాగు మేఘం" @@ -2552,7 +2882,7 @@ msgstr "" #: actions/recoverpassword.php:213 msgid "Unknown action" -msgstr "" +msgstr "తెలియని చర్య" #: actions/recoverpassword.php:236 msgid "6 or more characters, and don't forget it!" @@ -2616,7 +2946,7 @@ msgstr "క్షమించండి, తప్పు ఆహ్వాన స msgid "Registration successful" msgstr "నమోదు విజయవంతం" -#: actions/register.php:114 actions/register.php:503 lib/action.php:457 +#: actions/register.php:114 actions/register.php:503 lib/action.php:463 #: lib/logingroupnav.php:85 msgid "Register" msgstr "నమోదు" @@ -2656,7 +2986,7 @@ msgid "Same as password above. Required." msgstr "పై సంకేతపదం మరోసారి. తప్పనిసరి." #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:270 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 msgid "Email" msgstr "ఈమెయిల్" @@ -2700,6 +3030,18 @@ msgid "" "\n" "Thanks for signing up and we hope you enjoy using this service." msgstr "" +"%1$s, అభినందనలు! %%%%site.name%%%%కి స్వాగతం. ఇక్కడ నుండి, మీరు...\n" +"\n" +"* [మీ ప్రొఫైలు](%2$s)కి వెళ్ళి మీ మొదటి సందేశాన్ని వ్రాయండి.\n" +"* [జాబర్/జీటాక్ చిరునామాని](%%%%action.imsettings%%%%) చేర్చుకోండి అప్పుడు తక్షణ సందేశాల ద్వారా " +"మీరు నోటీసులని పంపగలుగుతారు.\n" +"* మీకు తెలిసిన లేదా మీ ఆసక్తులను పంచుకునే [వ్యక్తుల కోసం వెతకండి](%%%%action.peoplesearch%%" +"%%).\n" +"* మీ గురించి ఇతరులకు మరింత చెప్పడానికి మీ [ప్రొఫైలు అమరికలని](%%%%action.profilesettings%%%" +"%) తాజాకరించుకోండి. \n" +"* సౌలభ్యాలను తెలుసుకోడానికి [ఆన్‌లైన్ పత్రావళి](%%%%doc.help%%%%)ని చూడండి. \n" +"\n" +"నమోదుచేసుకున్నందుకు కృతజ్ఞతలు మరియు ఈ సేవని ఉపయోగిస్తూ మీరు ఆనందిస్తారని మేం ఆశిస్తున్నాం." #: actions/register.php:562 msgid "" @@ -2741,7 +3083,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:365 +#: lib/userprofile.php:368 msgid "Subscribe" msgstr "చందాచేరు" @@ -2780,7 +3122,7 @@ msgstr "ఈ లైసెన్సుకి అంగీకరించకపో msgid "You already repeated that notice." msgstr "మీరు ఇప్పటికే ఆ వాడుకరిని నిరోధించారు." -#: actions/repeat.php:114 lib/noticelist.php:629 +#: actions/repeat.php:114 lib/noticelist.php:656 #, fuzzy msgid "Repeated" msgstr "సృష్టితం" @@ -2796,6 +3138,11 @@ msgstr "సృష్టితం" msgid "Replies to %s" msgstr "%sకి స్పందనలు" +#: actions/replies.php:127 +#, fuzzy, php-format +msgid "Replies to %1$s, page %2$d" +msgstr "%sకి స్పందనలు" + #: actions/replies.php:144 #, fuzzy, php-format msgid "Replies feed for %s (RSS 1.0)" @@ -2824,6 +3171,8 @@ msgid "" "You can engage other users in a conversation, subscribe to more people or " "[join groups](%%action.groups%%)." msgstr "" +"మీరు ఇతర వాడుకరులతో సంభాషించవచ్చు, మరింత మంది వ్యక్తులకు చందాచేరవచ్చు లేదా [గుంపులలో చేరవచ్చు]" +"(%%action.groups%%)." #: actions/replies.php:205 #, php-format @@ -2837,6 +3186,10 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "%sకి స్పందనలు" +#: actions/rsd.php:146 actions/version.php:157 +msgid "StatusNet" +msgstr "స్టేటస్‌నెట్" + #: actions/sandbox.php:65 actions/unsandbox.php:65 #, fuzzy msgid "You cannot sandbox users on this site." @@ -2847,6 +3200,123 @@ msgstr "మీరు ఇప్పటికే లోనికి ప్రవే msgid "User is already sandboxed." msgstr "వాడుకరిని ఇప్పటికే గుంపునుండి నిరోధించారు." +#: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:336 +msgid "Sessions" +msgstr "" + +#: actions/sessionsadminpanel.php:65 +#, fuzzy +msgid "Session settings for this StatusNet site." +msgstr "ఈ స్టేటస్‌నెట్ సైటుకి రూపురేఖల అమరికలు." + +#: actions/sessionsadminpanel.php:175 +msgid "Handle sessions" +msgstr "" + +#: actions/sessionsadminpanel.php:177 +msgid "Whether to handle sessions ourselves." +msgstr "" + +#: actions/sessionsadminpanel.php:181 +msgid "Session debugging" +msgstr "" + +#: actions/sessionsadminpanel.php:183 +msgid "Turn on debugging output for sessions." +msgstr "" + +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/useradminpanel.php:293 +msgid "Save site settings" +msgstr "సైటు అమరికలను భద్రపరచు" + +#: actions/showapplication.php:82 +#, fuzzy +msgid "You must be logged in to view an application." +msgstr "గుంపుని వదిలివెళ్ళడానికి మీరు ప్రవేశించి ఉండాలి." + +#: actions/showapplication.php:157 +msgid "Application profile" +msgstr "" + +#: actions/showapplication.php:159 lib/applicationeditform.php:180 +msgid "Icon" +msgstr "ప్రతీకం" + +#: actions/showapplication.php:169 actions/version.php:195 +#: lib/applicationeditform.php:195 +msgid "Name" +msgstr "పేరు" + +#: actions/showapplication.php:178 lib/applicationeditform.php:222 +msgid "Organization" +msgstr "సంస్ధ" + +#: actions/showapplication.php:187 actions/version.php:198 +#: lib/applicationeditform.php:209 lib/groupeditform.php:172 +msgid "Description" +msgstr "వివరణ" + +#: actions/showapplication.php:192 actions/showgroup.php:429 +#: lib/profileaction.php:174 +msgid "Statistics" +msgstr "గణాంకాలు" + +#: actions/showapplication.php:203 +#, php-format +msgid "Created by %1$s - %2$s access by default - %3$d users" +msgstr "" + +#: actions/showapplication.php:213 +msgid "Application actions" +msgstr "ఉపకరణ చర్యలు" + +#: actions/showapplication.php:236 +msgid "Reset key & secret" +msgstr "" + +#: actions/showapplication.php:261 +msgid "Application info" +msgstr "ఉపకరణ సమాచారం" + +#: actions/showapplication.php:263 +msgid "Consumer key" +msgstr "" + +#: actions/showapplication.php:268 +msgid "Consumer secret" +msgstr "" + +#: actions/showapplication.php:273 +msgid "Request token URL" +msgstr "" + +#: actions/showapplication.php:278 +msgid "Access token URL" +msgstr "" + +#: actions/showapplication.php:283 +#, fuzzy +msgid "Authorize URL" +msgstr "రచయిత" + +#: actions/showapplication.php:288 +msgid "" +"Note: We support HMAC-SHA1 signatures. We do not support the plaintext " +"signature method." +msgstr "" + +#: actions/showapplication.php:309 +#, fuzzy +msgid "Are you sure you want to reset your consumer key and secret?" +msgstr "మీరు నిజంగానే ఈ నోటీసుని తొలగించాలనుకుంటున్నారా?" + +#: actions/showfavorites.php:79 +#, php-format +msgid "%1$s's favorite notices, page %2$d" +msgstr "%1$sకి ఇష్టమైన నోటీసులు, పేజీ %2$d" + #: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "" @@ -2896,17 +3366,22 @@ msgstr "మీకు నచ్చినవి పంచుకోడానిక msgid "%s group" msgstr "%s గుంపు" +#: actions/showgroup.php:84 +#, fuzzy, php-format +msgid "%1$s group, page %2$d" +msgstr "%1$s గుంపు సభ్యులు, పేజీ %2$d" + #: actions/showgroup.php:218 msgid "Group profile" msgstr "గుంపు ప్రొఫైలు" #: actions/showgroup.php:263 actions/tagother.php:118 -#: actions/userauthorization.php:167 lib/userprofile.php:177 +#: actions/userauthorization.php:175 lib/userprofile.php:177 msgid "URL" msgstr "" #: actions/showgroup.php:274 actions/tagother.php:128 -#: actions/userauthorization.php:179 lib/userprofile.php:194 +#: actions/userauthorization.php:187 lib/userprofile.php:194 msgid "Note" msgstr "గమనిక" @@ -2952,10 +3427,6 @@ msgstr "(ఏమీలేదు)" msgid "All members" msgstr "అందరు సభ్యులూ" -#: actions/showgroup.php:429 lib/profileaction.php:174 -msgid "Statistics" -msgstr "గణాంకాలు" - #: actions/showgroup.php:432 msgid "Created" msgstr "సృష్టితం" @@ -3010,6 +3481,11 @@ msgstr "నోటీసుని తొలగించాం." msgid " tagged %s" msgstr "" +#: actions/showstream.php:79 +#, fuzzy, php-format +msgid "%1$s, page %2$d" +msgstr "%1$s మరియు మిత్రులు, పేజీ %2$d" + #: actions/showstream.php:122 #, fuzzy, php-format msgid "Notice feed for %1$s tagged %2$s (RSS 1.0)" @@ -3035,25 +3511,26 @@ msgstr "%s యొక్క సందేశముల ఫీడు" msgid "FOAF for %s" msgstr "" -#: actions/showstream.php:191 +#: actions/showstream.php:200 #, fuzzy, php-format msgid "This is the timeline for %1$s but %2$s hasn't posted anything yet." msgstr "ఇది %s మరియు మిత్రుల కాలరేఖ కానీ ఇంకా ఎవరూ ఏమీ రాయలేదు." -#: actions/showstream.php:196 +#: actions/showstream.php:205 msgid "" "Seen anything interesting recently? You haven't posted any notices yet, now " "would be a good time to start :)" msgstr "" +"ఈమధ్యే ఏదైనా ఆసక్తికరమైనది చూసారా? మీరు ఇంకా నోటీసులేమీ వ్రాయలేదు, మొదలుపెట్టడానికి ఇదే మంచి సమయం :)" -#: actions/showstream.php:198 +#: actions/showstream.php:207 #, php-format msgid "" "You can try to nudge %1$s or [post something to his or her attention](%%%%" "action.newnotice%%%%?status_textarea=%2$s)." msgstr "" -#: actions/showstream.php:234 +#: actions/showstream.php:243 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3062,7 +3539,7 @@ msgid "" "follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showstream.php:239 +#: actions/showstream.php:248 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3070,10 +3547,10 @@ msgid "" "[StatusNet](http://status.net/) tool. " msgstr "" -#: actions/showstream.php:313 -#, fuzzy, php-format +#: actions/showstream.php:305 +#, php-format msgid "Repeat of %s" -msgstr "%sకి స్పందనలు" +msgstr "%s యొక్క పునరావృతం" #: actions/silence.php:65 actions/unsilence.php:65 msgid "You cannot silence users on this site." @@ -3086,206 +3563,147 @@ msgstr "వాడుకరిని ఇప్పటికే గుంపున #: actions/siteadminpanel.php:69 msgid "Basic settings for this StatusNet site." -msgstr "" +msgstr "ఈ స్టేటస్‌నెట్ సైటుకి ప్రాధమిక అమరికలు." -#: actions/siteadminpanel.php:146 +#: actions/siteadminpanel.php:132 msgid "Site name must have non-zero length." -msgstr "" +msgstr "సైటు పేరు తప్పనిసరిగా సున్నా కంటే ఎక్కువ పొడవుండాలి." -#: actions/siteadminpanel.php:154 -#, fuzzy +#: actions/siteadminpanel.php:140 msgid "You must have a valid contact email address." -msgstr "మీకు సరైన సంప్రదింపు ఈమెయిలు చిరునామా ఉండాలి" +msgstr "మీకు సరైన సంప్రదింపు ఈమెయిలు చిరునామా ఉండాలి." -#: actions/siteadminpanel.php:172 -#, fuzzy, php-format +#: actions/siteadminpanel.php:158 +#, php-format msgid "Unknown language \"%s\"." -msgstr "గుర్తు తెలియని భాష \"%s\"" +msgstr "గుర్తు తెలియని భాష \"%s\"." -#: actions/siteadminpanel.php:179 +#: actions/siteadminpanel.php:165 msgid "Invalid snapshot report URL." msgstr "" -#: actions/siteadminpanel.php:185 +#: actions/siteadminpanel.php:171 msgid "Invalid snapshot run value." msgstr "" -#: actions/siteadminpanel.php:191 +#: actions/siteadminpanel.php:177 msgid "Snapshot frequency must be a number." msgstr "" -#: actions/siteadminpanel.php:197 +#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "కనిష్ఠ పాఠ్య పరిమితి 140 అక్షరాలు." -#: actions/siteadminpanel.php:203 +#: actions/siteadminpanel.php:189 msgid "Dupe limit must 1 or more seconds." msgstr "" -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:239 msgid "General" msgstr "సాధారణ" -#: actions/siteadminpanel.php:256 +#: actions/siteadminpanel.php:242 msgid "Site name" msgstr "సైటు పేరు" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:243 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "మీ సైటు యొక్క పేరు, ఇలా \"మీకంపెనీ మైక్రోబ్లాగు\"" -#: actions/siteadminpanel.php:261 +#: actions/siteadminpanel.php:247 msgid "Brought by" msgstr "" -#: actions/siteadminpanel.php:262 +#: actions/siteadminpanel.php:248 msgid "Text used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:266 +#: actions/siteadminpanel.php:252 msgid "Brought by URL" msgstr "" -#: actions/siteadminpanel.php:267 +#: actions/siteadminpanel.php:253 msgid "URL used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:271 +#: actions/siteadminpanel.php:257 #, fuzzy msgid "Contact email address for your site" msgstr "ఈ వాడుకరికై నమోదైన ఈమెయిల్ చిరునామాలు ఏమీ లేవు." -#: actions/siteadminpanel.php:277 -#, fuzzy +#: actions/siteadminpanel.php:263 msgid "Local" -msgstr "ప్రాంతం" +msgstr "స్థానిక" -#: actions/siteadminpanel.php:288 +#: actions/siteadminpanel.php:274 msgid "Default timezone" -msgstr "" +msgstr "అప్రమేయ కాలమండలం" -#: actions/siteadminpanel.php:289 +#: actions/siteadminpanel.php:275 msgid "Default timezone for the site; usually UTC." msgstr "" -#: actions/siteadminpanel.php:295 -#, fuzzy +#: actions/siteadminpanel.php:281 msgid "Default site language" -msgstr "ప్రాథాన్యతా భాష" +msgstr "అప్రమేయ సైటు భాష" -#: actions/siteadminpanel.php:303 -msgid "URLs" -msgstr "" - -#: actions/siteadminpanel.php:306 -#, fuzzy -msgid "Server" -msgstr "వైదొలగు" - -#: actions/siteadminpanel.php:306 -msgid "Site's server hostname." -msgstr "" - -#: actions/siteadminpanel.php:310 -msgid "Fancy URLs" -msgstr "" - -#: actions/siteadminpanel.php:312 -msgid "Use fancy (more readable and memorable) URLs?" -msgstr "" - -#: actions/siteadminpanel.php:318 -#, fuzzy -msgid "Access" -msgstr "అంగీకరించు" - -#: actions/siteadminpanel.php:321 -msgid "Private" -msgstr "అంతరంగికం" - -#: actions/siteadminpanel.php:323 -msgid "Prohibit anonymous users (not logged in) from viewing site?" -msgstr "అజ్ఞాత (ప్రవేశించని) వాడుకరులని సైటుని చూడకుండా నిషేధించాలా?" - -#: actions/siteadminpanel.php:327 -msgid "Invite only" -msgstr "ఆహ్వానితులకు మాత్రమే" - -#: actions/siteadminpanel.php:329 -msgid "Make registration invitation only." -msgstr "ఆహ్వానితులు మాత్రమే నమోదు అవ్వగలిగేలా చెయ్యి." - -#: actions/siteadminpanel.php:333 -#, fuzzy -msgid "Closed" -msgstr "అటువంటి వాడుకరి లేరు." - -#: actions/siteadminpanel.php:335 -msgid "Disable new registrations." -msgstr "కొత్త నమోదులను అచేతనంచేయి." - -#: actions/siteadminpanel.php:341 +#: actions/siteadminpanel.php:289 msgid "Snapshots" msgstr "" -#: actions/siteadminpanel.php:344 +#: actions/siteadminpanel.php:292 msgid "Randomly during Web hit" msgstr "" -#: actions/siteadminpanel.php:345 +#: actions/siteadminpanel.php:293 msgid "In a scheduled job" msgstr "" -#: actions/siteadminpanel.php:347 +#: actions/siteadminpanel.php:295 msgid "Data snapshots" msgstr "" -#: actions/siteadminpanel.php:348 +#: actions/siteadminpanel.php:296 msgid "When to send statistical data to status.net servers" msgstr "" -#: actions/siteadminpanel.php:353 +#: actions/siteadminpanel.php:301 msgid "Frequency" msgstr "తరచుదనం" -#: actions/siteadminpanel.php:354 +#: actions/siteadminpanel.php:302 msgid "Snapshots will be sent once every N web hits" msgstr "" -#: actions/siteadminpanel.php:359 +#: actions/siteadminpanel.php:307 msgid "Report URL" msgstr "" -#: actions/siteadminpanel.php:360 +#: actions/siteadminpanel.php:308 msgid "Snapshots will be sent to this URL" msgstr "" -#: actions/siteadminpanel.php:367 +#: actions/siteadminpanel.php:315 msgid "Limits" msgstr "పరిమితులు" -#: actions/siteadminpanel.php:370 +#: actions/siteadminpanel.php:318 msgid "Text limit" msgstr "పాఠ్యపు పరిమితి" -#: actions/siteadminpanel.php:370 +#: actions/siteadminpanel.php:318 msgid "Maximum number of characters for notices." msgstr "సందేశాలలోని అక్షరాల గరిష్ఠ సంఖ్య." -#: actions/siteadminpanel.php:374 +#: actions/siteadminpanel.php:322 msgid "Dupe limit" msgstr "" -#: actions/siteadminpanel.php:374 +#: actions/siteadminpanel.php:322 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" -#: actions/siteadminpanel.php:388 actions/useradminpanel.php:313 -msgid "Save site settings" -msgstr "సైటు అమరికలను భద్రపరచు" - #: actions/smssettings.php:58 -#, fuzzy msgid "SMS settings" msgstr "SMS అమరికలు" @@ -3343,7 +3761,7 @@ msgstr "ఇది ఇప్పటికే మీ ఫోను నెంబర #: actions/smssettings.php:321 msgid "That phone number already belongs to another user." -msgstr "" +msgstr "ఆ ఫోను నంబరు ఇప్పటికే వేరే వాడుకరికి చెందినది." #: actions/smssettings.php:347 #, fuzzy @@ -3383,16 +3801,26 @@ msgstr "" msgid "You are not subscribed to that profile." msgstr "" -#: actions/subedit.php:83 +#: actions/subedit.php:83 classes/Subscription.php:89 +#: classes/Subscription.php:116 #, fuzzy msgid "Could not save subscription." msgstr "చందాని సృష్టించలేకపోయాం." -#: actions/subscribe.php:55 -msgid "Not a local user." -msgstr "స్థానిక వాడుకరి కాదు." +#: actions/subscribe.php:77 +msgid "This action only accepts POST requests." +msgstr "" -#: actions/subscribe.php:69 +#: actions/subscribe.php:107 +#, fuzzy +msgid "No such profile." +msgstr "అటువంటి ఫైలు లేదు." + +#: actions/subscribe.php:117 +msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." +msgstr "" + +#: actions/subscribe.php:145 #, fuzzy msgid "Subscribed" msgstr "చందాదార్లు" @@ -3403,29 +3831,30 @@ msgid "%s subscribers" msgstr "%s చందాదార్లు" #: actions/subscribers.php:52 -#, fuzzy, php-format +#, php-format msgid "%1$s subscribers, page %2$d" -msgstr "%s చందాదార్లు, పేజీ %d" +msgstr "%1$s చందాదార్లు, పేజీ %2$d" #: actions/subscribers.php:63 msgid "These are the people who listen to your notices." -msgstr "" +msgstr "వీళ్ళు మీ నోటీసులని వినే ప్రజలు." #: actions/subscribers.php:67 #, php-format msgid "These are the people who listen to %s's notices." -msgstr "" +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/subscribers.php:110 #, php-format msgid "%s has no subscribers. Want to be the first?" -msgstr "" +msgstr "%sకి చందాదార్లు ఎవరూ లేరు. మీరే మొదటివారు కావాలనుకుంటున్నారా?" #: actions/subscribers.php:114 #, php-format @@ -3440,9 +3869,9 @@ msgid "%s subscriptions" msgstr "%s చందాలు" #: actions/subscriptions.php:54 -#, fuzzy, php-format +#, php-format msgid "%1$s subscriptions, page %2$d" -msgstr "%s చందాలు, పేజీ %d" +msgstr "%1$s చందాలు, పేజీ %2$d" #: actions/subscriptions.php:65 msgid "These are the people whose notices you listen to." @@ -3453,7 +3882,7 @@ msgstr "" msgid "These are the people whose notices %s listens to." msgstr "" -#: actions/subscriptions.php:121 +#: actions/subscriptions.php:126 #, php-format msgid "" "You're not listening to anyone's notices right now, try subscribing to " @@ -3463,19 +3892,24 @@ msgid "" "automatically subscribe to people you already follow there." msgstr "" -#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#: actions/subscriptions.php:128 actions/subscriptions.php:132 #, php-format msgid "%s is not listening to anyone." msgstr "" -#: actions/subscriptions.php:194 +#: actions/subscriptions.php:199 msgid "Jabber" msgstr "జాబర్" -#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:204 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "" +#: actions/tag.php:68 +#, fuzzy, php-format +msgid "Notices tagged with %1$s, page %2$d" +msgstr "%s యొక్క మైక్రోబ్లాగు" + #: actions/tag.php:86 #, fuzzy, php-format msgid "Notice feed for tag %s (RSS 1.0)" @@ -3505,7 +3939,8 @@ msgstr "" msgid "User profile" msgstr "వాడుకరి ప్రొఫైలు" -#: actions/tagother.php:81 lib/userprofile.php:102 +#: actions/tagother.php:81 actions/userauthorization.php:132 +#: lib/userprofile.php:102 msgid "Photo" msgstr "ఫొటో" @@ -3563,7 +3998,7 @@ msgstr "" msgid "Unsubscribed" msgstr "చందాదార్లు" -#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#: actions/updateprofile.php:62 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -3578,90 +4013,68 @@ msgstr "వాడుకరి" msgid "User settings for this StatusNet site." msgstr "ఈ స్టేటస్‌నెట్ సైటుకి వాడుకరి అమరికలు." -#: actions/useradminpanel.php:149 +#: actions/useradminpanel.php:148 msgid "Invalid bio limit. Must be numeric." msgstr "" -#: actions/useradminpanel.php:155 +#: actions/useradminpanel.php:154 msgid "Invalid welcome text. Max length is 255 characters." msgstr "" -#: actions/useradminpanel.php:165 +#: actions/useradminpanel.php:164 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 +#: actions/useradminpanel.php:217 lib/accountsettingsaction.php:108 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "ప్రొఫైలు" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:221 msgid "Bio Limit" msgstr "స్వపరిచయ పరిమితి" -#: actions/useradminpanel.php:223 +#: actions/useradminpanel.php:222 msgid "Maximum length of a profile bio in characters." msgstr "స్వపరిచయం యొక్క గరిష్ఠ పొడవు, అక్షరాలలో." -#: actions/useradminpanel.php:231 +#: actions/useradminpanel.php:230 msgid "New users" msgstr "కొత్త వాడుకరులు" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:234 msgid "New user welcome" msgstr "కొత్త వాడుకరి స్వాగతం" -#: actions/useradminpanel.php:236 +#: actions/useradminpanel.php:235 msgid "Welcome text for new users (Max 255 chars)." msgstr "కొత్త వాడుకరులకై స్వాగత సందేశం (255 అక్షరాలు గరిష్ఠం)." -#: actions/useradminpanel.php:241 -#, fuzzy +#: actions/useradminpanel.php:240 msgid "Default subscription" -msgstr "అన్ని చందాలు" +msgstr "అప్రమేయ చందా" -#: actions/useradminpanel.php:242 +#: actions/useradminpanel.php:241 #, fuzzy msgid "Automatically subscribe new users to this user." msgstr "ఉపయోగించాల్సిన యాంత్రిక కుదింపు సేవ." -#: actions/useradminpanel.php:251 +#: actions/useradminpanel.php:250 msgid "Invitations" msgstr "ఆహ్వానాలు" -#: actions/useradminpanel.php:256 -#, fuzzy +#: actions/useradminpanel.php:255 msgid "Invitations enabled" -msgstr "ఆహ్వానము(ల)ని పంపించాం" +msgstr "ఆహ్వానాలని చేతనంచేసాం" -#: actions/useradminpanel.php:258 +#: actions/useradminpanel.php:257 msgid "Whether to allow users to invite new users." msgstr "వాడుకరులను కొత్త వారిని ఆహ్వానించడానికి అనుమతించాలా వద్దా." -#: actions/useradminpanel.php:265 -msgid "Sessions" -msgstr "" - -#: actions/useradminpanel.php:270 -msgid "Handle sessions" -msgstr "" - -#: actions/useradminpanel.php:272 -msgid "Whether to handle sessions ourselves." -msgstr "" - -#: actions/useradminpanel.php:276 -msgid "Session debugging" -msgstr "" - -#: actions/useradminpanel.php:278 -msgid "Turn on debugging output for sessions." -msgstr "" - #: actions/userauthorization.php:105 msgid "Authorize subscription" -msgstr "" +msgstr "చందాని అధీకరించండి" #: actions/userauthorization.php:110 msgid "" @@ -3670,84 +4083,84 @@ msgid "" "click “Reject”." msgstr "" -#: actions/userauthorization.php:188 actions/version.php:165 +#: actions/userauthorization.php:196 actions/version.php:165 msgid "License" msgstr "లైసెన్సు" -#: actions/userauthorization.php:209 +#: actions/userauthorization.php:217 msgid "Accept" msgstr "అంగీకరించు" -#: actions/userauthorization.php:210 lib/subscribeform.php:115 +#: actions/userauthorization.php:218 lib/subscribeform.php:115 #: lib/subscribeform.php:139 msgid "Subscribe to this user" msgstr "ఈ వాడుకరికి చందాచేరు" -#: actions/userauthorization.php:211 +#: actions/userauthorization.php:219 msgid "Reject" msgstr "తిరస్కరించు" -#: actions/userauthorization.php:212 +#: actions/userauthorization.php:220 msgid "Reject this subscription" msgstr "ఈ చందాని తిరస్కరించు" -#: actions/userauthorization.php:225 +#: actions/userauthorization.php:232 msgid "No authorization request!" msgstr "" -#: actions/userauthorization.php:247 +#: actions/userauthorization.php:254 msgid "Subscription authorized" msgstr "" -#: actions/userauthorization.php:249 +#: actions/userauthorization.php:256 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 +#: actions/userauthorization.php:266 msgid "Subscription rejected" msgstr "చందాని తిరస్కరించారు." -#: actions/userauthorization.php:261 +#: actions/userauthorization.php:268 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 +#: actions/userauthorization.php:303 #, php-format msgid "Listener URI ‘%s’ not found here." msgstr "" -#: actions/userauthorization.php:301 +#: actions/userauthorization.php:308 #, php-format msgid "Listenee URI ‘%s’ is too long." msgstr "" -#: actions/userauthorization.php:307 +#: actions/userauthorization.php:314 #, php-format msgid "Listenee URI ‘%s’ is a local user." msgstr "" -#: actions/userauthorization.php:322 +#: actions/userauthorization.php:329 #, php-format msgid "Profile URL ‘%s’ is for a local user." msgstr "" -#: actions/userauthorization.php:338 +#: actions/userauthorization.php:345 #, php-format msgid "Avatar URL ‘%s’ is not valid." msgstr "" -#: actions/userauthorization.php:343 +#: actions/userauthorization.php:350 #, fuzzy, php-format msgid "Can’t read avatar URL ‘%s’." msgstr "'%s' అనే అవతారపు URL తప్పు" -#: actions/userauthorization.php:348 +#: actions/userauthorization.php:355 #, fuzzy, php-format msgid "Wrong image type for avatar URL ‘%s’." msgstr "'%s' కొరకు తప్పుడు బొమ్మ రకం" @@ -3766,6 +4179,11 @@ msgstr "" msgid "Enjoy your hotdog!" msgstr "" +#: actions/usergroups.php:64 +#, fuzzy, php-format +msgid "%1$s groups, page %2$d" +msgstr "%1$s గుంపు సభ్యులు, పేజీ %2$d" + #: actions/usergroups.php:130 msgid "Search for more groups" msgstr "మరిన్ని గుంపులకై వెతుకు" @@ -3781,9 +4199,9 @@ msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "[గుంపులని వెతికి](%%action.groupsearch%%) వాటిలో చేరడానికి ప్రయత్నించండి." #: actions/version.php:73 -#, fuzzy, php-format +#, php-format msgid "StatusNet %s" -msgstr "గణాంకాలు" +msgstr "స్టేటస్‌నెట్ %s" #: actions/version.php:153 #, php-format @@ -3792,11 +4210,6 @@ msgid "" "Inc. and contributors." msgstr "" -#: actions/version.php:157 -#, fuzzy -msgid "StatusNet" -msgstr "స్థితిని తొలగించాం." - #: actions/version.php:161 msgid "Contributors" msgstr "" @@ -3828,23 +4241,14 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:195 -msgid "Name" -msgstr "పేరు" - -#: actions/version.php:196 lib/action.php:741 -#, fuzzy +#: actions/version.php:196 lib/action.php:747 msgid "Version" -msgstr "వ్యక్తిగత" +msgstr "సంచిక" #: actions/version.php:197 msgid "Author(s)" msgstr "రచయిత(లు)" -#: actions/version.php:198 lib/groupeditform.php:172 -msgid "Description" -msgstr "వివరణ" - #: classes/File.php:144 #, php-format msgid "" @@ -3863,19 +4267,16 @@ msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" #: classes/Group_member.php:41 -#, fuzzy msgid "Group join failed." -msgstr "గుంపు ప్రొఫైలు" +msgstr "గుంపులో చేరడం విఫలమైంది." #: classes/Group_member.php:53 -#, fuzzy msgid "Not part of group." -msgstr "గుంపుని తాజాకరించలేకున్నాం." +msgstr "గుంపులో భాగం కాదు." #: classes/Group_member.php:60 -#, fuzzy msgid "Group leave failed." -msgstr "గుంపు ప్రొఫైలు" +msgstr "గుంపు నుండి వైదొలగడం విఫలమైంది." #: classes/Login_token.php:76 #, fuzzy, php-format @@ -3894,63 +4295,88 @@ msgstr "" msgid "Could not update message with new URI." msgstr "" -#: classes/Notice.php:171 +#: classes/Notice.php:157 #, php-format msgid "DB error inserting hashtag: %s" msgstr "" -#: classes/Notice.php:225 +#: classes/Notice.php:222 #, fuzzy msgid "Problem saving notice. Too long." msgstr "సందేశాన్ని భద్రపరచడంలో పొరపాటు." -#: classes/Notice.php:229 +#: classes/Notice.php:226 #, fuzzy msgid "Problem saving notice. Unknown user." msgstr "సందేశాన్ని భద్రపరచడంలో పొరపాటు." -#: classes/Notice.php:234 +#: classes/Notice.php:231 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: classes/Notice.php:240 +#: classes/Notice.php:237 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." msgstr "" -#: classes/Notice.php:246 +#: classes/Notice.php:243 msgid "You are banned from posting notices on this site." msgstr "ఈ సైటులో నోటీసులు రాయడం నుండి మిమ్మల్ని నిషేధించారు." -#: classes/Notice.php:305 classes/Notice.php:330 +#: classes/Notice.php:309 classes/Notice.php:335 msgid "Problem saving notice." msgstr "సందేశాన్ని భద్రపరచడంలో పొరపాటు." -#: classes/Notice.php:1052 -#, php-format -msgid "DB error inserting reply: %s" -msgstr "" +#: classes/Notice.php:882 +#, fuzzy +msgid "Problem saving group inbox." +msgstr "సందేశాన్ని భద్రపరచడంలో పొరపాటు." -#: classes/Notice.php:1423 +#: classes/Notice.php:1407 #, fuzzy, php-format msgid "RT @%1$s %2$s" msgstr "%1$s (%2$s)" -#: classes/User.php:382 +#: classes/Subscription.php:66 lib/oauthstore.php:465 +msgid "You have been banned from subscribing." +msgstr "చందాచేరడం నుండి మిమ్మల్ని నిషేధించారు." + +#: classes/Subscription.php:70 +msgid "Already subscribed!" +msgstr "ఇప్పటికే చందాచేరారు!" + +#: classes/Subscription.php:74 +msgid "User has blocked you." +msgstr "వాడుకరి మిమ్మల్ని నిరోధించారు." + +#: classes/Subscription.php:157 +#, fuzzy +msgid "Not subscribed!" +msgstr "చందాదార్లు" + +#: classes/Subscription.php:163 +#, fuzzy +msgid "Couldn't delete self-subscription." +msgstr "చందాని తొలగించలేకపోయాం." + +#: classes/Subscription.php:179 lib/subs.php:69 +msgid "Couldn't delete subscription." +msgstr "చందాని తొలగించలేకపోయాం." + +#: classes/User.php:372 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "@%2$s, %1$sకి స్వాగతం!" -#: classes/User_group.php:380 +#: classes/User_group.php:423 msgid "Could not create group." msgstr "గుంపుని సృష్టించలేకపోయాం." -#: classes/User_group.php:409 -#, fuzzy +#: classes/User_group.php:452 msgid "Could not set group membership." -msgstr "చందాని సృష్టించలేకపోయాం." +msgstr "గుంపు సభ్యత్వాన్ని అమర్చలేకపోయాం." #: lib/accountsettingsaction.php:108 msgid "Change your profile settings" @@ -3990,132 +4416,126 @@ msgstr "%1$s - %2$s" msgid "Untitled page" msgstr "" -#: lib/action.php:427 +#: lib/action.php:433 msgid "Primary site navigation" msgstr "" -#: lib/action.php:433 +#: lib/action.php:439 msgid "Home" msgstr "ముంగిలి" -#: lib/action.php:433 +#: lib/action.php:439 msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:435 -msgid "Account" -msgstr "ఖాతా" - -#: lib/action.php:435 +#: lib/action.php:441 msgid "Change your email, avatar, password, profile" msgstr "మీ ఈమెయిలు, అవతారం, సంకేతపదం మరియు ప్రౌఫైళ్ళను మార్చుకోండి" -#: lib/action.php:438 +#: lib/action.php:444 msgid "Connect" msgstr "అనుసంధానించు" -#: lib/action.php:438 +#: lib/action.php:444 msgid "Connect to services" msgstr "" -#: lib/action.php:442 +#: lib/action.php:448 #, fuzzy msgid "Change site configuration" msgstr "చందాలు" -#: lib/action.php:446 lib/subgroupnav.php:105 +#: lib/action.php:452 lib/subgroupnav.php:105 msgid "Invite" msgstr "ఆహ్వానించు" -#: lib/action.php:447 lib/subgroupnav.php:106 +#: lib/action.php:453 lib/subgroupnav.php:106 #, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "" -#: lib/action.php:452 +#: lib/action.php:458 msgid "Logout" msgstr "నిష్క్రమించు" -#: lib/action.php:452 +#: lib/action.php:458 msgid "Logout from the site" msgstr "సైటు నుండి నిష్క్రమించు" -#: lib/action.php:457 +#: lib/action.php:463 msgid "Create an account" msgstr "కొత్త ఖాతా సృష్టించు" -#: lib/action.php:460 +#: lib/action.php:466 msgid "Login to the site" msgstr "సైటులోని ప్రవేశించు" -#: lib/action.php:463 lib/action.php:726 +#: lib/action.php:469 lib/action.php:732 msgid "Help" msgstr "సహాయం" -#: lib/action.php:463 +#: lib/action.php:469 msgid "Help me!" msgstr "సహాయం కావాలి!" -#: lib/action.php:466 lib/searchaction.php:127 +#: lib/action.php:472 lib/searchaction.php:127 msgid "Search" msgstr "వెతుకు" -#: lib/action.php:466 +#: lib/action.php:472 msgid "Search for people or text" msgstr "" -#: lib/action.php:487 -#, fuzzy +#: lib/action.php:493 msgid "Site notice" -msgstr "కొత్త సందేశం" +msgstr "సైటు గమనిక" -#: lib/action.php:553 +#: lib/action.php:559 msgid "Local views" msgstr "స్థానిక వీక్షణలు" -#: lib/action.php:619 -#, fuzzy +#: lib/action.php:625 msgid "Page notice" -msgstr "కొత్త సందేశం" +msgstr "పేజీ గమనిక" -#: lib/action.php:721 +#: lib/action.php:727 #, fuzzy msgid "Secondary site navigation" msgstr "చందాలు" -#: lib/action.php:728 +#: lib/action.php:734 msgid "About" msgstr "గురించి" -#: lib/action.php:730 +#: lib/action.php:736 msgid "FAQ" msgstr "ప్రశ్నలు" -#: lib/action.php:734 +#: lib/action.php:740 msgid "TOS" msgstr "సేవా నియమాలు" -#: lib/action.php:737 +#: lib/action.php:743 msgid "Privacy" msgstr "అంతరంగికత" -#: lib/action.php:739 +#: lib/action.php:745 msgid "Source" msgstr "మూలము" -#: lib/action.php:743 +#: lib/action.php:749 msgid "Contact" msgstr "సంప్రదించు" -#: lib/action.php:745 +#: lib/action.php:751 msgid "Badge" msgstr "బాడ్జి" -#: lib/action.php:773 +#: lib/action.php:779 msgid "StatusNet software license" msgstr "స్టేటస్‌నెట్ మృదూపకరణ లైసెన్సు" -#: lib/action.php:776 +#: lib/action.php:782 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4124,12 +4544,12 @@ msgstr "" "**%%site.name%%** అనేది [%%site.broughtby%%](%%site.broughtbyurl%%) వారు " "అందిస్తున్న మైక్రో బ్లాగింగు సదుపాయం. " -#: lib/action.php:778 +#: lib/action.php:784 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** అనేది మైక్రో బ్లాగింగు సదుపాయం." -#: lib/action.php:780 +#: lib/action.php:786 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4140,33 +4560,55 @@ msgstr "" "html) కింద లభ్యమయ్యే [స్టేటస్‌నెట్](http://status.net/) మైక్రోబ్లాగింగ్ ఉపకరణం సంచిక %s " "పై నడుస్తుంది." -#: lib/action.php:794 +#: lib/action.php:801 #, fuzzy msgid "Site content license" msgstr "కొత్త సందేశం" -#: lib/action.php:803 +#: lib/action.php:806 +#, php-format +msgid "Content and data of %1$s are private and confidential." +msgstr "" + +#: lib/action.php:811 +#, php-format +msgid "Content and data copyright by %1$s. All rights reserved." +msgstr "" + +#: lib/action.php:814 +msgid "Content and data copyright by contributors. All rights reserved." +msgstr "" + +#: lib/action.php:827 msgid "All " msgstr "అన్నీ " -#: lib/action.php:808 +#: lib/action.php:833 msgid "license." msgstr "" -#: lib/action.php:1102 +#: lib/action.php:1132 msgid "Pagination" msgstr "పేజీకరణ" -#: lib/action.php:1111 +#: lib/action.php:1141 msgid "After" msgstr "తర్వాత" -#: lib/action.php:1119 +#: lib/action.php:1149 msgid "Before" msgstr "ఇంతక్రితం" -#: lib/action.php:1167 -msgid "There was a problem with your session token." +#: lib/activity.php:382 +msgid "Can't handle remote content yet." +msgstr "" + +#: lib/activity.php:410 +msgid "Can't handle embedded XML content yet." +msgstr "" + +#: lib/activity.php:414 +msgid "Can't handle embedded Base64 content yet." msgstr "" #: lib/adminpanelaction.php:96 @@ -4194,15 +4636,105 @@ msgid "Basic site configuration" msgstr "ప్రాథమిక సైటు స్వరూపణం" #: lib/adminpanelaction.php:317 -#, fuzzy msgid "Design configuration" +msgstr "రూపకల్పన స్వరూపణం" + +#: lib/adminpanelaction.php:322 +msgid "User configuration" +msgstr "వాడుకరి స్వరూపణం" + +#: lib/adminpanelaction.php:327 +#, fuzzy +msgid "Access configuration" msgstr "SMS నిర్ధారణ" -#: lib/adminpanelaction.php:322 lib/adminpanelaction.php:327 +#: lib/adminpanelaction.php:332 #, fuzzy msgid "Paths configuration" msgstr "SMS నిర్ధారణ" +#: lib/adminpanelaction.php:337 +#, fuzzy +msgid "Sessions configuration" +msgstr "రూపకల్పన స్వరూపణం" + +#: lib/apiauth.php:95 +msgid "API resource requires read-write access, but you only have read access." +msgstr "" + +#: lib/apiauth.php:273 +#, php-format +msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" +msgstr "" + +#: lib/applicationeditform.php:136 +msgid "Edit application" +msgstr "ఉపకరణాన్ని మార్చు" + +#: lib/applicationeditform.php:184 +msgid "Icon for this application" +msgstr "ఈ ఉపకరణానికి ప్రతీకం" + +#: lib/applicationeditform.php:204 +#, php-format +msgid "Describe your application in %d characters" +msgstr "మీ ఉపకరణం గురించి %d అక్షరాల్లో వివరించండి" + +#: lib/applicationeditform.php:207 +msgid "Describe your application" +msgstr "మీ ఉపకరణాన్ని వివరించండి" + +#: lib/applicationeditform.php:216 +#, fuzzy +msgid "Source URL" +msgstr "మూలము" + +#: lib/applicationeditform.php:218 +msgid "URL of the homepage of this application" +msgstr "ఈ ఉపకరణం యొక్క హోమ్‌పేజీ చిరునామా" + +#: lib/applicationeditform.php:224 +msgid "Organization responsible for this application" +msgstr "ఈ ఉపకరణానికి బాధ్యతాయుతమైన సంస్థ" + +#: lib/applicationeditform.php:230 +#, fuzzy +msgid "URL for the homepage of the organization" +msgstr "మీ హోమ్ పేజీ, బ్లాగు, లేదా వేరే సేటులోని మీ ప్రొఫైలు యొక్క చిరునామా" + +#: lib/applicationeditform.php:236 +msgid "URL to redirect to after authentication" +msgstr "" + +#: lib/applicationeditform.php:258 +msgid "Browser" +msgstr "విహారిణి" + +#: lib/applicationeditform.php:274 +msgid "Desktop" +msgstr "" + +#: lib/applicationeditform.php:275 +msgid "Type of application, browser or desktop" +msgstr "" + +#: lib/applicationeditform.php:297 +msgid "Read-only" +msgstr "" + +#: lib/applicationeditform.php:315 +msgid "Read-write" +msgstr "" + +#: lib/applicationeditform.php:316 +msgid "Default access for this application: read-only, or read-write" +msgstr "" + +#: lib/applicationlist.php:154 +#, fuzzy +msgid "Revoke" +msgstr "తొలగించు" + #: lib/attachmentlist.php:87 msgid "Attachments" msgstr "జోడింపులు" @@ -4224,12 +4756,12 @@ msgstr "" msgid "Tags for this attachment" msgstr "" -#: lib/authenticationplugin.php:182 lib/authenticationplugin.php:187 +#: lib/authenticationplugin.php:218 lib/authenticationplugin.php:223 #, fuzzy msgid "Password changing failed" msgstr "సంకేతపదం మార్పు" -#: lib/authenticationplugin.php:197 +#: lib/authenticationplugin.php:233 #, fuzzy msgid "Password changing is not allowed" msgstr "సంకేతపదం మార్పు" @@ -4349,14 +4881,12 @@ msgid "Error sending direct message." msgstr "" #: lib/command.php:413 -#, fuzzy msgid "Cannot repeat your own notice" -msgstr "ఈ లైసెన్సుకి అంగీకరించకపోతే మీరు నమోదుచేసుకోలేరు." +msgstr "మీ నోటిసుని మీరే పునరావృతించలేరు" #: lib/command.php:418 -#, fuzzy msgid "Already repeated that notice" -msgstr "ఈ నోటీసుని తొలగించు" +msgstr "ఇప్పటికే ఈ నోటీసుని పునరావృతించారు" #: lib/command.php:426 #, fuzzy, php-format @@ -4385,82 +4915,91 @@ msgstr "సందేశాన్ని భద్రపరచడంలో పొ #: lib/command.php:547 msgid "Specify the name of the user to subscribe to" -msgstr "" +msgstr "ఏవరికి చందా చేరాలనుకుంటున్నారో ఆ వాడుకరి పేరు తెలియజేయండి" -#: lib/command.php:554 +#: lib/command.php:554 lib/command.php:589 +msgid "No such user" +msgstr "అటువంటి వాడుకరి లేరు" + +#: lib/command.php:561 #, php-format msgid "Subscribed to %s" msgstr "%sకి చందా చేరారు" -#: lib/command.php:575 +#: lib/command.php:582 lib/command.php:685 msgid "Specify the name of the user to unsubscribe from" -msgstr "" +msgstr "ఎవరి నుండి చందా విరమించాలనుకుంటున్నారో ఆ వాడుకరి పేరు తెలియజేయండి" -#: lib/command.php:582 +#: lib/command.php:595 #, php-format msgid "Unsubscribed from %s" -msgstr "" +msgstr "%s నుండి చందా విరమించారు" -#: lib/command.php:600 lib/command.php:623 +#: lib/command.php:613 lib/command.php:636 msgid "Command not yet implemented." msgstr "" -#: lib/command.php:603 +#: lib/command.php:616 msgid "Notification off." msgstr "" -#: lib/command.php:605 +#: lib/command.php:618 msgid "Can't turn off notification." msgstr "" -#: lib/command.php:626 +#: lib/command.php:639 msgid "Notification on." msgstr "" -#: lib/command.php:628 +#: lib/command.php:641 msgid "Can't turn on notification." msgstr "" -#: lib/command.php:641 +#: lib/command.php:654 msgid "Login command is disabled" msgstr "" -#: lib/command.php:652 +#: lib/command.php:665 #, php-format msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "ఈ లంకెని ఒకే సారి ఉపయోగించగలరు, మరియు అది పనిచేసేది 2 నిమిషాలు మాత్రమే: %s" -#: lib/command.php:668 +#: lib/command.php:692 +#, fuzzy, php-format +msgid "Unsubscribed %s" +msgstr "%s నుండి చందా విరమించారు" + +#: lib/command.php:709 msgid "You are not subscribed to anyone." msgstr "మీరు ఎవరికీ చందాచేరలేదు." -#: lib/command.php:670 +#: lib/command.php:711 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "%sకి స్పందనలు" msgstr[1] "%sకి స్పందనలు" -#: lib/command.php:690 +#: lib/command.php:731 msgid "No one is subscribed to you." msgstr "మీకు చందాదార్లు ఎవరూ లేరు." -#: lib/command.php:692 +#: lib/command.php:733 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "%sకి స్పందనలు" msgstr[1] "%sకి స్పందనలు" -#: lib/command.php:712 +#: lib/command.php:753 msgid "You are not a member of any groups." msgstr "మీరు ఏ గుంపులోనూ సభ్యులు కాదు." -#: lib/command.php:714 +#: lib/command.php:755 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "మీరు ఇప్పటికే లోనికి ప్రవేశించారు!" msgstr[1] "మీరు ఇప్పటికే లోనికి ప్రవేశించారు!" -#: lib/command.php:728 +#: lib/command.php:769 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -4474,6 +5013,7 @@ msgid "" "d - direct message to user\n" "get - get last notice from user\n" "whois - get profile info on user\n" +"lose - force user to stop following you\n" "fav - add user's last notice as a 'fave'\n" "fav # - add notice with the given id as a 'fave'\n" "repeat # - repeat a notice with a given id\n" @@ -4501,20 +5041,20 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:131 +#: lib/common.php:136 #, fuzzy msgid "No configuration file found. " msgstr "నిర్ధారణ సంకేతం లేదు." -#: lib/common.php:132 +#: lib/common.php:137 msgid "I looked for configuration files in the following places: " msgstr "" -#: lib/common.php:134 +#: lib/common.php:139 msgid "You may wish to run the installer to fix this." msgstr "" -#: lib/common.php:135 +#: lib/common.php:140 msgid "Go to the installer." msgstr "" @@ -4530,6 +5070,14 @@ msgstr "" msgid "Updates by SMS" msgstr "" +#: lib/connectsettingsaction.php:120 +msgid "Connections" +msgstr "అనుసంధానాలు" + +#: lib/connectsettingsaction.php:121 +msgid "Authorized connected applications" +msgstr "" + #: lib/dberroraction.php:60 msgid "Database error" msgstr "" @@ -4539,10 +5087,9 @@ msgid "Upload file" msgstr "ఫైలుని ఎక్కించు" #: lib/designsettings.php:109 -#, fuzzy msgid "" "You can upload your personal background image. The maximum file size is 2MB." -msgstr "మీ స్వంత నేపథ్యపు చిత్రాన్ని మీరు ఎక్కించవచ్చు. గరిష్ఠ ఫైలు పరిమాణం 2మెబై." +msgstr "మీ వ్యక్తిగత నేపథ్యపు చిత్రాన్ని మీరు ఎక్కించవచ్చు. గరిష్ఠ ఫైలు పరిమాణం 2మెబై." #: lib/designsettings.php:418 msgid "Design defaults restored." @@ -4616,15 +5163,14 @@ msgid "Describe the group or topic" msgstr "మీ గురించి మరియు మీ ఆసక్తుల గురించి 140 అక్షరాల్లో చెప్పండి" #: lib/groupeditform.php:170 -#, fuzzy, php-format +#, php-format msgid "Describe the group or topic in %d characters" -msgstr "మీ గురించి మరియు మీ ఆసక్తుల గురించి 140 అక్షరాల్లో చెప్పండి" +msgstr "గుంపు లేదా విషయాన్ని గురించి %d అక్షరాల్లో వివరించండి" #: lib/groupeditform.php:179 -#, fuzzy msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"" -msgstr "మీరు ఎక్కడ నుండి, \"నగరం, రాష్ట్రం (లేదా ప్రాంతం), దేశం\"" +msgstr "గుంపు యొక్క ప్రాంతం, ఉంటే, \"నగరం, రాష్ట్రం (లేదా ప్రాంతం), దేశం\"" #: lib/groupeditform.php:187 #, php-format @@ -4719,12 +5265,12 @@ msgstr "మెబై" msgid "kB" msgstr "కిబై" -#: lib/jabber.php:202 +#: lib/jabber.php:220 #, php-format msgid "[%s]" msgstr "[%s]" -#: lib/jabber.php:385 +#: lib/jabber.php:400 #, fuzzy, php-format msgid "Unknown inbox source %d." msgstr "గుర్తు తెలియని భాష \"%s\"" @@ -4770,7 +5316,7 @@ msgstr "" #: lib/mail.php:236 #, php-format msgid "%1$s is now listening to your notices on %2$s." -msgstr "" +msgstr "%1$s ఇప్పుడు %2$sలో మీ నోటీసులని వింటున్నారు." #: lib/mail.php:241 #, php-format @@ -4786,13 +5332,21 @@ msgid "" "----\n" "Change your email address or notification options at %8$s\n" msgstr "" +"%1$s ఇప్పుడు %2$sలో మీ నోటీసులని వింటున్నారు.\n" +"\n" +"%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"మీ విధేయులు,\n" +"%7$s.\n" +"\n" +"----\n" +"మీ ఈమెయిలు చిరునామాని లేదా గమనింపుల ఎంపికలను %8$s వద్ద మార్చుకోండి" #: lib/mail.php:258 -#, fuzzy, php-format +#, php-format msgid "Bio: %s" -msgstr "" -"స్వపరిచయం: %s\n" -"\n" +msgstr "స్వపరిచయం: %s" #: lib/mail.php:286 #, php-format @@ -4895,7 +5449,7 @@ msgstr "" #: lib/mail.php:624 #, php-format msgid "%s (@%s) sent a notice to your attention" -msgstr "" +msgstr "%s (@%s) మీకు ఒక నోటీసుని పంపించారు" #: lib/mail.php:626 #, php-format @@ -4911,6 +5465,16 @@ msgid "" "\t%4$s\n" "\n" msgstr "" +"%1$s (@%9$s) %2$sలో మీకు ('@-స్పందన') ఒక నోటీసుని పంపించారు .\n" +"\n" +"ఆ నోటీసు ఇక్కడ:\n" +"\n" +"%3$s\n" +"\n" +"ఇదీ పాఠ్యం:\n" +"\n" +"%4$s\n" +"\n" #: lib/mailbox.php:89 msgid "Only the user can read their own mailboxes." @@ -4922,7 +5486,7 @@ msgid "" "users in conversation. People can send you messages for your eyes only." msgstr "" -#: lib/mailbox.php:227 lib/noticelist.php:477 +#: lib/mailbox.php:227 lib/noticelist.php:482 msgid "from" msgstr "నుండి" @@ -5041,58 +5605,54 @@ msgid "Do not share my location" msgstr "ట్యాగులని భద్రపరచలేకున్నాం." #: lib/noticeform.php:216 -msgid "Hide this info" -msgstr "" - -#: lib/noticeform.php:217 msgid "" "Sorry, retrieving your geo location is taking longer than expected, please " "try again later" msgstr "" -#: lib/noticelist.php:428 +#: lib/noticelist.php:429 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" -#: lib/noticelist.php:429 +#: lib/noticelist.php:430 msgid "N" msgstr "ఉ" -#: lib/noticelist.php:429 +#: lib/noticelist.php:430 msgid "S" msgstr "ద" -#: lib/noticelist.php:430 +#: lib/noticelist.php:431 msgid "E" msgstr "తూ" -#: lib/noticelist.php:430 +#: lib/noticelist.php:431 msgid "W" msgstr "ప" -#: lib/noticelist.php:436 +#: lib/noticelist.php:438 msgid "at" msgstr "" -#: lib/noticelist.php:531 +#: lib/noticelist.php:558 msgid "in context" msgstr "సందర్భంలో" -#: lib/noticelist.php:556 +#: lib/noticelist.php:583 #, fuzzy msgid "Repeated by" msgstr "సృష్టితం" -#: lib/noticelist.php:585 +#: lib/noticelist.php:610 msgid "Reply to this notice" msgstr "ఈ నోటీసుపై స్పందించండి" -#: lib/noticelist.php:586 +#: lib/noticelist.php:611 msgid "Reply" msgstr "స్పందించండి" -#: lib/noticelist.php:628 +#: lib/noticelist.php:655 #, fuzzy msgid "Notice repeated" msgstr "నోటీసుని తొలగించాం." @@ -5127,11 +5687,7 @@ msgstr "దూరపు ప్రొపైలుని చేర్చటంల msgid "Duplicate notice" msgstr "కొత్త సందేశం" -#: lib/oauthstore.php:466 lib/subs.php:48 -msgid "You have been banned from subscribing." -msgstr "చందాచేరడం నుండి మిమ్మల్ని నిషేధించారు." - -#: lib/oauthstore.php:491 +#: lib/oauthstore.php:490 msgid "Couldn't insert new subscription." msgstr "" @@ -5147,19 +5703,19 @@ msgstr "స్పందనలు" msgid "Favorites" msgstr "ఇష్టాంశాలు" -#: lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "వచ్చినవి" -#: lib/personalgroupnav.php:125 +#: lib/personalgroupnav.php:126 msgid "Your incoming messages" msgstr "మీకు వచ్చిన సందేశాలు" -#: lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 msgid "Outbox" msgstr "పంపినవి" -#: lib/personalgroupnav.php:130 +#: lib/personalgroupnav.php:131 msgid "Your sent messages" msgstr "మీరు పంపిన సందేశాలు" @@ -5239,6 +5795,10 @@ msgstr "ఈ నోటీసుపై స్పందించండి" msgid "Repeat this notice" msgstr "ఈ నోటీసుపై స్పందించండి" +#: lib/router.php:665 +msgid "No single user defined for single-user mode." +msgstr "" + #: lib/sandboxform.php:67 msgid "Sandbox" msgstr "" @@ -5297,48 +5857,18 @@ msgstr "ఈ వాడుకరిని నిరోధించు" #: lib/subgroupnav.php:83 #, php-format msgid "People %s subscribes to" -msgstr "" +msgstr "%s చందాచేరిన వ్యక్తులు" #: lib/subgroupnav.php:91 -#, fuzzy, php-format +#, php-format msgid "People subscribed to %s" -msgstr "%sకి స్పందనలు" +msgstr "%sకి చందాచేరిన వ్యక్తులు" #: lib/subgroupnav.php:99 #, php-format msgid "Groups %s is a member of" msgstr "%s సభ్యులుగా ఉన్న గుంపులు" -#: lib/subs.php:52 -msgid "Already subscribed!" -msgstr "ఇప్పటికే చందాచేరారు!" - -#: lib/subs.php:56 -msgid "User has blocked you." -msgstr "వాడుకరి మిమ్మల్ని నిరోధించారు." - -#: lib/subs.php:63 -msgid "Could not subscribe." -msgstr "చందా చేర్చలేకపోయాం." - -#: lib/subs.php:82 -msgid "Could not subscribe other to you." -msgstr "" - -#: lib/subs.php:137 -#, fuzzy -msgid "Not subscribed!" -msgstr "చందాదార్లు" - -#: lib/subs.php:142 -#, fuzzy -msgid "Couldn't delete self-subscription." -msgstr "చందాని తొలగించలేకపోయాం." - -#: lib/subs.php:158 -msgid "Couldn't delete subscription." -msgstr "చందాని తొలగించలేకపోయాం." - #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -5391,68 +5921,68 @@ msgstr "అవతారాన్ని మార్చు" msgid "User actions" msgstr "వాడుకరి చర్యలు" -#: lib/userprofile.php:248 +#: lib/userprofile.php:251 #, fuzzy msgid "Edit profile settings" msgstr "ఫ్రొఫైలు అమరికలు" -#: lib/userprofile.php:249 +#: lib/userprofile.php:252 msgid "Edit" msgstr "మార్చు" -#: lib/userprofile.php:272 +#: lib/userprofile.php:275 msgid "Send a direct message to this user" -msgstr "" +msgstr "ఈ వాడుకరికి ఒక నేరు సందేశాన్ని పంపించండి" -#: lib/userprofile.php:273 +#: lib/userprofile.php:276 msgid "Message" msgstr "సందేశం" -#: lib/userprofile.php:311 +#: lib/userprofile.php:314 msgid "Moderate" msgstr "" -#: lib/util.php:877 +#: lib/util.php:952 msgid "a few seconds ago" msgstr "కొన్ని క్షణాల క్రితం" -#: lib/util.php:879 +#: lib/util.php:954 msgid "about a minute ago" msgstr "ఓ నిమిషం క్రితం" -#: lib/util.php:881 +#: lib/util.php:956 #, php-format msgid "about %d minutes ago" msgstr "%d నిమిషాల క్రితం" -#: lib/util.php:883 +#: lib/util.php:958 msgid "about an hour ago" msgstr "ఒక గంట క్రితం" -#: lib/util.php:885 +#: lib/util.php:960 #, php-format msgid "about %d hours ago" msgstr "%d గంటల క్రితం" -#: lib/util.php:887 +#: lib/util.php:962 msgid "about a day ago" msgstr "ఓ రోజు క్రితం" -#: lib/util.php:889 +#: lib/util.php:964 #, php-format msgid "about %d days ago" msgstr "%d రోజుల క్రితం" -#: lib/util.php:891 +#: lib/util.php:966 msgid "about a month ago" msgstr "ఓ నెల క్రితం" -#: lib/util.php:893 +#: lib/util.php:968 #, php-format msgid "about %d months ago" msgstr "%d నెలల క్రితం" -#: lib/util.php:895 +#: lib/util.php:970 msgid "about a year ago" msgstr "ఒక సంవత్సరం క్రితం" @@ -5466,7 +5996,7 @@ msgstr "%s అనేది సరైన రంగు కాదు!" msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "%s అనేది సరైన రంగు కాదు! 3 లేదా 6 హెక్స్ అక్షరాలను వాడండి." -#: scripts/xmppdaemon.php:301 -#, fuzzy, php-format +#: lib/xmppmanager.php:402 +#, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." -msgstr "నోటిసు చాలా పొడవుగా ఉంది - %d అక్షరాలు గరిష్ఠం, మీరు %d పంపించారు" +msgstr "నోటిసు చాలా పొడవుగా ఉంది - %1$d అక్షరాలు గరిష్ఠం, మీరు %2$d పంపించారు." diff --git a/locale/tr/LC_MESSAGES/statusnet.po b/locale/tr/LC_MESSAGES/statusnet.po index c456120306..149b21292d 100644 --- a/locale/tr/LC_MESSAGES/statusnet.po +++ b/locale/tr/LC_MESSAGES/statusnet.po @@ -1,5 +1,6 @@ # Translation of StatusNet to Turkish # +# Author@translatewiki.net: Joseph # Author@translatewiki.net: McDutchie # -- # This file is distributed under the same license as the StatusNet package. @@ -8,17 +9,75 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-01-13 22:04+0000\n" -"PO-Revision-Date: 2010-01-13 22:06:15+0000\n" +"POT-Creation-Date: 2010-02-24 23:49+0000\n" +"PO-Revision-Date: 2010-02-24 23:51:50+0000\n" "Language-Team: Turkish\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha (r61027); Translate extension (2010-01-04)\n" +"X-Generator: MediaWiki 1.17alpha (r62925); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tr\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: actions/accessadminpanel.php:54 lib/adminpanelaction.php:326 +#, fuzzy +msgid "Access" +msgstr "Kabul et" + +#: actions/accessadminpanel.php:65 +#, fuzzy +msgid "Site access settings" +msgstr "Ayarlar" + +#: actions/accessadminpanel.php:158 +#, fuzzy +msgid "Registration" +msgstr "Kayıt" + +#: actions/accessadminpanel.php:161 +#, fuzzy +msgid "Private" +msgstr "Gizlilik" + +#: actions/accessadminpanel.php:163 +msgid "Prohibit anonymous users (not logged in) from viewing site?" +msgstr "" + +#: actions/accessadminpanel.php:167 +msgid "Invite only" +msgstr "" + +#: actions/accessadminpanel.php:169 +msgid "Make registration invitation only." +msgstr "" + +#: actions/accessadminpanel.php:173 +#, fuzzy +msgid "Closed" +msgstr "Böyle bir kullanıcı yok." + +#: actions/accessadminpanel.php:175 +msgid "Disable new registrations." +msgstr "" + +#: actions/accessadminpanel.php:189 actions/designadminpanel.php:586 +#: actions/emailsettings.php:195 actions/imsettings.php:163 +#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 +#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 +#: actions/siteadminpanel.php:336 actions/smssettings.php:181 +#: actions/subscriptions.php:208 actions/tagother.php:154 +#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 lib/designsettings.php:256 +#: lib/groupeditform.php:202 +msgid "Save" +msgstr "Kaydet" + +#: actions/accessadminpanel.php:189 +#, fuzzy +msgid "Save access settings" +msgstr "Ayarlar" + #: actions/all.php:63 actions/public.php:97 actions/replies.php:92 #: actions/showfavorites.php:137 actions/tag.php:51 #, fuzzy @@ -34,25 +93,29 @@ msgstr "Böyle bir durum mesajı yok." #: 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:144 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apistatusesupdate.php:148 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:78 #: actions/apitimelinehome.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/otp.php:76 #: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154 -#: actions/replies.php:73 actions/repliesrss.php:38 +#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 #: 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:302 lib/command.php:355 #: lib/command.php:401 lib/command.php:462 lib/command.php:518 #: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 -#: lib/subs.php:34 lib/subs.php:125 msgid "No such user." msgstr "Böyle bir kullanıcı yok." +#: actions/all.php:84 +#, fuzzy, php-format +msgid "%1$s and friends, page %2$d" +msgstr "%s ve arkadaşları" + #: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 -#: actions/apitimelinefriends.php:115 actions/apitimelinehome.php:115 +#: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" @@ -93,7 +156,7 @@ msgid "" "his or her attention](%%%%action.newnotice%%%%?status_textarea=%3$s)." msgstr "" -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211 #, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " @@ -105,8 +168,8 @@ msgstr "" msgid "You and friends" msgstr "%s ve arkadaşları" -#: actions/allrss.php:119 actions/apitimelinefriends.php:122 -#: actions/apitimelinehome.php:122 +#: actions/allrss.php:119 actions/apitimelinefriends.php:119 +#: actions/apitimelinehome.php:120 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "" @@ -116,23 +179,23 @@ msgstr "" #: actions/apiaccountupdateprofile.php:97 #: actions/apiaccountupdateprofilebackgroundimage.php:94 #: actions/apiaccountupdateprofilecolors.php:118 -#: 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:136 actions/apigroupismember.php:114 -#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 -#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 -#: actions/apigroupmembership.php:106 actions/apigroupshow.php:105 -#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 -#: actions/apistatusesretweets.php:112 actions/apistatusesshow.php:108 -#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93 -#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:146 -#: actions/apitimelinefriends.php:156 actions/apitimelinegroup.php:150 -#: actions/apitimelinehome.php:156 actions/apitimelinementions.php:151 -#: actions/apitimelinepublic.php:131 actions/apitimelineretweetedbyme.php:122 +#: actions/apiaccountverifycredentials.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:128 actions/apigroupcreate.php:136 +#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 +#: actions/apigroupleave.php:141 actions/apigrouplist.php:132 +#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 +#: actions/apigroupshow.php:115 actions/apihelptest.php:88 +#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 +#: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 #: actions/apitimelineretweetedtome.php:121 -#: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141 -#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 +#: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 +#: actions/apitimelineuser.php:207 actions/apiusershow.php:101 #, fuzzy msgid "API method not found." msgstr "Onay kodu bulunamadı." @@ -147,7 +210,7 @@ msgstr "Onay kodu bulunamadı." #: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 #: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 #: actions/apigroupleave.php:91 actions/apistatusesretweet.php:65 -#: actions/apistatusesupdate.php:114 +#: actions/apistatusesupdate.php:118 msgid "This method requires a POST." msgstr "" @@ -178,8 +241,9 @@ msgstr "Profil kaydedilemedi." #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:97 -#: actions/apistatusesupdate.php:127 actions/avatarsettings.php:257 -#: actions/designadminpanel.php:122 actions/newnotice.php:94 +#: actions/apistatusesupdate.php:131 actions/avatarsettings.php:257 +#: actions/designadminpanel.php:122 actions/editapplication.php:118 +#: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 #, php-format msgid "" @@ -299,12 +363,12 @@ msgstr "Kullanıcı güncellenemedi." msgid "Two user ids or screen_names must be supplied." msgstr "" -#: actions/apifriendshipsshow.php:135 +#: actions/apifriendshipsshow.php:134 #, fuzzy msgid "Could not determine source user." msgstr "Kullanıcı güncellenemedi." -#: actions/apifriendshipsshow.php:143 +#: actions/apifriendshipsshow.php:142 #, fuzzy msgid "Could not find target user." msgstr "Kullanıcı güncellenemedi." @@ -329,7 +393,8 @@ msgstr "Takma ad kullanımda. Başka bir tane deneyin." msgid "Not a valid nickname." msgstr "Geçersiz bir takma ad." -#: actions/apigroupcreate.php:196 actions/editgroup.php:195 +#: actions/apigroupcreate.php:196 actions/editapplication.php:215 +#: actions/editgroup.php:195 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:217 msgid "Homepage is not a valid URL." @@ -341,7 +406,8 @@ msgstr "Başlangıç sayfası adresi geçerli bir URL değil." msgid "Full name is too long (max 255 chars)." msgstr "Tam isim çok uzun (azm: 255 karakter)." -#: actions/apigroupcreate.php:213 +#: actions/apigroupcreate.php:213 actions/editapplication.php:190 +#: actions/newapplication.php:172 #, fuzzy, php-format msgid "Description is too long (max %d chars)." msgstr "Hakkında bölümü çok uzun (azm 140 karakter)." @@ -377,7 +443,7 @@ msgstr "" #: actions/apigroupismember.php:95 actions/apigroupjoin.php:104 #: actions/apigroupleave.php:104 actions/apigroupmembership.php:91 -#: actions/apigroupshow.php:90 actions/apitimelinegroup.php:91 +#: actions/apigroupshow.php:82 actions/apitimelinegroup.php:91 #, fuzzy msgid "Group not found!" msgstr "İstek bulunamadı!" @@ -421,6 +487,115 @@ msgstr "" msgid "groups on %s" msgstr "" +#: actions/apioauthauthorize.php:101 +msgid "No oauth_token parameter provided." +msgstr "" + +#: actions/apioauthauthorize.php:106 +#, fuzzy +msgid "Invalid token." +msgstr "Geçersiz büyüklük." + +#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 +#: actions/deletenotice.php:157 actions/disfavor.php:74 +#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54 +#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupunblock.php:66 actions/imsettings.php:206 +#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 +#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 +#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135 +#: actions/othersettings.php:145 actions/passwordsettings.php:138 +#: actions/profilesettings.php:194 actions/recoverpassword.php:337 +#: actions/register.php:165 actions/remotesubscribe.php:77 +#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 +#: actions/subscribe.php:86 actions/tagother.php:166 +#: 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/apioauthauthorize.php:135 +#, fuzzy +msgid "Invalid nickname / password!" +msgstr "Geçersiz kullanıcı adı veya parola." + +#: actions/apioauthauthorize.php:159 +#, fuzzy +msgid "Database error deleting OAuth application user." +msgstr "Kullanıcı ayarlamada hata oluştu." + +#: actions/apioauthauthorize.php:185 +#, fuzzy +msgid "Database error inserting OAuth application user." +msgstr "Cevap eklenirken veritabanı hatası: %s" + +#: actions/apioauthauthorize.php:214 +#, php-format +msgid "" +"The request token %s has been authorized. Please exchange it for an access " +"token." +msgstr "" + +#: actions/apioauthauthorize.php:227 +#, php-format +msgid "The request token %s has been denied and revoked." +msgstr "" + +#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 +#: actions/designadminpanel.php:103 actions/editapplication.php:139 +#: actions/emailsettings.php:256 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/newapplication.php:121 +#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 +#: actions/smssettings.php:248 lib/designsettings.php:304 +msgid "Unexpected form submission." +msgstr "Beklenmeğen form girdisi." + +#: actions/apioauthauthorize.php:259 +msgid "An application would like to connect to your account" +msgstr "" + +#: actions/apioauthauthorize.php:276 +msgid "Allow or deny access" +msgstr "" + +#: actions/apioauthauthorize.php:292 +#, php-format +msgid "" +"The application %1$s by %2$s would like " +"the ability to %3$s your %4$s account data. You should only " +"give access to your %4$s account to third parties you trust." +msgstr "" + +#: actions/apioauthauthorize.php:310 lib/action.php:441 +#, fuzzy +msgid "Account" +msgstr "Hakkında" + +#: actions/apioauthauthorize.php:313 actions/login.php:230 +#: actions/profilesettings.php:106 actions/register.php:424 +#: actions/showgroup.php:236 actions/tagother.php:94 +#: actions/userauthorization.php:145 lib/groupeditform.php:152 +#: lib/userprofile.php:131 +msgid "Nickname" +msgstr "Takma ad" + +#: actions/apioauthauthorize.php:316 actions/login.php:233 +#: actions/register.php:429 lib/accountsettingsaction.php:116 +msgid "Password" +msgstr "Parola" + +#: actions/apioauthauthorize.php:328 +msgid "Deny" +msgstr "" + +#: actions/apioauthauthorize.php:334 +msgid "Allow" +msgstr "" + +#: actions/apioauthauthorize.php:351 +msgid "Allow or deny access to your account information." +msgstr "" + #: actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." msgstr "" @@ -453,18 +628,18 @@ msgstr "Avatar güncellendi." msgid "No status with that ID found." msgstr "" -#: actions/apistatusesupdate.php:157 actions/newnotice.php:155 +#: actions/apistatusesupdate.php:161 actions/newnotice.php:155 #: lib/mailhandler.php:60 #, 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:198 +#: actions/apistatusesupdate.php:202 msgid "Not found" msgstr "" -#: actions/apistatusesupdate.php:221 actions/newnotice.php:178 +#: actions/apistatusesupdate.php:225 actions/newnotice.php:178 #, php-format msgid "Max notice size is %d chars, including attachment URL." msgstr "" @@ -479,7 +654,7 @@ msgstr "Desteklenmeyen görüntü dosyası biçemi." msgid "%1$s / Favorites from %2$s" msgstr "%1$s'in %2$s'deki durum mesajları " -#: actions/apitimelinefavorites.php:120 +#: actions/apitimelinefavorites.php:117 #, fuzzy, php-format msgid "%1$s updates favorited by %2$s / %2$s." msgstr "%s adli kullanicinin durum mesajlari" @@ -490,7 +665,7 @@ msgstr "%s adli kullanicinin durum mesajlari" msgid "%s timeline" msgstr "" -#: actions/apitimelinegroup.php:117 actions/apitimelineuser.php:126 +#: actions/apitimelinegroup.php:114 actions/apitimelineuser.php:126 #: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" @@ -506,27 +681,22 @@ msgstr "%1$s'in %2$s'deki durum mesajları " msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "" -#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "" -#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "" -#: actions/apitimelineretweetedbyme.php:112 -#, php-format -msgid "Repeated by %s" -msgstr "" - #: actions/apitimelineretweetedtome.php:111 #, fuzzy, php-format msgid "Repeated to %s" msgstr "%s için cevaplar" -#: actions/apitimelineretweetsofme.php:112 +#: actions/apitimelineretweetsofme.php:114 #, fuzzy, php-format msgid "Repeats of %s" msgstr "%s için cevaplar" @@ -536,7 +706,7 @@ msgstr "%s için cevaplar" msgid "Notices tagged with %s" msgstr "" -#: actions/apitimelinetag.php:108 actions/tagrss.php:64 +#: actions/apitimelinetag.php:104 actions/tagrss.php:64 #, fuzzy, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "%s adli kullanicinin durum mesajlari" @@ -599,8 +769,8 @@ msgstr "" msgid "Preview" msgstr "" -#: actions/avatarsettings.php:149 lib/deleteuserform.php:66 -#: lib/noticelist.php:611 +#: actions/avatarsettings.php:149 actions/showapplication.php:252 +#: lib/deleteuserform.php:66 lib/noticelist.php:637 msgid "Delete" msgstr "" @@ -612,29 +782,6 @@ msgstr "Yükle" msgid "Crop" msgstr "" -#: actions/avatarsettings.php:268 actions/deletenotice.php:157 -#: actions/disfavor.php:74 actions/emailsettings.php:238 actions/favor.php:75 -#: actions/geocode.php:50 actions/groupblock.php:66 actions/grouplogo.php:309 -#: actions/groupunblock.php:66 actions/imsettings.php:206 -#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 -#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 -#: actions/othersettings.php:145 actions/passwordsettings.php:138 -#: actions/profilesettings.php:194 actions/recoverpassword.php:337 -#: actions/register.php:165 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 -#: actions/subscribe.php:46 actions/tagother.php:166 -#: 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/avatarsettings.php:281 actions/designadminpanel.php:103 -#: actions/emailsettings.php:256 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/avatarsettings.php:328 msgid "Pick a square area of the image to be your avatar" msgstr "" @@ -673,8 +820,9 @@ msgid "" "will not be notified of any @-replies from them." msgstr "" -#: actions/block.php:143 actions/deletenotice.php:145 -#: actions/deleteuser.php:147 actions/groupblock.php:178 +#: actions/block.php:143 actions/deleteapplication.php:153 +#: actions/deletenotice.php:145 actions/deleteuser.php:147 +#: actions/groupblock.php:178 msgid "No" msgstr "" @@ -683,13 +831,13 @@ msgstr "" msgid "Do not block this user" msgstr "Böyle bir kullanıcı yok." -#: actions/block.php:144 actions/deletenotice.php:146 -#: actions/deleteuser.php:148 actions/groupblock.php:179 -#: lib/repeatform.php:132 +#: actions/block.php:144 actions/deleteapplication.php:158 +#: actions/deletenotice.php:146 actions/deleteuser.php:148 +#: actions/groupblock.php:179 lib/repeatform.php:132 msgid "Yes" msgstr "" -#: actions/block.php:144 actions/groupmembers.php:346 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80 #, fuzzy msgid "Block this user" msgstr "Böyle bir kullanıcı yok." @@ -776,7 +924,8 @@ msgid "Couldn't delete email confirmation." msgstr "Eposta onayı silinemedi." #: actions/confirmaddress.php:144 -msgid "Confirm Address" +#, fuzzy +msgid "Confirm address" msgstr "Adresi Onayla" #: actions/confirmaddress.php:159 @@ -794,10 +943,54 @@ msgstr "Yer" msgid "Notices" msgstr "Durum mesajları" +#: actions/deleteapplication.php:63 +#, fuzzy +msgid "You must be logged in to delete an application." +msgstr "Kullanıcı güncellenemedi." + +#: actions/deleteapplication.php:71 +#, fuzzy +msgid "Application not found." +msgstr "Bu durum mesajının ait oldugu kullanıcı profili yok" + +#: actions/deleteapplication.php:78 actions/editapplication.php:77 +#: actions/showapplication.php:94 +#, fuzzy +msgid "You are not the owner of this application." +msgstr "Bize o profili yollamadınız" + +#: actions/deleteapplication.php:102 actions/editapplication.php:127 +#: actions/newapplication.php:110 actions/showapplication.php:118 +#: lib/action.php:1197 +msgid "There was a problem with your session token." +msgstr "" + +#: actions/deleteapplication.php:123 actions/deleteapplication.php:147 +#, fuzzy +msgid "Delete application" +msgstr "Böyle bir durum mesajı yok." + +#: actions/deleteapplication.php:149 +msgid "" +"Are you sure you want to delete this application? This will clear all data " +"about the application from the database, including all existing user " +"connections." +msgstr "" + +#: actions/deleteapplication.php:156 +#, fuzzy +msgid "Do not delete this application" +msgstr "Böyle bir durum mesajı yok." + +#: actions/deleteapplication.php:160 +#, fuzzy +msgid "Delete this application" +msgstr "Kendinizi ve ilgi alanlarınızı 140 karakter ile anlatın" + #: 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/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 #: lib/adminpanelaction.php:72 lib/profileformaction.php:63 #: lib/settingsaction.php:72 @@ -827,7 +1020,7 @@ msgstr "" msgid "Do not delete this notice" msgstr "Böyle bir durum mesajı yok." -#: actions/deletenotice.php:146 lib/noticelist.php:611 +#: actions/deletenotice.php:146 lib/noticelist.php:637 msgid "Delete this notice" msgstr "" @@ -968,16 +1161,6 @@ msgstr "" msgid "Reset back to default" msgstr "" -#: actions/designadminpanel.php:586 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 -#: actions/pathsadminpanel.php:324 actions/profilesettings.php:174 -#: actions/siteadminpanel.php:388 actions/smssettings.php:181 -#: actions/subscriptions.php:203 actions/tagother.php:154 -#: actions/useradminpanel.php:313 lib/designsettings.php:256 -#: lib/groupeditform.php:202 -msgid "Save" -msgstr "Kaydet" - #: actions/designadminpanel.php:587 lib/designsettings.php:257 msgid "Save design" msgstr "" @@ -990,10 +1173,84 @@ msgstr "" msgid "Add to favorites" msgstr "" -#: actions/doc.php:69 -msgid "No such document." +#: actions/doc.php:158 +#, fuzzy, php-format +msgid "No such document \"%s\"" msgstr "Böyle bir belge yok." +#: actions/editapplication.php:54 +#, fuzzy +msgid "Edit Application" +msgstr "Bu durum mesajının ait oldugu kullanıcı profili yok" + +#: actions/editapplication.php:66 +msgid "You must be logged in to edit an application." +msgstr "" + +#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:166 +#: actions/showapplication.php:87 +#, fuzzy +msgid "No such application." +msgstr "Böyle bir durum mesajı yok." + +#: actions/editapplication.php:161 +msgid "Use this form to edit your application." +msgstr "" + +#: actions/editapplication.php:177 actions/newapplication.php:159 +msgid "Name is required." +msgstr "" + +#: actions/editapplication.php:180 actions/newapplication.php:165 +#, fuzzy +msgid "Name is too long (max 255 chars)." +msgstr "Tam isim çok uzun (azm: 255 karakter)." + +#: actions/editapplication.php:183 actions/newapplication.php:162 +#, fuzzy +msgid "Name already in use. Try another one." +msgstr "Takma ad kullanımda. Başka bir tane deneyin." + +#: actions/editapplication.php:186 actions/newapplication.php:168 +#, fuzzy +msgid "Description is required." +msgstr "Abonelikler" + +#: actions/editapplication.php:194 +msgid "Source URL is too long." +msgstr "" + +#: actions/editapplication.php:200 actions/newapplication.php:185 +#, fuzzy +msgid "Source URL is not valid." +msgstr "Başlangıç sayfası adresi geçerli bir URL değil." + +#: actions/editapplication.php:203 actions/newapplication.php:188 +msgid "Organization is required." +msgstr "" + +#: actions/editapplication.php:206 actions/newapplication.php:191 +#, fuzzy +msgid "Organization is too long (max 255 chars)." +msgstr "Yer bilgisi çok uzun (azm: 255 karakter)." + +#: actions/editapplication.php:209 actions/newapplication.php:194 +msgid "Organization homepage is required." +msgstr "" + +#: actions/editapplication.php:218 actions/newapplication.php:206 +msgid "Callback is too long." +msgstr "" + +#: actions/editapplication.php:225 actions/newapplication.php:215 +msgid "Callback URL is not valid." +msgstr "" + +#: actions/editapplication.php:258 +#, fuzzy +msgid "Could not update application." +msgstr "Kullanıcı güncellenemedi." + #: actions/editgroup.php:56 #, php-format msgid "Edit %s group" @@ -1022,7 +1279,7 @@ msgstr "Hakkında bölümü çok uzun (azm 140 karakter)." msgid "Could not update group." msgstr "Kullanıcı güncellenemedi." -#: actions/editgroup.php:259 classes/User_group.php:390 +#: actions/editgroup.php:259 classes/User_group.php:433 #, fuzzy msgid "Could not create aliases." msgstr "Avatar bilgisi kaydedilemedi" @@ -1064,7 +1321,8 @@ msgid "" msgstr "" #: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 +#: actions/smssettings.php:126 lib/applicationeditform.php:331 +#: lib/applicationeditform.php:332 msgid "Cancel" msgstr "İptal et" @@ -1145,7 +1403,7 @@ msgid "Cannot normalize that email address" msgstr "" #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:157 +#: actions/siteadminpanel.php:143 msgid "Not a valid email address." msgstr "Geçersiz bir eposta adresi." @@ -1157,7 +1415,7 @@ msgstr "" msgid "That email address already belongs to another user." msgstr "" -#: actions/emailsettings.php:353 actions/imsettings.php:317 +#: actions/emailsettings.php:353 actions/imsettings.php:319 #: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." msgstr "Onay kodu eklenemedi." @@ -1216,7 +1474,7 @@ msgstr "" msgid "Disfavor favorite" msgstr "" -#: actions/favorited.php:65 lib/popularnoticesection.php:88 +#: actions/favorited.php:65 lib/popularnoticesection.php:91 #: lib/publicgroupnav.php:93 #, fuzzy msgid "Popular notices" @@ -1369,7 +1627,7 @@ msgstr "Kullanıcının profili yok." msgid "User is not a member of group." msgstr "Bize o profili yollamadınız" -#: actions/groupblock.php:136 actions/groupmembers.php:314 +#: actions/groupblock.php:136 actions/groupmembers.php:316 #, fuzzy msgid "Block user from group" msgstr "Böyle bir kullanıcı yok." @@ -1469,23 +1727,23 @@ msgstr "" msgid "A list of the users in this group." msgstr "" -#: actions/groupmembers.php:175 lib/action.php:442 lib/groupnav.php:107 +#: actions/groupmembers.php:175 lib/action.php:448 lib/groupnav.php:107 msgid "Admin" msgstr "" -#: actions/groupmembers.php:346 lib/blockform.php:69 +#: actions/groupmembers.php:348 lib/blockform.php:69 msgid "Block" msgstr "" -#: actions/groupmembers.php:441 +#: actions/groupmembers.php:443 msgid "Make user an admin of the group" msgstr "" -#: actions/groupmembers.php:473 +#: actions/groupmembers.php:475 msgid "Make Admin" msgstr "" -#: actions/groupmembers.php:473 +#: actions/groupmembers.php:475 msgid "Make this user an admin" msgstr "" @@ -1664,6 +1922,11 @@ msgstr "" msgid "That is not your Jabber ID." msgstr "Bu sizin Jabber ID'niz değil." +#: actions/inbox.php:59 +#, php-format +msgid "Inbox for %1$s - page %2$d" +msgstr "" + #: actions/inbox.php:62 #, php-format msgid "Inbox for %s" @@ -1740,7 +2003,7 @@ msgstr "" msgid "Optionally add a personal message to the invitation." msgstr "" -#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:237 +#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:236 msgid "Send" msgstr "Gönder" @@ -1816,7 +2079,7 @@ msgstr "Yanlış kullanıcı adı veya parola." msgid "Error setting user. You are probably not authorized." msgstr "Yetkilendirilmemiş." -#: actions/login.php:188 actions/login.php:241 lib/action.php:460 +#: actions/login.php:188 actions/login.php:241 lib/action.php:466 #: lib/logingroupnav.php:79 msgid "Login" msgstr "Giriş" @@ -1825,17 +2088,6 @@ msgstr "Giriş" msgid "Login to site" msgstr "" -#: actions/login.php:230 actions/profilesettings.php:106 -#: actions/register.php:424 actions/showgroup.php:236 actions/tagother.php:94 -#: lib/groupeditform.php:152 lib/userprofile.php:131 -msgid "Nickname" -msgstr "Takma ad" - -#: actions/login.php:233 actions/register.php:429 -#: lib/accountsettingsaction.php:116 -msgid "Password" -msgstr "Parola" - #: actions/login.php:236 actions/register.php:478 msgid "Remember me" msgstr "Beni hatırla" @@ -1867,21 +2119,21 @@ msgstr "" "duruyorsunuz, hemen bir [yeni hesap oluşturun](%%action.register%%) ya da " "[OpenID](%%action.openidlogin%%) ile giriş yapın." -#: actions/makeadmin.php:91 +#: actions/makeadmin.php:92 msgid "Only an admin can make another user an admin." msgstr "" -#: actions/makeadmin.php:95 +#: actions/makeadmin.php:96 #, fuzzy, php-format msgid "%1$s is already an admin for group \"%2$s\"." msgstr "Kullanıcının profili yok." -#: actions/makeadmin.php:132 +#: actions/makeadmin.php:133 #, fuzzy, php-format msgid "Can't get membership record for %1$s in group %2$s." msgstr "OpenID formu yaratılamadı: %s" -#: actions/makeadmin.php:145 +#: actions/makeadmin.php:146 #, fuzzy, php-format msgid "Can't make %1$s an admin for group %2$s." msgstr "Kullanıcının profili yok." @@ -1890,6 +2142,28 @@ msgstr "Kullanıcının profili yok." msgid "No current status" msgstr "" +#: actions/newapplication.php:52 +#, fuzzy +msgid "New Application" +msgstr "Böyle bir durum mesajı yok." + +#: actions/newapplication.php:64 +msgid "You must be logged in to register an application." +msgstr "" + +#: actions/newapplication.php:143 +msgid "Use this form to register a new application." +msgstr "" + +#: actions/newapplication.php:176 +msgid "Source URL is required." +msgstr "" + +#: actions/newapplication.php:258 actions/newapplication.php:267 +#, fuzzy +msgid "Could not create application." +msgstr "Avatar bilgisi kaydedilemedi" + #: actions/newgroup.php:53 msgid "New group" msgstr "" @@ -1997,6 +2271,49 @@ msgstr "" msgid "Nudge sent!" msgstr "" +#: actions/oauthappssettings.php:59 +msgid "You must be logged in to list your applications." +msgstr "" + +#: actions/oauthappssettings.php:74 +msgid "OAuth applications" +msgstr "" + +#: actions/oauthappssettings.php:85 +msgid "Applications you have registered" +msgstr "" + +#: actions/oauthappssettings.php:135 +#, php-format +msgid "You have not registered any applications yet." +msgstr "" + +#: actions/oauthconnectionssettings.php:72 +msgid "Connected applications" +msgstr "" + +#: actions/oauthconnectionssettings.php:83 +msgid "You have allowed the following applications to access you account." +msgstr "" + +#: actions/oauthconnectionssettings.php:175 +#, fuzzy +msgid "You are not a user of that application." +msgstr "Bize o profili yollamadınız" + +#: actions/oauthconnectionssettings.php:186 +msgid "Unable to revoke access for app: " +msgstr "" + +#: actions/oauthconnectionssettings.php:198 +#, php-format +msgid "You have not authorized any applications to use your account." +msgstr "" + +#: actions/oauthconnectionssettings.php:211 +msgid "Developers can edit the registration settings for their applications " +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" @@ -2015,8 +2332,8 @@ msgstr "Bağlan" msgid "Only " msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1033 -#: lib/api.php:1061 lib/api.php:1171 +#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 +#: lib/api.php:1068 lib/api.php:1177 msgid "Not a supported data format." msgstr "" @@ -2030,7 +2347,7 @@ msgstr "" #: actions/othersettings.php:60 #, fuzzy -msgid "Other Settings" +msgid "Other settings" msgstr "Ayarlar" #: actions/othersettings.php:71 @@ -2087,6 +2404,11 @@ msgstr "Geçersiz durum mesajı" msgid "Login token expired." msgstr "" +#: actions/outbox.php:58 +#, php-format +msgid "Outbox for %1$s - page %2$d" +msgstr "" + #: actions/outbox.php:61 #, php-format msgid "Outbox for %s" @@ -2159,7 +2481,7 @@ msgstr "Yeni parola kaydedilemedi." msgid "Password saved." msgstr "Parola kaydedildi." -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:326 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:331 msgid "Paths" msgstr "" @@ -2167,140 +2489,156 @@ msgstr "" msgid "Path and server settings for this StatusNet site." msgstr "" -#: actions/pathsadminpanel.php:140 +#: actions/pathsadminpanel.php:157 #, fuzzy, php-format msgid "Theme directory not readable: %s" msgstr "Bu sayfa kabul ettiğiniz ortam türünde kullanılabilir değil" -#: actions/pathsadminpanel.php:146 +#: actions/pathsadminpanel.php:163 #, php-format msgid "Avatar directory not writable: %s" msgstr "" -#: actions/pathsadminpanel.php:152 +#: actions/pathsadminpanel.php:169 #, php-format msgid "Background directory not writable: %s" msgstr "" -#: actions/pathsadminpanel.php:160 +#: actions/pathsadminpanel.php:177 #, php-format msgid "Locales directory not readable: %s" msgstr "" -#: actions/pathsadminpanel.php:166 +#: actions/pathsadminpanel.php:183 msgid "Invalid SSL server. The maximum length is 255 characters." msgstr "" -#: actions/pathsadminpanel.php:217 actions/siteadminpanel.php:58 +#: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58 #: lib/adminpanelaction.php:311 msgid "Site" msgstr "" -#: actions/pathsadminpanel.php:221 +#: actions/pathsadminpanel.php:238 +msgid "Server" +msgstr "Sunucu" + +#: actions/pathsadminpanel.php:238 +msgid "Site's server hostname." +msgstr "" + +#: actions/pathsadminpanel.php:242 msgid "Path" msgstr "" -#: actions/pathsadminpanel.php:221 +#: actions/pathsadminpanel.php:242 #, fuzzy msgid "Site path" msgstr "Yeni durum mesajı" -#: actions/pathsadminpanel.php:225 +#: actions/pathsadminpanel.php:246 msgid "Path to locales" msgstr "" -#: actions/pathsadminpanel.php:225 +#: actions/pathsadminpanel.php:246 msgid "Directory path to locales" msgstr "" -#: actions/pathsadminpanel.php:232 -msgid "Theme" -msgstr "" - -#: actions/pathsadminpanel.php:237 -msgid "Theme server" -msgstr "" - -#: actions/pathsadminpanel.php:241 -msgid "Theme path" -msgstr "" - -#: actions/pathsadminpanel.php:245 -msgid "Theme directory" +#: actions/pathsadminpanel.php:250 +msgid "Fancy URLs" msgstr "" #: actions/pathsadminpanel.php:252 +msgid "Use fancy (more readable and memorable) URLs?" +msgstr "" + +#: actions/pathsadminpanel.php:259 +msgid "Theme" +msgstr "" + +#: actions/pathsadminpanel.php:264 +msgid "Theme server" +msgstr "" + +#: actions/pathsadminpanel.php:268 +msgid "Theme path" +msgstr "" + +#: actions/pathsadminpanel.php:272 +msgid "Theme directory" +msgstr "" + +#: actions/pathsadminpanel.php:279 #, fuzzy msgid "Avatars" msgstr "Avatar" -#: actions/pathsadminpanel.php:257 +#: actions/pathsadminpanel.php:284 #, fuzzy msgid "Avatar server" msgstr "Ayarlar" -#: actions/pathsadminpanel.php:261 +#: actions/pathsadminpanel.php:288 #, fuzzy msgid "Avatar path" msgstr "Avatar güncellendi." -#: actions/pathsadminpanel.php:265 +#: actions/pathsadminpanel.php:292 #, fuzzy msgid "Avatar directory" msgstr "Avatar güncellendi." -#: actions/pathsadminpanel.php:274 +#: actions/pathsadminpanel.php:301 msgid "Backgrounds" msgstr "" -#: actions/pathsadminpanel.php:278 +#: actions/pathsadminpanel.php:305 msgid "Background server" msgstr "" -#: actions/pathsadminpanel.php:282 +#: actions/pathsadminpanel.php:309 msgid "Background path" msgstr "" -#: actions/pathsadminpanel.php:286 +#: actions/pathsadminpanel.php:313 msgid "Background directory" msgstr "" -#: actions/pathsadminpanel.php:293 +#: actions/pathsadminpanel.php:320 msgid "SSL" msgstr "" -#: actions/pathsadminpanel.php:296 actions/siteadminpanel.php:346 +#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 #, fuzzy msgid "Never" msgstr "Geri al" -#: actions/pathsadminpanel.php:297 +#: actions/pathsadminpanel.php:324 #, fuzzy msgid "Sometimes" msgstr "Durum mesajları" -#: actions/pathsadminpanel.php:298 +#: actions/pathsadminpanel.php:325 msgid "Always" msgstr "" -#: actions/pathsadminpanel.php:302 +#: actions/pathsadminpanel.php:329 msgid "Use SSL" msgstr "" -#: actions/pathsadminpanel.php:303 +#: actions/pathsadminpanel.php:330 msgid "When to use SSL" msgstr "" -#: actions/pathsadminpanel.php:308 +#: actions/pathsadminpanel.php:335 #, fuzzy msgid "SSL server" msgstr "Geri al" -#: actions/pathsadminpanel.php:309 +#: actions/pathsadminpanel.php:336 msgid "Server to direct SSL requests to" msgstr "" -#: actions/pathsadminpanel.php:325 +#: actions/pathsadminpanel.php:352 #, fuzzy msgid "Save paths" msgstr "Yeni durum mesajı" @@ -2367,7 +2705,7 @@ msgid "Full name" msgstr "Tam İsim" #: actions/profilesettings.php:115 actions/register.php:453 -#: lib/groupeditform.php:161 +#: lib/applicationeditform.php:228 lib/groupeditform.php:161 msgid "Homepage" msgstr "Başlangıç Sayfası" @@ -2392,7 +2730,7 @@ msgstr "Hakkında" #: actions/profilesettings.php:132 actions/register.php:471 #: actions/showgroup.php:256 actions/tagother.php:112 -#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:164 msgid "Location" msgstr "Yer" @@ -2416,7 +2754,7 @@ msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" -#: actions/profilesettings.php:151 actions/siteadminpanel.php:294 +#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 msgid "Language" msgstr "" @@ -2442,7 +2780,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "Hakkında bölümü çok uzun (azm 140 karakter)." -#: actions/profilesettings.php:235 actions/siteadminpanel.php:164 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 msgid "Timezone not selected." msgstr "" @@ -2455,25 +2793,25 @@ msgstr "" msgid "Invalid tag: \"%s\"" msgstr "%s Geçersiz başlangıç sayfası" -#: actions/profilesettings.php:302 +#: actions/profilesettings.php:306 msgid "Couldn't update user for autosubscribe." msgstr "" -#: actions/profilesettings.php:359 +#: actions/profilesettings.php:363 #, fuzzy msgid "Couldn't save location prefs." msgstr "Profil kaydedilemedi." -#: actions/profilesettings.php:371 +#: actions/profilesettings.php:375 msgid "Couldn't save profile." msgstr "Profil kaydedilemedi." -#: actions/profilesettings.php:379 +#: actions/profilesettings.php:383 #, fuzzy msgid "Couldn't save tags." msgstr "Profil kaydedilemedi." -#: actions/profilesettings.php:387 lib/adminpanelaction.php:137 +#: actions/profilesettings.php:391 lib/adminpanelaction.php:137 msgid "Settings saved." msgstr "Ayarlar kaydedildi." @@ -2495,39 +2833,39 @@ msgstr "Genel zaman çizgisi" msgid "Public timeline" msgstr "Genel zaman çizgisi" -#: actions/public.php:151 +#: actions/public.php:159 #, fuzzy msgid "Public Stream Feed (RSS 1.0)" msgstr "Genel Durum Akış RSS Beslemesi" -#: actions/public.php:155 +#: actions/public.php:163 #, fuzzy msgid "Public Stream Feed (RSS 2.0)" msgstr "Genel Durum Akış RSS Beslemesi" -#: actions/public.php:159 +#: actions/public.php:167 #, fuzzy msgid "Public Stream Feed (Atom)" msgstr "Genel Durum Akış RSS Beslemesi" -#: actions/public.php:179 +#: actions/public.php:187 #, php-format msgid "" "This is the public timeline for %%site.name%% but no one has posted anything " "yet." msgstr "" -#: actions/public.php:182 +#: actions/public.php:190 msgid "Be the first to post!" msgstr "" -#: actions/public.php:186 +#: actions/public.php:194 #, php-format msgid "" "Why not [register an account](%%action.register%%) and be the first to post!" msgstr "" -#: actions/public.php:233 +#: actions/public.php:241 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2536,7 +2874,7 @@ msgid "" "friends, family, and colleagues! ([Read more](%%doc.help%%))" msgstr "" -#: actions/public.php:238 +#: actions/public.php:246 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2570,7 +2908,7 @@ msgid "" "one!" msgstr "" -#: actions/publictagcloud.php:131 +#: actions/publictagcloud.php:134 msgid "Tag cloud" msgstr "" @@ -2709,7 +3047,7 @@ msgstr "Onay kodu hatası." msgid "Registration successful" msgstr "" -#: actions/register.php:114 actions/register.php:503 lib/action.php:457 +#: actions/register.php:114 actions/register.php:503 lib/action.php:463 #: lib/logingroupnav.php:85 msgid "Register" msgstr "Kayıt" @@ -2749,7 +3087,7 @@ msgid "Same as password above. Required." msgstr "" #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:270 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 msgid "Email" msgstr "Eposta" @@ -2838,7 +3176,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:365 +#: lib/userprofile.php:368 msgid "Subscribe" msgstr "Abone ol" @@ -2878,7 +3216,7 @@ msgstr "Eğer lisansı kabul etmezseniz kayıt olamazsınız." msgid "You already repeated that notice." msgstr "Zaten giriş yapmış durumdasıznız!" -#: actions/repeat.php:114 lib/noticelist.php:629 +#: actions/repeat.php:114 lib/noticelist.php:656 #, fuzzy msgid "Repeated" msgstr "Yarat" @@ -2894,6 +3232,11 @@ msgstr "Yarat" msgid "Replies to %s" msgstr "%s için cevaplar" +#: actions/replies.php:127 +#, fuzzy, php-format +msgid "Replies to %1$s, page %2$d" +msgstr "%s için cevaplar" + #: actions/replies.php:144 #, fuzzy, php-format msgid "Replies feed for %s (RSS 1.0)" @@ -2935,6 +3278,11 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "%s için cevaplar" +#: actions/rsd.php:146 actions/version.php:157 +#, fuzzy +msgid "StatusNet" +msgstr "Avatar güncellendi." + #: actions/sandbox.php:65 actions/unsandbox.php:65 #, fuzzy msgid "You cannot sandbox users on this site." @@ -2945,6 +3293,124 @@ msgstr "Bize o profili yollamadınız" msgid "User is already sandboxed." msgstr "Kullanıcının profili yok." +#: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:336 +msgid "Sessions" +msgstr "" + +#: actions/sessionsadminpanel.php:65 +msgid "Session settings for this StatusNet site." +msgstr "" + +#: actions/sessionsadminpanel.php:175 +msgid "Handle sessions" +msgstr "" + +#: actions/sessionsadminpanel.php:177 +msgid "Whether to handle sessions ourselves." +msgstr "" + +#: actions/sessionsadminpanel.php:181 +msgid "Session debugging" +msgstr "" + +#: actions/sessionsadminpanel.php:183 +msgid "Turn on debugging output for sessions." +msgstr "" + +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/useradminpanel.php:293 +#, fuzzy +msgid "Save site settings" +msgstr "Ayarlar" + +#: actions/showapplication.php:82 +msgid "You must be logged in to view an application." +msgstr "" + +#: actions/showapplication.php:157 +#, fuzzy +msgid "Application profile" +msgstr "Bu durum mesajının ait oldugu kullanıcı profili yok" + +#: actions/showapplication.php:159 lib/applicationeditform.php:180 +msgid "Icon" +msgstr "" + +#: actions/showapplication.php:169 actions/version.php:195 +#: lib/applicationeditform.php:195 +#, fuzzy +msgid "Name" +msgstr "Takma ad" + +#: actions/showapplication.php:178 lib/applicationeditform.php:222 +#, fuzzy +msgid "Organization" +msgstr "Yer" + +#: actions/showapplication.php:187 actions/version.php:198 +#: lib/applicationeditform.php:209 lib/groupeditform.php:172 +#, fuzzy +msgid "Description" +msgstr "Abonelikler" + +#: actions/showapplication.php:192 actions/showgroup.php:429 +#: lib/profileaction.php:174 +msgid "Statistics" +msgstr "İstatistikler" + +#: actions/showapplication.php:203 +#, php-format +msgid "Created by %1$s - %2$s access by default - %3$d users" +msgstr "" + +#: actions/showapplication.php:213 +msgid "Application actions" +msgstr "" + +#: actions/showapplication.php:236 +msgid "Reset key & secret" +msgstr "" + +#: actions/showapplication.php:261 +msgid "Application info" +msgstr "" + +#: actions/showapplication.php:263 +msgid "Consumer key" +msgstr "" + +#: actions/showapplication.php:268 +msgid "Consumer secret" +msgstr "" + +#: actions/showapplication.php:273 +msgid "Request token URL" +msgstr "" + +#: actions/showapplication.php:278 +msgid "Access token URL" +msgstr "" + +#: actions/showapplication.php:283 +msgid "Authorize URL" +msgstr "" + +#: actions/showapplication.php:288 +msgid "" +"Note: We support HMAC-SHA1 signatures. We do not support the plaintext " +"signature method." +msgstr "" + +#: actions/showapplication.php:309 +msgid "Are you sure you want to reset your consumer key and secret?" +msgstr "" + +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%1$s's favorite notices, page %2$d" +msgstr "%s ve arkadaşları" + #: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "" @@ -2994,18 +3460,23 @@ msgstr "" msgid "%s group" msgstr "" +#: actions/showgroup.php:84 +#, fuzzy, php-format +msgid "%1$s group, page %2$d" +msgstr "Bütün abonelikler" + #: actions/showgroup.php:218 #, fuzzy msgid "Group profile" msgstr "Böyle bir durum mesajı yok." #: actions/showgroup.php:263 actions/tagother.php:118 -#: actions/userauthorization.php:167 lib/userprofile.php:177 +#: actions/userauthorization.php:175 lib/userprofile.php:177 msgid "URL" msgstr "" #: actions/showgroup.php:274 actions/tagother.php:128 -#: actions/userauthorization.php:179 lib/userprofile.php:194 +#: actions/userauthorization.php:187 lib/userprofile.php:194 #, fuzzy msgid "Note" msgstr "Durum mesajları" @@ -3053,10 +3524,6 @@ msgstr "" msgid "All members" msgstr "" -#: actions/showgroup.php:429 lib/profileaction.php:174 -msgid "Statistics" -msgstr "İstatistikler" - #: actions/showgroup.php:432 #, fuzzy msgid "Created" @@ -3113,6 +3580,11 @@ msgstr "Durum mesajları" msgid " tagged %s" msgstr "" +#: actions/showstream.php:79 +#, fuzzy, php-format +msgid "%1$s, page %2$d" +msgstr "%s ve arkadaşları" + #: actions/showstream.php:122 #, fuzzy, php-format msgid "Notice feed for %1$s tagged %2$s (RSS 1.0)" @@ -3138,25 +3610,25 @@ msgstr "%s için durum RSS beslemesi" msgid "FOAF for %s" msgstr "" -#: actions/showstream.php:191 +#: actions/showstream.php:200 #, php-format msgid "This is the timeline for %1$s but %2$s hasn't posted anything yet." msgstr "" -#: actions/showstream.php:196 +#: actions/showstream.php:205 msgid "" "Seen anything interesting recently? You haven't posted any notices yet, now " "would be a good time to start :)" msgstr "" -#: actions/showstream.php:198 +#: actions/showstream.php:207 #, php-format msgid "" "You can try to nudge %1$s or [post something to his or her attention](%%%%" "action.newnotice%%%%?status_textarea=%2$s)." msgstr "" -#: actions/showstream.php:234 +#: actions/showstream.php:243 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3165,7 +3637,7 @@ msgid "" "follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showstream.php:239 +#: actions/showstream.php:248 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3173,7 +3645,7 @@ msgid "" "[StatusNet](http://status.net/) tool. " msgstr "" -#: actions/showstream.php:313 +#: actions/showstream.php:305 #, fuzzy, php-format msgid "Repeat of %s" msgstr "%s için cevaplar" @@ -3191,204 +3663,147 @@ msgstr "Kullanıcının profili yok." msgid "Basic settings for this StatusNet site." msgstr "" -#: actions/siteadminpanel.php:146 +#: actions/siteadminpanel.php:132 msgid "Site name must have non-zero length." msgstr "" -#: actions/siteadminpanel.php:154 +#: actions/siteadminpanel.php:140 #, fuzzy msgid "You must have a valid contact email address." msgstr "Geçersiz bir eposta adresi." -#: actions/siteadminpanel.php:172 +#: actions/siteadminpanel.php:158 #, php-format msgid "Unknown language \"%s\"." msgstr "" -#: actions/siteadminpanel.php:179 +#: actions/siteadminpanel.php:165 msgid "Invalid snapshot report URL." msgstr "" -#: actions/siteadminpanel.php:185 +#: actions/siteadminpanel.php:171 msgid "Invalid snapshot run value." msgstr "" -#: actions/siteadminpanel.php:191 +#: actions/siteadminpanel.php:177 msgid "Snapshot frequency must be a number." msgstr "" -#: actions/siteadminpanel.php:197 +#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "" -#: actions/siteadminpanel.php:203 +#: actions/siteadminpanel.php:189 msgid "Dupe limit must 1 or more seconds." msgstr "" -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:239 msgid "General" msgstr "" -#: actions/siteadminpanel.php:256 +#: actions/siteadminpanel.php:242 #, fuzzy msgid "Site name" msgstr "Yeni durum mesajı" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:243 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "" -#: actions/siteadminpanel.php:261 +#: actions/siteadminpanel.php:247 msgid "Brought by" msgstr "" -#: actions/siteadminpanel.php:262 +#: actions/siteadminpanel.php:248 msgid "Text used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:266 +#: actions/siteadminpanel.php:252 msgid "Brought by URL" msgstr "" -#: actions/siteadminpanel.php:267 +#: actions/siteadminpanel.php:253 msgid "URL used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:271 +#: actions/siteadminpanel.php:257 #, fuzzy msgid "Contact email address for your site" msgstr "Kullanıcı için kaydedilmiş eposta adresi yok." -#: actions/siteadminpanel.php:277 +#: actions/siteadminpanel.php:263 #, fuzzy msgid "Local" msgstr "Yer" -#: actions/siteadminpanel.php:288 +#: actions/siteadminpanel.php:274 msgid "Default timezone" msgstr "" -#: actions/siteadminpanel.php:289 +#: actions/siteadminpanel.php:275 msgid "Default timezone for the site; usually UTC." msgstr "" -#: actions/siteadminpanel.php:295 +#: actions/siteadminpanel.php:281 msgid "Default site language" msgstr "" -#: actions/siteadminpanel.php:303 -msgid "URLs" -msgstr "" - -#: actions/siteadminpanel.php:306 -#, fuzzy -msgid "Server" -msgstr "Geri al" - -#: actions/siteadminpanel.php:306 -msgid "Site's server hostname." -msgstr "" - -#: actions/siteadminpanel.php:310 -msgid "Fancy URLs" -msgstr "" - -#: actions/siteadminpanel.php:312 -msgid "Use fancy (more readable and memorable) URLs?" -msgstr "" - -#: actions/siteadminpanel.php:318 -#, fuzzy -msgid "Access" -msgstr "Kabul et" - -#: actions/siteadminpanel.php:321 -#, fuzzy -msgid "Private" -msgstr "Gizlilik" - -#: actions/siteadminpanel.php:323 -msgid "Prohibit anonymous users (not logged in) from viewing site?" -msgstr "" - -#: actions/siteadminpanel.php:327 -msgid "Invite only" -msgstr "" - -#: actions/siteadminpanel.php:329 -msgid "Make registration invitation only." -msgstr "" - -#: actions/siteadminpanel.php:333 -#, fuzzy -msgid "Closed" -msgstr "Böyle bir kullanıcı yok." - -#: actions/siteadminpanel.php:335 -msgid "Disable new registrations." -msgstr "" - -#: actions/siteadminpanel.php:341 +#: actions/siteadminpanel.php:289 msgid "Snapshots" msgstr "" -#: actions/siteadminpanel.php:344 +#: actions/siteadminpanel.php:292 msgid "Randomly during Web hit" msgstr "" -#: actions/siteadminpanel.php:345 +#: actions/siteadminpanel.php:293 msgid "In a scheduled job" msgstr "" -#: actions/siteadminpanel.php:347 +#: actions/siteadminpanel.php:295 msgid "Data snapshots" msgstr "" -#: actions/siteadminpanel.php:348 +#: actions/siteadminpanel.php:296 msgid "When to send statistical data to status.net servers" msgstr "" -#: actions/siteadminpanel.php:353 +#: actions/siteadminpanel.php:301 msgid "Frequency" msgstr "" -#: actions/siteadminpanel.php:354 +#: actions/siteadminpanel.php:302 msgid "Snapshots will be sent once every N web hits" msgstr "" -#: actions/siteadminpanel.php:359 +#: actions/siteadminpanel.php:307 msgid "Report URL" msgstr "" -#: actions/siteadminpanel.php:360 +#: actions/siteadminpanel.php:308 msgid "Snapshots will be sent to this URL" msgstr "" -#: actions/siteadminpanel.php:367 +#: actions/siteadminpanel.php:315 msgid "Limits" msgstr "" -#: actions/siteadminpanel.php:370 +#: actions/siteadminpanel.php:318 msgid "Text limit" msgstr "" -#: actions/siteadminpanel.php:370 +#: actions/siteadminpanel.php:318 msgid "Maximum number of characters for notices." msgstr "" -#: actions/siteadminpanel.php:374 +#: actions/siteadminpanel.php:322 msgid "Dupe limit" msgstr "" -#: actions/siteadminpanel.php:374 +#: actions/siteadminpanel.php:322 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" -#: actions/siteadminpanel.php:388 actions/useradminpanel.php:313 -#, fuzzy -msgid "Save site settings" -msgstr "Ayarlar" - #: actions/smssettings.php:58 #, fuzzy msgid "SMS settings" @@ -3489,17 +3904,27 @@ msgstr "" msgid "You are not subscribed to that profile." msgstr "Bize o profili yollamadınız" -#: actions/subedit.php:83 +#: actions/subedit.php:83 classes/Subscription.php:89 +#: classes/Subscription.php:116 #, fuzzy msgid "Could not save subscription." msgstr "Abonelik oluşturulamadı." -#: actions/subscribe.php:55 -#, fuzzy -msgid "Not a local user." -msgstr "Böyle bir kullanıcı yok." +#: actions/subscribe.php:77 +msgid "This action only accepts POST requests." +msgstr "" -#: actions/subscribe.php:69 +#: actions/subscribe.php:107 +#, fuzzy +msgid "No such profile." +msgstr "Böyle bir durum mesajı yok." + +#: actions/subscribe.php:117 +#, fuzzy +msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." +msgstr "Bize o profili yollamadınız" + +#: actions/subscribe.php:145 #, fuzzy msgid "Subscribed" msgstr "Abone ol" @@ -3560,7 +3985,7 @@ msgstr "Sizin durumlarını takip ettiğiniz kullanıcılar" 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:121 +#: actions/subscriptions.php:126 #, php-format msgid "" "You're not listening to anyone's notices right now, try subscribing to " @@ -3570,20 +3995,25 @@ msgid "" "automatically subscribe to people you already follow there." msgstr "" -#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#: actions/subscriptions.php:128 actions/subscriptions.php:132 #, fuzzy, php-format msgid "%s is not listening to anyone." msgstr "%1$s %2$s'da durumunuzu takip ediyor" -#: actions/subscriptions.php:194 +#: actions/subscriptions.php:199 #, fuzzy msgid "Jabber" msgstr "JabberID yok." -#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:204 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "" +#: actions/tag.php:68 +#, fuzzy, php-format +msgid "Notices tagged with %1$s, page %2$d" +msgstr "%s adli kullanicinin durum mesajlari" + #: actions/tag.php:86 #, fuzzy, php-format msgid "Notice feed for tag %s (RSS 1.0)" @@ -3614,7 +4044,8 @@ msgstr "" msgid "User profile" msgstr "Kullanıcının profili yok." -#: actions/tagother.php:81 lib/userprofile.php:102 +#: actions/tagother.php:81 actions/userauthorization.php:132 +#: lib/userprofile.php:102 msgid "Photo" msgstr "" @@ -3676,7 +4107,7 @@ msgstr "Yetkilendirme isteği yok!" msgid "Unsubscribed" msgstr "Aboneliği sonlandır" -#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#: actions/updateprofile.php:62 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -3691,87 +4122,67 @@ msgstr "" msgid "User settings for this StatusNet site." msgstr "" -#: actions/useradminpanel.php:149 +#: actions/useradminpanel.php:148 msgid "Invalid bio limit. Must be numeric." msgstr "" -#: actions/useradminpanel.php:155 +#: actions/useradminpanel.php:154 msgid "Invalid welcome text. Max length is 255 characters." msgstr "" -#: actions/useradminpanel.php:165 +#: actions/useradminpanel.php:164 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 +#: actions/useradminpanel.php:217 lib/accountsettingsaction.php:108 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Profil" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:221 msgid "Bio Limit" msgstr "" -#: actions/useradminpanel.php:223 +#: actions/useradminpanel.php:222 msgid "Maximum length of a profile bio in characters." msgstr "" -#: actions/useradminpanel.php:231 +#: actions/useradminpanel.php:230 msgid "New users" msgstr "" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:234 msgid "New user welcome" msgstr "" -#: actions/useradminpanel.php:236 +#: actions/useradminpanel.php:235 msgid "Welcome text for new users (Max 255 chars)." msgstr "" -#: actions/useradminpanel.php:241 +#: actions/useradminpanel.php:240 #, fuzzy msgid "Default subscription" msgstr "Bütün abonelikler" -#: actions/useradminpanel.php:242 +#: actions/useradminpanel.php:241 #, fuzzy msgid "Automatically subscribe new users to this user." msgstr "Takip talebine izin verildi" -#: actions/useradminpanel.php:251 +#: actions/useradminpanel.php:250 #, fuzzy msgid "Invitations" msgstr "Yer" -#: actions/useradminpanel.php:256 +#: actions/useradminpanel.php:255 msgid "Invitations enabled" msgstr "" -#: actions/useradminpanel.php:258 +#: actions/useradminpanel.php:257 msgid "Whether to allow users to invite new users." msgstr "" -#: actions/useradminpanel.php:265 -msgid "Sessions" -msgstr "" - -#: actions/useradminpanel.php:270 -msgid "Handle sessions" -msgstr "" - -#: actions/useradminpanel.php:272 -msgid "Whether to handle sessions ourselves." -msgstr "" - -#: actions/useradminpanel.php:276 -msgid "Session debugging" -msgstr "" - -#: actions/useradminpanel.php:278 -msgid "Turn on debugging output for sessions." -msgstr "" - #: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Takip isteğini onayla" @@ -3787,86 +4198,86 @@ msgstr "" "detayları gözden geçirin. Kimsenin durumunu taki etme isteğinde " "bulunmadıysanız \"İptal\" tuşuna basın. " -#: actions/userauthorization.php:188 actions/version.php:165 +#: actions/userauthorization.php:196 actions/version.php:165 msgid "License" msgstr "" -#: actions/userauthorization.php:209 +#: actions/userauthorization.php:217 msgid "Accept" msgstr "Kabul et" -#: actions/userauthorization.php:210 lib/subscribeform.php:115 +#: actions/userauthorization.php:218 lib/subscribeform.php:115 #: lib/subscribeform.php:139 #, fuzzy msgid "Subscribe to this user" msgstr "Takip talebine izin verildi" -#: actions/userauthorization.php:211 +#: actions/userauthorization.php:219 msgid "Reject" msgstr "Reddet" -#: actions/userauthorization.php:212 +#: actions/userauthorization.php:220 #, fuzzy msgid "Reject this subscription" msgstr "Bütün abonelikler" -#: actions/userauthorization.php:225 +#: actions/userauthorization.php:232 msgid "No authorization request!" msgstr "Yetkilendirme isteği yok!" -#: actions/userauthorization.php:247 +#: actions/userauthorization.php:254 msgid "Subscription authorized" msgstr "Takip talebine izin verildi" -#: actions/userauthorization.php:249 +#: actions/userauthorization.php:256 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 +#: actions/userauthorization.php:266 msgid "Subscription rejected" msgstr "Abonelik reddedildi." -#: actions/userauthorization.php:261 +#: actions/userauthorization.php:268 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 +#: actions/userauthorization.php:303 #, php-format msgid "Listener URI ‘%s’ not found here." msgstr "" -#: actions/userauthorization.php:301 +#: actions/userauthorization.php:308 #, php-format msgid "Listenee URI ‘%s’ is too long." msgstr "" -#: actions/userauthorization.php:307 +#: actions/userauthorization.php:314 #, php-format msgid "Listenee URI ‘%s’ is a local user." msgstr "" -#: actions/userauthorization.php:322 +#: actions/userauthorization.php:329 #, php-format msgid "Profile URL ‘%s’ is for a local user." msgstr "" -#: actions/userauthorization.php:338 +#: actions/userauthorization.php:345 #, php-format msgid "Avatar URL ‘%s’ is not valid." msgstr "" -#: actions/userauthorization.php:343 +#: actions/userauthorization.php:350 #, fuzzy, php-format msgid "Can’t read avatar URL ‘%s’." msgstr "Avatar URLi '%s' okunamıyor" -#: actions/userauthorization.php:348 +#: actions/userauthorization.php:355 #, fuzzy, php-format msgid "Wrong image type for avatar URL ‘%s’." msgstr "%s için yanlış resim türü" @@ -3886,6 +4297,11 @@ msgstr "" msgid "Enjoy your hotdog!" msgstr "" +#: actions/usergroups.php:64 +#, fuzzy, php-format +msgid "%1$s groups, page %2$d" +msgstr "Bütün abonelikler" + #: actions/usergroups.php:130 msgid "Search for more groups" msgstr "" @@ -3912,11 +4328,6 @@ msgid "" "Inc. and contributors." msgstr "" -#: actions/version.php:157 -#, fuzzy -msgid "StatusNet" -msgstr "Avatar güncellendi." - #: actions/version.php:161 msgid "Contributors" msgstr "" @@ -3948,12 +4359,7 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:195 -#, fuzzy -msgid "Name" -msgstr "Takma ad" - -#: actions/version.php:196 lib/action.php:741 +#: actions/version.php:196 lib/action.php:747 #, fuzzy msgid "Version" msgstr "Kişisel" @@ -3962,11 +4368,6 @@ msgstr "Kişisel" msgid "Author(s)" msgstr "" -#: actions/version.php:198 lib/groupeditform.php:172 -#, fuzzy -msgid "Description" -msgstr "Abonelikler" - #: classes/File.php:144 #, php-format msgid "" @@ -4016,61 +4417,88 @@ msgstr "" msgid "Could not update message with new URI." msgstr "" -#: classes/Notice.php:171 +#: classes/Notice.php:157 #, php-format msgid "DB error inserting hashtag: %s" msgstr "" -#: classes/Notice.php:225 +#: classes/Notice.php:222 #, fuzzy msgid "Problem saving notice. Too long." msgstr "Durum mesajını kaydederken hata oluştu." -#: classes/Notice.php:229 +#: classes/Notice.php:226 #, fuzzy msgid "Problem saving notice. Unknown user." msgstr "Durum mesajını kaydederken hata oluştu." -#: classes/Notice.php:234 +#: classes/Notice.php:231 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: classes/Notice.php:240 +#: classes/Notice.php:237 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." msgstr "" -#: classes/Notice.php:246 +#: classes/Notice.php:243 msgid "You are banned from posting notices on this site." msgstr "" -#: classes/Notice.php:305 classes/Notice.php:330 +#: classes/Notice.php:309 classes/Notice.php:335 msgid "Problem saving notice." msgstr "Durum mesajını kaydederken hata oluştu." -#: classes/Notice.php:1052 -#, php-format -msgid "DB error inserting reply: %s" -msgstr "Cevap eklenirken veritabanı hatası: %s" +#: classes/Notice.php:882 +#, fuzzy +msgid "Problem saving group inbox." +msgstr "Durum mesajını kaydederken hata oluştu." -#: classes/Notice.php:1423 +#: classes/Notice.php:1407 #, php-format msgid "RT @%1$s %2$s" msgstr "" -#: classes/User.php:382 +#: classes/Subscription.php:66 lib/oauthstore.php:465 +msgid "You have been banned from subscribing." +msgstr "" + +#: classes/Subscription.php:70 +msgid "Already subscribed!" +msgstr "" + +#: classes/Subscription.php:74 +#, fuzzy +msgid "User has blocked you." +msgstr "Kullanıcının profili yok." + +#: classes/Subscription.php:157 +#, fuzzy +msgid "Not subscribed!" +msgstr "Bu kullanıcıyı zaten takip etmiyorsunuz!" + +#: classes/Subscription.php:163 +#, fuzzy +msgid "Couldn't delete self-subscription." +msgstr "Abonelik silinemedi." + +#: classes/Subscription.php:179 lib/subs.php:69 +msgid "Couldn't delete subscription." +msgstr "Abonelik silinemedi." + +#: classes/User.php:372 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "" -#: classes/User_group.php:380 +#: classes/User_group.php:423 #, fuzzy msgid "Could not create group." msgstr "Avatar bilgisi kaydedilemedi" -#: classes/User_group.php:409 +#: classes/User_group.php:452 #, fuzzy msgid "Could not set group membership." msgstr "Abonelik oluşturulamadı." @@ -4114,136 +4542,131 @@ msgstr "%1$s'in %2$s'deki durum mesajları " msgid "Untitled page" msgstr "" -#: lib/action.php:427 +#: lib/action.php:433 msgid "Primary site navigation" msgstr "" -#: lib/action.php:433 +#: lib/action.php:439 msgid "Home" msgstr "Başlangıç" -#: lib/action.php:433 +#: lib/action.php:439 msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:435 -#, fuzzy -msgid "Account" -msgstr "Hakkında" - -#: lib/action.php:435 +#: lib/action.php:441 msgid "Change your email, avatar, password, profile" msgstr "" -#: lib/action.php:438 +#: lib/action.php:444 msgid "Connect" msgstr "Bağlan" -#: lib/action.php:438 +#: lib/action.php:444 #, fuzzy msgid "Connect to services" msgstr "Sunucuya yönlendirme yapılamadı: %s" -#: lib/action.php:442 +#: lib/action.php:448 #, fuzzy msgid "Change site configuration" msgstr "Abonelikler" -#: lib/action.php:446 lib/subgroupnav.php:105 +#: lib/action.php:452 lib/subgroupnav.php:105 msgid "Invite" msgstr "" -#: lib/action.php:447 lib/subgroupnav.php:106 +#: lib/action.php:453 lib/subgroupnav.php:106 #, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "" -#: lib/action.php:452 +#: lib/action.php:458 msgid "Logout" msgstr "Çıkış" -#: lib/action.php:452 +#: lib/action.php:458 msgid "Logout from the site" msgstr "" -#: lib/action.php:457 +#: lib/action.php:463 #, fuzzy msgid "Create an account" msgstr "Yeni hesap oluştur" -#: lib/action.php:460 +#: lib/action.php:466 msgid "Login to the site" msgstr "" -#: lib/action.php:463 lib/action.php:726 +#: lib/action.php:469 lib/action.php:732 msgid "Help" msgstr "Yardım" -#: lib/action.php:463 +#: lib/action.php:469 #, fuzzy msgid "Help me!" msgstr "Yardım" -#: lib/action.php:466 lib/searchaction.php:127 +#: lib/action.php:472 lib/searchaction.php:127 msgid "Search" msgstr "Ara" -#: lib/action.php:466 +#: lib/action.php:472 msgid "Search for people or text" msgstr "" -#: lib/action.php:487 +#: lib/action.php:493 #, fuzzy msgid "Site notice" msgstr "Yeni durum mesajı" -#: lib/action.php:553 +#: lib/action.php:559 msgid "Local views" msgstr "" -#: lib/action.php:619 +#: lib/action.php:625 #, fuzzy msgid "Page notice" msgstr "Yeni durum mesajı" -#: lib/action.php:721 +#: lib/action.php:727 #, fuzzy msgid "Secondary site navigation" msgstr "Abonelikler" -#: lib/action.php:728 +#: lib/action.php:734 msgid "About" msgstr "Hakkında" -#: lib/action.php:730 +#: lib/action.php:736 msgid "FAQ" msgstr "SSS" -#: lib/action.php:734 +#: lib/action.php:740 msgid "TOS" msgstr "" -#: lib/action.php:737 +#: lib/action.php:743 msgid "Privacy" msgstr "Gizlilik" -#: lib/action.php:739 +#: lib/action.php:745 msgid "Source" msgstr "Kaynak" -#: lib/action.php:743 +#: lib/action.php:749 msgid "Contact" msgstr "İletişim" -#: lib/action.php:745 +#: lib/action.php:751 msgid "Badge" msgstr "" -#: lib/action.php:773 +#: lib/action.php:779 msgid "StatusNet software license" msgstr "" -#: lib/action.php:776 +#: lib/action.php:782 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4252,12 +4675,12 @@ msgstr "" "**%%site.name%%** [%%site.broughtby%%](%%site.broughtbyurl%%)\" tarafından " "hazırlanan anında mesajlaşma ağıdır. " -#: lib/action.php:778 +#: lib/action.php:784 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** bir aninda mesajlaşma sosyal ağıdır." -#: lib/action.php:780 +#: lib/action.php:786 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4268,35 +4691,57 @@ msgstr "" "licenses/agpl-3.0.html) lisansı ile korunan [StatusNet](http://status.net/) " "microbloglama yazılımının %s. versiyonunu kullanmaktadır." -#: lib/action.php:794 +#: lib/action.php:801 #, fuzzy msgid "Site content license" msgstr "Yeni durum mesajı" -#: lib/action.php:803 +#: lib/action.php:806 +#, php-format +msgid "Content and data of %1$s are private and confidential." +msgstr "" + +#: lib/action.php:811 +#, php-format +msgid "Content and data copyright by %1$s. All rights reserved." +msgstr "" + +#: lib/action.php:814 +msgid "Content and data copyright by contributors. All rights reserved." +msgstr "" + +#: lib/action.php:827 msgid "All " msgstr "" -#: lib/action.php:808 +#: lib/action.php:833 msgid "license." msgstr "" -#: lib/action.php:1102 +#: lib/action.php:1132 msgid "Pagination" msgstr "" -#: lib/action.php:1111 +#: lib/action.php:1141 #, fuzzy msgid "After" msgstr "« Sonra" -#: lib/action.php:1119 +#: lib/action.php:1149 #, fuzzy msgid "Before" msgstr "Önce »" -#: lib/action.php:1167 -msgid "There was a problem with your session token." +#: lib/activity.php:382 +msgid "Can't handle remote content yet." +msgstr "" + +#: lib/activity.php:410 +msgid "Can't handle embedded XML content yet." +msgstr "" + +#: lib/activity.php:414 +msgid "Can't handle embedded Base64 content yet." msgstr "" #: lib/adminpanelaction.php:96 @@ -4329,11 +4774,107 @@ msgstr "Eposta adresi onayı" msgid "Design configuration" msgstr "Eposta adresi onayı" -#: lib/adminpanelaction.php:322 lib/adminpanelaction.php:327 +#: lib/adminpanelaction.php:322 +#, fuzzy +msgid "User configuration" +msgstr "Eposta adresi onayı" + +#: lib/adminpanelaction.php:327 +#, fuzzy +msgid "Access configuration" +msgstr "Eposta adresi onayı" + +#: lib/adminpanelaction.php:332 #, fuzzy msgid "Paths configuration" msgstr "Eposta adresi onayı" +#: lib/adminpanelaction.php:337 +#, fuzzy +msgid "Sessions configuration" +msgstr "Eposta adresi onayı" + +#: lib/apiauth.php:95 +msgid "API resource requires read-write access, but you only have read access." +msgstr "" + +#: lib/apiauth.php:273 +#, php-format +msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" +msgstr "" + +#: lib/applicationeditform.php:136 +msgid "Edit application" +msgstr "" + +#: lib/applicationeditform.php:184 +msgid "Icon for this application" +msgstr "" + +#: lib/applicationeditform.php:204 +#, fuzzy, php-format +msgid "Describe your application in %d characters" +msgstr "Kendinizi ve ilgi alanlarınızı 140 karakter ile anlatın" + +#: lib/applicationeditform.php:207 +#, fuzzy +msgid "Describe your application" +msgstr "Kendinizi ve ilgi alanlarınızı 140 karakter ile anlatın" + +#: lib/applicationeditform.php:216 +#, fuzzy +msgid "Source URL" +msgstr "Kaynak" + +#: lib/applicationeditform.php:218 +#, fuzzy +msgid "URL of the homepage of this application" +msgstr "" +"Web Sitenizin, blogunuzun ya da varsa başka bir sitedeki profilinizin adresi" + +#: lib/applicationeditform.php:224 +msgid "Organization responsible for this application" +msgstr "" + +#: lib/applicationeditform.php:230 +#, fuzzy +msgid "URL for the homepage of the organization" +msgstr "" +"Web Sitenizin, blogunuzun ya da varsa başka bir sitedeki profilinizin adresi" + +#: lib/applicationeditform.php:236 +msgid "URL to redirect to after authentication" +msgstr "" + +#: lib/applicationeditform.php:258 +msgid "Browser" +msgstr "" + +#: lib/applicationeditform.php:274 +msgid "Desktop" +msgstr "" + +#: lib/applicationeditform.php:275 +msgid "Type of application, browser or desktop" +msgstr "" + +#: lib/applicationeditform.php:297 +msgid "Read-only" +msgstr "" + +#: lib/applicationeditform.php:315 +msgid "Read-write" +msgstr "" + +#: lib/applicationeditform.php:316 +msgid "Default access for this application: read-only, or read-write" +msgstr "" + +#: lib/applicationlist.php:154 +#, fuzzy +msgid "Revoke" +msgstr "Kaldır" + #: lib/attachmentlist.php:87 msgid "Attachments" msgstr "" @@ -4355,12 +4896,12 @@ msgstr "" msgid "Tags for this attachment" msgstr "" -#: lib/authenticationplugin.php:182 lib/authenticationplugin.php:187 +#: lib/authenticationplugin.php:218 lib/authenticationplugin.php:223 #, fuzzy msgid "Password changing failed" msgstr "Parola kaydedildi." -#: lib/authenticationplugin.php:197 +#: lib/authenticationplugin.php:233 #, fuzzy msgid "Password changing is not allowed" msgstr "Parola kaydedildi." @@ -4515,80 +5056,90 @@ msgstr "Durum mesajını kaydederken hata oluştu." msgid "Specify the name of the user to subscribe to" msgstr "" -#: lib/command.php:554 +#: lib/command.php:554 lib/command.php:589 +#, fuzzy +msgid "No such user" +msgstr "Böyle bir kullanıcı yok." + +#: lib/command.php:561 #, php-format msgid "Subscribed to %s" msgstr "" -#: lib/command.php:575 +#: lib/command.php:582 lib/command.php:685 msgid "Specify the name of the user to unsubscribe from" msgstr "" -#: lib/command.php:582 +#: lib/command.php:595 #, php-format msgid "Unsubscribed from %s" msgstr "" -#: lib/command.php:600 lib/command.php:623 +#: lib/command.php:613 lib/command.php:636 msgid "Command not yet implemented." msgstr "" -#: lib/command.php:603 +#: lib/command.php:616 msgid "Notification off." msgstr "" -#: lib/command.php:605 +#: lib/command.php:618 msgid "Can't turn off notification." msgstr "" -#: lib/command.php:626 +#: lib/command.php:639 msgid "Notification on." msgstr "" -#: lib/command.php:628 +#: lib/command.php:641 msgid "Can't turn on notification." msgstr "" -#: lib/command.php:641 +#: lib/command.php:654 msgid "Login command is disabled" msgstr "" -#: lib/command.php:652 +#: lib/command.php:665 #, php-format msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "" -#: lib/command.php:668 +#: lib/command.php:692 +#, fuzzy, php-format +msgid "Unsubscribed %s" +msgstr "Aboneliği sonlandır" + +#: lib/command.php:709 #, fuzzy msgid "You are not subscribed to anyone." msgstr "Bize o profili yollamadınız" -#: lib/command.php:670 +#: lib/command.php:711 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "Bize o profili yollamadınız" -#: lib/command.php:690 +#: lib/command.php:731 #, fuzzy msgid "No one is subscribed to you." msgstr "Uzaktan abonelik" -#: lib/command.php:692 +#: lib/command.php:733 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "Uzaktan abonelik" -#: lib/command.php:712 +#: lib/command.php:753 #, fuzzy msgid "You are not a member of any groups." msgstr "Bize o profili yollamadınız" -#: lib/command.php:714 +#: lib/command.php:755 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "Bize o profili yollamadınız" -#: lib/command.php:728 +#: lib/command.php:769 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -4602,6 +5153,7 @@ msgid "" "d - direct message to user\n" "get - get last notice from user\n" "whois - get profile info on user\n" +"lose - force user to stop following you\n" "fav - add user's last notice as a 'fave'\n" "fav # - add notice with the given id as a 'fave'\n" "repeat # - repeat a notice with a given id\n" @@ -4629,20 +5181,20 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:131 +#: lib/common.php:136 #, fuzzy msgid "No configuration file found. " msgstr "Onay kodu yok." -#: lib/common.php:132 +#: lib/common.php:137 msgid "I looked for configuration files in the following places: " msgstr "" -#: lib/common.php:134 +#: lib/common.php:139 msgid "You may wish to run the installer to fix this." msgstr "" -#: lib/common.php:135 +#: lib/common.php:140 msgid "Go to the installer." msgstr "" @@ -4658,6 +5210,15 @@ msgstr "" msgid "Updates by SMS" msgstr "" +#: lib/connectsettingsaction.php:120 +#, fuzzy +msgid "Connections" +msgstr "Bağlan" + +#: lib/connectsettingsaction.php:121 +msgid "Authorized connected applications" +msgstr "" + #: lib/dberroraction.php:60 msgid "Database error" msgstr "" @@ -4852,12 +5413,12 @@ msgstr "" msgid "kB" msgstr "" -#: lib/jabber.php:202 +#: lib/jabber.php:220 #, php-format msgid "[%s]" msgstr "" -#: lib/jabber.php:385 +#: lib/jabber.php:400 #, php-format msgid "Unknown inbox source %d." msgstr "" @@ -5062,7 +5623,7 @@ msgid "" "users in conversation. People can send you messages for your eyes only." msgstr "" -#: lib/mailbox.php:227 lib/noticelist.php:477 +#: lib/mailbox.php:227 lib/noticelist.php:482 msgid "from" msgstr "" @@ -5182,60 +5743,56 @@ msgid "Do not share my location" msgstr "Profil kaydedilemedi." #: lib/noticeform.php:216 -msgid "Hide this info" -msgstr "" - -#: lib/noticeform.php:217 msgid "" "Sorry, retrieving your geo location is taking longer than expected, please " "try again later" msgstr "" -#: lib/noticelist.php:428 +#: lib/noticelist.php:429 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "" -#: lib/noticelist.php:429 +#: lib/noticelist.php:430 msgid "N" msgstr "" -#: lib/noticelist.php:429 +#: lib/noticelist.php:430 msgid "S" msgstr "" -#: lib/noticelist.php:430 +#: lib/noticelist.php:431 msgid "E" msgstr "" -#: lib/noticelist.php:430 +#: lib/noticelist.php:431 msgid "W" msgstr "" -#: lib/noticelist.php:436 +#: lib/noticelist.php:438 msgid "at" msgstr "" -#: lib/noticelist.php:531 +#: lib/noticelist.php:558 #, fuzzy msgid "in context" msgstr "İçerik yok!" -#: lib/noticelist.php:556 +#: lib/noticelist.php:583 #, fuzzy msgid "Repeated by" msgstr "Yarat" -#: lib/noticelist.php:585 +#: lib/noticelist.php:610 msgid "Reply to this notice" msgstr "" -#: lib/noticelist.php:586 +#: lib/noticelist.php:611 #, fuzzy msgid "Reply" msgstr "cevapla" -#: lib/noticelist.php:628 +#: lib/noticelist.php:655 #, fuzzy msgid "Notice repeated" msgstr "Durum mesajları" @@ -5269,11 +5826,7 @@ msgstr "Uzak profil eklemede hata oluştu" msgid "Duplicate notice" msgstr "Yeni durum mesajı" -#: lib/oauthstore.php:466 lib/subs.php:48 -msgid "You have been banned from subscribing." -msgstr "" - -#: lib/oauthstore.php:491 +#: lib/oauthstore.php:490 msgid "Couldn't insert new subscription." msgstr "Yeni abonelik eklenemedi." @@ -5289,19 +5842,19 @@ msgstr "Cevaplar" msgid "Favorites" msgstr "" -#: lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "" -#: lib/personalgroupnav.php:125 +#: lib/personalgroupnav.php:126 msgid "Your incoming messages" msgstr "" -#: lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 msgid "Outbox" msgstr "" -#: lib/personalgroupnav.php:130 +#: lib/personalgroupnav.php:131 msgid "Your sent messages" msgstr "" @@ -5383,6 +5936,10 @@ msgstr "Böyle bir durum mesajı yok." msgid "Repeat this notice" msgstr "Böyle bir durum mesajı yok." +#: lib/router.php:665 +msgid "No single user defined for single-user mode." +msgstr "" + #: lib/sandboxform.php:67 msgid "Sandbox" msgstr "" @@ -5455,37 +6012,6 @@ msgstr "Uzaktan abonelik" msgid "Groups %s is a member of" msgstr "" -#: lib/subs.php:52 -msgid "Already subscribed!" -msgstr "" - -#: lib/subs.php:56 -#, fuzzy -msgid "User has blocked you." -msgstr "Kullanıcının profili yok." - -#: lib/subs.php:63 -msgid "Could not subscribe." -msgstr "" - -#: lib/subs.php:82 -msgid "Could not subscribe other to you." -msgstr "" - -#: lib/subs.php:137 -#, fuzzy -msgid "Not subscribed!" -msgstr "Bu kullanıcıyı zaten takip etmiyorsunuz!" - -#: lib/subs.php:142 -#, fuzzy -msgid "Couldn't delete self-subscription." -msgstr "Abonelik silinemedi." - -#: lib/subs.php:158 -msgid "Couldn't delete subscription." -msgstr "Abonelik silinemedi." - #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -5539,68 +6065,68 @@ msgstr "Avatar" msgid "User actions" msgstr "" -#: lib/userprofile.php:248 +#: lib/userprofile.php:251 #, fuzzy msgid "Edit profile settings" msgstr "Profil ayarları" -#: lib/userprofile.php:249 +#: lib/userprofile.php:252 msgid "Edit" msgstr "" -#: lib/userprofile.php:272 +#: lib/userprofile.php:275 msgid "Send a direct message to this user" msgstr "" -#: lib/userprofile.php:273 +#: lib/userprofile.php:276 msgid "Message" msgstr "" -#: lib/userprofile.php:311 +#: lib/userprofile.php:314 msgid "Moderate" msgstr "" -#: lib/util.php:877 +#: lib/util.php:952 msgid "a few seconds ago" msgstr "birkaç saniye önce" -#: lib/util.php:879 +#: lib/util.php:954 msgid "about a minute ago" msgstr "yaklaşık bir dakika önce" -#: lib/util.php:881 +#: lib/util.php:956 #, php-format msgid "about %d minutes ago" msgstr "yaklaşık %d dakika önce" -#: lib/util.php:883 +#: lib/util.php:958 msgid "about an hour ago" msgstr "yaklaşık bir saat önce" -#: lib/util.php:885 +#: lib/util.php:960 #, php-format msgid "about %d hours ago" msgstr "yaklaşık %d saat önce" -#: lib/util.php:887 +#: lib/util.php:962 msgid "about a day ago" msgstr "yaklaşık bir gün önce" -#: lib/util.php:889 +#: lib/util.php:964 #, php-format msgid "about %d days ago" msgstr "yaklaşık %d gün önce" -#: lib/util.php:891 +#: lib/util.php:966 msgid "about a month ago" msgstr "yaklaşık bir ay önce" -#: lib/util.php:893 +#: lib/util.php:968 #, php-format msgid "about %d months ago" msgstr "yaklaşık %d ay önce" -#: lib/util.php:895 +#: lib/util.php:970 msgid "about a year ago" msgstr "yaklaşık bir yıl önce" @@ -5614,7 +6140,7 @@ msgstr "Başlangıç sayfası adresi geçerli bir URL değil." msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "" -#: scripts/xmppdaemon.php:301 +#: lib/xmppmanager.php:402 #, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "" diff --git a/locale/uk/LC_MESSAGES/statusnet.po b/locale/uk/LC_MESSAGES/statusnet.po index 49e8ae3093..c261c310da 100644 --- a/locale/uk/LC_MESSAGES/statusnet.po +++ b/locale/uk/LC_MESSAGES/statusnet.po @@ -10,18 +10,72 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-01-13 22:04+0000\n" -"PO-Revision-Date: 2010-01-13 22:06:18+0000\n" +"POT-Creation-Date: 2010-02-24 23:49+0000\n" +"PO-Revision-Date: 2010-02-24 23:51:53+0000\n" "Language-Team: Ukrainian\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha (r61027); Translate extension (2010-01-04)\n" +"X-Generator: MediaWiki 1.17alpha (r62925); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" "10< =4 && (n%100<10 or n%100>=20) ? 1 : 2);\n" +#: actions/accessadminpanel.php:54 lib/adminpanelaction.php:326 +msgid "Access" +msgstr "Погодитись" + +#: actions/accessadminpanel.php:65 +msgid "Site access settings" +msgstr "Параметри доступу на сайт" + +#: actions/accessadminpanel.php:158 +msgid "Registration" +msgstr "Реєстрація" + +#: actions/accessadminpanel.php:161 +msgid "Private" +msgstr "Приватно" + +#: actions/accessadminpanel.php:163 +msgid "Prohibit anonymous users (not logged in) from viewing site?" +msgstr "" +"Заборонити анонімним відвідувачам (ті, що не увійшли до системи) переглядати " +"сайт?" + +#: actions/accessadminpanel.php:167 +msgid "Invite only" +msgstr "Лише за запрошеннями" + +#: actions/accessadminpanel.php:169 +msgid "Make registration invitation only." +msgstr "Зробити регістрацію лише за запрошеннями." + +#: actions/accessadminpanel.php:173 +msgid "Closed" +msgstr "Закрито" + +#: actions/accessadminpanel.php:175 +msgid "Disable new registrations." +msgstr "Скасувати подальшу регістрацію." + +#: actions/accessadminpanel.php:189 actions/designadminpanel.php:586 +#: actions/emailsettings.php:195 actions/imsettings.php:163 +#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 +#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 +#: actions/siteadminpanel.php:336 actions/smssettings.php:181 +#: actions/subscriptions.php:208 actions/tagother.php:154 +#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 lib/designsettings.php:256 +#: lib/groupeditform.php:202 +msgid "Save" +msgstr "Зберегти" + +#: actions/accessadminpanel.php:189 +msgid "Save access settings" +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" @@ -36,25 +90,29 @@ msgstr "Немає такої сторінки" #: 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:144 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apistatusesupdate.php:148 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:78 #: actions/apitimelinehome.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/otp.php:76 #: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154 -#: actions/replies.php:73 actions/repliesrss.php:38 +#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 #: 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:302 lib/command.php:355 #: lib/command.php:401 lib/command.php:462 lib/command.php:518 #: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 -#: lib/subs.php:34 lib/subs.php:125 msgid "No such user." msgstr "Такого користувача немає." +#: actions/all.php:84 +#, php-format +msgid "%1$s and friends, page %2$d" +msgstr "%1$s та друзі, сторінка %2$d" + #: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 -#: actions/apitimelinefriends.php:115 actions/apitimelinehome.php:115 +#: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" @@ -99,7 +157,7 @@ msgstr "" "Ви можете [«розштовхати» %1$s](../%2$s) зі сторінки його профілю або [щось " "йому написати](%%%%action.newnotice%%%%?status_textarea=%3$s)." -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211 #, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " @@ -112,8 +170,8 @@ msgstr "" msgid "You and friends" msgstr "Ви з друзями" -#: actions/allrss.php:119 actions/apitimelinefriends.php:122 -#: actions/apitimelinehome.php:122 +#: actions/allrss.php:119 actions/apitimelinefriends.php:119 +#: actions/apitimelinehome.php:120 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Оновлення від %1$s та друзів на %2$s!" @@ -123,23 +181,23 @@ msgstr "Оновлення від %1$s та друзів на %2$s!" #: actions/apiaccountupdateprofile.php:97 #: actions/apiaccountupdateprofilebackgroundimage.php:94 #: actions/apiaccountupdateprofilecolors.php:118 -#: 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:136 actions/apigroupismember.php:114 -#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 -#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 -#: actions/apigroupmembership.php:106 actions/apigroupshow.php:105 -#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 -#: actions/apistatusesretweets.php:112 actions/apistatusesshow.php:108 -#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93 -#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:146 -#: actions/apitimelinefriends.php:156 actions/apitimelinegroup.php:150 -#: actions/apitimelinehome.php:156 actions/apitimelinementions.php:151 -#: actions/apitimelinepublic.php:131 actions/apitimelineretweetedbyme.php:122 +#: actions/apiaccountverifycredentials.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:128 actions/apigroupcreate.php:136 +#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 +#: actions/apigroupleave.php:141 actions/apigrouplist.php:132 +#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 +#: actions/apigroupshow.php:115 actions/apihelptest.php:88 +#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 +#: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 #: actions/apitimelineretweetedtome.php:121 -#: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141 -#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 +#: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 +#: actions/apitimelineuser.php:207 actions/apiusershow.php:101 msgid "API method not found." msgstr "API метод не знайдено." @@ -153,7 +211,7 @@ msgstr "API метод не знайдено." #: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 #: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 #: actions/apigroupleave.php:91 actions/apistatusesretweet.php:65 -#: actions/apistatusesupdate.php:114 +#: actions/apistatusesupdate.php:118 msgid "This method requires a POST." msgstr "Цей метод потребує POST." @@ -183,8 +241,9 @@ msgstr "Не вдалося зберегти профіль." #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:97 -#: actions/apistatusesupdate.php:127 actions/avatarsettings.php:257 -#: actions/designadminpanel.php:122 actions/newnotice.php:94 +#: actions/apistatusesupdate.php:131 actions/avatarsettings.php:257 +#: actions/designadminpanel.php:122 actions/editapplication.php:118 +#: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 #, php-format msgid "" @@ -301,11 +360,11 @@ msgstr "Ви не можете відписатись від самого себ msgid "Two user ids or screen_names must be supplied." msgstr "Два ID або імені_у_мережі повинні підтримуватись." -#: actions/apifriendshipsshow.php:135 +#: actions/apifriendshipsshow.php:134 msgid "Could not determine source user." msgstr "Не вдалось встановити джерело користувача." -#: actions/apifriendshipsshow.php:143 +#: actions/apifriendshipsshow.php:142 msgid "Could not find target user." msgstr "Не вдалося знайти цільового користувача." @@ -329,7 +388,8 @@ msgstr "Це ім’я вже використовується. Спробуйт msgid "Not a valid nickname." msgstr "Це недійсне ім’я користувача." -#: actions/apigroupcreate.php:196 actions/editgroup.php:195 +#: actions/apigroupcreate.php:196 actions/editapplication.php:215 +#: actions/editgroup.php:195 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:217 msgid "Homepage is not a valid URL." @@ -341,7 +401,8 @@ msgstr "Веб-сторінка має недійсну URL-адресу." msgid "Full name is too long (max 255 chars)." msgstr "Повне ім’я задовге (255 знаків максимум)" -#: actions/apigroupcreate.php:213 +#: actions/apigroupcreate.php:213 actions/editapplication.php:190 +#: actions/newapplication.php:172 #, php-format msgid "Description is too long (max %d chars)." msgstr "Опис надто довгий (%d знаків максимум)." @@ -377,7 +438,7 @@ msgstr "Додаткове ім’я не може бути таким сами #: actions/apigroupismember.php:95 actions/apigroupjoin.php:104 #: actions/apigroupleave.php:104 actions/apigroupmembership.php:91 -#: actions/apigroupshow.php:90 actions/apitimelinegroup.php:91 +#: actions/apigroupshow.php:82 actions/apitimelinegroup.php:91 msgid "Group not found!" msgstr "Групу не знайдено!" @@ -418,6 +479,117 @@ msgstr "%s групи" msgid "groups on %s" msgstr "групи на %s" +#: actions/apioauthauthorize.php:101 +msgid "No oauth_token parameter provided." +msgstr "Жодного параметру oauth_token не забезпечено." + +#: actions/apioauthauthorize.php:106 +msgid "Invalid token." +msgstr "Невірний токен." + +#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 +#: actions/deletenotice.php:157 actions/disfavor.php:74 +#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54 +#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupunblock.php:66 actions/imsettings.php:206 +#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 +#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 +#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135 +#: actions/othersettings.php:145 actions/passwordsettings.php:138 +#: actions/profilesettings.php:194 actions/recoverpassword.php:337 +#: actions/register.php:165 actions/remotesubscribe.php:77 +#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 +#: actions/subscribe.php:86 actions/tagother.php:166 +#: 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/apioauthauthorize.php:135 +msgid "Invalid nickname / password!" +msgstr "Недійсне ім’я / пароль!" + +#: actions/apioauthauthorize.php:159 +msgid "Database error deleting OAuth application user." +msgstr "Помилка бази даних при видаленні користувача OAuth-додатку." + +#: actions/apioauthauthorize.php:185 +msgid "Database error inserting OAuth application user." +msgstr "Помилка бази даних при додаванні користувача OAuth-додатку." + +#: actions/apioauthauthorize.php:214 +#, php-format +msgid "" +"The request token %s has been authorized. Please exchange it for an access " +"token." +msgstr "" +"Токен запиту %s було авторизовано. Будь ласка, обміняйте його на токен " +"доступу." + +#: actions/apioauthauthorize.php:227 +#, php-format +msgid "The request token %s has been denied and revoked." +msgstr "Токен запиту %s було скасовано і відхилено." + +#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 +#: actions/designadminpanel.php:103 actions/editapplication.php:139 +#: actions/emailsettings.php:256 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/newapplication.php:121 +#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 +#: actions/smssettings.php:248 lib/designsettings.php:304 +msgid "Unexpected form submission." +msgstr "Несподіване представлення форми." + +#: actions/apioauthauthorize.php:259 +msgid "An application would like to connect to your account" +msgstr "Запит на дозвіл під’єднатися до Вашого облікового запису" + +#: actions/apioauthauthorize.php:276 +msgid "Allow or deny access" +msgstr "Дозволити або заборонити доступ" + +#: actions/apioauthauthorize.php:292 +#, php-format +msgid "" +"The application %1$s by %2$s would like " +"the ability to %3$s your %4$s account data. You should only " +"give access to your %4$s account to third parties you trust." +msgstr "" +"Додаток %1$s від %2$s запитує дозвіл на " +"%3$s дані Вашого акаунту %4$s. Ви повинні надавати дозвіл " +"на доступ до Вашого акаунту %4$s лише тим стороннім додаткам, яким Ви " +"довіряєте." + +#: actions/apioauthauthorize.php:310 lib/action.php:441 +msgid "Account" +msgstr "Акаунт" + +#: actions/apioauthauthorize.php:313 actions/login.php:230 +#: actions/profilesettings.php:106 actions/register.php:424 +#: actions/showgroup.php:236 actions/tagother.php:94 +#: actions/userauthorization.php:145 lib/groupeditform.php:152 +#: lib/userprofile.php:131 +msgid "Nickname" +msgstr "Ім’я користувача" + +#: actions/apioauthauthorize.php:316 actions/login.php:233 +#: actions/register.php:429 lib/accountsettingsaction.php:116 +msgid "Password" +msgstr "Пароль" + +#: actions/apioauthauthorize.php:328 +msgid "Deny" +msgstr "Відхилити" + +#: actions/apioauthauthorize.php:334 +msgid "Allow" +msgstr "Дозволити" + +#: actions/apioauthauthorize.php:351 +msgid "Allow or deny access to your account information." +msgstr "Дозволити або заборонити доступ до Вашого облікового запису." + #: actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." msgstr "Цей метод потребує або НАПИСАТИ, або ВИДАЛИТИ." @@ -447,17 +619,17 @@ msgstr "Статус видалено." msgid "No status with that ID found." msgstr "Не знайдено жодних статусів з таким ID." -#: actions/apistatusesupdate.php:157 actions/newnotice.php:155 +#: actions/apistatusesupdate.php:161 actions/newnotice.php:155 #: lib/mailhandler.php:60 #, php-format msgid "That's too long. Max notice size is %d chars." msgstr "Надто довго. Максимальний розмір допису — %d знаків." -#: actions/apistatusesupdate.php:198 +#: actions/apistatusesupdate.php:202 msgid "Not found" msgstr "Не знайдено" -#: actions/apistatusesupdate.php:221 actions/newnotice.php:178 +#: actions/apistatusesupdate.php:225 actions/newnotice.php:178 #, php-format msgid "Max notice size is %d chars, including attachment URL." msgstr "" @@ -473,7 +645,7 @@ msgstr "Формат не підтримується." msgid "%1$s / Favorites from %2$s" msgstr "%1$s / Обрані від %2$s" -#: actions/apitimelinefavorites.php:120 +#: actions/apitimelinefavorites.php:117 #, php-format msgid "%1$s updates favorited by %2$s / %2$s." msgstr "%1$s оновлення обраних від %2$s / %2$s." @@ -484,7 +656,7 @@ msgstr "%1$s оновлення обраних від %2$s / %2$s." msgid "%s timeline" msgstr "%s стрічка" -#: actions/apitimelinegroup.php:117 actions/apitimelineuser.php:126 +#: actions/apitimelinegroup.php:114 actions/apitimelineuser.php:126 #: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" @@ -500,27 +672,22 @@ msgstr "%1$s / Оновленні відповіді %2$s" msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "%1$s оновив цю відповідь на допис від %2$s / %3$s." -#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "%s загальна стрічка" -#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "%s оновлення від усіх!" -#: actions/apitimelineretweetedbyme.php:112 -#, php-format -msgid "Repeated by %s" -msgstr "Вторування %s" - #: actions/apitimelineretweetedtome.php:111 #, php-format msgid "Repeated to %s" msgstr "Вторування за %s" -#: actions/apitimelineretweetsofme.php:112 +#: actions/apitimelineretweetsofme.php:114 #, php-format msgid "Repeats of %s" msgstr "Вторування %s" @@ -530,7 +697,7 @@ msgstr "Вторування %s" msgid "Notices tagged with %s" msgstr "Дописи позначені з %s" -#: actions/apitimelinetag.php:108 actions/tagrss.php:64 +#: actions/apitimelinetag.php:104 actions/tagrss.php:64 #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Оновлення позначені з %1$s на %2$s!" @@ -590,8 +757,8 @@ msgstr "Оригінал" msgid "Preview" msgstr "Перегляд" -#: actions/avatarsettings.php:149 lib/deleteuserform.php:66 -#: lib/noticelist.php:611 +#: actions/avatarsettings.php:149 actions/showapplication.php:252 +#: lib/deleteuserform.php:66 lib/noticelist.php:637 msgid "Delete" msgstr "Видалити" @@ -603,30 +770,6 @@ msgstr "Завантажити" msgid "Crop" msgstr "Втяти" -#: actions/avatarsettings.php:268 actions/deletenotice.php:157 -#: actions/disfavor.php:74 actions/emailsettings.php:238 actions/favor.php:75 -#: actions/geocode.php:50 actions/groupblock.php:66 actions/grouplogo.php:309 -#: actions/groupunblock.php:66 actions/imsettings.php:206 -#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 -#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 -#: actions/othersettings.php:145 actions/passwordsettings.php:138 -#: actions/profilesettings.php:194 actions/recoverpassword.php:337 -#: actions/register.php:165 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 -#: actions/subscribe.php:46 actions/tagother.php:166 -#: 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/avatarsettings.php:281 actions/designadminpanel.php:103 -#: actions/emailsettings.php:256 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/avatarsettings.php:328 msgid "Pick a square area of the image to be your avatar" msgstr "Оберіть квадратну ділянку зображення, яка й буде Вашою автарою." @@ -665,8 +808,9 @@ msgstr "" "відписано від Вас, він не зможе підписитасть до Вас у майбутньому і Ви " "більше не отримуватимете жодних дописів від нього." -#: actions/block.php:143 actions/deletenotice.php:145 -#: actions/deleteuser.php:147 actions/groupblock.php:178 +#: actions/block.php:143 actions/deleteapplication.php:153 +#: actions/deletenotice.php:145 actions/deleteuser.php:147 +#: actions/groupblock.php:178 msgid "No" msgstr "Ні" @@ -674,13 +818,13 @@ msgstr "Ні" msgid "Do not block this user" msgstr "Не блокувати цього користувача" -#: actions/block.php:144 actions/deletenotice.php:146 -#: actions/deleteuser.php:148 actions/groupblock.php:179 -#: lib/repeatform.php:132 +#: actions/block.php:144 actions/deleteapplication.php:158 +#: actions/deletenotice.php:146 actions/deleteuser.php:148 +#: actions/groupblock.php:179 lib/repeatform.php:132 msgid "Yes" msgstr "Так" -#: actions/block.php:144 actions/groupmembers.php:346 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80 msgid "Block this user" msgstr "Блокувати користувача" @@ -763,7 +907,7 @@ msgid "Couldn't delete email confirmation." msgstr "Не вдалося видалити підтвердження поштової адреси." #: actions/confirmaddress.php:144 -msgid "Confirm Address" +msgid "Confirm address" msgstr "Підтвердити адресу" #: actions/confirmaddress.php:159 @@ -780,10 +924,51 @@ msgstr "Розмова" msgid "Notices" msgstr "Дописи" +#: actions/deleteapplication.php:63 +msgid "You must be logged in to delete an application." +msgstr "Ви маєте спочатку увійти, аби мати змогу видалити додаток." + +#: actions/deleteapplication.php:71 +msgid "Application not found." +msgstr "Додаток не виявлено." + +#: actions/deleteapplication.php:78 actions/editapplication.php:77 +#: actions/showapplication.php:94 +msgid "You are not the owner of this application." +msgstr "Ви не є власником цього додатку." + +#: actions/deleteapplication.php:102 actions/editapplication.php:127 +#: actions/newapplication.php:110 actions/showapplication.php:118 +#: lib/action.php:1197 +msgid "There was a problem with your session token." +msgstr "Виникли певні проблеми з токеном поточної сесії." + +#: actions/deleteapplication.php:123 actions/deleteapplication.php:147 +msgid "Delete application" +msgstr "Видалити додаток" + +#: actions/deleteapplication.php:149 +msgid "" +"Are you sure you want to delete this application? This will clear all data " +"about the application from the database, including all existing user " +"connections." +msgstr "" +"Впевнені, що бажаєте видалити цей додаток? У базі даних буде знищено всю " +"інформацію стосовно нього, включно із даними про під’єднаних до цього " +"додатку користувачів." + +#: actions/deleteapplication.php:156 +msgid "Do not delete this application" +msgstr "Не видаляти додаток" + +#: actions/deleteapplication.php:160 +msgid "Delete this application" +msgstr "Видалити додаток" + #: 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/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 #: lib/adminpanelaction.php:72 lib/profileformaction.php:63 #: lib/settingsaction.php:72 @@ -812,7 +997,7 @@ msgstr "Ви впевненні, що бажаєте видалити цей д msgid "Do not delete this notice" msgstr "Не видаляти цей допис" -#: actions/deletenotice.php:146 lib/noticelist.php:611 +#: actions/deletenotice.php:146 lib/noticelist.php:637 msgid "Delete this notice" msgstr "Видалити допис" @@ -944,16 +1129,6 @@ msgstr "Оновити налаштування за замовчуванням" msgid "Reset back to default" msgstr "Повернутись до початкових налаштувань" -#: actions/designadminpanel.php:586 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 -#: actions/pathsadminpanel.php:324 actions/profilesettings.php:174 -#: actions/siteadminpanel.php:388 actions/smssettings.php:181 -#: actions/subscriptions.php:203 actions/tagother.php:154 -#: actions/useradminpanel.php:313 lib/designsettings.php:256 -#: lib/groupeditform.php:202 -msgid "Save" -msgstr "Зберегти" - #: actions/designadminpanel.php:587 lib/designsettings.php:257 msgid "Save design" msgstr "Зберегти дизайн" @@ -966,9 +1141,75 @@ msgstr "Цей допис не є обраним!" msgid "Add to favorites" msgstr "Додати до обраних" -#: actions/doc.php:69 -msgid "No such document." -msgstr "Такого документа немає." +#: actions/doc.php:158 +#, php-format +msgid "No such document \"%s\"" +msgstr "Немає такого документа «%s»" + +#: actions/editapplication.php:54 +msgid "Edit Application" +msgstr "Керувати додатками" + +#: actions/editapplication.php:66 +msgid "You must be logged in to edit an application." +msgstr "Ви маєте спочатку увійти, аби мати змогу керувати додатком." + +#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:166 +#: actions/showapplication.php:87 +msgid "No such application." +msgstr "Такого додатку немає." + +#: actions/editapplication.php:161 +msgid "Use this form to edit your application." +msgstr "Скористайтесь цією формою, щоб відредагувати додаток." + +#: actions/editapplication.php:177 actions/newapplication.php:159 +msgid "Name is required." +msgstr "Потрібне ім’я." + +#: actions/editapplication.php:180 actions/newapplication.php:165 +msgid "Name is too long (max 255 chars)." +msgstr "Ім’я задовге (255 знаків максимум)." + +#: actions/editapplication.php:183 actions/newapplication.php:162 +msgid "Name already in use. Try another one." +msgstr "Це ім’я вже використовується. Спробуйте інше." + +#: actions/editapplication.php:186 actions/newapplication.php:168 +msgid "Description is required." +msgstr "Потрібен опис." + +#: actions/editapplication.php:194 +msgid "Source URL is too long." +msgstr "URL-адреса надто довга." + +#: actions/editapplication.php:200 actions/newapplication.php:185 +msgid "Source URL is not valid." +msgstr "URL-адреса не є дійсною." + +#: actions/editapplication.php:203 actions/newapplication.php:188 +msgid "Organization is required." +msgstr "Потрібна організація." + +#: actions/editapplication.php:206 actions/newapplication.php:191 +msgid "Organization is too long (max 255 chars)." +msgstr "Назва організації надто довга (255 знаків максимум)." + +#: actions/editapplication.php:209 actions/newapplication.php:194 +msgid "Organization homepage is required." +msgstr "Потрібна домашня сторінка організації." + +#: actions/editapplication.php:218 actions/newapplication.php:206 +msgid "Callback is too long." +msgstr "Форма зворотнього дзвінка надто довга." + +#: actions/editapplication.php:225 actions/newapplication.php:215 +msgid "Callback URL is not valid." +msgstr "URL-адреса для зворотнього дзвінка не є дійсною." + +#: actions/editapplication.php:258 +msgid "Could not update application." +msgstr "Не вдалося оновити додаток." #: actions/editgroup.php:56 #, php-format @@ -997,7 +1238,7 @@ msgstr "опис надто довгий (%d знаків максимум)." msgid "Could not update group." msgstr "Не вдалося оновити групу." -#: actions/editgroup.php:259 classes/User_group.php:390 +#: actions/editgroup.php:259 classes/User_group.php:433 msgid "Could not create aliases." msgstr "Неможна призначити додаткові імена." @@ -1038,7 +1279,8 @@ msgstr "" "спамом також!), там має бути повідомлення з подальшими інструкціями." #: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 +#: actions/smssettings.php:126 lib/applicationeditform.php:331 +#: lib/applicationeditform.php:332 msgid "Cancel" msgstr "Скасувати" @@ -1118,7 +1360,7 @@ msgid "Cannot normalize that email address" msgstr "Не можна полагодити цю поштову адресу" #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:157 +#: actions/siteadminpanel.php:143 msgid "Not a valid email address." msgstr "Це недійсна електронна адреса." @@ -1130,7 +1372,7 @@ msgstr "Це і є Вашою адресою." msgid "That email address already belongs to another user." msgstr "Ця електронна адреса належить іншому користувачу." -#: actions/emailsettings.php:353 actions/imsettings.php:317 +#: actions/emailsettings.php:353 actions/imsettings.php:319 #: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." msgstr "Не вдалося додати код підтвердження." @@ -1192,7 +1434,7 @@ msgstr "Цей допис вже є обраним!" msgid "Disfavor favorite" msgstr "Видалити з обраних" -#: actions/favorited.php:65 lib/popularnoticesection.php:88 +#: actions/favorited.php:65 lib/popularnoticesection.php:91 #: lib/publicgroupnav.php:93 msgid "Popular notices" msgstr "Популярні дописи" @@ -1338,7 +1580,7 @@ msgstr "Користувача заблоковано в цій групі." msgid "User is not a member of group." msgstr "Користувач не є учасником групи." -#: actions/groupblock.php:136 actions/groupmembers.php:314 +#: actions/groupblock.php:136 actions/groupmembers.php:316 msgid "Block user from group" msgstr "Блокувати користувача в групі" @@ -1436,23 +1678,23 @@ msgstr "Учасники групи %1$s, сторінка %2$d" msgid "A list of the users in this group." msgstr "Список учасників цієї групи." -#: actions/groupmembers.php:175 lib/action.php:442 lib/groupnav.php:107 +#: actions/groupmembers.php:175 lib/action.php:448 lib/groupnav.php:107 msgid "Admin" msgstr "Адмін" -#: actions/groupmembers.php:346 lib/blockform.php:69 +#: actions/groupmembers.php:348 lib/blockform.php:69 msgid "Block" msgstr "Блок" -#: actions/groupmembers.php:441 +#: actions/groupmembers.php:443 msgid "Make user an admin of the group" msgstr "Надати користувачеві права адміністратора" -#: actions/groupmembers.php:473 +#: actions/groupmembers.php:475 msgid "Make Admin" msgstr "Зробити адміном" -#: actions/groupmembers.php:473 +#: actions/groupmembers.php:475 msgid "Make this user an admin" msgstr "Надати цьому користувачеві права адміністратора" @@ -1635,6 +1877,11 @@ msgstr "" msgid "That is not your Jabber ID." msgstr "Це не Ваш Jabber ID." +#: actions/inbox.php:59 +#, php-format +msgid "Inbox for %1$s - page %2$d" +msgstr "Вхідні для %1$s — сторінка %2$d" + #: actions/inbox.php:62 #, php-format msgid "Inbox for %s" @@ -1717,7 +1964,7 @@ msgstr "Особисті повідомлення" msgid "Optionally add a personal message to the invitation." msgstr "Можна додати персональне повідомлення до запрошення (опціонально)." -#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:237 +#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:236 msgid "Send" msgstr "Так!" @@ -1818,7 +2065,7 @@ msgstr "Неточне ім’я або пароль." msgid "Error setting user. You are probably not authorized." msgstr "Помилка. Можливо, Ви не авторизовані." -#: actions/login.php:188 actions/login.php:241 lib/action.php:460 +#: actions/login.php:188 actions/login.php:241 lib/action.php:466 #: lib/logingroupnav.php:79 msgid "Login" msgstr "Увійти" @@ -1827,17 +2074,6 @@ msgstr "Увійти" msgid "Login to site" msgstr "Вхід на сайт" -#: actions/login.php:230 actions/profilesettings.php:106 -#: actions/register.php:424 actions/showgroup.php:236 actions/tagother.php:94 -#: lib/groupeditform.php:152 lib/userprofile.php:131 -msgid "Nickname" -msgstr "Ім’я користувача" - -#: actions/login.php:233 actions/register.php:429 -#: lib/accountsettingsaction.php:116 -msgid "Password" -msgstr "Пароль" - #: actions/login.php:236 actions/register.php:478 msgid "Remember me" msgstr "Пам’ятати мене" @@ -1869,22 +2105,22 @@ msgstr "" "Увійти викристовуючи ім’я та пароль. Ще не маєте імені користувача? " "[Зареєструвати](%%action.register%%) новий акаунт." -#: actions/makeadmin.php:91 +#: actions/makeadmin.php:92 msgid "Only an admin can make another user an admin." msgstr "" "Лише користувач з правами адміністратора може призначити інших адмінів групи." -#: actions/makeadmin.php:95 +#: actions/makeadmin.php:96 #, php-format msgid "%1$s is already an admin for group \"%2$s\"." msgstr "%1$s вже є адміном у групі «%2$s»." -#: actions/makeadmin.php:132 +#: actions/makeadmin.php:133 #, php-format msgid "Can't get membership record for %1$s in group %2$s." msgstr "Не можна отримати запис для %1$s щодо членства у групі %2$s." -#: actions/makeadmin.php:145 +#: actions/makeadmin.php:146 #, php-format msgid "Can't make %1$s an admin for group %2$s." msgstr "Не можна надати %1$s права адміна в групі %2$s." @@ -1893,6 +2129,26 @@ msgstr "Не можна надати %1$s права адміна в групі msgid "No current status" msgstr "Ніякого поточного статусу" +#: actions/newapplication.php:52 +msgid "New Application" +msgstr "Новий додаток" + +#: actions/newapplication.php:64 +msgid "You must be logged in to register an application." +msgstr "Ви маєте спочатку увійти, аби мати змогу зареєструвати додаток." + +#: actions/newapplication.php:143 +msgid "Use this form to register a new application." +msgstr "Скористайтесь цією формою, щоб зареєструвати новий додаток." + +#: actions/newapplication.php:176 +msgid "Source URL is required." +msgstr "Потрібна URL-адреса." + +#: actions/newapplication.php:258 actions/newapplication.php:267 +msgid "Could not create application." +msgstr "Не вдалося створити додаток." + #: actions/newgroup.php:53 msgid "New group" msgstr "Нова група" @@ -2006,6 +2262,49 @@ msgstr "Спробу «розштовхати» зараховано" msgid "Nudge sent!" msgstr "Спробу «розштовхати» зараховано!" +#: actions/oauthappssettings.php:59 +msgid "You must be logged in to list your applications." +msgstr "Ви повинні увійти, аби переглянути список Ваших додатків." + +#: actions/oauthappssettings.php:74 +msgid "OAuth applications" +msgstr "Додатки OAuth" + +#: actions/oauthappssettings.php:85 +msgid "Applications you have registered" +msgstr "Додатки, які Ви зареєстрували" + +#: actions/oauthappssettings.php:135 +#, php-format +msgid "You have not registered any applications yet." +msgstr "Поки що Ви не зареєстрували жодних додатків." + +#: actions/oauthconnectionssettings.php:72 +msgid "Connected applications" +msgstr "Під’єднані додатки" + +#: actions/oauthconnectionssettings.php:83 +msgid "You have allowed the following applications to access you account." +msgstr "" +"Ви маєте дозволити наступним додаткам доступ до Вашого облікового запису." + +#: actions/oauthconnectionssettings.php:175 +msgid "You are not a user of that application." +msgstr "Ви не є користувачем даного додатку." + +#: actions/oauthconnectionssettings.php:186 +msgid "Unable to revoke access for app: " +msgstr "Не вдалося скасувати доступ для додатку: " + +#: actions/oauthconnectionssettings.php:198 +#, php-format +msgid "You have not authorized any applications to use your account." +msgstr "Ви не дозволили жодним додаткам використовувати Ваш акаунт." + +#: actions/oauthconnectionssettings.php:211 +msgid "Developers can edit the registration settings for their applications " +msgstr "Розробники можуть змінити налаштування реєстрації для їхніх додатків " + #: actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" msgstr "Допис не має профілю" @@ -2023,8 +2322,8 @@ msgstr "тип змісту " msgid "Only " msgstr "Лише " -#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1033 -#: lib/api.php:1061 lib/api.php:1171 +#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 +#: lib/api.php:1068 lib/api.php:1177 msgid "Not a supported data format." msgstr "Такий формат даних не підтримується." @@ -2037,7 +2336,7 @@ msgid "Notice Search" msgstr "Пошук дописів" #: actions/othersettings.php:60 -msgid "Other Settings" +msgid "Other settings" msgstr "Інші опції" #: actions/othersettings.php:71 @@ -2088,6 +2387,11 @@ msgstr "Токен для входу визначено як неправиль msgid "Login token expired." msgstr "Токен для входу втратив чинність." +#: actions/outbox.php:58 +#, php-format +msgid "Outbox for %1$s - page %2$d" +msgstr "Вихідні для %1$s — сторінка %2$d" + #: actions/outbox.php:61 #, php-format msgid "Outbox for %s" @@ -2160,7 +2464,7 @@ msgstr "Неможна зберегти новий пароль." msgid "Password saved." msgstr "Пароль збережено." -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:326 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:331 msgid "Paths" msgstr "Шлях" @@ -2168,132 +2472,148 @@ msgstr "Шлях" msgid "Path and server settings for this StatusNet site." msgstr "Шлях та налаштування серверу для цього сайту StatusNet." -#: actions/pathsadminpanel.php:140 +#: actions/pathsadminpanel.php:157 #, php-format msgid "Theme directory not readable: %s" msgstr "Дирикторію теми неможна прочитати: %s" -#: actions/pathsadminpanel.php:146 +#: actions/pathsadminpanel.php:163 #, php-format msgid "Avatar directory not writable: %s" msgstr "Щось не так із написанням директорії аватари: %s" -#: actions/pathsadminpanel.php:152 +#: actions/pathsadminpanel.php:169 #, php-format msgid "Background directory not writable: %s" msgstr "Щось не так із написанням директорії фону: %s" -#: actions/pathsadminpanel.php:160 +#: actions/pathsadminpanel.php:177 #, php-format msgid "Locales directory not readable: %s" msgstr "Не можу прочитати директорію локалі: %s" -#: actions/pathsadminpanel.php:166 +#: actions/pathsadminpanel.php:183 msgid "Invalid SSL server. The maximum length is 255 characters." msgstr "Помилковий SSL-сервер. Максимальна довжина 255 знаків." -#: actions/pathsadminpanel.php:217 actions/siteadminpanel.php:58 +#: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58 #: lib/adminpanelaction.php:311 msgid "Site" msgstr "Сайт" -#: actions/pathsadminpanel.php:221 +#: actions/pathsadminpanel.php:238 +msgid "Server" +msgstr "Сервер" + +#: actions/pathsadminpanel.php:238 +msgid "Site's server hostname." +msgstr "Ім’я хосту сервера на якому знаходиться сайт." + +#: actions/pathsadminpanel.php:242 msgid "Path" msgstr "Шлях" -#: actions/pathsadminpanel.php:221 +#: actions/pathsadminpanel.php:242 msgid "Site path" msgstr "Шлях до сайту" -#: actions/pathsadminpanel.php:225 +#: actions/pathsadminpanel.php:246 msgid "Path to locales" msgstr "Шлях до локалей" -#: actions/pathsadminpanel.php:225 +#: actions/pathsadminpanel.php:246 msgid "Directory path to locales" msgstr "Директорія шляху до локалей" -#: actions/pathsadminpanel.php:232 +#: actions/pathsadminpanel.php:250 +msgid "Fancy URLs" +msgstr "Надзвичайні URL-адреси" + +#: actions/pathsadminpanel.php:252 +msgid "Use fancy (more readable and memorable) URLs?" +msgstr "Використовувати надзвичайні (найбільш пам’ятні і визначні) URL-адреси?" + +#: actions/pathsadminpanel.php:259 msgid "Theme" msgstr "Тема" -#: actions/pathsadminpanel.php:237 +#: actions/pathsadminpanel.php:264 msgid "Theme server" msgstr "Сервер теми" -#: actions/pathsadminpanel.php:241 +#: actions/pathsadminpanel.php:268 msgid "Theme path" msgstr "Шлях до теми" -#: actions/pathsadminpanel.php:245 +#: actions/pathsadminpanel.php:272 msgid "Theme directory" msgstr "Директорія теми" -#: actions/pathsadminpanel.php:252 +#: actions/pathsadminpanel.php:279 msgid "Avatars" msgstr "Аватари" -#: actions/pathsadminpanel.php:257 +#: actions/pathsadminpanel.php:284 msgid "Avatar server" msgstr "Сервер аватари" -#: actions/pathsadminpanel.php:261 +#: actions/pathsadminpanel.php:288 msgid "Avatar path" msgstr "Шлях до аватари" -#: actions/pathsadminpanel.php:265 +#: actions/pathsadminpanel.php:292 msgid "Avatar directory" msgstr "Директорія аватари" -#: actions/pathsadminpanel.php:274 +#: actions/pathsadminpanel.php:301 msgid "Backgrounds" msgstr "Фони" -#: actions/pathsadminpanel.php:278 +#: actions/pathsadminpanel.php:305 msgid "Background server" msgstr "Сервер фонів" -#: actions/pathsadminpanel.php:282 +#: actions/pathsadminpanel.php:309 msgid "Background path" msgstr "Шлях до фонів" -#: actions/pathsadminpanel.php:286 +#: actions/pathsadminpanel.php:313 msgid "Background directory" msgstr "Директорія фонів" -#: actions/pathsadminpanel.php:293 +#: actions/pathsadminpanel.php:320 msgid "SSL" msgstr "SSL-шифрування" -#: actions/pathsadminpanel.php:296 actions/siteadminpanel.php:346 +#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 msgid "Never" msgstr "Ніколи" -#: actions/pathsadminpanel.php:297 +#: actions/pathsadminpanel.php:324 msgid "Sometimes" msgstr "Іноді" -#: actions/pathsadminpanel.php:298 +#: actions/pathsadminpanel.php:325 msgid "Always" msgstr "Завжди" -#: actions/pathsadminpanel.php:302 +#: actions/pathsadminpanel.php:329 msgid "Use SSL" msgstr "Використовувати SSL" -#: actions/pathsadminpanel.php:303 +#: actions/pathsadminpanel.php:330 msgid "When to use SSL" msgstr "Тоді використовувати SSL" -#: actions/pathsadminpanel.php:308 +#: actions/pathsadminpanel.php:335 msgid "SSL server" msgstr "SSL-сервер" -#: actions/pathsadminpanel.php:309 +#: actions/pathsadminpanel.php:336 msgid "Server to direct SSL requests to" msgstr "Сервер на який направляти SSL-запити" -#: actions/pathsadminpanel.php:325 +#: actions/pathsadminpanel.php:352 msgid "Save paths" msgstr "Зберегти шляхи" @@ -2356,7 +2676,7 @@ msgid "Full name" msgstr "Повне ім’я" #: actions/profilesettings.php:115 actions/register.php:453 -#: lib/groupeditform.php:161 +#: lib/applicationeditform.php:228 lib/groupeditform.php:161 msgid "Homepage" msgstr "Веб-сторінка" @@ -2379,10 +2699,10 @@ msgstr "Про себе" #: actions/profilesettings.php:132 actions/register.php:471 #: actions/showgroup.php:256 actions/tagother.php:112 -#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:164 msgid "Location" -msgstr "Локація" +msgstr "Розташування" #: actions/profilesettings.php:134 actions/register.php:473 msgid "Where you are, like \"City, State (or Region), Country\"" @@ -2405,7 +2725,7 @@ msgstr "" "Позначте себе теґами (літери, цифри, -, . та _), відокремлюючи кожен комою " "або пробілом" -#: actions/profilesettings.php:151 actions/siteadminpanel.php:294 +#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 msgid "Language" msgstr "Мова" @@ -2432,7 +2752,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "Ви перевищили ліміт (%d знаків максимум)." -#: actions/profilesettings.php:235 actions/siteadminpanel.php:164 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 msgid "Timezone not selected." msgstr "Часовий пояс не обрано." @@ -2445,23 +2765,23 @@ msgstr "Мова задовга (50 знаків максимум)." msgid "Invalid tag: \"%s\"" msgstr "Недійсний теґ: \"%s\"" -#: actions/profilesettings.php:302 +#: actions/profilesettings.php:306 msgid "Couldn't update user for autosubscribe." msgstr "Не вдалося оновити користувача для автопідписки." -#: actions/profilesettings.php:359 +#: actions/profilesettings.php:363 msgid "Couldn't save location prefs." msgstr "Не вдалося зберегти налаштування розташування." -#: actions/profilesettings.php:371 +#: actions/profilesettings.php:375 msgid "Couldn't save profile." msgstr "Не вдалося зберегти профіль." -#: actions/profilesettings.php:379 +#: actions/profilesettings.php:383 msgid "Couldn't save tags." msgstr "Не вдалося зберегти теґи." -#: actions/profilesettings.php:387 lib/adminpanelaction.php:137 +#: actions/profilesettings.php:391 lib/adminpanelaction.php:137 msgid "Settings saved." msgstr "Налаштування збережено." @@ -2483,19 +2803,19 @@ msgstr "Загальний стрічка, сторінка %d" msgid "Public timeline" msgstr "Загальна стрічка" -#: actions/public.php:151 +#: actions/public.php:159 msgid "Public Stream Feed (RSS 1.0)" msgstr "Стрічка публічних дописів (RSS 1.0)" -#: actions/public.php:155 +#: actions/public.php:163 msgid "Public Stream Feed (RSS 2.0)" msgstr "Стрічка публічних дописів (RSS 2.0)" -#: actions/public.php:159 +#: actions/public.php:167 msgid "Public Stream Feed (Atom)" msgstr "Стрічка публічних дописів (Atom)" -#: actions/public.php:179 +#: actions/public.php:187 #, php-format msgid "" "This is the public timeline for %%site.name%% but no one has posted anything " @@ -2503,11 +2823,11 @@ msgid "" msgstr "" "Це публічна стрічка дописів сайту %%site.name%%, але вона поки що порожня." -#: actions/public.php:182 +#: actions/public.php:190 msgid "Be the first to post!" msgstr "Станьте першим! Напишіть щось!" -#: actions/public.php:186 +#: actions/public.php:194 #, php-format msgid "" "Why not [register an account](%%action.register%%) and be the first to post!" @@ -2515,7 +2835,7 @@ msgstr "" "Чому б не [зареєструватись](%%action.register%%) і не зробити свій перший " "допис!" -#: actions/public.php:233 +#: actions/public.php:241 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2529,7 +2849,7 @@ msgstr "" "розділити своє життя з друзями, родиною і колегами! ([Дізнатися більше](%%" "doc.help%%))" -#: actions/public.php:238 +#: actions/public.php:246 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2567,7 +2887,7 @@ msgstr "" "Чому б не [зареєструватись](%%%%action.register%%%%) і не написати щось " "цікаве!" -#: actions/publictagcloud.php:131 +#: actions/publictagcloud.php:134 msgid "Tag cloud" msgstr "Хмарка теґів" @@ -2709,7 +3029,7 @@ msgstr "Даруйте, помилка у коді запрошення." msgid "Registration successful" msgstr "Реєстрація успішна" -#: actions/register.php:114 actions/register.php:503 lib/action.php:457 +#: actions/register.php:114 actions/register.php:503 lib/action.php:463 #: lib/logingroupnav.php:85 msgid "Register" msgstr "Реєстрація" @@ -2753,7 +3073,7 @@ msgid "Same as password above. Required." msgstr "Такий само, як і пароль вище. Неодмінно." #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:270 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 msgid "Email" msgstr "Пошта" @@ -2858,7 +3178,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "URL-адреса Вашого профілю на іншому сумісному сервісі" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:365 +#: lib/userprofile.php:368 msgid "Subscribe" msgstr "Підписатись" @@ -2895,7 +3215,7 @@ msgstr "Ви не можете вторувати своїм власним до msgid "You already repeated that notice." msgstr "Ви вже вторували цьому допису." -#: actions/repeat.php:114 lib/noticelist.php:629 +#: actions/repeat.php:114 lib/noticelist.php:656 msgid "Repeated" msgstr "Вторування" @@ -2909,6 +3229,11 @@ msgstr "Вторувати!" msgid "Replies to %s" msgstr "Відповіді до %s" +#: actions/replies.php:127 +#, php-format +msgid "Replies to %1$s, page %2$d" +msgstr "Відповіді до %1$s, сторінка %2$d" + #: actions/replies.php:144 #, php-format msgid "Replies feed for %s (RSS 1.0)" @@ -2956,6 +3281,10 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "Відповіді до %1$s на %2$s!" +#: actions/rsd.php:146 actions/version.php:157 +msgid "StatusNet" +msgstr "StatusNet" + #: actions/sandbox.php:65 actions/unsandbox.php:65 msgid "You cannot sandbox users on this site." msgstr "Ви не можете нікого ізолювати на цьому сайті." @@ -2964,6 +3293,121 @@ msgstr "Ви не можете нікого ізолювати на цьому msgid "User is already sandboxed." msgstr "Користувача ізольовано доки набереться уму-розуму." +#: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:336 +msgid "Sessions" +msgstr "Сесії" + +#: actions/sessionsadminpanel.php:65 +msgid "Session settings for this StatusNet site." +msgstr "Налаштування сесії для цього сайту StatusNet." + +#: actions/sessionsadminpanel.php:175 +msgid "Handle sessions" +msgstr "Сесії обробки даних" + +#: actions/sessionsadminpanel.php:177 +msgid "Whether to handle sessions ourselves." +msgstr "Обробка даних сесій самостійно." + +#: actions/sessionsadminpanel.php:181 +msgid "Session debugging" +msgstr "Сесія наладки" + +#: actions/sessionsadminpanel.php:183 +msgid "Turn on debugging output for sessions." +msgstr "Виводити дані сесії наладки." + +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/useradminpanel.php:293 +msgid "Save site settings" +msgstr "Зберегти налаштування сайту" + +#: actions/showapplication.php:82 +msgid "You must be logged in to view an application." +msgstr "Ви повинні спочатку увійти, аби переглянути додаток." + +#: actions/showapplication.php:157 +msgid "Application profile" +msgstr "Профіль додатку" + +#: actions/showapplication.php:159 lib/applicationeditform.php:180 +msgid "Icon" +msgstr "Іконка" + +#: actions/showapplication.php:169 actions/version.php:195 +#: lib/applicationeditform.php:195 +msgid "Name" +msgstr "Ім’я" + +#: actions/showapplication.php:178 lib/applicationeditform.php:222 +msgid "Organization" +msgstr "Організація" + +#: actions/showapplication.php:187 actions/version.php:198 +#: lib/applicationeditform.php:209 lib/groupeditform.php:172 +msgid "Description" +msgstr "Опис" + +#: actions/showapplication.php:192 actions/showgroup.php:429 +#: lib/profileaction.php:174 +msgid "Statistics" +msgstr "Статистика" + +#: actions/showapplication.php:203 +#, php-format +msgid "Created by %1$s - %2$s access by default - %3$d users" +msgstr "Створено %1$s — %2$s доступ за замовч. — %3$d користувачів" + +#: actions/showapplication.php:213 +msgid "Application actions" +msgstr "Можливості додатку" + +#: actions/showapplication.php:236 +msgid "Reset key & secret" +msgstr "Призначити новий ключ і таємне слово" + +#: actions/showapplication.php:261 +msgid "Application info" +msgstr "Інфо додатку" + +#: actions/showapplication.php:263 +msgid "Consumer key" +msgstr "Ключ споживача" + +#: actions/showapplication.php:268 +msgid "Consumer secret" +msgstr "Таємно слово споживача" + +#: actions/showapplication.php:273 +msgid "Request token URL" +msgstr "URL-адреса токена запиту" + +#: actions/showapplication.php:278 +msgid "Access token URL" +msgstr "URL-адреса токена дозволу" + +#: actions/showapplication.php:283 +msgid "Authorize URL" +msgstr "Авторизувати URL-адресу" + +#: actions/showapplication.php:288 +msgid "" +"Note: We support HMAC-SHA1 signatures. We do not support the plaintext " +"signature method." +msgstr "" +"До уваги: Всі підписи шифруються за методом HMAC-SHA1. Ми не підтримуємо " +"шифрування підписів відкритим текстом." + +#: actions/showapplication.php:309 +msgid "Are you sure you want to reset your consumer key and secret?" +msgstr "Ви впевнені, що бажаєте скинути Ваш ключ споживача і таємну фразу?" + +#: actions/showfavorites.php:79 +#, php-format +msgid "%1$s's favorite notices, page %2$d" +msgstr "Обрані дописи %1$s, сторінка %2$d" + #: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "Не можна відновити обрані дописи." @@ -3021,17 +3465,22 @@ msgstr "Це спосіб поділитись з усіма тим, що вам msgid "%s group" msgstr "Група %s" +#: actions/showgroup.php:84 +#, php-format +msgid "%1$s group, page %2$d" +msgstr "Група %1$s, сторінка %2$d" + #: actions/showgroup.php:218 msgid "Group profile" msgstr "Профіль групи" #: actions/showgroup.php:263 actions/tagother.php:118 -#: actions/userauthorization.php:167 lib/userprofile.php:177 +#: actions/userauthorization.php:175 lib/userprofile.php:177 msgid "URL" msgstr "URL" #: actions/showgroup.php:274 actions/tagother.php:128 -#: actions/userauthorization.php:179 lib/userprofile.php:194 +#: actions/userauthorization.php:187 lib/userprofile.php:194 msgid "Note" msgstr "Зауваження" @@ -3077,10 +3526,6 @@ msgstr "(Пусто)" msgid "All members" msgstr "Всі учасники" -#: actions/showgroup.php:429 lib/profileaction.php:174 -msgid "Statistics" -msgstr "Статистика" - #: actions/showgroup.php:432 msgid "Created" msgstr "Створено" @@ -3144,6 +3589,11 @@ msgstr "Допис видалено." msgid " tagged %s" msgstr " позначено з %s" +#: actions/showstream.php:79 +#, php-format +msgid "%1$s, page %2$d" +msgstr "%1$s, сторінка %2$d" + #: actions/showstream.php:122 #, php-format msgid "Notice feed for %1$s tagged %2$s (RSS 1.0)" @@ -3169,12 +3619,12 @@ msgstr "Стрічка дописів для %s (Atom)" msgid "FOAF for %s" msgstr "FOAF для %s" -#: actions/showstream.php:191 +#: actions/showstream.php:200 #, php-format msgid "This is the timeline for %1$s but %2$s hasn't posted anything yet." msgstr "Це стрічка дописів %1$s, але %2$s ще нічого не написав." -#: actions/showstream.php:196 +#: actions/showstream.php:205 msgid "" "Seen anything interesting recently? You haven't posted any notices yet, now " "would be a good time to start :)" @@ -3182,7 +3632,7 @@ msgstr "" "Побачили щось цікаве нещодавно? Ви ще нічого не написали і це слушна нагода " "аби розпочати! :)" -#: actions/showstream.php:198 +#: actions/showstream.php:207 #, php-format msgid "" "You can try to nudge %1$s or [post something to his or her attention](%%%%" @@ -3191,7 +3641,7 @@ msgstr "" "Ви можете «розштовхати» %1$s або [щось йому написати](%%%%action.newnotice%%%" "%?status_textarea=%2$s)." -#: actions/showstream.php:234 +#: actions/showstream.php:243 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3205,7 +3655,7 @@ msgstr "" "register%%) зараз і слідкуйте за дописами **%s**, також на Вас чекає багато " "іншого! ([Дізнатися більше](%%doc.help%%))" -#: actions/showstream.php:239 +#: actions/showstream.php:248 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3216,7 +3666,7 @@ msgstr "" "(http://uk.wikipedia.org/wiki/Мікроблоґ), який працює на вільному " "програмному забезпеченні [StatusNet](http://status.net/). " -#: actions/showstream.php:313 +#: actions/showstream.php:305 #, php-format msgid "Repeat of %s" msgstr "Вторування %s" @@ -3233,201 +3683,147 @@ msgstr "Користувачу наразі заклеїли рота скотч msgid "Basic settings for this StatusNet site." msgstr "Загальні налаштування цього сайту StatusNet." -#: actions/siteadminpanel.php:146 +#: actions/siteadminpanel.php:132 msgid "Site name must have non-zero length." msgstr "Ім’я сайту не може бути порожнім." -#: actions/siteadminpanel.php:154 +#: actions/siteadminpanel.php:140 msgid "You must have a valid contact email address." msgstr "Електронна адреса має бути чинною." -#: actions/siteadminpanel.php:172 +#: actions/siteadminpanel.php:158 #, php-format msgid "Unknown language \"%s\"." msgstr "Невідома мова «%s»." -#: actions/siteadminpanel.php:179 +#: actions/siteadminpanel.php:165 msgid "Invalid snapshot report URL." msgstr "Помилковий снепшот URL." -#: actions/siteadminpanel.php:185 +#: actions/siteadminpanel.php:171 msgid "Invalid snapshot run value." msgstr "Помилкове значення снепшоту." -#: actions/siteadminpanel.php:191 +#: actions/siteadminpanel.php:177 msgid "Snapshot frequency must be a number." msgstr "Частота повторення снепшотів має містити цифру." -#: actions/siteadminpanel.php:197 +#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "Ліміт текстових повідомлень становить 140 знаків." -#: actions/siteadminpanel.php:203 +#: actions/siteadminpanel.php:189 msgid "Dupe limit must 1 or more seconds." msgstr "" "Часове обмеження при надсиланні дублікату повідомлення має становити від 1 і " "більше секунд." -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:239 msgid "General" msgstr "Основні" -#: actions/siteadminpanel.php:256 +#: actions/siteadminpanel.php:242 msgid "Site name" msgstr "Назва сайту" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:243 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "Назва Вашого сайту, штибу \"Мікроблоґи компанії ...\"" -#: actions/siteadminpanel.php:261 +#: actions/siteadminpanel.php:247 msgid "Brought by" msgstr "Надано" -#: actions/siteadminpanel.php:262 +#: actions/siteadminpanel.php:248 msgid "Text used for credits link in footer of each page" msgstr "Текст використаний для посілань кредитів унизу кожної сторінки" -#: actions/siteadminpanel.php:266 +#: actions/siteadminpanel.php:252 msgid "Brought by URL" msgstr "Наданий URL" -#: actions/siteadminpanel.php:267 +#: actions/siteadminpanel.php:253 msgid "URL used for credits link in footer of each page" msgstr "URL використаний для посілань кредитів унизу кожної сторінки" -#: actions/siteadminpanel.php:271 +#: actions/siteadminpanel.php:257 msgid "Contact email address for your site" msgstr "Контактна електронна адреса для Вашого сайту" -#: actions/siteadminpanel.php:277 +#: actions/siteadminpanel.php:263 msgid "Local" msgstr "Локаль" -#: actions/siteadminpanel.php:288 +#: actions/siteadminpanel.php:274 msgid "Default timezone" msgstr "Часовий пояс за замовчуванням" -#: actions/siteadminpanel.php:289 +#: actions/siteadminpanel.php:275 msgid "Default timezone for the site; usually UTC." msgstr "Часовий пояс за замовчуванням для сайту; зазвичай UTC." -#: actions/siteadminpanel.php:295 +#: actions/siteadminpanel.php:281 msgid "Default site language" msgstr "Мова сайту за замовчуванням" -#: actions/siteadminpanel.php:303 -msgid "URLs" -msgstr "URL-адреси" - -#: actions/siteadminpanel.php:306 -msgid "Server" -msgstr "Сервер" - -#: actions/siteadminpanel.php:306 -msgid "Site's server hostname." -msgstr "Ім’я хосту сервера на якому знаходиться сайт." - -#: actions/siteadminpanel.php:310 -msgid "Fancy URLs" -msgstr "Надзвичайні URL-адреси" - -#: actions/siteadminpanel.php:312 -msgid "Use fancy (more readable and memorable) URLs?" -msgstr "Використовувати надзвичайні (найбільш пам’ятні і визначні) URL-адреси?" - -#: actions/siteadminpanel.php:318 -msgid "Access" -msgstr "Погодитись" - -#: actions/siteadminpanel.php:321 -msgid "Private" -msgstr "Приватно" - -#: actions/siteadminpanel.php:323 -msgid "Prohibit anonymous users (not logged in) from viewing site?" -msgstr "" -"Заборонити анонімним відвідувачам (ті, що не увійшли до системи) переглядати " -"сайт?" - -#: actions/siteadminpanel.php:327 -msgid "Invite only" -msgstr "Лише за запрошеннями" - -#: actions/siteadminpanel.php:329 -msgid "Make registration invitation only." -msgstr "Зробити регістрацію лише за запрошеннями." - -#: actions/siteadminpanel.php:333 -msgid "Closed" -msgstr "Закрито" - -#: actions/siteadminpanel.php:335 -msgid "Disable new registrations." -msgstr "Скасувати подальшу регістрацію." - -#: actions/siteadminpanel.php:341 +#: actions/siteadminpanel.php:289 msgid "Snapshots" msgstr "Снепшоти" -#: actions/siteadminpanel.php:344 +#: actions/siteadminpanel.php:292 msgid "Randomly during Web hit" msgstr "Випадково під час веб-хіта" -#: actions/siteadminpanel.php:345 +#: actions/siteadminpanel.php:293 msgid "In a scheduled job" msgstr "Згідно плану робіт" -#: actions/siteadminpanel.php:347 +#: actions/siteadminpanel.php:295 msgid "Data snapshots" msgstr "Снепшоти даних" -#: actions/siteadminpanel.php:348 +#: actions/siteadminpanel.php:296 msgid "When to send statistical data to status.net servers" msgstr "Коли надсилати статистичні дані до серверів status.net" -#: actions/siteadminpanel.php:353 +#: actions/siteadminpanel.php:301 msgid "Frequency" msgstr "Частота" -#: actions/siteadminpanel.php:354 +#: actions/siteadminpanel.php:302 msgid "Snapshots will be sent once every N web hits" msgstr "Снепшоти надсилатимуться раз на N веб-хітів" -#: actions/siteadminpanel.php:359 +#: actions/siteadminpanel.php:307 msgid "Report URL" msgstr "Звітня URL-адреса" -#: actions/siteadminpanel.php:360 +#: actions/siteadminpanel.php:308 msgid "Snapshots will be sent to this URL" msgstr "Снепшоти надсилатимуться на цю URL-адресу" -#: actions/siteadminpanel.php:367 +#: actions/siteadminpanel.php:315 msgid "Limits" msgstr "Обмеження" -#: actions/siteadminpanel.php:370 +#: actions/siteadminpanel.php:318 msgid "Text limit" msgstr "Текстові обмеження" -#: actions/siteadminpanel.php:370 +#: actions/siteadminpanel.php:318 msgid "Maximum number of characters for notices." msgstr "Максимальна кількість знаків у дописі." -#: actions/siteadminpanel.php:374 +#: actions/siteadminpanel.php:322 msgid "Dupe limit" msgstr "Часове обмеження" -#: actions/siteadminpanel.php:374 +#: actions/siteadminpanel.php:322 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" "Як довго користувачі мають зачекати (в секундах) аби надіслати той самий " "допис ще раз." -#: actions/siteadminpanel.php:388 actions/useradminpanel.php:313 -msgid "Save site settings" -msgstr "Зберегти налаштування сайту" - #: actions/smssettings.php:58 msgid "SMS settings" msgstr "Налаштування СМС" @@ -3531,15 +3927,26 @@ msgstr "Код не введено" msgid "You are not subscribed to that profile." msgstr "Ви не підписані до цього профілю." -#: actions/subedit.php:83 +#: actions/subedit.php:83 classes/Subscription.php:89 +#: classes/Subscription.php:116 msgid "Could not save subscription." msgstr "Не вдалося зберегти підписку." -#: actions/subscribe.php:55 -msgid "Not a local user." -msgstr "Такого користувача немає." +#: actions/subscribe.php:77 +msgid "This action only accepts POST requests." +msgstr "" -#: actions/subscribe.php:69 +#: actions/subscribe.php:107 +#, fuzzy +msgid "No such profile." +msgstr "Такого файлу немає." + +#: actions/subscribe.php:117 +#, fuzzy +msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." +msgstr "Ви не підписані до цього профілю." + +#: actions/subscribe.php:145 msgid "Subscribed" msgstr "Підписані" @@ -3603,7 +4010,7 @@ msgstr "Тут представлені ті, за чиїми дописами msgid "These are the people whose notices %s listens to." msgstr "Тут представлені ті, за чиїми дописами слідкує %s." -#: actions/subscriptions.php:121 +#: actions/subscriptions.php:126 #, php-format msgid "" "You're not listening to anyone's notices right now, try subscribing to " @@ -3619,19 +4026,24 @@ msgstr "" "action.twittersettings%%), то можете автоматично підписатись до людей, за " "якими слідкуєте там." -#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#: actions/subscriptions.php:128 actions/subscriptions.php:132 #, php-format msgid "%s is not listening to anyone." msgstr "%s не відслідковує нічого" -#: actions/subscriptions.php:194 +#: actions/subscriptions.php:199 msgid "Jabber" msgstr "Jabber" -#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:204 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "СМС" +#: actions/tag.php:68 +#, php-format +msgid "Notices tagged with %1$s, page %2$d" +msgstr "Дописи з теґом %1$s, сторінка %2$d" + #: actions/tag.php:86 #, php-format msgid "Notice feed for tag %s (RSS 1.0)" @@ -3660,7 +4072,8 @@ msgstr "Позначити %s" msgid "User profile" msgstr "Профіль користувача." -#: actions/tagother.php:81 lib/userprofile.php:102 +#: actions/tagother.php:81 actions/userauthorization.php:132 +#: lib/userprofile.php:102 msgid "Photo" msgstr "Фото" @@ -3719,7 +4132,7 @@ msgstr "У запиті відсутній ID профілю." msgid "Unsubscribed" msgstr "Відписано" -#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#: actions/updateprofile.php:62 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -3734,85 +4147,65 @@ msgstr "Користувач" msgid "User settings for this StatusNet site." msgstr "Власні налаштування користувача для цього сайту StatusNet." -#: actions/useradminpanel.php:149 +#: actions/useradminpanel.php:148 msgid "Invalid bio limit. Must be numeric." msgstr "Помилкове обмеження біо. Це мають бути цифри." -#: actions/useradminpanel.php:155 +#: actions/useradminpanel.php:154 msgid "Invalid welcome text. Max length is 255 characters." msgstr "Помилковий текст привітання. Максимальна довжина 255 знаків." -#: actions/useradminpanel.php:165 +#: actions/useradminpanel.php:164 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "Помилкова підписка за замовчуванням: '%1$s' не є користувачем." -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 +#: actions/useradminpanel.php:217 lib/accountsettingsaction.php:108 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Профіль" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:221 msgid "Bio Limit" msgstr "Обмеження біо" -#: actions/useradminpanel.php:223 +#: actions/useradminpanel.php:222 msgid "Maximum length of a profile bio in characters." msgstr "Максимальна довжина біо користувача в знаках." -#: actions/useradminpanel.php:231 +#: actions/useradminpanel.php:230 msgid "New users" msgstr "Нові користувачі" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:234 msgid "New user welcome" msgstr "Привітання нового користувача" -#: actions/useradminpanel.php:236 +#: actions/useradminpanel.php:235 msgid "Welcome text for new users (Max 255 chars)." msgstr "Текст привітання нових користувачів (255 знаків)." -#: actions/useradminpanel.php:241 +#: actions/useradminpanel.php:240 msgid "Default subscription" msgstr "Підписка за замовчуванням" -#: actions/useradminpanel.php:242 +#: actions/useradminpanel.php:241 msgid "Automatically subscribe new users to this user." msgstr "Автоматично підписувати нових користувачів до цього користувача." -#: actions/useradminpanel.php:251 +#: actions/useradminpanel.php:250 msgid "Invitations" msgstr "Запрошення" -#: actions/useradminpanel.php:256 +#: actions/useradminpanel.php:255 msgid "Invitations enabled" msgstr "Запрошення скасовано" -#: actions/useradminpanel.php:258 +#: actions/useradminpanel.php:257 msgid "Whether to allow users to invite new users." msgstr "" "В той чи інший спосіб дозволити користувачам вітати нових користувачів." -#: actions/useradminpanel.php:265 -msgid "Sessions" -msgstr "Сесії" - -#: actions/useradminpanel.php:270 -msgid "Handle sessions" -msgstr "Сесії обробки даних" - -#: actions/useradminpanel.php:272 -msgid "Whether to handle sessions ourselves." -msgstr "Обробка даних сесій самостійно." - -#: actions/useradminpanel.php:276 -msgid "Session debugging" -msgstr "Сесія наладки" - -#: actions/useradminpanel.php:278 -msgid "Turn on debugging output for sessions." -msgstr "Виводити дані сесії наладки." - #: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Авторизувати підписку" @@ -3827,36 +4220,36 @@ msgstr "" "підписатись на дописи цього користувача. Якщо Ви не збирались підписуватись " "ні на чиї дописи, просто натисніть «Відмінити»." -#: actions/userauthorization.php:188 actions/version.php:165 +#: actions/userauthorization.php:196 actions/version.php:165 msgid "License" msgstr "Ліцензія" -#: actions/userauthorization.php:209 +#: actions/userauthorization.php:217 msgid "Accept" msgstr "Погодитись" -#: actions/userauthorization.php:210 lib/subscribeform.php:115 +#: actions/userauthorization.php:218 lib/subscribeform.php:115 #: lib/subscribeform.php:139 msgid "Subscribe to this user" msgstr "Підписатись до цього користувача" -#: actions/userauthorization.php:211 +#: actions/userauthorization.php:219 msgid "Reject" msgstr "Забраковано" -#: actions/userauthorization.php:212 +#: actions/userauthorization.php:220 msgid "Reject this subscription" msgstr "Відмінити цю підписку" -#: actions/userauthorization.php:225 +#: actions/userauthorization.php:232 msgid "No authorization request!" msgstr "Немає запиту на авторизацію!" -#: actions/userauthorization.php:247 +#: actions/userauthorization.php:254 msgid "Subscription authorized" msgstr "Підписку авторизовано" -#: actions/userauthorization.php:249 +#: actions/userauthorization.php:256 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 " @@ -3866,11 +4259,11 @@ msgstr "" "Звіртесь з інструкціями на сайті для більш конкретної інформації про те, як " "авторизувати підписку. Ваш підписний токен:" -#: actions/userauthorization.php:259 +#: actions/userauthorization.php:266 msgid "Subscription rejected" msgstr "Підписку скинуто" -#: actions/userauthorization.php:261 +#: actions/userauthorization.php:268 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 " @@ -3880,37 +4273,37 @@ msgstr "" "з інструкціями на сайті для більш конкретної інформації про те, як скинути " "підписку." -#: actions/userauthorization.php:296 +#: actions/userauthorization.php:303 #, php-format msgid "Listener URI ‘%s’ not found here." msgstr "URI слухача «%s» тут не знайдено" -#: actions/userauthorization.php:301 +#: actions/userauthorization.php:308 #, php-format msgid "Listenee URI ‘%s’ is too long." msgstr "URI слухача ‘%s’ задовге." -#: actions/userauthorization.php:307 +#: actions/userauthorization.php:314 #, php-format msgid "Listenee URI ‘%s’ is a local user." msgstr "URI слухача ‘%s’ це локальний користувач" -#: actions/userauthorization.php:322 +#: actions/userauthorization.php:329 #, php-format msgid "Profile URL ‘%s’ is for a local user." msgstr "URL-адреса профілю ‘%s’ для локального користувача." -#: actions/userauthorization.php:338 +#: actions/userauthorization.php:345 #, php-format msgid "Avatar URL ‘%s’ is not valid." msgstr "URL-адреса автари ‘%s’ помилкова." -#: actions/userauthorization.php:343 +#: actions/userauthorization.php:350 #, php-format msgid "Can’t read avatar URL ‘%s’." msgstr "Не можна прочитати URL аватари ‘%s’." -#: actions/userauthorization.php:348 +#: actions/userauthorization.php:355 #, php-format msgid "Wrong image type for avatar URL ‘%s’." msgstr "Неправильний тип зображення для URL-адреси аватари ‘%s’." @@ -3931,6 +4324,11 @@ msgstr "" msgid "Enjoy your hotdog!" msgstr "Поласуйте бутербродом!" +#: actions/usergroups.php:64 +#, php-format +msgid "%1$s groups, page %2$d" +msgstr "Групи %1$s, сторінка %2$d" + #: actions/usergroups.php:130 msgid "Search for more groups" msgstr "Шукати групи ще" @@ -3960,10 +4358,6 @@ msgstr "" "Цей сайт працює на %1$s, версія %2$s. Авторські права 2008-2010 StatusNet, " "Inc. і розробники." -#: actions/version.php:157 -msgid "StatusNet" -msgstr "StatusNet" - #: actions/version.php:161 msgid "Contributors" msgstr "Розробники" @@ -4005,11 +4399,7 @@ msgstr "" msgid "Plugins" msgstr "Додатки" -#: actions/version.php:195 -msgid "Name" -msgstr "Ім’я" - -#: actions/version.php:196 lib/action.php:741 +#: actions/version.php:196 lib/action.php:747 msgid "Version" msgstr "Версія" @@ -4017,10 +4407,6 @@ msgstr "Версія" msgid "Author(s)" msgstr "Автор(и)" -#: actions/version.php:198 lib/groupeditform.php:172 -msgid "Description" -msgstr "Опис" - #: classes/File.php:144 #, php-format msgid "" @@ -4041,19 +4427,16 @@ msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "Розміри цього файлу перевищують Вашу місячну квоту на %d байтів." #: classes/Group_member.php:41 -#, fuzzy msgid "Group join failed." -msgstr "Профіль групи" +msgstr "Не вдалося приєднатись до групи." #: classes/Group_member.php:53 -#, fuzzy msgid "Not part of group." -msgstr "Не вдалося оновити групу." +msgstr "Не є частиною групи." #: classes/Group_member.php:60 -#, fuzzy msgid "Group leave failed." -msgstr "Профіль групи" +msgstr "Не вдалося залишити групу." #: classes/Login_token.php:76 #, php-format @@ -4072,27 +4455,27 @@ msgstr "Не можна долучити повідомлення." msgid "Could not update message with new URI." msgstr "Не можна оновити повідомлення з новим URI." -#: classes/Notice.php:171 +#: classes/Notice.php:157 #, php-format msgid "DB error inserting hashtag: %s" msgstr "Помилка бази даних при додаванні теґу: %s" -#: classes/Notice.php:225 +#: classes/Notice.php:222 msgid "Problem saving notice. Too long." msgstr "Проблема при збереженні допису. Надто довге." -#: classes/Notice.php:229 +#: classes/Notice.php:226 msgid "Problem saving notice. Unknown user." msgstr "Проблема при збереженні допису. Невідомий користувач." -#: classes/Notice.php:234 +#: classes/Notice.php:231 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" "Дуже багато дописів за короткий термін; ходіть подихайте повітрям і " "повертайтесь за кілька хвилин." -#: classes/Notice.php:240 +#: classes/Notice.php:237 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." @@ -4100,34 +4483,57 @@ msgstr "" "Дуже багато повідомлень за короткий термін; ходіть подихайте повітрям і " "повертайтесь за кілька хвилин." -#: classes/Notice.php:246 +#: classes/Notice.php:243 msgid "You are banned from posting notices on this site." msgstr "Вам заборонено надсилати дописи до цього сайту." -#: classes/Notice.php:305 classes/Notice.php:330 +#: classes/Notice.php:309 classes/Notice.php:335 msgid "Problem saving notice." msgstr "Проблема при збереженні допису." -#: classes/Notice.php:1052 -#, php-format -msgid "DB error inserting reply: %s" -msgstr "Помилка бази даних при додаванні відповіді: %s" +#: classes/Notice.php:882 +msgid "Problem saving group inbox." +msgstr "Проблема при збереженні вхідних дописів для групи." -#: classes/Notice.php:1423 +#: classes/Notice.php:1407 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" -#: classes/User.php:382 +#: classes/Subscription.php:66 lib/oauthstore.php:465 +msgid "You have been banned from subscribing." +msgstr "Вас позбавлено можливості підписатись." + +#: classes/Subscription.php:70 +msgid "Already subscribed!" +msgstr "Вже підписаний!" + +#: classes/Subscription.php:74 +msgid "User has blocked you." +msgstr "Користувач заблокував Вас." + +#: classes/Subscription.php:157 +msgid "Not subscribed!" +msgstr "Не підписано!" + +#: classes/Subscription.php:163 +msgid "Couldn't delete self-subscription." +msgstr "Не можу видалити самопідписку." + +#: classes/Subscription.php:179 lib/subs.php:69 +msgid "Couldn't delete subscription." +msgstr "Не вдалося видалити підписку." + +#: classes/User.php:372 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "Вітаємо на %1$s, @%2$s!" -#: classes/User_group.php:380 +#: classes/User_group.php:423 msgid "Could not create group." msgstr "Не вдалося створити нову групу." -#: classes/User_group.php:409 +#: classes/User_group.php:452 msgid "Could not set group membership." msgstr "Не вдалося встановити членство." @@ -4168,128 +4574,124 @@ msgstr "%1$s — %2$s" msgid "Untitled page" msgstr "Сторінка без заголовку" -#: lib/action.php:427 +#: lib/action.php:433 msgid "Primary site navigation" msgstr "Відправна навігація по сайту" -#: lib/action.php:433 +#: lib/action.php:439 msgid "Home" msgstr "Дім" -#: lib/action.php:433 +#: lib/action.php:439 msgid "Personal profile and friends timeline" msgstr "Персональний профіль і стрічка друзів" -#: lib/action.php:435 -msgid "Account" -msgstr "Акаунт" - -#: lib/action.php:435 +#: lib/action.php:441 msgid "Change your email, avatar, password, profile" msgstr "Змінити електронну адресу, аватару, пароль, профіль" -#: lib/action.php:438 +#: lib/action.php:444 msgid "Connect" msgstr "З’єднання" -#: lib/action.php:438 +#: lib/action.php:444 msgid "Connect to services" msgstr "З’єднання з сервісами" -#: lib/action.php:442 +#: lib/action.php:448 msgid "Change site configuration" msgstr "Змінити конфігурацію сайту" -#: lib/action.php:446 lib/subgroupnav.php:105 +#: lib/action.php:452 lib/subgroupnav.php:105 msgid "Invite" msgstr "Запросити" -#: lib/action.php:447 lib/subgroupnav.php:106 +#: lib/action.php:453 lib/subgroupnav.php:106 #, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "Запросіть друзів та колег приєднатись до Вас на %s" -#: lib/action.php:452 +#: lib/action.php:458 msgid "Logout" msgstr "Вийти" -#: lib/action.php:452 +#: lib/action.php:458 msgid "Logout from the site" msgstr "Вийти з сайту" -#: lib/action.php:457 +#: lib/action.php:463 msgid "Create an account" msgstr "Створити новий акаунт" -#: lib/action.php:460 +#: lib/action.php:466 msgid "Login to the site" msgstr "Увійти на сайт" -#: lib/action.php:463 lib/action.php:726 +#: lib/action.php:469 lib/action.php:732 msgid "Help" msgstr "Допомога" -#: lib/action.php:463 +#: lib/action.php:469 msgid "Help me!" msgstr "Допоможіть!" -#: lib/action.php:466 lib/searchaction.php:127 +#: lib/action.php:472 lib/searchaction.php:127 msgid "Search" msgstr "Пошук" -#: lib/action.php:466 +#: lib/action.php:472 msgid "Search for people or text" msgstr "Пошук людей або текстів" -#: lib/action.php:487 +#: lib/action.php:493 msgid "Site notice" msgstr "Зауваження сайту" -#: lib/action.php:553 +#: lib/action.php:559 msgid "Local views" msgstr "Огляд" -#: lib/action.php:619 +#: lib/action.php:625 msgid "Page notice" msgstr "Зауваження сторінки" -#: lib/action.php:721 +#: lib/action.php:727 msgid "Secondary site navigation" msgstr "Другорядна навігація по сайту" -#: lib/action.php:728 +#: lib/action.php:734 msgid "About" msgstr "Про" -#: lib/action.php:730 +#: lib/action.php:736 msgid "FAQ" msgstr "ЧаПи" -#: lib/action.php:734 +#: lib/action.php:740 msgid "TOS" msgstr "Умови" -#: lib/action.php:737 +#: lib/action.php:743 msgid "Privacy" msgstr "Конфіденційність" -#: lib/action.php:739 +#: lib/action.php:745 msgid "Source" msgstr "Джерело" -#: lib/action.php:743 +#: lib/action.php:749 msgid "Contact" msgstr "Контакт" -#: lib/action.php:745 +#: lib/action.php:751 msgid "Badge" msgstr "Бедж" -#: lib/action.php:773 +#: lib/action.php:779 msgid "StatusNet software license" msgstr "Ліцензія програмного забезпечення StatusNet" -#: lib/action.php:776 +#: lib/action.php:782 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4298,12 +4700,12 @@ msgstr "" "**%%site.name%%** — це сервіс мікроблоґів наданий вам [%%site.broughtby%%](%%" "site.broughtbyurl%%). " -#: lib/action.php:778 +#: lib/action.php:784 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** — це сервіс мікроблоґів. " -#: lib/action.php:780 +#: lib/action.php:786 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4314,33 +4716,56 @@ msgstr "" "для мікроблоґів, версія %s, доступному під [GNU Affero General Public " "License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." -#: lib/action.php:794 +#: lib/action.php:801 msgid "Site content license" msgstr "Ліцензія змісту сайту" -#: lib/action.php:803 +#: lib/action.php:806 +#, php-format +msgid "Content and data of %1$s are private and confidential." +msgstr "Зміст і дані %1$s є приватними і конфіденційними." + +#: lib/action.php:811 +#, php-format +msgid "Content and data copyright by %1$s. All rights reserved." +msgstr "Авторські права на зміст і дані належать %1$s. Всі права захищено." + +#: lib/action.php:814 +msgid "Content and data copyright by contributors. All rights reserved." +msgstr "" +"Авторські права на зміст і дані належать розробникам. Всі права захищено." + +#: lib/action.php:827 msgid "All " msgstr "Всі " -#: lib/action.php:808 +#: lib/action.php:833 msgid "license." msgstr "ліцензія." -#: lib/action.php:1102 +#: lib/action.php:1132 msgid "Pagination" msgstr "Нумерація сторінок" -#: lib/action.php:1111 +#: lib/action.php:1141 msgid "After" msgstr "Вперед" -#: lib/action.php:1119 +#: lib/action.php:1149 msgid "Before" msgstr "Назад" -#: lib/action.php:1167 -msgid "There was a problem with your session token." -msgstr "Виникли певні проблеми з токеном поточної сесії." +#: lib/activity.php:382 +msgid "Can't handle remote content yet." +msgstr "" + +#: lib/activity.php:410 +msgid "Can't handle embedded XML content yet." +msgstr "" + +#: lib/activity.php:414 +msgid "Can't handle embedded Base64 content yet." +msgstr "" #: lib/adminpanelaction.php:96 msgid "You cannot make changes to this site." @@ -4370,10 +4795,100 @@ msgstr "Основна конфігурація сайту" msgid "Design configuration" msgstr "Конфігурація дизайну" -#: lib/adminpanelaction.php:322 lib/adminpanelaction.php:327 +#: lib/adminpanelaction.php:322 +msgid "User configuration" +msgstr "Конфігурація користувача" + +#: lib/adminpanelaction.php:327 +msgid "Access configuration" +msgstr "Прийняти конфігурацію" + +#: lib/adminpanelaction.php:332 msgid "Paths configuration" msgstr "Конфігурація шляху" +#: lib/adminpanelaction.php:337 +msgid "Sessions configuration" +msgstr "Конфігурація сесій" + +#: lib/apiauth.php:95 +msgid "API resource requires read-write access, but you only have read access." +msgstr "" +"API-ресурс вимагає дозвіл типу «читання-запис», але у вас є лише доступ для " +"читання." + +#: lib/apiauth.php:273 +#, php-format +msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" +msgstr "" +"Невдала спроба авторизації API, nickname = %1$s, proxy = %2$s, ip = %3$s" + +#: lib/applicationeditform.php:136 +msgid "Edit application" +msgstr "Керувати додатками" + +#: lib/applicationeditform.php:184 +msgid "Icon for this application" +msgstr "Іконка для цього додатку" + +#: lib/applicationeditform.php:204 +#, php-format +msgid "Describe your application in %d characters" +msgstr "Опишіть додаток, вкладаючись у %d знаків" + +#: lib/applicationeditform.php:207 +msgid "Describe your application" +msgstr "Опишіть Ваш додаток" + +#: lib/applicationeditform.php:216 +msgid "Source URL" +msgstr "URL-адреса" + +#: lib/applicationeditform.php:218 +msgid "URL of the homepage of this application" +msgstr "URL-адреса веб-сторінки цього додатку" + +#: lib/applicationeditform.php:224 +msgid "Organization responsible for this application" +msgstr "Організація, відповідальна за цей додаток" + +#: lib/applicationeditform.php:230 +msgid "URL for the homepage of the organization" +msgstr "URL-адреса веб-сторінки організації" + +#: lib/applicationeditform.php:236 +msgid "URL to redirect to after authentication" +msgstr "URL-адреса, на яку перенаправляти після автентифікації" + +#: lib/applicationeditform.php:258 +msgid "Browser" +msgstr "Браузер" + +#: lib/applicationeditform.php:274 +msgid "Desktop" +msgstr "Десктоп" + +#: lib/applicationeditform.php:275 +msgid "Type of application, browser or desktop" +msgstr "Тип додатку, браузер або десктоп" + +#: lib/applicationeditform.php:297 +msgid "Read-only" +msgstr "Лише читання" + +#: lib/applicationeditform.php:315 +msgid "Read-write" +msgstr "Читати-писати" + +#: lib/applicationeditform.php:316 +msgid "Default access for this application: read-only, or read-write" +msgstr "" +"Дозвіл за замовчуванням для цього додатку: лише читання або читати-писати" + +#: lib/applicationlist.php:154 +msgid "Revoke" +msgstr "Відкликати" + #: lib/attachmentlist.php:87 msgid "Attachments" msgstr "Вкладення" @@ -4394,11 +4909,11 @@ msgstr "Дописи, до яких прикріплено це вкладенн msgid "Tags for this attachment" msgstr "Теґи для цього вкладення" -#: lib/authenticationplugin.php:182 lib/authenticationplugin.php:187 +#: lib/authenticationplugin.php:218 lib/authenticationplugin.php:223 msgid "Password changing failed" msgstr "Не вдалося змінити пароль" -#: lib/authenticationplugin.php:197 +#: lib/authenticationplugin.php:233 msgid "Password changing is not allowed" msgstr "Змінювати пароль не дозволено" @@ -4549,84 +5064,94 @@ msgstr "Проблема при збереженні допису." msgid "Specify the name of the user to subscribe to" msgstr "Зазначте ім’я користувача, до якого бажаєте підписатись" -#: lib/command.php:554 +#: lib/command.php:554 lib/command.php:589 +msgid "No such user" +msgstr "Такого користувача немає." + +#: lib/command.php:561 #, php-format msgid "Subscribed to %s" msgstr "Підписано до %s" -#: lib/command.php:575 +#: lib/command.php:582 lib/command.php:685 msgid "Specify the name of the user to unsubscribe from" msgstr "Зазначте ім’я користувача, від якого бажаєте відписатись" -#: lib/command.php:582 +#: lib/command.php:595 #, php-format msgid "Unsubscribed from %s" msgstr "Відписано від %s" -#: lib/command.php:600 lib/command.php:623 +#: lib/command.php:613 lib/command.php:636 msgid "Command not yet implemented." msgstr "Виконання команди ще не завершено." -#: lib/command.php:603 +#: lib/command.php:616 msgid "Notification off." msgstr "Сповіщення вимкнуто." -#: lib/command.php:605 +#: lib/command.php:618 msgid "Can't turn off notification." msgstr "Не можна вимкнути сповіщення." -#: lib/command.php:626 +#: lib/command.php:639 msgid "Notification on." msgstr "Сповіщення увімкнуто." -#: lib/command.php:628 +#: lib/command.php:641 msgid "Can't turn on notification." msgstr "Не можна увімкнути сповіщення." -#: lib/command.php:641 +#: lib/command.php:654 msgid "Login command is disabled" msgstr "Команду входу відключено" -#: lib/command.php:652 +#: lib/command.php:665 #, php-format msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "" "Це посилання можна використати лише раз, воно дійсне протягом 2 хвилин: %s" -#: lib/command.php:668 +#: lib/command.php:692 +#, fuzzy, php-format +msgid "Unsubscribed %s" +msgstr "Відписано від %s" + +#: lib/command.php:709 msgid "You are not subscribed to anyone." msgstr "Ви не маєте жодних підписок." -#: lib/command.php:670 +#: lib/command.php:711 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "Ви підписані до цієї особи:" msgstr[1] "Ви підписані до цих людей:" msgstr[2] "Ви підписані до цих людей:" -#: lib/command.php:690 +#: lib/command.php:731 msgid "No one is subscribed to you." msgstr "До Вас ніхто не підписаний." -#: lib/command.php:692 +#: lib/command.php:733 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "Ця особа є підписаною до Вас:" msgstr[1] "Ці люди підписані до Вас:" msgstr[2] "Ці люди підписані до Вас:" -#: lib/command.php:712 +#: lib/command.php:753 msgid "You are not a member of any groups." msgstr "Ви не є учасником жодної групи." -#: lib/command.php:714 +#: lib/command.php:755 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "Ви є учасником групи:" msgstr[1] "Ви є учасником таких груп:" msgstr[2] "Ви є учасником таких груп:" -#: lib/command.php:728 +#: lib/command.php:769 +#, fuzzy msgid "" "Commands:\n" "on - turn on notifications\n" @@ -4640,6 +5165,7 @@ msgid "" "d - direct message to user\n" "get - get last notice from user\n" "whois - get profile info on user\n" +"lose - force user to stop following you\n" "fav - add user's last notice as a 'fave'\n" "fav # - add notice with the given id as a 'fave'\n" "repeat # - repeat a notice with a given id\n" @@ -4702,19 +5228,19 @@ msgstr "" "tracks — наразі не виконується\n" "tracking — наразі не виконується\n" -#: lib/common.php:131 +#: lib/common.php:136 msgid "No configuration file found. " msgstr "Файлу конфігурації не знайдено. " -#: lib/common.php:132 +#: lib/common.php:137 msgid "I looked for configuration files in the following places: " msgstr "Шукав файли конфігурації в цих місцях: " -#: lib/common.php:134 +#: lib/common.php:139 msgid "You may wish to run the installer to fix this." msgstr "Запустіть файл інсталяції, аби полагодити це." -#: lib/common.php:135 +#: lib/common.php:140 msgid "Go to the installer." msgstr "Іти до файлу інсталяції." @@ -4730,6 +5256,14 @@ msgstr "Оновлення за допомогою служби миттєвих msgid "Updates by SMS" msgstr "Оновлення через СМС" +#: lib/connectsettingsaction.php:120 +msgid "Connections" +msgstr "З’єднання" + +#: lib/connectsettingsaction.php:121 +msgid "Authorized connected applications" +msgstr "Авторизовані під’єднані додатки" + #: lib/dberroraction.php:60 msgid "Database error" msgstr "Помилка бази даних" @@ -4915,15 +5449,15 @@ msgstr "Мб" msgid "kB" msgstr "кб" -#: lib/jabber.php:202 +#: lib/jabber.php:220 #, php-format msgid "[%s]" msgstr "[%s]" -#: lib/jabber.php:385 -#, fuzzy, php-format +#: lib/jabber.php:400 +#, php-format msgid "Unknown inbox source %d." -msgstr "Невідома мова «%s»." +msgstr "Невідоме джерело вхідного повідомлення %d." #: lib/joinform.php:114 msgid "Join" @@ -5201,7 +5735,7 @@ msgstr "" "повідомлення аби долучити користувачів до розмови. Такі повідомлення бачите " "лише Ви." -#: lib/mailbox.php:227 lib/noticelist.php:477 +#: lib/mailbox.php:227 lib/noticelist.php:482 msgid "from" msgstr "від" @@ -5319,57 +5853,55 @@ msgid "Do not share my location" msgstr "Приховувати мою локацію" #: lib/noticeform.php:216 -msgid "Hide this info" -msgstr "Сховати інформацію" - -#: lib/noticeform.php:217 msgid "" "Sorry, retrieving your geo location is taking longer than expected, please " "try again later" msgstr "" +"На жаль, отримання інформації щодо Вашого місцезнаходження займе більше " +"часу, ніж очікувалось; будь ласка, спробуйте пізніше" -#: lib/noticelist.php:428 +#: lib/noticelist.php:429 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" -#: lib/noticelist.php:429 +#: lib/noticelist.php:430 msgid "N" msgstr "Півн." -#: lib/noticelist.php:429 +#: lib/noticelist.php:430 msgid "S" msgstr "Півд." -#: lib/noticelist.php:430 +#: lib/noticelist.php:431 msgid "E" msgstr "Сх." -#: lib/noticelist.php:430 +#: lib/noticelist.php:431 msgid "W" msgstr "Зах." -#: lib/noticelist.php:436 +#: lib/noticelist.php:438 msgid "at" msgstr "в" -#: lib/noticelist.php:531 +#: lib/noticelist.php:558 msgid "in context" msgstr "в контексті" -#: lib/noticelist.php:556 +#: lib/noticelist.php:583 msgid "Repeated by" msgstr "Вторуванні" -#: lib/noticelist.php:585 +#: lib/noticelist.php:610 msgid "Reply to this notice" msgstr "Відповісти на цей допис" -#: lib/noticelist.php:586 +#: lib/noticelist.php:611 msgid "Reply" msgstr "Відповісти" -#: lib/noticelist.php:628 +#: lib/noticelist.php:655 msgid "Notice repeated" msgstr "Допис вторували" @@ -5401,11 +5933,7 @@ msgstr "Помилка при додаванні віддаленого проф msgid "Duplicate notice" msgstr "Дублікат допису" -#: lib/oauthstore.php:466 lib/subs.php:48 -msgid "You have been banned from subscribing." -msgstr "Вас позбавлено можливості підписатись." - -#: lib/oauthstore.php:491 +#: lib/oauthstore.php:490 msgid "Couldn't insert new subscription." msgstr "Не вдалося додати нову підписку." @@ -5421,19 +5949,19 @@ msgstr "Відповіді" msgid "Favorites" msgstr "Обрані" -#: lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "Вхідні" -#: lib/personalgroupnav.php:125 +#: lib/personalgroupnav.php:126 msgid "Your incoming messages" msgstr "Ваші вхідні повідомлення" -#: lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 msgid "Outbox" msgstr "Вихідні" -#: lib/personalgroupnav.php:130 +#: lib/personalgroupnav.php:131 msgid "Your sent messages" msgstr "Надіслані вами повідомлення" @@ -5510,6 +6038,10 @@ msgstr "Повторити цей допис?" msgid "Repeat this notice" msgstr "Вторувати цьому допису" +#: lib/router.php:665 +msgid "No single user defined for single-user mode." +msgstr "Користувача для однокористувацького режиму не визначено." + #: lib/sandboxform.php:67 msgid "Sandbox" msgstr "Пісочниця" @@ -5577,34 +6109,6 @@ msgstr "Люди підписані до %s" msgid "Groups %s is a member of" msgstr "%s бере участь в цих групах" -#: lib/subs.php:52 -msgid "Already subscribed!" -msgstr "Вже підписаний!" - -#: lib/subs.php:56 -msgid "User has blocked you." -msgstr "Користувач заблокував Вас." - -#: lib/subs.php:63 -msgid "Could not subscribe." -msgstr "Невдала підписка." - -#: lib/subs.php:82 -msgid "Could not subscribe other to you." -msgstr "Не вдалося підписати інших до Вас." - -#: lib/subs.php:137 -msgid "Not subscribed!" -msgstr "Не підписано!" - -#: lib/subs.php:142 -msgid "Couldn't delete self-subscription." -msgstr "Не можу видалити самопідписку." - -#: lib/subs.php:158 -msgid "Couldn't delete subscription." -msgstr "Не вдалося видалити підписку." - #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -5655,67 +6159,67 @@ msgstr "Аватара" msgid "User actions" msgstr "Діяльність користувача" -#: lib/userprofile.php:248 +#: lib/userprofile.php:251 msgid "Edit profile settings" msgstr "Налаштування профілю" -#: lib/userprofile.php:249 +#: lib/userprofile.php:252 msgid "Edit" msgstr "Правка" -#: lib/userprofile.php:272 +#: lib/userprofile.php:275 msgid "Send a direct message to this user" msgstr "Надіслати пряме повідомлення цьому користувачеві" -#: lib/userprofile.php:273 +#: lib/userprofile.php:276 msgid "Message" msgstr "Повідомлення" -#: lib/userprofile.php:311 +#: lib/userprofile.php:314 msgid "Moderate" msgstr "Модерувати" -#: lib/util.php:877 +#: lib/util.php:952 msgid "a few seconds ago" msgstr "мить тому" -#: lib/util.php:879 +#: lib/util.php:954 msgid "about a minute ago" msgstr "хвилину тому" -#: lib/util.php:881 +#: lib/util.php:956 #, php-format msgid "about %d minutes ago" msgstr "близько %d хвилин тому" -#: lib/util.php:883 +#: lib/util.php:958 msgid "about an hour ago" msgstr "годину тому" -#: lib/util.php:885 +#: lib/util.php:960 #, php-format msgid "about %d hours ago" msgstr "близько %d годин тому" -#: lib/util.php:887 +#: lib/util.php:962 msgid "about a day ago" msgstr "день тому" -#: lib/util.php:889 +#: lib/util.php:964 #, php-format msgid "about %d days ago" msgstr "близько %d днів тому" -#: lib/util.php:891 +#: lib/util.php:966 msgid "about a month ago" msgstr "місяць тому" -#: lib/util.php:893 +#: lib/util.php:968 #, php-format msgid "about %d months ago" msgstr "близько %d місяців тому" -#: lib/util.php:895 +#: lib/util.php:970 msgid "about a year ago" msgstr "рік тому" @@ -5729,7 +6233,7 @@ msgstr "%s є неприпустимим кольором!" msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "%s неприпустимий колір! Використайте 3 або 6 знаків (HEX-формат)" -#: scripts/xmppdaemon.php:301 +#: lib/xmppmanager.php:402 #, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "" diff --git a/locale/vi/LC_MESSAGES/statusnet.po b/locale/vi/LC_MESSAGES/statusnet.po index 82d4d2037a..4dcc584883 100644 --- a/locale/vi/LC_MESSAGES/statusnet.po +++ b/locale/vi/LC_MESSAGES/statusnet.po @@ -7,17 +7,76 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-01-13 22:04+0000\n" -"PO-Revision-Date: 2010-01-13 22:06:21+0000\n" +"POT-Creation-Date: 2010-02-24 23:49+0000\n" +"PO-Revision-Date: 2010-02-24 23:51:57+0000\n" "Language-Team: Vietnamese\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha (r61027); Translate extension (2010-01-04)\n" +"X-Generator: MediaWiki 1.17alpha (r62925); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: vi\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: actions/accessadminpanel.php:54 lib/adminpanelaction.php:326 +#, fuzzy +msgid "Access" +msgstr "Chấp nhận" + +#: actions/accessadminpanel.php:65 +#, fuzzy +msgid "Site access settings" +msgstr "Thay đổi hình đại diện" + +#: actions/accessadminpanel.php:158 +#, fuzzy +msgid "Registration" +msgstr "Đăng ký" + +#: actions/accessadminpanel.php:161 +#, fuzzy +msgid "Private" +msgstr "Riêng tư" + +#: actions/accessadminpanel.php:163 +msgid "Prohibit anonymous users (not logged in) from viewing site?" +msgstr "" + +#: actions/accessadminpanel.php:167 +#, fuzzy +msgid "Invite only" +msgstr "Thư mời" + +#: actions/accessadminpanel.php:169 +msgid "Make registration invitation only." +msgstr "" + +#: actions/accessadminpanel.php:173 +#, fuzzy +msgid "Closed" +msgstr "Ban user" + +#: actions/accessadminpanel.php:175 +msgid "Disable new registrations." +msgstr "" + +#: actions/accessadminpanel.php:189 actions/designadminpanel.php:586 +#: actions/emailsettings.php:195 actions/imsettings.php:163 +#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 +#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 +#: actions/siteadminpanel.php:336 actions/smssettings.php:181 +#: actions/subscriptions.php:208 actions/tagother.php:154 +#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 lib/designsettings.php:256 +#: lib/groupeditform.php:202 +msgid "Save" +msgstr "Lưu" + +#: actions/accessadminpanel.php:189 +#, fuzzy +msgid "Save access settings" +msgstr "Thay đổi hình đại diện" + #: actions/all.php:63 actions/public.php:97 actions/replies.php:92 #: actions/showfavorites.php:137 actions/tag.php:51 #, fuzzy @@ -33,25 +92,29 @@ msgstr "Không có tin nhắn nào." #: 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:144 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apistatusesupdate.php:148 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:78 #: actions/apitimelinehome.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/otp.php:76 #: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154 -#: actions/replies.php:73 actions/repliesrss.php:38 +#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 #: 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:302 lib/command.php:355 #: lib/command.php:401 lib/command.php:462 lib/command.php:518 #: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 -#: lib/subs.php:34 lib/subs.php:125 msgid "No such user." msgstr "Không có user nào." +#: actions/all.php:84 +#, fuzzy, php-format +msgid "%1$s and friends, page %2$d" +msgstr "%s và bạn bè" + #: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 -#: actions/apitimelinefriends.php:115 actions/apitimelinehome.php:115 +#: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" @@ -92,7 +155,7 @@ msgid "" "his or her attention](%%%%action.newnotice%%%%?status_textarea=%3$s)." msgstr "" -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211 #, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " @@ -104,8 +167,8 @@ msgstr "" msgid "You and friends" msgstr "%s và bạn bè" -#: actions/allrss.php:119 actions/apitimelinefriends.php:122 -#: actions/apitimelinehome.php:122 +#: actions/allrss.php:119 actions/apitimelinefriends.php:119 +#: actions/apitimelinehome.php:120 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "" @@ -115,23 +178,23 @@ msgstr "" #: actions/apiaccountupdateprofile.php:97 #: actions/apiaccountupdateprofilebackgroundimage.php:94 #: actions/apiaccountupdateprofilecolors.php:118 -#: 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:136 actions/apigroupismember.php:114 -#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 -#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 -#: actions/apigroupmembership.php:106 actions/apigroupshow.php:105 -#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 -#: actions/apistatusesretweets.php:112 actions/apistatusesshow.php:108 -#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93 -#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:146 -#: actions/apitimelinefriends.php:156 actions/apitimelinegroup.php:150 -#: actions/apitimelinehome.php:156 actions/apitimelinementions.php:151 -#: actions/apitimelinepublic.php:131 actions/apitimelineretweetedbyme.php:122 +#: actions/apiaccountverifycredentials.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:128 actions/apigroupcreate.php:136 +#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 +#: actions/apigroupleave.php:141 actions/apigrouplist.php:132 +#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 +#: actions/apigroupshow.php:115 actions/apihelptest.php:88 +#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 +#: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 #: actions/apitimelineretweetedtome.php:121 -#: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141 -#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 +#: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 +#: actions/apitimelineuser.php:207 actions/apiusershow.php:101 #, fuzzy msgid "API method not found." msgstr "Phương thức API không tìm thấy!" @@ -146,7 +209,7 @@ msgstr "Phương thức API không tìm thấy!" #: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 #: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 #: actions/apigroupleave.php:91 actions/apistatusesretweet.php:65 -#: actions/apistatusesupdate.php:114 +#: actions/apistatusesupdate.php:118 msgid "This method requires a POST." msgstr "Phương thức này yêu cầu là POST." @@ -177,8 +240,9 @@ msgstr "Không thể lưu hồ sơ cá nhân." #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:97 -#: actions/apistatusesupdate.php:127 actions/avatarsettings.php:257 -#: actions/designadminpanel.php:122 actions/newnotice.php:94 +#: actions/apistatusesupdate.php:131 actions/avatarsettings.php:257 +#: actions/designadminpanel.php:122 actions/editapplication.php:118 +#: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 #, php-format msgid "" @@ -303,12 +367,12 @@ msgstr "Không thể cập nhật thành viên." msgid "Two user ids or screen_names must be supplied." msgstr "" -#: actions/apifriendshipsshow.php:135 +#: actions/apifriendshipsshow.php:134 #, fuzzy msgid "Could not determine source user." msgstr "Không thể lấy lại các tin nhắn ưa thích" -#: actions/apifriendshipsshow.php:143 +#: actions/apifriendshipsshow.php:142 #, fuzzy msgid "Could not find target user." msgstr "Không tìm thấy bất kỳ trạng thái nào." @@ -331,7 +395,8 @@ msgstr "Biệt hiệu này đã dùng rồi. Hãy nhập biệt hiệu khác." msgid "Not a valid nickname." msgstr "Biệt hiệu không hợp lệ." -#: actions/apigroupcreate.php:196 actions/editgroup.php:195 +#: actions/apigroupcreate.php:196 actions/editapplication.php:215 +#: actions/editgroup.php:195 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:217 msgid "Homepage is not a valid URL." @@ -343,7 +408,8 @@ msgstr "Trang chủ không phải là URL" msgid "Full name is too long (max 255 chars)." msgstr "Tên đầy đủ quá dài (tối đa là 255 ký tự)." -#: actions/apigroupcreate.php:213 +#: actions/apigroupcreate.php:213 actions/editapplication.php:190 +#: actions/newapplication.php:172 #, fuzzy, php-format msgid "Description is too long (max %d chars)." msgstr "Lý lịch quá dài (không quá 140 ký tự)" @@ -379,7 +445,7 @@ msgstr "" #: actions/apigroupismember.php:95 actions/apigroupjoin.php:104 #: actions/apigroupleave.php:104 actions/apigroupmembership.php:91 -#: actions/apigroupshow.php:90 actions/apitimelinegroup.php:91 +#: actions/apigroupshow.php:82 actions/apitimelinegroup.php:91 #, fuzzy msgid "Group not found!" msgstr "Phương thức API không tìm thấy!" @@ -423,6 +489,115 @@ msgstr "%s và nhóm" msgid "groups on %s" msgstr "Mã nhóm" +#: actions/apioauthauthorize.php:101 +msgid "No oauth_token parameter provided." +msgstr "" + +#: actions/apioauthauthorize.php:106 +#, fuzzy +msgid "Invalid token." +msgstr "Kích thước không hợp lệ." + +#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 +#: actions/deletenotice.php:157 actions/disfavor.php:74 +#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54 +#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupunblock.php:66 actions/imsettings.php:206 +#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 +#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 +#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135 +#: actions/othersettings.php:145 actions/passwordsettings.php:138 +#: actions/profilesettings.php:194 actions/recoverpassword.php:337 +#: actions/register.php:165 actions/remotesubscribe.php:77 +#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 +#: actions/subscribe.php:86 actions/tagother.php:166 +#: 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/apioauthauthorize.php:135 +#, fuzzy +msgid "Invalid nickname / password!" +msgstr "Tên đăng nhập hoặc mật khẩu không hợp lệ." + +#: actions/apioauthauthorize.php:159 +#, fuzzy +msgid "Database error deleting OAuth application user." +msgstr "Lỗi xảy ra khi tạo thành viên." + +#: actions/apioauthauthorize.php:185 +#, fuzzy +msgid "Database error inserting OAuth application user." +msgstr "Lỗi cơ sở dữ liệu khi chèn trả lời: %s" + +#: actions/apioauthauthorize.php:214 +#, php-format +msgid "" +"The request token %s has been authorized. Please exchange it for an access " +"token." +msgstr "" + +#: actions/apioauthauthorize.php:227 +#, php-format +msgid "The request token %s has been denied and revoked." +msgstr "" + +#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 +#: actions/designadminpanel.php:103 actions/editapplication.php:139 +#: actions/emailsettings.php:256 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/newapplication.php:121 +#: actions/oauthconnectionssettings.php:147 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/apioauthauthorize.php:259 +msgid "An application would like to connect to your account" +msgstr "" + +#: actions/apioauthauthorize.php:276 +msgid "Allow or deny access" +msgstr "" + +#: actions/apioauthauthorize.php:292 +#, php-format +msgid "" +"The application %1$s by %2$s would like " +"the ability to %3$s your %4$s account data. You should only " +"give access to your %4$s account to third parties you trust." +msgstr "" + +#: actions/apioauthauthorize.php:310 lib/action.php:441 +#, fuzzy +msgid "Account" +msgstr "Giới thiệu" + +#: actions/apioauthauthorize.php:313 actions/login.php:230 +#: actions/profilesettings.php:106 actions/register.php:424 +#: actions/showgroup.php:236 actions/tagother.php:94 +#: actions/userauthorization.php:145 lib/groupeditform.php:152 +#: lib/userprofile.php:131 +msgid "Nickname" +msgstr "Biệt danh" + +#: actions/apioauthauthorize.php:316 actions/login.php:233 +#: actions/register.php:429 lib/accountsettingsaction.php:116 +msgid "Password" +msgstr "Mật khẩu" + +#: actions/apioauthauthorize.php:328 +msgid "Deny" +msgstr "" + +#: actions/apioauthauthorize.php:334 +msgid "Allow" +msgstr "" + +#: actions/apioauthauthorize.php:351 +msgid "Allow or deny access to your account information." +msgstr "" + #: 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" @@ -455,17 +630,17 @@ msgstr "Hình đại diện đã được cập nhật." 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/apistatusesupdate.php:157 actions/newnotice.php:155 +#: actions/apistatusesupdate.php:161 actions/newnotice.php:155 #: lib/mailhandler.php:60 #, 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/apistatusesupdate.php:198 +#: actions/apistatusesupdate.php:202 msgid "Not found" msgstr "Không tìm thấy" -#: actions/apistatusesupdate.php:221 actions/newnotice.php:178 +#: actions/apistatusesupdate.php:225 actions/newnotice.php:178 #, php-format msgid "Max notice size is %d chars, including attachment URL." msgstr "" @@ -480,7 +655,7 @@ msgstr "Không hỗ trợ kiểu file ảnh này." msgid "%1$s / Favorites from %2$s" msgstr "Tìm kiếm các tin nhắn ưa thích của %s" -#: actions/apitimelinefavorites.php:120 +#: actions/apitimelinefavorites.php:117 #, fuzzy, php-format msgid "%1$s updates favorited by %2$s / %2$s." msgstr "Tất cả các cập nhật của %s" @@ -491,7 +666,7 @@ msgstr "Tất cả các cập nhật của %s" msgid "%s timeline" msgstr "Dòng tin nhắn của %s" -#: actions/apitimelinegroup.php:117 actions/apitimelineuser.php:126 +#: actions/apitimelinegroup.php:114 actions/apitimelineuser.php:126 #: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" @@ -507,27 +682,22 @@ msgstr "%1$s / Các cập nhật đang trả lời tới %2$s" msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "" -#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:103 #, fuzzy, php-format msgid "%s public timeline" msgstr "Dòng tin công cộng" -#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "%s cập nhật từ tất cả mọi người!" -#: actions/apitimelineretweetedbyme.php:112 -#, php-format -msgid "Repeated by %s" -msgstr "" - #: actions/apitimelineretweetedtome.php:111 #, fuzzy, php-format msgid "Repeated to %s" msgstr "Trả lời cho %s" -#: actions/apitimelineretweetsofme.php:112 +#: actions/apitimelineretweetsofme.php:114 #, fuzzy, php-format msgid "Repeats of %s" msgstr "Trả lời cho %s" @@ -537,7 +707,7 @@ msgstr "Trả lời cho %s" msgid "Notices tagged with %s" msgstr "Thông báo được gắn thẻ %s" -#: actions/apitimelinetag.php:108 actions/tagrss.php:64 +#: actions/apitimelinetag.php:104 actions/tagrss.php:64 #, fuzzy, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Dòng tin nhắn cho %s" @@ -602,8 +772,8 @@ msgstr "" msgid "Preview" msgstr "Xem trước" -#: actions/avatarsettings.php:149 lib/deleteuserform.php:66 -#: lib/noticelist.php:611 +#: actions/avatarsettings.php:149 actions/showapplication.php:252 +#: lib/deleteuserform.php:66 lib/noticelist.php:637 #, fuzzy msgid "Delete" msgstr "Xóa tin nhắn" @@ -617,29 +787,6 @@ msgstr "Tải file" msgid "Crop" msgstr "Nhóm" -#: actions/avatarsettings.php:268 actions/deletenotice.php:157 -#: actions/disfavor.php:74 actions/emailsettings.php:238 actions/favor.php:75 -#: actions/geocode.php:50 actions/groupblock.php:66 actions/grouplogo.php:309 -#: actions/groupunblock.php:66 actions/imsettings.php:206 -#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 -#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 -#: actions/othersettings.php:145 actions/passwordsettings.php:138 -#: actions/profilesettings.php:194 actions/recoverpassword.php:337 -#: actions/register.php:165 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 -#: actions/subscribe.php:46 actions/tagother.php:166 -#: 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/avatarsettings.php:281 actions/designadminpanel.php:103 -#: actions/emailsettings.php:256 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/avatarsettings.php:328 msgid "Pick a square area of the image to be your avatar" msgstr "" @@ -678,8 +825,9 @@ msgid "" "will not be notified of any @-replies from them." msgstr "" -#: actions/block.php:143 actions/deletenotice.php:145 -#: actions/deleteuser.php:147 actions/groupblock.php:178 +#: actions/block.php:143 actions/deleteapplication.php:153 +#: actions/deletenotice.php:145 actions/deleteuser.php:147 +#: actions/groupblock.php:178 msgid "No" msgstr "Không" @@ -688,13 +836,13 @@ msgstr "Không" msgid "Do not block this user" msgstr "Bỏ chặn người dùng này" -#: actions/block.php:144 actions/deletenotice.php:146 -#: actions/deleteuser.php:148 actions/groupblock.php:179 -#: lib/repeatform.php:132 +#: actions/block.php:144 actions/deleteapplication.php:158 +#: actions/deletenotice.php:146 actions/deleteuser.php:148 +#: actions/groupblock.php:179 lib/repeatform.php:132 msgid "Yes" msgstr "Có" -#: actions/block.php:144 actions/groupmembers.php:346 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80 #, fuzzy msgid "Block this user" msgstr "Ban user" @@ -780,7 +928,8 @@ msgid "Couldn't delete email confirmation." msgstr "Không thể xóa email xác nhận." #: actions/confirmaddress.php:144 -msgid "Confirm Address" +#, fuzzy +msgid "Confirm address" msgstr "Xác nhận địa chỉ" #: actions/confirmaddress.php:159 @@ -798,10 +947,55 @@ msgstr "Không có mã số xác nhận." msgid "Notices" msgstr "Tin nhắn" +#: actions/deleteapplication.php:63 +#, fuzzy +msgid "You must be logged in to delete an application." +msgstr "Bạn phải đăng nhập vào mới có thể gửi thư mời những " + +#: actions/deleteapplication.php:71 +#, fuzzy +msgid "Application not found." +msgstr "Tin nhắn không có hồ sơ cá nhân" + +#: actions/deleteapplication.php:78 actions/editapplication.php:77 +#: actions/showapplication.php:94 +#, fuzzy +msgid "You are not the owner of this application." +msgstr "Bạn chưa cập nhật thông tin riêng" + +#: actions/deleteapplication.php:102 actions/editapplication.php:127 +#: actions/newapplication.php:110 actions/showapplication.php:118 +#: lib/action.php:1197 +#, 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/deleteapplication.php:123 actions/deleteapplication.php:147 +#, fuzzy +msgid "Delete application" +msgstr "Không có tin nhắn nào." + +#: actions/deleteapplication.php:149 +msgid "" +"Are you sure you want to delete this application? This will clear all data " +"about the application from the database, including all existing user " +"connections." +msgstr "" + +#: actions/deleteapplication.php:156 +#, fuzzy +msgid "Do not delete this application" +msgstr "Không thể xóa tin nhắn này." + +#: actions/deleteapplication.php:160 +#, fuzzy +msgid "Delete this application" +msgstr "Xóa tin nhắn" + #: 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/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 #: lib/adminpanelaction.php:72 lib/profileformaction.php:63 #: lib/settingsaction.php:72 @@ -832,7 +1026,7 @@ msgstr "Bạn có chắc chắn là muốn xóa tin nhắn này không?" msgid "Do not delete this notice" msgstr "Không thể xóa tin nhắn này." -#: actions/deletenotice.php:146 lib/noticelist.php:611 +#: actions/deletenotice.php:146 lib/noticelist.php:637 #, fuzzy msgid "Delete this notice" msgstr "Xóa tin nhắn" @@ -979,16 +1173,6 @@ msgstr "" msgid "Reset back to default" msgstr "" -#: actions/designadminpanel.php:586 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 -#: actions/pathsadminpanel.php:324 actions/profilesettings.php:174 -#: actions/siteadminpanel.php:388 actions/smssettings.php:181 -#: actions/subscriptions.php:203 actions/tagother.php:154 -#: actions/useradminpanel.php:313 lib/designsettings.php:256 -#: lib/groupeditform.php:202 -msgid "Save" -msgstr "Lưu" - #: actions/designadminpanel.php:587 lib/designsettings.php:257 #, fuzzy msgid "Save design" @@ -1004,10 +1188,86 @@ msgstr "Tin nhắn này đã có trong danh sách tin nhắn ưa thích của b msgid "Add to favorites" msgstr "Tìm kiếm các tin nhắn ưa thích của %s" -#: actions/doc.php:69 -msgid "No such document." +#: actions/doc.php:158 +#, fuzzy, php-format +msgid "No such document \"%s\"" msgstr "Không có tài liệu nào." +#: actions/editapplication.php:54 +#, fuzzy +msgid "Edit Application" +msgstr "Tin nhắn không có hồ sơ cá nhân" + +#: actions/editapplication.php:66 +#, fuzzy +msgid "You must be logged in to edit an application." +msgstr "Bạn phải đăng nhập vào mới có thể gửi thư mời những " + +#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:166 +#: actions/showapplication.php:87 +#, fuzzy +msgid "No such application." +msgstr "Không có tin nhắn nào." + +#: actions/editapplication.php:161 +msgid "Use this form to edit your application." +msgstr "" + +#: actions/editapplication.php:177 actions/newapplication.php:159 +#, fuzzy +msgid "Name is required." +msgstr "Cùng mật khẩu ở trên. Bắt buộc." + +#: actions/editapplication.php:180 actions/newapplication.php:165 +#, fuzzy +msgid "Name is too long (max 255 chars)." +msgstr "Tên đầy đủ quá dài (tối đa là 255 ký tự)." + +#: actions/editapplication.php:183 actions/newapplication.php:162 +#, fuzzy +msgid "Name 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/editapplication.php:186 actions/newapplication.php:168 +#, fuzzy +msgid "Description is required." +msgstr "Mô tả" + +#: actions/editapplication.php:194 +msgid "Source URL is too long." +msgstr "" + +#: actions/editapplication.php:200 actions/newapplication.php:185 +#, fuzzy +msgid "Source URL is not valid." +msgstr "Trang chủ không phải là URL" + +#: actions/editapplication.php:203 actions/newapplication.php:188 +msgid "Organization is required." +msgstr "" + +#: actions/editapplication.php:206 actions/newapplication.php:191 +#, fuzzy +msgid "Organization is too long (max 255 chars)." +msgstr "Tên khu vực quá dài (không quá 255 ký tự)." + +#: actions/editapplication.php:209 actions/newapplication.php:194 +msgid "Organization homepage is required." +msgstr "" + +#: actions/editapplication.php:218 actions/newapplication.php:206 +msgid "Callback is too long." +msgstr "" + +#: actions/editapplication.php:225 actions/newapplication.php:215 +msgid "Callback URL is not valid." +msgstr "" + +#: actions/editapplication.php:258 +#, fuzzy +msgid "Could not update application." +msgstr "Không thể cập nhật thành viên." + #: actions/editgroup.php:56 #, fuzzy, php-format msgid "Edit %s group" @@ -1038,7 +1298,7 @@ msgstr "Lý lịch quá dài (không quá 140 ký tự)" msgid "Could not update group." msgstr "Không thể cập nhật thành viên." -#: actions/editgroup.php:259 classes/User_group.php:390 +#: actions/editgroup.php:259 classes/User_group.php:433 #, fuzzy msgid "Could not create aliases." msgstr "Không thể tạo favorite." @@ -1082,7 +1342,8 @@ msgstr "" "để nhận tin nhắn và lời hướng dẫn." #: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 +#: actions/smssettings.php:126 lib/applicationeditform.php:331 +#: lib/applicationeditform.php:332 msgid "Cancel" msgstr "Hủy" @@ -1168,7 +1429,7 @@ msgid "Cannot normalize that email address" msgstr "Không thể bình thường hóa địa chỉ GTalk này" #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:157 +#: actions/siteadminpanel.php:143 msgid "Not a valid email address." msgstr "Địa chỉ email không hợp lệ." @@ -1182,7 +1443,7 @@ msgstr "Bạn đã dùng địa chỉ email này rồi" 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/emailsettings.php:353 actions/imsettings.php:317 +#: actions/emailsettings.php:353 actions/imsettings.php:319 #: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." msgstr "Không thể chèn mã xác nhận." @@ -1249,7 +1510,7 @@ msgstr "Tin nhắn này đã có trong danh sách tin nhắn ưa thích của b msgid "Disfavor favorite" msgstr "Không thích" -#: actions/favorited.php:65 lib/popularnoticesection.php:88 +#: actions/favorited.php:65 lib/popularnoticesection.php:91 #: lib/publicgroupnav.php:93 #, fuzzy msgid "Popular notices" @@ -1406,7 +1667,7 @@ msgstr "Người dùng không có thông tin." msgid "User is not a member of group." msgstr "Bạn chưa cập nhật thông tin riêng" -#: actions/groupblock.php:136 actions/groupmembers.php:314 +#: actions/groupblock.php:136 actions/groupmembers.php:316 #, fuzzy msgid "Block user from group" msgstr "Ban user" @@ -1509,24 +1770,24 @@ msgstr "Thành viên" msgid "A list of the users in this group." msgstr "" -#: actions/groupmembers.php:175 lib/action.php:442 lib/groupnav.php:107 +#: actions/groupmembers.php:175 lib/action.php:448 lib/groupnav.php:107 msgid "Admin" msgstr "" -#: actions/groupmembers.php:346 lib/blockform.php:69 +#: actions/groupmembers.php:348 lib/blockform.php:69 msgid "Block" msgstr "" -#: actions/groupmembers.php:441 +#: actions/groupmembers.php:443 #, 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/groupmembers.php:473 +#: actions/groupmembers.php:475 msgid "Make Admin" msgstr "" -#: actions/groupmembers.php:473 +#: actions/groupmembers.php:475 #, fuzzy msgid "Make this user an admin" msgstr "Kênh mà bạn tham gia" @@ -1707,6 +1968,11 @@ msgstr "" msgid "That is not your Jabber ID." msgstr "Đây không phải Jabber ID của bạn." +#: actions/inbox.php:59 +#, fuzzy, php-format +msgid "Inbox for %1$s - page %2$d" +msgstr "Hộp thư đến của %s" + #: actions/inbox.php:62 #, php-format msgid "Inbox for %s" @@ -1790,7 +2056,7 @@ msgstr "Tin nhắn cá nhân" 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/invite.php:197 lib/messageform.php:178 lib/noticeform.php:237 +#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:236 msgid "Send" msgstr "Gửi" @@ -1894,7 +2160,7 @@ msgstr "Sai tên đăng nhập hoặc mật khẩu." msgid "Error setting user. You are probably not authorized." msgstr "Chưa được phép." -#: actions/login.php:188 actions/login.php:241 lib/action.php:460 +#: actions/login.php:188 actions/login.php:241 lib/action.php:466 #: lib/logingroupnav.php:79 msgid "Login" msgstr "Đăng nhập" @@ -1903,17 +2169,6 @@ msgstr "Đăng nhập" msgid "Login to site" msgstr "" -#: actions/login.php:230 actions/profilesettings.php:106 -#: actions/register.php:424 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:233 actions/register.php:429 -#: lib/accountsettingsaction.php:116 -msgid "Password" -msgstr "Mật khẩu" - #: actions/login.php:236 actions/register.php:478 msgid "Remember me" msgstr "Nhớ tôi" @@ -1944,21 +2199,21 @@ msgstr "" "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 +#: actions/makeadmin.php:92 msgid "Only an admin can make another user an admin." msgstr "" -#: actions/makeadmin.php:95 +#: actions/makeadmin.php:96 #, fuzzy, php-format msgid "%1$s is already an admin for group \"%2$s\"." msgstr "Người dùng không có thông tin." -#: actions/makeadmin.php:132 +#: actions/makeadmin.php:133 #, fuzzy, php-format msgid "Can't get membership record for %1$s in group %2$s." msgstr "Không thể theo bạn này: %s đã có trong danh sách bạn bè của bạn rồi." -#: actions/makeadmin.php:145 +#: actions/makeadmin.php:146 #, fuzzy, php-format msgid "Can't make %1$s an admin for group %2$s." msgstr "Bạn phải đăng nhập vào mới có thể gửi thư mời những " @@ -1967,6 +2222,29 @@ msgstr "Bạn phải đăng nhập vào mới có thể gửi thư mời những msgid "No current status" msgstr "" +#: actions/newapplication.php:52 +#, fuzzy +msgid "New Application" +msgstr "Không có tin nhắn nào." + +#: actions/newapplication.php:64 +#, fuzzy +msgid "You must be logged in to register an application." +msgstr "Bạn phải đăng nhập vào mới có thể gửi thư mời những " + +#: actions/newapplication.php:143 +msgid "Use this form to register a new application." +msgstr "" + +#: actions/newapplication.php:176 +msgid "Source URL is required." +msgstr "" + +#: actions/newapplication.php:258 actions/newapplication.php:267 +#, fuzzy +msgid "Could not create application." +msgstr "Không thể tạo favorite." + #: actions/newgroup.php:53 #, fuzzy msgid "New group" @@ -2081,6 +2359,50 @@ msgstr "Tin đã gửi" msgid "Nudge sent!" msgstr "Tin đã gửi" +#: actions/oauthappssettings.php:59 +#, fuzzy +msgid "You must be logged in to list your applications." +msgstr "Bạn phải đăng nhập vào mới có thể gửi thư mời những " + +#: actions/oauthappssettings.php:74 +msgid "OAuth applications" +msgstr "" + +#: actions/oauthappssettings.php:85 +msgid "Applications you have registered" +msgstr "" + +#: actions/oauthappssettings.php:135 +#, php-format +msgid "You have not registered any applications yet." +msgstr "" + +#: actions/oauthconnectionssettings.php:72 +msgid "Connected applications" +msgstr "" + +#: actions/oauthconnectionssettings.php:83 +msgid "You have allowed the following applications to access you account." +msgstr "" + +#: actions/oauthconnectionssettings.php:175 +#, fuzzy +msgid "You are not a user of that application." +msgstr "Bạn chưa cập nhật thông tin riêng" + +#: actions/oauthconnectionssettings.php:186 +msgid "Unable to revoke access for app: " +msgstr "" + +#: actions/oauthconnectionssettings.php:198 +#, php-format +msgid "You have not authorized any applications to use your account." +msgstr "" + +#: actions/oauthconnectionssettings.php:211 +msgid "Developers can edit the registration settings for their applications " +msgstr "" + #: 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" @@ -2099,8 +2421,8 @@ msgstr "Kết nối" msgid "Only " msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1033 -#: lib/api.php:1061 lib/api.php:1171 +#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 +#: lib/api.php:1068 lib/api.php:1177 msgid "Not a supported data format." msgstr "Không hỗ trợ định dạng dữ liệu này." @@ -2115,7 +2437,7 @@ msgstr "Tìm kiếm thông báo" #: actions/othersettings.php:60 #, fuzzy -msgid "Other Settings" +msgid "Other settings" msgstr "Thiết lập tài khoản Twitter" #: actions/othersettings.php:71 @@ -2172,6 +2494,11 @@ msgstr "Nội dung tin nhắn không hợp lệ" msgid "Login token expired." msgstr "" +#: actions/outbox.php:58 +#, fuzzy, php-format +msgid "Outbox for %1$s - page %2$d" +msgstr "Hộp thư đi của %s" + #: actions/outbox.php:61 #, php-format msgid "Outbox for %s" @@ -2247,7 +2574,7 @@ msgstr "Không thể lưu mật khẩu mới" msgid "Password saved." msgstr "Đã lưu mật khẩu." -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:326 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:331 msgid "Paths" msgstr "" @@ -2255,146 +2582,163 @@ msgstr "" msgid "Path and server settings for this StatusNet site." msgstr "" -#: actions/pathsadminpanel.php:140 +#: actions/pathsadminpanel.php:157 #, fuzzy, php-format msgid "Theme directory not readable: %s" 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/pathsadminpanel.php:146 +#: actions/pathsadminpanel.php:163 #, php-format msgid "Avatar directory not writable: %s" msgstr "" -#: actions/pathsadminpanel.php:152 +#: actions/pathsadminpanel.php:169 #, php-format msgid "Background directory not writable: %s" msgstr "" -#: actions/pathsadminpanel.php:160 +#: actions/pathsadminpanel.php:177 #, php-format msgid "Locales directory not readable: %s" msgstr "" -#: actions/pathsadminpanel.php:166 +#: actions/pathsadminpanel.php:183 msgid "Invalid SSL server. The maximum length is 255 characters." msgstr "" -#: actions/pathsadminpanel.php:217 actions/siteadminpanel.php:58 +#: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58 #: lib/adminpanelaction.php:311 #, fuzzy msgid "Site" msgstr "Thư mời" -#: actions/pathsadminpanel.php:221 +#: actions/pathsadminpanel.php:238 +#, fuzzy +msgid "Server" +msgstr "Khôi phục" + +#: actions/pathsadminpanel.php:238 +msgid "Site's server hostname." +msgstr "" + +#: actions/pathsadminpanel.php:242 msgid "Path" msgstr "" -#: actions/pathsadminpanel.php:221 +#: actions/pathsadminpanel.php:242 #, fuzzy msgid "Site path" msgstr "Thông báo mới" -#: actions/pathsadminpanel.php:225 +#: actions/pathsadminpanel.php:246 msgid "Path to locales" msgstr "" -#: actions/pathsadminpanel.php:225 +#: actions/pathsadminpanel.php:246 msgid "Directory path to locales" msgstr "" -#: actions/pathsadminpanel.php:232 -msgid "Theme" -msgstr "" - -#: actions/pathsadminpanel.php:237 -msgid "Theme server" -msgstr "" - -#: actions/pathsadminpanel.php:241 -msgid "Theme path" -msgstr "" - -#: actions/pathsadminpanel.php:245 -msgid "Theme directory" +#: actions/pathsadminpanel.php:250 +msgid "Fancy URLs" msgstr "" #: actions/pathsadminpanel.php:252 +msgid "Use fancy (more readable and memorable) URLs?" +msgstr "" + +#: actions/pathsadminpanel.php:259 +msgid "Theme" +msgstr "" + +#: actions/pathsadminpanel.php:264 +msgid "Theme server" +msgstr "" + +#: actions/pathsadminpanel.php:268 +msgid "Theme path" +msgstr "" + +#: actions/pathsadminpanel.php:272 +msgid "Theme directory" +msgstr "" + +#: actions/pathsadminpanel.php:279 #, fuzzy msgid "Avatars" msgstr "Hình đại diện" -#: actions/pathsadminpanel.php:257 +#: actions/pathsadminpanel.php:284 #, fuzzy msgid "Avatar server" msgstr "Thay đổi hình đại diện" -#: actions/pathsadminpanel.php:261 +#: actions/pathsadminpanel.php:288 #, fuzzy msgid "Avatar path" msgstr "Hình đại diện đã được cập nhật." -#: actions/pathsadminpanel.php:265 +#: actions/pathsadminpanel.php:292 #, fuzzy msgid "Avatar directory" msgstr "Hình đại diện đã được cập nhật." -#: actions/pathsadminpanel.php:274 +#: actions/pathsadminpanel.php:301 #, fuzzy msgid "Backgrounds" msgstr "Background Theme:" -#: actions/pathsadminpanel.php:278 +#: actions/pathsadminpanel.php:305 #, fuzzy msgid "Background server" msgstr "Background Theme:" -#: actions/pathsadminpanel.php:282 +#: actions/pathsadminpanel.php:309 #, fuzzy msgid "Background path" msgstr "Background Theme:" -#: actions/pathsadminpanel.php:286 +#: actions/pathsadminpanel.php:313 #, fuzzy msgid "Background directory" msgstr "Background Theme:" -#: actions/pathsadminpanel.php:293 +#: actions/pathsadminpanel.php:320 #, fuzzy msgid "SSL" msgstr "SMS" -#: actions/pathsadminpanel.php:296 actions/siteadminpanel.php:346 +#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 #, fuzzy msgid "Never" msgstr "Khôi phục" -#: actions/pathsadminpanel.php:297 +#: actions/pathsadminpanel.php:324 #, fuzzy msgid "Sometimes" msgstr "Tin nhắn" -#: actions/pathsadminpanel.php:298 +#: actions/pathsadminpanel.php:325 msgid "Always" msgstr "" -#: actions/pathsadminpanel.php:302 +#: actions/pathsadminpanel.php:329 msgid "Use SSL" msgstr "" -#: actions/pathsadminpanel.php:303 +#: actions/pathsadminpanel.php:330 msgid "When to use SSL" msgstr "" -#: actions/pathsadminpanel.php:308 +#: actions/pathsadminpanel.php:335 #, fuzzy msgid "SSL server" msgstr "Khôi phục" -#: actions/pathsadminpanel.php:309 +#: actions/pathsadminpanel.php:336 msgid "Server to direct SSL requests to" msgstr "" -#: actions/pathsadminpanel.php:325 +#: actions/pathsadminpanel.php:352 #, fuzzy msgid "Save paths" msgstr "Thông báo mới" @@ -2458,7 +2802,7 @@ msgid "Full name" msgstr "Tên đầy đủ" #: actions/profilesettings.php:115 actions/register.php:453 -#: lib/groupeditform.php:161 +#: lib/applicationeditform.php:228 lib/groupeditform.php:161 msgid "Homepage" msgstr "Trang chủ hoặc Blog" @@ -2482,7 +2826,7 @@ msgstr "Lý lịch" #: actions/profilesettings.php:132 actions/register.php:471 #: actions/showgroup.php:256 actions/tagother.php:112 -#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:164 msgid "Location" msgstr "Thành phố" @@ -2506,7 +2850,7 @@ msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" -#: actions/profilesettings.php:151 actions/siteadminpanel.php:294 +#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 msgid "Language" msgstr "Ngôn ngữ" @@ -2532,7 +2876,7 @@ msgstr "Tự động theo những người nào đăng ký theo tôi" msgid "Bio is too long (max %d chars)." msgstr "Lý lịch quá dài (không quá 140 ký tự)" -#: actions/profilesettings.php:235 actions/siteadminpanel.php:164 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 msgid "Timezone not selected." msgstr "" @@ -2546,26 +2890,26 @@ msgstr "Ngôn ngữ quá dài (tối đa là 50 ký tự)." msgid "Invalid tag: \"%s\"" msgstr "Trang chủ '%s' không hợp lệ" -#: actions/profilesettings.php:302 +#: actions/profilesettings.php:306 #, fuzzy msgid "Couldn't update user for autosubscribe." msgstr "Không thể cập nhật thành viên." -#: actions/profilesettings.php:359 +#: actions/profilesettings.php:363 #, fuzzy msgid "Couldn't save location prefs." msgstr "Không thể lưu hồ sơ cá nhân." -#: actions/profilesettings.php:371 +#: actions/profilesettings.php:375 msgid "Couldn't save profile." msgstr "Không thể lưu hồ sơ cá nhân." -#: actions/profilesettings.php:379 +#: actions/profilesettings.php:383 #, fuzzy msgid "Couldn't save tags." msgstr "Không thể lưu hồ sơ cá nhân." -#: actions/profilesettings.php:387 lib/adminpanelaction.php:137 +#: actions/profilesettings.php:391 lib/adminpanelaction.php:137 msgid "Settings saved." msgstr "Đã lưu các điều chỉnh." @@ -2588,39 +2932,39 @@ msgstr "Dòng tin công cộng" msgid "Public timeline" msgstr "Dòng tin công cộng" -#: actions/public.php:151 +#: actions/public.php:159 #, fuzzy msgid "Public Stream Feed (RSS 1.0)" msgstr "Dòng tin công cộng" -#: actions/public.php:155 +#: actions/public.php:163 #, fuzzy msgid "Public Stream Feed (RSS 2.0)" msgstr "Dòng tin công cộng" -#: actions/public.php:159 +#: actions/public.php:167 #, fuzzy msgid "Public Stream Feed (Atom)" msgstr "Dòng tin công cộng" -#: actions/public.php:179 +#: actions/public.php:187 #, php-format msgid "" "This is the public timeline for %%site.name%% but no one has posted anything " "yet." msgstr "" -#: actions/public.php:182 +#: actions/public.php:190 msgid "Be the first to post!" msgstr "" -#: actions/public.php:186 +#: actions/public.php:194 #, php-format msgid "" "Why not [register an account](%%action.register%%) and be the first to post!" msgstr "" -#: actions/public.php:233 +#: actions/public.php:241 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2629,7 +2973,7 @@ msgid "" "friends, family, and colleagues! ([Read more](%%doc.help%%))" msgstr "" -#: actions/public.php:238 +#: actions/public.php:246 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2663,7 +3007,7 @@ msgid "" "one!" msgstr "" -#: actions/publictagcloud.php:131 +#: actions/publictagcloud.php:134 msgid "Tag cloud" msgstr "" @@ -2803,7 +3147,7 @@ msgstr "Lỗi xảy ra với mã xác nhận." msgid "Registration successful" msgstr "Đăng ký thành công" -#: actions/register.php:114 actions/register.php:503 lib/action.php:457 +#: actions/register.php:114 actions/register.php:503 lib/action.php:463 #: lib/logingroupnav.php:85 msgid "Register" msgstr "Đăng ký" @@ -2846,7 +3190,7 @@ msgid "Same as password above. Required." msgstr "Cùng mật khẩu ở trên. Bắt buộc." #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:270 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 msgid "Email" msgstr "Email" @@ -2950,7 +3294,7 @@ 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/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:365 +#: lib/userprofile.php:368 msgid "Subscribe" msgstr "Theo bạn này" @@ -2991,7 +3335,7 @@ msgstr "Bạn không thể đăng ký nếu không đồng ý các điều kho msgid "You already repeated that notice." msgstr "Bạn đã theo những người này:" -#: actions/repeat.php:114 lib/noticelist.php:629 +#: actions/repeat.php:114 lib/noticelist.php:656 #, fuzzy msgid "Repeated" msgstr "Tạo" @@ -3007,6 +3351,11 @@ msgstr "Tạo" msgid "Replies to %s" msgstr "Trả lời cho %s" +#: actions/replies.php:127 +#, fuzzy, php-format +msgid "Replies to %1$s, page %2$d" +msgstr "%s chào mừng bạn " + #: actions/replies.php:144 #, fuzzy, php-format msgid "Replies feed for %s (RSS 1.0)" @@ -3048,6 +3397,11 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "%s chào mừng bạn " +#: actions/rsd.php:146 actions/version.php:157 +#, fuzzy +msgid "StatusNet" +msgstr "Hình đại diện đã được cập nhật." + #: actions/sandbox.php:65 actions/unsandbox.php:65 #, fuzzy msgid "You cannot sandbox users on this site." @@ -3058,6 +3412,125 @@ msgstr "Bạn đã theo những người này:" msgid "User is already sandboxed." msgstr "Người dùng không có thông tin." +#: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:336 +msgid "Sessions" +msgstr "" + +#: actions/sessionsadminpanel.php:65 +msgid "Session settings for this StatusNet site." +msgstr "" + +#: actions/sessionsadminpanel.php:175 +msgid "Handle sessions" +msgstr "" + +#: actions/sessionsadminpanel.php:177 +msgid "Whether to handle sessions ourselves." +msgstr "" + +#: actions/sessionsadminpanel.php:181 +msgid "Session debugging" +msgstr "" + +#: actions/sessionsadminpanel.php:183 +msgid "Turn on debugging output for sessions." +msgstr "" + +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/useradminpanel.php:293 +#, fuzzy +msgid "Save site settings" +msgstr "Thay đổi hình đại diện" + +#: actions/showapplication.php:82 +#, fuzzy +msgid "You must be logged in to view an application." +msgstr "Bạn phải đăng nhập vào mới có thể gửi thư mời những " + +#: actions/showapplication.php:157 +#, fuzzy +msgid "Application profile" +msgstr "Tin nhắn không có hồ sơ cá nhân" + +#: actions/showapplication.php:159 lib/applicationeditform.php:180 +msgid "Icon" +msgstr "" + +#: actions/showapplication.php:169 actions/version.php:195 +#: lib/applicationeditform.php:195 +#, fuzzy +msgid "Name" +msgstr "Biệt danh" + +#: actions/showapplication.php:178 lib/applicationeditform.php:222 +#, fuzzy +msgid "Organization" +msgstr "Thư mời đã gửi" + +#: actions/showapplication.php:187 actions/version.php:198 +#: lib/applicationeditform.php:209 lib/groupeditform.php:172 +msgid "Description" +msgstr "Mô tả" + +#: actions/showapplication.php:192 actions/showgroup.php:429 +#: lib/profileaction.php:174 +msgid "Statistics" +msgstr "Số liệu thống kê" + +#: actions/showapplication.php:203 +#, php-format +msgid "Created by %1$s - %2$s access by default - %3$d users" +msgstr "" + +#: actions/showapplication.php:213 +msgid "Application actions" +msgstr "" + +#: actions/showapplication.php:236 +msgid "Reset key & secret" +msgstr "" + +#: actions/showapplication.php:261 +msgid "Application info" +msgstr "" + +#: actions/showapplication.php:263 +msgid "Consumer key" +msgstr "" + +#: actions/showapplication.php:268 +msgid "Consumer secret" +msgstr "" + +#: actions/showapplication.php:273 +msgid "Request token URL" +msgstr "" + +#: actions/showapplication.php:278 +msgid "Access token URL" +msgstr "" + +#: actions/showapplication.php:283 +msgid "Authorize URL" +msgstr "" + +#: actions/showapplication.php:288 +msgid "" +"Note: We support HMAC-SHA1 signatures. We do not support the plaintext " +"signature method." +msgstr "" + +#: actions/showapplication.php:309 +#, fuzzy +msgid "Are you sure you want to reset your consumer key and secret?" +msgstr "Bạn có chắc chắn là muốn xóa tin nhắn này không?" + +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%1$s's favorite notices, page %2$d" +msgstr "Những tin nhắn ưa thích của %s" + #: 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" @@ -3107,18 +3580,23 @@ msgstr "" msgid "%s group" msgstr "%s và nhóm" +#: actions/showgroup.php:84 +#, fuzzy, php-format +msgid "%1$s group, page %2$d" +msgstr "Thành viên" + #: actions/showgroup.php:218 #, fuzzy msgid "Group profile" msgstr "Thông tin nhóm" #: actions/showgroup.php:263 actions/tagother.php:118 -#: actions/userauthorization.php:167 lib/userprofile.php:177 +#: actions/userauthorization.php:175 lib/userprofile.php:177 msgid "URL" msgstr "" #: actions/showgroup.php:274 actions/tagother.php:128 -#: actions/userauthorization.php:179 lib/userprofile.php:194 +#: actions/userauthorization.php:187 lib/userprofile.php:194 #, fuzzy msgid "Note" msgstr "Tin nhắn" @@ -3167,10 +3645,6 @@ msgstr "" msgid "All members" msgstr "Thành viên" -#: actions/showgroup.php:429 lib/profileaction.php:174 -msgid "Statistics" -msgstr "Số liệu thống kê" - #: actions/showgroup.php:432 #, fuzzy msgid "Created" @@ -3228,6 +3702,11 @@ msgstr "Tin đã gửi" msgid " tagged %s" msgstr "Thông báo được gắn thẻ %s" +#: actions/showstream.php:79 +#, fuzzy, php-format +msgid "%1$s, page %2$d" +msgstr "%s và bạn bè" + #: actions/showstream.php:122 #, fuzzy, php-format msgid "Notice feed for %1$s tagged %2$s (RSS 1.0)" @@ -3253,25 +3732,25 @@ msgstr "Dòng tin nhắn cho %s" msgid "FOAF for %s" msgstr "Hộp thư đi của %s" -#: actions/showstream.php:191 +#: actions/showstream.php:200 #, php-format msgid "This is the timeline for %1$s but %2$s hasn't posted anything yet." msgstr "" -#: actions/showstream.php:196 +#: actions/showstream.php:205 msgid "" "Seen anything interesting recently? You haven't posted any notices yet, now " "would be a good time to start :)" msgstr "" -#: actions/showstream.php:198 +#: actions/showstream.php:207 #, php-format msgid "" "You can try to nudge %1$s or [post something to his or her attention](%%%%" "action.newnotice%%%%?status_textarea=%2$s)." msgstr "" -#: actions/showstream.php:234 +#: actions/showstream.php:243 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3280,7 +3759,7 @@ msgid "" "follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showstream.php:239 +#: actions/showstream.php:248 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3288,7 +3767,7 @@ msgid "" "[StatusNet](http://status.net/) tool. " msgstr "" -#: actions/showstream.php:313 +#: actions/showstream.php:305 #, fuzzy, php-format msgid "Repeat of %s" msgstr "Trả lời cho %s" @@ -3307,206 +3786,148 @@ msgstr "Người dùng không có thông tin." msgid "Basic settings for this StatusNet site." msgstr "" -#: actions/siteadminpanel.php:146 +#: actions/siteadminpanel.php:132 msgid "Site name must have non-zero length." msgstr "" -#: actions/siteadminpanel.php:154 +#: actions/siteadminpanel.php:140 #, fuzzy msgid "You must have a valid contact email address." msgstr "Địa chỉ email không hợp lệ." -#: actions/siteadminpanel.php:172 +#: actions/siteadminpanel.php:158 #, php-format msgid "Unknown language \"%s\"." msgstr "" -#: actions/siteadminpanel.php:179 +#: actions/siteadminpanel.php:165 msgid "Invalid snapshot report URL." msgstr "" -#: actions/siteadminpanel.php:185 +#: actions/siteadminpanel.php:171 msgid "Invalid snapshot run value." msgstr "" -#: actions/siteadminpanel.php:191 +#: actions/siteadminpanel.php:177 msgid "Snapshot frequency must be a number." msgstr "" -#: actions/siteadminpanel.php:197 +#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "" -#: actions/siteadminpanel.php:203 +#: actions/siteadminpanel.php:189 msgid "Dupe limit must 1 or more seconds." msgstr "" -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:239 msgid "General" msgstr "" -#: actions/siteadminpanel.php:256 +#: actions/siteadminpanel.php:242 #, fuzzy msgid "Site name" msgstr "Thông báo mới" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:243 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "" -#: actions/siteadminpanel.php:261 +#: actions/siteadminpanel.php:247 msgid "Brought by" msgstr "" -#: actions/siteadminpanel.php:262 +#: actions/siteadminpanel.php:248 msgid "Text used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:266 +#: actions/siteadminpanel.php:252 msgid "Brought by URL" msgstr "" -#: actions/siteadminpanel.php:267 +#: actions/siteadminpanel.php:253 msgid "URL used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:271 +#: actions/siteadminpanel.php:257 #, fuzzy msgid "Contact email address for your site" msgstr "Dia chi email moi de gui tin nhan den %s" -#: actions/siteadminpanel.php:277 +#: actions/siteadminpanel.php:263 #, fuzzy msgid "Local" msgstr "Thành phố" -#: actions/siteadminpanel.php:288 +#: actions/siteadminpanel.php:274 msgid "Default timezone" msgstr "" -#: actions/siteadminpanel.php:289 +#: actions/siteadminpanel.php:275 msgid "Default timezone for the site; usually UTC." msgstr "" -#: actions/siteadminpanel.php:295 +#: actions/siteadminpanel.php:281 #, fuzzy msgid "Default site language" msgstr "Ngôn ngữ bạn thích" -#: actions/siteadminpanel.php:303 -msgid "URLs" -msgstr "" - -#: actions/siteadminpanel.php:306 -#, fuzzy -msgid "Server" -msgstr "Khôi phục" - -#: actions/siteadminpanel.php:306 -msgid "Site's server hostname." -msgstr "" - -#: actions/siteadminpanel.php:310 -msgid "Fancy URLs" -msgstr "" - -#: actions/siteadminpanel.php:312 -msgid "Use fancy (more readable and memorable) URLs?" -msgstr "" - -#: actions/siteadminpanel.php:318 -#, fuzzy -msgid "Access" -msgstr "Chấp nhận" - -#: actions/siteadminpanel.php:321 -#, fuzzy -msgid "Private" -msgstr "Riêng tư" - -#: actions/siteadminpanel.php:323 -msgid "Prohibit anonymous users (not logged in) from viewing site?" -msgstr "" - -#: actions/siteadminpanel.php:327 -#, fuzzy -msgid "Invite only" -msgstr "Thư mời" - -#: actions/siteadminpanel.php:329 -msgid "Make registration invitation only." -msgstr "" - -#: actions/siteadminpanel.php:333 -#, fuzzy -msgid "Closed" -msgstr "Ban user" - -#: actions/siteadminpanel.php:335 -msgid "Disable new registrations." -msgstr "" - -#: actions/siteadminpanel.php:341 +#: actions/siteadminpanel.php:289 msgid "Snapshots" msgstr "" -#: actions/siteadminpanel.php:344 +#: actions/siteadminpanel.php:292 msgid "Randomly during Web hit" msgstr "" -#: actions/siteadminpanel.php:345 +#: actions/siteadminpanel.php:293 msgid "In a scheduled job" msgstr "" -#: actions/siteadminpanel.php:347 +#: actions/siteadminpanel.php:295 msgid "Data snapshots" msgstr "" -#: actions/siteadminpanel.php:348 +#: actions/siteadminpanel.php:296 msgid "When to send statistical data to status.net servers" msgstr "" -#: actions/siteadminpanel.php:353 +#: actions/siteadminpanel.php:301 msgid "Frequency" msgstr "" -#: actions/siteadminpanel.php:354 +#: actions/siteadminpanel.php:302 msgid "Snapshots will be sent once every N web hits" msgstr "" -#: actions/siteadminpanel.php:359 +#: actions/siteadminpanel.php:307 msgid "Report URL" msgstr "" -#: actions/siteadminpanel.php:360 +#: actions/siteadminpanel.php:308 msgid "Snapshots will be sent to this URL" msgstr "" -#: actions/siteadminpanel.php:367 +#: actions/siteadminpanel.php:315 msgid "Limits" msgstr "" -#: actions/siteadminpanel.php:370 +#: actions/siteadminpanel.php:318 msgid "Text limit" msgstr "" -#: actions/siteadminpanel.php:370 +#: actions/siteadminpanel.php:318 msgid "Maximum number of characters for notices." msgstr "" -#: actions/siteadminpanel.php:374 +#: actions/siteadminpanel.php:322 msgid "Dupe limit" msgstr "" -#: actions/siteadminpanel.php:374 +#: actions/siteadminpanel.php:322 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" -#: actions/siteadminpanel.php:388 actions/useradminpanel.php:313 -#, fuzzy -msgid "Save site settings" -msgstr "Thay đổi hình đại diện" - #: actions/smssettings.php:58 #, fuzzy msgid "SMS settings" @@ -3622,17 +4043,27 @@ msgstr "Không có mã nào được nhập" msgid "You are not subscribed to that profile." msgstr "Bạn chưa cập nhật thông tin riêng" -#: actions/subedit.php:83 +#: actions/subedit.php:83 classes/Subscription.php:89 +#: classes/Subscription.php:116 #, fuzzy msgid "Could not save subscription." msgstr "Không thể tạo đăng nhận." -#: actions/subscribe.php:55 -#, fuzzy -msgid "Not a local user." -msgstr "Không có user nào." +#: actions/subscribe.php:77 +msgid "This action only accepts POST requests." +msgstr "" -#: actions/subscribe.php:69 +#: actions/subscribe.php:107 +#, fuzzy +msgid "No such profile." +msgstr "Không có tin nhắn nào." + +#: actions/subscribe.php:117 +#, fuzzy +msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." +msgstr "Bạn chưa cập nhật thông tin riêng" + +#: actions/subscribe.php:145 #, fuzzy msgid "Subscribed" msgstr "Theo bạn này" @@ -3693,7 +4124,7 @@ msgstr "Có nhiều người gửi lời nhắn để bạn nghe theo." 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:121 +#: actions/subscriptions.php:126 #, php-format msgid "" "You're not listening to anyone's notices right now, try subscribing to " @@ -3703,20 +4134,25 @@ msgid "" "automatically subscribe to people you already follow there." msgstr "" -#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#: actions/subscriptions.php:128 actions/subscriptions.php:132 #, fuzzy, php-format msgid "%s is not listening to anyone." msgstr "%1$s dang theo doi tin nhan cua ban tren %2$s." -#: actions/subscriptions.php:194 +#: actions/subscriptions.php:199 #, fuzzy msgid "Jabber" msgstr "Không có Jabber ID." -#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:204 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "SMS" +#: actions/tag.php:68 +#, fuzzy, php-format +msgid "Notices tagged with %1$s, page %2$d" +msgstr "Dòng tin nhắn cho %s" + #: actions/tag.php:86 #, fuzzy, php-format msgid "Notice feed for tag %s (RSS 1.0)" @@ -3747,7 +4183,8 @@ msgstr "Từ khóa" msgid "User profile" msgstr "Hồ sơ" -#: actions/tagother.php:81 lib/userprofile.php:102 +#: actions/tagother.php:81 actions/userauthorization.php:132 +#: lib/userprofile.php:102 msgid "Photo" msgstr "" @@ -3810,7 +4247,7 @@ msgstr "Không có URL cho hồ sơ để quay về." msgid "Unsubscribed" msgstr "Hết theo" -#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#: actions/updateprofile.php:62 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -3825,89 +4262,69 @@ msgstr "" msgid "User settings for this StatusNet site." msgstr "" -#: actions/useradminpanel.php:149 +#: actions/useradminpanel.php:148 msgid "Invalid bio limit. Must be numeric." msgstr "" -#: actions/useradminpanel.php:155 +#: actions/useradminpanel.php:154 msgid "Invalid welcome text. Max length is 255 characters." msgstr "" -#: actions/useradminpanel.php:165 +#: actions/useradminpanel.php:164 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 +#: actions/useradminpanel.php:217 lib/accountsettingsaction.php:108 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Hồ sơ " -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:221 msgid "Bio Limit" msgstr "" -#: actions/useradminpanel.php:223 +#: actions/useradminpanel.php:222 msgid "Maximum length of a profile bio in characters." msgstr "" -#: actions/useradminpanel.php:231 +#: actions/useradminpanel.php:230 #, fuzzy msgid "New users" msgstr "Gửi thư mời đến những người chưa có tài khoản" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:234 msgid "New user welcome" msgstr "" -#: actions/useradminpanel.php:236 +#: actions/useradminpanel.php:235 msgid "Welcome text for new users (Max 255 chars)." msgstr "" -#: actions/useradminpanel.php:241 +#: actions/useradminpanel.php:240 #, fuzzy msgid "Default subscription" msgstr "Tất cả đăng nhận" -#: actions/useradminpanel.php:242 +#: actions/useradminpanel.php:241 #, fuzzy msgid "Automatically subscribe new users to this user." msgstr "Tự động theo những người nào đăng ký theo tôi" -#: actions/useradminpanel.php:251 +#: actions/useradminpanel.php:250 #, fuzzy msgid "Invitations" msgstr "Thư mời đã gửi" -#: actions/useradminpanel.php:256 +#: actions/useradminpanel.php:255 #, fuzzy msgid "Invitations enabled" msgstr "Thư mời đã gửi" -#: actions/useradminpanel.php:258 +#: actions/useradminpanel.php:257 msgid "Whether to allow users to invite new users." msgstr "" -#: actions/useradminpanel.php:265 -msgid "Sessions" -msgstr "" - -#: actions/useradminpanel.php:270 -msgid "Handle sessions" -msgstr "" - -#: actions/useradminpanel.php:272 -msgid "Whether to handle sessions ourselves." -msgstr "" - -#: actions/useradminpanel.php:276 -msgid "Session debugging" -msgstr "" - -#: actions/useradminpanel.php:278 -msgid "Turn on debugging output for sessions." -msgstr "" - #: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Đăng nhận cho phép" @@ -3923,38 +4340,38 @@ msgstr "" "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/userauthorization.php:188 actions/version.php:165 +#: actions/userauthorization.php:196 actions/version.php:165 msgid "License" msgstr "" -#: actions/userauthorization.php:209 +#: actions/userauthorization.php:217 msgid "Accept" msgstr "Chấp nhận" -#: actions/userauthorization.php:210 lib/subscribeform.php:115 +#: actions/userauthorization.php:218 lib/subscribeform.php:115 #: lib/subscribeform.php:139 #, fuzzy msgid "Subscribe to this user" msgstr "Theo nhóm này" -#: actions/userauthorization.php:211 +#: actions/userauthorization.php:219 msgid "Reject" msgstr "Từ chối" -#: actions/userauthorization.php:212 +#: actions/userauthorization.php:220 #, fuzzy msgid "Reject this subscription" msgstr "Tất cả đăng nhận" -#: actions/userauthorization.php:225 +#: actions/userauthorization.php:232 msgid "No authorization request!" msgstr "Không có yêu cầu!" -#: actions/userauthorization.php:247 +#: actions/userauthorization.php:254 msgid "Subscription authorized" msgstr "Đăng nhận được phép" -#: actions/userauthorization.php:249 +#: actions/userauthorization.php:256 #, fuzzy msgid "" "The subscription has been authorized, but no callback URL was passed. Check " @@ -3965,11 +4382,11 @@ msgstr "" "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:259 +#: actions/userauthorization.php:266 msgid "Subscription rejected" msgstr "Đăng nhận từ chối" -#: actions/userauthorization.php:261 +#: actions/userauthorization.php:268 #, fuzzy msgid "" "The subscription has been rejected, but no callback URL was passed. Check " @@ -3979,37 +4396,37 @@ 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/userauthorization.php:296 +#: actions/userauthorization.php:303 #, php-format msgid "Listener URI ‘%s’ not found here." msgstr "" -#: actions/userauthorization.php:301 +#: actions/userauthorization.php:308 #, php-format msgid "Listenee URI ‘%s’ is too long." msgstr "" -#: actions/userauthorization.php:307 +#: actions/userauthorization.php:314 #, php-format msgid "Listenee URI ‘%s’ is a local user." msgstr "" -#: actions/userauthorization.php:322 +#: actions/userauthorization.php:329 #, php-format msgid "Profile URL ‘%s’ is for a local user." msgstr "" -#: actions/userauthorization.php:338 +#: actions/userauthorization.php:345 #, php-format msgid "Avatar URL ‘%s’ is not valid." msgstr "" -#: actions/userauthorization.php:343 +#: actions/userauthorization.php:350 #, fuzzy, php-format msgid "Can’t read avatar URL ‘%s’." msgstr "Không thể đọc URL cho hình đại diện '%s'" -#: actions/userauthorization.php:348 +#: actions/userauthorization.php:355 #, fuzzy, php-format msgid "Wrong image type for avatar URL ‘%s’." msgstr "Kiểu file ảnh không phù hợp với '%s'" @@ -4029,6 +4446,11 @@ msgstr "" msgid "Enjoy your hotdog!" msgstr "" +#: actions/usergroups.php:64 +#, fuzzy, php-format +msgid "%1$s groups, page %2$d" +msgstr "Thành viên" + #: actions/usergroups.php:130 msgid "Search for more groups" msgstr "" @@ -4055,11 +4477,6 @@ msgid "" "Inc. and contributors." msgstr "" -#: actions/version.php:157 -#, fuzzy -msgid "StatusNet" -msgstr "Hình đại diện đã được cập nhật." - #: actions/version.php:161 msgid "Contributors" msgstr "" @@ -4091,12 +4508,7 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:195 -#, fuzzy -msgid "Name" -msgstr "Biệt danh" - -#: actions/version.php:196 lib/action.php:741 +#: actions/version.php:196 lib/action.php:747 #, fuzzy msgid "Version" msgstr "Cá nhân" @@ -4105,10 +4517,6 @@ msgstr "Cá nhân" msgid "Author(s)" msgstr "" -#: actions/version.php:198 lib/groupeditform.php:172 -msgid "Description" -msgstr "Mô tả" - #: classes/File.php:144 #, php-format msgid "" @@ -4161,61 +4569,88 @@ msgstr "Không thể chèn thêm vào đăng nhận." 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." -#: classes/Notice.php:171 +#: classes/Notice.php:157 #, 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:225 +#: classes/Notice.php:222 #, fuzzy msgid "Problem saving notice. Too long." msgstr "Có lỗi xảy ra khi lưu tin nhắn." -#: classes/Notice.php:229 +#: classes/Notice.php:226 #, fuzzy msgid "Problem saving notice. Unknown user." msgstr "Có lỗi xảy ra khi lưu tin nhắn." -#: classes/Notice.php:234 +#: classes/Notice.php:231 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: classes/Notice.php:240 +#: classes/Notice.php:237 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." msgstr "" -#: classes/Notice.php:246 +#: classes/Notice.php:243 msgid "You are banned from posting notices on this site." msgstr "" -#: classes/Notice.php:305 classes/Notice.php:330 +#: classes/Notice.php:309 classes/Notice.php:335 msgid "Problem saving notice." msgstr "Có lỗi xảy ra khi lưu tin nhắn." -#: classes/Notice.php:1052 -#, php-format -msgid "DB error inserting reply: %s" -msgstr "Lỗi cơ sở dữ liệu khi chèn trả lời: %s" +#: classes/Notice.php:882 +#, fuzzy +msgid "Problem saving group inbox." +msgstr "Có lỗi xảy ra khi lưu tin nhắn." -#: classes/Notice.php:1423 +#: classes/Notice.php:1407 #, fuzzy, php-format msgid "RT @%1$s %2$s" msgstr "%s (%s)" -#: classes/User.php:382 +#: classes/Subscription.php:66 lib/oauthstore.php:465 +msgid "You have been banned from subscribing." +msgstr "" + +#: classes/Subscription.php:70 +msgid "Already subscribed!" +msgstr "" + +#: classes/Subscription.php:74 +#, fuzzy +msgid "User has blocked you." +msgstr "Người dùng không có thông tin." + +#: classes/Subscription.php:157 +#, fuzzy +msgid "Not subscribed!" +msgstr "Chưa đăng nhận!" + +#: classes/Subscription.php:163 +#, fuzzy +msgid "Couldn't delete self-subscription." +msgstr "Không thể xóa đăng nhận." + +#: classes/Subscription.php:179 lib/subs.php:69 +msgid "Couldn't delete subscription." +msgstr "Không thể xóa đăng nhận." + +#: classes/User.php:372 #, fuzzy, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "%s chào mừng bạn " -#: classes/User_group.php:380 +#: classes/User_group.php:423 #, fuzzy msgid "Could not create group." msgstr "Không thể tạo favorite." -#: classes/User_group.php:409 +#: classes/User_group.php:452 #, fuzzy msgid "Could not set group membership." msgstr "Không thể tạo đăng nhận." @@ -4260,140 +4695,135 @@ msgstr "%s (%s)" msgid "Untitled page" msgstr "" -#: lib/action.php:427 +#: lib/action.php:433 msgid "Primary site navigation" msgstr "" -#: lib/action.php:433 +#: lib/action.php:439 msgid "Home" msgstr "Trang chủ" -#: lib/action.php:433 +#: lib/action.php:439 msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:435 -#, fuzzy -msgid "Account" -msgstr "Giới thiệu" - -#: lib/action.php:435 +#: lib/action.php:441 #, fuzzy msgid "Change your email, avatar, password, profile" msgstr "Thay đổi mật khẩu của bạn" -#: lib/action.php:438 +#: lib/action.php:444 msgid "Connect" msgstr "Kết nối" -#: lib/action.php:438 +#: lib/action.php:444 #, fuzzy msgid "Connect to services" msgstr "Không thể chuyển đến máy chủ: %s" -#: lib/action.php:442 +#: lib/action.php:448 #, fuzzy msgid "Change site configuration" msgstr "Tôi theo" -#: lib/action.php:446 lib/subgroupnav.php:105 +#: lib/action.php:452 lib/subgroupnav.php:105 msgid "Invite" msgstr "Thư mời" -#: lib/action.php:447 lib/subgroupnav.php:106 +#: lib/action.php:453 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." -#: lib/action.php:452 +#: lib/action.php:458 msgid "Logout" msgstr "Thoát" -#: lib/action.php:452 +#: lib/action.php:458 msgid "Logout from the site" msgstr "" -#: lib/action.php:457 +#: lib/action.php:463 #, fuzzy msgid "Create an account" msgstr "Tạo tài khoản mới" -#: lib/action.php:460 +#: lib/action.php:466 msgid "Login to the site" msgstr "" -#: lib/action.php:463 lib/action.php:726 +#: lib/action.php:469 lib/action.php:732 msgid "Help" msgstr "Hướng dẫn" -#: lib/action.php:463 +#: lib/action.php:469 #, fuzzy msgid "Help me!" msgstr "Hướng dẫn" -#: lib/action.php:466 lib/searchaction.php:127 +#: lib/action.php:472 lib/searchaction.php:127 msgid "Search" msgstr "Tìm kiếm" -#: lib/action.php:466 +#: lib/action.php:472 msgid "Search for people or text" msgstr "" -#: lib/action.php:487 +#: lib/action.php:493 #, fuzzy msgid "Site notice" msgstr "Thông báo mới" -#: lib/action.php:553 +#: lib/action.php:559 msgid "Local views" msgstr "" -#: lib/action.php:619 +#: lib/action.php:625 #, fuzzy msgid "Page notice" msgstr "Thông báo mới" -#: lib/action.php:721 +#: lib/action.php:727 #, fuzzy msgid "Secondary site navigation" msgstr "Tôi theo" -#: lib/action.php:728 +#: lib/action.php:734 msgid "About" msgstr "Giới thiệu" -#: lib/action.php:730 +#: lib/action.php:736 msgid "FAQ" msgstr "FAQ" -#: lib/action.php:734 +#: lib/action.php:740 msgid "TOS" msgstr "" -#: lib/action.php:737 +#: lib/action.php:743 msgid "Privacy" msgstr "Riêng tư" -#: lib/action.php:739 +#: lib/action.php:745 msgid "Source" msgstr "Nguồn" -#: lib/action.php:743 +#: lib/action.php:749 msgid "Contact" msgstr "Liên hệ" -#: lib/action.php:745 +#: lib/action.php:751 #, fuzzy msgid "Badge" msgstr "Tin đã gửi" -#: lib/action.php:773 +#: lib/action.php:779 msgid "StatusNet software license" msgstr "" -#: lib/action.php:776 +#: lib/action.php:782 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4402,12 +4832,12 @@ msgstr "" "**%%site.name%%** là dịch vụ gửi tin nhắn được cung cấp từ [%%site.broughtby%" "%](%%site.broughtbyurl%%). " -#: lib/action.php:778 +#: lib/action.php:784 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** là dịch vụ gửi tin nhắn. " -#: lib/action.php:780 +#: lib/action.php:786 #, fuzzy, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4418,37 +4848,58 @@ msgstr "" "quyền [GNU Affero General Public License](http://www.fsf.org/licensing/" "licenses/agpl-3.0.html)." -#: lib/action.php:794 +#: lib/action.php:801 #, fuzzy msgid "Site content license" msgstr "Tìm theo nội dung của tin nhắn" -#: lib/action.php:803 +#: lib/action.php:806 +#, php-format +msgid "Content and data of %1$s are private and confidential." +msgstr "" + +#: lib/action.php:811 +#, php-format +msgid "Content and data copyright by %1$s. All rights reserved." +msgstr "" + +#: lib/action.php:814 +msgid "Content and data copyright by contributors. All rights reserved." +msgstr "" + +#: lib/action.php:827 msgid "All " msgstr "" -#: lib/action.php:808 +#: lib/action.php:833 msgid "license." msgstr "" -#: lib/action.php:1102 +#: lib/action.php:1132 msgid "Pagination" msgstr "" -#: lib/action.php:1111 +#: lib/action.php:1141 #, fuzzy msgid "After" msgstr "Sau" -#: lib/action.php:1119 +#: lib/action.php:1149 #, fuzzy msgid "Before" msgstr "Trước" -#: lib/action.php:1167 -#, 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/activity.php:382 +msgid "Can't handle remote content yet." +msgstr "" + +#: lib/activity.php:410 +msgid "Can't handle embedded XML content yet." +msgstr "" + +#: lib/activity.php:414 +msgid "Can't handle embedded Base64 content yet." +msgstr "" #: lib/adminpanelaction.php:96 #, fuzzy @@ -4483,11 +4934,105 @@ msgstr "Xac nhan dia chi email" msgid "Design configuration" msgstr "Xác nhận SMS" -#: lib/adminpanelaction.php:322 lib/adminpanelaction.php:327 +#: lib/adminpanelaction.php:322 +#, fuzzy +msgid "User configuration" +msgstr "Xác nhận SMS" + +#: lib/adminpanelaction.php:327 +#, fuzzy +msgid "Access configuration" +msgstr "Xác nhận SMS" + +#: lib/adminpanelaction.php:332 #, fuzzy msgid "Paths configuration" msgstr "Xác nhận SMS" +#: lib/adminpanelaction.php:337 +#, fuzzy +msgid "Sessions configuration" +msgstr "Xác nhận SMS" + +#: lib/apiauth.php:95 +msgid "API resource requires read-write access, but you only have read access." +msgstr "" + +#: lib/apiauth.php:273 +#, php-format +msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" +msgstr "" + +#: lib/applicationeditform.php:136 +msgid "Edit application" +msgstr "" + +#: lib/applicationeditform.php:184 +msgid "Icon for this application" +msgstr "" + +#: lib/applicationeditform.php:204 +#, fuzzy, php-format +msgid "Describe your application in %d characters" +msgstr "Nói về những sở thích của nhóm trong vòng 140 ký tự" + +#: lib/applicationeditform.php:207 +#, fuzzy +msgid "Describe your application" +msgstr "Nói về những sở thích của nhóm trong vòng 140 ký tự" + +#: lib/applicationeditform.php:216 +#, fuzzy +msgid "Source URL" +msgstr "Nguồn" + +#: lib/applicationeditform.php:218 +#, fuzzy +msgid "URL of the homepage of this application" +msgstr "URL về Trang chính, Blog, hoặc hồ sơ cá nhân của bạn trên " + +#: lib/applicationeditform.php:224 +msgid "Organization responsible for this application" +msgstr "" + +#: lib/applicationeditform.php:230 +#, fuzzy +msgid "URL for the homepage of the organization" +msgstr "URL về Trang chính, Blog, hoặc hồ sơ cá nhân của bạn trên " + +#: lib/applicationeditform.php:236 +msgid "URL to redirect to after authentication" +msgstr "" + +#: lib/applicationeditform.php:258 +msgid "Browser" +msgstr "" + +#: lib/applicationeditform.php:274 +msgid "Desktop" +msgstr "" + +#: lib/applicationeditform.php:275 +msgid "Type of application, browser or desktop" +msgstr "" + +#: lib/applicationeditform.php:297 +msgid "Read-only" +msgstr "" + +#: lib/applicationeditform.php:315 +msgid "Read-write" +msgstr "" + +#: lib/applicationeditform.php:316 +msgid "Default access for this application: read-only, or read-write" +msgstr "" + +#: lib/applicationlist.php:154 +#, fuzzy +msgid "Revoke" +msgstr "Xóa" + #: lib/attachmentlist.php:87 msgid "Attachments" msgstr "" @@ -4509,12 +5054,12 @@ msgstr "" msgid "Tags for this attachment" msgstr "" -#: lib/authenticationplugin.php:182 lib/authenticationplugin.php:187 +#: lib/authenticationplugin.php:218 lib/authenticationplugin.php:223 #, fuzzy msgid "Password changing failed" msgstr "Đã lưu mật khẩu." -#: lib/authenticationplugin.php:197 +#: lib/authenticationplugin.php:233 #, fuzzy msgid "Password changing is not allowed" msgstr "Đã lưu mật khẩu." @@ -4674,82 +5219,92 @@ msgstr "Có lỗi xảy ra khi lưu tin nhắn." msgid "Specify the name of the user to subscribe to" msgstr "" -#: lib/command.php:554 +#: lib/command.php:554 lib/command.php:589 +#, fuzzy +msgid "No such user" +msgstr "Không có user nào." + +#: lib/command.php:561 #, fuzzy, php-format msgid "Subscribed to %s" msgstr "Theo nhóm này" -#: lib/command.php:575 +#: lib/command.php:582 lib/command.php:685 msgid "Specify the name of the user to unsubscribe from" msgstr "" -#: lib/command.php:582 +#: lib/command.php:595 #, fuzzy, php-format msgid "Unsubscribed from %s" msgstr "Hết theo" -#: lib/command.php:600 lib/command.php:623 +#: lib/command.php:613 lib/command.php:636 msgid "Command not yet implemented." msgstr "" -#: lib/command.php:603 +#: lib/command.php:616 #, fuzzy msgid "Notification off." msgstr "Không có mã số xác nhận." -#: lib/command.php:605 +#: lib/command.php:618 msgid "Can't turn off notification." msgstr "" -#: lib/command.php:626 +#: lib/command.php:639 #, fuzzy msgid "Notification on." msgstr "Không có mã số xác nhận." -#: lib/command.php:628 +#: lib/command.php:641 msgid "Can't turn on notification." msgstr "" -#: lib/command.php:641 +#: lib/command.php:654 msgid "Login command is disabled" msgstr "" -#: lib/command.php:652 +#: lib/command.php:665 #, php-format msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "" -#: lib/command.php:668 +#: lib/command.php:692 +#, fuzzy, php-format +msgid "Unsubscribed %s" +msgstr "Hết theo" + +#: lib/command.php:709 #, fuzzy msgid "You are not subscribed to anyone." msgstr "Bạn chưa cập nhật thông tin riêng" -#: lib/command.php:670 +#: lib/command.php:711 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "Bạn đã theo những người này:" -#: lib/command.php:690 +#: lib/command.php:731 #, fuzzy msgid "No one is subscribed to you." msgstr "Không thể tạo favorite." -#: lib/command.php:692 +#: lib/command.php:733 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "Không thể tạo favorite." -#: lib/command.php:712 +#: lib/command.php:753 #, fuzzy msgid "You are not a member of any groups." msgstr "Bạn chưa cập nhật thông tin riêng" -#: lib/command.php:714 +#: lib/command.php:755 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "Bạn chưa cập nhật thông tin riêng" -#: lib/command.php:728 +#: lib/command.php:769 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -4763,6 +5318,7 @@ msgid "" "d - direct message to user\n" "get - get last notice from user\n" "whois - get profile info on user\n" +"lose - force user to stop following you\n" "fav - add user's last notice as a 'fave'\n" "fav # - add notice with the given id as a 'fave'\n" "repeat # - repeat a notice with a given id\n" @@ -4790,20 +5346,20 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:131 +#: lib/common.php:136 #, fuzzy msgid "No configuration file found. " msgstr "Không có mã số xác nhận." -#: lib/common.php:132 +#: lib/common.php:137 msgid "I looked for configuration files in the following places: " msgstr "" -#: lib/common.php:134 +#: lib/common.php:139 msgid "You may wish to run the installer to fix this." msgstr "" -#: lib/common.php:135 +#: lib/common.php:140 msgid "Go to the installer." msgstr "" @@ -4819,6 +5375,15 @@ msgstr "Thay đổi bởi tin nhắn nhanh (IM)" msgid "Updates by SMS" msgstr "Thay đổi bởi SMS" +#: lib/connectsettingsaction.php:120 +#, fuzzy +msgid "Connections" +msgstr "Kết nối" + +#: lib/connectsettingsaction.php:121 +msgid "Authorized connected applications" +msgstr "" + #: lib/dberroraction.php:60 msgid "Database error" msgstr "" @@ -5020,12 +5585,12 @@ msgstr "" msgid "kB" msgstr "" -#: lib/jabber.php:202 +#: lib/jabber.php:220 #, php-format msgid "[%s]" msgstr "" -#: lib/jabber.php:385 +#: lib/jabber.php:400 #, php-format msgid "Unknown inbox source %d." msgstr "" @@ -5280,7 +5845,7 @@ msgid "" "users in conversation. People can send you messages for your eyes only." msgstr "" -#: lib/mailbox.php:227 lib/noticelist.php:477 +#: lib/mailbox.php:227 lib/noticelist.php:482 #, fuzzy msgid "from" msgstr " từ " @@ -5403,61 +5968,57 @@ msgid "Do not share my location" msgstr "Không thể lưu hồ sơ cá nhân." #: lib/noticeform.php:216 -msgid "Hide this info" -msgstr "" - -#: lib/noticeform.php:217 msgid "" "Sorry, retrieving your geo location is taking longer than expected, please " "try again later" msgstr "" -#: lib/noticelist.php:428 +#: lib/noticelist.php:429 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "" -#: lib/noticelist.php:429 +#: lib/noticelist.php:430 #, fuzzy msgid "N" msgstr "Không" -#: lib/noticelist.php:429 +#: lib/noticelist.php:430 msgid "S" msgstr "" -#: lib/noticelist.php:430 +#: lib/noticelist.php:431 msgid "E" msgstr "" -#: lib/noticelist.php:430 +#: lib/noticelist.php:431 msgid "W" msgstr "" -#: lib/noticelist.php:436 +#: lib/noticelist.php:438 msgid "at" msgstr "" -#: lib/noticelist.php:531 +#: lib/noticelist.php:558 #, fuzzy msgid "in context" msgstr "Không có nội dung!" -#: lib/noticelist.php:556 +#: lib/noticelist.php:583 #, fuzzy msgid "Repeated by" msgstr "Tạo" -#: lib/noticelist.php:585 +#: lib/noticelist.php:610 #, fuzzy msgid "Reply to this notice" msgstr "Trả lời tin nhắn này" -#: lib/noticelist.php:586 +#: lib/noticelist.php:611 msgid "Reply" msgstr "Trả lời" -#: lib/noticelist.php:628 +#: lib/noticelist.php:655 #, fuzzy msgid "Notice repeated" msgstr "Tin đã gửi" @@ -5494,11 +6055,7 @@ msgstr "Lỗi xảy ra khi thêm mới hồ sơ cá nhân" msgid "Duplicate notice" msgstr "Xóa tin nhắn" -#: lib/oauthstore.php:466 lib/subs.php:48 -msgid "You have been banned from subscribing." -msgstr "" - -#: lib/oauthstore.php:491 +#: lib/oauthstore.php:490 msgid "Couldn't insert new subscription." msgstr "Không thể chèn thêm vào đăng nhận." @@ -5514,19 +6071,19 @@ msgstr "Trả lời" msgid "Favorites" msgstr "Ưa thích" -#: lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "Hộp thư đến" -#: lib/personalgroupnav.php:125 +#: lib/personalgroupnav.php:126 msgid "Your incoming messages" msgstr "Thư đến của bạn" -#: lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 msgid "Outbox" msgstr "Hộp thư đi" -#: lib/personalgroupnav.php:130 +#: lib/personalgroupnav.php:131 msgid "Your sent messages" msgstr "Thư bạn đã gửi" @@ -5612,6 +6169,10 @@ msgstr "Trả lời tin nhắn này" msgid "Repeat this notice" msgstr "Trả lời tin nhắn này" +#: lib/router.php:665 +msgid "No single user defined for single-user mode." +msgstr "" + #: lib/sandboxform.php:67 #, fuzzy msgid "Sandbox" @@ -5686,39 +6247,6 @@ msgstr "Theo nhóm này" msgid "Groups %s is a member of" msgstr "" -#: lib/subs.php:52 -msgid "Already subscribed!" -msgstr "" - -#: lib/subs.php:56 -#, fuzzy -msgid "User has blocked you." -msgstr "Người dùng không có thông tin." - -#: lib/subs.php:63 -#, fuzzy -msgid "Could not subscribe." -msgstr "Chưa đăng nhận!" - -#: lib/subs.php:82 -#, fuzzy -msgid "Could not subscribe other to you." -msgstr "Không thể tạo favorite." - -#: lib/subs.php:137 -#, fuzzy -msgid "Not subscribed!" -msgstr "Chưa đăng nhận!" - -#: lib/subs.php:142 -#, fuzzy -msgid "Couldn't delete self-subscription." -msgstr "Không thể xóa đăng nhận." - -#: lib/subs.php:158 -msgid "Couldn't delete subscription." -msgstr "Không thể xóa đăng nhận." - #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -5775,70 +6303,70 @@ msgstr "Hình đại diện" msgid "User actions" msgstr "Không tìm thấy action" -#: lib/userprofile.php:248 +#: lib/userprofile.php:251 #, fuzzy msgid "Edit profile settings" msgstr "Các thiết lập cho Hồ sơ cá nhân" -#: lib/userprofile.php:249 +#: lib/userprofile.php:252 msgid "Edit" msgstr "" -#: lib/userprofile.php:272 +#: lib/userprofile.php:275 #, fuzzy msgid "Send a direct message to this user" msgstr "Bạn đã theo những người này:" -#: lib/userprofile.php:273 +#: lib/userprofile.php:276 #, fuzzy msgid "Message" msgstr "Tin mới nhất" -#: lib/userprofile.php:311 +#: lib/userprofile.php:314 msgid "Moderate" msgstr "" -#: lib/util.php:877 +#: lib/util.php:952 msgid "a few seconds ago" msgstr "vài giây trước" -#: lib/util.php:879 +#: lib/util.php:954 msgid "about a minute ago" msgstr "1 phút trước" -#: lib/util.php:881 +#: lib/util.php:956 #, php-format msgid "about %d minutes ago" msgstr "%d phút trước" -#: lib/util.php:883 +#: lib/util.php:958 msgid "about an hour ago" msgstr "1 giờ trước" -#: lib/util.php:885 +#: lib/util.php:960 #, php-format msgid "about %d hours ago" msgstr "%d giờ trước" -#: lib/util.php:887 +#: lib/util.php:962 msgid "about a day ago" msgstr "1 ngày trước" -#: lib/util.php:889 +#: lib/util.php:964 #, php-format msgid "about %d days ago" msgstr "%d ngày trước" -#: lib/util.php:891 +#: lib/util.php:966 msgid "about a month ago" msgstr "1 tháng trước" -#: lib/util.php:893 +#: lib/util.php:968 #, php-format msgid "about %d months ago" msgstr "%d tháng trước" -#: lib/util.php:895 +#: lib/util.php:970 msgid "about a year ago" msgstr "1 năm trước" @@ -5852,7 +6380,7 @@ msgstr "Trang chủ không phải là URL" msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "" -#: scripts/xmppdaemon.php:301 +#: lib/xmppmanager.php:402 #, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "" diff --git a/locale/zh_CN/LC_MESSAGES/statusnet.po b/locale/zh_CN/LC_MESSAGES/statusnet.po index 32adff4386..60ca89d66c 100644 --- a/locale/zh_CN/LC_MESSAGES/statusnet.po +++ b/locale/zh_CN/LC_MESSAGES/statusnet.po @@ -10,17 +10,76 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-01-13 22:04+0000\n" -"PO-Revision-Date: 2010-01-13 22:06:24+0000\n" +"POT-Creation-Date: 2010-02-24 23:49+0000\n" +"PO-Revision-Date: 2010-02-24 23:52:00+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 (r61027); Translate extension (2010-01-04)\n" +"X-Generator: MediaWiki 1.17alpha (r62925); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: actions/accessadminpanel.php:54 lib/adminpanelaction.php:326 +#, fuzzy +msgid "Access" +msgstr "接受" + +#: actions/accessadminpanel.php:65 +#, fuzzy +msgid "Site access settings" +msgstr "头像设置" + +#: actions/accessadminpanel.php:158 +#, fuzzy +msgid "Registration" +msgstr "注册" + +#: actions/accessadminpanel.php:161 +#, fuzzy +msgid "Private" +msgstr "隐私" + +#: actions/accessadminpanel.php:163 +msgid "Prohibit anonymous users (not logged in) from viewing site?" +msgstr "" + +#: actions/accessadminpanel.php:167 +#, fuzzy +msgid "Invite only" +msgstr "邀请" + +#: actions/accessadminpanel.php:169 +msgid "Make registration invitation only." +msgstr "" + +#: actions/accessadminpanel.php:173 +#, fuzzy +msgid "Closed" +msgstr "阻止" + +#: actions/accessadminpanel.php:175 +msgid "Disable new registrations." +msgstr "" + +#: actions/accessadminpanel.php:189 actions/designadminpanel.php:586 +#: actions/emailsettings.php:195 actions/imsettings.php:163 +#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 +#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 +#: actions/siteadminpanel.php:336 actions/smssettings.php:181 +#: actions/subscriptions.php:208 actions/tagother.php:154 +#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 lib/designsettings.php:256 +#: lib/groupeditform.php:202 +msgid "Save" +msgstr "保存" + +#: actions/accessadminpanel.php:189 +#, fuzzy +msgid "Save access settings" +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" @@ -35,25 +94,29 @@ msgstr "没有该页面" #: 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:144 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apistatusesupdate.php:148 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:78 #: actions/apitimelinehome.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/otp.php:76 #: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154 -#: actions/replies.php:73 actions/repliesrss.php:38 +#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 #: 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:302 lib/command.php:355 #: lib/command.php:401 lib/command.php:462 lib/command.php:518 #: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 -#: lib/subs.php:34 lib/subs.php:125 msgid "No such user." msgstr "没有这个用户。" +#: actions/all.php:84 +#, fuzzy, php-format +msgid "%1$s and friends, page %2$d" +msgstr "%s 及好友" + #: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 -#: actions/apitimelinefriends.php:115 actions/apitimelinehome.php:115 +#: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" @@ -94,7 +157,7 @@ msgid "" "his or her attention](%%%%action.newnotice%%%%?status_textarea=%3$s)." msgstr "" -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211 #, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " @@ -106,8 +169,8 @@ msgstr "" msgid "You and friends" msgstr "%s 及好友" -#: actions/allrss.php:119 actions/apitimelinefriends.php:122 -#: actions/apitimelinehome.php:122 +#: actions/allrss.php:119 actions/apitimelinefriends.php:119 +#: actions/apitimelinehome.php:120 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "来自%2$s 上 %1$s 和好友的更新!" @@ -117,23 +180,23 @@ msgstr "来自%2$s 上 %1$s 和好友的更新!" #: actions/apiaccountupdateprofile.php:97 #: actions/apiaccountupdateprofilebackgroundimage.php:94 #: actions/apiaccountupdateprofilecolors.php:118 -#: 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:136 actions/apigroupismember.php:114 -#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 -#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 -#: actions/apigroupmembership.php:106 actions/apigroupshow.php:105 -#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 -#: actions/apistatusesretweets.php:112 actions/apistatusesshow.php:108 -#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93 -#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:146 -#: actions/apitimelinefriends.php:156 actions/apitimelinegroup.php:150 -#: actions/apitimelinehome.php:156 actions/apitimelinementions.php:151 -#: actions/apitimelinepublic.php:131 actions/apitimelineretweetedbyme.php:122 +#: actions/apiaccountverifycredentials.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:128 actions/apigroupcreate.php:136 +#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 +#: actions/apigroupleave.php:141 actions/apigrouplist.php:132 +#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 +#: actions/apigroupshow.php:115 actions/apihelptest.php:88 +#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 +#: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 #: actions/apitimelineretweetedtome.php:121 -#: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141 -#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 +#: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 +#: actions/apitimelineuser.php:207 actions/apiusershow.php:101 #, fuzzy msgid "API method not found." msgstr "API 方法未实现!" @@ -148,7 +211,7 @@ msgstr "API 方法未实现!" #: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 #: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 #: actions/apigroupleave.php:91 actions/apistatusesretweet.php:65 -#: actions/apistatusesupdate.php:114 +#: actions/apistatusesupdate.php:118 msgid "This method requires a POST." msgstr "此方法接受POST请求。" @@ -179,8 +242,9 @@ msgstr "无法保存个人信息。" #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:97 -#: actions/apistatusesupdate.php:127 actions/avatarsettings.php:257 -#: actions/designadminpanel.php:122 actions/newnotice.php:94 +#: actions/apistatusesupdate.php:131 actions/avatarsettings.php:257 +#: actions/designadminpanel.php:122 actions/editapplication.php:118 +#: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 #, php-format msgid "" @@ -301,12 +365,12 @@ msgstr "无法更新用户。" msgid "Two user ids or screen_names must be supplied." msgstr "必须提供两个用户帐号或昵称。" -#: actions/apifriendshipsshow.php:135 +#: actions/apifriendshipsshow.php:134 #, fuzzy msgid "Could not determine source user." msgstr "无法获取收藏的通告。" -#: actions/apifriendshipsshow.php:143 +#: actions/apifriendshipsshow.php:142 #, fuzzy msgid "Could not find target user." msgstr "找不到任何信息。" @@ -329,7 +393,8 @@ msgstr "昵称已被使用,换一个吧。" msgid "Not a valid nickname." msgstr "不是有效的昵称。" -#: actions/apigroupcreate.php:196 actions/editgroup.php:195 +#: actions/apigroupcreate.php:196 actions/editapplication.php:215 +#: actions/editgroup.php:195 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:217 msgid "Homepage is not a valid URL." @@ -341,7 +406,8 @@ msgstr "主页的URL不正确。" msgid "Full name is too long (max 255 chars)." msgstr "全名过长(不能超过 255 个字符)。" -#: actions/apigroupcreate.php:213 +#: actions/apigroupcreate.php:213 actions/editapplication.php:190 +#: actions/newapplication.php:172 #, fuzzy, php-format msgid "Description is too long (max %d chars)." msgstr "描述过长(不能超过140字符)。" @@ -377,7 +443,7 @@ msgstr "" #: actions/apigroupismember.php:95 actions/apigroupjoin.php:104 #: actions/apigroupleave.php:104 actions/apigroupmembership.php:91 -#: actions/apigroupshow.php:90 actions/apitimelinegroup.php:91 +#: actions/apigroupshow.php:82 actions/apitimelinegroup.php:91 #, fuzzy msgid "Group not found!" msgstr "API 方法未实现!" @@ -421,6 +487,115 @@ msgstr "%s 群组" msgid "groups on %s" msgstr "组动作" +#: actions/apioauthauthorize.php:101 +msgid "No oauth_token parameter provided." +msgstr "" + +#: actions/apioauthauthorize.php:106 +#, fuzzy +msgid "Invalid token." +msgstr "大小不正确。" + +#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 +#: actions/deletenotice.php:157 actions/disfavor.php:74 +#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54 +#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupunblock.php:66 actions/imsettings.php:206 +#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 +#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 +#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135 +#: actions/othersettings.php:145 actions/passwordsettings.php:138 +#: actions/profilesettings.php:194 actions/recoverpassword.php:337 +#: actions/register.php:165 actions/remotesubscribe.php:77 +#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 +#: actions/subscribe.php:86 actions/tagother.php:166 +#: 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/apioauthauthorize.php:135 +#, fuzzy +msgid "Invalid nickname / password!" +msgstr "用户名或密码不正确。" + +#: actions/apioauthauthorize.php:159 +#, fuzzy +msgid "Database error deleting OAuth application user." +msgstr "保存用户设置时出错。" + +#: actions/apioauthauthorize.php:185 +#, fuzzy +msgid "Database error inserting OAuth application user." +msgstr "添加标签时数据库出错:%s" + +#: actions/apioauthauthorize.php:214 +#, php-format +msgid "" +"The request token %s has been authorized. Please exchange it for an access " +"token." +msgstr "" + +#: actions/apioauthauthorize.php:227 +#, php-format +msgid "The request token %s has been denied and revoked." +msgstr "" + +#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 +#: actions/designadminpanel.php:103 actions/editapplication.php:139 +#: actions/emailsettings.php:256 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/newapplication.php:121 +#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 +#: actions/smssettings.php:248 lib/designsettings.php:304 +msgid "Unexpected form submission." +msgstr "未预料的表单提交。" + +#: actions/apioauthauthorize.php:259 +msgid "An application would like to connect to your account" +msgstr "" + +#: actions/apioauthauthorize.php:276 +msgid "Allow or deny access" +msgstr "" + +#: actions/apioauthauthorize.php:292 +#, php-format +msgid "" +"The application %1$s by %2$s would like " +"the ability to %3$s your %4$s account data. You should only " +"give access to your %4$s account to third parties you trust." +msgstr "" + +#: actions/apioauthauthorize.php:310 lib/action.php:441 +msgid "Account" +msgstr "帐号" + +#: actions/apioauthauthorize.php:313 actions/login.php:230 +#: actions/profilesettings.php:106 actions/register.php:424 +#: actions/showgroup.php:236 actions/tagother.php:94 +#: actions/userauthorization.php:145 lib/groupeditform.php:152 +#: lib/userprofile.php:131 +msgid "Nickname" +msgstr "昵称" + +#: actions/apioauthauthorize.php:316 actions/login.php:233 +#: actions/register.php:429 lib/accountsettingsaction.php:116 +msgid "Password" +msgstr "密码" + +#: actions/apioauthauthorize.php:328 +msgid "Deny" +msgstr "" + +#: actions/apioauthauthorize.php:334 +#, fuzzy +msgid "Allow" +msgstr "全部" + +#: actions/apioauthauthorize.php:351 +msgid "Allow or deny access to your account information." +msgstr "" + #: actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." msgstr "此方法接受POST或DELETE请求。" @@ -453,17 +628,17 @@ msgstr "头像已更新。" msgid "No status with that ID found." msgstr "没有找到此ID的信息。" -#: actions/apistatusesupdate.php:157 actions/newnotice.php:155 +#: actions/apistatusesupdate.php:161 actions/newnotice.php:155 #: lib/mailhandler.php:60 #, fuzzy, php-format msgid "That's too long. Max notice size is %d chars." msgstr "超出长度限制。不能超过 140 个字符。" -#: actions/apistatusesupdate.php:198 +#: actions/apistatusesupdate.php:202 msgid "Not found" msgstr "未找到" -#: actions/apistatusesupdate.php:221 actions/newnotice.php:178 +#: actions/apistatusesupdate.php:225 actions/newnotice.php:178 #, php-format msgid "Max notice size is %d chars, including attachment URL." msgstr "" @@ -478,7 +653,7 @@ msgstr "不支持这种图像格式。" msgid "%1$s / Favorites from %2$s" msgstr "%s 的收藏 / %s" -#: actions/apitimelinefavorites.php:120 +#: actions/apitimelinefavorites.php:117 #, fuzzy, php-format msgid "%1$s updates favorited by %2$s / %2$s." msgstr "%s 收藏了 %s 的 %s 通告。" @@ -489,7 +664,7 @@ msgstr "%s 收藏了 %s 的 %s 通告。" msgid "%s timeline" msgstr "%s 时间表" -#: actions/apitimelinegroup.php:117 actions/apitimelineuser.php:126 +#: actions/apitimelinegroup.php:114 actions/apitimelineuser.php:126 #: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" @@ -505,27 +680,22 @@ msgstr "%1$s / 回复 %2$s 的消息" msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "回复 %2$s / %3$s 的 %1$s 更新。" -#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "%s 公众时间表" -#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "来自所有人的 %s 消息!" -#: actions/apitimelineretweetedbyme.php:112 -#, php-format -msgid "Repeated by %s" -msgstr "" - #: actions/apitimelineretweetedtome.php:111 #, fuzzy, php-format msgid "Repeated to %s" msgstr "%s 的回复" -#: actions/apitimelineretweetsofme.php:112 +#: actions/apitimelineretweetsofme.php:114 #, fuzzy, php-format msgid "Repeats of %s" msgstr "%s 的回复" @@ -535,7 +705,7 @@ msgstr "%s 的回复" msgid "Notices tagged with %s" msgstr "带 %s 标签的通告" -#: actions/apitimelinetag.php:108 actions/tagrss.php:64 +#: actions/apitimelinetag.php:104 actions/tagrss.php:64 #, fuzzy, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "%2$s 上 %1$s 的更新!" @@ -597,8 +767,8 @@ msgstr "原来的" msgid "Preview" msgstr "预览" -#: actions/avatarsettings.php:149 lib/deleteuserform.php:66 -#: lib/noticelist.php:611 +#: actions/avatarsettings.php:149 actions/showapplication.php:252 +#: lib/deleteuserform.php:66 lib/noticelist.php:637 #, fuzzy msgid "Delete" msgstr "删除" @@ -611,29 +781,6 @@ msgstr "上传" msgid "Crop" msgstr "剪裁" -#: actions/avatarsettings.php:268 actions/deletenotice.php:157 -#: actions/disfavor.php:74 actions/emailsettings.php:238 actions/favor.php:75 -#: actions/geocode.php:50 actions/groupblock.php:66 actions/grouplogo.php:309 -#: actions/groupunblock.php:66 actions/imsettings.php:206 -#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 -#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 -#: actions/othersettings.php:145 actions/passwordsettings.php:138 -#: actions/profilesettings.php:194 actions/recoverpassword.php:337 -#: actions/register.php:165 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 -#: actions/subscribe.php:46 actions/tagother.php:166 -#: 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/avatarsettings.php:281 actions/designadminpanel.php:103 -#: actions/emailsettings.php:256 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/avatarsettings.php:328 msgid "Pick a square area of the image to be your avatar" msgstr "请选择一块方形区域作为你的头像" @@ -672,8 +819,9 @@ msgid "" "will not be notified of any @-replies from them." msgstr "" -#: actions/block.php:143 actions/deletenotice.php:145 -#: actions/deleteuser.php:147 actions/groupblock.php:178 +#: actions/block.php:143 actions/deleteapplication.php:153 +#: actions/deletenotice.php:145 actions/deleteuser.php:147 +#: actions/groupblock.php:178 msgid "No" msgstr "否" @@ -682,13 +830,13 @@ msgstr "否" msgid "Do not block this user" msgstr "取消阻止次用户" -#: actions/block.php:144 actions/deletenotice.php:146 -#: actions/deleteuser.php:148 actions/groupblock.php:179 -#: lib/repeatform.php:132 +#: actions/block.php:144 actions/deleteapplication.php:158 +#: actions/deletenotice.php:146 actions/deleteuser.php:148 +#: actions/groupblock.php:179 lib/repeatform.php:132 msgid "Yes" msgstr "是" -#: actions/block.php:144 actions/groupmembers.php:346 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80 #, fuzzy msgid "Block this user" msgstr "阻止该用户" @@ -776,7 +924,8 @@ msgid "Couldn't delete email confirmation." msgstr "无法删除电子邮件确认。" #: actions/confirmaddress.php:144 -msgid "Confirm Address" +#, fuzzy +msgid "Confirm address" msgstr "确认地址" #: actions/confirmaddress.php:159 @@ -794,10 +943,55 @@ msgstr "确认码" msgid "Notices" msgstr "通告" +#: actions/deleteapplication.php:63 +#, fuzzy +msgid "You must be logged in to delete an application." +msgstr "您必须登录才能创建小组。" + +#: actions/deleteapplication.php:71 +#, fuzzy +msgid "Application not found." +msgstr "通告没有关联个人信息" + +#: actions/deleteapplication.php:78 actions/editapplication.php:77 +#: actions/showapplication.php:94 +#, fuzzy +msgid "You are not the owner of this application." +msgstr "您未告知此个人信息" + +#: actions/deleteapplication.php:102 actions/editapplication.php:127 +#: actions/newapplication.php:110 actions/showapplication.php:118 +#: lib/action.php:1197 +#, fuzzy +msgid "There was a problem with your session token." +msgstr "会话标识有问题,请重试。" + +#: actions/deleteapplication.php:123 actions/deleteapplication.php:147 +#, fuzzy +msgid "Delete application" +msgstr "没有这份通告。" + +#: actions/deleteapplication.php:149 +msgid "" +"Are you sure you want to delete this application? This will clear all data " +"about the application from the database, including all existing user " +"connections." +msgstr "" + +#: actions/deleteapplication.php:156 +#, fuzzy +msgid "Do not delete this application" +msgstr "无法删除通告。" + +#: actions/deleteapplication.php:160 +#, fuzzy +msgid "Delete this application" +msgstr "删除通告" + #: 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/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 #: lib/adminpanelaction.php:72 lib/profileformaction.php:63 #: lib/settingsaction.php:72 @@ -828,7 +1022,7 @@ msgstr "确定要删除这条消息吗?" msgid "Do not delete this notice" msgstr "无法删除通告。" -#: actions/deletenotice.php:146 lib/noticelist.php:611 +#: actions/deletenotice.php:146 lib/noticelist.php:637 #, fuzzy msgid "Delete this notice" msgstr "删除通告" @@ -971,16 +1165,6 @@ msgstr "" msgid "Reset back to default" msgstr "" -#: actions/designadminpanel.php:586 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 -#: actions/pathsadminpanel.php:324 actions/profilesettings.php:174 -#: actions/siteadminpanel.php:388 actions/smssettings.php:181 -#: actions/subscriptions.php:203 actions/tagother.php:154 -#: actions/useradminpanel.php:313 lib/designsettings.php:256 -#: lib/groupeditform.php:202 -msgid "Save" -msgstr "保存" - #: actions/designadminpanel.php:587 lib/designsettings.php:257 msgid "Save design" msgstr "" @@ -993,10 +1177,87 @@ msgstr "此通告未被收藏!" msgid "Add to favorites" msgstr "加入收藏" -#: actions/doc.php:69 -msgid "No such document." +#: actions/doc.php:158 +#, fuzzy, php-format +msgid "No such document \"%s\"" msgstr "没有这份文档。" +#: actions/editapplication.php:54 +#, fuzzy +msgid "Edit Application" +msgstr "其他选项" + +#: actions/editapplication.php:66 +#, fuzzy +msgid "You must be logged in to edit an application." +msgstr "您必须登录才能创建小组。" + +#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:166 +#: actions/showapplication.php:87 +#, fuzzy +msgid "No such application." +msgstr "没有这份通告。" + +#: actions/editapplication.php:161 +#, fuzzy +msgid "Use this form to edit your application." +msgstr "使用这个表单来编辑组" + +#: actions/editapplication.php:177 actions/newapplication.php:159 +#, fuzzy +msgid "Name is required." +msgstr "相同的密码。此项必填。" + +#: actions/editapplication.php:180 actions/newapplication.php:165 +#, fuzzy +msgid "Name is too long (max 255 chars)." +msgstr "全名过长(不能超过 255 个字符)。" + +#: actions/editapplication.php:183 actions/newapplication.php:162 +#, fuzzy +msgid "Name already in use. Try another one." +msgstr "昵称已被使用,换一个吧。" + +#: actions/editapplication.php:186 actions/newapplication.php:168 +#, fuzzy +msgid "Description is required." +msgstr "描述" + +#: actions/editapplication.php:194 +msgid "Source URL is too long." +msgstr "" + +#: actions/editapplication.php:200 actions/newapplication.php:185 +#, fuzzy +msgid "Source URL is not valid." +msgstr "主页的URL不正确。" + +#: actions/editapplication.php:203 actions/newapplication.php:188 +msgid "Organization is required." +msgstr "" + +#: actions/editapplication.php:206 actions/newapplication.php:191 +#, fuzzy +msgid "Organization is too long (max 255 chars)." +msgstr "位置过长(不能超过255个字符)。" + +#: actions/editapplication.php:209 actions/newapplication.php:194 +msgid "Organization homepage is required." +msgstr "" + +#: actions/editapplication.php:218 actions/newapplication.php:206 +msgid "Callback is too long." +msgstr "" + +#: actions/editapplication.php:225 actions/newapplication.php:215 +msgid "Callback URL is not valid." +msgstr "" + +#: actions/editapplication.php:258 +#, fuzzy +msgid "Could not update application." +msgstr "无法更新组" + #: actions/editgroup.php:56 #, php-format msgid "Edit %s group" @@ -1025,7 +1286,7 @@ msgstr "描述过长(不能超过140字符)。" msgid "Could not update group." msgstr "无法更新组" -#: actions/editgroup.php:259 classes/User_group.php:390 +#: actions/editgroup.php:259 classes/User_group.php:433 #, fuzzy msgid "Could not create aliases." msgstr "无法创建收藏。" @@ -1068,7 +1329,8 @@ msgstr "" "指示。" #: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 +#: actions/smssettings.php:126 lib/applicationeditform.php:331 +#: lib/applicationeditform.php:332 msgid "Cancel" msgstr "取消" @@ -1150,7 +1412,7 @@ msgid "Cannot normalize that email address" msgstr "无法识别此电子邮件" #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:157 +#: actions/siteadminpanel.php:143 msgid "Not a valid email address." msgstr "不是有效的电子邮件。" @@ -1162,7 +1424,7 @@ msgstr "您已登记此电子邮件。" msgid "That email address already belongs to another user." msgstr "此电子邮件属于其他用户。" -#: actions/emailsettings.php:353 actions/imsettings.php:317 +#: actions/emailsettings.php:353 actions/imsettings.php:319 #: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." msgstr "无法插入验证码。" @@ -1224,7 +1486,7 @@ msgstr "已收藏此通告!" msgid "Disfavor favorite" msgstr "取消收藏" -#: actions/favorited.php:65 lib/popularnoticesection.php:88 +#: actions/favorited.php:65 lib/popularnoticesection.php:91 #: lib/publicgroupnav.php:93 #, fuzzy msgid "Popular notices" @@ -1383,7 +1645,7 @@ msgstr "用户没有个人信息。" msgid "User is not a member of group." msgstr "您未告知此个人信息" -#: actions/groupblock.php:136 actions/groupmembers.php:314 +#: actions/groupblock.php:136 actions/groupmembers.php:316 #, fuzzy msgid "Block user from group" msgstr "阻止用户" @@ -1485,25 +1747,25 @@ msgstr "%s 组成员, 第 %d 页" msgid "A list of the users in this group." msgstr "该组成员列表。" -#: actions/groupmembers.php:175 lib/action.php:442 lib/groupnav.php:107 +#: actions/groupmembers.php:175 lib/action.php:448 lib/groupnav.php:107 msgid "Admin" msgstr "admin管理员" -#: actions/groupmembers.php:346 lib/blockform.php:69 +#: actions/groupmembers.php:348 lib/blockform.php:69 msgid "Block" msgstr "阻止" -#: actions/groupmembers.php:441 +#: actions/groupmembers.php:443 #, fuzzy msgid "Make user an admin of the group" msgstr "只有admin才能编辑这个组" -#: actions/groupmembers.php:473 +#: actions/groupmembers.php:475 #, fuzzy msgid "Make Admin" msgstr "admin管理员" -#: actions/groupmembers.php:473 +#: actions/groupmembers.php:475 msgid "Make this user an admin" msgstr "" @@ -1677,6 +1939,11 @@ msgstr "验证码已被发送到您新增的即时通讯帐号。您必须允许 msgid "That is not your Jabber ID." msgstr "这不是您的Jabber帐号。" +#: actions/inbox.php:59 +#, fuzzy, php-format +msgid "Inbox for %1$s - page %2$d" +msgstr "%s 的收件箱" + #: actions/inbox.php:62 #, php-format msgid "Inbox for %s" @@ -1753,7 +2020,7 @@ msgstr "个人消息" msgid "Optionally add a personal message to the invitation." msgstr "在邀请中加几句话(可选)。" -#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:237 +#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:236 msgid "Send" msgstr "发送" @@ -1851,7 +2118,7 @@ msgstr "用户名或密码不正确。" msgid "Error setting user. You are probably not authorized." msgstr "未认证。" -#: actions/login.php:188 actions/login.php:241 lib/action.php:460 +#: actions/login.php:188 actions/login.php:241 lib/action.php:466 #: lib/logingroupnav.php:79 msgid "Login" msgstr "登录" @@ -1860,17 +2127,6 @@ msgstr "登录" msgid "Login to site" msgstr "登录" -#: actions/login.php:230 actions/profilesettings.php:106 -#: actions/register.php:424 actions/showgroup.php:236 actions/tagother.php:94 -#: lib/groupeditform.php:152 lib/userprofile.php:131 -msgid "Nickname" -msgstr "昵称" - -#: actions/login.php:233 actions/register.php:429 -#: lib/accountsettingsaction.php:116 -msgid "Password" -msgstr "密码" - #: actions/login.php:236 actions/register.php:478 msgid "Remember me" msgstr "记住登录状态" @@ -1898,21 +2154,21 @@ msgstr "" "请使用你的帐号和密码登入。没有帐号?[注册](%%action.register%%) 一个新帐号, " "或使用 [OpenID](%%action.openidlogin%%). " -#: actions/makeadmin.php:91 +#: actions/makeadmin.php:92 msgid "Only an admin can make another user an admin." msgstr "" -#: actions/makeadmin.php:95 +#: actions/makeadmin.php:96 #, fuzzy, php-format msgid "%1$s is already an admin for group \"%2$s\"." msgstr "用户没有个人信息。" -#: actions/makeadmin.php:132 +#: actions/makeadmin.php:133 #, fuzzy, php-format msgid "Can't get membership record for %1$s in group %2$s." msgstr "无法订阅用户:未找到。" -#: actions/makeadmin.php:145 +#: actions/makeadmin.php:146 #, fuzzy, php-format msgid "Can't make %1$s an admin for group %2$s." msgstr "只有admin才能编辑这个组" @@ -1921,6 +2177,30 @@ msgstr "只有admin才能编辑这个组" msgid "No current status" msgstr "没有当前状态" +#: actions/newapplication.php:52 +#, fuzzy +msgid "New Application" +msgstr "没有这份通告。" + +#: actions/newapplication.php:64 +#, fuzzy +msgid "You must be logged in to register an application." +msgstr "您必须登录才能创建小组。" + +#: actions/newapplication.php:143 +#, fuzzy +msgid "Use this form to register a new application." +msgstr "使用此表格创建组。" + +#: actions/newapplication.php:176 +msgid "Source URL is required." +msgstr "" + +#: actions/newapplication.php:258 actions/newapplication.php:267 +#, fuzzy +msgid "Could not create application." +msgstr "无法创建收藏。" + #: actions/newgroup.php:53 msgid "New group" msgstr "新组" @@ -2028,6 +2308,51 @@ msgstr "振铃呼叫发出。" msgid "Nudge sent!" msgstr "振铃呼叫已经发出!" +#: actions/oauthappssettings.php:59 +#, fuzzy +msgid "You must be logged in to list your applications." +msgstr "您必须登录才能创建小组。" + +#: actions/oauthappssettings.php:74 +#, fuzzy +msgid "OAuth applications" +msgstr "其他选项" + +#: actions/oauthappssettings.php:85 +msgid "Applications you have registered" +msgstr "" + +#: actions/oauthappssettings.php:135 +#, php-format +msgid "You have not registered any applications yet." +msgstr "" + +#: actions/oauthconnectionssettings.php:72 +msgid "Connected applications" +msgstr "" + +#: actions/oauthconnectionssettings.php:83 +msgid "You have allowed the following applications to access you account." +msgstr "" + +#: actions/oauthconnectionssettings.php:175 +#, fuzzy +msgid "You are not a user of that application." +msgstr "您未告知此个人信息" + +#: actions/oauthconnectionssettings.php:186 +msgid "Unable to revoke access for app: " +msgstr "" + +#: actions/oauthconnectionssettings.php:198 +#, php-format +msgid "You have not authorized any applications to use your account." +msgstr "" + +#: actions/oauthconnectionssettings.php:211 +msgid "Developers can edit the registration settings for their applications " +msgstr "" + #: actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" msgstr "通告没有关联个人信息" @@ -2046,8 +2371,8 @@ msgstr "连接" msgid "Only " msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1033 -#: lib/api.php:1061 lib/api.php:1171 +#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 +#: lib/api.php:1068 lib/api.php:1177 msgid "Not a supported data format." msgstr "不支持的数据格式。" @@ -2061,7 +2386,7 @@ msgstr "搜索通告" #: actions/othersettings.php:60 #, fuzzy -msgid "Other Settings" +msgid "Other settings" msgstr "Twitter 设置" #: actions/othersettings.php:71 @@ -2119,6 +2444,11 @@ msgstr "通告内容不正确" msgid "Login token expired." msgstr "登录" +#: actions/outbox.php:58 +#, fuzzy, php-format +msgid "Outbox for %1$s - page %2$d" +msgstr "%s 的发件箱" + #: actions/outbox.php:61 #, php-format msgid "Outbox for %s" @@ -2191,7 +2521,7 @@ msgstr "无法保存新密码。" msgid "Password saved." msgstr "密码已保存。" -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:326 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:331 msgid "Paths" msgstr "" @@ -2199,142 +2529,159 @@ msgstr "" msgid "Path and server settings for this StatusNet site." msgstr "" -#: actions/pathsadminpanel.php:140 +#: actions/pathsadminpanel.php:157 #, fuzzy, php-format msgid "Theme directory not readable: %s" msgstr "这个页面不提供您想要的媒体类型" -#: actions/pathsadminpanel.php:146 +#: actions/pathsadminpanel.php:163 #, php-format msgid "Avatar directory not writable: %s" msgstr "" -#: actions/pathsadminpanel.php:152 +#: actions/pathsadminpanel.php:169 #, php-format msgid "Background directory not writable: %s" msgstr "" -#: actions/pathsadminpanel.php:160 +#: actions/pathsadminpanel.php:177 #, php-format msgid "Locales directory not readable: %s" msgstr "" -#: actions/pathsadminpanel.php:166 +#: actions/pathsadminpanel.php:183 msgid "Invalid SSL server. The maximum length is 255 characters." msgstr "" -#: actions/pathsadminpanel.php:217 actions/siteadminpanel.php:58 +#: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58 #: lib/adminpanelaction.php:311 #, fuzzy msgid "Site" msgstr "邀请" -#: actions/pathsadminpanel.php:221 +#: actions/pathsadminpanel.php:238 +#, fuzzy +msgid "Server" +msgstr "恢复" + +#: actions/pathsadminpanel.php:238 +msgid "Site's server hostname." +msgstr "" + +#: actions/pathsadminpanel.php:242 msgid "Path" msgstr "" -#: actions/pathsadminpanel.php:221 +#: actions/pathsadminpanel.php:242 #, fuzzy msgid "Site path" msgstr "新通告" -#: actions/pathsadminpanel.php:225 +#: actions/pathsadminpanel.php:246 msgid "Path to locales" msgstr "" -#: actions/pathsadminpanel.php:225 +#: actions/pathsadminpanel.php:246 msgid "Directory path to locales" msgstr "" -#: actions/pathsadminpanel.php:232 -msgid "Theme" -msgstr "" - -#: actions/pathsadminpanel.php:237 -msgid "Theme server" -msgstr "" - -#: actions/pathsadminpanel.php:241 -msgid "Theme path" -msgstr "" - -#: actions/pathsadminpanel.php:245 -msgid "Theme directory" +#: actions/pathsadminpanel.php:250 +msgid "Fancy URLs" msgstr "" #: actions/pathsadminpanel.php:252 +msgid "Use fancy (more readable and memorable) URLs?" +msgstr "" + +#: actions/pathsadminpanel.php:259 +msgid "Theme" +msgstr "" + +#: actions/pathsadminpanel.php:264 +msgid "Theme server" +msgstr "" + +#: actions/pathsadminpanel.php:268 +msgid "Theme path" +msgstr "" + +#: actions/pathsadminpanel.php:272 +msgid "Theme directory" +msgstr "" + +#: actions/pathsadminpanel.php:279 #, fuzzy msgid "Avatars" msgstr "头像" -#: actions/pathsadminpanel.php:257 +#: actions/pathsadminpanel.php:284 #, fuzzy msgid "Avatar server" msgstr "头像设置" -#: actions/pathsadminpanel.php:261 +#: actions/pathsadminpanel.php:288 #, fuzzy msgid "Avatar path" msgstr "头像已更新。" -#: actions/pathsadminpanel.php:265 +#: actions/pathsadminpanel.php:292 #, fuzzy msgid "Avatar directory" msgstr "头像已更新。" -#: actions/pathsadminpanel.php:274 +#: actions/pathsadminpanel.php:301 msgid "Backgrounds" msgstr "" -#: actions/pathsadminpanel.php:278 +#: actions/pathsadminpanel.php:305 msgid "Background server" msgstr "" -#: actions/pathsadminpanel.php:282 +#: actions/pathsadminpanel.php:309 msgid "Background path" msgstr "" -#: actions/pathsadminpanel.php:286 +#: actions/pathsadminpanel.php:313 msgid "Background directory" msgstr "" -#: actions/pathsadminpanel.php:293 +#: actions/pathsadminpanel.php:320 #, fuzzy msgid "SSL" msgstr "SMS短信" -#: actions/pathsadminpanel.php:296 actions/siteadminpanel.php:346 +#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 #, fuzzy msgid "Never" msgstr "恢复" -#: actions/pathsadminpanel.php:297 +#: actions/pathsadminpanel.php:324 #, fuzzy msgid "Sometimes" msgstr "通告" -#: actions/pathsadminpanel.php:298 +#: actions/pathsadminpanel.php:325 msgid "Always" msgstr "" -#: actions/pathsadminpanel.php:302 +#: actions/pathsadminpanel.php:329 msgid "Use SSL" msgstr "" -#: actions/pathsadminpanel.php:303 +#: actions/pathsadminpanel.php:330 msgid "When to use SSL" msgstr "" -#: actions/pathsadminpanel.php:308 +#: actions/pathsadminpanel.php:335 #, fuzzy msgid "SSL server" msgstr "恢复" -#: actions/pathsadminpanel.php:309 +#: actions/pathsadminpanel.php:336 msgid "Server to direct SSL requests to" msgstr "" -#: actions/pathsadminpanel.php:325 +#: actions/pathsadminpanel.php:352 #, fuzzy msgid "Save paths" msgstr "新通告" @@ -2396,7 +2743,7 @@ msgid "Full name" msgstr "全名" #: actions/profilesettings.php:115 actions/register.php:453 -#: lib/groupeditform.php:161 +#: lib/applicationeditform.php:228 lib/groupeditform.php:161 msgid "Homepage" msgstr "主页" @@ -2420,7 +2767,7 @@ msgstr "自述" #: actions/profilesettings.php:132 actions/register.php:471 #: actions/showgroup.php:256 actions/tagother.php:112 -#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:164 msgid "Location" msgstr "位置" @@ -2444,7 +2791,7 @@ msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "你的标签 (字母letters, 数字numbers, -, ., 和 _), 以逗号或空格分隔" -#: actions/profilesettings.php:151 actions/siteadminpanel.php:294 +#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 msgid "Language" msgstr "语言" @@ -2470,7 +2817,7 @@ msgstr "自动订阅任何订阅我的更新的人(这个选项最适合机器 msgid "Bio is too long (max %d chars)." msgstr "自述过长(不能超过140字符)。" -#: actions/profilesettings.php:235 actions/siteadminpanel.php:164 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 msgid "Timezone not selected." msgstr "未选择时区。" @@ -2483,25 +2830,25 @@ msgstr "语言过长(不能超过50个字符)。" msgid "Invalid tag: \"%s\"" msgstr "主页'%s'不正确" -#: actions/profilesettings.php:302 +#: actions/profilesettings.php:306 msgid "Couldn't update user for autosubscribe." msgstr "无法更新用户的自动订阅选项。" -#: actions/profilesettings.php:359 +#: actions/profilesettings.php:363 #, fuzzy msgid "Couldn't save location prefs." msgstr "无法保存个人信息。" -#: actions/profilesettings.php:371 +#: actions/profilesettings.php:375 msgid "Couldn't save profile." msgstr "无法保存个人信息。" -#: actions/profilesettings.php:379 +#: actions/profilesettings.php:383 #, fuzzy msgid "Couldn't save tags." msgstr "无法保存个人信息。" -#: actions/profilesettings.php:387 lib/adminpanelaction.php:137 +#: actions/profilesettings.php:391 lib/adminpanelaction.php:137 msgid "Settings saved." msgstr "设置已保存。" @@ -2524,39 +2871,39 @@ msgstr "公开的时间表" msgid "Public timeline" msgstr "公开的时间表" -#: actions/public.php:151 +#: actions/public.php:159 #, fuzzy msgid "Public Stream Feed (RSS 1.0)" msgstr "公开的聚合" -#: actions/public.php:155 +#: actions/public.php:163 #, fuzzy msgid "Public Stream Feed (RSS 2.0)" msgstr "公开的聚合" -#: actions/public.php:159 +#: actions/public.php:167 #, fuzzy msgid "Public Stream Feed (Atom)" msgstr "公开的聚合" -#: actions/public.php:179 +#: actions/public.php:187 #, php-format msgid "" "This is the public timeline for %%site.name%% but no one has posted anything " "yet." msgstr "" -#: actions/public.php:182 +#: actions/public.php:190 msgid "Be the first to post!" msgstr "" -#: actions/public.php:186 +#: actions/public.php:194 #, php-format msgid "" "Why not [register an account](%%action.register%%) and be the first to post!" msgstr "" -#: actions/public.php:233 +#: actions/public.php:241 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2565,7 +2912,7 @@ msgid "" "friends, family, and colleagues! ([Read more](%%doc.help%%))" msgstr "" -#: actions/public.php:238 +#: actions/public.php:246 #, fuzzy, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2601,7 +2948,7 @@ msgid "" "one!" msgstr "" -#: actions/publictagcloud.php:131 +#: actions/publictagcloud.php:134 msgid "Tag cloud" msgstr "标签云聚集" @@ -2738,7 +3085,7 @@ msgstr "验证码出错。" msgid "Registration successful" msgstr "注册成功。" -#: actions/register.php:114 actions/register.php:503 lib/action.php:457 +#: actions/register.php:114 actions/register.php:503 lib/action.php:463 #: lib/logingroupnav.php:85 msgid "Register" msgstr "注册" @@ -2778,7 +3125,7 @@ msgid "Same as password above. Required." msgstr "相同的密码。此项必填。" #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:270 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 msgid "Email" msgstr "电子邮件" @@ -2879,7 +3226,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "您在其他兼容的微博客服务的个人信息URL" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:365 +#: lib/userprofile.php:368 msgid "Subscribe" msgstr "订阅" @@ -2922,7 +3269,7 @@ msgstr "您必须同意此授权方可注册。" msgid "You already repeated that notice." msgstr "您已成功阻止该用户:" -#: actions/repeat.php:114 lib/noticelist.php:629 +#: actions/repeat.php:114 lib/noticelist.php:656 #, fuzzy msgid "Repeated" msgstr "创建" @@ -2938,6 +3285,11 @@ msgstr "创建" msgid "Replies to %s" msgstr "%s 的回复" +#: actions/replies.php:127 +#, fuzzy, php-format +msgid "Replies to %1$s, page %2$d" +msgstr "发送给 %1$s 的 %2$s 消息" + #: actions/replies.php:144 #, fuzzy, php-format msgid "Replies feed for %s (RSS 1.0)" @@ -2979,6 +3331,11 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "发送给 %1$s 的 %2$s 消息" +#: actions/rsd.php:146 actions/version.php:157 +#, fuzzy +msgid "StatusNet" +msgstr "头像已更新。" + #: actions/sandbox.php:65 actions/unsandbox.php:65 #, fuzzy msgid "You cannot sandbox users on this site." @@ -2989,6 +3346,126 @@ msgstr "无法向此用户发送消息。" msgid "User is already sandboxed." msgstr "用户没有个人信息。" +#: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:336 +msgid "Sessions" +msgstr "" + +#: actions/sessionsadminpanel.php:65 +msgid "Session settings for this StatusNet site." +msgstr "" + +#: actions/sessionsadminpanel.php:175 +msgid "Handle sessions" +msgstr "" + +#: actions/sessionsadminpanel.php:177 +msgid "Whether to handle sessions ourselves." +msgstr "" + +#: actions/sessionsadminpanel.php:181 +msgid "Session debugging" +msgstr "" + +#: actions/sessionsadminpanel.php:183 +msgid "Turn on debugging output for sessions." +msgstr "" + +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/useradminpanel.php:293 +#, fuzzy +msgid "Save site settings" +msgstr "头像设置" + +#: actions/showapplication.php:82 +#, fuzzy +msgid "You must be logged in to view an application." +msgstr "您必须登录才能邀请其他人使用 %s" + +#: actions/showapplication.php:157 +#, fuzzy +msgid "Application profile" +msgstr "通告没有关联个人信息" + +#: actions/showapplication.php:159 lib/applicationeditform.php:180 +msgid "Icon" +msgstr "" + +#: actions/showapplication.php:169 actions/version.php:195 +#: lib/applicationeditform.php:195 +#, fuzzy +msgid "Name" +msgstr "昵称" + +#: actions/showapplication.php:178 lib/applicationeditform.php:222 +#, fuzzy +msgid "Organization" +msgstr "分页" + +#: actions/showapplication.php:187 actions/version.php:198 +#: lib/applicationeditform.php:209 lib/groupeditform.php:172 +#, fuzzy +msgid "Description" +msgstr "描述" + +#: actions/showapplication.php:192 actions/showgroup.php:429 +#: lib/profileaction.php:174 +msgid "Statistics" +msgstr "统计" + +#: actions/showapplication.php:203 +#, php-format +msgid "Created by %1$s - %2$s access by default - %3$d users" +msgstr "" + +#: actions/showapplication.php:213 +msgid "Application actions" +msgstr "" + +#: actions/showapplication.php:236 +msgid "Reset key & secret" +msgstr "" + +#: actions/showapplication.php:261 +msgid "Application info" +msgstr "" + +#: actions/showapplication.php:263 +msgid "Consumer key" +msgstr "" + +#: actions/showapplication.php:268 +msgid "Consumer secret" +msgstr "" + +#: actions/showapplication.php:273 +msgid "Request token URL" +msgstr "" + +#: actions/showapplication.php:278 +msgid "Access token URL" +msgstr "" + +#: actions/showapplication.php:283 +msgid "Authorize URL" +msgstr "" + +#: actions/showapplication.php:288 +msgid "" +"Note: We support HMAC-SHA1 signatures. We do not support the plaintext " +"signature method." +msgstr "" + +#: actions/showapplication.php:309 +#, fuzzy +msgid "Are you sure you want to reset your consumer key and secret?" +msgstr "确定要删除这条消息吗?" + +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%1$s's favorite notices, page %2$d" +msgstr "%s 收藏的通告" + #: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "无法获取收藏的通告。" @@ -3038,18 +3515,23 @@ msgstr "" msgid "%s group" msgstr "%s 组" +#: actions/showgroup.php:84 +#, fuzzy, php-format +msgid "%1$s group, page %2$d" +msgstr "%s 组成员, 第 %d 页" + #: actions/showgroup.php:218 #, fuzzy msgid "Group profile" msgstr "组资料" #: actions/showgroup.php:263 actions/tagother.php:118 -#: actions/userauthorization.php:167 lib/userprofile.php:177 +#: actions/userauthorization.php:175 lib/userprofile.php:177 msgid "URL" msgstr "URL 互联网地址" #: actions/showgroup.php:274 actions/tagother.php:128 -#: actions/userauthorization.php:179 lib/userprofile.php:194 +#: actions/userauthorization.php:187 lib/userprofile.php:194 #, fuzzy msgid "Note" msgstr "通告" @@ -3097,10 +3579,6 @@ msgstr "(没有)" msgid "All members" msgstr "所有成员" -#: actions/showgroup.php:429 lib/profileaction.php:174 -msgid "Statistics" -msgstr "统计" - #: actions/showgroup.php:432 #, fuzzy msgid "Created" @@ -3160,6 +3638,11 @@ msgstr "消息已发布。" msgid " tagged %s" msgstr "带 %s 标签的通告" +#: actions/showstream.php:79 +#, fuzzy, php-format +msgid "%1$s, page %2$d" +msgstr "%s 及好友" + #: actions/showstream.php:122 #, fuzzy, php-format msgid "Notice feed for %1$s tagged %2$s (RSS 1.0)" @@ -3185,25 +3668,25 @@ msgstr "%s 的通告聚合" msgid "FOAF for %s" msgstr "%s 的发件箱" -#: actions/showstream.php:191 +#: actions/showstream.php:200 #, fuzzy, php-format msgid "This is the timeline for %1$s but %2$s hasn't posted anything yet." msgstr "这是 %s 和好友的时间线,但是没有任何人发布内容。" -#: actions/showstream.php:196 +#: actions/showstream.php:205 msgid "" "Seen anything interesting recently? You haven't posted any notices yet, now " "would be a good time to start :)" msgstr "" -#: actions/showstream.php:198 +#: actions/showstream.php:207 #, php-format msgid "" "You can try to nudge %1$s or [post something to his or her attention](%%%%" "action.newnotice%%%%?status_textarea=%2$s)." msgstr "" -#: actions/showstream.php:234 +#: actions/showstream.php:243 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3212,7 +3695,7 @@ msgid "" "follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showstream.php:239 +#: actions/showstream.php:248 #, fuzzy, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3222,7 +3705,7 @@ msgstr "" "**%s** 有一个帐号在 %%%%site.name%%%%, 一个微博客服务 [micro-blogging]" "(http://en.wikipedia.org/wiki/Micro-blogging)" -#: actions/showstream.php:313 +#: actions/showstream.php:305 #, fuzzy, php-format msgid "Repeat of %s" msgstr "%s 的回复" @@ -3241,207 +3724,148 @@ msgstr "用户没有个人信息。" msgid "Basic settings for this StatusNet site." msgstr "" -#: actions/siteadminpanel.php:146 +#: actions/siteadminpanel.php:132 msgid "Site name must have non-zero length." msgstr "" -#: actions/siteadminpanel.php:154 +#: actions/siteadminpanel.php:140 #, fuzzy msgid "You must have a valid contact email address." msgstr "不是有效的电子邮件" -#: actions/siteadminpanel.php:172 +#: actions/siteadminpanel.php:158 #, php-format msgid "Unknown language \"%s\"." msgstr "" -#: actions/siteadminpanel.php:179 +#: actions/siteadminpanel.php:165 msgid "Invalid snapshot report URL." msgstr "" -#: actions/siteadminpanel.php:185 +#: actions/siteadminpanel.php:171 msgid "Invalid snapshot run value." msgstr "" -#: actions/siteadminpanel.php:191 +#: actions/siteadminpanel.php:177 msgid "Snapshot frequency must be a number." msgstr "" -#: actions/siteadminpanel.php:197 +#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "" -#: actions/siteadminpanel.php:203 +#: actions/siteadminpanel.php:189 msgid "Dupe limit must 1 or more seconds." msgstr "" -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:239 msgid "General" msgstr "" -#: actions/siteadminpanel.php:256 +#: actions/siteadminpanel.php:242 #, fuzzy msgid "Site name" msgstr "新通告" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:243 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "" -#: actions/siteadminpanel.php:261 +#: actions/siteadminpanel.php:247 msgid "Brought by" msgstr "" -#: actions/siteadminpanel.php:262 +#: actions/siteadminpanel.php:248 msgid "Text used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:266 +#: actions/siteadminpanel.php:252 msgid "Brought by URL" msgstr "" -#: actions/siteadminpanel.php:267 +#: actions/siteadminpanel.php:253 msgid "URL used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:271 +#: actions/siteadminpanel.php:257 #, fuzzy msgid "Contact email address for your site" msgstr "新的电子邮件地址,用于发布 %s 信息" -#: actions/siteadminpanel.php:277 +#: actions/siteadminpanel.php:263 #, fuzzy msgid "Local" msgstr "本地显示" -#: actions/siteadminpanel.php:288 +#: actions/siteadminpanel.php:274 msgid "Default timezone" msgstr "" -#: actions/siteadminpanel.php:289 +#: actions/siteadminpanel.php:275 msgid "Default timezone for the site; usually UTC." msgstr "" -#: actions/siteadminpanel.php:295 +#: actions/siteadminpanel.php:281 #, fuzzy msgid "Default site language" msgstr "首选语言" -#: actions/siteadminpanel.php:303 -#, fuzzy -msgid "URLs" -msgstr "URL 互联网地址" - -#: actions/siteadminpanel.php:306 -#, fuzzy -msgid "Server" -msgstr "恢复" - -#: actions/siteadminpanel.php:306 -msgid "Site's server hostname." -msgstr "" - -#: actions/siteadminpanel.php:310 -msgid "Fancy URLs" -msgstr "" - -#: actions/siteadminpanel.php:312 -msgid "Use fancy (more readable and memorable) URLs?" -msgstr "" - -#: actions/siteadminpanel.php:318 -#, fuzzy -msgid "Access" -msgstr "接受" - -#: actions/siteadminpanel.php:321 -#, fuzzy -msgid "Private" -msgstr "隐私" - -#: actions/siteadminpanel.php:323 -msgid "Prohibit anonymous users (not logged in) from viewing site?" -msgstr "" - -#: actions/siteadminpanel.php:327 -#, fuzzy -msgid "Invite only" -msgstr "邀请" - -#: actions/siteadminpanel.php:329 -msgid "Make registration invitation only." -msgstr "" - -#: actions/siteadminpanel.php:333 -#, fuzzy -msgid "Closed" -msgstr "阻止" - -#: actions/siteadminpanel.php:335 -msgid "Disable new registrations." -msgstr "" - -#: actions/siteadminpanel.php:341 +#: actions/siteadminpanel.php:289 msgid "Snapshots" msgstr "" -#: actions/siteadminpanel.php:344 +#: actions/siteadminpanel.php:292 msgid "Randomly during Web hit" msgstr "" -#: actions/siteadminpanel.php:345 +#: actions/siteadminpanel.php:293 msgid "In a scheduled job" msgstr "" -#: actions/siteadminpanel.php:347 +#: actions/siteadminpanel.php:295 msgid "Data snapshots" msgstr "" -#: actions/siteadminpanel.php:348 +#: actions/siteadminpanel.php:296 msgid "When to send statistical data to status.net servers" msgstr "" -#: actions/siteadminpanel.php:353 +#: actions/siteadminpanel.php:301 msgid "Frequency" msgstr "" -#: actions/siteadminpanel.php:354 +#: actions/siteadminpanel.php:302 msgid "Snapshots will be sent once every N web hits" msgstr "" -#: actions/siteadminpanel.php:359 +#: actions/siteadminpanel.php:307 msgid "Report URL" msgstr "" -#: actions/siteadminpanel.php:360 +#: actions/siteadminpanel.php:308 msgid "Snapshots will be sent to this URL" msgstr "" -#: actions/siteadminpanel.php:367 +#: actions/siteadminpanel.php:315 msgid "Limits" msgstr "" -#: actions/siteadminpanel.php:370 +#: actions/siteadminpanel.php:318 msgid "Text limit" msgstr "" -#: actions/siteadminpanel.php:370 +#: actions/siteadminpanel.php:318 msgid "Maximum number of characters for notices." msgstr "" -#: actions/siteadminpanel.php:374 +#: actions/siteadminpanel.php:322 msgid "Dupe limit" msgstr "" -#: actions/siteadminpanel.php:374 +#: actions/siteadminpanel.php:322 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" -#: actions/siteadminpanel.php:388 actions/useradminpanel.php:313 -#, fuzzy -msgid "Save site settings" -msgstr "头像设置" - #: actions/smssettings.php:58 #, fuzzy msgid "SMS settings" @@ -3548,17 +3972,27 @@ msgstr "没有输入验证码" msgid "You are not subscribed to that profile." msgstr "您未告知此个人信息" -#: actions/subedit.php:83 +#: actions/subedit.php:83 classes/Subscription.php:89 +#: classes/Subscription.php:116 #, fuzzy msgid "Could not save subscription." msgstr "无法删除订阅。" -#: actions/subscribe.php:55 -#, fuzzy -msgid "Not a local user." -msgstr "没有这个用户。" +#: actions/subscribe.php:77 +msgid "This action only accepts POST requests." +msgstr "" -#: actions/subscribe.php:69 +#: actions/subscribe.php:107 +#, fuzzy +msgid "No such profile." +msgstr "没有这份通告。" + +#: actions/subscribe.php:117 +#, fuzzy +msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." +msgstr "您未告知此个人信息" + +#: actions/subscribe.php:145 #, fuzzy msgid "Subscribed" msgstr "订阅" @@ -3619,7 +4053,7 @@ msgstr "这是您订阅的用户。" msgid "These are the people whose notices %s listens to." msgstr "这是 %s 订阅的用户。" -#: actions/subscriptions.php:121 +#: actions/subscriptions.php:126 #, php-format msgid "" "You're not listening to anyone's notices right now, try subscribing to " @@ -3629,20 +4063,25 @@ msgid "" "automatically subscribe to people you already follow there." msgstr "" -#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#: actions/subscriptions.php:128 actions/subscriptions.php:132 #, fuzzy, php-format msgid "%s is not listening to anyone." msgstr "%1$s 开始关注您的 %2$s 信息。" -#: actions/subscriptions.php:194 +#: actions/subscriptions.php:199 #, fuzzy msgid "Jabber" msgstr "没有 Jabber ID。" -#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:204 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "SMS短信" +#: actions/tag.php:68 +#, fuzzy, php-format +msgid "Notices tagged with %1$s, page %2$d" +msgstr "用户自加标签 %s - 第 %d 页" + #: actions/tag.php:86 #, fuzzy, php-format msgid "Notice feed for tag %s (RSS 1.0)" @@ -3673,7 +4112,8 @@ msgstr "标签" msgid "User profile" msgstr "用户没有个人信息。" -#: actions/tagother.php:81 lib/userprofile.php:102 +#: actions/tagother.php:81 actions/userauthorization.php:132 +#: lib/userprofile.php:102 msgid "Photo" msgstr "相片" @@ -3737,7 +4177,7 @@ msgstr "服务器没有返回个人信息URL。" msgid "Unsubscribed" msgstr "退订" -#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#: actions/updateprofile.php:62 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -3752,89 +4192,69 @@ msgstr "用户" msgid "User settings for this StatusNet site." msgstr "" -#: actions/useradminpanel.php:149 +#: actions/useradminpanel.php:148 msgid "Invalid bio limit. Must be numeric." msgstr "" -#: actions/useradminpanel.php:155 +#: actions/useradminpanel.php:154 msgid "Invalid welcome text. Max length is 255 characters." msgstr "" -#: actions/useradminpanel.php:165 +#: actions/useradminpanel.php:164 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 +#: actions/useradminpanel.php:217 lib/accountsettingsaction.php:108 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "个人信息" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:221 msgid "Bio Limit" msgstr "" -#: actions/useradminpanel.php:223 +#: actions/useradminpanel.php:222 msgid "Maximum length of a profile bio in characters." msgstr "" -#: actions/useradminpanel.php:231 +#: actions/useradminpanel.php:230 #, fuzzy msgid "New users" msgstr "邀请新用户" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:234 msgid "New user welcome" msgstr "" -#: actions/useradminpanel.php:236 +#: actions/useradminpanel.php:235 msgid "Welcome text for new users (Max 255 chars)." msgstr "" -#: actions/useradminpanel.php:241 +#: actions/useradminpanel.php:240 #, fuzzy msgid "Default subscription" msgstr "所有订阅" -#: actions/useradminpanel.php:242 +#: actions/useradminpanel.php:241 #, fuzzy msgid "Automatically subscribe new users to this user." msgstr "自动订阅任何订阅我的更新的人(这个选项最适合机器人)" -#: actions/useradminpanel.php:251 +#: actions/useradminpanel.php:250 #, fuzzy msgid "Invitations" msgstr "已发送邀请" -#: actions/useradminpanel.php:256 +#: actions/useradminpanel.php:255 #, fuzzy msgid "Invitations enabled" msgstr "已发送邀请" -#: actions/useradminpanel.php:258 +#: actions/useradminpanel.php:257 msgid "Whether to allow users to invite new users." msgstr "" -#: actions/useradminpanel.php:265 -msgid "Sessions" -msgstr "" - -#: actions/useradminpanel.php:270 -msgid "Handle sessions" -msgstr "" - -#: actions/useradminpanel.php:272 -msgid "Whether to handle sessions ourselves." -msgstr "" - -#: actions/useradminpanel.php:276 -msgid "Session debugging" -msgstr "" - -#: actions/useradminpanel.php:278 -msgid "Turn on debugging output for sessions." -msgstr "" - #: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "确认订阅" @@ -3849,39 +4269,39 @@ msgstr "" "请检查详细信息,确认希望订阅此用户的通告。如果您刚才没有要求订阅任何人的通" "告,请点击\"取消\"。" -#: actions/userauthorization.php:188 actions/version.php:165 +#: actions/userauthorization.php:196 actions/version.php:165 #, fuzzy msgid "License" msgstr "注册证" -#: actions/userauthorization.php:209 +#: actions/userauthorization.php:217 msgid "Accept" msgstr "接受" -#: actions/userauthorization.php:210 lib/subscribeform.php:115 +#: actions/userauthorization.php:218 lib/subscribeform.php:115 #: lib/subscribeform.php:139 #, fuzzy msgid "Subscribe to this user" msgstr "订阅 %s" -#: actions/userauthorization.php:211 +#: actions/userauthorization.php:219 msgid "Reject" msgstr "拒绝" -#: actions/userauthorization.php:212 +#: actions/userauthorization.php:220 #, fuzzy msgid "Reject this subscription" msgstr "所有订阅" -#: actions/userauthorization.php:225 +#: actions/userauthorization.php:232 msgid "No authorization request!" msgstr "未收到认证请求!" -#: actions/userauthorization.php:247 +#: actions/userauthorization.php:254 msgid "Subscription authorized" msgstr "订阅已确认" -#: actions/userauthorization.php:249 +#: actions/userauthorization.php:256 #, fuzzy msgid "" "The subscription has been authorized, but no callback URL was passed. Check " @@ -3890,11 +4310,11 @@ msgid "" msgstr "" "订阅已确认,但是没有回传URL。请到此网站查看如何确认订阅。您的订阅标识是:" -#: actions/userauthorization.php:259 +#: actions/userauthorization.php:266 msgid "Subscription rejected" msgstr "订阅被拒绝" -#: actions/userauthorization.php:261 +#: actions/userauthorization.php:268 #, fuzzy msgid "" "The subscription has been rejected, but no callback URL was passed. Check " @@ -3902,37 +4322,37 @@ msgid "" "subscription." msgstr "订阅已被拒绝,但是没有回传URL。请到此网站查看如何拒绝订阅。" -#: actions/userauthorization.php:296 +#: actions/userauthorization.php:303 #, php-format msgid "Listener URI ‘%s’ not found here." msgstr "" -#: actions/userauthorization.php:301 +#: actions/userauthorization.php:308 #, php-format msgid "Listenee URI ‘%s’ is too long." msgstr "" -#: actions/userauthorization.php:307 +#: actions/userauthorization.php:314 #, php-format msgid "Listenee URI ‘%s’ is a local user." msgstr "" -#: actions/userauthorization.php:322 +#: actions/userauthorization.php:329 #, php-format msgid "Profile URL ‘%s’ is for a local user." msgstr "" -#: actions/userauthorization.php:338 +#: actions/userauthorization.php:345 #, php-format msgid "Avatar URL ‘%s’ is not valid." msgstr "" -#: actions/userauthorization.php:343 +#: actions/userauthorization.php:350 #, fuzzy, php-format msgid "Can’t read avatar URL ‘%s’." msgstr "无法访问头像URL '%s'" -#: actions/userauthorization.php:348 +#: actions/userauthorization.php:355 #, fuzzy, php-format msgid "Wrong image type for avatar URL ‘%s’." msgstr "'%s' 图像格式错误" @@ -3952,6 +4372,11 @@ msgstr "" msgid "Enjoy your hotdog!" msgstr "" +#: actions/usergroups.php:64 +#, fuzzy, php-format +msgid "%1$s groups, page %2$d" +msgstr "%s 组成员, 第 %d 页" + #: actions/usergroups.php:130 #, fuzzy msgid "Search for more groups" @@ -3979,11 +4404,6 @@ msgid "" "Inc. and contributors." msgstr "" -#: actions/version.php:157 -#, fuzzy -msgid "StatusNet" -msgstr "头像已更新。" - #: actions/version.php:161 msgid "Contributors" msgstr "" @@ -4015,12 +4435,7 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:195 -#, fuzzy -msgid "Name" -msgstr "昵称" - -#: actions/version.php:196 lib/action.php:741 +#: actions/version.php:196 lib/action.php:747 #, fuzzy msgid "Version" msgstr "个人" @@ -4029,11 +4444,6 @@ msgstr "个人" msgid "Author(s)" msgstr "" -#: actions/version.php:198 lib/groupeditform.php:172 -#, fuzzy -msgid "Description" -msgstr "描述" - #: classes/File.php:144 #, php-format msgid "" @@ -4084,61 +4494,89 @@ msgstr "无法添加信息。" msgid "Could not update message with new URI." msgstr "无法添加新URI的信息。" -#: classes/Notice.php:171 +#: classes/Notice.php:157 #, php-format msgid "DB error inserting hashtag: %s" msgstr "添加标签时数据库出错:%s" -#: classes/Notice.php:225 +#: classes/Notice.php:222 #, fuzzy msgid "Problem saving notice. Too long." msgstr "保存通告时出错。" -#: classes/Notice.php:229 +#: classes/Notice.php:226 #, fuzzy msgid "Problem saving notice. Unknown user." msgstr "保存通告时出错。" -#: classes/Notice.php:234 +#: classes/Notice.php:231 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "你在短时间里发布了过多的消息,请深呼吸,过几分钟再发消息。" -#: classes/Notice.php:240 +#: classes/Notice.php:237 #, fuzzy msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." msgstr "你在短时间里发布了过多的消息,请深呼吸,过几分钟再发消息。" -#: classes/Notice.php:246 +#: classes/Notice.php:243 msgid "You are banned from posting notices on this site." msgstr "在这个网站你被禁止发布消息。" -#: classes/Notice.php:305 classes/Notice.php:330 +#: classes/Notice.php:309 classes/Notice.php:335 msgid "Problem saving notice." msgstr "保存通告时出错。" -#: classes/Notice.php:1052 -#, php-format -msgid "DB error inserting reply: %s" -msgstr "添加回复时数据库出错:%s" +#: classes/Notice.php:882 +#, fuzzy +msgid "Problem saving group inbox." +msgstr "保存通告时出错。" -#: classes/Notice.php:1423 +#: classes/Notice.php:1407 #, fuzzy, php-format msgid "RT @%1$s %2$s" msgstr "%1$s (%2$s)" -#: classes/User.php:382 +#: classes/Subscription.php:66 lib/oauthstore.php:465 +#, fuzzy +msgid "You have been banned from subscribing." +msgstr "那个用户阻止了你的订阅。" + +#: classes/Subscription.php:70 +msgid "Already subscribed!" +msgstr "" + +#: classes/Subscription.php:74 +#, fuzzy +msgid "User has blocked you." +msgstr "用户没有个人信息。" + +#: classes/Subscription.php:157 +#, fuzzy +msgid "Not subscribed!" +msgstr "未订阅!" + +#: classes/Subscription.php:163 +#, fuzzy +msgid "Couldn't delete self-subscription." +msgstr "无法删除订阅。" + +#: classes/Subscription.php:179 lib/subs.php:69 +msgid "Couldn't delete subscription." +msgstr "无法删除订阅。" + +#: classes/User.php:372 #, fuzzy, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "发送给 %1$s 的 %2$s 消息" -#: classes/User_group.php:380 +#: classes/User_group.php:423 msgid "Could not create group." msgstr "无法创建组。" -#: classes/User_group.php:409 +#: classes/User_group.php:452 #, fuzzy msgid "Could not set group membership." msgstr "无法删除订阅。" @@ -4181,137 +4619,133 @@ msgstr "%1$s (%2$s)" msgid "Untitled page" msgstr "无标题页" -#: lib/action.php:427 +#: lib/action.php:433 msgid "Primary site navigation" msgstr "主站导航" -#: lib/action.php:433 +#: lib/action.php:439 msgid "Home" msgstr "主页" -#: lib/action.php:433 +#: lib/action.php:439 msgid "Personal profile and friends timeline" msgstr "个人资料及朋友年表" -#: lib/action.php:435 -msgid "Account" -msgstr "帐号" - -#: lib/action.php:435 +#: lib/action.php:441 #, fuzzy msgid "Change your email, avatar, password, profile" msgstr "修改资料" -#: lib/action.php:438 +#: lib/action.php:444 msgid "Connect" msgstr "连接" -#: lib/action.php:438 +#: lib/action.php:444 #, fuzzy msgid "Connect to services" msgstr "无法重定向到服务器:%s" -#: lib/action.php:442 +#: lib/action.php:448 #, fuzzy msgid "Change site configuration" msgstr "主站导航" -#: lib/action.php:446 lib/subgroupnav.php:105 +#: lib/action.php:452 lib/subgroupnav.php:105 msgid "Invite" msgstr "邀请" -#: lib/action.php:447 lib/subgroupnav.php:106 +#: lib/action.php:453 lib/subgroupnav.php:106 #, fuzzy, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "使用这个表单来邀请好友和同事加入。" -#: lib/action.php:452 +#: lib/action.php:458 msgid "Logout" msgstr "登出" -#: lib/action.php:452 +#: lib/action.php:458 msgid "Logout from the site" msgstr "登出本站" -#: lib/action.php:457 +#: lib/action.php:463 #, fuzzy msgid "Create an account" msgstr "创建新帐号" -#: lib/action.php:460 +#: lib/action.php:466 msgid "Login to the site" msgstr "登入本站" -#: lib/action.php:463 lib/action.php:726 +#: lib/action.php:469 lib/action.php:732 msgid "Help" msgstr "帮助" -#: lib/action.php:463 +#: lib/action.php:469 #, fuzzy msgid "Help me!" msgstr "帮助" -#: lib/action.php:466 lib/searchaction.php:127 +#: lib/action.php:472 lib/searchaction.php:127 msgid "Search" msgstr "搜索" -#: lib/action.php:466 +#: lib/action.php:472 msgid "Search for people or text" msgstr "检索人或文字" -#: lib/action.php:487 +#: lib/action.php:493 #, fuzzy msgid "Site notice" msgstr "新通告" -#: lib/action.php:553 +#: lib/action.php:559 msgid "Local views" msgstr "本地显示" -#: lib/action.php:619 +#: lib/action.php:625 #, fuzzy msgid "Page notice" msgstr "新通告" -#: lib/action.php:721 +#: lib/action.php:727 #, fuzzy msgid "Secondary site navigation" msgstr "次项站导航" -#: lib/action.php:728 +#: lib/action.php:734 msgid "About" msgstr "关于" -#: lib/action.php:730 +#: lib/action.php:736 msgid "FAQ" msgstr "常见问题FAQ" -#: lib/action.php:734 +#: lib/action.php:740 msgid "TOS" msgstr "" -#: lib/action.php:737 +#: lib/action.php:743 msgid "Privacy" msgstr "隐私" -#: lib/action.php:739 +#: lib/action.php:745 msgid "Source" msgstr "来源" -#: lib/action.php:743 +#: lib/action.php:749 msgid "Contact" msgstr "联系人" -#: lib/action.php:745 +#: lib/action.php:751 #, fuzzy msgid "Badge" msgstr "呼叫" -#: lib/action.php:773 +#: lib/action.php:779 msgid "StatusNet software license" msgstr "StatusNet软件注册证" -#: lib/action.php:776 +#: lib/action.php:782 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4320,12 +4754,12 @@ msgstr "" "**%%site.name%%** 是一个微博客服务,提供者为 [%%site.broughtby%%](%%site." "broughtbyurl%%)。" -#: lib/action.php:778 +#: lib/action.php:784 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** 是一个微博客服务。" -#: lib/action.php:780 +#: lib/action.php:786 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4336,37 +4770,58 @@ msgstr "" "General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)" "授权。" -#: lib/action.php:794 +#: lib/action.php:801 #, fuzzy msgid "Site content license" msgstr "StatusNet软件注册证" -#: lib/action.php:803 +#: lib/action.php:806 +#, php-format +msgid "Content and data of %1$s are private and confidential." +msgstr "" + +#: lib/action.php:811 +#, php-format +msgid "Content and data copyright by %1$s. All rights reserved." +msgstr "" + +#: lib/action.php:814 +msgid "Content and data copyright by contributors. All rights reserved." +msgstr "" + +#: lib/action.php:827 msgid "All " msgstr "全部" -#: lib/action.php:808 +#: lib/action.php:833 msgid "license." msgstr "注册证" -#: lib/action.php:1102 +#: lib/action.php:1132 msgid "Pagination" msgstr "分页" -#: lib/action.php:1111 +#: lib/action.php:1141 #, fuzzy msgid "After" msgstr "« 之后" -#: lib/action.php:1119 +#: lib/action.php:1149 #, fuzzy msgid "Before" msgstr "之前 »" -#: lib/action.php:1167 -#, fuzzy -msgid "There was a problem with your session token." -msgstr "会话标识有问题,请重试。" +#: lib/activity.php:382 +msgid "Can't handle remote content yet." +msgstr "" + +#: lib/activity.php:410 +msgid "Can't handle embedded XML content yet." +msgstr "" + +#: lib/activity.php:414 +msgid "Can't handle embedded Base64 content yet." +msgstr "" #: lib/adminpanelaction.php:96 #, fuzzy @@ -4403,11 +4858,105 @@ msgstr "电子邮件地址确认" msgid "Design configuration" msgstr "SMS短信确认" -#: lib/adminpanelaction.php:322 lib/adminpanelaction.php:327 +#: lib/adminpanelaction.php:322 +#, fuzzy +msgid "User configuration" +msgstr "SMS短信确认" + +#: lib/adminpanelaction.php:327 +#, fuzzy +msgid "Access configuration" +msgstr "SMS短信确认" + +#: lib/adminpanelaction.php:332 #, fuzzy msgid "Paths configuration" msgstr "SMS短信确认" +#: lib/adminpanelaction.php:337 +#, fuzzy +msgid "Sessions configuration" +msgstr "SMS短信确认" + +#: lib/apiauth.php:95 +msgid "API resource requires read-write access, but you only have read access." +msgstr "" + +#: lib/apiauth.php:273 +#, php-format +msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" +msgstr "" + +#: lib/applicationeditform.php:136 +msgid "Edit application" +msgstr "" + +#: lib/applicationeditform.php:184 +msgid "Icon for this application" +msgstr "" + +#: lib/applicationeditform.php:204 +#, fuzzy, php-format +msgid "Describe your application in %d characters" +msgstr "用不超过140个字符描述您自己和您的爱好" + +#: lib/applicationeditform.php:207 +#, fuzzy +msgid "Describe your application" +msgstr "用不超过140个字符描述您自己和您的爱好" + +#: lib/applicationeditform.php:216 +#, fuzzy +msgid "Source URL" +msgstr "来源" + +#: lib/applicationeditform.php:218 +#, fuzzy +msgid "URL of the homepage of this application" +msgstr "您的主页、博客或在其他站点的URL" + +#: lib/applicationeditform.php:224 +msgid "Organization responsible for this application" +msgstr "" + +#: lib/applicationeditform.php:230 +#, fuzzy +msgid "URL for the homepage of the organization" +msgstr "您的主页、博客或在其他站点的URL" + +#: lib/applicationeditform.php:236 +msgid "URL to redirect to after authentication" +msgstr "" + +#: lib/applicationeditform.php:258 +msgid "Browser" +msgstr "" + +#: lib/applicationeditform.php:274 +msgid "Desktop" +msgstr "" + +#: lib/applicationeditform.php:275 +msgid "Type of application, browser or desktop" +msgstr "" + +#: lib/applicationeditform.php:297 +msgid "Read-only" +msgstr "" + +#: lib/applicationeditform.php:315 +msgid "Read-write" +msgstr "" + +#: lib/applicationeditform.php:316 +msgid "Default access for this application: read-only, or read-write" +msgstr "" + +#: lib/applicationlist.php:154 +#, fuzzy +msgid "Revoke" +msgstr "移除" + #: lib/attachmentlist.php:87 msgid "Attachments" msgstr "" @@ -4429,12 +4978,12 @@ msgstr "" msgid "Tags for this attachment" msgstr "" -#: lib/authenticationplugin.php:182 lib/authenticationplugin.php:187 +#: lib/authenticationplugin.php:218 lib/authenticationplugin.php:223 #, fuzzy msgid "Password changing failed" msgstr "密码已保存。" -#: lib/authenticationplugin.php:197 +#: lib/authenticationplugin.php:233 #, fuzzy msgid "Password changing is not allowed" msgstr "密码已保存。" @@ -4588,80 +5137,89 @@ msgstr "保存通告时出错。" msgid "Specify the name of the user to subscribe to" msgstr "指定要订阅的用户名" -#: lib/command.php:554 +#: lib/command.php:554 lib/command.php:589 +msgid "No such user" +msgstr "没有这个用户。" + +#: lib/command.php:561 #, php-format msgid "Subscribed to %s" msgstr "订阅 %s" -#: lib/command.php:575 +#: lib/command.php:582 lib/command.php:685 msgid "Specify the name of the user to unsubscribe from" msgstr "指定要取消订阅的用户名" -#: lib/command.php:582 +#: lib/command.php:595 #, php-format msgid "Unsubscribed from %s" msgstr "取消订阅 %s" -#: lib/command.php:600 lib/command.php:623 +#: lib/command.php:613 lib/command.php:636 msgid "Command not yet implemented." msgstr "命令尚未实现。" -#: lib/command.php:603 +#: lib/command.php:616 msgid "Notification off." msgstr "通告关闭。" -#: lib/command.php:605 +#: lib/command.php:618 msgid "Can't turn off notification." msgstr "无法关闭通告。" -#: lib/command.php:626 +#: lib/command.php:639 msgid "Notification on." msgstr "通告开启。" -#: lib/command.php:628 +#: lib/command.php:641 msgid "Can't turn on notification." msgstr "无法开启通告。" -#: lib/command.php:641 +#: lib/command.php:654 msgid "Login command is disabled" msgstr "" -#: lib/command.php:652 +#: lib/command.php:665 #, php-format msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "" -#: lib/command.php:668 +#: lib/command.php:692 +#, fuzzy, php-format +msgid "Unsubscribed %s" +msgstr "取消订阅 %s" + +#: lib/command.php:709 #, fuzzy msgid "You are not subscribed to anyone." msgstr "您未告知此个人信息" -#: lib/command.php:670 +#: lib/command.php:711 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "您已订阅这些用户:" -#: lib/command.php:690 +#: lib/command.php:731 #, fuzzy msgid "No one is subscribed to you." msgstr "无法订阅他人更新。" -#: lib/command.php:692 +#: lib/command.php:733 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "无法订阅他人更新。" -#: lib/command.php:712 +#: lib/command.php:753 #, fuzzy msgid "You are not a member of any groups." msgstr "您未告知此个人信息" -#: lib/command.php:714 +#: lib/command.php:755 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "您未告知此个人信息" -#: lib/command.php:728 +#: lib/command.php:769 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -4675,6 +5233,7 @@ msgid "" "d - direct message to user\n" "get - get last notice from user\n" "whois - get profile info on user\n" +"lose - force user to stop following you\n" "fav - add user's last notice as a 'fave'\n" "fav # - add notice with the given id as a 'fave'\n" "repeat # - repeat a notice with a given id\n" @@ -4702,20 +5261,20 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:131 +#: lib/common.php:136 #, fuzzy msgid "No configuration file found. " msgstr "没有验证码" -#: lib/common.php:132 +#: lib/common.php:137 msgid "I looked for configuration files in the following places: " msgstr "" -#: lib/common.php:134 +#: lib/common.php:139 msgid "You may wish to run the installer to fix this." msgstr "" -#: lib/common.php:135 +#: lib/common.php:140 #, fuzzy msgid "Go to the installer." msgstr "登入本站" @@ -4732,6 +5291,15 @@ msgstr "使用即时通讯工具(IM)更新" msgid "Updates by SMS" msgstr "使用SMS短信更新" +#: lib/connectsettingsaction.php:120 +#, fuzzy +msgid "Connections" +msgstr "连接" + +#: lib/connectsettingsaction.php:121 +msgid "Authorized connected applications" +msgstr "" + #: lib/dberroraction.php:60 msgid "Database error" msgstr "" @@ -4927,12 +5495,12 @@ msgstr "" msgid "kB" msgstr "" -#: lib/jabber.php:202 +#: lib/jabber.php:220 #, php-format msgid "[%s]" msgstr "" -#: lib/jabber.php:385 +#: lib/jabber.php:400 #, php-format msgid "Unknown inbox source %d." msgstr "" @@ -5145,7 +5713,7 @@ msgid "" "users in conversation. People can send you messages for your eyes only." msgstr "" -#: lib/mailbox.php:227 lib/noticelist.php:477 +#: lib/mailbox.php:227 lib/noticelist.php:482 #, fuzzy msgid "from" msgstr " 从 " @@ -5267,62 +5835,58 @@ msgid "Do not share my location" msgstr "无法保存个人信息。" #: lib/noticeform.php:216 -msgid "Hide this info" -msgstr "" - -#: lib/noticeform.php:217 msgid "" "Sorry, retrieving your geo location is taking longer than expected, please " "try again later" msgstr "" -#: lib/noticelist.php:428 +#: lib/noticelist.php:429 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "" -#: lib/noticelist.php:429 +#: lib/noticelist.php:430 #, fuzzy msgid "N" msgstr "否" -#: lib/noticelist.php:429 +#: lib/noticelist.php:430 msgid "S" msgstr "" -#: lib/noticelist.php:430 +#: lib/noticelist.php:431 msgid "E" msgstr "" -#: lib/noticelist.php:430 +#: lib/noticelist.php:431 msgid "W" msgstr "" -#: lib/noticelist.php:436 +#: lib/noticelist.php:438 msgid "at" msgstr "" -#: lib/noticelist.php:531 +#: lib/noticelist.php:558 #, fuzzy msgid "in context" msgstr "没有内容!" -#: lib/noticelist.php:556 +#: lib/noticelist.php:583 #, fuzzy msgid "Repeated by" msgstr "创建" -#: lib/noticelist.php:585 +#: lib/noticelist.php:610 #, fuzzy msgid "Reply to this notice" msgstr "无法删除通告。" -#: lib/noticelist.php:586 +#: lib/noticelist.php:611 #, fuzzy msgid "Reply" msgstr "回复" -#: lib/noticelist.php:628 +#: lib/noticelist.php:655 #, fuzzy msgid "Notice repeated" msgstr "消息已发布。" @@ -5357,12 +5921,7 @@ msgstr "添加远程的个人信息出错" msgid "Duplicate notice" msgstr "删除通告" -#: lib/oauthstore.php:466 lib/subs.php:48 -#, fuzzy -msgid "You have been banned from subscribing." -msgstr "那个用户阻止了你的订阅。" - -#: lib/oauthstore.php:491 +#: lib/oauthstore.php:490 msgid "Couldn't insert new subscription." msgstr "无法添加新的订阅。" @@ -5378,19 +5937,19 @@ msgstr "回复" msgid "Favorites" msgstr "收藏夹" -#: lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "收件箱" -#: lib/personalgroupnav.php:125 +#: lib/personalgroupnav.php:126 msgid "Your incoming messages" msgstr "您接收的消息" -#: lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 msgid "Outbox" msgstr "发件箱" -#: lib/personalgroupnav.php:130 +#: lib/personalgroupnav.php:131 msgid "Your sent messages" msgstr "您发送的消息" @@ -5475,6 +6034,10 @@ msgstr "无法删除通告。" msgid "Repeat this notice" msgstr "无法删除通告。" +#: lib/router.php:665 +msgid "No single user defined for single-user mode." +msgstr "" + #: lib/sandboxform.php:67 #, fuzzy msgid "Sandbox" @@ -5549,37 +6112,6 @@ msgstr "订阅 %s" msgid "Groups %s is a member of" msgstr "%s 组是成员组成了" -#: lib/subs.php:52 -msgid "Already subscribed!" -msgstr "" - -#: lib/subs.php:56 -#, fuzzy -msgid "User has blocked you." -msgstr "用户没有个人信息。" - -#: lib/subs.php:63 -msgid "Could not subscribe." -msgstr "无法订阅。" - -#: lib/subs.php:82 -msgid "Could not subscribe other to you." -msgstr "无法订阅他人更新。" - -#: lib/subs.php:137 -#, fuzzy -msgid "Not subscribed!" -msgstr "未订阅!" - -#: lib/subs.php:142 -#, fuzzy -msgid "Couldn't delete self-subscription." -msgstr "无法删除订阅。" - -#: lib/subs.php:158 -msgid "Couldn't delete subscription." -msgstr "无法删除订阅。" - #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -5637,70 +6169,70 @@ msgstr "头像" msgid "User actions" msgstr "未知动作" -#: lib/userprofile.php:248 +#: lib/userprofile.php:251 #, fuzzy msgid "Edit profile settings" msgstr "个人设置" -#: lib/userprofile.php:249 +#: lib/userprofile.php:252 msgid "Edit" msgstr "" -#: lib/userprofile.php:272 +#: lib/userprofile.php:275 #, fuzzy msgid "Send a direct message to this user" msgstr "无法向此用户发送消息。" -#: lib/userprofile.php:273 +#: lib/userprofile.php:276 #, fuzzy msgid "Message" msgstr "新消息" -#: lib/userprofile.php:311 +#: lib/userprofile.php:314 msgid "Moderate" msgstr "" -#: lib/util.php:877 +#: lib/util.php:952 msgid "a few seconds ago" msgstr "几秒前" -#: lib/util.php:879 +#: lib/util.php:954 msgid "about a minute ago" msgstr "一分钟前" -#: lib/util.php:881 +#: lib/util.php:956 #, php-format msgid "about %d minutes ago" msgstr "%d 分钟前" -#: lib/util.php:883 +#: lib/util.php:958 msgid "about an hour ago" msgstr "一小时前" -#: lib/util.php:885 +#: lib/util.php:960 #, php-format msgid "about %d hours ago" msgstr "%d 小时前" -#: lib/util.php:887 +#: lib/util.php:962 msgid "about a day ago" msgstr "一天前" -#: lib/util.php:889 +#: lib/util.php:964 #, php-format msgid "about %d days ago" msgstr "%d 天前" -#: lib/util.php:891 +#: lib/util.php:966 msgid "about a month ago" msgstr "一个月前" -#: lib/util.php:893 +#: lib/util.php:968 #, php-format msgid "about %d months ago" msgstr "%d 个月前" -#: lib/util.php:895 +#: lib/util.php:970 msgid "about a year ago" msgstr "一年前" @@ -5714,7 +6246,7 @@ msgstr "主页的URL不正确。" msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "" -#: scripts/xmppdaemon.php:301 +#: lib/xmppmanager.php:402 #, fuzzy, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "您的消息包含 %d 个字符,超出长度限制 - 不能超过 140 个字符。" diff --git a/locale/zh_TW/LC_MESSAGES/statusnet.po b/locale/zh_TW/LC_MESSAGES/statusnet.po index 5a65525501..ff517edec0 100644 --- a/locale/zh_TW/LC_MESSAGES/statusnet.po +++ b/locale/zh_TW/LC_MESSAGES/statusnet.po @@ -7,17 +7,74 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-01-13 22:04+0000\n" -"PO-Revision-Date: 2010-01-13 22:06:27+0000\n" +"POT-Creation-Date: 2010-02-24 23:49+0000\n" +"PO-Revision-Date: 2010-02-24 23:52:03+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 (r61027); Translate extension (2010-01-04)\n" +"X-Generator: MediaWiki 1.17alpha (r62925); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hant\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: actions/accessadminpanel.php:54 lib/adminpanelaction.php:326 +#, fuzzy +msgid "Access" +msgstr "接受" + +#: actions/accessadminpanel.php:65 +#, fuzzy +msgid "Site access settings" +msgstr "線上即時通設定" + +#: actions/accessadminpanel.php:158 +#, fuzzy +msgid "Registration" +msgstr "所有訂閱" + +#: actions/accessadminpanel.php:161 +msgid "Private" +msgstr "" + +#: actions/accessadminpanel.php:163 +msgid "Prohibit anonymous users (not logged in) from viewing site?" +msgstr "" + +#: actions/accessadminpanel.php:167 +msgid "Invite only" +msgstr "" + +#: actions/accessadminpanel.php:169 +msgid "Make registration invitation only." +msgstr "" + +#: actions/accessadminpanel.php:173 +#, fuzzy +msgid "Closed" +msgstr "無此使用者" + +#: actions/accessadminpanel.php:175 +msgid "Disable new registrations." +msgstr "" + +#: actions/accessadminpanel.php:189 actions/designadminpanel.php:586 +#: actions/emailsettings.php:195 actions/imsettings.php:163 +#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 +#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 +#: actions/siteadminpanel.php:336 actions/smssettings.php:181 +#: actions/subscriptions.php:208 actions/tagother.php:154 +#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 lib/designsettings.php:256 +#: lib/groupeditform.php:202 +msgid "Save" +msgstr "" + +#: actions/accessadminpanel.php:189 +#, fuzzy +msgid "Save access settings" +msgstr "線上即時通設定" + #: actions/all.php:63 actions/public.php:97 actions/replies.php:92 #: actions/showfavorites.php:137 actions/tag.php:51 #, fuzzy @@ -33,25 +90,29 @@ msgstr "無此通知" #: 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:144 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apistatusesupdate.php:148 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:78 #: actions/apitimelinehome.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/otp.php:76 #: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154 -#: actions/replies.php:73 actions/repliesrss.php:38 +#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 #: 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:302 lib/command.php:355 #: lib/command.php:401 lib/command.php:462 lib/command.php:518 #: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 -#: lib/subs.php:34 lib/subs.php:125 msgid "No such user." msgstr "無此使用者" +#: actions/all.php:84 +#, fuzzy, php-format +msgid "%1$s and friends, page %2$d" +msgstr "%s與好友" + #: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 -#: actions/apitimelinefriends.php:115 actions/apitimelinehome.php:115 +#: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" @@ -92,7 +153,7 @@ msgid "" "his or her attention](%%%%action.newnotice%%%%?status_textarea=%3$s)." msgstr "" -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211 #, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " @@ -104,8 +165,8 @@ msgstr "" msgid "You and friends" msgstr "%s與好友" -#: actions/allrss.php:119 actions/apitimelinefriends.php:122 -#: actions/apitimelinehome.php:122 +#: actions/allrss.php:119 actions/apitimelinefriends.php:119 +#: actions/apitimelinehome.php:120 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "" @@ -115,23 +176,23 @@ msgstr "" #: actions/apiaccountupdateprofile.php:97 #: actions/apiaccountupdateprofilebackgroundimage.php:94 #: actions/apiaccountupdateprofilecolors.php:118 -#: 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:136 actions/apigroupismember.php:114 -#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 -#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 -#: actions/apigroupmembership.php:106 actions/apigroupshow.php:105 -#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 -#: actions/apistatusesretweets.php:112 actions/apistatusesshow.php:108 -#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93 -#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:146 -#: actions/apitimelinefriends.php:156 actions/apitimelinegroup.php:150 -#: actions/apitimelinehome.php:156 actions/apitimelinementions.php:151 -#: actions/apitimelinepublic.php:131 actions/apitimelineretweetedbyme.php:122 +#: actions/apiaccountverifycredentials.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:128 actions/apigroupcreate.php:136 +#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 +#: actions/apigroupleave.php:141 actions/apigrouplist.php:132 +#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 +#: actions/apigroupshow.php:115 actions/apihelptest.php:88 +#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 +#: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 #: actions/apitimelineretweetedtome.php:121 -#: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141 -#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 +#: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 +#: actions/apitimelineuser.php:207 actions/apiusershow.php:101 #, fuzzy msgid "API method not found." msgstr "確認碼遺失" @@ -146,7 +207,7 @@ msgstr "確認碼遺失" #: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 #: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 #: actions/apigroupleave.php:91 actions/apistatusesretweet.php:65 -#: actions/apistatusesupdate.php:114 +#: actions/apistatusesupdate.php:118 msgid "This method requires a POST." msgstr "" @@ -177,8 +238,9 @@ msgstr "無法儲存個人資料" #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:97 -#: actions/apistatusesupdate.php:127 actions/avatarsettings.php:257 -#: actions/designadminpanel.php:122 actions/newnotice.php:94 +#: actions/apistatusesupdate.php:131 actions/avatarsettings.php:257 +#: actions/designadminpanel.php:122 actions/editapplication.php:118 +#: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 #, php-format msgid "" @@ -296,12 +358,12 @@ msgstr "無法更新使用者" msgid "Two user ids or screen_names must be supplied." msgstr "" -#: actions/apifriendshipsshow.php:135 +#: actions/apifriendshipsshow.php:134 #, fuzzy msgid "Could not determine source user." msgstr "無法更新使用者" -#: actions/apifriendshipsshow.php:143 +#: actions/apifriendshipsshow.php:142 #, fuzzy msgid "Could not find target user." msgstr "無法更新使用者" @@ -324,7 +386,8 @@ msgstr "此暱稱已有人使用。再試試看別的吧。" msgid "Not a valid nickname." msgstr "" -#: actions/apigroupcreate.php:196 actions/editgroup.php:195 +#: actions/apigroupcreate.php:196 actions/editapplication.php:215 +#: actions/editgroup.php:195 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:217 msgid "Homepage is not a valid URL." @@ -336,7 +399,8 @@ msgstr "個人首頁位址錯誤" msgid "Full name is too long (max 255 chars)." msgstr "全名過長(最多255字元)" -#: actions/apigroupcreate.php:213 +#: actions/apigroupcreate.php:213 actions/editapplication.php:190 +#: actions/newapplication.php:172 #, fuzzy, php-format msgid "Description is too long (max %d chars)." msgstr "自我介紹過長(共140個字元)" @@ -372,7 +436,7 @@ msgstr "" #: actions/apigroupismember.php:95 actions/apigroupjoin.php:104 #: actions/apigroupleave.php:104 actions/apigroupmembership.php:91 -#: actions/apigroupshow.php:90 actions/apitimelinegroup.php:91 +#: actions/apigroupshow.php:82 actions/apitimelinegroup.php:91 #, fuzzy msgid "Group not found!" msgstr "目前無請求" @@ -415,6 +479,115 @@ msgstr "" msgid "groups on %s" msgstr "" +#: actions/apioauthauthorize.php:101 +msgid "No oauth_token parameter provided." +msgstr "" + +#: actions/apioauthauthorize.php:106 +#, fuzzy +msgid "Invalid token." +msgstr "尺寸錯誤" + +#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 +#: actions/deletenotice.php:157 actions/disfavor.php:74 +#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54 +#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupunblock.php:66 actions/imsettings.php:206 +#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 +#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 +#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135 +#: actions/othersettings.php:145 actions/passwordsettings.php:138 +#: actions/profilesettings.php:194 actions/recoverpassword.php:337 +#: actions/register.php:165 actions/remotesubscribe.php:77 +#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 +#: actions/subscribe.php:86 actions/tagother.php:166 +#: 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/apioauthauthorize.php:135 +#, fuzzy +msgid "Invalid nickname / password!" +msgstr "使用者名稱或密碼無效" + +#: actions/apioauthauthorize.php:159 +#, fuzzy +msgid "Database error deleting OAuth application user." +msgstr "使用者設定發生錯誤" + +#: actions/apioauthauthorize.php:185 +#, fuzzy +msgid "Database error inserting OAuth application user." +msgstr "增加回覆時,資料庫發生錯誤: %s" + +#: actions/apioauthauthorize.php:214 +#, php-format +msgid "" +"The request token %s has been authorized. Please exchange it for an access " +"token." +msgstr "" + +#: actions/apioauthauthorize.php:227 +#, php-format +msgid "The request token %s has been denied and revoked." +msgstr "" + +#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 +#: actions/designadminpanel.php:103 actions/editapplication.php:139 +#: actions/emailsettings.php:256 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/newapplication.php:121 +#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 +#: actions/smssettings.php:248 lib/designsettings.php:304 +msgid "Unexpected form submission." +msgstr "" + +#: actions/apioauthauthorize.php:259 +msgid "An application would like to connect to your account" +msgstr "" + +#: actions/apioauthauthorize.php:276 +msgid "Allow or deny access" +msgstr "" + +#: actions/apioauthauthorize.php:292 +#, php-format +msgid "" +"The application %1$s by %2$s would like " +"the ability to %3$s your %4$s account data. You should only " +"give access to your %4$s account to third parties you trust." +msgstr "" + +#: actions/apioauthauthorize.php:310 lib/action.php:441 +#, fuzzy +msgid "Account" +msgstr "關於" + +#: actions/apioauthauthorize.php:313 actions/login.php:230 +#: actions/profilesettings.php:106 actions/register.php:424 +#: actions/showgroup.php:236 actions/tagother.php:94 +#: actions/userauthorization.php:145 lib/groupeditform.php:152 +#: lib/userprofile.php:131 +msgid "Nickname" +msgstr "暱稱" + +#: actions/apioauthauthorize.php:316 actions/login.php:233 +#: actions/register.php:429 lib/accountsettingsaction.php:116 +msgid "Password" +msgstr "" + +#: actions/apioauthauthorize.php:328 +msgid "Deny" +msgstr "" + +#: actions/apioauthauthorize.php:334 +msgid "Allow" +msgstr "" + +#: actions/apioauthauthorize.php:351 +msgid "Allow or deny access to your account information." +msgstr "" + #: actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." msgstr "" @@ -447,17 +620,17 @@ msgstr "更新個人圖像" msgid "No status with that ID found." msgstr "" -#: actions/apistatusesupdate.php:157 actions/newnotice.php:155 +#: actions/apistatusesupdate.php:161 actions/newnotice.php:155 #: lib/mailhandler.php:60 #, php-format msgid "That's too long. Max notice size is %d chars." msgstr "" -#: actions/apistatusesupdate.php:198 +#: actions/apistatusesupdate.php:202 msgid "Not found" msgstr "" -#: actions/apistatusesupdate.php:221 actions/newnotice.php:178 +#: actions/apistatusesupdate.php:225 actions/newnotice.php:178 #, php-format msgid "Max notice size is %d chars, including attachment URL." msgstr "" @@ -471,7 +644,7 @@ msgstr "" msgid "%1$s / Favorites from %2$s" msgstr "%1$s的狀態是%2$s" -#: actions/apitimelinefavorites.php:120 +#: actions/apitimelinefavorites.php:117 #, fuzzy, php-format msgid "%1$s updates favorited by %2$s / %2$s." msgstr "&s的微型部落格" @@ -482,7 +655,7 @@ msgstr "&s的微型部落格" msgid "%s timeline" msgstr "" -#: actions/apitimelinegroup.php:117 actions/apitimelineuser.php:126 +#: actions/apitimelinegroup.php:114 actions/apitimelineuser.php:126 #: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" @@ -498,27 +671,22 @@ msgstr "%1$s的狀態是%2$s" msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "" -#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "" -#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "" -#: actions/apitimelineretweetedbyme.php:112 -#, php-format -msgid "Repeated by %s" -msgstr "" - #: actions/apitimelineretweetedtome.php:111 #, php-format msgid "Repeated to %s" msgstr "" -#: actions/apitimelineretweetsofme.php:112 +#: actions/apitimelineretweetsofme.php:114 #, php-format msgid "Repeats of %s" msgstr "" @@ -528,7 +696,7 @@ msgstr "" msgid "Notices tagged with %s" msgstr "" -#: actions/apitimelinetag.php:108 actions/tagrss.php:64 +#: actions/apitimelinetag.php:104 actions/tagrss.php:64 #, fuzzy, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "&s的微型部落格" @@ -591,8 +759,8 @@ msgstr "" msgid "Preview" msgstr "" -#: actions/avatarsettings.php:149 lib/deleteuserform.php:66 -#: lib/noticelist.php:611 +#: actions/avatarsettings.php:149 actions/showapplication.php:252 +#: lib/deleteuserform.php:66 lib/noticelist.php:637 msgid "Delete" msgstr "" @@ -604,29 +772,6 @@ msgstr "" msgid "Crop" msgstr "" -#: actions/avatarsettings.php:268 actions/deletenotice.php:157 -#: actions/disfavor.php:74 actions/emailsettings.php:238 actions/favor.php:75 -#: actions/geocode.php:50 actions/groupblock.php:66 actions/grouplogo.php:309 -#: actions/groupunblock.php:66 actions/imsettings.php:206 -#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 -#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 -#: actions/othersettings.php:145 actions/passwordsettings.php:138 -#: actions/profilesettings.php:194 actions/recoverpassword.php:337 -#: actions/register.php:165 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 -#: actions/subscribe.php:46 actions/tagother.php:166 -#: 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/avatarsettings.php:281 actions/designadminpanel.php:103 -#: actions/emailsettings.php:256 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/avatarsettings.php:328 msgid "Pick a square area of the image to be your avatar" msgstr "" @@ -665,8 +810,9 @@ msgid "" "will not be notified of any @-replies from them." msgstr "" -#: actions/block.php:143 actions/deletenotice.php:145 -#: actions/deleteuser.php:147 actions/groupblock.php:178 +#: actions/block.php:143 actions/deleteapplication.php:153 +#: actions/deletenotice.php:145 actions/deleteuser.php:147 +#: actions/groupblock.php:178 msgid "No" msgstr "" @@ -675,13 +821,13 @@ msgstr "" msgid "Do not block this user" msgstr "無此使用者" -#: actions/block.php:144 actions/deletenotice.php:146 -#: actions/deleteuser.php:148 actions/groupblock.php:179 -#: lib/repeatform.php:132 +#: actions/block.php:144 actions/deleteapplication.php:158 +#: actions/deletenotice.php:146 actions/deleteuser.php:148 +#: actions/groupblock.php:179 lib/repeatform.php:132 msgid "Yes" msgstr "" -#: actions/block.php:144 actions/groupmembers.php:346 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80 #, fuzzy msgid "Block this user" msgstr "無此使用者" @@ -768,7 +914,8 @@ msgid "Couldn't delete email confirmation." msgstr "無法取消信箱確認" #: actions/confirmaddress.php:144 -msgid "Confirm Address" +#, fuzzy +msgid "Confirm address" msgstr "確認信箱" #: actions/confirmaddress.php:159 @@ -786,10 +933,54 @@ msgstr "地點" msgid "Notices" msgstr "" +#: actions/deleteapplication.php:63 +#, fuzzy +msgid "You must be logged in to delete an application." +msgstr "無法更新使用者" + +#: actions/deleteapplication.php:71 +#, fuzzy +msgid "Application not found." +msgstr "確認碼遺失" + +#: actions/deleteapplication.php:78 actions/editapplication.php:77 +#: actions/showapplication.php:94 +#, fuzzy +msgid "You are not the owner of this application." +msgstr "無法連結到伺服器:%s" + +#: actions/deleteapplication.php:102 actions/editapplication.php:127 +#: actions/newapplication.php:110 actions/showapplication.php:118 +#: lib/action.php:1197 +msgid "There was a problem with your session token." +msgstr "" + +#: actions/deleteapplication.php:123 actions/deleteapplication.php:147 +#, fuzzy +msgid "Delete application" +msgstr "無此通知" + +#: actions/deleteapplication.php:149 +msgid "" +"Are you sure you want to delete this application? This will clear all data " +"about the application from the database, including all existing user " +"connections." +msgstr "" + +#: actions/deleteapplication.php:156 +#, fuzzy +msgid "Do not delete this application" +msgstr "無此通知" + +#: actions/deleteapplication.php:160 +#, fuzzy +msgid "Delete this application" +msgstr "請在140個字以內描述你自己與你的興趣" + #: 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/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 #: lib/adminpanelaction.php:72 lib/profileformaction.php:63 #: lib/settingsaction.php:72 @@ -819,7 +1010,7 @@ msgstr "" msgid "Do not delete this notice" msgstr "無此通知" -#: actions/deletenotice.php:146 lib/noticelist.php:611 +#: actions/deletenotice.php:146 lib/noticelist.php:637 msgid "Delete this notice" msgstr "" @@ -958,16 +1149,6 @@ msgstr "" msgid "Reset back to default" msgstr "" -#: actions/designadminpanel.php:586 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 -#: actions/pathsadminpanel.php:324 actions/profilesettings.php:174 -#: actions/siteadminpanel.php:388 actions/smssettings.php:181 -#: actions/subscriptions.php:203 actions/tagother.php:154 -#: actions/useradminpanel.php:313 lib/designsettings.php:256 -#: lib/groupeditform.php:202 -msgid "Save" -msgstr "" - #: actions/designadminpanel.php:587 lib/designsettings.php:257 msgid "Save design" msgstr "" @@ -980,10 +1161,84 @@ msgstr "" msgid "Add to favorites" msgstr "" -#: actions/doc.php:69 -msgid "No such document." +#: actions/doc.php:158 +#, fuzzy, php-format +msgid "No such document \"%s\"" msgstr "無此文件" +#: actions/editapplication.php:54 +#, fuzzy +msgid "Edit Application" +msgstr "無此通知" + +#: actions/editapplication.php:66 +msgid "You must be logged in to edit an application." +msgstr "" + +#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:166 +#: actions/showapplication.php:87 +#, fuzzy +msgid "No such application." +msgstr "無此通知" + +#: actions/editapplication.php:161 +msgid "Use this form to edit your application." +msgstr "" + +#: actions/editapplication.php:177 actions/newapplication.php:159 +msgid "Name is required." +msgstr "" + +#: actions/editapplication.php:180 actions/newapplication.php:165 +#, fuzzy +msgid "Name is too long (max 255 chars)." +msgstr "全名過長(最多255字元)" + +#: actions/editapplication.php:183 actions/newapplication.php:162 +#, fuzzy +msgid "Name already in use. Try another one." +msgstr "此暱稱已有人使用。再試試看別的吧。" + +#: actions/editapplication.php:186 actions/newapplication.php:168 +#, fuzzy +msgid "Description is required." +msgstr "所有訂閱" + +#: actions/editapplication.php:194 +msgid "Source URL is too long." +msgstr "" + +#: actions/editapplication.php:200 actions/newapplication.php:185 +#, fuzzy +msgid "Source URL is not valid." +msgstr "個人首頁位址錯誤" + +#: actions/editapplication.php:203 actions/newapplication.php:188 +msgid "Organization is required." +msgstr "" + +#: actions/editapplication.php:206 actions/newapplication.php:191 +#, fuzzy +msgid "Organization is too long (max 255 chars)." +msgstr "地點過長(共255個字)" + +#: actions/editapplication.php:209 actions/newapplication.php:194 +msgid "Organization homepage is required." +msgstr "" + +#: actions/editapplication.php:218 actions/newapplication.php:206 +msgid "Callback is too long." +msgstr "" + +#: actions/editapplication.php:225 actions/newapplication.php:215 +msgid "Callback URL is not valid." +msgstr "" + +#: actions/editapplication.php:258 +#, fuzzy +msgid "Could not update application." +msgstr "無法更新使用者" + #: actions/editgroup.php:56 #, php-format msgid "Edit %s group" @@ -1012,7 +1267,7 @@ msgstr "自我介紹過長(共140個字元)" msgid "Could not update group." msgstr "無法更新使用者" -#: actions/editgroup.php:259 classes/User_group.php:390 +#: actions/editgroup.php:259 classes/User_group.php:433 #, fuzzy msgid "Could not create aliases." msgstr "無法存取個人圖像資料" @@ -1053,7 +1308,8 @@ msgid "" msgstr "" #: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 +#: actions/smssettings.php:126 lib/applicationeditform.php:331 +#: lib/applicationeditform.php:332 msgid "Cancel" msgstr "取消" @@ -1134,7 +1390,7 @@ msgid "Cannot normalize that email address" msgstr "" #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:157 +#: actions/siteadminpanel.php:143 msgid "Not a valid email address." msgstr "此信箱無效" @@ -1146,7 +1402,7 @@ msgstr "" msgid "That email address already belongs to another user." msgstr "" -#: actions/emailsettings.php:353 actions/imsettings.php:317 +#: actions/emailsettings.php:353 actions/imsettings.php:319 #: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." msgstr "無法輸入確認碼" @@ -1205,7 +1461,7 @@ msgstr "" msgid "Disfavor favorite" msgstr "" -#: actions/favorited.php:65 lib/popularnoticesection.php:88 +#: actions/favorited.php:65 lib/popularnoticesection.php:91 #: lib/publicgroupnav.php:93 #, fuzzy msgid "Popular notices" @@ -1355,7 +1611,7 @@ msgstr "" msgid "User is not a member of group." msgstr "" -#: actions/groupblock.php:136 actions/groupmembers.php:314 +#: actions/groupblock.php:136 actions/groupmembers.php:316 #, fuzzy msgid "Block user from group" msgstr "無此使用者" @@ -1453,23 +1709,23 @@ msgstr "" msgid "A list of the users in this group." msgstr "" -#: actions/groupmembers.php:175 lib/action.php:442 lib/groupnav.php:107 +#: actions/groupmembers.php:175 lib/action.php:448 lib/groupnav.php:107 msgid "Admin" msgstr "" -#: actions/groupmembers.php:346 lib/blockform.php:69 +#: actions/groupmembers.php:348 lib/blockform.php:69 msgid "Block" msgstr "" -#: actions/groupmembers.php:441 +#: actions/groupmembers.php:443 msgid "Make user an admin of the group" msgstr "" -#: actions/groupmembers.php:473 +#: actions/groupmembers.php:475 msgid "Make Admin" msgstr "" -#: actions/groupmembers.php:473 +#: actions/groupmembers.php:475 msgid "Make this user an admin" msgstr "" @@ -1636,6 +1892,11 @@ msgstr "確認信已寄到你的線上即時通信箱。%s送給你得訊息要 msgid "That is not your Jabber ID." msgstr "" +#: actions/inbox.php:59 +#, php-format +msgid "Inbox for %1$s - page %2$d" +msgstr "" + #: actions/inbox.php:62 #, php-format msgid "Inbox for %s" @@ -1712,7 +1973,7 @@ msgstr "" msgid "Optionally add a personal message to the invitation." msgstr "" -#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:237 +#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:236 msgid "Send" msgstr "" @@ -1786,7 +2047,7 @@ msgstr "使用者名稱或密碼錯誤" msgid "Error setting user. You are probably not authorized." msgstr "" -#: actions/login.php:188 actions/login.php:241 lib/action.php:460 +#: actions/login.php:188 actions/login.php:241 lib/action.php:466 #: lib/logingroupnav.php:79 msgid "Login" msgstr "登入" @@ -1795,17 +2056,6 @@ msgstr "登入" msgid "Login to site" msgstr "" -#: actions/login.php:230 actions/profilesettings.php:106 -#: actions/register.php:424 actions/showgroup.php:236 actions/tagother.php:94 -#: lib/groupeditform.php:152 lib/userprofile.php:131 -msgid "Nickname" -msgstr "暱稱" - -#: actions/login.php:233 actions/register.php:429 -#: lib/accountsettingsaction.php:116 -msgid "Password" -msgstr "" - #: actions/login.php:236 actions/register.php:478 msgid "Remember me" msgstr "" @@ -1831,21 +2081,21 @@ msgid "" "(%%action.register%%) a new account." msgstr "" -#: actions/makeadmin.php:91 +#: actions/makeadmin.php:92 msgid "Only an admin can make another user an admin." msgstr "" -#: actions/makeadmin.php:95 +#: actions/makeadmin.php:96 #, php-format msgid "%1$s is already an admin for group \"%2$s\"." msgstr "" -#: actions/makeadmin.php:132 +#: actions/makeadmin.php:133 #, fuzzy, php-format msgid "Can't get membership record for %1$s in group %2$s." msgstr "無法從 %s 建立OpenID" -#: actions/makeadmin.php:145 +#: actions/makeadmin.php:146 #, fuzzy, php-format msgid "Can't make %1$s an admin for group %2$s." msgstr "無法從 %s 建立OpenID" @@ -1854,6 +2104,28 @@ msgstr "無法從 %s 建立OpenID" msgid "No current status" msgstr "" +#: actions/newapplication.php:52 +#, fuzzy +msgid "New Application" +msgstr "無此通知" + +#: actions/newapplication.php:64 +msgid "You must be logged in to register an application." +msgstr "" + +#: actions/newapplication.php:143 +msgid "Use this form to register a new application." +msgstr "" + +#: actions/newapplication.php:176 +msgid "Source URL is required." +msgstr "" + +#: actions/newapplication.php:258 actions/newapplication.php:267 +#, fuzzy +msgid "Could not create application." +msgstr "無法存取個人圖像資料" + #: actions/newgroup.php:53 msgid "New group" msgstr "" @@ -1958,6 +2230,49 @@ msgstr "" msgid "Nudge sent!" msgstr "" +#: actions/oauthappssettings.php:59 +msgid "You must be logged in to list your applications." +msgstr "" + +#: actions/oauthappssettings.php:74 +msgid "OAuth applications" +msgstr "" + +#: actions/oauthappssettings.php:85 +msgid "Applications you have registered" +msgstr "" + +#: actions/oauthappssettings.php:135 +#, php-format +msgid "You have not registered any applications yet." +msgstr "" + +#: actions/oauthconnectionssettings.php:72 +msgid "Connected applications" +msgstr "" + +#: actions/oauthconnectionssettings.php:83 +msgid "You have allowed the following applications to access you account." +msgstr "" + +#: actions/oauthconnectionssettings.php:175 +#, fuzzy +msgid "You are not a user of that application." +msgstr "無法連結到伺服器:%s" + +#: actions/oauthconnectionssettings.php:186 +msgid "Unable to revoke access for app: " +msgstr "" + +#: actions/oauthconnectionssettings.php:198 +#, php-format +msgid "You have not authorized any applications to use your account." +msgstr "" + +#: actions/oauthconnectionssettings.php:211 +msgid "Developers can edit the registration settings for their applications " +msgstr "" + #: actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" msgstr "" @@ -1976,8 +2291,8 @@ msgstr "連結" msgid "Only " msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1033 -#: lib/api.php:1061 lib/api.php:1171 +#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 +#: lib/api.php:1068 lib/api.php:1177 msgid "Not a supported data format." msgstr "" @@ -1991,7 +2306,7 @@ msgstr "" #: actions/othersettings.php:60 #, fuzzy -msgid "Other Settings" +msgid "Other settings" msgstr "線上即時通設定" #: actions/othersettings.php:71 @@ -2047,6 +2362,11 @@ msgstr "新訊息" msgid "Login token expired." msgstr "" +#: actions/outbox.php:58 +#, php-format +msgid "Outbox for %1$s - page %2$d" +msgstr "" + #: actions/outbox.php:61 #, php-format msgid "Outbox for %s" @@ -2118,7 +2438,7 @@ msgstr "無法存取新密碼" msgid "Password saved." msgstr "" -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:326 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:331 msgid "Paths" msgstr "" @@ -2126,138 +2446,154 @@ msgstr "" msgid "Path and server settings for this StatusNet site." msgstr "" -#: actions/pathsadminpanel.php:140 +#: actions/pathsadminpanel.php:157 #, fuzzy, php-format msgid "Theme directory not readable: %s" msgstr "個人首頁位址錯誤" -#: actions/pathsadminpanel.php:146 +#: actions/pathsadminpanel.php:163 #, php-format msgid "Avatar directory not writable: %s" msgstr "" -#: actions/pathsadminpanel.php:152 +#: actions/pathsadminpanel.php:169 #, php-format msgid "Background directory not writable: %s" msgstr "" -#: actions/pathsadminpanel.php:160 +#: actions/pathsadminpanel.php:177 #, php-format msgid "Locales directory not readable: %s" msgstr "" -#: actions/pathsadminpanel.php:166 +#: actions/pathsadminpanel.php:183 msgid "Invalid SSL server. The maximum length is 255 characters." msgstr "" -#: actions/pathsadminpanel.php:217 actions/siteadminpanel.php:58 +#: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58 #: lib/adminpanelaction.php:311 msgid "Site" msgstr "" -#: actions/pathsadminpanel.php:221 +#: actions/pathsadminpanel.php:238 +msgid "Server" +msgstr "" + +#: actions/pathsadminpanel.php:238 +msgid "Site's server hostname." +msgstr "" + +#: actions/pathsadminpanel.php:242 msgid "Path" msgstr "" -#: actions/pathsadminpanel.php:221 +#: actions/pathsadminpanel.php:242 #, fuzzy msgid "Site path" msgstr "新訊息" -#: actions/pathsadminpanel.php:225 +#: actions/pathsadminpanel.php:246 msgid "Path to locales" msgstr "" -#: actions/pathsadminpanel.php:225 +#: actions/pathsadminpanel.php:246 msgid "Directory path to locales" msgstr "" -#: actions/pathsadminpanel.php:232 -msgid "Theme" -msgstr "" - -#: actions/pathsadminpanel.php:237 -msgid "Theme server" -msgstr "" - -#: actions/pathsadminpanel.php:241 -msgid "Theme path" -msgstr "" - -#: actions/pathsadminpanel.php:245 -msgid "Theme directory" +#: actions/pathsadminpanel.php:250 +msgid "Fancy URLs" msgstr "" #: actions/pathsadminpanel.php:252 +msgid "Use fancy (more readable and memorable) URLs?" +msgstr "" + +#: actions/pathsadminpanel.php:259 +msgid "Theme" +msgstr "" + +#: actions/pathsadminpanel.php:264 +msgid "Theme server" +msgstr "" + +#: actions/pathsadminpanel.php:268 +msgid "Theme path" +msgstr "" + +#: actions/pathsadminpanel.php:272 +msgid "Theme directory" +msgstr "" + +#: actions/pathsadminpanel.php:279 #, fuzzy msgid "Avatars" msgstr "個人圖像" -#: actions/pathsadminpanel.php:257 +#: actions/pathsadminpanel.php:284 #, fuzzy msgid "Avatar server" msgstr "線上即時通設定" -#: actions/pathsadminpanel.php:261 +#: actions/pathsadminpanel.php:288 #, fuzzy msgid "Avatar path" msgstr "更新個人圖像" -#: actions/pathsadminpanel.php:265 +#: actions/pathsadminpanel.php:292 #, fuzzy msgid "Avatar directory" msgstr "更新個人圖像" -#: actions/pathsadminpanel.php:274 +#: actions/pathsadminpanel.php:301 msgid "Backgrounds" msgstr "" -#: actions/pathsadminpanel.php:278 +#: actions/pathsadminpanel.php:305 msgid "Background server" msgstr "" -#: actions/pathsadminpanel.php:282 +#: actions/pathsadminpanel.php:309 msgid "Background path" msgstr "" -#: actions/pathsadminpanel.php:286 +#: actions/pathsadminpanel.php:313 msgid "Background directory" msgstr "" -#: actions/pathsadminpanel.php:293 +#: actions/pathsadminpanel.php:320 msgid "SSL" msgstr "" -#: actions/pathsadminpanel.php:296 actions/siteadminpanel.php:346 +#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 msgid "Never" msgstr "" -#: actions/pathsadminpanel.php:297 +#: actions/pathsadminpanel.php:324 msgid "Sometimes" msgstr "" -#: actions/pathsadminpanel.php:298 +#: actions/pathsadminpanel.php:325 msgid "Always" msgstr "" -#: actions/pathsadminpanel.php:302 +#: actions/pathsadminpanel.php:329 msgid "Use SSL" msgstr "" -#: actions/pathsadminpanel.php:303 +#: actions/pathsadminpanel.php:330 msgid "When to use SSL" msgstr "" -#: actions/pathsadminpanel.php:308 +#: actions/pathsadminpanel.php:335 #, fuzzy msgid "SSL server" msgstr "線上即時通設定" -#: actions/pathsadminpanel.php:309 +#: actions/pathsadminpanel.php:336 msgid "Server to direct SSL requests to" msgstr "" -#: actions/pathsadminpanel.php:325 +#: actions/pathsadminpanel.php:352 #, fuzzy msgid "Save paths" msgstr "新訊息" @@ -2316,7 +2652,7 @@ msgid "Full name" msgstr "全名" #: actions/profilesettings.php:115 actions/register.php:453 -#: lib/groupeditform.php:161 +#: lib/applicationeditform.php:228 lib/groupeditform.php:161 msgid "Homepage" msgstr "個人首頁" @@ -2340,7 +2676,7 @@ msgstr "自我介紹" #: actions/profilesettings.php:132 actions/register.php:471 #: actions/showgroup.php:256 actions/tagother.php:112 -#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:164 msgid "Location" msgstr "地點" @@ -2364,7 +2700,7 @@ msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" -#: actions/profilesettings.php:151 actions/siteadminpanel.php:294 +#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 msgid "Language" msgstr "" @@ -2390,7 +2726,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "自我介紹過長(共140個字元)" -#: actions/profilesettings.php:235 actions/siteadminpanel.php:164 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 msgid "Timezone not selected." msgstr "" @@ -2403,25 +2739,25 @@ msgstr "" msgid "Invalid tag: \"%s\"" msgstr "個人首頁連結%s無效" -#: actions/profilesettings.php:302 +#: actions/profilesettings.php:306 msgid "Couldn't update user for autosubscribe." msgstr "" -#: actions/profilesettings.php:359 +#: actions/profilesettings.php:363 #, fuzzy msgid "Couldn't save location prefs." msgstr "無法儲存個人資料" -#: actions/profilesettings.php:371 +#: actions/profilesettings.php:375 msgid "Couldn't save profile." msgstr "無法儲存個人資料" -#: actions/profilesettings.php:379 +#: actions/profilesettings.php:383 #, fuzzy msgid "Couldn't save tags." msgstr "無法儲存個人資料" -#: actions/profilesettings.php:387 lib/adminpanelaction.php:137 +#: actions/profilesettings.php:391 lib/adminpanelaction.php:137 msgid "Settings saved." msgstr "" @@ -2443,37 +2779,37 @@ msgstr "" msgid "Public timeline" msgstr "" -#: actions/public.php:151 +#: actions/public.php:159 msgid "Public Stream Feed (RSS 1.0)" msgstr "" -#: actions/public.php:155 +#: actions/public.php:163 msgid "Public Stream Feed (RSS 2.0)" msgstr "" -#: actions/public.php:159 +#: actions/public.php:167 #, fuzzy msgid "Public Stream Feed (Atom)" msgstr "%s的公開內容" -#: actions/public.php:179 +#: actions/public.php:187 #, php-format msgid "" "This is the public timeline for %%site.name%% but no one has posted anything " "yet." msgstr "" -#: actions/public.php:182 +#: actions/public.php:190 msgid "Be the first to post!" msgstr "" -#: actions/public.php:186 +#: actions/public.php:194 #, php-format msgid "" "Why not [register an account](%%action.register%%) and be the first to post!" msgstr "" -#: actions/public.php:233 +#: actions/public.php:241 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2482,7 +2818,7 @@ msgid "" "friends, family, and colleagues! ([Read more](%%doc.help%%))" msgstr "" -#: actions/public.php:238 +#: actions/public.php:246 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2515,7 +2851,7 @@ msgid "" "one!" msgstr "" -#: actions/publictagcloud.php:131 +#: actions/publictagcloud.php:134 msgid "Tag cloud" msgstr "" @@ -2652,7 +2988,7 @@ msgstr "確認碼發生錯誤" msgid "Registration successful" msgstr "" -#: actions/register.php:114 actions/register.php:503 lib/action.php:457 +#: actions/register.php:114 actions/register.php:503 lib/action.php:463 #: lib/logingroupnav.php:85 msgid "Register" msgstr "" @@ -2692,7 +3028,7 @@ msgid "Same as password above. Required." msgstr "" #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:270 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 msgid "Email" msgstr "電子信箱" @@ -2777,7 +3113,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:365 +#: lib/userprofile.php:368 msgid "Subscribe" msgstr "" @@ -2816,7 +3152,7 @@ msgstr "" msgid "You already repeated that notice." msgstr "無此使用者" -#: actions/repeat.php:114 lib/noticelist.php:629 +#: actions/repeat.php:114 lib/noticelist.php:656 #, fuzzy msgid "Repeated" msgstr "新增" @@ -2832,6 +3168,11 @@ msgstr "新增" msgid "Replies to %s" msgstr "" +#: actions/replies.php:127 +#, fuzzy, php-format +msgid "Replies to %1$s, page %2$d" +msgstr "&s的微型部落格" + #: actions/replies.php:144 #, fuzzy, php-format msgid "Replies feed for %s (RSS 1.0)" @@ -2873,6 +3214,11 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "&s的微型部落格" +#: actions/rsd.php:146 actions/version.php:157 +#, fuzzy +msgid "StatusNet" +msgstr "更新個人圖像" + #: actions/sandbox.php:65 actions/unsandbox.php:65 #, fuzzy msgid "You cannot sandbox users on this site." @@ -2882,6 +3228,123 @@ msgstr "無法連結到伺服器:%s" msgid "User is already sandboxed." msgstr "" +#: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:336 +msgid "Sessions" +msgstr "" + +#: actions/sessionsadminpanel.php:65 +msgid "Session settings for this StatusNet site." +msgstr "" + +#: actions/sessionsadminpanel.php:175 +msgid "Handle sessions" +msgstr "" + +#: actions/sessionsadminpanel.php:177 +msgid "Whether to handle sessions ourselves." +msgstr "" + +#: actions/sessionsadminpanel.php:181 +msgid "Session debugging" +msgstr "" + +#: actions/sessionsadminpanel.php:183 +msgid "Turn on debugging output for sessions." +msgstr "" + +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/useradminpanel.php:293 +#, fuzzy +msgid "Save site settings" +msgstr "線上即時通設定" + +#: actions/showapplication.php:82 +msgid "You must be logged in to view an application." +msgstr "" + +#: actions/showapplication.php:157 +msgid "Application profile" +msgstr "" + +#: actions/showapplication.php:159 lib/applicationeditform.php:180 +msgid "Icon" +msgstr "" + +#: actions/showapplication.php:169 actions/version.php:195 +#: lib/applicationeditform.php:195 +#, fuzzy +msgid "Name" +msgstr "暱稱" + +#: actions/showapplication.php:178 lib/applicationeditform.php:222 +#, fuzzy +msgid "Organization" +msgstr "地點" + +#: actions/showapplication.php:187 actions/version.php:198 +#: lib/applicationeditform.php:209 lib/groupeditform.php:172 +#, fuzzy +msgid "Description" +msgstr "所有訂閱" + +#: actions/showapplication.php:192 actions/showgroup.php:429 +#: lib/profileaction.php:174 +msgid "Statistics" +msgstr "" + +#: actions/showapplication.php:203 +#, php-format +msgid "Created by %1$s - %2$s access by default - %3$d users" +msgstr "" + +#: actions/showapplication.php:213 +msgid "Application actions" +msgstr "" + +#: actions/showapplication.php:236 +msgid "Reset key & secret" +msgstr "" + +#: actions/showapplication.php:261 +msgid "Application info" +msgstr "" + +#: actions/showapplication.php:263 +msgid "Consumer key" +msgstr "" + +#: actions/showapplication.php:268 +msgid "Consumer secret" +msgstr "" + +#: actions/showapplication.php:273 +msgid "Request token URL" +msgstr "" + +#: actions/showapplication.php:278 +msgid "Access token URL" +msgstr "" + +#: actions/showapplication.php:283 +msgid "Authorize URL" +msgstr "" + +#: actions/showapplication.php:288 +msgid "" +"Note: We support HMAC-SHA1 signatures. We do not support the plaintext " +"signature method." +msgstr "" + +#: actions/showapplication.php:309 +msgid "Are you sure you want to reset your consumer key and secret?" +msgstr "" + +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%1$s's favorite notices, page %2$d" +msgstr "%s與好友" + #: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "" @@ -2931,18 +3394,23 @@ msgstr "" msgid "%s group" msgstr "" +#: actions/showgroup.php:84 +#, fuzzy, php-format +msgid "%1$s group, page %2$d" +msgstr "所有訂閱" + #: actions/showgroup.php:218 #, fuzzy msgid "Group profile" msgstr "無此通知" #: actions/showgroup.php:263 actions/tagother.php:118 -#: actions/userauthorization.php:167 lib/userprofile.php:177 +#: actions/userauthorization.php:175 lib/userprofile.php:177 msgid "URL" msgstr "" #: actions/showgroup.php:274 actions/tagother.php:128 -#: actions/userauthorization.php:179 lib/userprofile.php:194 +#: actions/userauthorization.php:187 lib/userprofile.php:194 msgid "Note" msgstr "" @@ -2989,10 +3457,6 @@ msgstr "" msgid "All members" msgstr "" -#: actions/showgroup.php:429 lib/profileaction.php:174 -msgid "Statistics" -msgstr "" - #: actions/showgroup.php:432 #, fuzzy msgid "Created" @@ -3049,6 +3513,11 @@ msgstr "更新個人圖像" msgid " tagged %s" msgstr "" +#: actions/showstream.php:79 +#, fuzzy, php-format +msgid "%1$s, page %2$d" +msgstr "%s與好友" + #: actions/showstream.php:122 #, fuzzy, php-format msgid "Notice feed for %1$s tagged %2$s (RSS 1.0)" @@ -3074,25 +3543,25 @@ msgstr "" msgid "FOAF for %s" msgstr "" -#: actions/showstream.php:191 +#: actions/showstream.php:200 #, php-format msgid "This is the timeline for %1$s but %2$s hasn't posted anything yet." msgstr "" -#: actions/showstream.php:196 +#: actions/showstream.php:205 msgid "" "Seen anything interesting recently? You haven't posted any notices yet, now " "would be a good time to start :)" msgstr "" -#: actions/showstream.php:198 +#: actions/showstream.php:207 #, php-format msgid "" "You can try to nudge %1$s or [post something to his or her attention](%%%%" "action.newnotice%%%%?status_textarea=%2$s)." msgstr "" -#: actions/showstream.php:234 +#: actions/showstream.php:243 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3101,7 +3570,7 @@ msgid "" "follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showstream.php:239 +#: actions/showstream.php:248 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3109,7 +3578,7 @@ msgid "" "[StatusNet](http://status.net/) tool. " msgstr "" -#: actions/showstream.php:313 +#: actions/showstream.php:305 #, php-format msgid "Repeat of %s" msgstr "" @@ -3126,202 +3595,147 @@ msgstr "" msgid "Basic settings for this StatusNet site." msgstr "" -#: actions/siteadminpanel.php:146 +#: actions/siteadminpanel.php:132 msgid "Site name must have non-zero length." msgstr "" -#: actions/siteadminpanel.php:154 +#: actions/siteadminpanel.php:140 #, fuzzy msgid "You must have a valid contact email address." msgstr "此信箱無效" -#: actions/siteadminpanel.php:172 +#: actions/siteadminpanel.php:158 #, php-format msgid "Unknown language \"%s\"." msgstr "" -#: actions/siteadminpanel.php:179 +#: actions/siteadminpanel.php:165 msgid "Invalid snapshot report URL." msgstr "" -#: actions/siteadminpanel.php:185 +#: actions/siteadminpanel.php:171 msgid "Invalid snapshot run value." msgstr "" -#: actions/siteadminpanel.php:191 +#: actions/siteadminpanel.php:177 msgid "Snapshot frequency must be a number." msgstr "" -#: actions/siteadminpanel.php:197 +#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "" -#: actions/siteadminpanel.php:203 +#: actions/siteadminpanel.php:189 msgid "Dupe limit must 1 or more seconds." msgstr "" -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:239 msgid "General" msgstr "" -#: actions/siteadminpanel.php:256 +#: actions/siteadminpanel.php:242 #, fuzzy msgid "Site name" msgstr "新訊息" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:243 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "" -#: actions/siteadminpanel.php:261 +#: actions/siteadminpanel.php:247 msgid "Brought by" msgstr "" -#: actions/siteadminpanel.php:262 +#: actions/siteadminpanel.php:248 msgid "Text used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:266 +#: actions/siteadminpanel.php:252 msgid "Brought by URL" msgstr "" -#: actions/siteadminpanel.php:267 +#: actions/siteadminpanel.php:253 msgid "URL used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:271 +#: actions/siteadminpanel.php:257 #, fuzzy msgid "Contact email address for your site" msgstr "查無此使用者所註冊的信箱" -#: actions/siteadminpanel.php:277 +#: actions/siteadminpanel.php:263 #, fuzzy msgid "Local" msgstr "地點" -#: actions/siteadminpanel.php:288 +#: actions/siteadminpanel.php:274 msgid "Default timezone" msgstr "" -#: actions/siteadminpanel.php:289 +#: actions/siteadminpanel.php:275 msgid "Default timezone for the site; usually UTC." msgstr "" -#: actions/siteadminpanel.php:295 +#: actions/siteadminpanel.php:281 msgid "Default site language" msgstr "" -#: actions/siteadminpanel.php:303 -msgid "URLs" -msgstr "" - -#: actions/siteadminpanel.php:306 -msgid "Server" -msgstr "" - -#: actions/siteadminpanel.php:306 -msgid "Site's server hostname." -msgstr "" - -#: actions/siteadminpanel.php:310 -msgid "Fancy URLs" -msgstr "" - -#: actions/siteadminpanel.php:312 -msgid "Use fancy (more readable and memorable) URLs?" -msgstr "" - -#: actions/siteadminpanel.php:318 -#, fuzzy -msgid "Access" -msgstr "接受" - -#: actions/siteadminpanel.php:321 -msgid "Private" -msgstr "" - -#: actions/siteadminpanel.php:323 -msgid "Prohibit anonymous users (not logged in) from viewing site?" -msgstr "" - -#: actions/siteadminpanel.php:327 -msgid "Invite only" -msgstr "" - -#: actions/siteadminpanel.php:329 -msgid "Make registration invitation only." -msgstr "" - -#: actions/siteadminpanel.php:333 -#, fuzzy -msgid "Closed" -msgstr "無此使用者" - -#: actions/siteadminpanel.php:335 -msgid "Disable new registrations." -msgstr "" - -#: actions/siteadminpanel.php:341 +#: actions/siteadminpanel.php:289 msgid "Snapshots" msgstr "" -#: actions/siteadminpanel.php:344 +#: actions/siteadminpanel.php:292 msgid "Randomly during Web hit" msgstr "" -#: actions/siteadminpanel.php:345 +#: actions/siteadminpanel.php:293 msgid "In a scheduled job" msgstr "" -#: actions/siteadminpanel.php:347 +#: actions/siteadminpanel.php:295 msgid "Data snapshots" msgstr "" -#: actions/siteadminpanel.php:348 +#: actions/siteadminpanel.php:296 msgid "When to send statistical data to status.net servers" msgstr "" -#: actions/siteadminpanel.php:353 +#: actions/siteadminpanel.php:301 msgid "Frequency" msgstr "" -#: actions/siteadminpanel.php:354 +#: actions/siteadminpanel.php:302 msgid "Snapshots will be sent once every N web hits" msgstr "" -#: actions/siteadminpanel.php:359 +#: actions/siteadminpanel.php:307 msgid "Report URL" msgstr "" -#: actions/siteadminpanel.php:360 +#: actions/siteadminpanel.php:308 msgid "Snapshots will be sent to this URL" msgstr "" -#: actions/siteadminpanel.php:367 +#: actions/siteadminpanel.php:315 msgid "Limits" msgstr "" -#: actions/siteadminpanel.php:370 +#: actions/siteadminpanel.php:318 msgid "Text limit" msgstr "" -#: actions/siteadminpanel.php:370 +#: actions/siteadminpanel.php:318 msgid "Maximum number of characters for notices." msgstr "" -#: actions/siteadminpanel.php:374 +#: actions/siteadminpanel.php:322 msgid "Dupe limit" msgstr "" -#: actions/siteadminpanel.php:374 +#: actions/siteadminpanel.php:322 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" -#: actions/siteadminpanel.php:388 actions/useradminpanel.php:313 -#, fuzzy -msgid "Save site settings" -msgstr "線上即時通設定" - #: actions/smssettings.php:58 #, fuzzy msgid "SMS settings" @@ -3421,17 +3835,26 @@ msgstr "" msgid "You are not subscribed to that profile." msgstr "" -#: actions/subedit.php:83 +#: actions/subedit.php:83 classes/Subscription.php:89 +#: classes/Subscription.php:116 #, fuzzy msgid "Could not save subscription." msgstr "註冊失敗" -#: actions/subscribe.php:55 -#, fuzzy -msgid "Not a local user." -msgstr "無此使用者" +#: actions/subscribe.php:77 +msgid "This action only accepts POST requests." +msgstr "" -#: actions/subscribe.php:69 +#: actions/subscribe.php:107 +#, fuzzy +msgid "No such profile." +msgstr "無此通知" + +#: actions/subscribe.php:117 +msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." +msgstr "" + +#: actions/subscribe.php:145 #, fuzzy msgid "Subscribed" msgstr "此帳號已註冊" @@ -3492,7 +3915,7 @@ msgstr "" msgid "These are the people whose notices %s listens to." msgstr "" -#: actions/subscriptions.php:121 +#: actions/subscriptions.php:126 #, php-format msgid "" "You're not listening to anyone's notices right now, try subscribing to " @@ -3502,20 +3925,25 @@ msgid "" "automatically subscribe to people you already follow there." msgstr "" -#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#: actions/subscriptions.php:128 actions/subscriptions.php:132 #, fuzzy, php-format msgid "%s is not listening to anyone." msgstr "現在%1$s在%2$s成為你的粉絲囉" -#: actions/subscriptions.php:194 +#: actions/subscriptions.php:199 #, fuzzy msgid "Jabber" msgstr "查無此Jabber ID" -#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:204 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "" +#: actions/tag.php:68 +#, fuzzy, php-format +msgid "Notices tagged with %1$s, page %2$d" +msgstr "&s的微型部落格" + #: actions/tag.php:86 #, php-format msgid "Notice feed for tag %s (RSS 1.0)" @@ -3546,7 +3974,8 @@ msgstr "" msgid "User profile" msgstr "無此通知" -#: actions/tagother.php:81 lib/userprofile.php:102 +#: actions/tagother.php:81 actions/userauthorization.php:132 +#: lib/userprofile.php:102 msgid "Photo" msgstr "" @@ -3606,7 +4035,7 @@ msgstr "無確認請求" msgid "Unsubscribed" msgstr "此帳號已註冊" -#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#: actions/updateprofile.php:62 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -3621,86 +4050,66 @@ msgstr "" msgid "User settings for this StatusNet site." msgstr "" -#: actions/useradminpanel.php:149 +#: actions/useradminpanel.php:148 msgid "Invalid bio limit. Must be numeric." msgstr "" -#: actions/useradminpanel.php:155 +#: actions/useradminpanel.php:154 msgid "Invalid welcome text. Max length is 255 characters." msgstr "" -#: actions/useradminpanel.php:165 +#: actions/useradminpanel.php:164 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 +#: actions/useradminpanel.php:217 lib/accountsettingsaction.php:108 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:221 msgid "Bio Limit" msgstr "" -#: actions/useradminpanel.php:223 +#: actions/useradminpanel.php:222 msgid "Maximum length of a profile bio in characters." msgstr "" -#: actions/useradminpanel.php:231 +#: actions/useradminpanel.php:230 msgid "New users" msgstr "" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:234 msgid "New user welcome" msgstr "" -#: actions/useradminpanel.php:236 +#: actions/useradminpanel.php:235 msgid "Welcome text for new users (Max 255 chars)." msgstr "" -#: actions/useradminpanel.php:241 +#: actions/useradminpanel.php:240 #, fuzzy msgid "Default subscription" msgstr "所有訂閱" -#: actions/useradminpanel.php:242 +#: actions/useradminpanel.php:241 msgid "Automatically subscribe new users to this user." msgstr "" -#: actions/useradminpanel.php:251 +#: actions/useradminpanel.php:250 #, fuzzy msgid "Invitations" msgstr "地點" -#: actions/useradminpanel.php:256 +#: actions/useradminpanel.php:255 msgid "Invitations enabled" msgstr "" -#: actions/useradminpanel.php:258 +#: actions/useradminpanel.php:257 msgid "Whether to allow users to invite new users." msgstr "" -#: actions/useradminpanel.php:265 -msgid "Sessions" -msgstr "" - -#: actions/useradminpanel.php:270 -msgid "Handle sessions" -msgstr "" - -#: actions/useradminpanel.php:272 -msgid "Whether to handle sessions ourselves." -msgstr "" - -#: actions/useradminpanel.php:276 -msgid "Session debugging" -msgstr "" - -#: actions/useradminpanel.php:278 -msgid "Turn on debugging output for sessions." -msgstr "" - #: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "註冊確認" @@ -3712,85 +4121,85 @@ msgid "" "click “Reject”." msgstr "" -#: actions/userauthorization.php:188 actions/version.php:165 +#: actions/userauthorization.php:196 actions/version.php:165 msgid "License" msgstr "" -#: actions/userauthorization.php:209 +#: actions/userauthorization.php:217 msgid "Accept" msgstr "接受" -#: actions/userauthorization.php:210 lib/subscribeform.php:115 +#: actions/userauthorization.php:218 lib/subscribeform.php:115 #: lib/subscribeform.php:139 msgid "Subscribe to this user" msgstr "" -#: actions/userauthorization.php:211 +#: actions/userauthorization.php:219 msgid "Reject" msgstr "" -#: actions/userauthorization.php:212 +#: actions/userauthorization.php:220 #, fuzzy msgid "Reject this subscription" msgstr "所有訂閱" -#: actions/userauthorization.php:225 +#: actions/userauthorization.php:232 msgid "No authorization request!" msgstr "無確認請求" -#: actions/userauthorization.php:247 +#: actions/userauthorization.php:254 msgid "Subscription authorized" msgstr "" -#: actions/userauthorization.php:249 +#: actions/userauthorization.php:256 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 +#: actions/userauthorization.php:266 msgid "Subscription rejected" msgstr "" -#: actions/userauthorization.php:261 +#: actions/userauthorization.php:268 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 +#: actions/userauthorization.php:303 #, php-format msgid "Listener URI ‘%s’ not found here." msgstr "" -#: actions/userauthorization.php:301 +#: actions/userauthorization.php:308 #, php-format msgid "Listenee URI ‘%s’ is too long." msgstr "" -#: actions/userauthorization.php:307 +#: actions/userauthorization.php:314 #, php-format msgid "Listenee URI ‘%s’ is a local user." msgstr "" -#: actions/userauthorization.php:322 +#: actions/userauthorization.php:329 #, php-format msgid "Profile URL ‘%s’ is for a local user." msgstr "" -#: actions/userauthorization.php:338 +#: actions/userauthorization.php:345 #, php-format msgid "Avatar URL ‘%s’ is not valid." msgstr "" -#: actions/userauthorization.php:343 +#: actions/userauthorization.php:350 #, fuzzy, php-format msgid "Can’t read avatar URL ‘%s’." msgstr "無法讀取此%sURL的圖像" -#: actions/userauthorization.php:348 +#: actions/userauthorization.php:355 #, php-format msgid "Wrong image type for avatar URL ‘%s’." msgstr "" @@ -3809,6 +4218,11 @@ msgstr "" msgid "Enjoy your hotdog!" msgstr "" +#: actions/usergroups.php:64 +#, fuzzy, php-format +msgid "%1$s groups, page %2$d" +msgstr "所有訂閱" + #: actions/usergroups.php:130 msgid "Search for more groups" msgstr "" @@ -3835,11 +4249,6 @@ msgid "" "Inc. and contributors." msgstr "" -#: actions/version.php:157 -#, fuzzy -msgid "StatusNet" -msgstr "更新個人圖像" - #: actions/version.php:161 msgid "Contributors" msgstr "" @@ -3871,12 +4280,7 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:195 -#, fuzzy -msgid "Name" -msgstr "暱稱" - -#: actions/version.php:196 lib/action.php:741 +#: actions/version.php:196 lib/action.php:747 #, fuzzy msgid "Version" msgstr "地點" @@ -3885,11 +4289,6 @@ msgstr "地點" msgid "Author(s)" msgstr "" -#: actions/version.php:198 lib/groupeditform.php:172 -#, fuzzy -msgid "Description" -msgstr "所有訂閱" - #: classes/File.php:144 #, php-format msgid "" @@ -3939,61 +4338,87 @@ msgstr "" msgid "Could not update message with new URI." msgstr "" -#: classes/Notice.php:171 +#: classes/Notice.php:157 #, php-format msgid "DB error inserting hashtag: %s" msgstr "" -#: classes/Notice.php:225 +#: classes/Notice.php:222 #, fuzzy msgid "Problem saving notice. Too long." msgstr "儲存使用者發生錯誤" -#: classes/Notice.php:229 +#: classes/Notice.php:226 #, fuzzy msgid "Problem saving notice. Unknown user." msgstr "儲存使用者發生錯誤" -#: classes/Notice.php:234 +#: classes/Notice.php:231 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: classes/Notice.php:240 +#: classes/Notice.php:237 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." msgstr "" -#: classes/Notice.php:246 +#: classes/Notice.php:243 msgid "You are banned from posting notices on this site." msgstr "" -#: classes/Notice.php:305 classes/Notice.php:330 +#: classes/Notice.php:309 classes/Notice.php:335 msgid "Problem saving notice." msgstr "" -#: classes/Notice.php:1052 -#, php-format -msgid "DB error inserting reply: %s" -msgstr "增加回覆時,資料庫發生錯誤: %s" +#: classes/Notice.php:882 +#, fuzzy +msgid "Problem saving group inbox." +msgstr "儲存使用者發生錯誤" -#: classes/Notice.php:1423 +#: classes/Notice.php:1407 #, php-format msgid "RT @%1$s %2$s" msgstr "" -#: classes/User.php:382 +#: classes/Subscription.php:66 lib/oauthstore.php:465 +msgid "You have been banned from subscribing." +msgstr "" + +#: classes/Subscription.php:70 +msgid "Already subscribed!" +msgstr "" + +#: classes/Subscription.php:74 +msgid "User has blocked you." +msgstr "" + +#: classes/Subscription.php:157 +#, fuzzy +msgid "Not subscribed!" +msgstr "此帳號已註冊" + +#: classes/Subscription.php:163 +#, fuzzy +msgid "Couldn't delete self-subscription." +msgstr "無法刪除帳號" + +#: classes/Subscription.php:179 lib/subs.php:69 +msgid "Couldn't delete subscription." +msgstr "無法刪除帳號" + +#: classes/User.php:372 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "" -#: classes/User_group.php:380 +#: classes/User_group.php:423 #, fuzzy msgid "Could not create group." msgstr "無法存取個人圖像資料" -#: classes/User_group.php:409 +#: classes/User_group.php:452 #, fuzzy msgid "Could not set group membership." msgstr "註冊失敗" @@ -4037,134 +4462,129 @@ msgstr "%1$s的狀態是%2$s" msgid "Untitled page" msgstr "" -#: lib/action.php:427 +#: lib/action.php:433 msgid "Primary site navigation" msgstr "" -#: lib/action.php:433 +#: lib/action.php:439 msgid "Home" msgstr "主頁" -#: lib/action.php:433 +#: lib/action.php:439 msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:435 -#, fuzzy -msgid "Account" -msgstr "關於" - -#: lib/action.php:435 +#: lib/action.php:441 msgid "Change your email, avatar, password, profile" msgstr "" -#: lib/action.php:438 +#: lib/action.php:444 msgid "Connect" msgstr "連結" -#: lib/action.php:438 +#: lib/action.php:444 #, fuzzy msgid "Connect to services" msgstr "無法連結到伺服器:%s" -#: lib/action.php:442 +#: lib/action.php:448 msgid "Change site configuration" msgstr "" -#: lib/action.php:446 lib/subgroupnav.php:105 +#: lib/action.php:452 lib/subgroupnav.php:105 msgid "Invite" msgstr "" -#: lib/action.php:447 lib/subgroupnav.php:106 +#: lib/action.php:453 lib/subgroupnav.php:106 #, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "" -#: lib/action.php:452 +#: lib/action.php:458 msgid "Logout" msgstr "登出" -#: lib/action.php:452 +#: lib/action.php:458 msgid "Logout from the site" msgstr "" -#: lib/action.php:457 +#: lib/action.php:463 #, fuzzy msgid "Create an account" msgstr "新增帳號" -#: lib/action.php:460 +#: lib/action.php:466 msgid "Login to the site" msgstr "" -#: lib/action.php:463 lib/action.php:726 +#: lib/action.php:469 lib/action.php:732 msgid "Help" msgstr "求救" -#: lib/action.php:463 +#: lib/action.php:469 #, fuzzy msgid "Help me!" msgstr "求救" -#: lib/action.php:466 lib/searchaction.php:127 +#: lib/action.php:472 lib/searchaction.php:127 msgid "Search" msgstr "" -#: lib/action.php:466 +#: lib/action.php:472 msgid "Search for people or text" msgstr "" -#: lib/action.php:487 +#: lib/action.php:493 #, fuzzy msgid "Site notice" msgstr "新訊息" -#: lib/action.php:553 +#: lib/action.php:559 msgid "Local views" msgstr "" -#: lib/action.php:619 +#: lib/action.php:625 #, fuzzy msgid "Page notice" msgstr "新訊息" -#: lib/action.php:721 +#: lib/action.php:727 msgid "Secondary site navigation" msgstr "" -#: lib/action.php:728 +#: lib/action.php:734 msgid "About" msgstr "關於" -#: lib/action.php:730 +#: lib/action.php:736 msgid "FAQ" msgstr "常見問題" -#: lib/action.php:734 +#: lib/action.php:740 msgid "TOS" msgstr "" -#: lib/action.php:737 +#: lib/action.php:743 msgid "Privacy" msgstr "" -#: lib/action.php:739 +#: lib/action.php:745 msgid "Source" msgstr "" -#: lib/action.php:743 +#: lib/action.php:749 msgid "Contact" msgstr "好友名單" -#: lib/action.php:745 +#: lib/action.php:751 msgid "Badge" msgstr "" -#: lib/action.php:773 +#: lib/action.php:779 msgid "StatusNet software license" msgstr "" -#: lib/action.php:776 +#: lib/action.php:782 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4173,12 +4593,12 @@ msgstr "" "**%%site.name%%**是由[%%site.broughtby%%](%%site.broughtbyurl%%)所提供的微型" "部落格服務" -#: lib/action.php:778 +#: lib/action.php:784 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%**是個微型部落格" -#: lib/action.php:780 +#: lib/action.php:786 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4186,34 +4606,56 @@ msgid "" "org/licensing/licenses/agpl-3.0.html)." msgstr "" -#: lib/action.php:794 +#: lib/action.php:801 #, fuzzy msgid "Site content license" msgstr "新訊息" -#: lib/action.php:803 +#: lib/action.php:806 +#, php-format +msgid "Content and data of %1$s are private and confidential." +msgstr "" + +#: lib/action.php:811 +#, php-format +msgid "Content and data copyright by %1$s. All rights reserved." +msgstr "" + +#: lib/action.php:814 +msgid "Content and data copyright by contributors. All rights reserved." +msgstr "" + +#: lib/action.php:827 msgid "All " msgstr "" -#: lib/action.php:808 +#: lib/action.php:833 msgid "license." msgstr "" -#: lib/action.php:1102 +#: lib/action.php:1132 msgid "Pagination" msgstr "" -#: lib/action.php:1111 +#: lib/action.php:1141 msgid "After" msgstr "" -#: lib/action.php:1119 +#: lib/action.php:1149 #, fuzzy msgid "Before" msgstr "之前的內容»" -#: lib/action.php:1167 -msgid "There was a problem with your session token." +#: lib/activity.php:382 +msgid "Can't handle remote content yet." +msgstr "" + +#: lib/activity.php:410 +msgid "Can't handle embedded XML content yet." +msgstr "" + +#: lib/activity.php:414 +msgid "Can't handle embedded Base64 content yet." msgstr "" #: lib/adminpanelaction.php:96 @@ -4246,11 +4688,101 @@ msgstr "確認信箱" msgid "Design configuration" msgstr "確認信箱" -#: lib/adminpanelaction.php:322 lib/adminpanelaction.php:327 +#: lib/adminpanelaction.php:322 +#, fuzzy +msgid "User configuration" +msgstr "確認信箱" + +#: lib/adminpanelaction.php:327 +#, fuzzy +msgid "Access configuration" +msgstr "確認信箱" + +#: lib/adminpanelaction.php:332 #, fuzzy msgid "Paths configuration" msgstr "確認信箱" +#: lib/adminpanelaction.php:337 +#, fuzzy +msgid "Sessions configuration" +msgstr "確認信箱" + +#: lib/apiauth.php:95 +msgid "API resource requires read-write access, but you only have read access." +msgstr "" + +#: lib/apiauth.php:273 +#, php-format +msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" +msgstr "" + +#: lib/applicationeditform.php:136 +msgid "Edit application" +msgstr "" + +#: lib/applicationeditform.php:184 +msgid "Icon for this application" +msgstr "" + +#: lib/applicationeditform.php:204 +#, fuzzy, php-format +msgid "Describe your application in %d characters" +msgstr "請在140個字以內描述你自己與你的興趣" + +#: lib/applicationeditform.php:207 +#, fuzzy +msgid "Describe your application" +msgstr "請在140個字以內描述你自己與你的興趣" + +#: lib/applicationeditform.php:216 +msgid "Source URL" +msgstr "" + +#: lib/applicationeditform.php:218 +msgid "URL of the homepage of this application" +msgstr "" + +#: lib/applicationeditform.php:224 +msgid "Organization responsible for this application" +msgstr "" + +#: lib/applicationeditform.php:230 +msgid "URL for the homepage of the organization" +msgstr "" + +#: lib/applicationeditform.php:236 +msgid "URL to redirect to after authentication" +msgstr "" + +#: lib/applicationeditform.php:258 +msgid "Browser" +msgstr "" + +#: lib/applicationeditform.php:274 +msgid "Desktop" +msgstr "" + +#: lib/applicationeditform.php:275 +msgid "Type of application, browser or desktop" +msgstr "" + +#: lib/applicationeditform.php:297 +msgid "Read-only" +msgstr "" + +#: lib/applicationeditform.php:315 +msgid "Read-write" +msgstr "" + +#: lib/applicationeditform.php:316 +msgid "Default access for this application: read-only, or read-write" +msgstr "" + +#: lib/applicationlist.php:154 +msgid "Revoke" +msgstr "" + #: lib/attachmentlist.php:87 msgid "Attachments" msgstr "" @@ -4271,11 +4803,11 @@ msgstr "" msgid "Tags for this attachment" msgstr "" -#: lib/authenticationplugin.php:182 lib/authenticationplugin.php:187 +#: lib/authenticationplugin.php:218 lib/authenticationplugin.php:223 msgid "Password changing failed" msgstr "" -#: lib/authenticationplugin.php:197 +#: lib/authenticationplugin.php:233 msgid "Password changing is not allowed" msgstr "" @@ -4428,80 +4960,90 @@ msgstr "儲存使用者發生錯誤" msgid "Specify the name of the user to subscribe to" msgstr "" -#: lib/command.php:554 +#: lib/command.php:554 lib/command.php:589 +#, fuzzy +msgid "No such user" +msgstr "無此使用者" + +#: lib/command.php:561 #, php-format msgid "Subscribed to %s" msgstr "" -#: lib/command.php:575 +#: lib/command.php:582 lib/command.php:685 msgid "Specify the name of the user to unsubscribe from" msgstr "" -#: lib/command.php:582 +#: lib/command.php:595 #, php-format msgid "Unsubscribed from %s" msgstr "" -#: lib/command.php:600 lib/command.php:623 +#: lib/command.php:613 lib/command.php:636 msgid "Command not yet implemented." msgstr "" -#: lib/command.php:603 +#: lib/command.php:616 msgid "Notification off." msgstr "" -#: lib/command.php:605 +#: lib/command.php:618 msgid "Can't turn off notification." msgstr "" -#: lib/command.php:626 +#: lib/command.php:639 msgid "Notification on." msgstr "" -#: lib/command.php:628 +#: lib/command.php:641 msgid "Can't turn on notification." msgstr "" -#: lib/command.php:641 +#: lib/command.php:654 msgid "Login command is disabled" msgstr "" -#: lib/command.php:652 +#: lib/command.php:665 #, php-format msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "" -#: lib/command.php:668 +#: lib/command.php:692 +#, fuzzy, php-format +msgid "Unsubscribed %s" +msgstr "此帳號已註冊" + +#: lib/command.php:709 #, fuzzy msgid "You are not subscribed to anyone." msgstr "此帳號已註冊" -#: lib/command.php:670 +#: lib/command.php:711 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "此帳號已註冊" -#: lib/command.php:690 +#: lib/command.php:731 #, fuzzy msgid "No one is subscribed to you." msgstr "無此訂閱" -#: lib/command.php:692 +#: lib/command.php:733 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "無此訂閱" -#: lib/command.php:712 +#: lib/command.php:753 #, fuzzy msgid "You are not a member of any groups." msgstr "無法連結到伺服器:%s" -#: lib/command.php:714 +#: lib/command.php:755 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "無法連結到伺服器:%s" -#: lib/command.php:728 +#: lib/command.php:769 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -4515,6 +5057,7 @@ msgid "" "d - direct message to user\n" "get - get last notice from user\n" "whois - get profile info on user\n" +"lose - force user to stop following you\n" "fav - add user's last notice as a 'fave'\n" "fav # - add notice with the given id as a 'fave'\n" "repeat # - repeat a notice with a given id\n" @@ -4542,20 +5085,20 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:131 +#: lib/common.php:136 #, fuzzy msgid "No configuration file found. " msgstr "無確認碼" -#: lib/common.php:132 +#: lib/common.php:137 msgid "I looked for configuration files in the following places: " msgstr "" -#: lib/common.php:134 +#: lib/common.php:139 msgid "You may wish to run the installer to fix this." msgstr "" -#: lib/common.php:135 +#: lib/common.php:140 msgid "Go to the installer." msgstr "" @@ -4571,6 +5114,15 @@ msgstr "" msgid "Updates by SMS" msgstr "" +#: lib/connectsettingsaction.php:120 +#, fuzzy +msgid "Connections" +msgstr "連結" + +#: lib/connectsettingsaction.php:121 +msgid "Authorized connected applications" +msgstr "" + #: lib/dberroraction.php:60 msgid "Database error" msgstr "" @@ -4759,12 +5311,12 @@ msgstr "" msgid "kB" msgstr "" -#: lib/jabber.php:202 +#: lib/jabber.php:220 #, php-format msgid "[%s]" msgstr "" -#: lib/jabber.php:385 +#: lib/jabber.php:400 #, php-format msgid "Unknown inbox source %d." msgstr "" @@ -4969,7 +5521,7 @@ msgid "" "users in conversation. People can send you messages for your eyes only." msgstr "" -#: lib/mailbox.php:227 lib/noticelist.php:477 +#: lib/mailbox.php:227 lib/noticelist.php:482 msgid "from" msgstr "" @@ -5089,59 +5641,55 @@ msgid "Do not share my location" msgstr "無法儲存個人資料" #: lib/noticeform.php:216 -msgid "Hide this info" -msgstr "" - -#: lib/noticeform.php:217 msgid "" "Sorry, retrieving your geo location is taking longer than expected, please " "try again later" msgstr "" -#: lib/noticelist.php:428 +#: lib/noticelist.php:429 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "" -#: lib/noticelist.php:429 +#: lib/noticelist.php:430 msgid "N" msgstr "" -#: lib/noticelist.php:429 +#: lib/noticelist.php:430 msgid "S" msgstr "" -#: lib/noticelist.php:430 +#: lib/noticelist.php:431 msgid "E" msgstr "" -#: lib/noticelist.php:430 +#: lib/noticelist.php:431 msgid "W" msgstr "" -#: lib/noticelist.php:436 +#: lib/noticelist.php:438 msgid "at" msgstr "" -#: lib/noticelist.php:531 +#: lib/noticelist.php:558 #, fuzzy msgid "in context" msgstr "無內容" -#: lib/noticelist.php:556 +#: lib/noticelist.php:583 #, fuzzy msgid "Repeated by" msgstr "新增" -#: lib/noticelist.php:585 +#: lib/noticelist.php:610 msgid "Reply to this notice" msgstr "" -#: lib/noticelist.php:586 +#: lib/noticelist.php:611 msgid "Reply" msgstr "" -#: lib/noticelist.php:628 +#: lib/noticelist.php:655 #, fuzzy msgid "Notice repeated" msgstr "更新個人圖像" @@ -5175,11 +5723,7 @@ msgstr "新增外部個人資料發生錯誤(Error inserting remote profile)" msgid "Duplicate notice" msgstr "新訊息" -#: lib/oauthstore.php:466 lib/subs.php:48 -msgid "You have been banned from subscribing." -msgstr "" - -#: lib/oauthstore.php:491 +#: lib/oauthstore.php:490 msgid "Couldn't insert new subscription." msgstr "無法新增訂閱" @@ -5195,19 +5739,19 @@ msgstr "" msgid "Favorites" msgstr "" -#: lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "" -#: lib/personalgroupnav.php:125 +#: lib/personalgroupnav.php:126 msgid "Your incoming messages" msgstr "" -#: lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 msgid "Outbox" msgstr "" -#: lib/personalgroupnav.php:130 +#: lib/personalgroupnav.php:131 msgid "Your sent messages" msgstr "" @@ -5288,6 +5832,10 @@ msgstr "無此通知" msgid "Repeat this notice" msgstr "無此通知" +#: lib/router.php:665 +msgid "No single user defined for single-user mode." +msgstr "" + #: lib/sandboxform.php:67 msgid "Sandbox" msgstr "" @@ -5358,36 +5906,6 @@ msgstr "此帳號已註冊" msgid "Groups %s is a member of" msgstr "" -#: lib/subs.php:52 -msgid "Already subscribed!" -msgstr "" - -#: lib/subs.php:56 -msgid "User has blocked you." -msgstr "" - -#: lib/subs.php:63 -msgid "Could not subscribe." -msgstr "" - -#: lib/subs.php:82 -msgid "Could not subscribe other to you." -msgstr "" - -#: lib/subs.php:137 -#, fuzzy -msgid "Not subscribed!" -msgstr "此帳號已註冊" - -#: lib/subs.php:142 -#, fuzzy -msgid "Couldn't delete self-subscription." -msgstr "無法刪除帳號" - -#: lib/subs.php:158 -msgid "Couldn't delete subscription." -msgstr "無法刪除帳號" - #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -5441,68 +5959,68 @@ msgstr "個人圖像" msgid "User actions" msgstr "" -#: lib/userprofile.php:248 +#: lib/userprofile.php:251 #, fuzzy msgid "Edit profile settings" msgstr "線上即時通設定" -#: lib/userprofile.php:249 +#: lib/userprofile.php:252 msgid "Edit" msgstr "" -#: lib/userprofile.php:272 +#: lib/userprofile.php:275 msgid "Send a direct message to this user" msgstr "" -#: lib/userprofile.php:273 +#: lib/userprofile.php:276 msgid "Message" msgstr "" -#: lib/userprofile.php:311 +#: lib/userprofile.php:314 msgid "Moderate" msgstr "" -#: lib/util.php:877 +#: lib/util.php:952 msgid "a few seconds ago" msgstr "" -#: lib/util.php:879 +#: lib/util.php:954 msgid "about a minute ago" msgstr "" -#: lib/util.php:881 +#: lib/util.php:956 #, php-format msgid "about %d minutes ago" msgstr "" -#: lib/util.php:883 +#: lib/util.php:958 msgid "about an hour ago" msgstr "" -#: lib/util.php:885 +#: lib/util.php:960 #, php-format msgid "about %d hours ago" msgstr "" -#: lib/util.php:887 +#: lib/util.php:962 msgid "about a day ago" msgstr "" -#: lib/util.php:889 +#: lib/util.php:964 #, php-format msgid "about %d days ago" msgstr "" -#: lib/util.php:891 +#: lib/util.php:966 msgid "about a month ago" msgstr "" -#: lib/util.php:893 +#: lib/util.php:968 #, php-format msgid "about %d months ago" msgstr "" -#: lib/util.php:895 +#: lib/util.php:970 msgid "about a year ago" msgstr "" @@ -5516,7 +6034,7 @@ msgstr "個人首頁位址錯誤" msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "" -#: scripts/xmppdaemon.php:301 +#: lib/xmppmanager.php:402 #, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "" From 543ff40ef62f2587cde084b03bcf2e956f52ce2f Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Wed, 24 Feb 2010 16:51:24 -0800 Subject: [PATCH 012/362] Populate more profile information when doing a remote subscribe --- lib/activity.php | 56 ++++++++++++---- plugins/OStatus/classes/Ostatus_profile.php | 71 ++++++++++++++++++++- tests/ActivityParseTests.php | 2 + 3 files changed, 113 insertions(+), 16 deletions(-) diff --git a/lib/activity.php b/lib/activity.php index 33932ad0ef..eace672a5a 100644 --- a/lib/activity.php +++ b/lib/activity.php @@ -154,7 +154,15 @@ class PoCo PoCo::NS ); - array_push($urls, new PoCoURL($type, $value, $primary)); + $isPrimary = false; + + if (isset($primary) && $primary == 'true') { + $isPrimary = true; + } + + // @todo check to make sure a primary hasn't already been added + + array_push($urls, new PoCoURL($type, $value, $isPrimary)); } return $urls; } @@ -213,6 +221,15 @@ class PoCo return $poco; } + function getPrimaryURL() + { + foreach ($this->urls as $url) { + if ($url->primary) { + return $url; + } + } + } + function asString() { $xs = new XMLStringer(true); @@ -494,6 +511,12 @@ class ActivityObject $this->element = $element; + $this->geopoint = $this->_childContent( + $element, + ActivityContext::POINT, + ActivityContext::GEORSS + ); + if ($element->tagName == 'author') { $this->type = self::PERSON; // XXX: is this fair? @@ -759,22 +782,29 @@ class ActivityContext for ($i = 0; $i < $points->length; $i++) { $point = $points->item($i)->textContent; - $point = str_replace(',', ' ', $point); // per spec "treat commas as whitespace" - $point = preg_replace('/\s+/', ' ', $point); - $point = trim($point); - $coords = explode(' ', $point); - if (count($coords) == 2) { - list($lat, $lon) = $coords; - if (is_numeric($lat) && is_numeric($lon)) { - common_log(LOG_INFO, "Looking up location for $lat $lon from georss"); - return Location::fromLatLon($lat, $lon); - } - } - common_log(LOG_ERR, "Ignoring bogus georss:point value $point"); + return self::locationFromPoint($point); } return null; } + + // XXX: Move to ActivityUtils or Location? + static function locationFromPoint($point) + { + $point = str_replace(',', ' ', $point); // per spec "treat commas as whitespace" + $point = preg_replace('/\s+/', ' ', $point); + $point = trim($point); + $coords = explode(' ', $point); + if (count($coords) == 2) { + list($lat, $lon) = $coords; + if (is_numeric($lat) && is_numeric($lon)) { + common_log(LOG_INFO, "Looking up location for $lat $lon from georss point"); + return Location::fromLatLon($lat, $lon); + } + } + common_log(LOG_ERR, "Ignoring bogus georss:point value $point"); + return null; + } } /** diff --git a/plugins/OStatus/classes/Ostatus_profile.php b/plugins/OStatus/classes/Ostatus_profile.php index 5e38a523ea..144fdfa8b7 100644 --- a/plugins/OStatus/classes/Ostatus_profile.php +++ b/plugins/OStatus/classes/Ostatus_profile.php @@ -1118,11 +1118,20 @@ class Ostatus_profile extends Memcached_DataObject $profile->profileurl = $hints['profileurl']; } - // @fixme bio + $profile->bio = self::getActivityObjectBio($object, $hints); + $profile->location = self::getActivityObjectLocation($object, $hints); + $profile->homepage = self::getActivityObjectHomepage($object, $hints); + + if (!empty($object->geopoint)) { + $location = ActivityContext::locationFromPoint($object->geopoint); + if (!empty($location)) { + $profile->lat = $location->lat; + $profile->lon = $location->lon; + } + } + // @fixme tags/categories - // @fixme location? // @todo tags from categories - // @todo lat/lon/location? if ($profile->id) { common_log(LOG_DEBUG, "Updating OStatus profile $profile->id from remote info $object->id: " . var_export($object, true) . var_export($hints, true)); @@ -1154,6 +1163,62 @@ class Ostatus_profile extends Memcached_DataObject } } + protected static function getActivityObjectHomepage($object, $hints=array()) + { + $homepage = null; + $poco = $object->poco; + + if (!empty($poco)) { + $url = $poco->getPrimaryURL(); + if ($url->type == 'homepage') { + $homepage = $url->value; + } + } + + // @todo Try for a another PoCo URL? + + return $homepage; + } + + protected static function getActivityObjectLocation($object, $hints=array()) + { + $location = null; + + if (!empty($object->poco)) { + if (isset($object->poco->address->formatted)) { + $location = $object->poco->address->formatted; + if (mb_strlen($location) > 255) { + $location = mb_substr($note, 0, 255 - 3) . ' … '; + } + } + } + + // @todo Try to find location some othe way? Via goerss point? + + return $location; + } + + protected static function getActivityObjectBio($object, $hints=array()) + { + $bio = null; + + if (!empty($object->poco)) { + $note = $object->poco->note; + if (!empty($note)) { + if (mb_strlen($note) > Profile::maxBio()) { + // XXX: truncate ok? + $bio = mb_substr($note, 0, Profile::maxBio() - 3) . ' … '; + } else { + $bio = $note; + } + } + } + + // @todo Try to get bio info some other way? + + return $bio; + } + protected static function getActivityObjectNickname($object, $hints=array()) { if ($object->poco) { diff --git a/tests/ActivityParseTests.php b/tests/ActivityParseTests.php index 5de97d2e2e..d1d8717343 100644 --- a/tests/ActivityParseTests.php +++ b/tests/ActivityParseTests.php @@ -133,6 +133,8 @@ class ActivityParseTests extends PHPUnit_Framework_TestCase $this->assertEquals($poco->urls[0]->type, 'homepage'); $this->assertEquals($poco->urls[0]->value, 'http://example.com/blog.html'); $this->assertEquals($poco->urls[0]->primary, 'true'); + $this->assertEquals($act->actor->geopoint, '37.7749295 -122.4194155'); + } } From b798faf9ea67c5e02ee515fb8e344132f8edd6be Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Thu, 25 Feb 2010 02:43:20 +0000 Subject: [PATCH 013/362] OStatus: abort processing of this PuSH in item if we got an exception, rather than letting it be re-run. --- plugins/OStatus/lib/pushinqueuehandler.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/plugins/OStatus/lib/pushinqueuehandler.php b/plugins/OStatus/lib/pushinqueuehandler.php index a90f52df26..1fd29ae301 100644 --- a/plugins/OStatus/lib/pushinqueuehandler.php +++ b/plugins/OStatus/lib/pushinqueuehandler.php @@ -40,7 +40,11 @@ class PushInQueueHandler extends QueueHandler $feedsub = FeedSub::staticGet('id', $feedsub_id); if ($feedsub) { - $feedsub->receive($post, $hmac); + try { + $feedsub->receive($post, $hmac); + } catch(Exception $e) { + common_log(LOG_ERR, "Exception during PuSH input processing for $feedsub->uri: " . $e->getMessage()); + } } else { common_log(LOG_ERR, "Discarding POST to unknown feed subscription id $feedsub_id"); } From 58e232a10ad45808caeb1bbd72641aea535e00e8 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Thu, 25 Feb 2010 02:43:55 +0000 Subject: [PATCH 014/362] OStatus: when finding webfinger @-replies, override a local profile match if found at the same location (eg @someguy vs @someguy@example.org) Fixes inconsistent application of webfinger @-mentions in OStatus; once a local profile is set up the local name would often match first and ended up overriding in output. --- plugins/OStatus/OStatusPlugin.php | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/plugins/OStatus/OStatusPlugin.php b/plugins/OStatus/OStatusPlugin.php index 5feb53b260..7f75b7b2b4 100644 --- a/plugins/OStatus/OStatusPlugin.php +++ b/plugins/OStatus/OStatusPlugin.php @@ -210,7 +210,7 @@ class OStatusPlugin extends Plugin * */ - function onStartFindMentions($sender, $text, &$mentions) + function onEndFindMentions($sender, $text, &$mentions) { preg_match_all('/(?:^|\s+)@((?:\w+\.)*\w+@(?:\w+\.)*\w+(?:\w+\-\w+)*\.\w+)/', $text, @@ -233,11 +233,21 @@ class OStatusPlugin extends Plugin $this->log(LOG_INFO, "Ostatus_profile found for address '$webfinger'"); + if ($oprofile->isGroup()) { + continue; + } $profile = $oprofile->localProfile(); + $pos = $wmatch[1]; + foreach ($mentions as $i => $other) { + // If we share a common prefix with a local user, override it! + if ($other['position'] == $pos) { + unset($mentions[$i]); + } + } $mentions[] = array('mentioned' => array($profile), 'text' => $wmatch[0], - 'position' => $wmatch[1], + 'position' => $pos, 'url' => $profile->profileurl); } } From 942521ef3058ee4416d737a144f7e48d9f0f342c Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Wed, 24 Feb 2010 22:02:43 -0500 Subject: [PATCH 015/362] if OStatus post is too long, show the summary and save it as an HTML attachment --- plugins/OStatus/classes/Ostatus_profile.php | 60 +++++++++++++++++++++ 1 file changed, 60 insertions(+) diff --git a/plugins/OStatus/classes/Ostatus_profile.php b/plugins/OStatus/classes/Ostatus_profile.php index 4f73fd65be..10c2ff87c8 100644 --- a/plugins/OStatus/classes/Ostatus_profile.php +++ b/plugins/OStatus/classes/Ostatus_profile.php @@ -607,6 +607,32 @@ class Ostatus_profile extends Memcached_DataObject $rendered = $this->purify($activity->object->content); $content = html_entity_decode(strip_tags($rendered)); + $shortened = content_shorten_links($content); + + // If it's too long, try using the summary, and make the + // HTML an attachment. + + $attachment = null; + + if (Notice::contentTooLong($shortened)) { + $attachment = $this->saveHTMLFile($activity->object->title, $rendered); + $summary = $activity->object->summary; + if (empty($summary)) { + $summary = $content; + } + $shortSummary = content_shorten_links($summary); + if (Notice::contentTooLong($shortSummary)) { + $url = common_shorten_url(common_local_url('attachment', + array('attachment' => $attachment->id))); + $shortSummary = substr($shortSummary, + 0, + Notice::maxContent() - (mb_strlen($url) + 2)); + $shortSummary .= '… ' . $url; + $content = $shortSummary; + $rendered = common_render_text($content); + } + } + $options = array('is_local' => Notice::REMOTE_OMB, 'url' => $sourceUrl, 'uri' => $sourceUri, @@ -654,6 +680,9 @@ class Ostatus_profile extends Memcached_DataObject $options); if ($saved) { Ostatus_source::saveNew($saved, $this, $method); + if (!empty($attachment)) { + File_to_post::processNew($attachment->id, $saved->id); + } } } catch (Exception $e) { common_log(LOG_ERR, "OStatus save of remote message $sourceUri failed: " . $e->getMessage()); @@ -1386,4 +1415,35 @@ class Ostatus_profile extends Memcached_DataObject return null; } + + function saveHTMLFile($title, $rendered) + { + $final = sprintf("\n%s". + '
%s
', + htmlspecialchars($title), + $rendered); + + $filename = File::filename($this->localProfile(), + 'ostatus', // ignored? + 'text/html'); + + $filepath = File::path($filename); + + file_put_contents($filepath, $final); + + $file = new File; + + $file->filename = $filename; + $file->url = File::url($filename); + $file->size = filesize($filepath); + $file->date = time(); + $file->mimetype = 'text/html'; + + $file_id = $file->insert(); + + if ($file_id === false) { + common_log_db_error($file, "INSERT", __FILE__); + throw new ServerException(_('Could not store HTML content of long post as file.')); + } + } } From b08a5271395b92e01a17f7298cad7bb203149a7b Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Wed, 24 Feb 2010 22:22:42 -0500 Subject: [PATCH 016/362] content_* to common_* --- plugins/OStatus/classes/Ostatus_profile.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/OStatus/classes/Ostatus_profile.php b/plugins/OStatus/classes/Ostatus_profile.php index 10c2ff87c8..e9c77654dd 100644 --- a/plugins/OStatus/classes/Ostatus_profile.php +++ b/plugins/OStatus/classes/Ostatus_profile.php @@ -607,7 +607,7 @@ class Ostatus_profile extends Memcached_DataObject $rendered = $this->purify($activity->object->content); $content = html_entity_decode(strip_tags($rendered)); - $shortened = content_shorten_links($content); + $shortened = common_shorten_links($content); // If it's too long, try using the summary, and make the // HTML an attachment. @@ -620,7 +620,7 @@ class Ostatus_profile extends Memcached_DataObject if (empty($summary)) { $summary = $content; } - $shortSummary = content_shorten_links($summary); + $shortSummary = common_shorten_links($summary); if (Notice::contentTooLong($shortSummary)) { $url = common_shorten_url(common_local_url('attachment', array('attachment' => $attachment->id))); From d72c357750ada3dd0969e79429df0cb37aef9ddd Mon Sep 17 00:00:00 2001 From: Craig Andrews Date: Wed, 24 Feb 2010 22:24:11 -0500 Subject: [PATCH 017/362] add image support for xbm, xpm, wbmp, and bmp image formats --- lib/imagefile.php | 135 +++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 133 insertions(+), 2 deletions(-) diff --git a/lib/imagefile.php b/lib/imagefile.php index 6bc8e599b3..7b04794552 100644 --- a/lib/imagefile.php +++ b/lib/imagefile.php @@ -99,6 +99,10 @@ class ImageFile if ($info[2] !== IMAGETYPE_GIF && $info[2] !== IMAGETYPE_JPEG && + $info[2] !== IMAGETYPE_BMP && + $info[2] !== IMAGETYPE_WBMP && + $info[2] !== IMAGETYPE_XBM && + $info[2] !== IMAGETYPE_XPM && $info[2] !== IMAGETYPE_PNG) { @unlink($_FILES[$param]['tmp_name']); @@ -146,6 +150,18 @@ class ImageFile case IMAGETYPE_PNG: $image_src = imagecreatefrompng($this->filepath); break; + case IMAGETYPE_BMP: + $image_src = imagecreatefrombmp($this->filepath); + break; + case IMAGETYPE_WBMP: + $image_src = imagecreatefromwbmp($this->filepath); + break; + case IMAGETYPE_XBM: + $image_src = imagecreatefromxbm($this->filepath); + break; + case IMAGETYPE_XPM: + $image_src = imagecreatefromxpm($this->filepath); + break; default: throw new Exception(_('Unknown file type')); return; @@ -153,7 +169,7 @@ class ImageFile $image_dest = imagecreatetruecolor($size, $size); - if ($this->type == IMAGETYPE_GIF || $this->type == IMAGETYPE_PNG) { + if ($this->type == IMAGETYPE_GIF || $this->type == IMAGETYPE_PNG || $this->type == IMAGETYPE_BMP) { $transparent_idx = imagecolortransparent($image_src); @@ -176,6 +192,24 @@ class ImageFile imagecopyresampled($image_dest, $image_src, 0, 0, $x, $y, $size, $size, $w, $h); + if($this->type == IMAGETYPE_BMP) { + //we don't want to save BMP... it's an inefficient, rare, antiquated format + //save png instead + $this->type = IMAGETYPE_PNG; + } else if($this->type == IMAGETYPE_WBMP) { + //we don't want to save WBMP... it's a rare format that we can't guarantee clients will support + //save png instead + $this->type = IMAGETYPE_PNG; + } else if($this->type == IMAGETYPE_XBM) { + //we don't want to save XBM... it's a rare format that we can't guarantee clients will support + //save png instead + $this->type = IMAGETYPE_PNG; + } else if($this->type == IMAGETYPE_XPM) { + //we don't want to save XPM... it's a rare format that we can't guarantee clients will support + //save png instead + $this->type = IMAGETYPE_PNG; + } + $outname = Avatar::filename($this->id, image_type_to_extension($this->type), $size, @@ -245,4 +279,101 @@ class ImageFile return $num; } -} \ No newline at end of file +} + +//PHP doesn't (as of 2/24/2010) have an imagecreatefrombmp so conditionally define one +if(!function_exists('imagecreatefrombmp')){ + //taken shamelessly from http://www.php.net/manual/en/function.imagecreatefromwbmp.php#86214 + function imagecreatefrombmp($p_sFile) + { + // Load the image into a string + $file = fopen($p_sFile,"rb"); + $read = fread($file,10); + while(!feof($file)&&($read<>"")) + $read .= fread($file,1024); + + $temp = unpack("H*",$read); + $hex = $temp[1]; + $header = substr($hex,0,108); + + // Process the header + // Structure: http://www.fastgraph.com/help/bmp_header_format.html + if (substr($header,0,4)=="424d") + { + // Cut it in parts of 2 bytes + $header_parts = str_split($header,2); + + // Get the width 4 bytes + $width = hexdec($header_parts[19].$header_parts[18]); + + // Get the height 4 bytes + $height = hexdec($header_parts[23].$header_parts[22]); + + // Unset the header params + unset($header_parts); + } + + // Define starting X and Y + $x = 0; + $y = 1; + + // Create newimage + $image = imagecreatetruecolor($width,$height); + + // Grab the body from the image + $body = substr($hex,108); + + // Calculate if padding at the end-line is needed + // Divided by two to keep overview. + // 1 byte = 2 HEX-chars + $body_size = (strlen($body)/2); + $header_size = ($width*$height); + + // Use end-line padding? Only when needed + $usePadding = ($body_size>($header_size*3)+4); + + // Using a for-loop with index-calculation instaid of str_split to avoid large memory consumption + // Calculate the next DWORD-position in the body + for ($i=0;$i<$body_size;$i+=3) + { + // Calculate line-ending and padding + if ($x>=$width) + { + // If padding needed, ignore image-padding + // Shift i to the ending of the current 32-bit-block + if ($usePadding) + $i += $width%4; + + // Reset horizontal position + $x = 0; + + // Raise the height-position (bottom-up) + $y++; + + // Reached the image-height? Break the for-loop + if ($y>$height) + break; + } + + // Calculation of the RGB-pixel (defined as BGR in image-data) + // Define $i_pos as absolute position in the body + $i_pos = $i*2; + $r = hexdec($body[$i_pos+4].$body[$i_pos+5]); + $g = hexdec($body[$i_pos+2].$body[$i_pos+3]); + $b = hexdec($body[$i_pos].$body[$i_pos+1]); + + // Calculate and draw the pixel + $color = imagecolorallocate($image,$r,$g,$b); + imagesetpixel($image,$x,$height-$y,$color); + + // Raise the horizontal position + $x++; + } + + // Unset the body / free the memory + unset($body); + + // Return image-object + return $image; + } +} From 374c488cf136b378d4fb47c4a6add309694e9146 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Wed, 24 Feb 2010 22:26:40 -0500 Subject: [PATCH 018/362] return attachement from saveHTMLFile() --- plugins/OStatus/classes/Ostatus_profile.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugins/OStatus/classes/Ostatus_profile.php b/plugins/OStatus/classes/Ostatus_profile.php index e9c77654dd..300e38c05d 100644 --- a/plugins/OStatus/classes/Ostatus_profile.php +++ b/plugins/OStatus/classes/Ostatus_profile.php @@ -1445,5 +1445,7 @@ class Ostatus_profile extends Memcached_DataObject common_log_db_error($file, "INSERT", __FILE__); throw new ServerException(_('Could not store HTML content of long post as file.')); } + + return $file; } } From bdf0dfc30d3c44ee6117e55c1c8faef59654e596 Mon Sep 17 00:00:00 2001 From: Craig Andrews Date: Wed, 24 Feb 2010 22:29:46 -0500 Subject: [PATCH 019/362] Improve description of what the provide_name parameter means --- plugins/LdapAuthentication/README | 5 ++++- plugins/LdapAuthorization/README | 5 ++++- plugins/ReverseUsernameAuthentication/README | 5 ++++- 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/plugins/LdapAuthentication/README b/plugins/LdapAuthentication/README index 0460fb6396..c188f2dbc1 100644 --- a/plugins/LdapAuthentication/README +++ b/plugins/LdapAuthentication/README @@ -9,7 +9,10 @@ to the bottom of your config.php Settings ======== -provider_name*: a unique name for this authentication provider. +provider_name*: This is a identifier designated to the connection. + It's how StatusNet will refer to the authentication source. + For the most part, any name can be used, so long as each authentication source has a different identifier. + In most cases there will be only one authentication source used. authoritative (false): Set to true if LDAP's responses are authoritative (if authorative and LDAP fails, no other password checking will be done). autoregistration (false): Set to true if users should be automatically created diff --git a/plugins/LdapAuthorization/README b/plugins/LdapAuthorization/README index 44239d8e06..3a6d8d25e0 100644 --- a/plugins/LdapAuthorization/README +++ b/plugins/LdapAuthorization/README @@ -11,7 +11,10 @@ You *cannot* use this plugin without the LDAP Authentication plugin Settings ======== -provider_name*: name of the LDAP authentication provider that this plugin works with. +provider_name*: This is a identifier designated to the connection. + It's how StatusNet will refer to the authentication source. + For the most part, any name can be used, so long as each authentication source has a different identifier. + In most cases there will be only one authentication source used. authoritative (false): should this plugin be authoritative for authorization? uniqueMember_attribute ('uniqueMember')*: the attribute of a group diff --git a/plugins/ReverseUsernameAuthentication/README b/plugins/ReverseUsernameAuthentication/README index e9160ed9b9..57b53219e9 100644 --- a/plugins/ReverseUsernameAuthentication/README +++ b/plugins/ReverseUsernameAuthentication/README @@ -8,7 +8,10 @@ add "addPlugin('reverseUsernameAuthentication', array('setting'=>'value', 'setti Settings ======== -provider_name*: a unique name for this authentication provider. +provider_name*: This is a identifier designated to the connection. + It's how StatusNet will refer to the authentication source. + For the most part, any name can be used, so long as each authentication source has a different identifier. + In most cases there will be only one authentication source used. password_changeable*: must be set to false. This plugin does not support changing passwords. authoritative (false): Set to true if this plugin's responses are authoritative (meaning if this fails, do check any other plugins or the internal password database). autoregistration (false): Set to true if users should be automatically created when they attempt to login. From beb776cfd6b9b78d1f192d55e7e8bc311a0d00ea Mon Sep 17 00:00:00 2001 From: Craig Andrews Date: Wed, 24 Feb 2010 22:35:22 -0500 Subject: [PATCH 020/362] fix "PHP Warning: Call-time pass-by-reference has been deprecated" --- lib/authorizationplugin.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/authorizationplugin.php b/lib/authorizationplugin.php index 733b0c0656..07da9b2d12 100644 --- a/lib/authorizationplugin.php +++ b/lib/authorizationplugin.php @@ -85,7 +85,7 @@ abstract class AuthorizationPlugin extends Plugin } function onStartSetApiUser(&$user) { - return $this->onStartSetUser(&$user); + return $this->onStartSetUser($user); } function onStartHasRole($profile, $name, &$has_role) { From 489bd935ebdaf607e18f0befe2ad85ed905728ad Mon Sep 17 00:00:00 2001 From: Craig Andrews Date: Wed, 24 Feb 2010 23:20:34 -0500 Subject: [PATCH 021/362] Make LDAP connection error fatal - there really is no way to recover from that. --- plugins/LdapAuthentication/LdapAuthenticationPlugin.php | 3 +-- plugins/LdapAuthorization/LdapAuthorizationPlugin.php | 5 ++++- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/plugins/LdapAuthentication/LdapAuthenticationPlugin.php b/plugins/LdapAuthentication/LdapAuthenticationPlugin.php index 768f0fe7f6..1b5dc92e3f 100644 --- a/plugins/LdapAuthentication/LdapAuthenticationPlugin.php +++ b/plugins/LdapAuthentication/LdapAuthenticationPlugin.php @@ -199,8 +199,7 @@ class LdapAuthenticationPlugin extends AuthenticationPlugin $ldap->setErrorHandling(PEAR_ERROR_RETURN); $err=$ldap->bind(); if (Net_LDAP2::isError($err)) { - common_log(LOG_WARNING, 'Could not connect to LDAP server: '.$err->getMessage()); - return false; + throw new Exception('Could not connect to LDAP server: '.$err->getMessage()); } if($config == null) $this->default_ldap=$ldap; diff --git a/plugins/LdapAuthorization/LdapAuthorizationPlugin.php b/plugins/LdapAuthorization/LdapAuthorizationPlugin.php index 7f48ce5e1b..19aff42b8b 100644 --- a/plugins/LdapAuthorization/LdapAuthorizationPlugin.php +++ b/plugins/LdapAuthorization/LdapAuthorizationPlugin.php @@ -167,7 +167,7 @@ class LdapAuthorizationPlugin extends AuthorizationPlugin $ldap->setErrorHandling(PEAR_ERROR_RETURN); $err=$ldap->bind(); if (Net_LDAP2::isError($err)) { - common_log(LOG_WARNING, 'Could not connect to LDAP server: '.$err->getMessage()); + throw new Exception('Could not connect to LDAP server: '.$err->getMessage()); return false; } if($config == null) $this->default_ldap=$ldap; @@ -185,6 +185,9 @@ class LdapAuthorizationPlugin extends AuthorizationPlugin if($ldap==null) { $ldap = $this->ldap_get_connection(); } + if(! $ldap) { + throw new Exception("Could not connect to LDAP"); + } $filter = Net_LDAP2_Filter::create($this->attributes['username'], 'equals', $username); $options = array( 'attributes' => $attributes From bd68154772e80a98e9e5c96c6df8772ce3b2a84f Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Wed, 24 Feb 2010 23:28:41 -0500 Subject: [PATCH 022/362] Make user_group able to handle remote groups We add a local_group table to store data about local groups. It has the unique key for nickname, so /group/ looks up here. Updated DB data object classes and data files. --- classes/Local_group.php | 23 ++++++++++++++++ classes/User_group.php | 27 ++++++++++--------- classes/statusnet.ini | 58 ++++++++++++++++------------------------- db/statusnet.sql | 14 +++++++++- 4 files changed, 72 insertions(+), 50 deletions(-) create mode 100755 classes/Local_group.php mode change 100644 => 100755 classes/statusnet.ini diff --git a/classes/Local_group.php b/classes/Local_group.php new file mode 100755 index 0000000000..02663048f3 --- /dev/null +++ b/classes/Local_group.php @@ -0,0 +1,23 @@ + Date: Wed, 24 Feb 2010 23:30:14 -0500 Subject: [PATCH 023/362] fixup exe bits --- classes/Local_group.php | 0 classes/statusnet.ini | 0 2 files changed, 0 insertions(+), 0 deletions(-) mode change 100755 => 100644 classes/Local_group.php mode change 100755 => 100644 classes/statusnet.ini diff --git a/classes/Local_group.php b/classes/Local_group.php old mode 100755 new mode 100644 diff --git a/classes/statusnet.ini b/classes/statusnet.ini old mode 100755 new mode 100644 From ddc3671b6aeb0b543d261251a1740a53469684c3 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Wed, 24 Feb 2010 23:32:20 -0500 Subject: [PATCH 024/362] recover user_openid tables, which got lost in generation --- classes/statusnet.ini | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/classes/statusnet.ini b/classes/statusnet.ini index d483f47414..7444306f00 100644 --- a/classes/statusnet.ini +++ b/classes/statusnet.ini @@ -1,4 +1,3 @@ - [avatar] profile_id = 129 original = 17 @@ -606,6 +605,27 @@ uri = 2 [user_group__keys] id = N +[user_openid] +canonical = 130 +display = 130 +user_id = 129 +created = 142 +modified = 384 + +[user_openid__keys] +canonical = K +display = U + +[user_openid_trustroot] +trustroot = 130 +user_id = 129 +created = 142 +modified = 384 + +[user_openid__keys] +trustroot = K +user_id = K + [user_location_prefs] user_id = 129 share_location = 17 From 44cb35469834316962ec6529a377975acdb3109b Mon Sep 17 00:00:00 2001 From: Sarven Capadisli Date: Thu, 25 Feb 2010 11:20:36 +0100 Subject: [PATCH 025/362] Added external, play, pause icons to main icons file --- theme/base/images/icons/icons-01.gif | Bin 3870 -> 3740 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/theme/base/images/icons/icons-01.gif b/theme/base/images/icons/icons-01.gif index 6f284f023ee7c7c1fef480c26e7ccfd2b27ba32c..be884ff48944d2ec4694f426ada7644b0aa0e101 100644 GIT binary patch delta 614 zcmV-s0-61u9-JKtM@dFFIbj+ARtd2R5(5HO39}vpI0=8kM`ix7fDG7x3wUV$P(l&7 zQ4<(K6G%c8ctH%Pfe_e15BLNZC_@ncH)PXh!|~9#fMVGaLreSk~oQ!SbjyQgpfCWm4}3R z7m1sQiJh2aKqPw0auBv*ov=xyS5V|=EKYln4=mSxrG zTterJkfkP& z`iOsf#pr|drH%@@kPPWz?09stD2ktFfy}3Y@3=(y*pC>Lk=eF^9NCZdSaBc8iJoVW z#+Z-|nUX5GlEL+ma3_*8sDzI<*pV5TktYc6X=h4X_qjWmtzT-5gCev$&@8WUjYFCI~bNB A3jhEB delta 745 zcmV+%IlvEuzyTp30vfO&8Bl>2P=Xo&0wAyg z@X!w_$N?<~f+XmGC_oLBLkJ$Qg9M@h3#b7!5C&jS4V6<4{9pq_I3Pw?f+}!>G_(sS zU;`i!g(!c4gg)Q`8qfpvP&vC$0$a#{F6apTP!F*n17i3!Nic&A=z@e$Ibgs6Z@2^w z$b}T40d?39ZomOYumV014q!Ni{(LwQe#j4jNCo}i2pWI_4445VxF8x32>oyaN#Hi& zPy&-^ffbMemUsj8;5L=h0!C}P9 zIE5L&iw8K2#8`~R=pn+#eBSnL|F%T5C0&ZQdZDFI)n#4PXpKZijnsyCq(^0L#COz} zbW|sCly{8gc#i0Jj3ahcMP*fX)K)w-cj@u1&~t3aLt#F7I~2vS$@eFeid1H90_^j=aFrPdy!X? zA-Q*vhFZt>aKk5lNtcl@8UB+p`E(mOk{vmYN_TJA_g~vKa8@UcJ(XkBc$2wDazts8 z;#ibMxpXtxlur4S=vI@=2$B#PdRaz$qlbTWSx1sL#%Eo*l}CAy$|r9~Cv=83m44=t zP`Q?D*_Og4m1pTf{@@QJ`2=%mmvm{DrFNHd*_V4smwkDcWhR(-*=&RvZ-)tSiD{U5 z36hJcjCt3QYU!4gS(%oZWN^80Xz6)%=|PQ&mVRlIc=?%fi9w-BUVeF+gBh6hrkYKV z$(ctPl9PFvv{{?B8FjLWlOkzdfti?c*_(%XLacc~rzxDnS(w?zmx4){#z~yYiJFbs bo6s4Z#o0u_8JuARoGk|#n=eUU0RaFzG(9`- From 9ef7eb036ce795fafe422096f5e1fb9f70fb05d0 Mon Sep 17 00:00:00 2001 From: Sarven Capadisli Date: Thu, 25 Feb 2010 10:38:55 +0000 Subject: [PATCH 026/362] Moved common icons from Realtime plugin to core icons file --- plugins/Realtime/realtimeupdate.css | 9 --------- theme/default/css/display.css | 15 ++++++++++++++- theme/identica/css/display.css | 17 +++++++++++++++-- 3 files changed, 29 insertions(+), 12 deletions(-) diff --git a/plugins/Realtime/realtimeupdate.css b/plugins/Realtime/realtimeupdate.css index 31e7c2ae66..f43c97de52 100644 --- a/plugins/Realtime/realtimeupdate.css +++ b/plugins/Realtime/realtimeupdate.css @@ -64,18 +64,9 @@ float: left; } #realtime_play { -background: url(icon_play.gif) no-repeat 47% 47%; margin-left: 4px; } -#realtime_pause { -background: url(icon_pause.gif) no-repeat 47% 47%; -} - -#realtime_popup { -background: url(icon_external.gif) no-repeat 0 30%; -} - #queued_counter { float:left; line-height:1.2; diff --git a/theme/default/css/display.css b/theme/default/css/display.css index deb985909e..8ae2b40141 100644 --- a/theme/default/css/display.css +++ b/theme/default/css/display.css @@ -197,7 +197,10 @@ button.minimize, .entity_clear input.submit, .entity_flag input.submit, .entity_flag p, -.entity_subscribe input.submit { +.entity_subscribe input.submit, +#realtime_play, +#realtime_pause, +#realtime_popup { background-image:url(../../base/images/icons/icons-01.gif); background-repeat:no-repeat; background-color:transparent; @@ -363,6 +366,16 @@ background-position: 5px -2171px; .entity_subscribe input.reject { background-position: 5px -2237px; } +#realtime_play { +background-position: 0 -2308px; +} +#realtime_pause { +background-position: 0 -2374px; +} +#realtime_popup { +background-position: 0 -1714px; +} + /* NOTICES */ .notice .attachment { diff --git a/theme/identica/css/display.css b/theme/identica/css/display.css index 0e54d82e2f..737e3a1032 100644 --- a/theme/identica/css/display.css +++ b/theme/identica/css/display.css @@ -81,7 +81,8 @@ background-color:transparent; input:focus, textarea:focus, select:focus, .form_notice.warning #notice_data-text, .form_notice.warning #notice_text-count, -.form_settings .form_note { +.form_settings .form_note, +.entity_actions .dialogbox .form_data input:focus { border-color:#9BB43E; } input.submit { @@ -197,7 +198,10 @@ button.minimize, .entity_clear input.submit, .entity_flag input.submit, .entity_flag p, -.entity_subscribe input.submit { +.entity_subscribe input.submit, +#realtime_play, +#realtime_pause, +#realtime_popup { background-image:url(../../base/images/icons/icons-01.gif); background-repeat:no-repeat; background-color:transparent; @@ -362,6 +366,15 @@ background-position: 5px -2171px; .entity_subscribe input.reject { background-position: 5px -2237px; } +#realtime_play { +background-position: 0 -2308px; +} +#realtime_pause { +background-position: 0 -2374px; +} +#realtime_popup { +background-position: 0 -1714px; +} /* NOTICES */ .notice .attachment { From b33f9a2d13edc565fab2b7447414071630f2b9b1 Mon Sep 17 00:00:00 2001 From: Sarven Capadisli Date: Thu, 25 Feb 2010 11:42:25 +0100 Subject: [PATCH 027/362] Added author, license information for the icons that are in base theme --- theme/base/images/icons/README | 54 ++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 theme/base/images/icons/README diff --git a/theme/base/images/icons/README b/theme/base/images/icons/README new file mode 100644 index 0000000000..ea582149f5 --- /dev/null +++ b/theme/base/images/icons/README @@ -0,0 +1,54 @@ +/** + * @author Paul Jarvis http://code.google.com/p/twotiny/ + * @license http://dev.perl.org/licenses/ Artistic License/GPL + * @note + White left arrow with green background + White right arrow with green background + White clip with green background + White heart with green background + White reply with green background + White garbage with green background + White pencil with green background + White envelope with green background + White speech bubble with green background + White shield with green background + White asterisk with green background + White x with green background + White plus with green background + White minus with green background + White skull with green background + White recycle with green background + White external with green background + White key with green background + White flag with green background + White checkmark with green background + White reject with green background + White play with green background + White pause with green background + */ + + +/** + * @author Sarven Capadisli + * @copyright 2008-2010 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 + * @link http://status.net/ + * @note + Green clip with transparent background + Green heart with white background + White person with tie with green background + White sherif badge with green background + White boxes with green background + White speech bubble broken with green background + Green recycle with transparent background + Green pin with white background + White pin with green background + White underscore with green background + White C with green background + */ + +Created by various authors +* FOAF icon from http://iandavis.com/2006/foaf-icons/ with Public Domain license +* Atom feed icon from http://intertwingly.net/wiki/pie/Icon with Public Domain license +* RSS feed icon from http://www.feedicons.com/ (Mozilla, Microsoft, Matt Brett) with MPL/GPL/LGPL tri-license +* Processing icon from/by Unknown with Unknown license //FIXME From 58d8b258cf08155a0908fd9ff52646a805d01ea9 Mon Sep 17 00:00:00 2001 From: Sarven Capadisli Date: Thu, 25 Feb 2010 11:43:14 +0100 Subject: [PATCH 028/362] Removed dangling geo icon --- theme/base/images/icons/icon_geo.png | Bin 894 -> 0 bytes 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 theme/base/images/icons/icon_geo.png diff --git a/theme/base/images/icons/icon_geo.png b/theme/base/images/icons/icon_geo.png deleted file mode 100644 index 8df245699d4d0240e58e67287e0a043f0fcbe75b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 894 zcmV-^1A+XBP)85sZqh!LpyCJO@t7b61$!z%`c`3!4;%C`YA2pnc(`wwPa_4NFI zEiMi$0g(a%kipA=7$AT^X59V8z@WqdGy`Zq1JDu%w;w+kj&pD@a01yZKnvKofeZl| z83y~uj~U=VLW1Gr`}Yhi|AB1(|Nj{t*Vi-Ljf-RW3UuDbD_0mky?DX!8z{&0mVsfx zbu%*tHlPWd*47L!Po89Wd+#2@XQ*`m0mQg~fuTu&fgzcRf#Dw$NC2b@i2pG#e0#{i zpvS_-z)<@OD8L5A!nU>y5&;1W&x?zJeqy-B!U~mOf$COmYh&QIu>rgDZE-OhSOLf` z=O<4X*rlbx60g^;Wq7)DDaaZIhI>6d|9^k@@c)#q?*Bg@KY{~kCoq7v12HhL9y2lh z{>{L`&(HAt@@0lIT3QTWu3lyM3)J`%;!tovFWU%`Cm*MNJTMUOZHNpOeI-H5| z7|GcnEVaPWL)?N5+~wB(y(Eo#KeiX$wVF0MdM;xL6TxUuRcj%a+7zHckaFCoOjhr z;5-Fbo@AlQq1DJeuItd*WjY*&c|sN#vw)HWPQT>icqCS32vOGz17^32BU+YgxA6_} zFMwTQV>X$R)ZVf?M@^PW*sfLq-^Wg)fg~;bKeNdMiEI`R)cS2SdKDO?OcU$*Jmyqr zMxQq_85CMAtZ3R2_|fa(k)Or)Jou7sXuB9C*KFd@wo!2$9CJ*AO5T(AxL(J?b;APh z{XV7=>_==+!qF8)Yyn;@3wPWU(WSy%tJQGLLO1C&o;#foFpq@Dg$B-kxm-9H44_gh zh+>g*TP(sQ??855NC!k?Zp>3mEH^J_TfhmSn|$~aNR Date: Thu, 25 Feb 2010 12:08:49 +0100 Subject: [PATCH 029/362] Updated cloudy theme --- theme/cloudy/css/display.css | 37 ++++++++++++++++++++++++++++++++++-- 1 file changed, 35 insertions(+), 2 deletions(-) diff --git a/theme/cloudy/css/display.css b/theme/cloudy/css/display.css index 726062e473..285c2ad836 100644 --- a/theme/cloudy/css/display.css +++ b/theme/cloudy/css/display.css @@ -1628,15 +1628,23 @@ button.close, .form_user_unsubscribe input.submit, .form_group_join input.submit, .form_user_subscribe input.submit, +.form_remote_authorize input.submit, .entity_subscribe a, .entity_moderation p, .entity_sandbox input.submit, .entity_silence input.submit, .entity_delete input.submit, .notice-options .repeated, -.form_notice a#notice_data-geo_name, .form_notice label[for=notice_data-geo], -button.minimize { +button.minimize, +.form_reset_key input.submit, +.entity_clear input.submit, +.entity_flag input.submit, +.entity_flag p, +.entity_subscribe input.submit, +#realtime_play, +#realtime_pause, +#realtime_popup { background-image:url(../../base/images/icons/icons-01.gif); background-repeat:no-repeat; background-color:transparent; @@ -1899,6 +1907,31 @@ background-position: 5px -1445px; .entity_delete input.submit { background-position: 5px -1511px; } +.form_reset_key input.submit { +background-position: 5px -1973px; +} +.entity_clear input.submit { +background-position: 5px -2039px; +} +.entity_flag input.submit, +.entity_flag p { +background-position: 5px -2105px; +} +.entity_subscribe input.accept { +background-position: 5px -2171px; +} +.entity_subscribe input.reject { +background-position: 5px -2237px; +} +#realtime_play { +background-position: 0 -2308px; +} +#realtime_pause { +background-position: 0 -2374px; +} +#realtime_popup { +background-position: 0 -1714px; +} /* NOTICES */ From 3299078e33a93e7053573979b9358a736a5442c7 Mon Sep 17 00:00:00 2001 From: Sarven Capadisli Date: Thu, 25 Feb 2010 12:35:15 +0100 Subject: [PATCH 030/362] Updated pigeonthoughts theme --- theme/pigeonthoughts/css/base.css | 122 ++++++++++++- theme/pigeonthoughts/css/display.css | 247 ++++++++++++++++++++++----- theme/pigeonthoughts/logo.png | Bin 6389 -> 10107 bytes 3 files changed, 324 insertions(+), 45 deletions(-) diff --git a/theme/pigeonthoughts/css/base.css b/theme/pigeonthoughts/css/base.css index 4b30710fb6..2814260bd3 100644 --- a/theme/pigeonthoughts/css/base.css +++ b/theme/pigeonthoughts/css/base.css @@ -232,6 +232,17 @@ font-weight:bold; address img + .fn { display:none; } +address a { +text-decoration:none; +} +address .poweredby { +float:left; +clear:left; +display:block; +position:relative; +top:7px; +margin-right:-47px; +} #header { width:98.5%; @@ -486,13 +497,59 @@ margin-bottom:7px; margin-left:18px; float:left; } -#form_notice .error { +.form_notice .error, +.form_notice .success { float:left; clear:both; -width:96.9%; +width:81.5%; margin-bottom:0; line-height:1.618; } +.form_notice #notice_data-attach_selected code { +float:left; +width:80%; +display:block; +overflow:auto; +margin-right:2.5%; +font-size:1.1em; +} +.form_notice #notice_data-attach_selected button.close { +float:right; +font-size:0.8em; +} + +.form_notice #notice_data-geo_wrap label, +.form_notice #notice_data-geo_wrap input { +position:absolute; +top:25px; +right:4px; +left:auto; +cursor:pointer; +width:16px; +height:16px; +display:block; +} +.form_notice #notice_data-geo_wrap input { +visibility:hidden; +} +.form_notice #notice_data-geo_wrap label { +font-weight:normal; +font-size:1em; +margin-bottom:0; +text-indent:-9999px; +} + +button.close, +button.minimize { +width:16px; +height:16px; +text-indent:-9999px; +padding:0; +border:0; +text-align:center; +font-weight:bold; +cursor:pointer; +} /* entity_profile */ .entity_profile { @@ -850,6 +907,67 @@ font-size:1.025em; .notice div.entry-content .timestamp { display:inline-block; } +.entry-content .repeat { +display:block; +} +.entry-content .repeat .photo { +float:none; +margin-right:1px; +position:relative; +top:4px; +left:0; +} + +.dialogbox { +position:absolute; +top:-1px; +right:-1px; +z-index:9; +float:none; +padding:11px; +border-radius:7px; +-moz-border-radius:7px; +-webkit-border-radius:7px; +border-style:solid; +border-width:1px; +} + +.dialogbox legend { +display:block !important; +margin-right:18px; +margin-bottom:18px; +} + +.dialogbox button.close { +position:absolute; +right:3px; +top:3px; +} + +.dialogbox .form_guide { +font-weight:normal; +padding:0; +} + +.dialogbox .submit_dialogbox { +font-weight:bold; +text-indent:0; +min-width:46px; +} +.dialogbox input { +padding-left:4px; +} +.dialogbox fieldset { +margin-bottom:0; +} + +#wrap form.processing input.submit, +.entity_actions a.processing, +.dialogbox.processing .submit_dialogbox { +cursor:wait; +outline:none; +text-indent:-9999px; +} .notice-options { position:relative; diff --git a/theme/pigeonthoughts/css/display.css b/theme/pigeonthoughts/css/display.css index 2b91741825..dfeb01b48a 100644 --- a/theme/pigeonthoughts/css/display.css +++ b/theme/pigeonthoughts/css/display.css @@ -60,6 +60,36 @@ input.submit, color:#FFFFFF; } +.dialogbox .submit_dialogbox, +input.submit, +.form_notice input.submit { +background:#AAAAAA url(../../base/images/illustrations/illu_pattern-01.png) 0 0 repeat-x; +text-shadow:0 1px 0 #FFFFFF; +color:#000000; +border-color:#AAAAAA; +border-top-color:#CCCCCC; +border-left-color:#CCCCCC; +} +.dialogbox .submit_dialogbox:hover, +input.submit:hover { +background-position:0 -5px; +} +.dialogbox .submit_dialogbox:focus, +input.submit:focus { +background-position:0 -15px; +box-shadow:3px 3px 3px rgba(194, 194, 194, 0.1); +-moz-box-shadow:3px 3px 3px rgba(194, 194, 194, 0.1); +-webkit-box-shadow:3px 3px 3px rgba(194, 194, 194, 0.1); +text-shadow:none; +} + +.form_notice label[for=notice_data-geo] { +background-position:0 -1780px; +} +.form_notice label[for=notice_data-geo].checked { +background-position:0 -1846px; +} + a, div.notice-options input, .form_user_block input.submit, @@ -158,16 +188,69 @@ color:#333333; color:#000000; } #form_notice label[for=notice_data-attach] { -background:transparent url(../../base/images/icons/twotone/green/clip-01.gif) no-repeat 0 45%; +background-position:0 -328px; } #form_notice #notice_data-attach { opacity:0; } -#form_notice.processing #notice_action-submit { +.form_notice label[for=notice_data-attach], +#export_data li a.rss, +#export_data li a.atom, +#export_data li a.foaf, +.entity_edit a, +.entity_send-a-message a, +.entity_nudge p, +.form_user_nudge input.submit, +.form_user_block input.submit, +.form_user_unblock input.submit, +.form_group_block input.submit, +.form_group_unblock input.submit, +.form_make_admin input.submit, +.notice .attachment, +.notice-options .notice_reply, +.notice-options form.form_favor input.submit, +.notice-options form.form_disfavor input.submit, +.notice-options .notice_delete, +.notice-options form.form_repeat input.submit, +#new_group a, +.pagination .nav_prev a, +.pagination .nav_next a, +button.close, +.form_group_leave input.submit, +.form_user_unsubscribe input.submit, +.form_group_join input.submit, +.form_user_subscribe input.submit, +.form_remote_authorize input.submit, +.entity_subscribe a, +.entity_moderation p, +.entity_sandbox input.submit, +.entity_silence input.submit, +.entity_delete input.submit, +.notice-options .repeated, +.form_notice label[for=notice_data-geo], +button.minimize, +.form_reset_key input.submit, +.entity_clear input.submit, +.entity_flag input.submit, +.entity_flag p, +.entity_subscribe input.submit, +#realtime_play, +#realtime_pause, +#realtime_popup { +background-image:url(../../base/images/icons/icons-01.gif); +background-repeat:no-repeat; +background-color:transparent; +} + + +#wrap form.processing input.submit, +.entity_actions a.processing, +.dialogbox.processing .submit_dialogbox { background:#FFFFFF url(../../base/images/icons/icon_processing.gif) no-repeat 47% 47%; -cursor:wait; -text-indent:-9999px; +} +.notice-options .form_repeat.processing { +background-image:none; } #content, @@ -190,6 +273,12 @@ color:#8F0000; text-shadow: rgba(194,194,194,0.5) 1px 1px 1px; } +.processing { +background-image:url(../../base/images/icons/icon_processing.gif); +background-repeat:no-repeat; +background-position:47% 47%; +} + .error { background-color:#F7E8E8; } @@ -197,6 +286,14 @@ background-color:#F7E8E8; background-color:#EFF3DC; } +button.close { +background-position:0 -1120px; +} +button.minimize { +background-position:0 -1912px; +} + + #anon_notice { color:#000000; } @@ -207,80 +304,137 @@ background-repeat:no-repeat; background-position:0 45%; } #export_data li a.rss { -background-image:url(../../base/images/icons/icon_rss.png); +background-position:0 -130px; } #export_data li a.atom { -background-image:url(../../base/images/icons/icon_atom.png); +background-position:0 -64px; } #export_data li a.foaf { -background-image:url(../../base/images/icons/icon_foaf.gif); +background-position:0 1px; } -.entity_edit a, -.entity_send-a-message a, -.form_user_nudge input.submit, -.form_user_block input.submit, -.form_user_unblock input.submit, -.form_group_block input.submit, -.form_group_unblock input.submit, -.entity_nudge p, -.form_make_admin input.submit { -background-position: 0 40%; -background-repeat: no-repeat; -background-color:transparent; +#export_data li a.rss { +background-position:0 -130px; } +#export_data li a.atom { +background-position:0 -64px; +} +#export_data li a.foaf { +background-position:0 1px; +} + .form_group_join input.submit, -.form_group_leave input.submit +.form_group_leave input.submit, .form_user_subscribe input.submit, -.form_user_unsubscribe input.submit { +.form_user_unsubscribe input.submit, +.form_remote_authorize input.submit, +.entity_subscribe a { background-color:#8F0000; color:#FFFFFF; } -.form_user_unsubscribe input.submit, .form_group_leave input.submit, -.form_user_authorization input.reject { +.form_user_unsubscribe input.submit { +background-position:5px -1246px; background-color:#87B4C8; } +.form_group_join input.submit, +.form_user_subscribe input.submit, +.form_remote_authorize input.submit, +.entity_subscribe a { +background-position:5px -1181px; +} .entity_edit a { -background-image:url(../../base/images/icons/twotone/green/edit.gif); +background-position: 5px -719px; } .entity_send-a-message a { -background-image:url(../../base/images/icons/twotone/green/quote.gif); +background-position: 5px -852px; } +.entity_send-a-message .form_notice, +.entity_moderation:hover ul, +.dialogbox { +box-shadow:3px 7px 5px rgba(194, 194, 194, 0.7); +-moz-box-shadow:3px 7px 5px rgba(194, 194, 194, 0.7); +-webkit-box-shadow:3px 7px 5px rgba(194, 194, 194, 0.7); +} + .entity_nudge p, .form_user_nudge input.submit { -background-image:url(../../base/images/icons/twotone/green/mail.gif); +background-position: 5px -785px; } .form_user_block input.submit, .form_user_unblock input.submit, .form_group_block input.submit, .form_group_unblock input.submit { -background-image:url(../../base/images/icons/twotone/green/shield.gif); +background-position: 5px -918px; } .form_make_admin input.submit { -background-image:url(../../base/images/icons/twotone/green/admin.gif); +background-position: 5px -983px; +} +.entity_moderation p { +background-position: 5px -1313px; +} +.entity_sandbox input.submit { +background-position: 5px -1380px; +} +.entity_silence input.submit { +background-position: 5px -1445px; +} +.entity_delete input.submit { +background-position: 5px -1511px; +} +.form_reset_key input.submit { +background-position: 5px -1973px; +} +.entity_clear input.submit { +background-position: 5px -2039px; +} +.entity_flag input.submit, +.entity_flag p { +background-position: 5px -2105px; +} +.entity_subscribe input.accept { +background-position: 5px -2171px; +} +.entity_subscribe input.reject { +background-position: 5px -2237px; +} +#realtime_play { +background-position: 0 -2308px; +} +#realtime_pause { +background-position: 0 -2374px; +} +#realtime_popup { +background-position: 0 -1714px; } /* NOTICES */ .notice .attachment { -background:transparent url(../../base/images/icons/twotone/green/clip-02.gif) no-repeat 0 45%; +background-position:0 -394px; } #attachments .attachment { background:none; } .notice-options .notice_reply { -background:transparent url(../../base/images/icons/twotone/green/reply.gif) no-repeat 0 45%; +background-position:0 -592px; } .notice-options form.form_favor input.submit { -background:transparent url(../../base/images/icons/twotone/green/favourite.gif) no-repeat 0 45%; +background-position:0 -460px; } .notice-options form.form_disfavor input.submit { -background:transparent url(../../base/images/icons/twotone/green/disfavourite.gif) no-repeat 0 45%; +background-position:0 -526px; } .notice-options .notice_delete { -background:transparent url(../../base/images/icons/twotone/green/trash.gif) no-repeat 0 45%; +background-position:0 -658px; } +.notice-options form.form_repeat input.submit { +background-position:0 -1582px; +} +.notice-options .repeated { +background-position:0 -1648px; +} + .notices div.entry-content, .notices div.notice-options { @@ -319,19 +473,26 @@ background-color:rgba(200, 200, 200, 0.300); /*END: NOTICES */ #new_group a { -background:transparent url(../../base/images/icons/twotone/green/news.gif) no-repeat 0 45%; +background-position:0 -1054px; } -.pagination .nav_prev a, -.pagination .nav_next a { -background-repeat:no-repeat; -border-color:#000000; -} .pagination .nav_prev a { -background-image:url(../../base/images/icons/twotone/green/arrow-left.gif); -background-position:10% 45%; +background-position:10% -187px; } .pagination .nav_next a { -background-image:url(../../base/images/icons/twotone/green/arrow-right.gif); -background-position:90% 45%; +background-position:105% -252px; } +.pagination .nav .processing { +background-image:url(../../base/images/icons/icon_processing.gif); +box-shadow:none; +-moz-box-shadow:none; +-webkit-box-shadow:none; +outline:none; +} +.pagination .nav_next a.processing { +background-position:90% 47%; +} +.pagination .nav_prev a.processing { +background-position:10% 47%; +} + diff --git a/theme/pigeonthoughts/logo.png b/theme/pigeonthoughts/logo.png index 550d373fef4005342c4e1daa7cb2c115db54f46c..cf1839194a6d8e91d3ec988abe7d5be227143d28 100644 GIT binary patch literal 10107 zcmV->CxqCEP)edG_<3duLyyku z%7~rG;8IqQa-5v1zFqhZ?N^&mnRhStEA_`_@L8$5W{tXUhjIIRsYYpIikSdN&wReu>N?B;P=zGIig6#{sjWo zF14fEtYVeZ3{}t(92fq^9pgZKU%Qf)D$XoZ&!mQD2HM*4cw;Mowz(ZzTfvmx$|vAu z(Ddz2A+_WxDUAQM7(Lxu>Be85yAJi`E)W5+l!3?ghVh-34j`uK3+i5w`C}#Py&s0d zPZ_?;XHG9Xttk&E*aq_ZL4Dq4s@xNy5l@2r01i2mxofM4TDT8D<)oEIMmo9I53cV6 z2V23QV{FVI3t!3OCWqquED?QS{^rYT%FuS14<ME=Js9 zm?~@&@!5{nX5&oKx9GI>OaP&ySs)x1>%B3Nik1o?ldkYYYNJlrAV9^CWQO3BWH|;B zgZ5J1E#jrInb-)!;gIO-l>lVMlkpMjY5R6jH3W01t>R%~x?+Cl+kR^!JT?mi0fN%N zVg@8LbjkQ(&oI8Za{vHfQUpvU6@q|SUAus!wX^e%CjCqT)@cF+D|Mx-TtYDk5CCF8X9+`>&{GnrgrTQWQ$1kYW6E^uM-G40 zzzm9vwvJvI3_>2!gY|i7t=ob)%j)?N>!S4@6j{ws1R#iVy)_+n34$2cZ}j3@FASjA zWrtZ+U@<9Bg@XN~W4`JV+smD8ZD&*{JY9fA!62wD1E>SaggSFrxyfov{qOQMMQ1yl zmbA_-8O#jHfRqfD43i|NLcpXlEK*h3fpc_2o|BAg|B#4_9mLwdxWZM>&G?Iq?d`or z3qvmSUW{gRAmSJ&){8AP&(E(dvZV|UIabPoFfqS?F--?& z51>WZ2B%$-#cW2E$AK!31FMVea9C6bLVN{SZv#2sz8%8fUazVLqt;|{qOGFR^;=(E zS-rz)g`m0iXW~p+RS2YYWwnxZOFU;Tz!4)aFk0@@$+Jb1sT00zsf zXUP09KulmTz&y82W_V8~6oCPm|9z(6Im3@g5QLz2q%?D_Mu#5vI?j^ko;$)F9RQww z8uei>S!MKqq8lIH;B`A}Rtt(9R;($uVT{)07DMQ4LD;YCVFgVX=B;U){J%>S$l(lrB8XBaZiD`C#l zQ3iROBl&500!T{+szQGiiCF&<1J!D_p4$8Rcw@?C)UKg#^bJoPsC3SSwzw`KR0aO3 zGT7X1q^u6OJVjVnR*Vk%0K&X+Tse41`&4;_ z>l(_)2vSNIMp{Nl|Ced6B^gpOQYjr%lSy!5ElSN-!C!GF>Z?AAy0SkWC==>Lz6Rij84zOtjvMJU?8eV z%<2-FT-*r_hG&f3`zLR!^Oe8&$_qnAdrOPN8R)TSxp^zUzh2!3W0PIAbe5DmOd`{p zvsqj|5oZQ;T_QTo*s|`=adz#y;k0>?&i~T;P$uLtBo0sP#?IdRv44CAOeT>7B}>i? zzaaCS%!FFqFkUcHvCFV=IE5XM!B*yA2bAIHi22~`;Rmm)Uwh4D(l|1aB|<{i(K8qx z8VS#|oORZkt^o|_9nELfFwXMySPa6Y&0+{{g*1GvsKjPsgCPx>ZfJvHu3J76>B2Qm^t*F@6W-=)`x055|dGF)1DXjP0glo>1CMOzNm|UytUkpMoG0h?LAL3na?ZsIs34 zgtS7h2o-iqF>bx=KVehX%z?Hb2}r-sgx#}*a5m+*77=>GV8!e<4n^V*CJdSLQcjb= z@B0r;{_LeU-Y<-@4L;xMFMHQ%ld*8M_U%U=G1_lwk$()Ube09Mn1RX3CZRiuifnfC zbu2R(pTr#Bk;n*;3`(uSWlf*XggXTU0Xk;7NB{{4p}=Y>!VT~ISLix2V~lCOg{*om z^H{au_aYV(z5eux>ifX1xX!vJcg`j?06;9EO=&POpBVC zCU9D6vBuj7kr(<-G$AGk5GiOn>(B7go*zMwOou<7<8*meZBv!v{>r9su&tAV06dd% z-b+b~AsH|18{WCPe9ec#;jjku8tpAU*-k+)f@lLoYY=GfZ6R+sOdSB81`zgo836j~ z+qpHEyF^|A)=9GZK9Jk5Q%Z9*N+Y{am_UL7Ng!e{F{I9DsCjpWgr_Icy(w*x2n2%5 zUV(Mx@4)`iooO*u@?xz^3D^RwJ&E67B>lynjS*J%m@NH=rlwQVGq)vFs|NHM^?iL@ zPelF}P)E3#{NAv5d^}0Okg#k8#$zc0fU3zPCmj~vw$sO*cNEFs9v7pzLuNpBS_5o( zkoQXghiw%JAvbV_pi9pFmoTJ+G>|6k<&BGy^b?dga#`aV@7B!tBIkyQ7UGcW#t&tt zJh!&8HymauY1N_W*heG6bubGme{YZ~o0=47)Tc&W5%bipWZl3M_*7~%+CI8Zf5DQn z_o*@K%ZK8rC-%QS`khd3>elWTqh7x^Y4Z2hs~yeFN)UK6?s&yxfdOH`Q#YYFGs+8CqOJDz1YB!D3f8nH}bf z6EmqlKhS+xj=ny&b8JuKpRnHjtiQhA*zWH&TG}B`NAI<42BB5b+*)SlXIh5jOsL9e zOaK&80TMuFiYJ{!Y}?F5V7U-fLI^0TfJr4J6S{rEm7;8N3AD0uU*}UDJ06iO=%p+7 z?Gt9#xH8?VU74!3eQnEoHq~ge8iu+LqwAqPNXE29&+jUCptRa8Hk?;^L3wTQQwMs& z&qN}zk6@RtzYQTH2*_Z16lw)n$7>0pCIst{Qsw|Pmq=w(C{spfVu+I%BnW_RB-5Zu z4?sgz1r(Ejq9`z_0zxIk<0&-{%?uDa?}Q!%sIsX^#70L|ZA|%Cz?DtZ=*2@9ho? zh}4OaRVvrF%(=B-8kZtAI;tv)@9$um zADq_p_oF&J!-7vE&h_?tEK0Xdta6M^7Uuy)${GS?rW(_nrkPQ;4^QsFx>e_bS-feU z#XP4|4ToQbtJn&YqCioz;ZHzO)1S4J0l_?(7T)Gc?+2)_x>`k2`wJAGd+H|?*|*p)aO>xA2FgVSw=(`|*j z$O^mD0*h6JstUy88bCZa5w+yj;sgQe0~Ajxbq+JW%90m?iU7qVAPt6=5^%0>Kxtz$ zN*gYPW6fF6XOT`Il!Z-UXc7#V6iGjhRYWT%0TDb+yw-BySlrhK-cVwdQ<9&PQeFq5 z+;AFYx@gupy*ltHE^7REdcawnxOmMO1(aFhjp1kE^dw-hSeD#BKAU7)rLwDZ(8_nT zf?IkeHZQ z>L*IAEIuErs`>UD;VBhDHAi@ zk~zd#;?8rk8raATLWA+#EB}e9$PgqOkkU9VaOHa{2?IM{|0ZljGe$m1432PfKrs)ODIb2duRD7yyt=Y;XV88 zC8LXG;4V~G3;$^_&bT~07J+-iV3^HPFn&-t01X(KdF}*;st|;d!vFmKjSp|Gzkcsrnw~1qTb5xEyET6{%<+& z1R+2|~Sw09Cm$zU@8BSoO7x*GMj z-MZACWhpXmsmvq}E5JIIa2N!8Je@M0NKQcFKg<>tuA(%EvS3QTx4`ALz~#2W;)-EM z=q|jt_Z!fS1eo;<$kN=2k^OH#vJS}_BJoi?{_>p|ocSJ9)6p-VB_k5m9*4zkjEr=0 zYY^NE5UQ&M*f?iVoG1cy@46uk7IBQSNY;A^1smUe7xFVot-sgANG3^OF-qV3H>pQT%{0dZf(j+*$hEUfN zI57Tu>>2qPG};fva_kcWHO+vc;MG`ig#G?>tZe}>r0c{?s~7v3;+h)Rz23aptH;3# z1YuR60m7t0F1%SAAY~2U0}xsP*710)mhGMLVyACrHq3ubM$tn>ULsPojI^*6A(s%Q zI3|tXVP^Ctyn4tCmTH>3u?DCaZ)Vb=9A{@|24L_w27q=)8dP~Gs9cQKIm*g%9O`(+ zG%35kqQK@ULG1A1#meKFsMe`>U?mhDS37QRft;{a8D?9_ljD=)-&M6WFsYVflsg%^ zoQ1|y&}j@hg<*&(7%~CL`Uw?CQ3Y6m71i@Vm2Txl3#P^6Z%VvnX6T8;60!pf3@m?v zblJsfA~1GzNJmXd-&}3`^uGPCKj#wlP=)1fDUYfOSS+TqCc~AB-JmG4*fBE)h5(tq zK?EHqpqLqnsVO99W|pWQF;)VV>sJKQ6AOtWO*b0J;nhj2l6r6N>o2`hZaW`VllyHc zkHcZUsIDeOUT-tC1wriqW>l3WcyO`()eAc73Q@NBLb7c8%Ne%F)FR#?wRh3o8-GRg0F%73 z7O1M4Uc8Yvr;Y@{Fyt1K5&c$VO_hwU9^q&Q$ma3Hg(9|@ZHmuG6?!GJL&e~Z9a#I$ zi(xA*$=$*-muhB1Uj}qi*D=`9f#3YyXP5MFilBRxgVvYgm@qn)xyL$PCXP`sn7+4z zzuYT|^l8(sUBk_)$$aO!%1zf-ul6ZcixqL6fW}kMj5t!pY+8mO6$FARY#?a^3=5*s z1cnbCz)W;(cRUq+5rlC9+X1Rk74tTS)8X=X>~MJmNTeHC*Cht_g>UzidVe~&qeJ)i zg3(v692}p%&|YHst)4O{8P)PcQi7}04hS>O|Lo_n={+|BBCW#brfOt>Wh9d5`u_LO z`K@ojNEy(R3o}?^9E__7lpZ`da|fW)3b0Nh@nTRLf^=y|hX|K@1*V}4ys^J3rO#Xi ziA&s$(u=JY=W3h94x7ym0zuQ0FmwZv*fip)SU8@HyebX-F{@d5tlYb1(CUiFp`i>( zx1|X2Nz-J^e2LET{X(Ie%2&Bf-byEk2;sxA2}^2xL#(_g?)kS)*%t=6Lscf#q(0zT z<7}DSKLb5A=Q)KU;I4E)Q3R~3)?>p}H(>3B7s64o3Tzmd89Ipl&pwO(NB#$i@logr z9f@eF(7UPvM1ZczyG%~o{l5!^^!C$WvfpXByeJDWbaaSH*G5VnJ|HThPGPG_(BS@2 zTRfGh)OER9=xk+^n9?QdMXG6_x~^&}zHf{VIg8~)bU$C}^~xPP0KY%8aMT;7$~_TE zuALSY#a{77XskM=;h)S__0~0OJ>+y-FxWr!&+d}Ry9akv>;B#j?(3^p*6K55Y_YxQ zD6_2|-8}(m6oxWekp(WV9jaADGNQrI^z^)aMS)@#NX=@PolF$WBFzHR;xHi@*Pfa( zjGHh#oN5J((_z)l8S%&yvivSuHn6Bya(Vt?4neJ$;bwt{Et z^sSoX&ZirjC-{0PA^o2nsLq3J$+J$Ac z?uX3|lVkXmFbrKTDz=*KCI}Nj8tECLT3kyn@1Nf=3c=yAL5pbzIFY<~Y-D5vfF3+e z7F3)`_YNS;-J-PMVNI>A*`=wuE9PSc?WO657C1D;d@#(PG24`Xuvty7xJza(9NaOW z_x6J8!=Uv8)#|jSUAgKk?}N?~n`!W+5u|3d6HC=q0e86_$*2~YolahDa@lrOghKi) zr^$TxGYwd$EbQLW4sqpVlNd3ND=L|`v4QVHi2DwtcHcYsYsmU~FghUCqgtH`@nsct zMeU_E#g2W?9>na_@jZA#wJ0d6a3UE=PQ|0~8_8^caUv8lPL~k4{B^A5((?%1ehcKt zNT-3p0o|K)KOfiCcd{X`SfkWjk{dwmfE>htUhJc%#|9^xM|#5htKU(Hq6+6RpUdhr z!BgczaymX3jm%zkx`JxOW1UFSkPfi|>#J2^sGm#1xZgDN#(`ikJrSa<8A{2JPXXYy znz_AvQ|b8=gVUHAjvn#1ZN*kNO01YU9DONaq~2>*9EU1GA-x5s=MwuBV4XmnWgocN z+Y4&Ew)SeRJia4%<8VA9eNsChP+zZ%3E|+`$bXg9cy68=jvzK3U&2$FVK1>^W;FV! z#iHMyl=jH!463&pSa0QH)82}6<(?51{D#jJ{6r{!Is$FafGd?8u}&H8?ZvB|*Gvva zpvCnCnWEEcLu?}X8<--0Qemk~ptsjpW<hK3A4zt=EiGKV@Ksp<6P^tRJL)loLhFXD>rIOML?qOGEr4|n zUw{A{CdMu%JQPE$9idRJ!W?yte?}~Cm{;13&bq*T=`H~orP$x*ACrykF4cXtWV)G% zH$_7|s{qV8>jHbDd%J%EpnZOicGdC*%}m$^!ZtHoE}jVOTrf}AzG>@fGUUf&q3#<1R0B|4 zzCbt<>fYt53;Z$?xBmn~&&L5E2yhUPtg54mCVwP}KA7&+@~31`hLFCoTKc-`>&?!D zauEa9#`=4%b^5m677gus&E;#jk%`_%Om$2gkM8Y$%2U(ywaI;*(?@DMr*G?}1o@#z zsC%o!7qAP^1VjD~q<%ZP_vP2-@9*#hz69W+LM@N~)L9oeD? zU>f-=Ko`CaTQ_W7KX);W-#XI%&bq*_3rz7bqTNJ0S;oCuK9l(4JGe6YqNxZRZ@R*5*28;rt91V4S1VHl=#qrOkl)qZkQ`PSMax~QQ;rR?DKUzgYU0-+9HC}Zbm#@Px ze)Oh+1tH!)4^(?>zJ|2`+^)^r%ACH&TL5%8Y8$>-P#LqzXB;(K8s`1llSS*cloYMo zQWERm^uvM{nKgaY>1)`Z`51TB2JUnE8gFsc1#X<5;W>PPYYRe>Rlm(%yXE?M``n*B zSG2#o<75KMu!vg#c=LMr{-TXrY5};5)@>j$OTtAOL++H! z9hOm-er1|lG6AU*jhM6kLyBv0yc}yRPB9Xn$A!Gs}zw000LjNkl>A)HIdF-gtHNWQ4){ z=efb}9_z8Tnx=IH$EHKp(p;b}@Fxym;J@sfwyrKH!^W+Fqy3JnCUDUr;bW<5dQ+j$ zS=;#4dEwzF$I6L=fVdAZePz{}yYH=7eb;?}DY$s&&ZizJS8d?t9B6zE=NDdU!~ZO( z4`1U0^Qgz2^XmG(0=lqq%jS7?@R51v_{eb!i$~l@G+sc8L*4Il`5Hb~yt%RZWM?AL zz1$+RaX1W6)iDj_+tuxfNg!APw+7MWV|yFAV1I zo1fiB`nz+Qk|s^V^D?#t37BNQWZvf&3+Vy&6l^z?^GsYgkbI{@UnMSCRFb2osy z0qk@78lNB`e;nD<^ShH#7-!u%XE7UpL4+Uzww! zu2ul8E?;1f!B2wmlW2d>Zx^Xg1Oavm-jmR@S5C=TV12zg*4te@&wD%sK+nsX-Gy17 zJn4?&h#qTZZ`Wha+Q5TLY_5rhx;_%w)ANke*YF=e%bQv8L(ba37ovM#ekB&_{`=_O z?u#-+-U+}uPfCcrtsX11Ylq9%_=Cl^MMB-{qoJM;NBetz}w> z|9)&NdMd`#T$QqfI(}jn6oJ4Ljz=fBo(DT9HuK?T*^U+nv6K=Z~<@2OI|{KDt<) zej}~los#>AsydE)+A4!=Z#A$0fFu1~-;RX3&MmHP^f+q+mpkhk{w1U1%a|JX7dS`H0zDtiQYTSOG2}bGMdZA=G(p z`=~&OhPuj@jdkgWsITitT&l^8ntRc|Gg$1s(zDHOVMu!avSy@Shd@uvwYk6W`(THGGJP_W
    * zz)8~hd?6of{CPCgH3vLB`GHty?)Rgip0lX7@iqY8IjIRo-2MQ7PXVaQNI4e)*y*Zk z{IQhs5P-8|y*;-9Sj!472XIL~-(yCsux-U(+H1G$0sxh0awgRChZ8QGyQZ-YfPo{A zhh<;S!{@Usq84{7vHw)Qw{+AteC8O>lNRi11J4wmsYL;>XNmm_?yynfJJ0Q`4GbU0 z`L^do-;IGa0FuXeT-U0G2FE;a`F9Jh#n-qPznPj>SH~?pJL(!60gN9*IcGB>^xU!4 z^%Y1DQ7uyUjX!#`z$bg{mg`);z~dPWWU)e}9KOJJmvZMtn;JF%=v?f${6TA=Mac{n zFFIK2s11DD>1*7P`5bfCH7pSH92>U=oW8~o77m(5QFVcBkxE|-h_g;#V-V?KBnI$& zM(NI@2Mt#^e1TsANG(xb-Q^4Xz+GQoGQW)WOt`h{_wFEFbj|n`-C<=N(@?tPGL_=L=4qxL87`s`er{*i=i=D$&+jt?9 zY+!;}uozHu?8qbng{E4E@Qwqh%` dVt;h@{{aI2UN-lbZ!iD=002ovPDHLkV1o7ph)@6k literal 6389 zcmVEX>4Tx0C?J+Q)g6D=@vcr-tj1^HV42lZa2jn55j)S9!ipu-pd!uXCy!YnK{> z2n?1;Gf_2w45>mM5#WQz#Kz&|EGkvK~TfD`~gdX7S-06<0ofSs5oQvjd@0AR~wV&ec% zEdXFAf9BHwfSvf6djSAjlpz%XppgI|6J>}*0BAb^tj|`8MF3bZ02F3R#5n-iEdVe{ zS7t~6u(trf&JYW-00;~KFj0twDF6g}0AR=?BX|IWnE(_<@>e|ZE3OddDgXd@nX){& zBsoQaTL>+22Uk}v9w^R97b_GtVFF>AKrX_0nHe&HG!NkO%m4tOkrff(gY*4(&JM25 z&Nhy=4qq+mzXtyzVq)X|<DpKGaQJ>aJVl|9x!Kv}EM4F8AGNmGkLXs)P zCDQ+7;@>R$13uq10I+I40eg`xs9j?N_Dd%aSaiVR_W%I$yKlkNCzL=651DUOSSq$Ed=-((3YAKgCY2j1FI1_jrmEhm z3sv(~%T$l4UQ>OpMpZLYTc&xiMv2YpRx)mRPGut5K^*>%BIv?Wdil zy+ylO`+*KY$4Vz$Cr4+G&IO(4Q`uA9rwXSQO+7mGt}d!;r5mBUM0dY#r|y`ZzFvTy zOmC;&dA;ZQ9DOhSRQ+xGr}ak+SO&8UBnI0I&KNw!HF0k|9WTe*@liuv!$3o&VU=N* z;e?U7(LAHoMvX=fjA_PP<0Rv4#%;!P6gpNq-kQ#w?mvCS^p@!_XIRe=&)75LwiC-K#A%&Vo6|>U7iYP1 zgY$@siA#dZE|)$on;XX6$i3uBboFsv;d;{botv|p!tJQrukJSPY3_&IpUgC$DV|v~ zbI`-cL*P;6(LW2Hl`w1HtbR{JPl0E(=OZs;FOgTR*RZ#xcdGYc?-xGyK60PqKI1$$ z-ZI`wBrnsy*W_HW0Wrec-#cqqYFCLW#$!oKa ztOZ#u3bsO~=u}!L*D43HXJuDrzs-rtIhL!QE6wf9v&!3$H=OUE|LqdO65*1zrG`sa zEge|qy{u|EvOIBl+X~|q1uKSD2CO`|inc0k)laMKSC_7Sy(W51Yk^+D%7VeQ0c-0E zRSM;Wee2xU?Ojh;FInHUVfu!h8$K0@imnvf7nc=(*eKk1(e4|2y!JHg)!SRV_x(P}zS~s+RZZ1q)n)rh`?L2yu8FGY z_?G)^U9C=SaqY(g(gXbmBM!FLxzyDi(mhmCkJc;eM-ImyzW$x>cP$Mz4ONYt#^NJz zM0w=t_X*$k9t}F$c8q(h;Rn+nb{%IOFKR-X@|s4QQ=0o*Vq3aT%s$c9>fU<%N829{ zoHRUHc}nwC$!Xf@g42^{^3RN&m7RTlF8SPG+oHC6=VQ*_Y7cMkx)5~X(nbG^=R3SR z&Rp`ibn>#>OB6F(@)2{oV%K?xm;_x?s~noduI3P8=g1L-SoYA z@fQEq)t)&$-M#aAZ}-Lb_1_lVesU-M&da;mcPH+xyidGe^g!)F*+boj)jwPQ+}Q8j ze`>&Yp!3n(NB0JWgU|kv^^Xrj1&^7J%Z3ex>z+71IXU7#a{cN2r$f(V&nBK1{-XZN zt``^}my^G3e5L*B!0Q>W+s4Ai9=^$VGcjKDR{QP2cieX!@1x%j zPvm?ce<=TG`LXp=(5L&88IzO$1Ou4!{O>iCf&c&xYe_^wRCwC$U0ZMy*BSn7FOp3h zENl`BOvVBxA%zZzAx%8f#E6&lfs5fG&GaFSc%aihVY!{@_{sRCJhWrO^r20e)}noA zNgj~7JmfNCK}d!&PzxqbFigT4Y$7K%tiZM|mP8+P)>*Cha#mhRtM&P2c3`aCbNSD= z|No!=obzuL7#48yLc0rq4}cfIF7mHS1`9>5I%p~HJF@yk_qRg6Bs$qVg%0384h zEU_paKnTEzIBeJBm&710uZpfhN@a- z1o8qHAihs2ArS3!oDs<$e$YUfn-KF0Gu&OAa~=oCDohGBrx&)Rq)?l zGUR|C-g9X;Ba-z<TB^Ym+R?*^WI-a;*SRg#;Ad9q#*~cdKZ)#A zTJ5ngd0|d2YnifXOPNZ}uf#}1V$WEn^I{OgwpFN>{)JLw)K6eWb zptmbJ5oD&#e4Ns|;hB}?UvC>9yMmdM_b~hWF(V|B!vkQT&)ssj&)s5~O>nk3AgO2G ze!A^HFZP6EcUN>mD3Cl}82jBO{pnVg&I=k7$b$0Ble* zam1Y6g*h30c>p`Q_qGX~O-Q7wo=dr3Tg;Di@5|2+JA0d&KwCQYp-x615sjNRV$1%0 z;6J^LJ0E|7`FNa0Tl51sr1JX!%u5UHLGFZez%G&Pe&mv`7c}ipq+$?e#xO06qRF+{ zaK^SoDu&62H!%L)RirZsB>wRoRh($c{(bPg@jAWF_22<+p8f!jA3UJBeYIRGk*WRN zA`HO>yF|7Rs7?FT2$4v|FcllcmwQH(-Ahh!oZ!|YrX!pzvBZ6WF5S^Zb} zjn@s42mn^CTZf(gU*dBA2^!7h2O!VueMIk}m5vp7p=njl&&y#TwOjfrp&Ia1Z z1C?#5Yh3xWH8Izt(%>(0G-k$VR_Pa;x8Yeloy+PHV$1%*{IY{kMs+ns!6cIU zRjbym(=%~C6`w{`6Uj*g04r*$@smyK@W~gN7SU^m>A&i^|LeC-;>MkSVf_26B_R<2 zWbUPOHA>^AjZ3a){VO|l@9A^5_$2<3Pfr_Zk!;PgD>dt?Xd+3zuVxuMou1eHy~zX; ziL*J%cuz@C=^DvrwFYVIDavW2#zs@>S+#B*&23&;d`T56YO0qtkvhOYh3>s=5iJtE z(4>AEITlZ1N;^U?ELV*b0T2MN0l;qL79xdZz$ZmAZG3(;R@77@7Edmk>c`?qe17}B zUb*3lowboJZuQ^U$yG}YH(dM2)?i9`%?Hr7Vs01p!K=xUt9doG0t8Kh)& zk;^M7R~(>-yj-#sR+UH(zxf99@i(UB2al8ZP(^T2#2i>W7bv;-3C2vstX zI@CG^V33evNsyg(r7iEG7Rl%1aZHYUNi}`f!sHkFMCyu8go!rtpm@0{0~NbyE1UN7 z67qzt>W4`2)!B1s-nyk=t#s$(PiS@nNM%v1{N17My=_6Da!-+XkPH8xvf3H>uINOl z&)p(u#c<~1as2nMf5Yp6BZkYL92vo#k3OdITO``ZU!)giVTVCQ5{Zz<%1IW2P}z;J z;B-HDfXn?S@Y=6`MXi~}uU*H@)9=&zEx{scqabA4ZI|We+KY`ocZ&y<+cj3y)!|3` z_v!jfH&4Hh@oU#sKAt3%_)jo9|~TZ=T5sJ#r#qBe9zCxm0?ueju!^wn_e{1q|u;g$HGA^{@+ z2D|sRsrsOdNW~+P3%Qt*p)>sJU)hOmZ|8rvAw zh%;&^Vm^ND`XUoXGu0P;mvWGZ5vllO%A48H;;Xag7WNuVj!k90*R4wb8~j7TL2 z2LL!|L^I9DNkF=)`I(^@$Ow{G<}&H+}=83YOEc zW<;_+q0Ug=zS}A$O+*bFLTli|nJ2e?R=>&xpiSpi-ps^WZ2E7{P(c9ti_sw~ww)2l zdeDnGonk~{pwUV^)T7}MtENY0M6xECLRfrm-?G|>5vlV0r4S<$!&3dF5HWjJgVWyiS>F!M;+v|PHGOj zh7abE{T7s#L0%B~OA<_{lDwop@<~HbjXY4;>Bu>pJZXDyiRAQ4Ws*)Mg9_uMIz9?= z?ga3zq)ah;i=LcYDdY@r4(9>R;e4dvP)V-=N+(S5(s1Im>U~6nN#kUzT|T*B)b62i zDy1(Th0KPQqM^w1((<(G^lOykiCBZ`K)|dR+hpENW)Y zP{_;&bCWn|)j2>kq~dSTKk>UHIdi15v~Nuh=WrfRr;>ui1oaZtCuejRxujF7Wf`b< z0J(gRQuIp7$umXBUnMs^mPK9y59RHhoWps-q?npsod+P>H9#~C?XmHG06P@qtTeuP za^_Sj2?IDm3YItCOMV9t&QZc-c|{l1{31!G}J{O;ij-(y8P@LXKe= zOuk?t1d1%PKsuESaSmq~xg-^ZV0Su|6v$-Cj5BuNh!*HquDTjH9)2np)(}(=jyTzCZmD+?F zu8+iQJVYLXL}oq(CwRN;*}QCS#Bn}Y$?S%LR;P*gm;qkJ-}O?;hT7RS@)n4Td}iQ80RwIZ z!a5EzO}%0!Sds#1014Y&eQ^7?8C8kd82U zoiZZGrP`yBSwKN%y$bjBqIlS?LnZ;hp`}csY5*Xc$=s^0;obvK3&1V2=>mZN0Qf~Z zmAs|M#u^R)V#uwniB~wA$!HEpHj^2wuHnXrT6dGqzL!oVyQ^!ssI<&%CKFbvyGmB? z#cU=M(W&=Vbq#ls^z&tjraF{PCBxM Date: Thu, 25 Feb 2010 12:36:22 +0100 Subject: [PATCH 031/362] Moved otalk theme out of core. It will be updated separately and may be reintruced back to core when appropriate. --- theme/otalk/css/base.css | 1211 ----------------- theme/otalk/css/display.css | 292 ---- theme/otalk/css/ie.css | 9 - theme/otalk/default-avatar-mini.png | Bin 646 -> 0 bytes theme/otalk/default-avatar-profile.png | Bin 2853 -> 0 bytes theme/otalk/default-avatar-stream.png | Bin 1487 -> 0 bytes .../illustrations/illu_arrow-left-01.gif | Bin 75 -> 0 bytes .../images/illustrations/illu_pattern-01.png | Bin 3218 -> 0 bytes theme/otalk/logo.png | Bin 2228 -> 0 bytes 9 files changed, 1512 deletions(-) delete mode 100644 theme/otalk/css/base.css delete mode 100644 theme/otalk/css/display.css delete mode 100644 theme/otalk/css/ie.css delete mode 100644 theme/otalk/default-avatar-mini.png delete mode 100644 theme/otalk/default-avatar-profile.png delete mode 100644 theme/otalk/default-avatar-stream.png delete mode 100644 theme/otalk/images/illustrations/illu_arrow-left-01.gif delete mode 100644 theme/otalk/images/illustrations/illu_pattern-01.png delete mode 100644 theme/otalk/logo.png diff --git a/theme/otalk/css/base.css b/theme/otalk/css/base.css deleted file mode 100644 index 8af86f9dbe..0000000000 --- a/theme/otalk/css/base.css +++ /dev/null @@ -1,1211 +0,0 @@ -/** theme: otalk base - * - * @package StatusNet - * @author Sarven Capadisli - * @copyright 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/ - */ - -* { margin:0; padding:0; } -img { display:block; border:0; } -a abbr { cursor: pointer; border-bottom:0; } -table { border-collapse:collapse; } -ol { list-style-position:inside; } -html { font-size: 87.5%; background-color:#fff; } -body { -background-color:#fff; -color:#000; -font-family:sans-serif; -font-size:1em; -line-height:1.65; -position:relative; -} -h1,h2,h3,h4,h5,h6 { -margin-bottom:7px; -overflow:hidden; -} -h1 { -font-size:1.4em; -margin-bottom:18px; -} -#showstream h1 { display:none; } -h2 { font-size:1.3em; } -h3 { font-size:1.2em; } -h4 { font-size:1.1em; } -h5 { font-size:1em; } -h6 { font-size:0.9em; } - -caption { -font-weight:bold; -} -legend { -font-weight:bold; -font-size:1.3em; -} -input, textarea, select, option { -padding:4px; -font-family:sans-serif; -font-size:1em; -} -input, textarea, select { -border-width:2px; -border-style: solid; -border-radius:4px; --moz-border-radius:4px; --webkit-border-radius:4px; -} - -input.submit { -font-weight:bold; -cursor:pointer; -} -textarea { -overflow:auto; -} -option { -padding-bottom:0; -} -fieldset { -padding:0; -border:0; -} -form ul li { -list-style-type:none; -margin:0 0 18px 0; -} -form label { -font-weight:bold; -} -input.checkbox { -position:relative; -top:2px; -left:0; -border:0; -} - -.error, -.success { -padding:4px 7px; -border-radius:4px; --moz-border-radius:4px; --webkit-border-radius:4px; -margin-bottom:18px; -} -form label.submit { -display:none; -} - -.form_settings { -clear:both; -} - -.form_settings fieldset { -margin-bottom:29px; -} -.form_settings input.remove { -margin-left:11px; -} -.form_settings .form_data li { -width:100%; -float:left; -} -.form_settings .form_data label { -float:left; -} -.form_settings .form_data textarea, -.form_settings .form_data select, -.form_settings .form_data input { -margin-left:11px; -float:left; -} -.form_settings .form_data input.submit { -margin-left:0; -} - -.form_settings label { -margin-top:2px; -width:152px; -} - -.form_actions label { -display:none; -} -.form_guide { -font-style:italic; -} - -.form_settings #settings_autosubscribe label { -display:inline; -font-weight:bold; -} - -#form_settings_profile legend, -#form_login legend, -#form_register legend, -#form_password legend, -#form_settings_avatar legend, -#newgroup legend, -#editgroup legend, -#form_tag_user legend, -#form_remote_subscribe legend, -#form_openid_login legend, -#form_search legend, -#form_invite legend, -#form_notice_delete legend, -#form_password_recover legend, -#form_password_change legend { -display:none; -} - -.form_settings .form_data p.form_guide { -clear:both; -margin-left:163px; -margin-bottom:0; -} - -.form_settings p { -margin-bottom:11px; -} - -.form_settings input.checkbox { -margin-top:3px; -margin-left:0; -} -.form_settings label.checkbox { -font-weight:normal; -margin-top:0; -margin-right:0; -margin-left:11px; -float:left; -width:90%; -} - - -#form_login p.form_guide, -#form_register #settings_rememberme p.form_guide, -#form_openid_login #settings_rememberme p.form_guide, -#settings_twitter_remove p.form_guide, -#form_search ul.form_data #q { -margin-left:0; -} - -.form_settings .form_note { -border-radius:4px; --moz-border-radius:4px; --webkit-border-radius:4px; -padding:0 7px; -} - - -.form_settings input.form_action-primary { -padding:0; -} -.form_settings input.form_action-secondary { -margin-left:29px; -} - -#form_search .submit { -margin-left:11px; -} - -address { -float:left; -margin-bottom:18px; -margin-left:18px; -} -address.vcard img.logo { -margin-right:0; -} -address .fn { -font-weight:bold; -} -address img + .fn { -display:none; -} - -#header { -width:100%; -position:relative; -float:left; -padding-top:18px; -margin-bottom:29px; -} - -#site_nav_global_primary { -float:right; -margin-right:18px; -margin-bottom:11px; -margin-left:18px; -} -#site_nav_global_primary ul li { -display:inline; -margin-left:11px; -} - -.system_notice dt { -font-weight:bold; -text-transform:uppercase; -display:none; -} - -#site_notice { -position:absolute; -top:65px; -right:18px; -width:250px; -width:24%; -} -#page_notice { -clear:both; -margin-bottom:18px; -} - - -#anon_notice { -float:left; -width:43.2%; -padding:1.1%; -border-radius:7px; --moz-border-radius:7px; --webkit-border-radius:7px; -border-width:2px; -border-style:solid; -line-height:1.5; -font-size:1.1em; -font-weight:bold; -} - - -#footer { -float:left; -width:64%; -padding:18px; -} - -#site_nav_local_views { -float:left; -} -#site_nav_local_views dt { -display:none; -} -#site_nav_local_views li { -float:left; -margin-right:18px; -list-style-type:none; -} -#site_nav_local_views a { -float:left; -text-decoration:none; -padding:4px 11px; --moz-border-radius-topleft:4px; --moz-border-radius-topright:4px; --webkit-border-top-left-radius:4px; --webkit-border-top-right-radius:4px; -border-width:0; -border-style:solid; -border-bottom:0; -text-shadow: 2px 2px 2px #ddd; -font-weight:bold; -} -#site_nav_local_views .nav { -float:left; -width:100%; -border-bottom-width:1px; -border-bottom-style:solid; -} - -#site_nav_global_primary dt, -#site_nav_global_secondary dt { -display:none; -} - -#site_nav_global_secondary { -margin-bottom:11px; -} - -#site_nav_global_secondary ul li { -display:inline; -margin-right:11px; -} -#export_data li a { -padding-left:20px; -} -#export_data li a.foaf { -padding-left:30px; -} -#export_data li a.export_vcard { -padding-left:28px; -} - -#export_data ul { -display:inline; -} -#export_data li { -list-style-type:none; -display:inline; -margin-left:11px; -} -#export_data li:first-child { -margin-left:0; -} - -#licenses { -font-size:0.9em; -} - -#licenses dt { -font-weight:bold; -display:none; -} -#licenses dd { -margin-bottom:11px; -line-height:1.5; -} - -#site_content_license_cc { -margin-bottom:0; -} -#site_content_license_cc img { -display:inline; -vertical-align:top; -margin-right:4px; -} - -#wrap { -margin:0 auto; -width:100%; -min-width:760px; -max-width:1003px; -overflow:hidden; -} - -#core { -position:relative; -width:100%; -float:left; -margin-bottom:1em; -} - -#content { -width:67.9%; -min-height:259px; -padding-top:1.795%; -padding-bottom:1.795%; -float:left; -clear:left; -border-radius:7px; --moz-border-radius:7px; --moz-border-radius-topleft:0; --webkit-border-radius:7px; --webkit-border-top-left-radius:0; -border-style:solid; -border-width:0; -margin-bottom:18px; -} - -#content_inner { -position:relative; -width:100%; -float:left; -} - -#aside_primary { -width:27.917%; -min-height:259px; -float:left; -padding:1.795%; -margin-left:0.385%; -border-radius:7px; --moz-border-radius:7px; --webkit-border-radius:7px; -border-width:1px; -border-style:solid; -} - -#form_notice { -width:45.664%; -float:left; -position:relative; -line-height:1; -} -#form_notice fieldset { -border:0; -padding:0; -} -#form_notice legend { -display:none; -} -#form_notice textarea { -float:left; -border-radius:7px; --moz-border-radius:7px; --webkit-border-radius:7px; -width:80.789%; -height:67px; -line-height:1.5; -padding:7px 7px 16px 7px; -} -#form_notice label { -display:block; -float:left; -font-size:1.3em; -margin-bottom:7px; -} -#form_notice #notice_submit label { -display:none; -} -#form_notice .form_note { -position:absolute; -top:99px; -right:98px; -z-index:9; -} -#form_notice .form_note dt { -font-weight:bold; -display:none; -} -#notice_text-count { -font-weight:bold; -line-height:1.15; -padding:1px 2px; -} -#form_notice #notice_action-submit { -width:14%; -height:47px; -padding:0; -position:absolute; -bottom:0; -right:0; -} -#form_notice label[for=to] { -margin-top:7px; -} -#form_notice select[id=to] { -margin-bottom:7px; -margin-left:18px; -float:left; -} - - -/* entity_profile */ -.entity_profile { -position:relative; -width:521px; -min-height:123px; -float:left; -margin-bottom:18px; -margin-left:0; -overflow:hidden; -} -.entity_profile dt, -#entity_statistics dt { -font-weight:bold; -} -.entity_profile dd { -display:inline; -} - -.entity_profile .entity_depiction { -float:left; -width:96px; -margin-right:18px; -margin-bottom:18px; -} - -.entity_profile .entity_fn, -.entity_profile .entity_nickname, -.entity_profile .entity_location, -.entity_profile .entity_url, -.entity_profile .entity_note, -.entity_profile .entity_tags { -margin-left:113px; -margin-bottom:4px; -} - -.entity_profile .entity_fn, -.entity_profile .entity_nickname { -margin-left:11px; -display:inline; -font-weight:bold; -} -.entity_profile .entity_nickname { -margin-left:0; -} - -.entity_profile .entity_fn dd:before { -content: "("; -font-weight:normal; -} -.entity_profile .entity_fn dd:after { -content: ")"; -font-weight:normal; -} - -.entity_profile dt { -display:none; -} -.entity_profile h2 { -display:none; -} -/* entity_profile */ - - -/*entity_actions*/ -.entity_actions { -float:left; -margin-left:4.35%; -max-width:25%; -} -.entity_actions h2 { -display:none; -} -.entity_actions ul { -list-style-type:none; -} -.entity_actions li { -margin-bottom:4px; -} -.entity_actions li:first-child { -border-top:0; -} -.entity_actions fieldset { -border:0; -padding:0; -} -.entity_actions legend { -display:none; -} - -.entity_actions input.submit { -display:block; -text-align:left; -width:100%; -} -.entity_actions a, -.entity_nudge p, -.entity_remote_subscribe { -text-decoration:none; -font-weight:bold; -display:block; -} - -.form_user_block input.submit, -.form_user_unblock input.submit, -.entity_send-a-message a, -.entity_edit a, -.form_user_nudge input.submit, -.entity_nudge p { -border:0; -padding-left:20px; -} - -.entity_edit a, -.entity_send-a-message a, -.entity_nudge p { -padding:4px 4px 4px 23px; -} - -.entity_remote_subscribe { -padding:4px; -border-width:2px; -border-style:solid; -border-radius:4px; --moz-border-radius:4px; --webkit-border-radius:4px; -} -.entity_actions .accept { -margin-bottom:18px; -} - -.entity_tags ul { -list-style-type:none; -display:inline; -} -.entity_tags li { -display:inline; -margin-right:4px; -} - -.aside .section { -margin-bottom:29px; -clear:both; -float:left; -width:100%; -} -.aside .section h2 { -text-transform:uppercase; -font-size:1em; -} - -#entity_statistics dt, -#entity_statistics dd { -display:inline; -} -#entity_statistics dt:after { -content: ":"; -} - -.section ul.entities { -float:left; -width:100%; -} -.section .entities li { -list-style-type:none; -float:left; -margin-right:7px; -margin-bottom:7px; -} -.section .entities li .photo { -margin-right:0; -margin-bottom:0; -} -.section .entities li .fn { -display:none; -} - -.aside .section p, -.aside .section .more { -clear:both; -} - -.profile .entity_profile { -margin-bottom:0; -min-height:60px; -} - - -.profile .form_group_join legend, -.profile .form_group_leave legend, -.profile .form_user_subscribe legend, -.profile .form_user_unsubscribe legend { -display:none; -} - -.profiles { -list-style-type:none; -} -.profile .entity_profile .entity_location { -width:auto; -clear:none; -margin-left:11px; -} -.profile .entity_profile dl, -.profile .entity_profile dd { -display:inline; -float:none; -} -.profile .entity_profile .entity_note, -.profile .entity_profile .entity_url, -.profile .entity_profile .entity_tags, -.profile .entity_profile .form_subscription_edit { -margin-left:59px; -clear:none; -display:block; -width:auto; -} -.profile .entity_profile .entity_tags dt { -display:inline; -margin-right:11px; -} - - -.profile .entity_profile .form_subscription_edit label { -font-weight:normal; -margin-right:11px; -} - - -/* NOTICE */ -.notice, -.profile { -position:relative; -clear:both; -float:left; -width:100%; -border-width:0; -border-style:solid; -margin-bottom:29px; -} -.notices li { -list-style-type:none; -} - -#content .notice { -width:37%; -margin-left:17px; -margin-bottom:47px; -clear:none; -overflow:hidden; -padding: 0 0 0 65px; -min-height:235px; -} - -#aside_primary .notice { -margin-bottom:18px; -} - -#shownotice #content .notice { -width:96%; -} - - -/* NOTICES */ -#notices_primary { -float:left; -width:100%; -border-radius:7px; --moz-border-radius:7px; --webkit-border-radius:7px; -} -#notices_primary h2 { -display:none; -} -.notice-data a span { -display:block; -padding-left:28px; -} - -.notice .author { -margin-right:11px; -} - -#content .notice .author { -/*overflow:hidden;*/ -} - -.fn { -overflow:hidden; -} - -.notice .author .fn { -font-weight:bold; -} - -.notice .author .photo { -margin-bottom:0; -} - -#content .notice .author .photo { -margin-left:-83px; -padding-right:17px; -} - - -.vcard .photo { -display:inline; -margin-right:11px; -margin-bottom:11px; -float:left; -} -.vcard .url { -text-decoration:none; -} -.vcard .url:hover { -text-decoration:underline; -} - -.notice .entry-title { -float:left; -width:100%; -overflow:hidden; -} -#content .notice .entry-title { -overflow:visible; -margin-bottom:11px; -padding:18px; -width:85%; -border-radius:7px; --moz-border-radius:7px; --webkit-border-radius:7px; -min-height:161px; -} - -#shownotice .notice .entry-title { -font-size:2.2em; -} - -.notice p.entry-content { -display:inline; -} - -#content .notice p.entry-content -overflow:hidden; -} - -.notice p.entry-content .vcard a { -border-radius:4px; --moz-border-radius:4px; --webkit-border-radius:4px; -} - -.notice div.entry-content { -clear:left; -float:left; -font-size:0.95em; -} -#showstream .notice div.entry-content { -margin-left:0; -} - -.notice .notice-options a, -.notice .notice-options input { -float:left; -font-size:1.025em; -} - -.notice div.entry-content dl, -.notice div.entry-content dt, -.notice div.entry-content dd { -display:inline; -} - -.notice div.entry-content .timestamp dt, -.notice div.entry-content .response dt { -display:none; -} -.notice div.entry-content .timestamp a { -display:inline-block; -} -.notice div.entry-content .device dt { -text-transform:lowercase; -} - - - -.notice-data { -position:absolute; -top:18px; -right:0; -min-height:50px; -margin-bottom:4px; -} -.notice .entry-content .notice-data dt { -display:none; -} - -.notice-data a { -display:block; -outline:none; -} - -.notice-options { -position:absolute; -top:120px; -left:30px; -font-size:0.95em; -} - -.notice-options a { -float:left; -} -.notice-options .notice_delete, -.notice-options .notice_reply, -.notice-options .form_favor, -.notice-options .form_disfavor { -position:absolute; -left:0; -} -.notice-options .form_favor, -.notice-options .form_disfavor { -top:0; -} -.notice-options .notice_reply { -top:29px; -} -.notice-options .notice_delete { -top:58px; -} -.notice-options .notice_reply dt { -display:none; -} - -.notice-options input, -.notice-options a { -text-indent:-9999px; -outline:none; -} - -.notice-options .notice_reply a, -.notice-options input.submit { -display:block; -border:0; -} -.notice-options .notice_reply a, -.notice-options .notice_delete a { -text-decoration:none; -padding-left:16px; -} - -.notice-options form input.submit { -width:16px; -padding:2px 0; -} - -.notice-options .notice_delete dt, -.notice-options .form_favor legend, -.notice-options .form_disfavor legend { -display:none; -} -.notice-options .notice_delete fieldset, -.notice-options .form_favor fieldset, -.notice-options .form_disfavor fieldset { -border:0; -padding:0; -} - - -#usergroups #new_group { -float: left; -margin-right: 2em; -} -#new_group, #group_search { -margin-bottom:18px; -} -#new_group a { -padding-left:20px; -} - - -#filter_tags { -margin-bottom:11px; -float:left; -} -#filter_tags dt { -display:none; -} -#filter_tags ul { -list-style-type:none; -} -#filter_tags ul li { -float:left; -margin-left:7px; -padding-left:7px; -border-left-width:1px; -border-left-style:solid; -} -#filter_tags ul li.child_1 { -margin-left:0; -border-left:0; -padding-left:0; -} -#filter_tags ul li#filter_tags_all a { -font-weight:bold; -margin-top:7px; -float:left; -} - -#filter_tags ul li#filter_tags_item label { -margin-right:7px; -} -#filter_tags ul li#filter_tags_item label, -#filter_tags ul li#filter_tags_item select { -display:inline; -} -#filter_tags ul li#filter_tags_item p { -float:left; -margin-left:38px; -} -#filter_tags ul li#filter_tags_item input { -position:relative; -top:3px; -left:3px; -} - - - -.pagination { -float:left; -clear:both; -width:100%; -margin-top:18px; -} - -.pagination dt { -font-weight:bold; -display:none; -} - -.pagination .nav { -float:left; -width:100%; -list-style-type:none; -} - -.pagination .nav_prev { -float:left; -} -.pagination .nav_next { -float:right; -} - -.pagination a { -display:block; -text-decoration:none; -font-weight:bold; -padding:7px; -border-width:1px; -border-style:solid; --moz-border-radius:7px; --webkit-border-radius:7px; -border-radius:7px; -} - -.pagination .nav_prev a { -padding-left:30px; -} -.pagination .nav_next a { -padding-right:30px; -} -/* END: NOTICE */ - - -.hentry .entry-content p { -margin-bottom:18px; -} -.hentry entry-content ol, -.hentry .entry-content ul { -list-style-position:inside; -} -.hentry .entry-content li { -margin-bottom:18px; -} -.hentry .entry-content li li { -margin-left:18px; -} - - - - -/* TOP_POSTERS */ -.section tbody td { -padding-right:11px; -padding-bottom:11px; -} -.section .vcard .photo { -margin-right:7px; -margin-bottom:0; -} - -.section .notice { -padding-top:7px; -padding-bottom:7px; -border-top:0; -} - -.section .notice:first-child { -padding-top:0; -} - -.section .notice .author { -margin-right:0; -} -.section .notice .author .fn { -display:none; -} - - -/* tagcloud */ -.tag-cloud { -list-style-type:none; -text-align:center; -} -.aside .tag-cloud { -font-size:0.8em; -} -.tag-cloud li { -display:inline; -margin-right:7px; -line-height:1.25; -} -.aside .tag-cloud li { -line-height:1.5; -} -.tag-cloud li a { -text-decoration:none; -} -#tagcloud.section dt { -text-transform:uppercase; -font-weight:bold; -} -.tag-cloud-1 { -font-size:1em; -} -.tag-cloud-2 { -font-size:1.25em; -} -.tag-cloud-3 { -font-size:1.75em; -} -.tag-cloud-4 { -font-size:2em; -} -.tag-cloud-5 { -font-size:2.25em; -} -.tag-cloud-6 { -font-size:2.75em; -} -.tag-cloud-7 { -font-size:3.25em; -} - -#publictagcloud #tagcloud.section dt { -display:none; -} - -#form_settings_photo .form_data { -clear:both; -} - -#form_settings_avatar li { -width:auto; -} -#form_settings_avatar input { -margin-left:0; -} -#avatar_original, -#avatar_preview { -float:left; -} -#avatar_preview { -margin-left:29px; -} -#avatar_preview_view { -height:96px; -width:96px; -margin-bottom:18px; -overflow:hidden; -} - -#settings_attach, -#form_settings_avatar .form_actions { -clear:both; -} - -#form_settings_avatar .form_actions { -margin-bottom:0; -} - -#form_settings_design #settings_design_color .form_data, -#form_settings_design #color-picker { -float:left; -} -#form_settings_design #settings_design_color .form_data { -width:400px; -margin-right:28px; -} - -.instructions ul { -list-style-position:inside; -} -.instructions p, -.instructions ul { -margin-bottom:18px; -} -.help dt { -display:none; -} -.guide { -clear:both; -} diff --git a/theme/otalk/css/display.css b/theme/otalk/css/display.css deleted file mode 100644 index bdfaea7494..0000000000 --- a/theme/otalk/css/display.css +++ /dev/null @@ -1,292 +0,0 @@ -/** theme: otalk - * - * @package StatusNet - * @author Sarven Capadisli - * @copyright 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/ - */ - -@import url(base.css); - -html { -} - -html, -body, -a:active { -} -body { -font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif; -font-size:1em; -background:#ddd url(../images/illustrations/illu_pattern-01.png) repeat 0 0; -background-color:rgba(127, 127, 127, 0.1); -} -address { -margin-right:7.18%; -} - -input, textarea, select, option { -font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif; -} -input, textarea, select, -.entity_remote_subscribe { -border-color:#aaa; -} -#filter_tags ul li { -border-color:#ddd; -} - -.form_settings input.form_action-primary { -background:none; -} - -input.submit, -#form_notice.warning #notice_text-count, -.form_settings .form_note, -.entity_remote_subscribe { -background-color:#9BB43E; -} - -input:focus, textarea:focus, select:focus, -#form_notice.warning #notice_data-text { -border-color:#9BB43E; -} -input.submit, -.entity_remote_subscribe { -color:#fff; -} - -a, -div.notice-options input, -.form_user_block input.submit, -.form_user_unblock input.submit, -.entity_send-a-message a, -.form_user_nudge input.submit, -.entity_nudge p, -.form_settings input.form_action-primary { -color:#8F0000; -} - -.notice, -.profile { -border-color:#CEE1E9; -} -#content .notice .entry-title, -input, textarea, select, option, -.pagination .nav_prev a, -.pagination .nav_next a { -background-color:rgba(255,255,255,0.8); -} - -#content .notices li.hover .entry-title { -background-color:rgba(255,255,255,0.9); -} - -#content .notice:nth-child(1) .entry-title { -background-color:rgba(255,255,255,0.95); -} -#content .notice:nth-child(2) .entry-title { -background-color:rgba(255,255,255,0.9); -} -#content .notice:nth-child(3) .entry-title { -background-color:rgba(255,255,255,0.8); -} -#content .notice:nth-child(4) .entry-title { -background-color:rgba(255,255,255,0.7); -} -#content .notice:nth-child(5) .entry-title { -background-color:rgba(255,255,255,0.6); -} -#content .notice:nth-child(6) .entry-title { -background-color:rgba(255,255,255,0.5); -} -#content .notice:nth-child(7) .entry-title { -background-color:rgba(255,255,255,0.4); -} -#content .notice:nth-child(8) .entry-title { -background-color:rgba(255,255,255,0.3); -} -#content .notice:nth-child(9) .entry-title { -background-color:rgba(255,255,255,0.2); -} -#content .notice:nth-child(10) { -background-color:rgba(255,255,255,0.1); -} - - -#content .notice .author .photo { -background:url(../images/illustrations/illu_arrow-left-01.gif) no-repeat 100% 0; -} - -.section .profile { -border-top-color:#87B4C8; -} - -#aside_primary { -background-color:rgba(206, 225, 233,0.5); -} - -#notice_text-count { -color:#333; -} -#form_notice.warning #notice_text-count { -color:#000; -} -#form_notice.processing #notice_action-submit { -background:#fff url(../../base/images/icons/icon_processing.gif) no-repeat 47% 47%; -cursor:wait; -text-indent:-9999px; -} - -#content, -#site_nav_local_views .nav, -#site_nav_local_views a, -#aside_primary { -border-color:#fff; -} -#content, -#site_nav_local_views .current a { -background-color:transparent; -/*background-color:red;*/ -} - -#site_nav_local_views .current a { -background-color:transparent; -} - -#site_nav_local_views a { -background-color:rgba(127, 127, 127, 0.2); -} -#site_nav_local_views a:hover { -background-color:rgba(255, 255, 255, 0.8); -} - -.error { -background-color:#F7E8E8; -} -.success { -background-color:#EFF3DC; -} - -#anon_notice { -background-color:rgba(206, 225, 233, 0.7); -color:#fff; -border-color:#fff; -} - -#showstream #anon_notice { -background-color:rgba(155, 180, 62, 0.7); -} - -#export_data li a { -background-repeat:no-repeat; -background-position:0 45%; -} -#export_data li a.rss { -background-image:url(../../base/images/icons/icon_rss.png); -} -#export_data li a.atom { -background-image:url(../../base/images/icons/icon_atom.png); -} -#export_data li a.foaf { -background-image:url(../../base/images/icons/icon_foaf.gif); -} - -.entity_edit a, -.entity_send-a-message a, -.form_user_nudge input.submit, -.form_user_block input.submit, -.form_user_unblock input.submit, -.entity_nudge p { -background-position: 0 40%; -background-repeat: no-repeat; -background-color:transparent; -} -.form_group_join input.submit, -.form_group_leave input.submit -.form_user_subscribe input.submit, -.form_user_unsubscribe input.submit { -background-color:#9BB43E; -color:#fff; -} -.form_user_unsubscribe input.submit, -.form_group_leave input.submit, -.form_user_authorization input.reject { -background-color:#87B4C8; -} - -.entity_edit a { -background-image:url(../../base/images/icons/twotone/green/edit.gif); -} -.entity_send-a-message a { -background-image:url(../../base/images/icons/twotone/green/quote.gif); -} -.entity_nudge p, -.form_user_nudge input.submit { -background-image:url(../../base/images/icons/twotone/green/mail.gif); -} -.form_user_block input.submit, -.form_user_unblock input.submit { -background-image:url(../../base/images/icons/twotone/green/shield.gif); -} - -/* NOTICES */ -.notices li.over { -background-color:#fcfcfc; -} - -.notice-options .notice_reply a, -.notice-options form input.submit { -background-color:transparent; -} -.notice-options .notice_reply a { -background:transparent url(../../base/images/icons/twotone/green/reply.gif) no-repeat 0 45%; -} -.notice-options form.form_favor input.submit { -background:transparent url(../../base/images/icons/twotone/green/favourite.gif) no-repeat 0 45%; -} -.notice-options form.form_disfavor input.submit { -background:transparent url(../../base/images/icons/twotone/green/disfavourite.gif) no-repeat 0 45%; -} -.notice-options .notice_delete a { -background:transparent url(../../base/images/icons/twotone/green/trash.gif) no-repeat 0 45%; -} - -.notices div.entry-content, -.notices div.notice-options { -opacity:0.4; -} -.notices li.hover div.entry-content, -.notices li.hover div.notice-options { -opacity:1; -} -div.entry-content { -color:#333; -} -div.notice-options a, -div.notice-options input { -font-family:sans-serif; -} -.notices li.hover { -/*background-color:#fcfcfc;*/ -} -/*END: NOTICES */ - -#new_group a { -background:transparent url(../../base/images/icons/twotone/green/news.gif) no-repeat 0 45%; -} - -.pagination .nav_prev a, -.pagination .nav_next a { -background-repeat:no-repeat; -border-color:#CEE1E9; -} -.pagination .nav_prev a { -background-image:url(../../base/images/icons/twotone/green/arrow-left.gif); -background-position:10% 45%; -} -.pagination .nav_next a { -background-image:url(../../base/images/icons/twotone/green/arrow-right.gif); -background-position:90% 45%; -} diff --git a/theme/otalk/css/ie.css b/theme/otalk/css/ie.css deleted file mode 100644 index 2f463bb44d..0000000000 --- a/theme/otalk/css/ie.css +++ /dev/null @@ -1,9 +0,0 @@ -/* IE specific styles */ - -.notice-options input.submit { -color:#fff; -} - -#site_nav_local_views a { -background-color:#D0DFE7; -} diff --git a/theme/otalk/default-avatar-mini.png b/theme/otalk/default-avatar-mini.png deleted file mode 100644 index 38b8692b4a2f71c8de3d6a12b715df33aada5f7c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 646 zcmV;10(t$3P)t7_1ao1dG5H5=fedf?I_U zERrsbGN6ogMr}` z=geF#+zTQC5di=LaBdjJM@3P-0idfKA;f20*DnA(@I8qLjEKM(3u~J8S_pAFm&<9f zSPbEC7@TwLgOn1}=@gFRpkA-LjIlSH&E_!?ePIBYs;Zr6Ga4*xpF`v&- zEEdi`SF2Su6bfC-+-EQtpin4yM0AgV_}m^LaEH4M-{d zNe9pK002AF4@7iH=bR&(&2Ehsiv@`2laNxrAB{#2)9Ew=0L!vqS=K>6*rng^e_gNF z@3`x_^;WAT4=u}|=ytns97hAt;6zjd&?=Y9n`49wheK2$*>gXpP+!1HdC8#9K|%7P#8l;_13R g5kkBIaJK9D9f4f}@hqK`?*IS*07*qoM6N<$f=KKaB>(^b diff --git a/theme/otalk/default-avatar-profile.png b/theme/otalk/default-avatar-profile.png deleted file mode 100644 index f8357d4fc296271b837b3d9911cfbc133918ef2f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2853 zcmb_ei8mD78y=G~k);$_B4nAeWf!uJb!=mwFxIgpYYNHGgi?(!!!%2>gg$GQDZ3$C zn6Z3Be3pqYcBbs~o9}=4-E-dioO|zk&w1~C&-1+RGdmkIZcbrN006*kVQvCrq1S%~ zI>VZOym_F-0`@2)3r7%ZJOcTpvDRn9&E29{{$u|cn~@yxA!}188sZx55QdC?;2r4? zc<|tXV$i*iC|~bzf5ouK0OGo?FaW@rZ((BS_>i>rHW4c7FWjxaVWi+;PI(&gUGbv) zCr`avoO2*wy=Ua~C1uC-v5*p$Q2JAp6N$SP)UT0fjP1Qa2BpIrR1SKnCEBZ}tIn-pzCOAL^VgF4S4C^PNcO*LaWpw=UvIUY^7m4i3h~MsaKF%sZz6N(33sl$Ce5KKlzn4d&swu~LH8q(F3rIK|9vBuDK&Xxv*&|}Nitk@B&1Xm=RlEy_1+0Kbz(#Fg+!DDI8Ugks(!DJ zlHJ;3R+WhBlF8(z-Rby$TN3V2k3L}|iG(&|fP@JrEjY`G;cjO~VGihvZ<#e~wwxS< z?5s_8_w=L@VjHpBh+e2V+cHXD?uusEbpJoL`sGe#%uBD|9!)k10S+Ja_ z0a9dwpwY!V*j{~oJ?mM4S5}&?NlQQ7-i{=fnyAsTpMdMw`HbWN(~h^wT&t3YhlkTj zf1=xucV`B;l$vspajqcy*&O=gGfkkfXiZZH#2ya66}Ix5?)N2y+t1(sZ~Tb_I*s72 z%yvZDdOl$agTdMb<{vHM19Bv;U$?{`i+J_Tx6cb@aL7mOst~EVTOIt~+~F;m1VV2L zx5x-I5q}f_Ls?s5+S`o^Dk|BCnqkh3i6<5y?-T_4Lnvcw_6cu_c5Tm9F!)*44VUXR zf^7Q$8HtWyl9EeNS*=g!bNn-9;AW(6oC-JmXa0?fm%o`2Ao1*s5cG_TyF6G&MPD zX&oKxPEJmQ?)+==z*;hSXmF5kq#<+6r#xIsRP?)B}1gBe9za%a;4x2G{S zR%T|YMZ3v;I3;4{bAauXR;mn{=sKJT}1XAVO%|mv1PPm}K#>vI?{ZlA$M&AI`#-iMpVKHn@jtv9? zF|d{=YJ^HkNf|R;v1n^Rc+Tm{<{ja50flYG=V%7ZGmas>-nh~7vGes`f3=+)A6i&h zF&Tm)B32O*H}8DD$9+eB9o>wf6VyXKl$FhQJmVi3nTxkm&EpfUiC|GlEszE5| zm5rrkes%Thxo!+|>cNcn=Sjxe8pP592D>1ldGDIOe&WO_Q!C{A%z(JKTRJhT;R={n zuT)f2l1G<^j@4G*P?0$aJ8om!RH7z>!DtI6FApy|;XFS@L_~CSb~36$cm?ELb7LnH zucCj8c`56q0B-q$a#jDYK-hiJcz;DePfrgdVPqqd$=tI$)M2QO4M9;>I7NE|VgRoi z(0b!+xiR#zy05(;guDP-o(Me;JHtDJ2!$U)c2n1q~pIBe~HLiIA@tHwJzNo9yij0bKYkjPT z$BPvt9GDbByOUZ1DFrGbQ1b9yjTMbHni)xk8W6=bAEx#>dUg z%*-AZqytz5EkE1iMq))f9`GKELxJZYmSCxhEQb&RflwDtPbPd-A1aO~dlwI{uoQ^! zN=(G!1qQ=BIV|BXd3>!fdMe5TXb#ptb=x_v_4l_s?yc)vWysl6U}+8>QM-_`#%Dha zT%1XL;k3Plc6#{7fB~_T)Mgt{aPI7Ql`rXb0-XA*0=r!u-*u7gJ$8-4_7greHMKg` zIJVJNDTQ|^wuv~}i%`$JGG5;ANVHNB-s9agE3Ba+=SE!+>I(u6-abCbUs8FQTis$V z5h(Gb84Ivpm*I}a+fdzbfjXBURU#Feon6f$;9x^UADn7w^lXS(2M|AoC8Y&D#^ z6k@a(P2%M$3A<8VT`dO&(<>U+Ib{}N+gN|fD&r#~BYO?HI4kgtCZS^D@S{t1Tpwsb z(&*W|RI&WJx;HFc&_N9@YDh^*Jv!N6e6-od(Q;rgb;k2A*gBJ}@D2z7NnAh`800Cn zc66Bh*R}NaN-8M4M5EEMH_v{+zNXW?4-OCamrE-HgMzlcH85ybKRQ{)1~;tP-Tl(sYl+ zS!I7?qkq$*l6##{qYBc%D6;rIMoURyO261pF_VNj@`K5~N77M-xR!a-8 MfY_K+7Z|aDy3W6;R?}) zJJa7D+8b}%q`4{D>!4paaL(^{&bi<3xi|OxZhl9J2i|dE0WSwJ z;8&o3y8I|2|D^3LB6AAh1ik=tKx{650`H~bDI%!ZcR(rC1bhe718ACt%jLrDcH?%t zsjjXjCnqQSb+v$ri3#rCzt6pU_lQIyjE#+%-9G>yipXCx_?iVMr9J?@266xz8X9P8 zYooHV@|6(Ign@wpIy*awMx%!5Z{TeaxosGd0+dqgn0n^&moHz={{8#ev17+#bDo2E zJkFUjXSj6flJR)|25b=#9i{~+rE-CvflW@QlM^RS;BvWaq&*i`u3X{NsZ&PtOA+}5 zK$|uk1vUZf+qdtvBM;Eh(!%D=n~mm2N~yO1G^JDl@G*eb>t*N8oim5o3i!0z3_V#k~=FJ5Y5fL6fe8}a?ml+uuu{^G}w$|L-;$Zs6JIj$0x~_BN z$PvQfu<=TxwzihNd-u}N&|sOw;NTz~9UY91j{}gClY`Ia!|(S~US2-$*ouk@%F4=k z^5hA?CJiVBC@U+=c;T+DE(Qk&F>ij6NQ91#4&w2+CGxtibMoZLBzb^DBEi+GR|y0H zmgXoeElpOn`8t~M;K2hfUc8vn7mvree*L9I7=(9lp?pRVhKLLsY^fGh+wHa6mLq>rRmtXN@bp62G}dHpL_uCz)C z$U;C-QBm59mz0#SXU`r>^K9F;jl8_Pls=!&$NKf_tx^KA5CGu!`|*0cGi(lrgF}Z7 zQCwVXX^w(|0uCQOJm-#8R#tN0z=3S&OkF>l&Z}3iroFwLTeoh}-`~%M4I8MhueZE^ z7}&mjJ6pGIB^V5%>pEVqmztWI1w{c1`aJY_Ja{~wg$zw1H#hgC#9diELa!s11lWxw z0d`|afZbRUU^kWo*p2_a087E#=;$cdu3aM*i=mWCMvY1-G)+s^&Gy*^NZD7@v^nFJ zEn7xYQdM$J zqX0X|X9Eq00_G&b4EX*2SC)~P4@#-D`H9idQKK4l0DXYx?%lg7JJ;3K5eNhbg+e@g z_RO3|Lqw8y$ZVf&OJ_H1=J`Z~f`S5kJ|9(8Rde`^jEoSA#f)a3A>e((QCL_wXHZE= z$!n3V0hqPWeHv2&0JwAK&Y}~_7U6K%sE&!qkj7NbX&m76>C-%a{@gBZ8S(h>V}ik; z(d+@xMC4zlGc-d(L!3Kz&L(>EBaujO{P=NnT?d!|K7;AksEB+E`~+~}!UYBf2JGUQ z7H7|%B@&4k%}+%n3^UWLRlseaLen&M?b?Ok@5kwM+CtbsG#aI|v(vn&-M~9CO?-Bu zyA}8zCnAEEc#v$kH_im?j{fjm~#(*06q~({y(4Us6jRG4bWoPoK7ce z)~s37qXxsn!{)#96Tnx%=OQvQlalTb1>gt9u>Y{fFF>Q^!yaZRr3!&Jd2!sP5vT!P pRW4Qse&@wen|>f9B54D%{{RsfdHbSpK`#IR002ovPDHLkV1m@7$GHFi diff --git a/theme/otalk/images/illustrations/illu_arrow-left-01.gif b/theme/otalk/images/illustrations/illu_arrow-left-01.gif deleted file mode 100644 index 19777597655b4bc533abcc369e93c49e6e771d96..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 75 zcmZ?wbhEHbPx>Oi4sRRCwC$TwPBaNftd--8~M86S;=S%BsCXIqfq*d2tlvw&{{d@Y0RwH!%_GYO09wl@kz}s^KK+3@ z*N*rTz%25816C=+4H)IUS6$fH1HmpX@tXHp2LMPN9tZ$@pX~x@x*nhjP-kp@uqG9F zcN02n^Vpild*Z7uh-^TTIiARg`QExK=h?d*(8ZP_qAp?$$Op{8I249$+?q$0$Z16P zmu}-a?`xIe}6+84Nj2GGrx=Fklpycmt}4);I(51J;0zy_FY9%%Njg_l7fh zbO_t9gFlKq9N$6AQ)`yN>pLJ&dZ4a+g@aDS;sg!Yqzzz*pLn^>p+CpvViOdU_m}|a z$UGZf$74GE0iu3JREaU`PugFa6pzXpv``XkfG)Oz*HTbW@zVR;%4MDnuOTs6^S(LS zm`69D!*(%7<(Y&&n6Wh6MCl2c<_=$>2u1gECw?~b)EYtP6A;{h;0A46m`9c!31Rct zn)7#T3W?_tym=xg8A7B5n`((6k%3<+_BG|b-3hSR^b9(MA@gT-38&~YG|w&~99Eq~ z28`lTZ?9~YVvwy5w6U&0c1OfsQa|klcv~e9n03%4uL2w6P zgl$|GHr_tl0u?Vo9qM6gllNYAGeVJzP82t2{3 zG*Kat;e1$GzRxI52&tSHKcw*zE0*u{Ne)b(N2-o87+4fjD)#JF@Q(#VEbY)Rhr~wI z1I70Yzh(xY0f~)}Yt51)gZArSS-cSu{cO z)EWgi?gHE$B)%p>IPbG&B8en;p{R$N{E%%F6)HW0v_N1($Jji!rYV&}3)C~l5}P`) zTy6`Wa7lj!06Y=j^X$_+wMP7a-9Q7)fSFCg|IPmn0Ral7VypyZH&lj6A3V``>vSgp zqza0f?g1eMD+elIK37IJ_AqnO|~NNg-69ig>jf_$u~Fy@7fcgQvr#sh@b z_RGc;Az&j?_C3V%jJJk?4wSg!aV)vQ)vx#7H&kP z9&eKu{E%(nJAINzri!c<7P!s}$q!f~sDC$c zm!=usE04^B=X0>qrQBLpojnA}&Lj{-waSYsV4ze+<9*gy%c@Q9`0?>9mk&0x@!R{C zv)n`OaQWm*L62n_;uf|dab?_Rm|m%}el?uRQ8W@gl4TxSb7;;yRWMNCG=Ik!F7d|y zay5Y}J&?eTbYT(HpAg*Yq~RH2mZ|`)pTrT|nJ3nH;%jWu29>Q<7ZWe}AzLX8%NcMR zLzRM?IV(CYdCt>x6sn`$k7lFId)?&Df^7_g+8FS=xKa|2Y$<;@hqn4GLRpyix|`61 zk7Z6BCu80jaCgmfXV}It_4H45BHqNW6OuWqfHpZJ*vNv5Z9u+Sk@f;G*L9kUz zMz!_liss8ErWtT_0YfQlkZLj5dk~o@4h<|$get8!lX^yq5vRpM`Tg%?D+6b+A+&p` ze?2}sTl2ojI(KxR<`j*DGu&sD?o8-~ao0Sy<{(ZK>jeE$hp=FNur44Ge5oK!_v>7~ z&u*23vz=b2u4Kiu%t#jBfVBo60Rcm1I?6Optr71t1bdbAYbk*v{rAnX66tRW1I{u4 zdkYS_YgqLhz{j`^@m}}K3Sm7($>G$Y9!D(nuqpn(9!`z% z)+o{-UXDxhW2?#P(+NHg09HohDpWr6Qux{hz zq}KK|V{xNw`BikRnn#vUPK6ek9f{qK9D8#ie$U_xYX|ztP39+-#Shp74w^7BD8I2l zPhG)vN6eCrFwJ9Y&U@Vvq<9g8C&4w^F(h|KTDSrY1l^*uBT3=~VDSO_Z%F3KPGc&_ zVy=1|K15F$SmXmn{f&nIo(lNLK2_j}A1?rWgP;OC;?JU9Ti?9!A=|(Y>?ts$))|o0 zeYy31CldAr8w;q{B~VA*88_bewDK&OX9*RHkg=6U8a(N+vB&!?wb8La*+i9j(jm5a z^!f2keYyu+nPn~a3IN$$w)5K>tCR-3x9&jJCM+f9*pVarfxA6YTNbd z$ju-GG7O=ZCzi!~-8(=&gCVE))ku`$ZDR#7pJ6k{=$Fu*f;ww7hJvo2d9JMG5Q@M2 zA(X`0*b`MBjj(EduqM3E<{)?hp*;oUsEqI%=7F*8{O93%o1sRaD z4c=#{i!PbR)|4NxA#5-`%Z)xohY536EZ^~4K)PKusDUfAkao;Kg^Ct6QKFaIZ)uJj zlkg&BnwgK8CzcgtRRNK8n2`5bw!`_ju7hmn(v_ZF^FC|34^zCv59}pLWVr~fd16`6 zFoc2gH0JKLhq+fJ5$y7Pwp&O`%!0Fm{-vm~3T1nba5$nCF$e(-t~Lk8Np3jMtu}b>XOVsWTbIawf9 z%9;SdU0mbnYHLSILv>+2FvC>lJ%#4-x)Xt0=xlwQ@A9xt;)@&w z&!nK7ythF*mRk!inix^vq>-n~l9=LgIO(Qq30RWY)at2Hi8MCl; zZw$YR1MN&6A78O#$*wAXHz{Yp`0MV{nky^o3gEr&ChxP?xWpU2&vp|_zqtJp+@&Ty zD(?caEg&HDN!cbSH;MFiJAiwmV_>`lKDKt<@C!n?b;Q^ZHqS0b*ulr3nL3Tk60!6Gp*@X|&Rja4_F5T|4m$BXZFRr+1?QC; zug^NLvF9bKj)(P)Xh1A^pABRyz|B)@7Br>1LwpUt^vb_gCr(62q!xMhTj;@FVGG2k zJDLETuD7R;)l?#Gu|5lmch_@s0kVr(x|+W=@NlF%JQn7L+_hJcG}iIC_{@fPmqF>x z?kvW*LIdFm0g2L=XO~)rxLpkl4{r(X%nz$jQEO{Q?#dzr5hcTKGn9<%LRYk??&Vi> zRn*to;a|rdR$^+Frucvvn4lYJj4YU;d9S+}nrE5CPAb)6ymf{z(B=a+t@T{^k~Tqw zs;jh(0;h0Uj%4epbyc*6f?{0FJp~Ea<-{cV+9vA%2aO$o>nq$-b^rhX07*qoM6N<$ Eg3;aPx-Zb?KzRCwC$ojq^VNEpZe$?*ZqCphy7Zs}5i(^0Inn@_-|NO4u-G8MZ8O6kx- zv73fA8)=)94#lL}E=EX*D+s2b$Vn(ZiAVwRa)rmo#OIgs%h+S@^OvlMyR|(pzj@}F zXI{L7mg~jrfewJbc-ic)v(Y{BK*CZ>Agq`fYCJt#f)oT$DdJ`wVR0G05yJQd$`Td8s!2tM+d0!>>du}p1(x(x!NT6qM-0u-F6nzq(bB_Q6AF(Dw@E|-AFFPnfMAb2?~ z1mbnm60FolofoqQ$7o=5@8R{j0b#*E>!BGS z{C$D%FF)bOpQm}dlaUEb2#9zfIslHFU=hB*{DdC|pUd(y)=foxDCPEczL-7u2!+Gg z*C$_b@$?<8PcO=T^sWh*Wj$m8 zFlDINO?-R)p{mz)tPB=%XEyHu_=xN~T zWga5`9#|c~ArFO$Kq$3*{l~#)84jd~EGwa+SvOGxhCmvCefB)%HtHw^Ll9@ENr7Jw z3k=HJ9UnNO%2^1dx{L4S#2E@%%P1?sMiYaQ-?g0;m3L8#unXE&!uHGuMfXj&K^QF8?B_NdYAFfZ%l}U@mL9sKN z8#3Re1Q2Ygx^g27g;d#6epM`l0mW2P>>*BkG|^iGAlh^cfK+XFS7a`%@tSTS900rU zCxceu&*UwFTuINh?%GVG7^?fSvY58}<#03A+M^wG;C$H@L#jwfss@#kb-8hQ|`$F;xMGUQFU_2Enw* zhf3JJHfI5{v`Qs_2$t7L3RwplZFg6^T7lp`r}!VC01h^~M=JONuc5|*Umjvv=U>{} z-IZMcsM|v5%qiScZ4aagOf4VMy8Va)$=1OEuonEIRv;JzDsRx4qW*7nOe9)|DS&l; z8QmR_68qJfftZ+p#}=>jxfboQE-l#n;UuKBLP0dTP0U5WM42#9nbH2AB)^@?9@n!bNksR#%$D5~BXFfoDk zI`T^ALx_zy98_094ocj?l~un`b&Kf_z)2KV*M30)o_PD$BXxRhYj=>C5TD=i*6;+U*Gp-vNLu?-iZ?VpDlx1NHu@&)q{@PC|&<>aJ zsOvc4ek}w-)HP1Hpa0#EL7g=XQNJ&uaY}v$1#55CLKjSY64_RP`;Cn6Hv}s)sUT$np=C%*R0BE8aQ}Xm zgo*kPaebwY=tUsC7^=exb}pv{fui2;!QcDnWk_#S`X@0JCR3f5{MdrOH8PZCUj`6S zW@iNd*J?G=n+;rtKVg)2KZDDqUxn%D^@#FxA$AN>P?q;maMxFn z^C4`G>^$P{yI1`i2s(B zKS#EO2&j%D)4!&{hGnuqSC7k= z6O*4+);&HB+mlT1n~2B8iM`+0000 Date: Thu, 25 Feb 2010 13:08:55 +0100 Subject: [PATCH 032/362] Localisation updates for !StatusNet from !translatewiki.net !sntrans Signed-off-by: Siebrand Mazeland --- locale/fr/LC_MESSAGES/statusnet.po | 34 +++++++++++----------- locale/mk/LC_MESSAGES/statusnet.po | 36 +++++++++++------------ locale/nl/LC_MESSAGES/statusnet.po | 38 ++++++++++++------------ locale/pl/LC_MESSAGES/statusnet.po | 46 +++++++++++++++--------------- locale/ru/LC_MESSAGES/statusnet.po | 38 ++++++++++++------------ locale/statusnet.po | 12 ++++---- locale/uk/LC_MESSAGES/statusnet.po | 35 +++++++++++------------ 7 files changed, 117 insertions(+), 122 deletions(-) diff --git a/locale/fr/LC_MESSAGES/statusnet.po b/locale/fr/LC_MESSAGES/statusnet.po index cf0cc849b2..f5b7711400 100644 --- a/locale/fr/LC_MESSAGES/statusnet.po +++ b/locale/fr/LC_MESSAGES/statusnet.po @@ -14,12 +14,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-02-24 23:49+0000\n" -"PO-Revision-Date: 2010-02-24 23:50:48+0000\n" +"POT-Creation-Date: 2010-02-25 11:54+0000\n" +"PO-Revision-Date: 2010-02-25 11:55:22+0000\n" "Language-Team: French\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r62925); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r62948); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: out-statusnet\n" @@ -3984,17 +3984,17 @@ msgstr "Impossible d’enregistrer l’abonnement." #: actions/subscribe.php:77 msgid "This action only accepts POST requests." -msgstr "" +msgstr "Cette action n'accepte que les requêtes de type POST." #: actions/subscribe.php:107 -#, fuzzy msgid "No such profile." -msgstr "Fichier non trouvé." +msgstr "Profil non-trouvé." #: actions/subscribe.php:117 -#, fuzzy msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." -msgstr "Vous n’êtes pas abonné(e) à ce profil." +msgstr "" +"Vous ne pouvez pas vous abonner à un profil OMB 0.1 distant par cette " +"action." #: actions/subscribe.php:145 msgid "Subscribed" @@ -4816,15 +4816,15 @@ msgstr "Avant" #: lib/activity.php:382 msgid "Can't handle remote content yet." -msgstr "" +msgstr "Impossible de gérer le contenu distant pour le moment." #: lib/activity.php:410 msgid "Can't handle embedded XML content yet." -msgstr "" +msgstr "Impossible de gérer le contenu XML embarqué pour le moment." #: lib/activity.php:414 msgid "Can't handle embedded Base64 content yet." -msgstr "" +msgstr "Impossible de gérer le contenu en Base64 embarqué pour le moment." #: lib/adminpanelaction.php:96 msgid "You cannot make changes to this site." @@ -5214,7 +5214,6 @@ msgstr[0] "Vous êtes membre de ce groupe :" msgstr[1] "Vous êtes membre de ces groupes :" #: lib/command.php:769 -#, fuzzy msgid "" "Commands:\n" "on - turn on notifications\n" @@ -5267,6 +5266,7 @@ msgstr "" "d - message direct à l’utilisateur\n" "get - obtenir le dernier avis de l’utilisateur\n" "whois - obtenir le profil de l’utilisateur\n" +"lose - forcer un utilisateur à arrêter de vous suivre\n" "fav - ajouter de dernier avis de l’utilisateur comme favori\n" "fav # - ajouter l’avis correspondant à l’identifiant comme " "favori\n" @@ -5500,23 +5500,23 @@ msgstr "Erreur système lors du transfert du fichier." msgid "Not an image or corrupt file." msgstr "Ceci n’est pas une image, ou c’est un fichier corrompu." -#: lib/imagefile.php:105 +#: lib/imagefile.php:109 msgid "Unsupported image file format." msgstr "Format de fichier d’image non supporté." -#: lib/imagefile.php:118 +#: lib/imagefile.php:122 msgid "Lost our file." msgstr "Fichier perdu." -#: lib/imagefile.php:150 lib/imagefile.php:197 +#: lib/imagefile.php:166 lib/imagefile.php:231 msgid "Unknown file type" msgstr "Type de fichier inconnu" -#: lib/imagefile.php:217 +#: lib/imagefile.php:251 msgid "MB" msgstr "Mo" -#: lib/imagefile.php:219 +#: lib/imagefile.php:253 msgid "kB" msgstr "Ko" diff --git a/locale/mk/LC_MESSAGES/statusnet.po b/locale/mk/LC_MESSAGES/statusnet.po index 14efaf620d..8d9e550696 100644 --- a/locale/mk/LC_MESSAGES/statusnet.po +++ b/locale/mk/LC_MESSAGES/statusnet.po @@ -9,12 +9,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-02-24 23:49+0000\n" -"PO-Revision-Date: 2010-02-24 23:51:18+0000\n" +"POT-Creation-Date: 2010-02-25 11:54+0000\n" +"PO-Revision-Date: 2010-02-25 11:56:05+0000\n" "Language-Team: Macedonian\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r62925); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r62948); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: out-statusnet\n" @@ -3957,17 +3957,16 @@ msgstr "Не можев да ја зачувам претплатата." #: actions/subscribe.php:77 msgid "This action only accepts POST requests." -msgstr "" +msgstr "Ова дејство прифаќа само POST-барања" #: actions/subscribe.php:107 -#, fuzzy msgid "No such profile." -msgstr "Нема таква податотека." +msgstr "Нема таков профил." #: actions/subscribe.php:117 -#, fuzzy msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." -msgstr "Не сте претплатени на тој профил." +msgstr "" +"Не можете да се претплатите на OMB 0.1 оддалечен профил со ова дејство." #: actions/subscribe.php:145 msgid "Subscribed" @@ -4786,15 +4785,15 @@ msgstr "Пред" #: lib/activity.php:382 msgid "Can't handle remote content yet." -msgstr "" +msgstr "Сè уште не е поддржана обработката на оддалечена содржина." #: lib/activity.php:410 msgid "Can't handle embedded XML content yet." -msgstr "" +msgstr "Сè уште не е поддржана обработката на XML содржина." #: lib/activity.php:414 msgid "Can't handle embedded Base64 content yet." -msgstr "" +msgstr "Сè уште не е достапна обработката на вметната Base64 содржина." #: lib/adminpanelaction.php:96 msgid "You cannot make changes to this site." @@ -5143,9 +5142,9 @@ msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "Оваа врска може да се употреби само еднаш, и трае само 2 минути: %s" #: lib/command.php:692 -#, fuzzy, php-format +#, php-format msgid "Unsubscribed %s" -msgstr "Претплатата на %s е откажана" +msgstr "Откажана претплата на %s" #: lib/command.php:709 msgid "You are not subscribed to anyone." @@ -5178,7 +5177,6 @@ msgstr[0] "Не ни го испративте тој профил." msgstr[1] "Не ни го испративте тој профил." #: lib/command.php:769 -#, fuzzy msgid "" "Commands:\n" "on - turn on notifications\n" @@ -5459,23 +5457,23 @@ msgstr "Системска грешка при подигањето на под msgid "Not an image or corrupt file." msgstr "Не е слика или податотеката е пореметена." -#: lib/imagefile.php:105 +#: lib/imagefile.php:109 msgid "Unsupported image file format." msgstr "Неподдржан фомрат на слики." -#: lib/imagefile.php:118 +#: lib/imagefile.php:122 msgid "Lost our file." msgstr "Податотеката е изгубена." -#: lib/imagefile.php:150 lib/imagefile.php:197 +#: lib/imagefile.php:166 lib/imagefile.php:231 msgid "Unknown file type" msgstr "Непознат тип на податотека" -#: lib/imagefile.php:217 +#: lib/imagefile.php:251 msgid "MB" msgstr "МБ" -#: lib/imagefile.php:219 +#: lib/imagefile.php:253 msgid "kB" msgstr "кб" diff --git a/locale/nl/LC_MESSAGES/statusnet.po b/locale/nl/LC_MESSAGES/statusnet.po index 1cd71ad868..e01fb6d3f0 100644 --- a/locale/nl/LC_MESSAGES/statusnet.po +++ b/locale/nl/LC_MESSAGES/statusnet.po @@ -10,12 +10,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-02-24 23:49+0000\n" -"PO-Revision-Date: 2010-02-24 23:51:28+0000\n" +"POT-Creation-Date: 2010-02-25 11:54+0000\n" +"PO-Revision-Date: 2010-02-25 11:56:20+0000\n" "Language-Team: Dutch\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r62925); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r62948); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: out-statusnet\n" @@ -3981,17 +3981,17 @@ msgstr "Het was niet mogelijk het abonnement op te slaan." #: actions/subscribe.php:77 msgid "This action only accepts POST requests." -msgstr "" +msgstr "Deze handeling accepteert alleen POST-verzoeken." #: actions/subscribe.php:107 -#, fuzzy msgid "No such profile." -msgstr "Het bestand bestaat niet." +msgstr "Het profiel bestaat niet." #: actions/subscribe.php:117 -#, fuzzy msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." -msgstr "U bent niet geabonneerd op dat profiel." +msgstr "" +"U kunt niet abonneren op een OMB 1.0 profiel van een andere omgeving via " +"deze handeling." #: actions/subscribe.php:145 msgid "Subscribed" @@ -4820,15 +4820,15 @@ msgstr "Eerder" #: lib/activity.php:382 msgid "Can't handle remote content yet." -msgstr "" +msgstr "Het is nog niet mogelijk inhoud uit andere omgevingen te verwerken." #: lib/activity.php:410 msgid "Can't handle embedded XML content yet." -msgstr "" +msgstr "Het is nog niet mogelijk ingebedde XML-inhoud te verwerken" #: lib/activity.php:414 msgid "Can't handle embedded Base64 content yet." -msgstr "" +msgstr "Het is nog niet mogelijk ingebedde Base64-inhoud te verwerken" #: lib/adminpanelaction.php:96 msgid "You cannot make changes to this site." @@ -5182,9 +5182,9 @@ msgstr "" "geldig: %s" #: lib/command.php:692 -#, fuzzy, php-format +#, php-format msgid "Unsubscribed %s" -msgstr "Uw abonnement op %s is opgezegd" +msgstr "Het abonnement van %s is opgeheven" #: lib/command.php:709 msgid "You are not subscribed to anyone." @@ -5217,7 +5217,6 @@ msgstr[0] "U bent lid van deze groep:" msgstr[1] "U bent lid van deze groepen:" #: lib/command.php:769 -#, fuzzy msgid "" "Commands:\n" "on - turn on notifications\n" @@ -5270,6 +5269,7 @@ msgstr "" "d - direct bericht aan gebruiker\n" "get - laatste mededeling van gebruiker opvragen\n" "whois - profielinformatie van gebruiker opvragen\n" +"lose - zorgt ervoor dat de gebruiker u niet meer volgt\n" "fav - laatste mededeling van gebruiker op favorietenlijst " "zetten\n" "fav # - mededelingen met aangegeven ID op favorietenlijst " @@ -5501,23 +5501,23 @@ msgstr "Er is een systeemfout opgetreden tijdens het uploaden van het bestand." msgid "Not an image or corrupt file." msgstr "Het bestand is geen afbeelding of het bestand is beschadigd." -#: lib/imagefile.php:105 +#: lib/imagefile.php:109 msgid "Unsupported image file format." msgstr "Niet ondersteund beeldbestandsformaat." -#: lib/imagefile.php:118 +#: lib/imagefile.php:122 msgid "Lost our file." msgstr "Het bestand is zoekgeraakt." -#: lib/imagefile.php:150 lib/imagefile.php:197 +#: lib/imagefile.php:166 lib/imagefile.php:231 msgid "Unknown file type" msgstr "Onbekend bestandstype" -#: lib/imagefile.php:217 +#: lib/imagefile.php:251 msgid "MB" msgstr "MB" -#: lib/imagefile.php:219 +#: lib/imagefile.php:253 msgid "kB" msgstr "kB" diff --git a/locale/pl/LC_MESSAGES/statusnet.po b/locale/pl/LC_MESSAGES/statusnet.po index 79b37a5e4c..5f4b051cb9 100644 --- a/locale/pl/LC_MESSAGES/statusnet.po +++ b/locale/pl/LC_MESSAGES/statusnet.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-02-24 23:49+0000\n" -"PO-Revision-Date: 2010-02-24 23:51:31+0000\n" +"POT-Creation-Date: 2010-02-25 11:54+0000\n" +"PO-Revision-Date: 2010-02-25 11:56:23+0000\n" "Last-Translator: Piotr Drąg \n" "Language-Team: Polish \n" "MIME-Version: 1.0\n" @@ -19,7 +19,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2);\n" -"X-Generator: MediaWiki 1.17alpha (r62925); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r62948); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pl\n" "X-Message-Group: out-statusnet\n" @@ -1100,7 +1100,7 @@ msgstr "Zmień kolory" #: actions/designadminpanel.php:510 lib/designsettings.php:191 msgid "Content" -msgstr "Zawartość" +msgstr "Treść" #: actions/designadminpanel.php:523 lib/designsettings.php:204 msgid "Sidebar" @@ -2160,7 +2160,7 @@ msgstr "Nie można wysłać wiadomości do tego użytkownika." #: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:342 #: lib/command.php:475 msgid "No content!" -msgstr "Brak zawartości." +msgstr "Brak treści." #: actions/newmessage.php:158 msgid "No recipient specified." @@ -2198,7 +2198,7 @@ msgid "" "Search for notices on %%site.name%% by their contents. Separate search terms " "by spaces; they must be 3 characters or more." msgstr "" -"Wyszukaj wpisy na %%site.name%% według ich zawartości. Oddziel wyszukiwane " +"Wyszukaj wpisy na %%site.name%% według ich treści. Oddziel wyszukiwane " "terminy spacjami. Terminy muszą mieć trzy znaki lub więcej." #: actions/noticesearch.php:78 @@ -3925,17 +3925,17 @@ msgstr "Nie można zapisać subskrypcji." #: actions/subscribe.php:77 msgid "This action only accepts POST requests." -msgstr "" +msgstr "Ta czynność przyjmuje tylko żądania POST." #: actions/subscribe.php:107 -#, fuzzy msgid "No such profile." -msgstr "Nie ma takiego pliku." +msgstr "Nie ma takiego profilu." #: actions/subscribe.php:117 -#, fuzzy msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." -msgstr "Nie jesteś subskrybowany do tego profilu." +msgstr "" +"Nie można subskrybować zdalnego profilu profilu OMB 0.1 za pomocą tej " +"czynności." #: actions/subscribe.php:145 msgid "Subscribed" @@ -4754,15 +4754,15 @@ msgstr "Wcześniej" #: lib/activity.php:382 msgid "Can't handle remote content yet." -msgstr "" +msgstr "Nie można jeszcze obsługiwać zdalnej treści." #: lib/activity.php:410 msgid "Can't handle embedded XML content yet." -msgstr "" +msgstr "Nie można jeszcze obsługiwać zagnieżdżonej treści XML." #: lib/activity.php:414 msgid "Can't handle embedded Base64 content yet." -msgstr "" +msgstr "Nie można jeszcze obsługiwać zagnieżdżonej treści Base64." #: lib/adminpanelaction.php:96 msgid "You cannot make changes to this site." @@ -5112,7 +5112,7 @@ msgstr "" "minuty: %s." #: lib/command.php:692 -#, fuzzy, php-format +#, php-format msgid "Unsubscribed %s" msgstr "Usunięto subskrypcję użytkownika %s" @@ -5150,7 +5150,6 @@ msgstr[1] "Jesteś członkiem tych grup:" msgstr[2] "Jesteś członkiem tych grup:" #: lib/command.php:769 -#, fuzzy msgid "" "Commands:\n" "on - turn on notifications\n" @@ -5195,14 +5194,15 @@ msgstr "" "on - włącza powiadomienia\n" "off - wyłącza powiadomienia\n" "help - wyświetla tę pomoc\n" -"follow - włącza obserwowanie użytkownika\n" +"follow - subskrybuje użytkownika\n" "groups - wyświetla listę grup, do których dołączyłeś\n" "subscriptions - wyświetla listę obserwowanych osób\n" "subscribers - wyświetla listę osób, które cię obserwują\n" -"leave - rezygnuje z obserwowania użytkownika\n" +"leave - usuwa subskrypcję użytkownika\n" "d - bezpośrednia wiadomość do użytkownika\n" "get - zwraca ostatni wpis użytkownika\n" "whois - zwraca informacje o profilu użytkownika\n" +"lose - wymusza użytkownika do zatrzymania obserwowania cię\n" "fav - dodaje ostatni wpis użytkownika jako \"ulubiony\"\n" "fav # - dodaje wpis z podanym identyfikatorem jako " "\"ulubiony\"\n" @@ -5433,23 +5433,23 @@ msgstr "Błąd systemu podczas wysyłania pliku." msgid "Not an image or corrupt file." msgstr "To nie jest obraz lub lub plik jest uszkodzony." -#: lib/imagefile.php:105 +#: lib/imagefile.php:109 msgid "Unsupported image file format." msgstr "Nieobsługiwany format pliku obrazu." -#: lib/imagefile.php:118 +#: lib/imagefile.php:122 msgid "Lost our file." msgstr "Utracono plik." -#: lib/imagefile.php:150 lib/imagefile.php:197 +#: lib/imagefile.php:166 lib/imagefile.php:231 msgid "Unknown file type" msgstr "Nieznany typ pliku" -#: lib/imagefile.php:217 +#: lib/imagefile.php:251 msgid "MB" msgstr "MB" -#: lib/imagefile.php:219 +#: lib/imagefile.php:253 msgid "kB" msgstr "KB" diff --git a/locale/ru/LC_MESSAGES/statusnet.po b/locale/ru/LC_MESSAGES/statusnet.po index d4df1a6548..a23f7c2f30 100644 --- a/locale/ru/LC_MESSAGES/statusnet.po +++ b/locale/ru/LC_MESSAGES/statusnet.po @@ -12,12 +12,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-02-24 23:49+0000\n" -"PO-Revision-Date: 2010-02-24 23:51:41+0000\n" +"POT-Creation-Date: 2010-02-25 11:54+0000\n" +"PO-Revision-Date: 2010-02-25 11:56:32+0000\n" "Language-Team: Russian\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r62925); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r62948); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: out-statusnet\n" @@ -3948,17 +3948,17 @@ msgstr "Не удаётся сохранить подписку." #: actions/subscribe.php:77 msgid "This action only accepts POST requests." -msgstr "" +msgstr "Это действие принимает только POST-запросы." #: actions/subscribe.php:107 -#, fuzzy msgid "No such profile." -msgstr "Нет такого файла." +msgstr "Нет такого профиля." #: actions/subscribe.php:117 -#, fuzzy msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." -msgstr "Вы не подписаны на этот профиль." +msgstr "" +"Вы не можете подписаться на удалённый профиль OMB 0.1 с помощью этого " +"действия." #: actions/subscribe.php:145 msgid "Subscribed" @@ -4774,15 +4774,15 @@ msgstr "Туда" #: lib/activity.php:382 msgid "Can't handle remote content yet." -msgstr "" +msgstr "Пока ещё нельзя обрабатывать удалённое содержимое." #: lib/activity.php:410 msgid "Can't handle embedded XML content yet." -msgstr "" +msgstr "Пока ещё нельзя обрабатывать встроенный XML." #: lib/activity.php:414 msgid "Can't handle embedded Base64 content yet." -msgstr "" +msgstr "Пока ещё нельзя обрабатывать встроенное содержание Base64." #: lib/adminpanelaction.php:96 msgid "You cannot make changes to this site." @@ -5130,9 +5130,9 @@ msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "Эта ссылка действительна только один раз в течение 2 минут: %s" #: lib/command.php:692 -#, fuzzy, php-format +#, php-format msgid "Unsubscribed %s" -msgstr "Отписано от %s" +msgstr "Отписано %s" #: lib/command.php:709 msgid "You are not subscribed to anyone." @@ -5168,7 +5168,6 @@ msgstr[1] "Вы являетесь участником следующих гр msgstr[2] "Вы являетесь участником следующих групп:" #: lib/command.php:769 -#, fuzzy msgid "" "Commands:\n" "on - turn on notifications\n" @@ -5221,6 +5220,7 @@ msgstr "" "d — прямое сообщение пользователю\n" "get — получить последнюю запись от пользователя\n" "whois — получить информацию из профиля пользователя\n" +"lose — отменить подписку пользователя на вас\n" "fav — добавить последнюю запись пользователя в число любимых\n" "fav # — добавить запись с заданным id в число любимых\n" "repeat # — повторить уведомление с заданным id\n" @@ -5449,23 +5449,23 @@ msgstr "Системная ошибка при загрузке файла." msgid "Not an image or corrupt file." msgstr "Не является изображением или повреждённый файл." -#: lib/imagefile.php:105 +#: lib/imagefile.php:109 msgid "Unsupported image file format." msgstr "Неподдерживаемый формат файла изображения." -#: lib/imagefile.php:118 +#: lib/imagefile.php:122 msgid "Lost our file." msgstr "Потерян файл." -#: lib/imagefile.php:150 lib/imagefile.php:197 +#: lib/imagefile.php:166 lib/imagefile.php:231 msgid "Unknown file type" msgstr "Неподдерживаемый тип файла" -#: lib/imagefile.php:217 +#: lib/imagefile.php:251 msgid "MB" msgstr "МБ" -#: lib/imagefile.php:219 +#: lib/imagefile.php:253 msgid "kB" msgstr "КБ" diff --git a/locale/statusnet.po b/locale/statusnet.po index cf44e2d3c9..483c7711b4 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: 2010-02-24 23:49+0000\n" +"POT-Creation-Date: 2010-02-25 11:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -5095,23 +5095,23 @@ msgstr "" msgid "Not an image or corrupt file." msgstr "" -#: lib/imagefile.php:105 +#: lib/imagefile.php:109 msgid "Unsupported image file format." msgstr "" -#: lib/imagefile.php:118 +#: lib/imagefile.php:122 msgid "Lost our file." msgstr "" -#: lib/imagefile.php:150 lib/imagefile.php:197 +#: lib/imagefile.php:166 lib/imagefile.php:231 msgid "Unknown file type" msgstr "" -#: lib/imagefile.php:217 +#: lib/imagefile.php:251 msgid "MB" msgstr "" -#: lib/imagefile.php:219 +#: lib/imagefile.php:253 msgid "kB" msgstr "" diff --git a/locale/uk/LC_MESSAGES/statusnet.po b/locale/uk/LC_MESSAGES/statusnet.po index c261c310da..cf1a2bf622 100644 --- a/locale/uk/LC_MESSAGES/statusnet.po +++ b/locale/uk/LC_MESSAGES/statusnet.po @@ -10,12 +10,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-02-24 23:49+0000\n" -"PO-Revision-Date: 2010-02-24 23:51:53+0000\n" +"POT-Creation-Date: 2010-02-25 11:54+0000\n" +"PO-Revision-Date: 2010-02-25 11:56:43+0000\n" "Language-Team: Ukrainian\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r62925); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r62948); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: out-statusnet\n" @@ -3934,17 +3934,15 @@ msgstr "Не вдалося зберегти підписку." #: actions/subscribe.php:77 msgid "This action only accepts POST requests." -msgstr "" +msgstr "Ця дія приймає лише запити POST." #: actions/subscribe.php:107 -#, fuzzy msgid "No such profile." -msgstr "Такого файлу немає." +msgstr "Немає такого профілю." #: actions/subscribe.php:117 -#, fuzzy msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." -msgstr "Ви не підписані до цього профілю." +msgstr "Цією дією Ви не зможете підписатися до віддаленого профілю OMB 0.1." #: actions/subscribe.php:145 msgid "Subscribed" @@ -4757,15 +4755,15 @@ msgstr "Назад" #: lib/activity.php:382 msgid "Can't handle remote content yet." -msgstr "" +msgstr "Поки що не можу обробити віддалений контент." #: lib/activity.php:410 msgid "Can't handle embedded XML content yet." -msgstr "" +msgstr "Поки що не можу обробити вбудований XML контент." #: lib/activity.php:414 msgid "Can't handle embedded Base64 content yet." -msgstr "" +msgstr "Поки що не можу обробити вбудований контент Base64." #: lib/adminpanelaction.php:96 msgid "You cannot make changes to this site." @@ -5113,9 +5111,9 @@ msgstr "" "Це посилання можна використати лише раз, воно дійсне протягом 2 хвилин: %s" #: lib/command.php:692 -#, fuzzy, php-format +#, php-format msgid "Unsubscribed %s" -msgstr "Відписано від %s" +msgstr "Відписано %s" #: lib/command.php:709 msgid "You are not subscribed to anyone." @@ -5151,7 +5149,6 @@ msgstr[1] "Ви є учасником таких груп:" msgstr[2] "Ви є учасником таких груп:" #: lib/command.php:769 -#, fuzzy msgid "" "Commands:\n" "on - turn on notifications\n" @@ -5429,23 +5426,23 @@ msgstr "Система відповіла помилкою при заванта msgid "Not an image or corrupt file." msgstr "Це не зображення, або файл зіпсовано." -#: lib/imagefile.php:105 +#: lib/imagefile.php:109 msgid "Unsupported image file format." msgstr "Формат зображення не підтримується." -#: lib/imagefile.php:118 +#: lib/imagefile.php:122 msgid "Lost our file." msgstr "Файл втрачено." -#: lib/imagefile.php:150 lib/imagefile.php:197 +#: lib/imagefile.php:166 lib/imagefile.php:231 msgid "Unknown file type" msgstr "Тип файлу не підтримується" -#: lib/imagefile.php:217 +#: lib/imagefile.php:251 msgid "MB" msgstr "Мб" -#: lib/imagefile.php:219 +#: lib/imagefile.php:253 msgid "kB" msgstr "кб" From e6858d7203bd36923f6251968bede6f4b271bf84 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Thu, 25 Feb 2010 08:44:15 -0500 Subject: [PATCH 033/362] modify group actions so they use Local_group to look up by nickname --- actions/apigroupcreate.php | 8 ++-- actions/apigrouplistall.php | 10 ++--- actions/blockedfromgroup.php | 9 ++++- actions/editgroup.php | 14 ++++++- actions/foafgroup.php | 17 ++++++--- actions/groupdesignsettings.php | 5 ++- actions/grouplogo.php | 5 ++- actions/groupmembers.php | 9 ++++- actions/grouprss.php | 9 ++++- actions/groups.php | 18 +++++---- actions/joingroup.php | 9 ++++- actions/leavegroup.php | 9 ++++- actions/newgroup.php | 7 ++-- actions/showgroup.php | 10 ++++- classes/Local_group.php | 29 ++++++++++++-- classes/User_group.php | 68 +++++++++++++++++++-------------- lib/api.php | 21 ++++++++-- 17 files changed, 190 insertions(+), 67 deletions(-) diff --git a/actions/apigroupcreate.php b/actions/apigroupcreate.php index 028d76a782..145806356c 100644 --- a/actions/apigroupcreate.php +++ b/actions/apigroupcreate.php @@ -123,7 +123,9 @@ class ApiGroupCreateAction extends ApiAuthAction 'description' => $this->description, 'location' => $this->location, 'aliases' => $this->aliases, - 'userid' => $this->user->id)); + 'userid' => $this->user->id, + 'local' => true)); + switch($this->format) { case 'xml': $this->showSingleXmlGroup($group); @@ -306,9 +308,9 @@ class ApiGroupCreateAction extends ApiAuthAction function groupNicknameExists($nickname) { - $group = User_group::staticGet('nickname', $nickname); + $local = Local_group::staticGet('nickname', $nickname); - if (!empty($group)) { + if (!empty($local)) { return true; } diff --git a/actions/apigrouplistall.php b/actions/apigrouplistall.php index d2ef2978aa..e1b54a8322 100644 --- a/actions/apigrouplistall.php +++ b/actions/apigrouplistall.php @@ -134,13 +134,13 @@ class ApiGroupListAllAction extends ApiPrivateAuthAction function getGroups() { - $groups = array(); - - // XXX: Use the $page, $count, $max_id, $since_id, and $since parameters + $qry = 'SELECT user_group.* '. + 'from user_group join local_group on user_group.id = local_group.group_id '. + 'order by created desc '; $group = new User_group(); - $group->orderBy('created DESC'); - $group->find(); + + $group->query($qry); while ($group->fetch()) { $groups[] = clone($group); diff --git a/actions/blockedfromgroup.php b/actions/blockedfromgroup.php index 0b4caf5bf3..a0598db270 100644 --- a/actions/blockedfromgroup.php +++ b/actions/blockedfromgroup.php @@ -74,7 +74,14 @@ class BlockedfromgroupAction extends GroupDesignAction return false; } - $this->group = User_group::staticGet('nickname', $nickname); + $local = Local_group::staticGet('nickname', $nickname); + + if (!$local) { + $this->clientError(_('No such group.'), 404); + return false; + } + + $this->group = User_group::staticGet('id', $local->group_id); if (!$this->group) { $this->clientError(_('No such group.'), 404); diff --git a/actions/editgroup.php b/actions/editgroup.php index ad0b6e185d..bbbb7a0f4a 100644 --- a/actions/editgroup.php +++ b/actions/editgroup.php @@ -86,10 +86,14 @@ class EditgroupAction extends GroupDesignAction } $groupid = $this->trimmed('groupid'); + if ($groupid) { $this->group = User_group::staticGet('id', $groupid); } else { - $this->group = User_group::staticGet('nickname', $nickname); + $local = Local_group::staticGet('nickname', $nickname); + if ($local) { + $this->group = User_group::staticGet('id', $local->group_id); + } } if (!$this->group) { @@ -259,6 +263,12 @@ class EditgroupAction extends GroupDesignAction $this->serverError(_('Could not create aliases.')); } + if ($nickname != $orig->nickname) { + common_log(LOG_INFO, "Saving local group info."); + $local = Local_group::staticGet('group_id', $this->group->id); + $local->setNickname($nickname); + } + $this->group->query('COMMIT'); if ($this->group->nickname != $orig->nickname) { @@ -272,7 +282,7 @@ class EditgroupAction extends GroupDesignAction function nicknameExists($nickname) { - $group = User_group::staticGet('nickname', $nickname); + $group = Local_group::staticGet('nickname', $nickname); if (!empty($group) && $group->id != $this->group->id) { diff --git a/actions/foafgroup.php b/actions/foafgroup.php index f5fd7fe885..ebdf1cee25 100644 --- a/actions/foafgroup.php +++ b/actions/foafgroup.php @@ -56,7 +56,14 @@ class FoafGroupAction extends Action return false; } - $this->group = User_group::staticGet('nickname', $this->nickname); + $local = Local_group::staticGet('nickname', $nickname); + + if (!$local) { + $this->clientError(_('No such group.'), 404); + return false; + } + + $this->group = User_group::staticGet('id', $local->group_id); if (!$this->group) { $this->clientError(_('No such group.'), 404); @@ -113,7 +120,7 @@ class FoafGroupAction extends Action if ($this->group->homepage_logo) { $this->element('depiction', array('rdf:resource' => $this->group->homepage_logo)); } - + $members = $this->group->getMembers(); $member_details = array(); while ($members->fetch()) { @@ -123,7 +130,7 @@ class FoafGroupAction extends Action ); $this->element('member', array('rdf:resource' => $member_uri)); } - + $admins = $this->group->getAdmins(); while ($admins->fetch()) { $admin_uri = common_local_url('userbyid', array('id'=>$admins->id)); @@ -132,7 +139,7 @@ class FoafGroupAction extends Action } $this->elementEnd('Group'); - + ksort($member_details); foreach ($member_details as $uri => $details) { if ($details['is_admin']) @@ -158,7 +165,7 @@ class FoafGroupAction extends Action )); } } - + $this->elementEnd('rdf:RDF'); $this->endXML(); } diff --git a/actions/groupdesignsettings.php b/actions/groupdesignsettings.php index e290ba5141..526226a285 100644 --- a/actions/groupdesignsettings.php +++ b/actions/groupdesignsettings.php @@ -90,7 +90,10 @@ class GroupDesignSettingsAction extends DesignSettingsAction if ($groupid) { $this->group = User_group::staticGet('id', $groupid); } else { - $this->group = User_group::staticGet('nickname', $nickname); + $local = Local_group::staticGet('nickname', $nickname); + if ($local) { + $this->group = User_group::staticGet('id', $local->group_id); + } } if (!$this->group) { diff --git a/actions/grouplogo.php b/actions/grouplogo.php index 3c9b562962..f414a23cc3 100644 --- a/actions/grouplogo.php +++ b/actions/grouplogo.php @@ -92,7 +92,10 @@ class GrouplogoAction extends GroupDesignAction if ($groupid) { $this->group = User_group::staticGet('id', $groupid); } else { - $this->group = User_group::staticGet('nickname', $nickname); + $local = Local_group::staticGet('nickname', $nickname); + if ($local) { + $this->group = User_group::staticGet('id', $local->group_id); + } } if (!$this->group) { diff --git a/actions/groupmembers.php b/actions/groupmembers.php index f16e972a41..a16debd7b0 100644 --- a/actions/groupmembers.php +++ b/actions/groupmembers.php @@ -77,7 +77,14 @@ class GroupmembersAction extends GroupDesignAction return false; } - $this->group = User_group::staticGet('nickname', $nickname); + $local = Local_group::staticGet('nickname', $nickname); + + if (!$local) { + $this->clientError(_('No such group.'), 404); + return false; + } + + $this->group = User_group::staticGet('id', $local->group_id); if (!$this->group) { $this->clientError(_('No such group.'), 404); diff --git a/actions/grouprss.php b/actions/grouprss.php index 866fc66eb1..490f6f945c 100644 --- a/actions/grouprss.php +++ b/actions/grouprss.php @@ -92,7 +92,14 @@ class groupRssAction extends Rss10Action return false; } - $this->group = User_group::staticGet('nickname', $nickname); + $local = Local_group::staticGet('nickname', $nickname); + + if (!$local) { + $this->clientError(_('No such group.'), 404); + return false; + } + + $this->group = User_group::staticGet('id', $local->group_id); if (!$this->group) { $this->clientError(_('No such group.'), 404); diff --git a/actions/groups.php b/actions/groups.php index 10a1d5964d..8aacff8b0e 100644 --- a/actions/groups.php +++ b/actions/groups.php @@ -109,17 +109,21 @@ class GroupsAction extends Action } $offset = ($this->page-1) * GROUPS_PER_PAGE; - $limit = GROUPS_PER_PAGE + 1; + $limit = GROUPS_PER_PAGE + 1; + + $qry = 'SELECT user_group.* '. + 'from user_group join local_group on user_group.id = local_group.group_id '. + 'order by user_group.created desc '. + 'limit ' . $limit . ' offset ' . $offset; $groups = new User_group(); - $groups->orderBy('created DESC'); - $groups->limit($offset, $limit); $cnt = 0; - if ($groups->find()) { - $gl = new GroupList($groups, null, $this); - $cnt = $gl->show(); - } + + $groups->query($qry); + + $gl = new GroupList($groups, null, $this); + $cnt = $gl->show(); $this->pagination($this->page > 1, $cnt > GROUPS_PER_PAGE, $this->page, 'groups'); diff --git a/actions/joingroup.php b/actions/joingroup.php index 235e5ab4c2..ba642f7129 100644 --- a/actions/joingroup.php +++ b/actions/joingroup.php @@ -77,7 +77,14 @@ class JoingroupAction extends Action return false; } - $this->group = User_group::staticGet('nickname', $nickname); + $local = Local_group::staticGet('nickname', $nickname); + + if (!$local) { + $this->clientError(_('No such group.'), 404); + return false; + } + + $this->group = User_group::staticGet('id', $local->group_id); if (!$this->group) { $this->clientError(_('No such group.'), 404); diff --git a/actions/leavegroup.php b/actions/leavegroup.php index 9b9d83b6ca..222d4c1b43 100644 --- a/actions/leavegroup.php +++ b/actions/leavegroup.php @@ -77,7 +77,14 @@ class LeavegroupAction extends Action return false; } - $this->group = User_group::staticGet('nickname', $nickname); + $local = Local_group::staticGet('nickname', $nickname); + + if (!$local) { + $this->clientError(_('No such group.'), 404); + return false; + } + + $this->group = User_group::staticGet('id', $local->group_id); if (!$this->group) { $this->clientError(_('No such group.'), 404); diff --git a/actions/newgroup.php b/actions/newgroup.php index 25da7f8fc7..6bb3eca765 100644 --- a/actions/newgroup.php +++ b/actions/newgroup.php @@ -192,16 +192,17 @@ class NewgroupAction extends Action 'description' => $description, 'location' => $location, 'aliases' => $aliases, - 'userid' => $cur->id)); + 'userid' => $cur->id, + 'local' => true)); common_redirect($group->homeUrl(), 303); } function nicknameExists($nickname) { - $group = User_group::staticGet('nickname', $nickname); + $local = Local_group::staticGet('nickname', $nickname); - if (!empty($group)) { + if (!empty($local)) { return true; } diff --git a/actions/showgroup.php b/actions/showgroup.php index eb12389029..0139ba157d 100644 --- a/actions/showgroup.php +++ b/actions/showgroup.php @@ -122,7 +122,15 @@ class ShowgroupAction extends GroupDesignAction return false; } - $this->group = User_group::staticGet('nickname', $nickname); + $local = Local_group::staticGet('nickname', $nickname); + + if (!$local) { + common_log(LOG_NOTICE, "Couldn't find local group for nickname '$nickname'"); + $this->clientError(_('No such group.'), 404); + return false; + } + + $this->group = User_group::staticGet('id', $local->group_id); if (!$this->group) { $alias = Group_alias::staticGet('alias', $nickname); diff --git a/classes/Local_group.php b/classes/Local_group.php index 02663048f3..42312ec63c 100644 --- a/classes/Local_group.php +++ b/classes/Local_group.php @@ -2,9 +2,8 @@ /** * Table Definition for local_group */ -require_once 'classes/Memcached_DataObject.php'; -class Local_group extends Memcached_DataObject +class Local_group extends Memcached_DataObject { ###START_AUTOCODE /* the code below is auto generated do not remove the above tag */ @@ -16,8 +15,32 @@ class Local_group extends Memcached_DataObject public $modified; // timestamp not_null default_CURRENT_TIMESTAMP /* Static get */ - function staticGet($k,$v=NULL) { return DB_DataObject::staticGet('Local_group',$k,$v); } + function staticGet($k,$v=NULL) { return Memcached_DataObject::staticGet('Local_group',$k,$v); } /* the code above is auto generated do not remove the tag below */ ###END_AUTOCODE + + function sequenceKey() + { + return array(false, false, false); + } + + function setNickname($nickname) + { + $this->decache(); + $qry = 'UPDATE local_group set nickname = "'.$nickname.'" where group_id = ' . $this->group_id; + + $result = $this->query($qry); + + if ($result) { + $this->nickname = $nickname; + $this->fixupTimestamps(); + $this->encache(); + } else { + common_log_db_error($local, 'UPDATE', __FILE__); + throw new ServerException(_('Could not update local group.')); + } + + return $result; + } } diff --git a/classes/User_group.php b/classes/User_group.php index 6e58a4d676..5877ce2022 100644 --- a/classes/User_group.php +++ b/classes/User_group.php @@ -10,16 +10,16 @@ class User_group extends Memcached_DataObject public $__table = 'user_group'; // table name public $id; // int(4) primary_key not_null - public $nickname; // varchar(64) - public $fullname; // varchar(255) - public $homepage; // varchar(255) - public $description; // text - public $location; // varchar(255) - public $original_logo; // varchar(255) - public $homepage_logo; // varchar(255) - public $stream_logo; // varchar(255) - public $mini_logo; // varchar(255) - public $design_id; // int(4) + public $nickname; // varchar(64) + public $fullname; // varchar(255) + public $homepage; // varchar(255) + public $description; // text + public $location; // varchar(255) + public $original_logo; // varchar(255) + public $homepage_logo; // varchar(255) + public $stream_logo; // varchar(255) + public $mini_logo; // varchar(255) + public $design_id; // int(4) public $created; // datetime not_null default_0000-00-00%2000%3A00%3A00 public $modified; // timestamp not_null default_CURRENT_TIMESTAMP public $uri; // varchar(255) unique_key @@ -414,28 +414,30 @@ class User_group extends Memcached_DataObject $group->homepage = $homepage; $group->description = $description; $group->location = $location; + $group->uri = $uri; $group->created = common_sql_now(); $result = $group->insert(); if (!$result) { common_log_db_error($group, 'INSERT', __FILE__); - $this->serverError( - _('Could not create group.'), - 500, - $this->format - ); - return; + throw new ServerException(_('Could not create group.')); } + + if (!isset($uri) || empty($uri)) { + $orig = clone($group); + $group->uri = common_local_url('groupbyid', array('id' => $group->id)); + $result = $group->update($orig); + if (!$result) { + common_log_db_error($group, 'UPDATE', __FILE__); + throw new ServerException(_('Could not set group uri.')); + } + } + $result = $group->setAliases($aliases); if (!$result) { - $this->serverError( - _('Could not create aliases.'), - 500, - $this->format - ); - return; + throw new ServerException(_('Could not create aliases.')); } $member = new Group_member(); @@ -449,12 +451,22 @@ class User_group extends Memcached_DataObject if (!$result) { common_log_db_error($member, 'INSERT', __FILE__); - $this->serverError( - _('Could not set group membership.'), - 500, - $this->format - ); - return; + throw new ServerException(_('Could not set group membership.')); + } + + if ($local) { + $local_group = new Local_group(); + + $local_group->group_id = $group->id; + $local_group->nickname = $nickname; + $local_group->created = common_sql_now(); + + $result = $local_group->insert(); + + if (!$result) { + common_log_db_error($local_group, 'INSERT', __FILE__); + throw new ServerException(_('Could not save local group info.')); + } } $group->query('COMMIT'); diff --git a/lib/api.php b/lib/api.php index 0bcf4cc21a..d79dc327ed 100644 --- a/lib/api.php +++ b/lib/api.php @@ -1218,7 +1218,12 @@ class ApiAction extends Action return User_group::staticGet($this->arg('id')); } else if ($this->arg('id')) { $nickname = common_canonical_nickname($this->arg('id')); - return User_group::staticGet('nickname', $nickname); + $local = Local_group::staticGet('nickname', $nickname); + if (empty($local)) { + return null; + } else { + return User_group::staticGet('id', $local->id); + } } 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 @@ -1227,14 +1232,24 @@ class ApiAction extends Action } } else if ($this->arg('group_name')) { $nickname = common_canonical_nickname($this->arg('group_name')); - return User_group::staticGet('nickname', $nickname); + $local = Local_group::staticGet('nickname', $nickname); + if (empty($local)) { + return null; + } else { + return User_group::staticGet('id', $local->id); + } } } else if (is_numeric($id)) { return User_group::staticGet($id); } else { $nickname = common_canonical_nickname($id); - return User_group::staticGet('nickname', $nickname); + $local = Local_group::staticGet('nickname', $nickname); + if (empty($local)) { + return null; + } else { + return User_group::staticGet('id', $local->id); + } } } From b54480247ac09a41421af811ced5c0dde4e6f473 Mon Sep 17 00:00:00 2001 From: Sarven Capadisli Date: Thu, 25 Feb 2010 14:50:40 +0100 Subject: [PATCH 034/362] Updated jQuery JavaScript Library from v1.4.1 to v1.4.2 --- js/jquery.js | 1052 ++++++++++++++++++++++++++-------------------- js/jquery.min.js | 280 ++++++------ 2 files changed, 748 insertions(+), 584 deletions(-) diff --git a/js/jquery.js b/js/jquery.js index 237e1b9081..b3b95307a1 100644 --- a/js/jquery.js +++ b/js/jquery.js @@ -1,5 +1,5 @@ /*! - * jQuery JavaScript Library v1.4.1 + * jQuery JavaScript Library v1.4.2 * http://jquery.com/ * * Copyright 2010, John Resig @@ -11,7 +11,7 @@ * Copyright 2010, The Dojo Foundation * Released under the MIT, BSD, and GPL Licenses. * - * Date: Mon Jan 25 19:43:33 2010 -0500 + * Date: Sat Feb 13 22:33:48 2010 -0500 */ (function( window, undefined ) { @@ -86,6 +86,15 @@ jQuery.fn = jQuery.prototype = { this.length = 1; return this; } + + // The body element only exists once, optimize finding it + if ( selector === "body" && !context ) { + this.context = document; + this[0] = document.body; + this.selector = "body"; + this.length = 1; + return this; + } // Handle HTML strings if ( typeof selector === "string" ) { @@ -116,7 +125,9 @@ jQuery.fn = jQuery.prototype = { ret = buildFragment( [ match[1] ], [ doc ] ); selector = (ret.cacheable ? ret.fragment.cloneNode(true) : ret.fragment).childNodes; } - + + return jQuery.merge( this, selector ); + // HANDLE: $("#id") } else { elem = document.getElementById( match[2] ); @@ -143,6 +154,7 @@ jQuery.fn = jQuery.prototype = { this.selector = selector; this.context = document; selector = document.getElementsByTagName( selector ); + return jQuery.merge( this, selector ); // HANDLE: $(expr, $(...)) } else if ( !context || context.jquery ) { @@ -165,16 +177,14 @@ jQuery.fn = jQuery.prototype = { this.context = selector.context; } - return jQuery.isArray( selector ) ? - this.setArray( selector ) : - jQuery.makeArray( selector, this ); + return jQuery.makeArray( selector, this ); }, // Start with an empty selector selector: "", // The current version of jQuery being used - jquery: "1.4.1", + jquery: "1.4.2", // The default length of a jQuery object is 0 length: 0, @@ -204,7 +214,14 @@ jQuery.fn = jQuery.prototype = { // (returning the new matched element set) pushStack: function( elems, name, selector ) { // Build a new jQuery matched element set - var ret = jQuery( elems || null ); + var ret = jQuery(); + + if ( jQuery.isArray( elems ) ) { + push.apply( ret, elems ); + + } else { + jQuery.merge( ret, elems ); + } // Add the old object onto the stack (as a reference) ret.prevObject = this; @@ -221,18 +238,6 @@ jQuery.fn = jQuery.prototype = { return ret; }, - // Force the current matched set of elements to become - // the specified array of elements (destroying the stack in the process) - // You should use pushStack() in order to do this, but maintain the stack - setArray: function( elems ) { - // Resetting the length to 0, then using the native Array push - // is a super-fast way to populate an object with array-like properties - this.length = 0; - push.apply( this, elems ); - - return this; - }, - // Execute a callback for every element in the matched set. // (You can seed the arguments with an array of args, but this is // only used internally.) @@ -492,6 +497,9 @@ jQuery.extend({ if ( typeof data !== "string" || !data ) { return null; } + + // Make sure leading/trailing whitespace is removed (IE can't handle it) + data = jQuery.trim( data ); // Make sure the incoming data is actual JSON // Logic borrowed from http://json.org/json2.js @@ -619,6 +627,7 @@ jQuery.extend({ for ( var l = second.length; j < l; j++ ) { first[ i++ ] = second[ j ]; } + } else { while ( second[j] !== undefined ) { first[ i++ ] = second[ j++ ]; @@ -807,7 +816,7 @@ function access( elems, key, value, exec, fn, pass ) { } // Getting an attribute - return length ? fn( elems[0], key ) : null; + return length ? fn( elems[0], key ) : undefined; } function now() { @@ -871,7 +880,10 @@ function now() { // (WebKit defaults to false instead of true, IE too, if it's in an optgroup) optSelected: document.createElement("select").appendChild( document.createElement("option") ).selected, + parentNode: div.removeChild( div.appendChild( document.createElement("div") ) ).parentNode === null, + // Will be defined later + deleteExpando: true, checkClone: false, scriptEval: false, noCloneEvent: true, @@ -893,6 +905,15 @@ function now() { delete window[ id ]; } + // Test to see if it's possible to delete an expando from an element + // Fails in Internet Explorer + try { + delete script.test; + + } catch(e) { + jQuery.support.deleteExpando = false; + } + root.removeChild( script ); if ( div.attachEvent && div.fireEvent ) { @@ -923,6 +944,7 @@ function now() { document.body.appendChild( div ); jQuery.boxModel = jQuery.support.boxModel = div.offsetWidth === 2; document.body.removeChild( div ).style.display = 'none'; + div = null; }); @@ -962,7 +984,6 @@ jQuery.props = { frameborder: "frameBorder" }; var expando = "jQuery" + now(), uuid = 0, windowData = {}; -var emptyObject = {}; jQuery.extend({ cache: {}, @@ -988,8 +1009,7 @@ jQuery.extend({ var id = elem[ expando ], cache = jQuery.cache, thisCache; - // Handle the case where there's no name immediately - if ( !name && !id ) { + if ( !id && typeof name === "string" && data === undefined ) { return null; } @@ -1003,17 +1023,16 @@ jQuery.extend({ if ( typeof name === "object" ) { elem[ expando ] = id; thisCache = cache[ id ] = jQuery.extend(true, {}, name); - } else if ( cache[ id ] ) { - thisCache = cache[ id ]; - } else if ( typeof data === "undefined" ) { - thisCache = emptyObject; - } else { - thisCache = cache[ id ] = {}; + + } else if ( !cache[ id ] ) { + elem[ expando ] = id; + cache[ id ] = {}; } + thisCache = cache[ id ]; + // Prevent overriding the named cache with undefined values if ( data !== undefined ) { - elem[ expando ] = id; thisCache[ name ] = data; } @@ -1045,15 +1064,11 @@ jQuery.extend({ // Otherwise, we want to remove all of the element's data } else { - // Clean up the element expando - try { - delete elem[ expando ]; - } catch( e ) { - // IE has trouble directly removing the expando - // but it's ok with using removeAttribute - if ( elem.removeAttribute ) { - elem.removeAttribute( expando ); - } + if ( jQuery.support.deleteExpando ) { + delete elem[ jQuery.expando ]; + + } else if ( elem.removeAttribute ) { + elem.removeAttribute( jQuery.expando ); } // Completely remove the data cache @@ -1230,12 +1245,13 @@ jQuery.fn.extend({ elem.className = value; } else { - var className = " " + elem.className + " "; + var className = " " + elem.className + " ", setClass = elem.className; for ( var c = 0, cl = classNames.length; c < cl; c++ ) { if ( className.indexOf( " " + classNames[c] + " " ) < 0 ) { - elem.className += " " + classNames[c]; + setClass += " " + classNames[c]; } } + elem.className = jQuery.trim( setClass ); } } } @@ -1264,7 +1280,7 @@ jQuery.fn.extend({ for ( var c = 0, cl = classNames.length; c < cl; c++ ) { className = className.replace(" " + classNames[c] + " ", " "); } - elem.className = className.substring(1, className.length - 1); + elem.className = jQuery.trim( className ); } else { elem.className = ""; @@ -1520,15 +1536,16 @@ jQuery.extend({ } // elem is actually elem.style ... set the style - // Using attr for specific style information is now deprecated. Use style insead. + // Using attr for specific style information is now deprecated. Use style instead. return jQuery.style( elem, name, value ); } }); -var fcleanup = function( nm ) { - return nm.replace(/[^\w\s\.\|`]/g, function( ch ) { - return "\\" + ch; - }); -}; +var rnamespaces = /\.(.*)$/, + fcleanup = function( nm ) { + return nm.replace(/[^\w\s\.\|`]/g, function( ch ) { + return "\\" + ch; + }); + }; /* * A number of helper functions used for managing events. @@ -1550,107 +1567,104 @@ jQuery.event = { elem = window; } + var handleObjIn, handleObj; + + if ( handler.handler ) { + handleObjIn = handler; + handler = handleObjIn.handler; + } + // Make sure that the function being executed has a unique ID if ( !handler.guid ) { handler.guid = jQuery.guid++; } - // if data is passed, bind to handler - if ( data !== undefined ) { - // Create temporary function pointer to original handler - var fn = handler; + // Init the element's event structure + var elemData = jQuery.data( elem ); - // Create unique handler function, wrapped around original handler - handler = jQuery.proxy( fn ); - - // Store data in unique handler - handler.data = data; + // If no elemData is found then we must be trying to bind to one of the + // banned noData elements + if ( !elemData ) { + return; } - // Init the element's event structure - var events = jQuery.data( elem, "events" ) || jQuery.data( elem, "events", {} ), - handle = jQuery.data( elem, "handle" ), eventHandle; + var events = elemData.events = elemData.events || {}, + eventHandle = elemData.handle, eventHandle; - if ( !handle ) { - eventHandle = function() { + if ( !eventHandle ) { + elemData.handle = eventHandle = function() { // Handle the second event of a trigger and when // an event is called after a page has unloaded return typeof jQuery !== "undefined" && !jQuery.event.triggered ? jQuery.event.handle.apply( eventHandle.elem, arguments ) : undefined; }; - - handle = jQuery.data( elem, "handle", eventHandle ); - } - - // If no handle is found then we must be trying to bind to one of the - // banned noData elements - if ( !handle ) { - return; } // Add elem as a property of the handle function - // This is to prevent a memory leak with non-native - // event in IE. - handle.elem = elem; + // This is to prevent a memory leak with non-native events in IE. + eventHandle.elem = elem; // Handle multiple events separated by a space // jQuery(...).bind("mouseover mouseout", fn); - types = types.split( /\s+/ ); + types = types.split(" "); - var type, i = 0; + var type, i = 0, namespaces; while ( (type = types[ i++ ]) ) { + handleObj = handleObjIn ? + jQuery.extend({}, handleObjIn) : + { handler: handler, data: data }; + // Namespaced event handlers - var namespaces = type.split("."); - type = namespaces.shift(); + if ( type.indexOf(".") > -1 ) { + namespaces = type.split("."); + type = namespaces.shift(); + handleObj.namespace = namespaces.slice(0).sort().join("."); - if ( i > 1 ) { - handler = jQuery.proxy( handler ); - - if ( data !== undefined ) { - handler.data = data; - } + } else { + namespaces = []; + handleObj.namespace = ""; } - handler.type = namespaces.slice(0).sort().join("."); + handleObj.type = type; + handleObj.guid = handler.guid; // Get the current list of functions bound to this event var handlers = events[ type ], - special = this.special[ type ] || {}; + special = jQuery.event.special[ type ] || {}; // Init the event handler queue if ( !handlers ) { - handlers = events[ type ] = {}; + handlers = events[ type ] = []; // Check for a special event handler // Only use addEventListener/attachEvent if the special // events handler returns false - if ( !special.setup || special.setup.call( elem, data, namespaces, handler) === false ) { + if ( !special.setup || special.setup.call( elem, data, namespaces, eventHandle ) === false ) { // Bind the global event handler to the element if ( elem.addEventListener ) { - elem.addEventListener( type, handle, false ); + elem.addEventListener( type, eventHandle, false ); + } else if ( elem.attachEvent ) { - elem.attachEvent( "on" + type, handle ); + elem.attachEvent( "on" + type, eventHandle ); } } } if ( special.add ) { - var modifiedHandler = special.add.call( elem, handler, data, namespaces, handlers ); - if ( modifiedHandler && jQuery.isFunction( modifiedHandler ) ) { - modifiedHandler.guid = modifiedHandler.guid || handler.guid; - modifiedHandler.data = modifiedHandler.data || handler.data; - modifiedHandler.type = modifiedHandler.type || handler.type; - handler = modifiedHandler; - } - } - + special.add.call( elem, handleObj ); + + if ( !handleObj.handler.guid ) { + handleObj.handler.guid = handler.guid; + } + } + // Add the function to the element's handler list - handlers[ handler.guid ] = handler; + handlers.push( handleObj ); // Keep track of which events have been used, for global triggering - this.global[ type ] = true; + jQuery.event.global[ type ] = true; } // Nullify elem to prevent memory leaks in IE @@ -1660,90 +1674,121 @@ jQuery.event = { global: {}, // Detach an event or set of events from an element - remove: function( elem, types, handler ) { + remove: function( elem, types, handler, pos ) { // don't do events on text and comment nodes if ( elem.nodeType === 3 || elem.nodeType === 8 ) { return; } - var events = jQuery.data( elem, "events" ), ret, type, fn; + var ret, type, fn, i = 0, all, namespaces, namespace, special, eventType, handleObj, origType, + elemData = jQuery.data( elem ), + events = elemData && elemData.events; - if ( events ) { - // Unbind all events for the element - if ( types === undefined || (typeof types === "string" && types.charAt(0) === ".") ) { - for ( type in events ) { - this.remove( elem, type + (types || "") ); - } - } else { - // types is actually an event object here - if ( types.type ) { - handler = types.handler; - types = types.type; + if ( !elemData || !events ) { + return; + } + + // types is actually an event object here + if ( types && types.type ) { + handler = types.handler; + types = types.type; + } + + // Unbind all events for the element + if ( !types || typeof types === "string" && types.charAt(0) === "." ) { + types = types || ""; + + for ( type in events ) { + jQuery.event.remove( elem, type + types ); + } + + return; + } + + // Handle multiple events separated by a space + // jQuery(...).unbind("mouseover mouseout", fn); + types = types.split(" "); + + while ( (type = types[ i++ ]) ) { + origType = type; + handleObj = null; + all = type.indexOf(".") < 0; + namespaces = []; + + if ( !all ) { + // Namespaced event handlers + namespaces = type.split("."); + type = namespaces.shift(); + + namespace = new RegExp("(^|\\.)" + + jQuery.map( namespaces.slice(0).sort(), fcleanup ).join("\\.(?:.*\\.)?") + "(\\.|$)") + } + + eventType = events[ type ]; + + if ( !eventType ) { + continue; + } + + if ( !handler ) { + for ( var j = 0; j < eventType.length; j++ ) { + handleObj = eventType[ j ]; + + if ( all || namespace.test( handleObj.namespace ) ) { + jQuery.event.remove( elem, origType, handleObj.handler, j ); + eventType.splice( j--, 1 ); + } } - // Handle multiple events separated by a space - // jQuery(...).unbind("mouseover mouseout", fn); - types = types.split(/\s+/); - var i = 0; - while ( (type = types[ i++ ]) ) { - // Namespaced event handlers - var namespaces = type.split("."); - type = namespaces.shift(); - var all = !namespaces.length, - cleaned = jQuery.map( namespaces.slice(0).sort(), fcleanup ), - namespace = new RegExp("(^|\\.)" + cleaned.join("\\.(?:.*\\.)?") + "(\\.|$)"), - special = this.special[ type ] || {}; + continue; + } - if ( events[ type ] ) { - // remove the given handler for the given type - if ( handler ) { - fn = events[ type ][ handler.guid ]; - delete events[ type ][ handler.guid ]; + special = jQuery.event.special[ type ] || {}; - // remove all handlers for the given type - } else { - for ( var handle in events[ type ] ) { - // Handle the removal of namespaced events - if ( all || namespace.test( events[ type ][ handle ].type ) ) { - delete events[ type ][ handle ]; - } - } + for ( var j = pos || 0; j < eventType.length; j++ ) { + handleObj = eventType[ j ]; + + if ( handler.guid === handleObj.guid ) { + // remove the given handler for the given type + if ( all || namespace.test( handleObj.namespace ) ) { + if ( pos == null ) { + eventType.splice( j--, 1 ); } if ( special.remove ) { - special.remove.call( elem, namespaces, fn); + special.remove.call( elem, handleObj ); } + } - // remove generic event handler if no more handlers exist - for ( ret in events[ type ] ) { - break; - } - if ( !ret ) { - if ( !special.teardown || special.teardown.call( elem, namespaces ) === false ) { - if ( elem.removeEventListener ) { - elem.removeEventListener( type, jQuery.data( elem, "handle" ), false ); - } else if ( elem.detachEvent ) { - elem.detachEvent( "on" + type, jQuery.data( elem, "handle" ) ); - } - } - ret = null; - delete events[ type ]; - } + if ( pos != null ) { + break; } } } - // Remove the expando if it's no longer used - for ( ret in events ) { - break; - } - if ( !ret ) { - var handle = jQuery.data( elem, "handle" ); - if ( handle ) { - handle.elem = null; + // remove generic event handler if no more handlers exist + if ( eventType.length === 0 || pos != null && eventType.length === 1 ) { + if ( !special.teardown || special.teardown.call( elem, namespaces ) === false ) { + removeEvent( elem, type, elemData.handle ); } - jQuery.removeData( elem, "events" ); - jQuery.removeData( elem, "handle" ); + + ret = null; + delete events[ type ]; + } + } + + // Remove the expando if it's no longer used + if ( jQuery.isEmptyObject( events ) ) { + var handle = elemData.handle; + if ( handle ) { + handle.elem = null; + } + + delete elemData.events; + delete elemData.handle; + + if ( jQuery.isEmptyObject( elemData ) ) { + jQuery.removeData( elem ); } } }, @@ -1774,7 +1819,7 @@ jQuery.event = { event.stopPropagation(); // Only trigger if we've ever bound an event for it - if ( this.global[ type ] ) { + if ( jQuery.event.global[ type ] ) { jQuery.each( jQuery.cache, function() { if ( this.events && this.events[type] ) { jQuery.event.trigger( event, data, this.handle.elem ); @@ -1825,9 +1870,12 @@ jQuery.event = { } else if ( !event.isDefaultPrevented() ) { var target = event.target, old, - isClick = jQuery.nodeName(target, "a") && type === "click"; + isClick = jQuery.nodeName(target, "a") && type === "click", + special = jQuery.event.special[ type ] || {}; + + if ( (!special._default || special._default.call( elem, event ) === false) && + !isClick && !(target && target.nodeName && jQuery.noData[target.nodeName.toLowerCase()]) ) { - if ( !isClick && !(target && target.nodeName && jQuery.noData[target.nodeName.toLowerCase()]) ) { try { if ( target[ type ] ) { // Make sure that we don't accidentally re-trigger the onFOO events @@ -1837,7 +1885,7 @@ jQuery.event = { target[ "on" + type ] = null; } - this.triggered = true; + jQuery.event.triggered = true; target[ type ](); } @@ -1848,53 +1896,57 @@ jQuery.event = { target[ "on" + type ] = old; } - this.triggered = false; + jQuery.event.triggered = false; } } }, handle: function( event ) { - // returned undefined or false - var all, handlers; + var all, handlers, namespaces, namespace, events; event = arguments[0] = jQuery.event.fix( event || window.event ); event.currentTarget = this; // Namespaced event handlers - var namespaces = event.type.split("."); - event.type = namespaces.shift(); + all = event.type.indexOf(".") < 0 && !event.exclusive; - // Cache this now, all = true means, any handler - all = !namespaces.length && !event.exclusive; + if ( !all ) { + namespaces = event.type.split("."); + event.type = namespaces.shift(); + namespace = new RegExp("(^|\\.)" + namespaces.slice(0).sort().join("\\.(?:.*\\.)?") + "(\\.|$)"); + } - var namespace = new RegExp("(^|\\.)" + namespaces.slice(0).sort().join("\\.(?:.*\\.)?") + "(\\.|$)"); + var events = jQuery.data(this, "events"), handlers = events[ event.type ]; - handlers = ( jQuery.data(this, "events") || {} )[ event.type ]; + if ( events && handlers ) { + // Clone the handlers to prevent manipulation + handlers = handlers.slice(0); - for ( var j in handlers ) { - var handler = handlers[ j ]; + for ( var j = 0, l = handlers.length; j < l; j++ ) { + var handleObj = handlers[ j ]; - // Filter the functions by class - if ( all || namespace.test(handler.type) ) { - // Pass in a reference to the handler function itself - // So that we can later remove it - event.handler = handler; - event.data = handler.data; + // Filter the functions by class + if ( all || namespace.test( handleObj.namespace ) ) { + // Pass in a reference to the handler function itself + // So that we can later remove it + event.handler = handleObj.handler; + event.data = handleObj.data; + event.handleObj = handleObj; + + var ret = handleObj.handler.apply( this, arguments ); - var ret = handler.apply( this, arguments ); + if ( ret !== undefined ) { + event.result = ret; + if ( ret === false ) { + event.preventDefault(); + event.stopPropagation(); + } + } - if ( ret !== undefined ) { - event.result = ret; - if ( ret === false ) { - event.preventDefault(); - event.stopPropagation(); + if ( event.isImmediatePropagationStopped() ) { + break; } } - - if ( event.isImmediatePropagationStopped() ) { - break; - } - } } @@ -1973,44 +2025,39 @@ jQuery.event = { }, live: { - add: function( proxy, data, namespaces, live ) { - jQuery.extend( proxy, data || {} ); + add: function( handleObj ) { + jQuery.event.add( this, handleObj.origType, jQuery.extend({}, handleObj, {handler: liveHandler}) ); + }, - proxy.guid += data.selector + data.live; - data.liveProxy = proxy; - - jQuery.event.add( this, data.live, liveHandler, data ); + remove: function( handleObj ) { + var remove = true, + type = handleObj.origType.replace(rnamespaces, ""); - }, - - remove: function( namespaces ) { - if ( namespaces.length ) { - var remove = 0, name = new RegExp("(^|\\.)" + namespaces[0] + "(\\.|$)"); - - jQuery.each( (jQuery.data(this, "events").live || {}), function() { - if ( name.test(this.type) ) { - remove++; - } - }); - - if ( remove < 1 ) { - jQuery.event.remove( this, namespaces[0], liveHandler ); + jQuery.each( jQuery.data(this, "events").live || [], function() { + if ( type === this.origType.replace(rnamespaces, "") ) { + remove = false; + return false; } + }); + + if ( remove ) { + jQuery.event.remove( this, handleObj.origType, liveHandler ); } - }, - special: {} + } + }, + beforeunload: { - setup: function( data, namespaces, fn ) { + setup: function( data, namespaces, eventHandle ) { // We only want to do this special case on windows if ( this.setInterval ) { - this.onbeforeunload = fn; + this.onbeforeunload = eventHandle; } return false; }, - teardown: function( namespaces, fn ) { - if ( this.onbeforeunload === fn ) { + teardown: function( namespaces, eventHandle ) { + if ( this.onbeforeunload === eventHandle ) { this.onbeforeunload = null; } } @@ -2018,6 +2065,14 @@ jQuery.event = { } }; +var removeEvent = document.removeEventListener ? + function( elem, type, handle ) { + elem.removeEventListener( type, handle, false ); + } : + function( elem, type, handle ) { + elem.detachEvent( "on" + type, handle ); + }; + jQuery.Event = function( src ) { // Allow instantiation without the 'new' keyword if ( !this.preventDefault ) { @@ -2095,27 +2150,24 @@ var withinElement = function( event ) { // Check if mouse(over|out) are still within the same parent element var parent = event.relatedTarget; - // Traverse up the tree - while ( parent && parent !== this ) { - // Firefox sometimes assigns relatedTarget a XUL element - // which we cannot access the parentNode property of - try { + // Firefox sometimes assigns relatedTarget a XUL element + // which we cannot access the parentNode property of + try { + // Traverse up the tree + while ( parent && parent !== this ) { parent = parent.parentNode; - - // assuming we've left the element since we most likely mousedover a xul element - } catch(e) { - break; } - } - if ( parent !== this ) { - // set the correct event type - event.type = event.data; + if ( parent !== this ) { + // set the correct event type + event.type = event.data; - // handle event if we actually just moused on to a non sub-element - jQuery.event.handle.apply( this, arguments ); - } + // handle event if we actually just moused on to a non sub-element + jQuery.event.handle.apply( this, arguments ); + } + // assuming we've left the element since we most likely mousedover a xul element + } catch(e) { } }, // In case of event delegation, we only need to rename the event.type, @@ -2143,64 +2195,65 @@ jQuery.each({ // submit delegation if ( !jQuery.support.submitBubbles ) { -jQuery.event.special.submit = { - setup: function( data, namespaces, fn ) { - if ( this.nodeName.toLowerCase() !== "form" ) { - jQuery.event.add(this, "click.specialSubmit." + fn.guid, function( e ) { - var elem = e.target, type = elem.type; + jQuery.event.special.submit = { + setup: function( data, namespaces ) { + if ( this.nodeName.toLowerCase() !== "form" ) { + jQuery.event.add(this, "click.specialSubmit", function( e ) { + var elem = e.target, type = elem.type; - if ( (type === "submit" || type === "image") && jQuery( elem ).closest("form").length ) { - return trigger( "submit", this, arguments ); - } - }); + if ( (type === "submit" || type === "image") && jQuery( elem ).closest("form").length ) { + return trigger( "submit", this, arguments ); + } + }); - jQuery.event.add(this, "keypress.specialSubmit." + fn.guid, function( e ) { - var elem = e.target, type = elem.type; + jQuery.event.add(this, "keypress.specialSubmit", function( e ) { + var elem = e.target, type = elem.type; - if ( (type === "text" || type === "password") && jQuery( elem ).closest("form").length && e.keyCode === 13 ) { - return trigger( "submit", this, arguments ); - } - }); + if ( (type === "text" || type === "password") && jQuery( elem ).closest("form").length && e.keyCode === 13 ) { + return trigger( "submit", this, arguments ); + } + }); - } else { - return false; + } else { + return false; + } + }, + + teardown: function( namespaces ) { + jQuery.event.remove( this, ".specialSubmit" ); } - }, - - remove: function( namespaces, fn ) { - jQuery.event.remove( this, "click.specialSubmit" + (fn ? "."+fn.guid : "") ); - jQuery.event.remove( this, "keypress.specialSubmit" + (fn ? "."+fn.guid : "") ); - } -}; + }; } // change delegation, happens here so we have bind. if ( !jQuery.support.changeBubbles ) { -var formElems = /textarea|input|select/i; + var formElems = /textarea|input|select/i, -function getVal( elem ) { - var type = elem.type, val = elem.value; + changeFilters, - if ( type === "radio" || type === "checkbox" ) { - val = elem.checked; + getVal = function( elem ) { + var type = elem.type, val = elem.value; - } else if ( type === "select-multiple" ) { - val = elem.selectedIndex > -1 ? - jQuery.map( elem.options, function( elem ) { - return elem.selected; - }).join("-") : - ""; + if ( type === "radio" || type === "checkbox" ) { + val = elem.checked; - } else if ( elem.nodeName.toLowerCase() === "select" ) { - val = elem.selectedIndex; - } + } else if ( type === "select-multiple" ) { + val = elem.selectedIndex > -1 ? + jQuery.map( elem.options, function( elem ) { + return elem.selected; + }).join("-") : + ""; - return val; -} + } else if ( elem.nodeName.toLowerCase() === "select" ) { + val = elem.selectedIndex; + } -function testChange( e ) { + return val; + }, + + testChange = function testChange( e ) { var elem = e.target, data, val; if ( !formElems.test( elem.nodeName ) || elem.readOnly ) { @@ -2223,61 +2276,61 @@ function testChange( e ) { e.type = "change"; return jQuery.event.trigger( e, arguments[1], elem ); } -} + }; -jQuery.event.special.change = { - filters: { - focusout: testChange, + jQuery.event.special.change = { + filters: { + focusout: testChange, - click: function( e ) { - var elem = e.target, type = elem.type; + click: function( e ) { + var elem = e.target, type = elem.type; - if ( type === "radio" || type === "checkbox" || elem.nodeName.toLowerCase() === "select" ) { - return testChange.call( this, e ); - } - }, + if ( type === "radio" || type === "checkbox" || elem.nodeName.toLowerCase() === "select" ) { + return testChange.call( this, e ); + } + }, - // Change has to be called before submit - // Keydown will be called before keypress, which is used in submit-event delegation - keydown: function( e ) { - var elem = e.target, type = elem.type; + // Change has to be called before submit + // Keydown will be called before keypress, which is used in submit-event delegation + keydown: function( e ) { + var elem = e.target, type = elem.type; - if ( (e.keyCode === 13 && elem.nodeName.toLowerCase() !== "textarea") || - (e.keyCode === 32 && (type === "checkbox" || type === "radio")) || - type === "select-multiple" ) { - return testChange.call( this, e ); - } - }, + if ( (e.keyCode === 13 && elem.nodeName.toLowerCase() !== "textarea") || + (e.keyCode === 32 && (type === "checkbox" || type === "radio")) || + type === "select-multiple" ) { + return testChange.call( this, e ); + } + }, - // Beforeactivate happens also before the previous element is blurred - // with this event you can't trigger a change event, but you can store - // information/focus[in] is not needed anymore - beforeactivate: function( e ) { - var elem = e.target; - - if ( elem.nodeName.toLowerCase() === "input" && elem.type === "radio" ) { + // Beforeactivate happens also before the previous element is blurred + // with this event you can't trigger a change event, but you can store + // information/focus[in] is not needed anymore + beforeactivate: function( e ) { + var elem = e.target; jQuery.data( elem, "_change_data", getVal(elem) ); } + }, + + setup: function( data, namespaces ) { + if ( this.type === "file" ) { + return false; + } + + for ( var type in changeFilters ) { + jQuery.event.add( this, type + ".specialChange", changeFilters[type] ); + } + + return formElems.test( this.nodeName ); + }, + + teardown: function( namespaces ) { + jQuery.event.remove( this, ".specialChange" ); + + return formElems.test( this.nodeName ); } - }, - setup: function( data, namespaces, fn ) { - for ( var type in changeFilters ) { - jQuery.event.add( this, type + ".specialChange." + fn.guid, changeFilters[type] ); - } - - return formElems.test( this.nodeName ); - }, - remove: function( namespaces, fn ) { - for ( var type in changeFilters ) { - jQuery.event.remove( this, type + ".specialChange" + (fn ? "."+fn.guid : ""), changeFilters[type] ); - } - - return formElems.test( this.nodeName ); - } -}; - -var changeFilters = jQuery.event.special.change.filters; + }; + changeFilters = jQuery.event.special.change.filters; } function trigger( type, elem, args ) { @@ -2325,11 +2378,16 @@ jQuery.each(["bind", "one"], function( i, name ) { return fn.apply( this, arguments ); }) : fn; - return type === "unload" && name !== "one" ? - this.one( type, data, fn ) : - this.each(function() { - jQuery.event.add( this, type, handler, data ); - }); + if ( type === "unload" && name !== "one" ) { + this.one( type, data, fn ); + + } else { + for ( var i = 0, l = this.length; i < l; i++ ) { + jQuery.event.add( this[i], type, handler, data ); + } + } + + return this; }; }); @@ -2340,13 +2398,29 @@ jQuery.fn.extend({ for ( var key in type ) { this.unbind(key, type[key]); } - return this; + + } else { + for ( var i = 0, l = this.length; i < l; i++ ) { + jQuery.event.remove( this[i], type, fn ); + } } - return this.each(function() { - jQuery.event.remove( this, type, fn ); - }); + return this; }, + + delegate: function( selector, types, data, fn ) { + return this.live( types, data, fn, selector ); + }, + + undelegate: function( selector, types, fn ) { + if ( arguments.length === 0 ) { + return this.unbind( "live" ); + + } else { + return this.die( types, null, fn, selector ); + } + }, + trigger: function( type, data ) { return this.each(function() { jQuery.event.trigger( type, data, this ); @@ -2390,32 +2464,60 @@ jQuery.fn.extend({ } }); +var liveMap = { + focus: "focusin", + blur: "focusout", + mouseenter: "mouseover", + mouseleave: "mouseout" +}; + jQuery.each(["live", "die"], function( i, name ) { - jQuery.fn[ name ] = function( types, data, fn ) { - var type, i = 0; + jQuery.fn[ name ] = function( types, data, fn, origSelector /* Internal Use Only */ ) { + var type, i = 0, match, namespaces, preType, + selector = origSelector || this.selector, + context = origSelector ? this : jQuery( this.context ); if ( jQuery.isFunction( data ) ) { fn = data; data = undefined; } - types = (types || "").split( /\s+/ ); + types = (types || "").split(" "); while ( (type = types[ i++ ]) != null ) { - type = type === "focus" ? "focusin" : // focus --> focusin - type === "blur" ? "focusout" : // blur --> focusout - type === "hover" ? types.push("mouseleave") && "mouseenter" : // hover support - type; - + match = rnamespaces.exec( type ); + namespaces = ""; + + if ( match ) { + namespaces = match[0]; + type = type.replace( rnamespaces, "" ); + } + + if ( type === "hover" ) { + types.push( "mouseenter" + namespaces, "mouseleave" + namespaces ); + continue; + } + + preType = type; + + if ( type === "focus" || type === "blur" ) { + types.push( liveMap[ type ] + namespaces ); + type = type + namespaces; + + } else { + type = (liveMap[ type ] || type) + namespaces; + } + if ( name === "live" ) { // bind live handler - jQuery( this.context ).bind( liveConvert( type, this.selector ), { - data: data, selector: this.selector, live: type - }, fn ); + context.each(function(){ + jQuery.event.add( this, liveConvert( type, selector ), + { data: data, selector: selector, handler: fn, origType: type, origHandler: fn, preType: preType } ); + }); } else { // unbind live handler - jQuery( this.context ).unbind( liveConvert( type, this.selector ), fn ? { guid: fn.guid + this.selector + type } : null ); + context.unbind( liveConvert( type, selector ), fn ); } } @@ -2425,45 +2527,46 @@ jQuery.each(["live", "die"], function( i, name ) { function liveHandler( event ) { var stop, elems = [], selectors = [], args = arguments, - related, match, fn, elem, j, i, l, data, - live = jQuery.extend({}, jQuery.data( this, "events" ).live); + related, match, handleObj, elem, j, i, l, data, + events = jQuery.data( this, "events" ); // Make sure we avoid non-left-click bubbling in Firefox (#3861) - if ( event.button && event.type === "click" ) { + if ( event.liveFired === this || !events || !events.live || event.button && event.type === "click" ) { return; } - for ( j in live ) { - fn = live[j]; - if ( fn.live === event.type || - fn.altLive && jQuery.inArray(event.type, fn.altLive) > -1 ) { + event.liveFired = this; + + var live = events.live.slice(0); + + for ( j = 0; j < live.length; j++ ) { + handleObj = live[j]; + + if ( handleObj.origType.replace( rnamespaces, "" ) === event.type ) { + selectors.push( handleObj.selector ); - data = fn.data; - if ( !(data.beforeFilter && data.beforeFilter[event.type] && - !data.beforeFilter[event.type](event)) ) { - selectors.push( fn.selector ); - } } else { - delete live[j]; + live.splice( j--, 1 ); } } match = jQuery( event.target ).closest( selectors, event.currentTarget ); for ( i = 0, l = match.length; i < l; i++ ) { - for ( j in live ) { - fn = live[j]; - elem = match[i].elem; - related = null; + for ( j = 0; j < live.length; j++ ) { + handleObj = live[j]; + + if ( match[i].selector === handleObj.selector ) { + elem = match[i].elem; + related = null; - if ( match[i].selector === fn.selector ) { // Those two events require additional checking - if ( fn.live === "mouseenter" || fn.live === "mouseleave" ) { - related = jQuery( event.relatedTarget ).closest( fn.selector )[0]; + if ( handleObj.preType === "mouseenter" || handleObj.preType === "mouseleave" ) { + related = jQuery( event.relatedTarget ).closest( handleObj.selector )[0]; } if ( !related || related !== elem ) { - elems.push({ elem: elem, fn: fn }); + elems.push({ elem: elem, handleObj: handleObj }); } } } @@ -2472,8 +2575,10 @@ function liveHandler( event ) { for ( i = 0, l = elems.length; i < l; i++ ) { match = elems[i]; event.currentTarget = match.elem; - event.data = match.fn.data; - if ( match.fn.apply( match.elem, args ) === false ) { + event.data = match.handleObj.data; + event.handleObj = match.handleObj; + + if ( match.handleObj.origHandler.apply( match.elem, args ) === false ) { stop = false; break; } @@ -2483,7 +2588,7 @@ function liveHandler( event ) { } function liveConvert( type, selector ) { - return "live." + (type ? type + "." : "") + selector.replace(/\./g, "`").replace(/ /g, "&"); + return "live." + (type && type !== "*" ? type + "." : "") + selector.replace(/\./g, "`").replace(/ /g, "&"); } jQuery.each( ("blur focus focusin focusout load resize scroll unload click dblclick " + @@ -3228,8 +3333,10 @@ var makeArray = function(array, results) { // Perform a simple check to determine if the browser is capable of // converting a NodeList to an array using builtin methods. +// Also verifies that the returned array holds DOM nodes +// (which is not the case in the Blackberry browser) try { - Array.prototype.slice.call( document.documentElement.childNodes, 0 ); + Array.prototype.slice.call( document.documentElement.childNodes, 0 )[0].nodeType; // Provide a fallback method if it does not work } catch(e){ @@ -3533,7 +3640,7 @@ function dirCheck( dir, cur, doneName, checkSet, nodeCheck, isXML ) { } var contains = document.compareDocumentPosition ? function(a, b){ - return a.compareDocumentPosition(b) & 16; + return !!(a.compareDocumentPosition(b) & 16); } : function(a, b){ return a !== b && (a.contains ? a.contains(b) : true); }; @@ -3570,7 +3677,7 @@ jQuery.find = Sizzle; jQuery.expr = Sizzle.selectors; jQuery.expr[":"] = jQuery.expr.filters; jQuery.unique = Sizzle.uniqueSort; -jQuery.getText = getText; +jQuery.text = getText; jQuery.isXMLDoc = isXML; jQuery.contains = contains; @@ -3856,7 +3963,8 @@ var rinlinejQuery = / jQuery\d+="(?:\d+|null)"/g, rselfClosing = /^(?:area|br|col|embed|hr|img|input|link|meta|param)$/i, rtagName = /<([\w:]+)/, rtbody = / self-closes a tag + .replace(/=([^="'>\s]+\/)>/g, '="$1">') .replace(rleadingWhitespace, "")], ownerDocument)[0]; } else { return this.cloneNode(true); @@ -4044,7 +4188,7 @@ jQuery.fn.extend({ null; // See if we can take a shortcut and just use innerHTML - } else if ( typeof value === "string" && !/ @@ -852,8 +852,10 @@ PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    -

    Install StatusNet

    +
    +

    Install StatusNet

    +
    From 79b392a39e9a847c398b697cf8f982a6b220ed56 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Thu, 4 Mar 2010 01:16:25 -0800 Subject: [PATCH 286/362] Add generator tag into Atom feeds. --- lib/atom10feed.php | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/lib/atom10feed.php b/lib/atom10feed.php index c1fdeaae93..2d342e7854 100644 --- a/lib/atom10feed.php +++ b/lib/atom10feed.php @@ -176,6 +176,14 @@ class Atom10Feed extends XMLStringer } $this->elementStart('feed', $commonAttrs); + $this->element( + 'generator', array( + 'url' => 'http://status.net', + 'version' => STATUSNET_VERSION + ), + 'StatusNet' + ); + $this->element('id', null, $this->id); $this->element('title', null, $this->title); $this->element('subtitle', null, $this->subtitle); From 14d7f4a598d0e24467fe3eafd9a02b0e651edad8 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Thu, 4 Mar 2010 01:23:02 -0800 Subject: [PATCH 287/362] Removed unused stub class --- lib/atom10entry.php | 105 -------------------------------------------- 1 file changed, 105 deletions(-) delete mode 100644 lib/atom10entry.php diff --git a/lib/atom10entry.php b/lib/atom10entry.php deleted file mode 100644 index f8f16d5946..0000000000 --- a/lib/atom10entry.php +++ /dev/null @@ -1,105 +0,0 @@ -. - * - * @category Feed - * @package StatusNet - * @author Zach Copley - * @copyright 2010 StatusNet, Inc. - * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 - * @link http://status.net/ - */ - -if (!defined('STATUSNET')) { - exit(1); -} - -class Atom10EntryException extends Exception -{ -} - -/** - * Class for manipulating an Atom entry in memory. Get the entry as an XML - * string with Atom10Entry::getString(). - * - * @category Feed - * @package StatusNet - * @author Zach Copley - * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 - * @link http://status.net/ - */ -class Atom10Entry extends XMLStringer -{ - private $namespaces; - private $categories; - private $content; - private $contributors; - private $id; - private $links; - private $published; - private $rights; - private $source; - private $summary; - private $title; - - function __construct($indent = true) { - parent::__construct($indent); - $this->namespaces = array(); - } - - function addNamespace($namespace, $uri) - { - $ns = array($namespace => $uri); - $this->namespaces = array_merge($this->namespaces, $ns); - } - - function initEntry() - { - - } - - function endEntry() - { - - } - - /** - * Check that all required elements have been set, etc. - * Throws an Atom10EntryException if something's missing. - * - * @return void - */ - function validate() - { - - } - - function getString() - { - $this->validate(); - - $this->initEntry(); - $this->renderEntries(); - $this->endEntry(); - - return $this->xw->outputMemory(); - } - -} \ No newline at end of file From 9f861e9d895325adbb2dc7f1d540a442be2c1b2f Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Thu, 4 Mar 2010 06:39:46 -0800 Subject: [PATCH 288/362] Fix on sitenotice admin panel save --- actions/sitenoticeadminpanel.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions/sitenoticeadminpanel.php b/actions/sitenoticeadminpanel.php index 613a2e96be..3931aa9825 100644 --- a/actions/sitenoticeadminpanel.php +++ b/actions/sitenoticeadminpanel.php @@ -99,7 +99,7 @@ class SitenoticeadminpanelAction extends AdminPanelAction $result = Config::save('site', 'notice', $siteNotice); - if (!result) { + if (!$result) { $this->ServerError(_("Unable to save site notice.")); } } From 8b3febab5539a3c08da15c78578650ffca41f75e Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Thu, 4 Mar 2010 07:45:26 -0800 Subject: [PATCH 289/362] Installer tweaks: maintain form values when redisplaying form after error, add pass confirmation and optional email forms for administrator. Caveat: fancy URLs value isn't currently maintained; JS needs updating to not overwrite the value or we should kill it entirely. --- install.php | 85 +++++++++++++++++++++++++++++++++++++++-------------- 1 file changed, 63 insertions(+), 22 deletions(-) diff --git a/install.php b/install.php index 41024c901f..51c86683a0 100644 --- a/install.php +++ b/install.php @@ -435,15 +435,39 @@ E_O_T; E_O_T; } +/** + * Helper class for building form + */ +class Posted { + function value($name) + { + if (isset($_POST[$name])) { + return htmlspecialchars(strval($_POST[$name])); + } else { + return ''; + } + } +} + function showForm() { global $dbModules; + $post = new Posted(); $dbRadios = ''; - $checked = 'checked="checked" '; // Check the first one which exists + if (isset($_POST['dbtype'])) { + $dbtype = $_POST['dbtype']; + } else { + $dbtype = null; + } foreach ($dbModules as $type => $info) { if (checkExtension($info['check_module'])) { + if ($dbtype == null || $dbtype == $type) { + $checked = 'checked="checked" '; + $dbtype = $type; // if we didn't have one checked, hit the first + } else { + $checked = ''; + } $dbRadios .= " $info[name]
    \n"; - $checked = ''; } } echo<<
  1. - +

    The name of your site

  2. @@ -475,7 +499,7 @@ function showForm()
  3. - +

    Database hostname

  4. @@ -487,29 +511,38 @@ function showForm()
  5. - +

    Database name

  6. - - + +

    Database username

  7. - - + +

    Database password (optional)

  8. - +

    Nickname for the initial StatusNet user (administrator)

  9. - - + +

    Password for the initial StatusNet user (administrator)

  10. +
  11. + + +
  12. +
  13. + + +

    Optional email address for the initial StatusNet user (administrator)

    +
  14. @@ -528,13 +561,15 @@ function handlePost() $host = $_POST['host']; $dbtype = $_POST['dbtype']; $database = $_POST['database']; - $username = $_POST['username']; - $password = $_POST['password']; + $username = $_POST['dbusername']; + $password = $_POST['dbpassword']; $sitename = $_POST['sitename']; $fancy = !empty($_POST['fancy']); $adminNick = $_POST['admin_nickname']; $adminPass = $_POST['admin_password']; + $adminPass2 = $_POST['admin_password2']; + $adminEmail = $_POST['admin_email']; $server = $_SERVER['HTTP_HOST']; $path = substr(dirname($_SERVER['PHP_SELF']), 1); @@ -576,6 +611,11 @@ STR; updateStatus("No initial StatusNet user password specified.", true); $fail = true; } + + if ($adminPass != $adminPass2) { + updateStatus("Administrator passwords do not match. Did you mistype?", true); + $fail = true; + } if ($fail) { showForm(); @@ -600,7 +640,7 @@ STR; } // Okay, cross fingers and try to register an initial user - if (registerInitialUser($adminNick, $adminPass)) { + if (registerInitialUser($adminNick, $adminPass, $adminEmail)) { updateStatus( "An initial user with the administrator role has been created." ); @@ -797,19 +837,20 @@ function runDbScript($filename, $conn, $type = 'mysqli') return true; } -function registerInitialUser($nickname, $password) +function registerInitialUser($nickname, $password, $email) { define('STATUSNET', true); define('LACONICA', true); // compatibility require_once INSTALLDIR . '/lib/common.php'; - $user = User::register( - array('nickname' => $nickname, - 'password' => $password, - 'fullname' => $nickname - ) - ); + $data = array('nickname' => $nickname, + 'password' => $password, + 'fullname' => $nickname); + if ($email) { + $data['email'] = $email; + } + $user = User::register($data); if (empty($user)) { return false; From 0cf0a684ce32a4c79cf05d108d6da38052be5bd8 Mon Sep 17 00:00:00 2001 From: Sarven Capadisli Date: Thu, 4 Mar 2010 11:32:30 -0500 Subject: [PATCH 290/362] Updated SN install UI. Using separate fieldsets --- install.php | 136 +++++++++++++++++++++++++++------------------------- 1 file changed, 70 insertions(+), 66 deletions(-) diff --git a/install.php b/install.php index 51c86683a0..47a09b67c7 100644 --- a/install.php +++ b/install.php @@ -474,76 +474,80 @@ function showForm() -
    -
    Page notice
    -
    -
    -

    Enter your database connection information below to initialize the database.

    -
    -
    -
    - Connection settings -
      -
    • - - -

      The name of your site

      -
    • -
    • - - enable
      - disable
      -

      Enable fancy (pretty) URLs. Auto-detection failed, it depends on Javascript.

      -
    • -
    • - - -

      Database hostname

      -
    • -
    • +
      + Site settings +
        +
      • + + +

        The name of your site

        +
      • +
      • + + enable
        + disable
        +

        Enable fancy (pretty) URLs. Auto-detection failed, it depends on Javascript.

        +
      • +
      • + + +

        Database hostname

        +
      • +
      +
      - - $dbRadios -

      Database type

      -
    • +
      + Database settings +
        +
      • + + $dbRadios +

        Database type

        +
      • +
      • + + +

        Database name

        +
      • +
      • + + +

        Database username

        +
      • +
      • + + +

        Database password (optional)

        +
      • +
      +
      -
    • - - -

      Database name

      -
    • -
    • - - -

      Database username

      -
    • -
    • - - -

      Database password (optional)

      -
    • -
    • - - -

      Nickname for the initial StatusNet user (administrator)

      -
    • -
    • - - -

      Password for the initial StatusNet user (administrator)

      -
    • -
    • - - -
    • -
    • - - -

      Optional email address for the initial StatusNet user (administrator)

      -
    • -
    +
    + Administrator settings +
      +
    • + + +

      Nickname for the initial StatusNet user (administrator)

      +
    • +
    • + + +

      Password for the initial StatusNet user (administrator)

      +
    • +
    • + + +
    • +
    • + + +

      Optional email address for the initial StatusNet user (administrator)

      +
    • +
    +
    From 67e4c5d43be2228169f3d08feafbb6a980d4a40a Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Thu, 4 Mar 2010 08:32:45 -0800 Subject: [PATCH 291/362] Added oauth_appication tables to 08to09.sql Conflicts: db/08to09.sql --- db/08to09.sql | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/db/08to09.sql b/db/08to09.sql index f305721541..3ebb141bf6 100644 --- a/db/08to09.sql +++ b/db/08to09.sql @@ -110,8 +110,36 @@ insert into queue_item_new (frame,transport,created,claimed) alter table queue_item rename to queue_item_old; alter table queue_item_new rename to queue_item; +create table oauth_application ( + id integer auto_increment primary key comment 'unique identifier', + owner integer not null comment 'owner of the application' references profile (id), + consumer_key varchar(255) not null comment 'application consumer key' references consumer (consumer_key), + name varchar(255) not null comment 'name of the application', + description varchar(255) comment 'description of the application', + icon varchar(255) not null comment 'application icon', + source_url varchar(255) comment 'application homepage - used for source link', + organization varchar(255) comment 'name of the organization running the application', + homepage varchar(255) comment 'homepage for the organization', + callback_url varchar(255) comment 'url to redirect to after authentication', + type tinyint default 0 comment 'type of app, 1 = browser, 2 = desktop', + access_type tinyint default 0 comment 'default access type, bit 1 = read, bit 2 = write', + created datetime not null comment 'date this record was created', + modified timestamp comment 'date this record was modified' +) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; + +create table oauth_application_user ( + profile_id integer not null comment 'user of the application' references profile (id), + application_id integer not null comment 'id of the application' references oauth_application (id), + access_type tinyint default 0 comment 'access type, bit 1 = read, bit 2 = write, bit 3 = revoked', + token varchar(255) comment 'request or access token', + created datetime not null comment 'date this record was created', + modified timestamp comment 'date this record was modified', + constraint primary key (profile_id, application_id) +) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; + alter table file_to_post add index post_id_idx (post_id); alter table group_inbox add index group_inbox_notice_id_idx (notice_id); + From 3d2bf5ce20d494c1d9e890e1d666008ef66e5703 Mon Sep 17 00:00:00 2001 From: Ciaran Gultnieks Date: Mon, 1 Feb 2010 21:05:50 +0000 Subject: [PATCH 292/362] Create new field in consumer table in 08to09.sql --- db/08to09.sql | 3 +++ 1 file changed, 3 insertions(+) diff --git a/db/08to09.sql b/db/08to09.sql index 3ebb141bf6..05958f6123 100644 --- a/db/08to09.sql +++ b/db/08to09.sql @@ -110,6 +110,9 @@ insert into queue_item_new (frame,transport,created,claimed) alter table queue_item rename to queue_item_old; alter table queue_item_new rename to queue_item; +alter table consumer + add column consumer_secret varchar(255) not null comment 'secret value'; + create table oauth_application ( id integer auto_increment primary key comment 'unique identifier', owner integer not null comment 'owner of the application' references profile (id), From 1831506885ad31c14eb1c4c87274c299fbf39957 Mon Sep 17 00:00:00 2001 From: Sarven Capadisli Date: Thu, 4 Mar 2010 11:35:18 -0500 Subject: [PATCH 293/362] Moved database hostname in install to db fieldset --- install.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/install.php b/install.php index 47a09b67c7..32b0447c88 100644 --- a/install.php +++ b/install.php @@ -490,17 +490,17 @@ function showForm() disable

    Enable fancy (pretty) URLs. Auto-detection failed, it depends on Javascript.

    -
  15. - - -

    Database hostname

    -
  16. Database settings
      +
    • + + +

      Database hostname

      +
    • $dbRadios From fd4eefe6b4a2a64b21e1f924afe1d8d749cd89e0 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Thu, 4 Mar 2010 11:43:31 -0500 Subject: [PATCH 294/362] OStatus enabled by default --- lib/default.php | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/default.php b/lib/default.php index 8e99a0e1c3..bdd78d4d86 100644 --- a/lib/default.php +++ b/lib/default.php @@ -280,6 +280,7 @@ $default = 'TightUrl' => array('shortenerName' => '2tu.us', 'freeService' => true,'serviceUrl'=>'http://2tu.us/?save=y&url=%1$s'), 'Geonames' => null, 'Mapstraction' => null, + 'OStatus' => null, 'WikiHashtags' => null, 'OpenID' => null), ), From af04973e9e49c7867a26357ed85d64f04d6bb263 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Thu, 4 Mar 2010 08:49:04 -0800 Subject: [PATCH 295/362] Roll up some missing items from 08to09.sql; now hits all changed tables/columns/keys in core. Added partial data conversions: user_groups -> local_user: ids, names filled out; mainpage, uri left null notice -> conversation: stub entry added to push the autoincrement past existing notice items --- db/08to09.sql | 44 +++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 43 insertions(+), 1 deletion(-) diff --git a/db/08to09.sql b/db/08to09.sql index 05958f6123..ba6f382005 100644 --- a/db/08to09.sql +++ b/db/08to09.sql @@ -111,7 +111,11 @@ alter table queue_item rename to queue_item_old; alter table queue_item_new rename to queue_item; alter table consumer - add column consumer_secret varchar(255) not null comment 'secret value'; + add consumer_secret varchar(255) not null comment 'secret value'; + +alter table token + add verifier varchar(255) comment 'verifier string for OAuth 1.0a', + add verified_callback varchar(255) comment 'verified callback URL for OAuth 1.0a'; create table oauth_application ( id integer auto_increment primary key comment 'unique identifier', @@ -140,6 +144,44 @@ create table oauth_application_user ( constraint primary key (profile_id, application_id) ) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; +create table inbox ( + + user_id integer not null comment 'user receiving the notice' references user (id), + notice_ids blob comment 'packed list of notice ids', + + constraint primary key (user_id) + +) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; + +create table conversation ( + id integer auto_increment primary key comment 'unique identifier', + uri varchar(225) unique comment 'URI of the conversation', + created datetime not null comment 'date this record was created', + modified timestamp comment 'date this record was modified' +) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; + +-- stub entry to push the autoincrement past existing notice ids +insert into conversation (id,created) + select max(id)+1, now() from notice; + +alter table user_group + add uri varchar(255) unique key comment 'universal identifier', + add mainpage varchar(255) comment 'page for group info to link to', + drop index nickname; + +create table local_group ( + + group_id integer primary key comment 'group represented' references user_group (id), + nickname varchar(64) unique key comment 'group represented', + + created datetime not null comment 'date this record was created', + modified timestamp comment 'date this record was modified' + +) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; + +insert into local_group (group_id, nickname, created) + select id, nickname, created from user_group; + alter table file_to_post add index post_id_idx (post_id); From 02f49193d5eaee108899b38678334f775dee596f Mon Sep 17 00:00:00 2001 From: James Walker Date: Thu, 4 Mar 2010 11:48:51 -0500 Subject: [PATCH 296/362] adding checkschema to setup script --- scripts/setup_status_network.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/setup_status_network.sh b/scripts/setup_status_network.sh index 89d15415f9..4ebb696c71 100755 --- a/scripts/setup_status_network.sh +++ b/scripts/setup_status_network.sh @@ -54,6 +54,8 @@ for top in $AVATARBASE $FILEBASE $BACKGROUNDBASE; do chmod a+w $top/$nickname done +php $PHPBASE/scripts/checkschema.php -s"$server" + php $PHPBASE/scripts/registeruser.php \ -s"$server" \ -n"$nickname" \ From 0ddd1ef191389ed38988091d098463b19aa86f68 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Thu, 4 Mar 2010 08:55:36 -0800 Subject: [PATCH 297/362] Ignore API 'since' silently as Twitter does instead of throwing a 403 error. Getting extra results is less disruptive than total failure. Threw in an X-StatusNet-Warning header on the off chance some API client developer notices it. :) --- lib/apiaction.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/apiaction.php b/lib/apiaction.php index eef0ba637d..e4a1df3d19 100644 --- a/lib/apiaction.php +++ b/lib/apiaction.php @@ -86,7 +86,7 @@ class ApiAction extends Action $this->since_id = (int)$this->arg('since_id', 0); if ($this->arg('since')) { - $this->clientError(_("since parameter is disabled for performance; use since_id"), 403); + header('X-StatusNet-Warning: since parameter is disabled; use since_id'); } return true; From 45f11d9637c90c0bc7348c6bc5707516ea457d6c Mon Sep 17 00:00:00 2001 From: James Walker Date: Thu, 4 Mar 2010 12:02:01 -0500 Subject: [PATCH 298/362] adding plugin version to OStatus --- plugins/OStatus/OStatusPlugin.php | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/plugins/OStatus/OStatusPlugin.php b/plugins/OStatus/OStatusPlugin.php index ad4f613891..bdcaae366b 100644 --- a/plugins/OStatus/OStatusPlugin.php +++ b/plugins/OStatus/OStatusPlugin.php @@ -836,4 +836,17 @@ class OStatusPlugin extends Plugin return true; } + + function onPluginVersion(&$versions) + { + $versions[] = array('name' => 'OStatus', + 'version' => STATUSNET_VERSION, + 'author' => 'Evan Prodromou, James Walker, Brion Vibber, Zach Copley', + 'homepage' => 'http://status.net/wiki/Plugin:OStatus', + 'rawdescription' => + _m('Follow people across social networks that implement '. + 'OStatus.')); + + return true; + } } From 8f1762cb9580c3f444ff5fd53bcefcbab6b54980 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Thu, 4 Mar 2010 09:24:47 -0800 Subject: [PATCH 299/362] OStatus: fix for remote group join via non-logged-in 'join' button. Bad lookup was sending us to the first group instead of the selected group. --- plugins/OStatus/actions/ostatusinit.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/OStatus/actions/ostatusinit.php b/plugins/OStatus/actions/ostatusinit.php index 1e45025b09..22aea9f709 100644 --- a/plugins/OStatus/actions/ostatusinit.php +++ b/plugins/OStatus/actions/ostatusinit.php @@ -186,7 +186,7 @@ class OStatusInitAction extends Action $this->clientError("No such user."); } } else if ($this->group) { - $group = Local_group::staticGet('id', $this->group); + $group = Local_group::staticGet('nickname', $this->group); if ($group) { return common_local_url('groupbyid', array('id' => $group->group_id)); } else { From a6a056026d645154e7172b47a046d7ba91d74d65 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Thu, 4 Mar 2010 17:33:56 +0000 Subject: [PATCH 300/362] Dropping the earlier PubSubHubbub plugin; OStatus plugin is taking that portion over (with both internal and external hub options for user and group feeds). Todo: add support for other feeds to OStatus PuSH hub implementation. --- plugins/PubSubHubBub/PubSubHubBubPlugin.php | 285 -------------------- plugins/PubSubHubBub/publisher.php | 86 ------ 2 files changed, 371 deletions(-) delete mode 100644 plugins/PubSubHubBub/PubSubHubBubPlugin.php delete mode 100644 plugins/PubSubHubBub/publisher.php diff --git a/plugins/PubSubHubBub/PubSubHubBubPlugin.php b/plugins/PubSubHubBub/PubSubHubBubPlugin.php deleted file mode 100644 index a880dc8666..0000000000 --- a/plugins/PubSubHubBub/PubSubHubBubPlugin.php +++ /dev/null @@ -1,285 +0,0 @@ -. - * - * @category Plugin - * @package StatusNet - * @author Craig Andrews - * @copyright 2009 Craig Andrews http://candrews.integralblue.com - * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 - * @link http://status.net/ - */ - -if (!defined('STATUSNET')) { - exit(1); -} - -define('DEFAULT_HUB', 'http://pubsubhubbub.appspot.com'); - -require_once INSTALLDIR.'/plugins/PubSubHubBub/publisher.php'; - -/** - * Plugin to provide publisher side of PubSubHubBub (PuSH) - * relationship. - * - * PuSH is a real-time or near-real-time protocol for Atom - * and RSS feeds. More information here: - * - * http://code.google.com/p/pubsubhubbub/ - * - * To enable, add the following line to your config.php: - * - * addPlugin('PubSubHubBub'); - * - * This will use the Google default hub. If you'd like to use - * another, try: - * - * addPlugin('PubSubHubBub', - * array('hub' => 'http://yourhub.example.net/')); - * - * @category Plugin - * @package StatusNet - * @author Craig Andrews - * @copyright 2009 Craig Andrews http://candrews.integralblue.com - * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPLv3 - * @link http://status.net/ - */ - -class PubSubHubBubPlugin extends Plugin -{ - /** - * URL of the hub to advertise and publish to. - */ - - public $hub = DEFAULT_HUB; - - /** - * Default constructor. - */ - - function __construct() - { - parent::__construct(); - } - - /** - * Check if plugin should be active; may be mass-enabled. - * @return boolean - */ - - function enabled() - { - if (common_config('site', 'private')) { - // PuSH relies on public feeds - return false; - } - // @fixme check for being on a private network? - return true; - } - - /** - * Hooks the StartApiAtom event - * - * Adds the necessary bits to advertise PubSubHubBub - * for the Atom feed. - * - * @param Action $action The API action being shown. - * - * @return boolean hook value - */ - - function onStartApiAtom($action) - { - if ($this->enabled()) { - $action->element('link', array('rel' => 'hub', 'href' => $this->hub), null); - } - return true; - } - - /** - * Hooks the StartApiRss event - * - * Adds the necessary bits to advertise PubSubHubBub - * for the RSS 2.0 feeds. - * - * @param Action $action The API action being shown. - * - * @return boolean hook value - */ - - function onStartApiRss($action) - { - if ($this->enabled()) { - $action->element('atom:link', array('rel' => 'hub', - 'href' => $this->hub), - null); - } - return true; - } - - /** - * Hook for a queued notice. - * - * When a notice has been queued, will ping the - * PuSH hub for each Atom and RSS feed in which - * the notice appears. - * - * @param Notice $notice The notice that's been queued - * - * @return boolean hook value - */ - - function onHandleQueuedNotice($notice) - { - if (!$this->enabled()) { - return false; - } - $publisher = new Publisher($this->hub); - - $feeds = array(); - - //public timeline feeds - $feeds[] = common_local_url('ApiTimelinePublic', array('format' => 'rss')); - $feeds[] = common_local_url('ApiTimelinePublic', array('format' => 'atom')); - - //author's own feeds - $user = User::staticGet('id', $notice->profile_id); - - $feeds[] = common_local_url('ApiTimelineUser', - array('id' => $user->nickname, - 'format' => 'rss')); - $feeds[] = common_local_url('ApiTimelineUser', - array('id' => $user->nickname, - 'format' => 'atom')); - - //tag feeds - $tag = new Notice_tag(); - - $tag->notice_id = $notice->id; - if ($tag->find()) { - while ($tag->fetch()) { - $feeds[] = common_local_url('ApiTimelineTag', - array('tag' => $tag->tag, - 'format' => 'rss')); - $feeds[] = common_local_url('ApiTimelineTag', - array('tag' => $tag->tag, - 'format' => 'atom')); - } - } - - //group feeds - $group_inbox = new Group_inbox(); - - $group_inbox->notice_id = $notice->id; - if ($group_inbox->find()) { - while ($group_inbox->fetch()) { - $group = User_group::staticGet('id', $group_inbox->group_id); - - $feeds[] = common_local_url('ApiTimelineGroup', - array('id' => $group->nickname, - 'format' => 'rss')); - $feeds[] = common_local_url('ApiTimelineGroup', - array('id' => $group->nickname, - 'format' => 'atom')); - } - } - - //feed of each user that subscribes to the notice's author - - $ni = $notice->whoGets(); - - foreach (array_keys($ni) as $user_id) { - $user = User::staticGet('id', $user_id); - if (empty($user)) { - continue; - } - $feeds[] = common_local_url('ApiTimelineFriends', - array('id' => $user->nickname, - 'format' => 'rss')); - $feeds[] = common_local_url('ApiTimelineFriends', - array('id' => $user->nickname, - 'format' => 'atom')); - } - - $replies = $notice->getReplies(); - - //feed of user replied to - foreach ($replies as $recipient) { - $user = User::staticGet('id', $recipient); - if (!empty($user)) { - $feeds[] = common_local_url('ApiTimelineMentions', - array('id' => $user->nickname, - 'format' => 'rss')); - $feeds[] = common_local_url('ApiTimelineMentions', - array('id' => $user->nickname, - 'format' => 'atom')); - } - } - $feeds = array_unique($feeds); - - ob_start(); - $ok = $publisher->publish_update($feeds); - $push_last_response = ob_get_clean(); - - if (!$ok) { - common_log(LOG_WARNING, - 'Failure publishing ' . count($feeds) . ' feeds to hub at '. - $this->hub.': '.$push_last_response); - } else { - common_log(LOG_INFO, - 'Published ' . count($feeds) . ' feeds to hub at '. - $this->hub.': '.$push_last_response); - } - - return true; - } - - /** - * Provide version information - * - * Adds this plugin's version data to the global - * version array, for e.g. displaying on the version page. - * - * @param array &$versions array of array of versions - * - * @return boolean hook value - */ - - function onPluginVersion(&$versions) - { - $about = _m('The PubSubHubBub plugin pushes RSS/Atom updates '. - 'to a PubSubHubBub hub.'); - if (!$this->enabled()) { - $about = '' . $about . ' ' . - _m('(inactive on private site)'); - } - $versions[] = array('name' => 'PubSubHubBub', - 'version' => STATUSNET_VERSION, - 'author' => 'Craig Andrews', - 'homepage' => - 'http://status.net/wiki/Plugin:PubSubHubBub', - 'rawdescription' => - $about); - - return true; - } -} diff --git a/plugins/PubSubHubBub/publisher.php b/plugins/PubSubHubBub/publisher.php deleted file mode 100644 index f176a9b8a4..0000000000 --- a/plugins/PubSubHubBub/publisher.php +++ /dev/null @@ -1,86 +0,0 @@ -hub_url = $hub_url; - } - - // accepts either a single url or an array of urls - public function publish_update($topic_urls, $http_function = false) { - if (!isset($topic_urls)) - throw new Exception('Please specify a topic url'); - - // check that we're working with an array - if (!is_array($topic_urls)) { - $topic_urls = array($topic_urls); - } - - // set the mode to publish - $post_string = "hub.mode=publish"; - // loop through each topic url - foreach ($topic_urls as $topic_url) { - - // lightweight check that we're actually working w/ a valid url - if (!preg_match("|^https?://|i",$topic_url)) - throw new Exception('The specified topic url does not appear to be valid: '.$topic_url); - - // append the topic url parameters - $post_string .= "&hub.url=".urlencode($topic_url); - } - - // make the http post request and return true/false - // easy to over-write to use your own http function - if ($http_function) - return $http_function($this->hub_url,$post_string); - else - return $this->http_post($this->hub_url,$post_string); - } - - // returns any error message from the latest request - public function last_response() { - return $this->last_response; - } - - // default http function that uses curl to post to the hub endpoint - private function http_post($url, $post_string) { - - // add any additional curl options here - $options = array(CURLOPT_URL => $url, - CURLOPT_POST => true, - CURLOPT_POSTFIELDS => $post_string, - CURLOPT_USERAGENT => "PubSubHubbub-Publisher-PHP/1.0"); - - $ch = curl_init(); - curl_setopt_array($ch, $options); - - $response = curl_exec($ch); - $this->last_response = $response; - $info = curl_getinfo($ch); - - curl_close($ch); - - // all good - if ($info['http_code'] == 204) - return true; - return false; - } -} - -?> \ No newline at end of file From 74dbd37e9af4dabd5c157b78dc331ccfb6d69131 Mon Sep 17 00:00:00 2001 From: Sarven Capadisli Date: Thu, 4 Mar 2010 12:49:42 -0500 Subject: [PATCH 301/362] Bringing aside back because it is needed for Design values. Will hide from CSS instead. --- lib/adminpanelaction.php | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/lib/adminpanelaction.php b/lib/adminpanelaction.php index d1aab3dfcb..d43ea76984 100644 --- a/lib/adminpanelaction.php +++ b/lib/adminpanelaction.php @@ -189,16 +189,6 @@ class AdminPanelAction extends Action $this->elementEnd('div'); } - /** - * There is no data for aside, so, we don't output - * - * @return nothing - */ - function showAside() - { - - } - /** * show human-readable instructions for the page, or * a success/failure on save. From 6b4c3e59fa8f4a2acf18ce5e9bab34656edeae00 Mon Sep 17 00:00:00 2001 From: Sarven Capadisli Date: Thu, 4 Mar 2010 12:50:29 -0500 Subject: [PATCH 302/362] Showing a vertical navigation for admin panels. --- theme/base/css/display.css | 61 +++++++++++++++++++++++++++++++++----- 1 file changed, 54 insertions(+), 7 deletions(-) diff --git a/theme/base/css/display.css b/theme/base/css/display.css index 01d5dd134d..9647558327 100644 --- a/theme/base/css/display.css +++ b/theme/base/css/display.css @@ -345,10 +345,14 @@ list-style-type:none; float:left; text-decoration:none; padding:4px 11px; +border-radius-topleft:4px; +border-radius-topright:4px; -moz-border-radius-topleft:4px; -moz-border-radius-topright:4px; -webkit-border-top-left-radius:4px; -webkit-border-top-right-radius:4px; +border-radius-topleft:0; +border-radius-topright:0; border-width:1px; border-style:solid; border-bottom:0; @@ -359,6 +363,56 @@ float:left; width:100%; } +body[id$=adminpanel] #site_nav_local_views { +float:right; +margin-right:18.9%; + +margin-right:189px; +position:relative; +width:14.01%; + +width:141px; +z-index:9; +} +body[id$=adminpanel] #site_nav_local_views li { +width:100%; +margin-right:0; +margin-bottom:7px; +} +body[id$=adminpanel] #site_nav_local_views a { +display:block; +width:100%; +border-radius-toprleft:0; +-moz-border-radius-topleft:0; +-webkit-border-top-left-radius:0; +border-radius-topright:4px; +-moz-border-radius-topright:4px; +-webkit-border-top-right-radius:4px; +border-radius-bottomright:4px; +-moz-border-radius-bottomright:4px; +-webkit-border-bottom-right-radius:4px; +} +body[id$=adminpanel] #site_nav_local_views li.current { +box-shadow:none; +-moz-box-shadow:none; +-webkit-box-shadow:none; +} + +body[id$=adminpanel] #content { +border-radius-topleft:7px; +border-radius-topright:7px; +-moz-border-radius-topleft:7px; +-moz-border-radius-topright:7px; +-webkit-border-top-left-radius:7px; +-webkit-border-top-right-radius:7px; +border-radius-topright:0; +-moz-border-radius-topright:0; +-webkit-border-top-right-radius:0; +} +body[id$=adminpanel] #aside_primary { +display:none; +} + #site_nav_global_primary dt, #site_nav_global_secondary dt { display:none; @@ -452,13 +506,6 @@ width:100%; float:left; } -#content.admin { -width:95.5%; -} -#content.admin #content_inner { -width:66.3%; -} - #aside_primary { width:27.917%; min-height:259px; From a3cb285da8fc712caadcc65c9eab9bd98ce79414 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Thu, 4 Mar 2010 09:50:54 -0800 Subject: [PATCH 303/362] Add link to http://status.net/wiki/Getting_started on installer success screen. --- install.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.php b/install.php index 32b0447c88..bb53e2b55b 100644 --- a/install.php +++ b/install.php @@ -664,7 +664,7 @@ STR; updateStatus("StatusNet has been installed at $link"); updateStatus( - "You can visit your new StatusNet site (login as '$adminNick')." + "DONE! You can visit your new StatusNet site (login as '$adminNick'). If this is your first StatusNet install, you may want to poke around our Getting Started guide." ); } From 26f78f5777144d4a04c20fedf0b03df5315b3744 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Thu, 4 Mar 2010 13:04:22 -0500 Subject: [PATCH 304/362] change changelog and version --- README | 262 ++++++++++++--------------------------------------------- 1 file changed, 55 insertions(+), 207 deletions(-) diff --git a/README b/README index 75336eb83f..caa4a2acd2 100644 --- a/README +++ b/README @@ -2,8 +2,8 @@ README ------ -StatusNet 0.9.0 ("Stand") Beta 5 -1 Feb 2010 +StatusNet 0.9.0 ("Stand") +4 Mar 2010 This is the README file for StatusNet (formerly Laconica), the Open Source microblogging platform. It includes installation instructions, @@ -14,21 +14,21 @@ for administrators. Information on using StatusNet can be found in the About ===== -StatusNet (formerly Laconica) is a Free and Open Source microblogging -platform. It helps people in a community, company or group to exchange -short (140 characters, by default) messages over the Web. Users can -choose which people to "follow" and receive only their friends' or -colleagues' status messages. It provides a similar service to sites -like Twitter, Jaiku, Yammer, and Plurk. +StatusNet is a Free and Open Source microblogging platform. It helps +people in a community, company or group to exchange short (140 +characters, by default) messages over the Web. Users can choose which +people to "follow" and receive only their friends' or colleagues' +status messages. It provides a similar service to sites like Twitter, +Google Buzz, or Yammer. With a little work, status messages can be sent to mobile phones, instant messenger programs (GTalk/Jabber), and specially-designed desktop clients that support the Twitter API. -StatusNet supports an open standard called OpenMicroBlogging - that lets users on different Web sites -or in different companies subscribe to each others' notices. It -enables a distributed social network spread all across the Web. +StatusNet supports an open standard called OStatus + that lets users in different networks follow +each other. It enables a distributed social network spread all across +the Web. StatusNet was originally developed for the Open Software Service, Identi.ca . It is shared with you in hope that you @@ -77,203 +77,51 @@ for additional terms. New this version ================ -This is a major feature release since version 0.8.2, released Nov 1 2009. -It is also a security release since 0.9.0beta4 January 27 2010. Beta -users are strongly encouraged to upgrade to deal with a security alert. - -http://status.net/wiki/Security_alert_0000002 +This is a major feature release since version 0.8.3, released Feb 1 +2010. It is the final release version of 0.9.0. Notable changes this version: -- Records of deleted notices are stored without the notice content. -- Much of the optional core featureset has been moved to plugins. -- OpenID support moved from core to a plugin. Helps test the strength of - our plugin architecture and makes it easy to disable this - functionality for e.g. intranet sites. -- Many additional hook events (see EVENTS.txt for details). -- OMB 0.1 support re-implemented using libomb. -- Re-structure database so notices, messages, bios and group - descriptions can be over 140 characters. Limit defined by - site administrator as configuration option; can be unlimited. -- Configuration data now optionally stored in the database, which - overrides any settings in config files. -- Twitter integration re-implemented as a plugin. -- Facebook integration re-implemented as a plugin. -- Role-based authorization framework. Users can have named roles, and - roles can have rights (e.g., to delete notices, change configuration - data, or ban uncooperative users). Default roles 'admin' (for - configuration) and 'moderator' (for community management) added. -- Plugin for PubSubHubBub (PuSH) support. -- Considerable code style cleanup to meet PEAR code standards. -- Made a common library for HTTP-client access which uses available - HTTP libraries where possible. -- Added statuses/home_timeline method to API. -- Hooks for plugins to handle notices offline, either by defining - their own queue handler scripts or to use a default plugin queue - handler script. -- Plugins can now modify the database schema, adding their own tables - or modifying existing ones. -- Groups API. -- Twitter API supports Web caching for some methods. -- Twitter API refactored into one-action-per-method. -- Realtime plugin supports a tear-off window. -- FOAF for groups. -- Moved all JavaScript tags to just before by default, - significantly speeding up apparent page load time. -- Added a Realtime plugin for Orbited server. -- Added a mobile plugin to give a more mobile-phone-friendly layout - when a mobile browser is detected. -- Use CSS sprites for most common icons. -- Fixes for images and buttons on Web output. -- New plugin requires that users validate their email before posting. -- New plugin UserFlag lets users flag other profiles for review. -- Considerably better i18n support. Use TranslateWiki to update - translations. -- Notices and profiles now store location information. -- New plugin, Geonames, for turning location names and lat/long pairs - into structured IDs and vice versa. Architecture reusable for other - systems. -- Better check of license compatibility between site licenses. -- Some improvements in XMPP output. -- Media upload in the API. -- Replies appear in the user's inbox. -- Improved the UI on the bookmarklet. -- StatusNet identities can be used as OpenID identities. -- Script to register a user. -- Script to make someone a group admin. -- Script to make someone a site admin or moderator. -- 'login' command. -- Pluggable authentication. -- LDAP authentication plugin. -- Script for console interaction with the site (!). -- Users don't see group posts from people they've blocked. -- Admin panel interface for changing site configuration. -- Users can be sandboxed (limited contributions) or silenced - (no contributions) by moderators. -- Many changes to make language usage more consistent. -- Sphinx search moved to a plugin. -- GeoURL plugin. -- Profile and group lists support hAtom. -- Massive refactoring of util.js. -- Mapstraction plugin to show maps on inbox and profile pages. -- Play/pause buttons for realtime notices. -- Support for geo microformat. -- Partial support for feed subscriptions, RSSCloud, PubSubHubBub. -- Support for geolocation in browser (Chrome, Firefox). -- Quit trying to negotiate HTML format. Always use text/html. - We lose, and so do Web standards. Boo. -- Better logging of request info. -- Better output for errors in Web interface. -- No longer store .mo files; these need to be generated. -- Minify plugin. -- Events to allow pluginizing logger. -- New framework for plugin localization. -- Gravatar plugin. -- Add support for "repeats" (similar to Twitter's "retweets"). -- Support for repeats in Twitter API. -- Better notification of direct messages. -- New plugin to add "powered by StatusNet" to logo. -- Returnto works for private sites. -- Localisation updates, including new Persian translation. -- CAS authentication plugin -- Get rid of DB_DataObject native cache (big memory leaker) -- setconfig.php script to set configuration variables -- Blacklist plugin, to blacklist URLs and nicknames -- Users can set flag whether they want to share location - both in notice form (for one notice) and profile settings - (any notice) -- notice inboxes moved from normalized notice_inbox table to - denormalized inbox table -- Automatic compression of Memcache -- Memory caching pluginized -- Memcache, XCache, APC and Diskcache plugins -- A script to update user locations -- cache empty query results -- A sample plugin to show best plugin practices -- CacheLog plugin to debug cache accesses -- Require users to login to view attachments on private sites -- Plugin to use Mollom spam detection service -- Plugin for RSSCloud -- Add an array of default plugins -- A version action to give credit to contributors and plugin - developers -- Daemon to read IMAP mailbox instead of using a mailbox script -- Pass session information between SSL and non-SSL server - when SSL set to 'sometimes' -- Major refactoring of queue handlers to manage very - large hosting site (like status.net) -- SubscriptionThrottle plugin to prevent subscription spamming -- Don't enqueue into plugin or SMS queues when disabled (breaks unqueuehandler if SMS queue isn't attached) -- Improve name validation checks on local File references -- fix local file include vulnerability in doc.php -- Reusing fixed selector name for 'processing' in util.js -- Removed hAtom pattern from registration page. -- restructuring of User::registerNew() lost password munging -- Add a script to clear the cache for a given key -- buggy fetch for site owner -- Added missing concat of
    • in Realtime response -- Updated XHR binded events to work better in jQuery 1.4.1. Using .live() for event delegation instead of jQuery.data() and checking to see if an element was previously binded. -- Updated jQuery Form Plugin from v2.17 to v2.36 -- Updated jQuery JavaScript Library from v1.3.2 to v1.4.1 -- move schema.type.php to typeschema.php like other files -- Add Really Simple Discovery (RSD) support -- Add a robots.txt URL to the site root -- error clearing tags for profiles from memcached -- on exceptions, stomp logs the error and reenqueues -- add lat, lon, location and remove closing tag from geocode.php -- Use passed-in lat long in geocode.php -- better handling of null responses from geonames.org -- Globalized form notice data geo values -- Using jQuery chaining in FormNoticeXHR -- Using form object instead of form_id and find(). Slightly faster and easier to read. -- removed describeTable from base class, and fixed it up in pgsql -- getTableDef() mostly working in postgres -- move the schema DDL sql off into seperate files for each db we support -- plugin to limit number of registered users -- add hooks for user registration -- live fast, die young in bash scripts -- for single-user mode, retrieve either site owner or defined nickname -- method to get the site owner -- define a constant for the 'owner' role of a site -- add simple cache getter/setter static functions to Memcached_DataObject -- Adds notice author's name to @title in Realtime response -- Hides .author from XHR response in showstream -- Hides .author from XHR response in showstream -- Fix more fatal errors in queue edge cases -- Don't attempt to resend XMPP messages that can't be broadcast due to the profile being deleted. -- Wrap each bit of distrib queue handler's saving operation in a try/catch; log exceptions but let everything else continue. -- Log exceptions from queuedaemon.php if they're not already caught -- Move sessions settings to its own panel -- Fixes for status_network db object .ini and tag setter script -- Add a script to set tags for sites -- Adjust API authentication to also check for OAuth protocol params in the HTTP Authorization header, as defined in OAuth HTTP Authorization Scheme. -- Last-chance distribution if enqueueing fails -- Manual failover for stomp queues. -- lost config in index.php made all traffic go to master -- "Revert "move RW setup above user get in index.php so remember_me works"" -- Revert "move RW setup above user get in index.php so remember_me works" -- move RW setup above user get in index.php so remember_me works -- hide most DB_DataObject errors -- always set up database_rw, regardless, so cached sessions work -- update mysqltimestamps on insert and update -- additional debugging data for Sessions -- 'Sign in with Twitter' button img -- Update to biz theme -- Remove redundant session token field from form (was already being added by base class). -- 'Sign in with Twitter' button img -- Can now set $config['queue']['stomp_persistent'] = false; to explicitly disable persistence when we queue items -- Showing processing indicator for form_repeat on submit instead of form -- Removed avatar from repeat of username (matches noticelist) -- Removed unused variable assignment for avatar URL and added missing fn -- Don't preemptively close existing DB connections for web views (needed to keep # of conns from going insane on multi-site queue daemons, so just doing for CLI) May, or may not, help with mystery session problems -- dropping the setcookie() call from common_ensure_session() since we're pretty sure it's unnecessary -- append '/' on cookie path for now (may still need some refactoring) -- set session cookie correctly -- Fix for Mapstraction plugin's zoomed map links -- debug log line for control channel sub -- Move faceboookapp.js to the Facebook plugin -- fix for fix for bad realtime JS load -- default 24-hour expiry on Memcached objects where not specified. +- Support for the new distributed status update standard OStatus + , based on PubSubHubbub, Salmon, Webfinger, + and Activity Streams. +- Support for location. Notices are (optionally) marked with lat-long + information, and can be shown on a map. +- No fixed content size. Notice size is configurable, from 1 to + unlimited number of characters. Default is still 140! +- An authorization framework, allowing different levels of users. +- A Web-based administration panel. +- A moderation system that lets site moderators sandbox, silence, + or delete uncooperative users. +- A flag system that lets users flag profiles for moderator review. +- Support for OAuth authentication in the Twitter + API. +- A pluggable authentication system. +- An authentication plugin for LDAP servers. +- Many features that were core in 0.8.x are now plugins, such + as OpenID, Twitter integration, Facebook integration +- A much-improved offline processing system +- In-browser "realtime" updates using a number of realtime + servers (Meteor, Orbited, Cometd) +- A plugin to provide an interface optimized for mobile browsers +- Support for Facebook Connect +- Support for logging in with a Twitter account +- Vastly improved translation with additional languages and + translation in plugins +- Support for all-SSL instances +- Core support for "repeats" (like Twitter's "retweets") +- Pluggable caching system, with plugins for Memcached, + APC, XCache, and a disk-based cache +- Plugin to support RSSCloud +- A framework for adding advertisements to a public site, + and plugins for Google AdSense and OpenX server + +There are also literally thousands of bugs fixed and minor features +added. A full changelog is available at http://status.net/wiki/StatusNet_0.9.0. + +Under the covers, the software has a vastly improved plugin and +extension mechanism that makes writing powerful and flexible additions +to the core functionality much easier. Prerequisites ============= @@ -806,7 +654,7 @@ management, but host it on a public server. Note that this is an experimental feature; total privacy is not guaranteed or ensured. Also, privacy is all-or-nothing for a site; you can't have some accounts or notices private, and others public. -Finally, the interaction of private sites with OpenMicroBlogging is +Finally, the interaction of private sites with OStatus is undefined. Remote users won't be able to subscribe to users on a private site, but users of the private site may be able to subscribe to users on a remote site. (Or not... it's not well tested.) The From 046e2b7dc726338d2cc3208016469ecd59d4a23e Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Thu, 4 Mar 2010 13:17:48 -0500 Subject: [PATCH 305/362] change URLs and versions in README --- README | 62 ++++++++++++++-------------------------------------------- 1 file changed, 15 insertions(+), 47 deletions(-) diff --git a/README b/README index caa4a2acd2..9d40b8a7b9 100644 --- a/README +++ b/README @@ -160,6 +160,8 @@ For some functionality, you will also need the following extensions: - Sphinx Search. A client for the sphinx server, an alternative to MySQL or Postgresql fulltext search. You will also need a Sphinx server to serve the search queries. +- bcmath or gmp. For Salmon signatures (part of OStatus). Needed + if you have OStatus configured. You will almost definitely get 2-3 times better performance from your site if you install a PHP bytecode cache/accelerator. Some well-known @@ -209,6 +211,9 @@ and the URLs are listed here for your convenience. - PEAR Validate is an oEmbed dependency. - PEAR Net_URL2 is an oEmbed dependency. - Console_GetOpt for parsing command-line options. +- libomb. a library for implementing OpenMicroBlogging 0.1, the + predecessor to OStatus. +- HTTP_Request2, a library for making HTTP requests. A design goal of StatusNet is that the basic Web functionality should work on even the most restrictive commercial hosting services. @@ -226,9 +231,9 @@ especially if you've previously installed PHP/MySQL packages. 1. Unpack the tarball you downloaded on your Web server. Usually a command like this will work: - tar zxf statusnet-0.8.2.tar.gz + tar zxf statusnet-0.9.0.tar.gz - ...which will make a statusnet-0.8.2 subdirectory in your current + ...which will make a statusnet-0.9.0 subdirectory in your current directory. (If you don't have shell access on your Web server, you may have to unpack the tarball on your local computer and FTP the files to the server.) @@ -236,7 +241,7 @@ especially if you've previously installed PHP/MySQL packages. 2. Move the tarball to a directory of your choosing in your Web root directory. Usually something like this will work: - mv statusnet-0.8.2 /var/www/mublog + mv statusnet-0.9.0 /var/www/mublog This will make your StatusNet instance available in the mublog path of your server, like "http://example.net/mublog". "microblog" or @@ -545,43 +550,6 @@ our kind of hacky home-grown DB-based queue solution. See the "queues" config section below for how to configure to use STOMP. As of this writing, the software has been tested with ActiveMQ. -Sitemaps --------- - -Sitemap files are a very nice way of telling -search engines and other interested bots what's available on your site -and what's changed recently. You can generate sitemap files for your -StatusNet instance. - -1. Choose your sitemap URL layout. StatusNet creates a number of - sitemap XML files for different parts of your site. You may want to - put these in a sub-directory of your StatusNet directory to avoid - clutter. The sitemap index file tells the search engines and other - bots where to find all the sitemap files; it *must* be in the main - installation directory or higher. Both types of file must be - available through HTTP. - -2. To generate your sitemaps, run the following command on your server: - - php scripts/sitemap.php -f index-file-path -d sitemap-directory -u URL-prefix-for-sitemaps - - Here, index-file-path is the full path to the sitemap index file, - like './sitemapindex.xml'. sitemap-directory is the directory where - you want the sitemaps stored, like './sitemaps/' (make sure the dir - exists). URL-prefix-for-sitemaps is the full URL for the sitemap dir, - typically something like . - -You can use several methods for submitting your sitemap index to -search engines to get your site indexed. One is to add a line like the -following to your robots.txt file: - - Sitemap: /mublog/sitemapindex.xml - -This is a good idea for letting *all* Web spiders know about your -sitemap. You can also submit sitemap files to major search engines -using their respective "Webmaster centres"; see sitemaps.org for links -to these resources. - Themes ------ @@ -689,7 +657,7 @@ with this situation. If you've been using StatusNet 0.7, 0.6, 0.5 or lower, or if you've been tracking the "git" version of the software, you will probably want to upgrade and keep your existing data. There is no automated -upgrade procedure in StatusNet 0.8.2. Try these step-by-step +upgrade procedure in StatusNet 0.9.0. Try these step-by-step instructions; read to the end first before trying them. 0. Download StatusNet and set up all the prerequisites as if you were @@ -710,7 +678,7 @@ instructions; read to the end first before trying them. 5. Once all writing processes to your site are turned off, make a final backup of the Web directory and database. 6. Move your StatusNet directory to a backup spot, like "mublog.bak". -7. Unpack your StatusNet 0.8.2 tarball and move it to "mublog" or +7. Unpack your StatusNet 0.9.0 tarball and move it to "mublog" or wherever your code used to be. 8. Copy the config.php file and avatar directory from your old directory to your new directory. @@ -1510,7 +1478,7 @@ repository (see below), and you get a compilation error ("unexpected T_STRING") in the browser, check to see that you don't have any conflicts in your code. -If you upgraded to StatusNet 0.8.2 without reading the "Notice +If you upgraded to StatusNet 0.9.0 without reading the "Notice inboxes" section above, and all your users' 'Personal' tabs are empty, read the "Notice inboxes" section above. @@ -1565,16 +1533,16 @@ There are several ways to get more information about StatusNet. * The #statusnet IRC channel on freenode.net . * The StatusNet wiki, http://status.net/wiki/ * The StatusNet blog, http://status.net/blog/ -* The StatusNet status update, (!) +* The StatusNet status update, (!) Feedback ======== -* Microblogging messages to http://identi.ca/evan are very welcome. +* Microblogging messages to http://support.status.net/ are very welcome. +* The microblogging group http://identi.ca/group/statusnet is a good + place to discuss the software. * StatusNet's Trac server has a bug tracker for any defects you may find, or ideas for making things better. http://status.net/trac/ -* e-mail to evan@status.net will usually be read and responded to very - quickly, unless the question is really hard. Credits ======= From f7f7f167d6dae9b6fd83ca722378728e6378018d Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Thu, 4 Mar 2010 13:18:41 -0500 Subject: [PATCH 306/362] update version number --- lib/common.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/common.php b/lib/common.php index 546f6bbe4b..5d53270e30 100644 --- a/lib/common.php +++ b/lib/common.php @@ -22,7 +22,7 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } //exit with 200 response, if this is checking fancy from the installer if (isset($_REQUEST['p']) && $_REQUEST['p'] == 'check-fancy') { exit; } -define('STATUSNET_VERSION', '0.9.0beta6+bugfix1'); +define('STATUSNET_VERSION', '0.9.0'); define('LACONICA_VERSION', STATUSNET_VERSION); // compatibility define('STATUSNET_CODENAME', 'Stand'); From 7bd0b8e17ebee9f1b582ac7dd5032562216f9ad0 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Thu, 4 Mar 2010 10:20:10 -0800 Subject: [PATCH 307/362] Pull latest .po files from 0.9.x to testing --- locale/ar/LC_MESSAGES/statusnet.po | 961 ++++++----- locale/arz/LC_MESSAGES/statusnet.po | 871 ++++++---- locale/bg/LC_MESSAGES/statusnet.po | 869 ++++++---- locale/ca/LC_MESSAGES/statusnet.po | 886 ++++++---- locale/cs/LC_MESSAGES/statusnet.po | 863 ++++++---- locale/de/LC_MESSAGES/statusnet.po | 911 ++++++---- locale/el/LC_MESSAGES/statusnet.po | 856 ++++++---- locale/en_GB/LC_MESSAGES/statusnet.po | 1512 +++++++++-------- locale/es/LC_MESSAGES/statusnet.po | 874 ++++++---- locale/fa/LC_MESSAGES/statusnet.po | 868 ++++++---- locale/fi/LC_MESSAGES/statusnet.po | 872 ++++++---- locale/fr/LC_MESSAGES/statusnet.po | 886 ++++++---- locale/ga/LC_MESSAGES/statusnet.po | 865 ++++++---- locale/he/LC_MESSAGES/statusnet.po | 866 ++++++---- locale/hsb/LC_MESSAGES/statusnet.po | 884 ++++++---- locale/ia/LC_MESSAGES/statusnet.po | 871 ++++++---- locale/is/LC_MESSAGES/statusnet.po | 873 ++++++---- locale/it/LC_MESSAGES/statusnet.po | 887 ++++++---- locale/ja/LC_MESSAGES/statusnet.po | 869 ++++++---- locale/ko/LC_MESSAGES/statusnet.po | 871 ++++++---- locale/mk/LC_MESSAGES/statusnet.po | 884 ++++++---- locale/nb/LC_MESSAGES/statusnet.po | 970 ++++++----- locale/nl/LC_MESSAGES/statusnet.po | 886 ++++++---- locale/nn/LC_MESSAGES/statusnet.po | 871 ++++++---- locale/pl/LC_MESSAGES/statusnet.po | 894 ++++++---- locale/pt/LC_MESSAGES/statusnet.po | 869 ++++++---- locale/pt_BR/LC_MESSAGES/statusnet.po | 869 ++++++---- locale/ru/LC_MESSAGES/statusnet.po | 888 ++++++---- locale/statusnet.po | 556 +++--- locale/sv/LC_MESSAGES/statusnet.po | 884 ++++++---- locale/te/LC_MESSAGES/statusnet.po | 892 ++++++---- locale/tr/LC_MESSAGES/statusnet.po | 864 ++++++---- locale/uk/LC_MESSAGES/statusnet.po | 885 ++++++---- locale/vi/LC_MESSAGES/statusnet.po | 863 ++++++---- locale/zh_CN/LC_MESSAGES/statusnet.po | 868 ++++++---- locale/zh_TW/LC_MESSAGES/statusnet.po | 861 ++++++---- plugins/Facebook/locale/Facebook.po | 249 +-- plugins/Gravatar/locale/Gravatar.po | 8 +- plugins/Mapstraction/locale/Mapstraction.po | 24 +- plugins/OStatus/locale/OStatus.po | 22 +- plugins/OpenID/locale/OpenID.po | 384 ++--- .../locale/PoweredByStatusNet.po | 8 +- plugins/Sample/locale/Sample.po | 2 +- plugins/TwitterBridge/locale/TwitterBridge.po | 122 +- 44 files changed, 19872 insertions(+), 12966 deletions(-) diff --git a/locale/ar/LC_MESSAGES/statusnet.po b/locale/ar/LC_MESSAGES/statusnet.po index 26f9563295..578f0d2509 100644 --- a/locale/ar/LC_MESSAGES/statusnet.po +++ b/locale/ar/LC_MESSAGES/statusnet.po @@ -9,76 +9,83 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-02-24 23:49+0000\n" -"PO-Revision-Date: 2010-02-24 23:50:01+0000\n" +"POT-Creation-Date: 2010-03-02 21:02+0000\n" +"PO-Revision-Date: 2010-03-02 21:02:06+0000\n" "Language-Team: Arabic\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r62925); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=6; plural= n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " "&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -#: actions/accessadminpanel.php:54 lib/adminpanelaction.php:326 +#. TRANS: Page title +#: actions/accessadminpanel.php:55 msgid "Access" msgstr "نفاذ" -#: actions/accessadminpanel.php:65 +#. TRANS: Page notice +#: actions/accessadminpanel.php:67 msgid "Site access settings" msgstr "إعدادات الوصول إلى الموقع" -#: actions/accessadminpanel.php:158 +#. TRANS: Form legend for registration form. +#: actions/accessadminpanel.php:161 msgid "Registration" msgstr "تسجيل" -#: actions/accessadminpanel.php:161 -msgid "Private" -msgstr "خاص" - -#: actions/accessadminpanel.php:163 +#. TRANS: Checkbox instructions for admin setting "Private" +#: actions/accessadminpanel.php:165 msgid "Prohibit anonymous users (not logged in) from viewing site?" msgstr "أأمنع المستخدمين المجهولين (غير الوالجين) من عرض الموقع؟" +#. TRANS: Checkbox label for prohibiting anonymous users from viewing site. #: actions/accessadminpanel.php:167 -msgid "Invite only" -msgstr "بالدعوة فقط" +#, fuzzy +msgctxt "LABEL" +msgid "Private" +msgstr "خاص" -#: actions/accessadminpanel.php:169 +#. TRANS: Checkbox instructions for admin setting "Invite only" +#: actions/accessadminpanel.php:174 msgid "Make registration invitation only." msgstr "" -#: actions/accessadminpanel.php:173 -msgid "Closed" -msgstr "مُغلق" +#. TRANS: Checkbox label for configuring site as invite only. +#: actions/accessadminpanel.php:176 +msgid "Invite only" +msgstr "بالدعوة فقط" -#: actions/accessadminpanel.php:175 +#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations) +#: actions/accessadminpanel.php:183 msgid "Disable new registrations." msgstr "عطّل التسجيل الجديد." -#: actions/accessadminpanel.php:189 actions/designadminpanel.php:586 -#: actions/emailsettings.php:195 actions/imsettings.php:163 -#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 -#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 -#: actions/siteadminpanel.php:336 actions/smssettings.php:181 -#: actions/subscriptions.php:208 actions/tagother.php:154 -#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 -#: lib/applicationeditform.php:334 lib/designsettings.php:256 -#: lib/groupeditform.php:202 -msgid "Save" -msgstr "أرسل" +#. TRANS: Checkbox label for disabling new user registrations. +#: actions/accessadminpanel.php:185 +msgid "Closed" +msgstr "مُغلق" -#: actions/accessadminpanel.php:189 +#. TRANS: Title / tooltip for button to save access settings in site admin panel +#: actions/accessadminpanel.php:202 msgid "Save access settings" msgstr "حفظ إعدادت الوصول" -#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 -#: actions/showfavorites.php:137 actions/tag.php:51 +#: actions/accessadminpanel.php:203 +#, fuzzy +msgctxt "BUTTON" +msgid "Save" +msgstr "أرسل" + +#. TRANS: Server error when page not found (404) +#: actions/all.php:64 actions/public.php:98 actions/replies.php:93 +#: actions/showfavorites.php:138 actions/tag.php:52 msgid "No such page" msgstr "لا صفحة كهذه" -#: actions/all.php:74 actions/allrss.php:68 +#: actions/all.php:75 actions/allrss.php:68 #: actions/apiaccountupdatedeliverydevice.php:113 #: actions/apiaccountupdateprofile.php:105 #: actions/apiaccountupdateprofilebackgroundimage.php:116 @@ -92,72 +99,82 @@ msgstr "لا صفحة كهذه" #: actions/apitimelinehome.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/otp.php:76 -#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154 -#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 -#: actions/showfavorites.php:105 actions/userbyid.php:74 -#: actions/usergroups.php:91 actions/userrss.php:38 actions/xrds.php:71 -#: lib/command.php:163 lib/command.php:302 lib/command.php:355 -#: lib/command.php:401 lib/command.php:462 lib/command.php:518 -#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 +#: actions/hcard.php:67 actions/microsummary.php:62 actions/newmessage.php:116 +#: actions/otp.php:76 actions/remotesubscribe.php:145 +#: actions/remotesubscribe.php:154 actions/replies.php:73 +#: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/xrds.php:71 lib/command.php:163 lib/command.php:302 +#: lib/command.php:355 lib/command.php:401 lib/command.php:462 +#: lib/command.php:518 lib/galleryaction.php:59 lib/mailbox.php:82 +#: lib/profileaction.php:77 msgid "No such user." msgstr "لا مستخدم كهذا." -#: actions/all.php:84 +#. TRANS: Page title. %1$s is user nickname, %2$d is page number +#: actions/all.php:86 #, php-format msgid "%1$s and friends, page %2$d" msgstr "%1$s والأصدقاء, الصفحة %2$d" -#: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 +#. TRANS: Page title. %1$s is user nickname +#. TRANS: H1 text. %1$s is user nickname +#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" msgstr "%s والأصدقاء" -#: actions/all.php:99 +#. TRANS: %1$s is user nickname +#: actions/all.php:103 #, php-format msgid "Feed for friends of %s (RSS 1.0)" msgstr "" -#: actions/all.php:107 +#. TRANS: %1$s is user nickname +#: actions/all.php:112 #, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "" -#: actions/all.php:115 +#. TRANS: %1$s is user nickname +#: actions/all.php:121 #, php-format msgid "Feed for friends of %s (Atom)" msgstr "" -#: actions/all.php:127 +#. TRANS: %1$s is user nickname +#: actions/all.php:134 #, php-format msgid "" "This is the timeline for %s and friends but no one has posted anything yet." msgstr "" -#: actions/all.php:132 +#: actions/all.php:139 #, php-format msgid "" "Try subscribing to more people, [join a group](%%action.groups%%) or post " "something yourself." msgstr "" -#: actions/all.php:134 +#. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@" +#: actions/all.php:142 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) from his profile or [post something to " "his or her attention](%%%%action.newnotice%%%%?status_textarea=%3$s)." msgstr "" -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211 +#: actions/all.php:145 actions/replies.php:210 actions/showstream.php:211 #, 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/all.php:165 +#. TRANS: H1 text +#: actions/all.php:174 msgid "You and friends" msgstr "أنت والأصدقاء" @@ -175,20 +192,20 @@ msgstr "" #: actions/apiaccountverifycredentials.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:128 actions/apigroupcreate.php:136 +#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: actions/apigroupleave.php:141 actions/apigrouplist.php:132 #: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 #: actions/apigroupshow.php:115 actions/apihelptest.php:88 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 -#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184 +#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 #: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:207 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 msgid "API method not found." msgstr "لم يتم العثور على وسيلة API." @@ -220,8 +237,9 @@ msgstr "تعذّر تحديث المستخدم." #: actions/apiaccountupdateprofilebackgroundimage.php:194 #: actions/apiaccountupdateprofilecolors.php:185 #: 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 +#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 +#: actions/replies.php:80 actions/usergroups.php:98 lib/galleryaction.php:66 +#: lib/profileaction.php:84 msgid "User has no profile." msgstr "ليس للمستخدم ملف شخصي." @@ -245,7 +263,7 @@ msgstr "" #: actions/apiaccountupdateprofilebackgroundimage.php:146 #: actions/apiaccountupdateprofilecolors.php:164 #: actions/apiaccountupdateprofilecolors.php:174 -#: actions/groupdesignsettings.php:287 actions/groupdesignsettings.php:297 +#: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300 #: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 #: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 msgid "Unable to save your design settings." @@ -355,68 +373,68 @@ msgstr "تعذّر تحديد المستخدم المصدر." msgid "Could not find target user." msgstr "تعذّر إيجاد المستخدم الهدف." -#: actions/apigroupcreate.php:164 actions/editgroup.php:182 +#: actions/apigroupcreate.php:166 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:215 #: actions/register.php:205 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" -#: actions/apigroupcreate.php:173 actions/editgroup.php:186 +#: actions/apigroupcreate.php:175 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:238 #: actions/register.php:208 msgid "Nickname already in use. Try another one." msgstr "الاسم المستعار مستخدم بالفعل. جرّب اسمًا آخرًا." -#: actions/apigroupcreate.php:180 actions/editgroup.php:189 +#: actions/apigroupcreate.php:182 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:218 #: actions/register.php:210 msgid "Not a valid nickname." msgstr "ليس اسمًا مستعارًا صحيحًا." -#: actions/apigroupcreate.php:196 actions/editapplication.php:215 -#: actions/editgroup.php:195 actions/newapplication.php:203 +#: actions/apigroupcreate.php:198 actions/editapplication.php:215 +#: actions/editgroup.php:199 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:217 msgid "Homepage is not a valid URL." msgstr "الصفحة الرئيسية ليست عنونًا صالحًا." -#: actions/apigroupcreate.php:205 actions/editgroup.php:198 +#: actions/apigroupcreate.php:207 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:225 #: actions/register.php:220 msgid "Full name is too long (max 255 chars)." msgstr "الاسم الكامل طويل جدا (الأقصى 255 حرفًا)" -#: actions/apigroupcreate.php:213 actions/editapplication.php:190 +#: actions/apigroupcreate.php:215 actions/editapplication.php:190 #: actions/newapplication.php:172 #, php-format msgid "Description is too long (max %d chars)." msgstr "" -#: actions/apigroupcreate.php:224 actions/editgroup.php:204 +#: actions/apigroupcreate.php:226 actions/editgroup.php:208 #: actions/newgroup.php:148 actions/profilesettings.php:232 #: actions/register.php:227 msgid "Location is too long (max 255 chars)." msgstr "" -#: actions/apigroupcreate.php:243 actions/editgroup.php:215 +#: actions/apigroupcreate.php:245 actions/editgroup.php:219 #: actions/newgroup.php:159 #, php-format msgid "Too many aliases! Maximum %d." msgstr "كنيات كيرة! العدد الأقصى هو %d." -#: actions/apigroupcreate.php:264 actions/editgroup.php:224 +#: actions/apigroupcreate.php:266 actions/editgroup.php:228 #: actions/newgroup.php:168 #, php-format msgid "Invalid alias: \"%s\"" msgstr "كنية غير صالحة: \"%s\"" -#: actions/apigroupcreate.php:273 actions/editgroup.php:228 +#: actions/apigroupcreate.php:275 actions/editgroup.php:232 #: actions/newgroup.php:172 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "" -#: actions/apigroupcreate.php:286 actions/editgroup.php:234 +#: actions/apigroupcreate.php:288 actions/editgroup.php:238 #: actions/newgroup.php:178 msgid "Alias can't be the same as nickname." msgstr "" @@ -427,15 +445,15 @@ msgstr "" msgid "Group not found!" msgstr "لم توجد المجموعة!" -#: actions/apigroupjoin.php:110 actions/joingroup.php:90 +#: actions/apigroupjoin.php:110 actions/joingroup.php:100 msgid "You are already a member of that group." msgstr "" -#: actions/apigroupjoin.php:119 actions/joingroup.php:95 lib/command.php:221 +#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:221 msgid "You have been blocked from that group by the admin." msgstr "" -#: actions/apigroupjoin.php:138 actions/joingroup.php:124 +#: actions/apigroupjoin.php:138 actions/joingroup.php:134 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "لم يمكن ضم المستخدم %1$s إلى المجموعة %2$s." @@ -444,7 +462,7 @@ msgstr "لم يمكن ضم المستخدم %1$s إلى المجموعة %2$s." msgid "You are not a member of this group." msgstr "لست عضوًا في هذه المجموعة" -#: actions/apigroupleave.php:124 actions/leavegroup.php:119 +#: actions/apigroupleave.php:124 actions/leavegroup.php:129 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "لم يمكن إزالة المستخدم %1$s من المجموعة %2$s." @@ -476,7 +494,7 @@ msgstr "حجم غير صالح." #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 #: actions/deletenotice.php:157 actions/disfavor.php:74 #: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54 -#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupblock.php:66 actions/grouplogo.php:312 #: actions/groupunblock.php:66 actions/imsettings.php:206 #: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 @@ -519,7 +537,7 @@ msgstr "" #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:103 actions/editapplication.php:139 -#: actions/emailsettings.php:256 actions/grouplogo.php:319 +#: actions/emailsettings.php:256 actions/grouplogo.php:322 #: actions/imsettings.php:220 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 #: actions/smssettings.php:248 lib/designsettings.php:304 @@ -542,13 +560,13 @@ msgid "" "give access to your %4$s account to third parties you trust." msgstr "" -#: actions/apioauthauthorize.php:310 lib/action.php:441 +#: actions/apioauthauthorize.php:310 msgid "Account" msgstr "الحساب" #: actions/apioauthauthorize.php:313 actions/login.php:230 #: actions/profilesettings.php:106 actions/register.php:424 -#: actions/showgroup.php:236 actions/tagother.php:94 +#: actions/showgroup.php:244 actions/tagother.php:94 #: actions/userauthorization.php:145 lib/groupeditform.php:152 #: lib/userprofile.php:131 msgid "Nickname" @@ -630,12 +648,12 @@ msgid "%1$s updates favorited by %2$s / %2$s." msgstr "" #: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:131 actions/userrss.php:90 +#: actions/grouprss.php:138 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "مسار %s الزمني" -#: actions/apitimelinegroup.php:114 actions/apitimelineuser.php:126 +#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 #: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" @@ -671,7 +689,7 @@ msgstr "كرر إلى %s" msgid "Repeats of %s" msgstr "تكرارات %s" -#: actions/apitimelinetag.php:102 actions/tag.php:66 +#: actions/apitimelinetag.php:102 actions/tag.php:67 #, php-format msgid "Notices tagged with %s" msgstr "الإشعارات الموسومة ب%s" @@ -692,8 +710,7 @@ msgstr "لا مرفق كهذا." #: actions/avatarbynickname.php:59 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/leavegroup.php:76 -#: actions/showgroup.php:121 +#: actions/grouprss.php:91 actions/showgroup.php:121 msgid "No nickname." msgstr "لا اسم مستعار." @@ -705,7 +722,7 @@ msgstr "لا حجم." msgid "Invalid size." msgstr "حجم غير صالح." -#: actions/avatarsettings.php:67 actions/showgroup.php:221 +#: actions/avatarsettings.php:67 actions/showgroup.php:229 #: lib/accountsettingsaction.php:112 msgid "Avatar" msgstr "أفتار" @@ -713,7 +730,7 @@ msgstr "أفتار" #: actions/avatarsettings.php:78 #, php-format msgid "You can upload your personal avatar. The maximum file size is %s." -msgstr "" +msgstr "بإمكانك رفع أفتارك الشخصي. أقصى حجم للملف هو %s." #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 #: actions/remotesubscribe.php:191 actions/userauthorization.php:72 @@ -722,30 +739,30 @@ msgid "User without matching profile" msgstr "" #: actions/avatarsettings.php:119 actions/avatarsettings.php:197 -#: actions/grouplogo.php:251 +#: actions/grouplogo.php:254 msgid "Avatar settings" msgstr "إعدادات الأفتار" #: actions/avatarsettings.php:127 actions/avatarsettings.php:205 -#: actions/grouplogo.php:199 actions/grouplogo.php:259 +#: actions/grouplogo.php:202 actions/grouplogo.php:262 msgid "Original" -msgstr "الأصلي" +msgstr "الأصل" #: actions/avatarsettings.php:142 actions/avatarsettings.php:217 -#: actions/grouplogo.php:210 actions/grouplogo.php:271 +#: actions/grouplogo.php:213 actions/grouplogo.php:274 msgid "Preview" -msgstr "عاين" +msgstr "معاينة" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:637 +#: lib/deleteuserform.php:66 lib/noticelist.php:655 msgid "Delete" msgstr "احذف" -#: actions/avatarsettings.php:166 actions/grouplogo.php:233 +#: actions/avatarsettings.php:166 actions/grouplogo.php:236 msgid "Upload" msgstr "ارفع" -#: actions/avatarsettings.php:231 actions/grouplogo.php:286 +#: actions/avatarsettings.php:231 actions/grouplogo.php:289 msgid "Crop" msgstr "" @@ -753,7 +770,7 @@ msgstr "" msgid "Pick a square area of the image to be your avatar" msgstr "" -#: actions/avatarsettings.php:343 actions/grouplogo.php:377 +#: actions/avatarsettings.php:343 actions/grouplogo.php:380 msgid "Lost our file data." msgstr "" @@ -785,22 +802,22 @@ msgid "" msgstr "" #: actions/block.php:143 actions/deleteapplication.php:153 -#: actions/deletenotice.php:145 actions/deleteuser.php:147 +#: actions/deletenotice.php:145 actions/deleteuser.php:150 #: actions/groupblock.php:178 msgid "No" msgstr "لا" -#: actions/block.php:143 actions/deleteuser.php:147 +#: actions/block.php:143 actions/deleteuser.php:150 msgid "Do not block this user" msgstr "لا تمنع هذا المستخدم" #: actions/block.php:144 actions/deleteapplication.php:158 -#: actions/deletenotice.php:146 actions/deleteuser.php:148 +#: actions/deletenotice.php:146 actions/deleteuser.php:151 #: actions/groupblock.php:179 lib/repeatform.php:132 msgid "Yes" msgstr "نعم" -#: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:355 lib/blockform.php:80 msgid "Block this user" msgstr "امنع هذا المستخدم" @@ -808,39 +825,43 @@ msgstr "امنع هذا المستخدم" msgid "Failed to save block information." msgstr "فشل حفظ معلومات المنع." -#: actions/blockedfromgroup.php:80 actions/editgroup.php:96 -#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/groupblock.php:86 -#: actions/groupbyid.php:83 actions/groupdesignsettings.php:97 -#: actions/grouplogo.php:99 actions/groupmembers.php:83 -#: actions/grouprss.php:98 actions/groupunblock.php:86 -#: actions/joingroup.php:83 actions/leavegroup.php:83 actions/makeadmin.php:86 -#: actions/showgroup.php:137 lib/command.php:212 lib/command.php:260 +#: actions/blockedfromgroup.php:80 actions/blockedfromgroup.php:87 +#: actions/editgroup.php:100 actions/foafgroup.php:44 actions/foafgroup.php:62 +#: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:100 actions/grouplogo.php:102 +#: actions/groupmembers.php:83 actions/groupmembers.php:90 +#: actions/grouprss.php:98 actions/grouprss.php:105 +#: actions/groupunblock.php:86 actions/joingroup.php:82 +#: actions/joingroup.php:93 actions/leavegroup.php:82 +#: actions/leavegroup.php:93 actions/makeadmin.php:86 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:212 +#: lib/command.php:260 msgid "No such group." msgstr "لا مجموعة كهذه." -#: actions/blockedfromgroup.php:90 +#: actions/blockedfromgroup.php:97 #, php-format msgid "%s blocked profiles" msgstr "" -#: actions/blockedfromgroup.php:93 +#: actions/blockedfromgroup.php:100 #, php-format msgid "%1$s blocked profiles, page %2$d" msgstr "%1$s ملفات ممنوعة, الصفحة %2$d" -#: actions/blockedfromgroup.php:108 +#: actions/blockedfromgroup.php:115 msgid "A list of the users blocked from joining this group." msgstr "" -#: actions/blockedfromgroup.php:281 +#: actions/blockedfromgroup.php:288 msgid "Unblock user from group" msgstr "ألغ منع المستخدم من المجموعة" -#: actions/blockedfromgroup.php:313 lib/unblockform.php:69 +#: actions/blockedfromgroup.php:320 lib/unblockform.php:69 msgid "Unblock" msgstr "ألغِ المنع" -#: actions/blockedfromgroup.php:313 lib/unblockform.php:80 +#: actions/blockedfromgroup.php:320 lib/unblockform.php:80 msgid "Unblock this user" msgstr "ألغِ منع هذا المستخدم" @@ -917,14 +938,13 @@ msgstr "أنت لست مالك هذا التطبيق." #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1197 +#: lib/action.php:1228 msgid "There was a problem with your session token." msgstr "" #: actions/deleteapplication.php:123 actions/deleteapplication.php:147 -#, fuzzy msgid "Delete application" -msgstr "عدّل التطبيق" +msgstr "احذف هذا التطبيق" #: actions/deleteapplication.php:149 msgid "" @@ -934,21 +954,20 @@ msgid "" msgstr "" #: actions/deleteapplication.php:156 -#, fuzzy msgid "Do not delete this application" -msgstr "لا تحذف هذا الإشعار" +msgstr "لا تحذف هذا التطبيق" #: actions/deleteapplication.php:160 -#, fuzzy msgid "Delete this application" -msgstr "احذف هذا الإشعار" +msgstr "احذف هذا التطبيق" +#. TRANS: Client error message #: 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:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 -#: lib/adminpanelaction.php:72 lib/profileformaction.php:63 +#: lib/adminpanelaction.php:73 lib/profileformaction.php:63 #: lib/settingsaction.php:72 msgid "Not logged in." msgstr "لست والجًا." @@ -975,7 +994,7 @@ msgstr "أمتأكد من أنك تريد حذف هذا الإشعار؟" msgid "Do not delete this notice" msgstr "لا تحذف هذا الإشعار" -#: actions/deletenotice.php:146 lib/noticelist.php:637 +#: actions/deletenotice.php:146 lib/noticelist.php:655 msgid "Delete this notice" msgstr "احذف هذا الإشعار" @@ -991,18 +1010,18 @@ msgstr "يمكنك حذف المستخدمين المحليين فقط." msgid "Delete user" msgstr "احذف المستخدم" -#: actions/deleteuser.php:135 +#: actions/deleteuser.php:136 msgid "" "Are you sure you want to delete this user? This will clear all data about " "the user from the database, without a backup." msgstr "" -#: actions/deleteuser.php:148 lib/deleteuserform.php:77 +#: actions/deleteuser.php:151 lib/deleteuserform.php:77 msgid "Delete this user" msgstr "احذف هذا المستخدم" #: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 -#: lib/adminpanelaction.php:316 lib/groupnav.php:119 +#: lib/groupnav.php:119 msgid "Design" msgstr "التصميم" @@ -1053,7 +1072,7 @@ msgstr "الخلفية" msgid "" "You can upload a background image for the site. The maximum file size is %1" "$s." -msgstr "" +msgstr "بإمكانك رفع صورة خلفية للموقع. أقصى حجم للملف هو %1$s." #: actions/designadminpanel.php:457 lib/designsettings.php:139 msgid "On" @@ -1103,6 +1122,17 @@ msgstr "استعد التصميمات المبدئية" msgid "Reset back to default" msgstr "ارجع إلى المبدئي" +#: actions/designadminpanel.php:586 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/tagother.php:154 actions/useradminpanel.php:294 +#: lib/applicationeditform.php:333 lib/applicationeditform.php:334 +#: lib/designsettings.php:256 lib/groupeditform.php:202 +msgid "Save" +msgstr "أرسل" + #: actions/designadminpanel.php:587 lib/designsettings.php:257 msgid "Save design" msgstr "احفظ التصميم" @@ -1116,12 +1146,11 @@ msgid "Add to favorites" msgstr "أضف إلى المفضلات" #: actions/doc.php:158 -#, fuzzy, php-format +#, php-format msgid "No such document \"%s\"" -msgstr "لا مستند كهذا." +msgstr "لا مستند باسم \"%s\"" #: actions/editapplication.php:54 -#, fuzzy msgid "Edit Application" msgstr "عدّل التطبيق" @@ -1195,29 +1224,29 @@ msgstr "عدّل مجموعة %s" msgid "You must be logged in to create a group." msgstr "يجب أن تكون والجًا لتنشئ مجموعة." -#: actions/editgroup.php:103 actions/editgroup.php:168 -#: actions/groupdesignsettings.php:104 actions/grouplogo.php:106 +#: actions/editgroup.php:107 actions/editgroup.php:172 +#: actions/groupdesignsettings.php:107 actions/grouplogo.php:109 msgid "You must be an admin to edit the group." msgstr "يجب أن تكون إداريا لتعدل المجموعة." -#: actions/editgroup.php:154 +#: actions/editgroup.php:158 msgid "Use this form to edit the group." msgstr "استخدم هذا النموذج لتعديل المجموعة." -#: actions/editgroup.php:201 actions/newgroup.php:145 +#: actions/editgroup.php:205 actions/newgroup.php:145 #, php-format msgid "description is too long (max %d chars)." msgstr "" -#: actions/editgroup.php:253 +#: actions/editgroup.php:258 msgid "Could not update group." msgstr "تعذر تحديث المجموعة." -#: actions/editgroup.php:259 classes/User_group.php:433 +#: actions/editgroup.php:264 classes/User_group.php:478 msgid "Could not create aliases." msgstr "تعذّر إنشاء الكنى." -#: actions/editgroup.php:269 +#: actions/editgroup.php:280 msgid "Options saved." msgstr "حُفظت الخيارات." @@ -1301,15 +1330,15 @@ msgstr "أرسل لي بريدًا إلكرتونيًا عندما يضيف أح #: actions/emailsettings.php:169 msgid "Send me email when someone sends me a private message." -msgstr "" +msgstr "أرسل لي بريدًا إلكترونيًا عندما يرسل لي أحد رسالة خاصة." #: actions/emailsettings.php:174 msgid "Send me email when someone sends me an \"@-reply\"." -msgstr "أرسل لي بريدًا إلكترونيًا عندما يرسل لي أحدهم \"@-رد\"." +msgstr "أرسل لي بريدًا إلكترونيًا عندما يرسل لي أحد \"@-رد\"." #: actions/emailsettings.php:179 msgid "Allow friends to nudge me and send me an email." -msgstr "" +msgstr "اسمح لأصدقائي بتنبيهي ومراسلتي عبر البريد الإلكتروني." #: actions/emailsettings.php:185 msgid "I want to post notices by email." @@ -1317,7 +1346,7 @@ msgstr "أريد أن أرسل الملاحظات عبر البريد الإلك #: actions/emailsettings.php:191 msgid "Publish a MicroID for my email address." -msgstr "" +msgstr "انشر هوية مصغّرة لعنوان بريدي الإلكتروني." #: actions/emailsettings.php:302 actions/imsettings.php:264 #: actions/othersettings.php:180 actions/smssettings.php:284 @@ -1386,7 +1415,7 @@ msgstr "لا عنوان بريد إلكتروني وارد." #: actions/emailsettings.php:456 actions/emailsettings.php:478 #: actions/smssettings.php:528 actions/smssettings.php:552 msgid "Couldn't update user record." -msgstr "" +msgstr "تعذّر تحديث سجل المستخدم." #: actions/emailsettings.php:459 actions/smssettings.php:531 msgid "Incoming email address removed." @@ -1546,7 +1575,7 @@ msgstr "" msgid "User is not a member of group." msgstr "المستخدم ليس عضوًا في المجموعة." -#: actions/groupblock.php:136 actions/groupmembers.php:316 +#: actions/groupblock.php:136 actions/groupmembers.php:323 msgid "Block user from group" msgstr "امنع المستخدم من المجموعة" @@ -1578,86 +1607,86 @@ msgstr "لا هوية." msgid "You must be logged in to edit a group." msgstr "يجب أن تلج لتُعدّل المجموعات." -#: actions/groupdesignsettings.php:141 +#: actions/groupdesignsettings.php:144 msgid "Group design" msgstr "تصميم المجموعة" -#: actions/groupdesignsettings.php:152 +#: actions/groupdesignsettings.php:155 msgid "" "Customize the way your group looks with a background image and a colour " "palette of your choice." msgstr "" -#: actions/groupdesignsettings.php:263 actions/userdesignsettings.php:186 +#: actions/groupdesignsettings.php:266 actions/userdesignsettings.php:186 #: lib/designsettings.php:391 lib/designsettings.php:413 msgid "Couldn't update your design." msgstr "تعذّر تحديث تصميمك." -#: actions/groupdesignsettings.php:308 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231 msgid "Design preferences saved." msgstr "" -#: actions/grouplogo.php:139 actions/grouplogo.php:192 +#: actions/grouplogo.php:142 actions/grouplogo.php:195 msgid "Group logo" msgstr "شعار المجموعة" -#: actions/grouplogo.php:150 +#: actions/grouplogo.php:153 #, php-format msgid "" "You can upload a logo image for your group. The maximum file size is %s." -msgstr "" +msgstr "بإمكانك رفع صورة شعار مجموعتك. أقصى حجم للملف هو %s." -#: actions/grouplogo.php:178 +#: actions/grouplogo.php:181 msgid "User without matching profile." msgstr "المستخدم بدون ملف مطابق." -#: actions/grouplogo.php:362 +#: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." msgstr "" -#: actions/grouplogo.php:396 +#: actions/grouplogo.php:399 msgid "Logo updated." msgstr "حُدّث الشعار." -#: actions/grouplogo.php:398 +#: actions/grouplogo.php:401 msgid "Failed updating logo." msgstr "فشل رفع الشعار." -#: actions/groupmembers.php:93 lib/groupnav.php:92 +#: actions/groupmembers.php:100 lib/groupnav.php:92 #, php-format msgid "%s group members" msgstr "أعضاء مجموعة %s" -#: actions/groupmembers.php:96 +#: actions/groupmembers.php:103 #, php-format msgid "%1$s group members, page %2$d" msgstr "%1$s أعضاء المجموعة, الصفحة %2$d" -#: actions/groupmembers.php:111 +#: actions/groupmembers.php:118 msgid "A list of the users in this group." msgstr "قائمة بمستخدمي هذه المجموعة." -#: actions/groupmembers.php:175 lib/action.php:448 lib/groupnav.php:107 +#: actions/groupmembers.php:182 lib/groupnav.php:107 msgid "Admin" msgstr "إداري" -#: actions/groupmembers.php:348 lib/blockform.php:69 +#: actions/groupmembers.php:355 lib/blockform.php:69 msgid "Block" msgstr "امنع" -#: actions/groupmembers.php:443 +#: actions/groupmembers.php:450 msgid "Make user an admin of the group" msgstr "" -#: actions/groupmembers.php:475 +#: actions/groupmembers.php:482 msgid "Make Admin" msgstr "" -#: actions/groupmembers.php:475 +#: actions/groupmembers.php:482 msgid "Make this user an admin" msgstr "اجعل هذا المستخدم إداريًا" -#: actions/grouprss.php:133 +#: actions/grouprss.php:140 #, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "" @@ -1815,16 +1844,16 @@ msgstr "هذه ليست هويتك في جابر." #: actions/inbox.php:59 #, php-format msgid "Inbox for %1$s - page %2$d" -msgstr "" +msgstr "صندوق %1$s الوارد - صفحة %2$d" #: actions/inbox.php:62 #, php-format msgid "Inbox for %s" -msgstr "" +msgstr "صندوق %s الوارد" #: actions/inbox.php:115 msgid "This is your inbox, which lists your incoming private messages." -msgstr "" +msgstr "هذا صندوق بريدك الوارد، والذي يسرد رسائلك الخاصة الواردة." #: actions/invite.php:39 msgid "Invites have been disabled." @@ -1875,7 +1904,7 @@ msgstr "" #: actions/invite.php:162 msgid "" "Use this form to invite your friends and colleagues to use this service." -msgstr "" +msgstr "استخدم هذا النموذج لدعوة أصدقائك وزملائك لاستخدام هذه الخدمة." #: actions/invite.php:187 msgid "Email addresses" @@ -1893,16 +1922,19 @@ msgstr "رسالة شخصية" msgid "Optionally add a personal message to the invitation." msgstr "" -#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:236 +#. TRANS: Send button for inviting friends +#: actions/invite.php:198 +#, fuzzy +msgctxt "BUTTON" msgid "Send" msgstr "أرسل" -#: actions/invite.php:226 +#: actions/invite.php:227 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "" -#: actions/invite.php:228 +#: actions/invite.php:229 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -1937,7 +1969,12 @@ msgstr "" msgid "You must be logged in to join a group." msgstr "يجب أن تلج لتنضم إلى مجموعة." -#: actions/joingroup.php:131 +#: actions/joingroup.php:88 actions/leavegroup.php:88 +#, fuzzy +msgid "No nickname or ID." +msgstr "لا اسم مستعار." + +#: actions/joingroup.php:141 #, php-format msgid "%1$s joined group %2$s" msgstr "%1$s انضم للمجموعة %2$s" @@ -1946,11 +1983,11 @@ msgstr "%1$s انضم للمجموعة %2$s" msgid "You must be logged in to leave a group." msgstr "يجب أن تلج لتغادر مجموعة." -#: actions/leavegroup.php:90 lib/command.php:265 +#: actions/leavegroup.php:100 lib/command.php:265 msgid "You are not a member of that group." msgstr "لست عضوا في تلك المجموعة." -#: actions/leavegroup.php:127 +#: actions/leavegroup.php:137 #, php-format msgid "%1$s left group %2$s" msgstr "%1$s ترك المجموعة %2$s" @@ -1967,8 +2004,7 @@ msgstr "اسم المستخدم أو كلمة السر غير صحيحان." msgid "Error setting user. You are probably not authorized." msgstr "خطأ أثناء ضبط المستخدم. لست مُصرحًا على الأرجح." -#: actions/login.php:188 actions/login.php:241 lib/action.php:466 -#: lib/logingroupnav.php:79 +#: actions/login.php:188 actions/login.php:241 lib/logingroupnav.php:79 msgid "Login" msgstr "لُج" @@ -1982,7 +2018,7 @@ msgstr "تذكّرني" #: actions/login.php:237 actions/register.php:480 msgid "Automatically login in the future; not for shared computers!" -msgstr "" +msgstr "لُج تلقائيًا في المستقبل؛ هذا الخيار ليس مُعدًا للحواسيب المشتركة!" #: actions/login.php:247 msgid "Lost or forgotten password?" @@ -1993,6 +2029,7 @@ msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." msgstr "" +"لأسباب أمنية، من فضلك أعد إدخال اسم مستخدمك وكلمة سرك قبل تغيير إعداداتك." #: actions/login.php:270 #, php-format @@ -2025,7 +2062,6 @@ msgid "No current status" msgstr "لا حالة حالية" #: actions/newapplication.php:52 -#, fuzzy msgid "New Application" msgstr "تطبيق جديد" @@ -2210,8 +2246,8 @@ msgstr "نوع المحتوى " msgid "Only " msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 -#: lib/api.php:1068 lib/api.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 +#: lib/apiaction.php:1068 lib/apiaction.php:1177 msgid "Not a supported data format." msgstr "ليس نسق بيانات مدعوم." @@ -2278,20 +2314,20 @@ msgstr "توكن الدخول انتهى." #: actions/outbox.php:58 #, php-format msgid "Outbox for %1$s - page %2$d" -msgstr "" +msgstr "صندوق %1$s الصادر - صفحة %2$d" #: actions/outbox.php:61 #, php-format msgid "Outbox for %s" -msgstr "" +msgstr "صندوق %s الصادر" #: actions/outbox.php:116 msgid "This is your outbox, which lists private messages you have sent." -msgstr "" +msgstr "هذا صندوق بريدك الصادر، والذي يسرد الرسائل الخاصة التي أرسلتها." #: actions/passwordsettings.php:58 msgid "Change password" -msgstr "غيّر كلمة السر" +msgstr "تغيير كلمة السر" #: actions/passwordsettings.php:69 msgid "Change your password." @@ -2311,7 +2347,7 @@ msgstr "كلمة سر جديدة" #: actions/passwordsettings.php:109 msgid "6 or more characters" -msgstr "" +msgstr "6 أحرف أو أكثر" #: actions/passwordsettings.php:112 actions/recoverpassword.php:239 #: actions/register.php:433 actions/smssettings.php:134 @@ -2350,7 +2386,7 @@ msgstr "تعذّر حفظ كلمة السر الجديدة." msgid "Password saved." msgstr "حُفظت كلمة السر." -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:331 +#: actions/pathsadminpanel.php:59 msgid "Paths" msgstr "المسارات" @@ -2383,7 +2419,6 @@ msgid "Invalid SSL server. The maximum length is 255 characters." msgstr "" #: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58 -#: lib/adminpanelaction.php:311 msgid "Site" msgstr "الموقع" @@ -2548,10 +2583,10 @@ msgstr "معلومات الملف الشخصي" #: actions/profilesettings.php:108 lib/groupeditform.php:154 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" -msgstr "" +msgstr "1-64 حرفًا إنجليزيًا أو رقمًا بدون نقاط أو مسافات" #: actions/profilesettings.php:111 actions/register.php:448 -#: actions/showgroup.php:247 actions/tagother.php:104 +#: actions/showgroup.php:255 actions/tagother.php:104 #: lib/groupeditform.php:157 lib/userprofile.php:149 msgid "Full name" msgstr "الاسم الكامل" @@ -2579,7 +2614,7 @@ msgid "Bio" msgstr "السيرة" #: actions/profilesettings.php:132 actions/register.php:471 -#: actions/showgroup.php:256 actions/tagother.php:112 +#: actions/showgroup.php:264 actions/tagother.php:112 #: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:164 msgid "Location" @@ -2660,7 +2695,8 @@ msgstr "تعذّر حفظ الملف الشخصي." msgid "Couldn't save tags." msgstr "تعذّر حفظ الوسوم." -#: actions/profilesettings.php:391 lib/adminpanelaction.php:137 +#. TRANS: Message after successful saving of administrative settings. +#: actions/profilesettings.php:391 lib/adminpanelaction.php:141 msgid "Settings saved." msgstr "حُفظت الإعدادات." @@ -2673,45 +2709,45 @@ msgstr "وراء حد الصفحة (%s)" msgid "Could not retrieve public stream." msgstr "" -#: actions/public.php:129 +#: actions/public.php:130 #, php-format msgid "Public timeline, page %d" msgstr "المسار الزمني العام، صفحة %d" -#: actions/public.php:131 lib/publicgroupnav.php:79 +#: actions/public.php:132 lib/publicgroupnav.php:79 msgid "Public timeline" msgstr "المسار الزمني العام" -#: actions/public.php:159 +#: actions/public.php:160 msgid "Public Stream Feed (RSS 1.0)" msgstr "" -#: actions/public.php:163 +#: actions/public.php:164 msgid "Public Stream Feed (RSS 2.0)" msgstr "" -#: actions/public.php:167 +#: actions/public.php:168 msgid "Public Stream Feed (Atom)" msgstr "" -#: actions/public.php:187 +#: actions/public.php:188 #, php-format msgid "" "This is the public timeline for %%site.name%% but no one has posted anything " "yet." msgstr "" -#: actions/public.php:190 +#: actions/public.php:191 msgid "Be the first to post!" msgstr "كن أول من يُرسل!" -#: actions/public.php:194 +#: actions/public.php:195 #, php-format msgid "" "Why not [register an account](%%action.register%%) and be the first to post!" msgstr "" -#: actions/public.php:241 +#: actions/public.php:242 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2724,7 +2760,7 @@ msgstr "" "الآن](%%action.register%%) لتشارك اشعاراتك مع أصدقائك وعائلتك وزملائك! " "([اقرأ المزيد](%%doc.help%%))" -#: actions/public.php:246 +#: actions/public.php:247 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2895,8 +2931,7 @@ msgstr "عذرا، رمز دعوة غير صالح." msgid "Registration successful" msgstr "نجح التسجيل" -#: actions/register.php:114 actions/register.php:503 lib/action.php:463 -#: lib/logingroupnav.php:85 +#: actions/register.php:114 actions/register.php:503 lib/logingroupnav.php:85 msgid "Register" msgstr "سجّل" @@ -3055,7 +3090,7 @@ msgstr "لا يمكنك تكرار ملاحظتك الشخصية." msgid "You already repeated that notice." msgstr "أنت كررت هذه الملاحظة بالفعل." -#: actions/repeat.php:114 lib/noticelist.php:656 +#: actions/repeat.php:114 lib/noticelist.php:674 msgid "Repeated" msgstr "مكرر" @@ -3063,47 +3098,47 @@ msgstr "مكرر" msgid "Repeated!" msgstr "مكرر!" -#: actions/replies.php:125 actions/repliesrss.php:68 +#: actions/replies.php:126 actions/repliesrss.php:68 #: lib/personalgroupnav.php:105 #, php-format msgid "Replies to %s" msgstr "الردود على %s" -#: actions/replies.php:127 +#: actions/replies.php:128 #, fuzzy, php-format msgid "Replies to %1$s, page %2$d" msgstr "الردود على %s" -#: actions/replies.php:144 +#: actions/replies.php:145 #, php-format msgid "Replies feed for %s (RSS 1.0)" msgstr "" -#: actions/replies.php:151 +#: actions/replies.php:152 #, php-format msgid "Replies feed for %s (RSS 2.0)" msgstr "" -#: actions/replies.php:158 +#: actions/replies.php:159 #, php-format msgid "Replies feed for %s (Atom)" msgstr "" -#: actions/replies.php:198 +#: actions/replies.php:199 #, php-format msgid "" "This is the timeline showing replies to %1$s but %2$s hasn't received a " "notice to his attention yet." msgstr "" -#: actions/replies.php:203 +#: actions/replies.php:204 #, php-format msgid "" "You can engage other users in a conversation, subscribe to more people or " "[join groups](%%action.groups%%)." msgstr "" -#: actions/replies.php:205 +#: actions/replies.php:206 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) or [post something to his or her " @@ -3128,7 +3163,6 @@ msgid "User is already sandboxed." msgstr "" #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:336 msgid "Sessions" msgstr "الجلسات" @@ -3154,7 +3188,7 @@ msgid "Turn on debugging output for sessions." msgstr "مكّن تنقيح مُخرجات الجلسة." #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/useradminpanel.php:293 +#: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "اذف إعدادت الموقع" @@ -3184,7 +3218,7 @@ msgstr "المنظمة" msgid "Description" msgstr "الوصف" -#: actions/showapplication.php:192 actions/showgroup.php:429 +#: actions/showapplication.php:192 actions/showgroup.php:437 #: lib/profileaction.php:174 msgid "Statistics" msgstr "إحصاءات" @@ -3246,28 +3280,28 @@ msgstr "إشعارات %s المُفضلة" msgid "Could not retrieve favorite notices." msgstr "" -#: actions/showfavorites.php:170 +#: actions/showfavorites.php:171 #, php-format msgid "Feed for favorites of %s (RSS 1.0)" msgstr "" -#: actions/showfavorites.php:177 +#: actions/showfavorites.php:178 #, php-format msgid "Feed for favorites of %s (RSS 2.0)" msgstr "" -#: actions/showfavorites.php:184 +#: actions/showfavorites.php:185 #, php-format msgid "Feed for favorites of %s (Atom)" msgstr "" -#: actions/showfavorites.php:205 +#: actions/showfavorites.php:206 msgid "" "You haven't chosen any favorite notices yet. Click the fave button on " "notices you like to bookmark them for later or shed a spotlight on them." msgstr "" -#: actions/showfavorites.php:207 +#: actions/showfavorites.php:208 #, php-format msgid "" "%s hasn't added any notices to his favorites yet. Post something interesting " @@ -3276,7 +3310,7 @@ msgstr "" "%s لم يضف أي إشعارات إلى مفضلته إلى الآن. أرسل شيئًا شيقًا ليضيفه إلى " "مفضلته. :)" -#: actions/showfavorites.php:211 +#: actions/showfavorites.php:212 #, php-format msgid "" "%s hasn't added any notices to his favorites yet. Why not [register an " @@ -3286,7 +3320,7 @@ msgstr "" "%s لم يضف أي إشعارات إلى مفضلته إلى الآن. لمّ لا [تسجل حسابًا](%%%%action." "register%%%%) وترسل شيئًا شيقًا ليضيفه إلى مفضلته. :)" -#: actions/showfavorites.php:242 +#: actions/showfavorites.php:243 msgid "This is a way to share what you like." msgstr "إنها إحدى وسائل مشاركة ما تحب." @@ -3300,67 +3334,67 @@ msgstr "مجموعة %s" msgid "%1$s group, page %2$d" msgstr "%1$s أعضاء المجموعة, الصفحة %2$d" -#: actions/showgroup.php:218 +#: actions/showgroup.php:226 msgid "Group profile" msgstr "ملف المجموعة الشخصي" -#: actions/showgroup.php:263 actions/tagother.php:118 +#: actions/showgroup.php:271 actions/tagother.php:118 #: actions/userauthorization.php:175 lib/userprofile.php:177 msgid "URL" msgstr "مسار" -#: actions/showgroup.php:274 actions/tagother.php:128 +#: actions/showgroup.php:282 actions/tagother.php:128 #: actions/userauthorization.php:187 lib/userprofile.php:194 msgid "Note" msgstr "ملاحظة" -#: actions/showgroup.php:284 lib/groupeditform.php:184 +#: actions/showgroup.php:292 lib/groupeditform.php:184 msgid "Aliases" msgstr "الكنى" -#: actions/showgroup.php:293 +#: actions/showgroup.php:301 msgid "Group actions" msgstr "" -#: actions/showgroup.php:328 +#: actions/showgroup.php:336 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "" -#: actions/showgroup.php:334 +#: actions/showgroup.php:342 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "" -#: actions/showgroup.php:340 +#: actions/showgroup.php:348 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "" -#: actions/showgroup.php:345 +#: actions/showgroup.php:353 #, php-format msgid "FOAF for %s group" msgstr "" -#: actions/showgroup.php:381 actions/showgroup.php:438 lib/groupnav.php:91 +#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 msgid "Members" msgstr "الأعضاء" -#: actions/showgroup.php:386 lib/profileaction.php:117 +#: actions/showgroup.php:394 lib/profileaction.php:117 #: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(لا شيء)" -#: actions/showgroup.php:392 +#: actions/showgroup.php:400 msgid "All members" msgstr "جميع الأعضاء" -#: actions/showgroup.php:432 +#: actions/showgroup.php:440 msgid "Created" msgstr "أنشئ" -#: actions/showgroup.php:448 +#: actions/showgroup.php:456 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3370,7 +3404,7 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showgroup.php:454 +#: actions/showgroup.php:462 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3379,7 +3413,7 @@ msgid "" "their life and interests. " msgstr "" -#: actions/showgroup.php:482 +#: actions/showgroup.php:490 msgid "Admins" msgstr "الإداريون" @@ -3696,7 +3730,7 @@ msgstr "" #: actions/smssettings.php:374 msgid "That is the wrong confirmation number." -msgstr "" +msgstr "إن رقم التأكيد هذا خاطئ." #: actions/smssettings.php:405 msgid "That is not your phone number." @@ -3719,7 +3753,7 @@ msgstr "" #: actions/smssettings.php:498 msgid "No code entered" -msgstr "" +msgstr "لم تدخل رمزًا" #: actions/subedit.php:70 msgid "You are not subscribed to that profile." @@ -3732,10 +3766,9 @@ msgstr "تعذّر حفظ الاشتراك." #: actions/subscribe.php:77 msgid "This action only accepts POST requests." -msgstr "" +msgstr "هذا الإجراء يقبل طلبات POST فقط." #: actions/subscribe.php:107 -#, fuzzy msgid "No such profile." msgstr "لا ملف كهذا." @@ -3826,22 +3859,22 @@ msgstr "جابر" msgid "SMS" msgstr "رسائل قصيرة" -#: actions/tag.php:68 +#: actions/tag.php:69 #, fuzzy, php-format msgid "Notices tagged with %1$s, page %2$d" msgstr "الإشعارات الموسومة ب%s" -#: actions/tag.php:86 +#: actions/tag.php:87 #, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "" -#: actions/tag.php:92 +#: actions/tag.php:93 #, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "" -#: actions/tag.php:98 +#: actions/tag.php:99 #, php-format msgid "Notice feed for tag %s (Atom)" msgstr "" @@ -3891,7 +3924,7 @@ msgstr "" msgid "No such tag." msgstr "لا وسم كهذا." -#: actions/twitapitrends.php:87 +#: actions/twitapitrends.php:85 msgid "API method under construction." msgstr "" @@ -3921,70 +3954,72 @@ msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" -#: actions/useradminpanel.php:58 lib/adminpanelaction.php:321 -#: lib/personalgroupnav.php:115 +#. TRANS: User admin panel title +#: actions/useradminpanel.php:59 +#, fuzzy +msgctxt "TITLE" msgid "User" msgstr "المستخدم" -#: actions/useradminpanel.php:69 +#: actions/useradminpanel.php:70 msgid "User settings for this StatusNet site." msgstr "" -#: actions/useradminpanel.php:148 +#: actions/useradminpanel.php:149 msgid "Invalid bio limit. Must be numeric." msgstr "" -#: actions/useradminpanel.php:154 +#: actions/useradminpanel.php:155 msgid "Invalid welcome text. Max length is 255 characters." msgstr "رسالة ترحيب غير صالحة. أقصى طول هو 255 حرف." -#: actions/useradminpanel.php:164 +#: actions/useradminpanel.php:165 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" -#: actions/useradminpanel.php:217 lib/accountsettingsaction.php:108 +#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "الملف الشخصي" -#: actions/useradminpanel.php:221 +#: actions/useradminpanel.php:222 msgid "Bio Limit" msgstr "حد السيرة" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:223 msgid "Maximum length of a profile bio in characters." msgstr "" -#: actions/useradminpanel.php:230 +#: actions/useradminpanel.php:231 msgid "New users" msgstr "مستخدمون جدد" -#: actions/useradminpanel.php:234 +#: actions/useradminpanel.php:235 msgid "New user welcome" msgstr "ترحيب المستخدمين الجدد" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:236 msgid "Welcome text for new users (Max 255 chars)." msgstr "نص الترحيب بالمستخدمين الجدد (255 حرفًا كحد أقصى)." -#: actions/useradminpanel.php:240 +#: actions/useradminpanel.php:241 msgid "Default subscription" msgstr "الاشتراك المبدئي" -#: actions/useradminpanel.php:241 +#: actions/useradminpanel.php:242 msgid "Automatically subscribe new users to this user." msgstr "أشرك المستخدمين الجدد بهذا المستخدم تلقائيًا." -#: actions/useradminpanel.php:250 +#: actions/useradminpanel.php:251 msgid "Invitations" msgstr "الدعوات" -#: actions/useradminpanel.php:255 +#: actions/useradminpanel.php:256 msgid "Invitations enabled" msgstr "الدعوات مُفعلة" -#: actions/useradminpanel.php:257 +#: actions/useradminpanel.php:258 msgid "Whether to allow users to invite new users." msgstr "" @@ -4089,7 +4124,7 @@ msgstr "تصميم الملف الشخصي" msgid "" "Customize the way your profile looks with a background image and a colour " "palette of your choice." -msgstr "" +msgstr "خصّص أسلوب عرض ملفك بصورة خلفية ومخطط ألوان من اختيارك." #: actions/userdesignsettings.php:282 msgid "Enjoy your hotdog!" @@ -4107,7 +4142,7 @@ msgstr "ابحث عن المزيد من المجموعات" #: actions/usergroups.php:153 #, php-format msgid "%s is not a member of any group." -msgstr "" +msgstr "%s ليس عضوًا في أي مجموعة." #: actions/usergroups.php:158 #, php-format @@ -4125,10 +4160,12 @@ msgid "" "This site is powered by %1$s version %2$s, Copyright 2008-2010 StatusNet, " "Inc. and contributors." msgstr "" +"هذا الموقع يشغله %1$s النسخة %2$s، حقوق النشر 2008-2010 StatusNet, Inc " +"ومساهموها." #: actions/version.php:161 msgid "Contributors" -msgstr "" +msgstr "المساهمون" #: actions/version.php:168 msgid "" @@ -4155,9 +4192,9 @@ msgstr "" #: actions/version.php:189 msgid "Plugins" -msgstr "ملحقات" +msgstr "الملحقات" -#: actions/version.php:196 lib/action.php:747 +#: actions/version.php:196 lib/action.php:778 msgid "Version" msgstr "النسخة" @@ -4194,6 +4231,10 @@ msgstr "ليس جزءا من المجموعة." msgid "Group leave failed." msgstr "ترك المجموعة فشل." +#: classes/Local_group.php:41 +msgid "Could not update local group." +msgstr "تعذر تحديث المجموعة المحلية." + #: classes/Login_token.php:76 #, php-format msgid "Could not create login token for %s" @@ -4211,44 +4252,44 @@ msgstr "تعذّر إدراج الرسالة." msgid "Could not update message with new URI." msgstr "" -#: classes/Notice.php:157 +#: classes/Notice.php:172 #, php-format msgid "DB error inserting hashtag: %s" msgstr "" -#: classes/Notice.php:222 +#: classes/Notice.php:239 msgid "Problem saving notice. Too long." msgstr "مشكلة في حفظ الإشعار. طويل جدًا." -#: classes/Notice.php:226 +#: classes/Notice.php:243 msgid "Problem saving notice. Unknown user." msgstr "مشكلة في حفظ الإشعار. مستخدم غير معروف." -#: classes/Notice.php:231 +#: classes/Notice.php:248 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: classes/Notice.php:237 +#: classes/Notice.php:254 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." msgstr "" -#: classes/Notice.php:243 +#: classes/Notice.php:260 msgid "You are banned from posting notices on this site." msgstr "" -#: classes/Notice.php:309 classes/Notice.php:335 +#: classes/Notice.php:326 classes/Notice.php:352 msgid "Problem saving notice." msgstr "مشكلة أثناء حفظ الإشعار." -#: classes/Notice.php:882 +#: classes/Notice.php:911 #, fuzzy msgid "Problem saving group inbox." msgstr "مشكلة أثناء حفظ الإشعار." -#: classes/Notice.php:1407 +#: classes/Notice.php:1442 #, php-format msgid "RT @%1$s %2$s" msgstr "آر تي @%1$s %2$s" @@ -4277,19 +4318,29 @@ msgstr "لم يمكن حذف اشتراك ذاتي." msgid "Couldn't delete subscription." msgstr "تعذّر حذف الاشتراك." -#: classes/User.php:372 +#: classes/User.php:373 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "أهلا بكم في %1$s يا @%2$s!" -#: classes/User_group.php:423 +#: classes/User_group.php:462 msgid "Could not create group." msgstr "تعذّر إنشاء المجموعة." -#: classes/User_group.php:452 +#: classes/User_group.php:471 +#, fuzzy +msgid "Could not set group URI." +msgstr "تعذّر ضبط عضوية المجموعة." + +#: classes/User_group.php:492 msgid "Could not set group membership." msgstr "تعذّر ضبط عضوية المجموعة." +#: classes/User_group.php:506 +#, fuzzy +msgid "Could not save local group info." +msgstr "تعذّر حفظ الاشتراك." + #: lib/accountsettingsaction.php:108 msgid "Change your profile settings" msgstr "غيّر إعدادات ملفك الشخصي" @@ -4331,120 +4382,190 @@ msgstr "صفحة غير مُعنونة" msgid "Primary site navigation" msgstr "" +#. TRANS: Tooltip for main menu option "Personal" #: lib/action.php:439 -msgid "Home" -msgstr "الرئيسية" - -#: lib/action.php:439 +#, fuzzy +msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "الملف الشخصي ومسار الأصدقاء الزمني" -#: lib/action.php:441 -msgid "Change your email, avatar, password, profile" -msgstr "" +#: lib/action.php:442 +#, fuzzy +msgctxt "MENU" +msgid "Personal" +msgstr "شخصية" +#. TRANS: Tooltip for main menu option "Account" #: lib/action.php:444 +#, fuzzy +msgctxt "TOOLTIP" +msgid "Change your email, avatar, password, profile" +msgstr "غير كلمة سرّك" + +#: lib/action.php:447 +#, fuzzy +msgctxt "MENU" +msgid "Account" +msgstr "الحساب" + +#. TRANS: Tooltip for main menu option "Services" +#: lib/action.php:450 +#, fuzzy +msgctxt "TOOLTIP" +msgid "Connect to services" +msgstr "اتصالات" + +#: lib/action.php:453 +#, fuzzy +msgctxt "MENU" msgid "Connect" msgstr "اتصل" -#: lib/action.php:444 -msgid "Connect to services" -msgstr "" - -#: lib/action.php:448 +#. TRANS: Tooltip for menu option "Admin" +#: lib/action.php:457 +#, fuzzy +msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "غيّر ضبط الموقع" -#: lib/action.php:452 lib/subgroupnav.php:105 +#: lib/action.php:460 +#, fuzzy +msgctxt "MENU" +msgid "Admin" +msgstr "إداري" + +#. TRANS: Tooltip for main menu option "Invite" +#: lib/action.php:464 +#, fuzzy, php-format +msgctxt "TOOLTIP" +msgid "Invite friends and colleagues to join you on %s" +msgstr "استخدم هذا النموذج لدعوة أصدقائك وزملائك لاستخدام هذه الخدمة." + +#: lib/action.php:467 +#, fuzzy +msgctxt "MENU" msgid "Invite" msgstr "ادعُ" -#: lib/action.php:453 lib/subgroupnav.php:106 -#, php-format -msgid "Invite friends and colleagues to join you on %s" -msgstr "" - -#: lib/action.php:458 -msgid "Logout" -msgstr "اخرج" - -#: lib/action.php:458 +#. TRANS: Tooltip for main menu option "Logout" +#: lib/action.php:473 +#, fuzzy +msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "اخرج من الموقع" -#: lib/action.php:463 +#: lib/action.php:476 +#, fuzzy +msgctxt "MENU" +msgid "Logout" +msgstr "اخرج" + +#. TRANS: Tooltip for main menu option "Register" +#: lib/action.php:481 +#, fuzzy +msgctxt "TOOLTIP" msgid "Create an account" msgstr "أنشئ حسابًا" -#: lib/action.php:466 +#: lib/action.php:484 +#, fuzzy +msgctxt "MENU" +msgid "Register" +msgstr "سجّل" + +#. TRANS: Tooltip for main menu option "Login" +#: lib/action.php:487 +#, fuzzy +msgctxt "TOOLTIP" msgid "Login to the site" msgstr "لُج إلى الموقع" -#: lib/action.php:469 lib/action.php:732 -msgid "Help" -msgstr "مساعدة" +#: lib/action.php:490 +#, fuzzy +msgctxt "MENU" +msgid "Login" +msgstr "لُج" -#: lib/action.php:469 +#. TRANS: Tooltip for main menu option "Help" +#: lib/action.php:493 +#, fuzzy +msgctxt "TOOLTIP" msgid "Help me!" msgstr "ساعدني!" -#: lib/action.php:472 lib/searchaction.php:127 -msgid "Search" -msgstr "ابحث" +#: lib/action.php:496 +#, fuzzy +msgctxt "MENU" +msgid "Help" +msgstr "مساعدة" -#: lib/action.php:472 +#. TRANS: Tooltip for main menu option "Search" +#: lib/action.php:499 +#, fuzzy +msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "ابحث عن أشخاص أو نص" -#: lib/action.php:493 +#: lib/action.php:502 +#, fuzzy +msgctxt "MENU" +msgid "Search" +msgstr "ابحث" + +#. TRANS: DT element for site notice. String is hidden in default CSS. +#: lib/action.php:524 msgid "Site notice" msgstr "إشعار الموقع" -#: lib/action.php:559 +#: lib/action.php:590 msgid "Local views" msgstr "المشاهدات المحلية" -#: lib/action.php:625 +#: lib/action.php:656 msgid "Page notice" msgstr "إشعار الصفحة" -#: lib/action.php:727 +#: lib/action.php:758 msgid "Secondary site navigation" msgstr "" -#: lib/action.php:734 +#: lib/action.php:763 +msgid "Help" +msgstr "مساعدة" + +#: lib/action.php:765 msgid "About" msgstr "عن" -#: lib/action.php:736 +#: lib/action.php:767 msgid "FAQ" msgstr "الأسئلة المكررة" -#: lib/action.php:740 +#: lib/action.php:771 msgid "TOS" msgstr "الشروط" -#: lib/action.php:743 +#: lib/action.php:774 msgid "Privacy" msgstr "خصوصية" -#: lib/action.php:745 +#: lib/action.php:776 msgid "Source" msgstr "المصدر" -#: lib/action.php:749 +#: lib/action.php:780 msgid "Contact" msgstr "اتصل" -#: lib/action.php:751 +#: lib/action.php:782 msgid "Badge" -msgstr "" +msgstr "الجسر" -#: lib/action.php:779 +#: lib/action.php:810 msgid "StatusNet software license" msgstr "رخصة برنامج StatusNet" -#: lib/action.php:782 +#: lib/action.php:813 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4453,12 +4574,12 @@ msgstr "" "**%%site.name%%** خدمة تدوين مصغر يقدمها لك [%%site.broughtby%%](%%site." "broughtbyurl%%). " -#: lib/action.php:784 +#: lib/action.php:815 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "" -#: lib/action.php:786 +#: lib/action.php:817 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4469,108 +4590,159 @@ msgstr "" "المتوفر تحت [رخصة غنو أفيرو العمومية](http://www.fsf.org/licensing/licenses/" "agpl-3.0.html)." -#: lib/action.php:801 +#: lib/action.php:832 msgid "Site content license" msgstr "رخصة محتوى الموقع" -#: lib/action.php:806 +#: lib/action.php:837 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:811 +#: lib/action.php:842 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:814 +#: lib/action.php:845 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" -#: lib/action.php:827 +#: lib/action.php:858 msgid "All " msgstr "" -#: lib/action.php:833 +#: lib/action.php:864 msgid "license." msgstr "الرخصة." -#: lib/action.php:1132 +#: lib/action.php:1163 msgid "Pagination" msgstr "" -#: lib/action.php:1141 +#: lib/action.php:1172 msgid "After" msgstr "بعد" -#: lib/action.php:1149 +#: lib/action.php:1180 msgid "Before" msgstr "قبل" -#: lib/activity.php:382 +#: lib/activity.php:449 msgid "Can't handle remote content yet." msgstr "" -#: lib/activity.php:410 +#: lib/activity.php:477 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activity.php:414 +#: lib/activity.php:481 msgid "Can't handle embedded Base64 content yet." msgstr "" -#: lib/adminpanelaction.php:96 +#. TRANS: Client error message +#: lib/adminpanelaction.php:98 msgid "You cannot make changes to this site." msgstr "" -#: lib/adminpanelaction.php:107 +#. TRANS: Client error message +#: lib/adminpanelaction.php:110 msgid "Changes to that panel are not allowed." msgstr "التغييرات لهذه اللوحة غير مسموح بها." -#: lib/adminpanelaction.php:206 +#. TRANS: Client error message +#: lib/adminpanelaction.php:211 msgid "showForm() not implemented." msgstr "" -#: lib/adminpanelaction.php:235 +#. TRANS: Client error message +#: lib/adminpanelaction.php:241 msgid "saveSettings() not implemented." msgstr "" -#: lib/adminpanelaction.php:258 +#. TRANS: Client error message +#: lib/adminpanelaction.php:265 msgid "Unable to delete design setting." msgstr "تعذّر حذف إعدادات التصميم." -#: lib/adminpanelaction.php:312 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:330 msgid "Basic site configuration" msgstr "ضبط الموقع الأساسي" -#: lib/adminpanelaction.php:317 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:332 +#, fuzzy +msgctxt "MENU" +msgid "Site" +msgstr "الموقع" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:338 msgid "Design configuration" msgstr "ضبط التصميم" -#: lib/adminpanelaction.php:322 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:340 +#, fuzzy +msgctxt "MENU" +msgid "Design" +msgstr "التصميم" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:346 #, fuzzy msgid "User configuration" msgstr "ضبط المسارات" -#: lib/adminpanelaction.php:327 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:348 #, fuzzy -msgid "Access configuration" -msgstr "ضبط التصميم" +msgctxt "MENU" +msgid "User" +msgstr "المستخدم" -#: lib/adminpanelaction.php:332 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:354 +msgid "Access configuration" +msgstr "ضبط الحساب" + +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:356 +#, fuzzy +msgctxt "MENU" +msgid "Access" +msgstr "نفاذ" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:362 msgid "Paths configuration" msgstr "ضبط المسارات" -#: lib/adminpanelaction.php:337 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:364 #, fuzzy -msgid "Sessions configuration" -msgstr "ضبط التصميم" +msgctxt "MENU" +msgid "Paths" +msgstr "المسارات" -#: lib/apiauth.php:95 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:370 +msgid "Sessions configuration" +msgstr "ضبط الجلسات" + +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:372 +#, fuzzy +msgctxt "MENU" +msgid "Sessions" +msgstr "الجلسات" + +#: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." msgstr "" -#: lib/apiauth.php:273 +#: lib/apiauth.php:272 #, php-format msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" msgstr "" @@ -4660,11 +4832,11 @@ msgstr "" msgid "Tags for this attachment" msgstr "وسوم هذا المرفق" -#: lib/authenticationplugin.php:218 lib/authenticationplugin.php:223 +#: lib/authenticationplugin.php:220 lib/authenticationplugin.php:225 msgid "Password changing failed" msgstr "تغيير كلمة السر فشل" -#: lib/authenticationplugin.php:233 +#: lib/authenticationplugin.php:235 msgid "Password changing is not allowed" msgstr "تغيير كلمة السر غير مسموح به" @@ -4952,19 +5124,19 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:136 +#: lib/common.php:148 msgid "No configuration file found. " msgstr "" -#: lib/common.php:137 +#: lib/common.php:149 msgid "I looked for configuration files in the following places: " msgstr "" -#: lib/common.php:139 +#: lib/common.php:151 msgid "You may wish to run the installer to fix this." msgstr "" -#: lib/common.php:140 +#: lib/common.php:152 msgid "Go to the installer." msgstr "اذهب إلى المُثبّت." @@ -5150,23 +5322,23 @@ msgstr "" msgid "Not an image or corrupt file." msgstr "" -#: lib/imagefile.php:105 +#: lib/imagefile.php:109 msgid "Unsupported image file format." msgstr "" -#: lib/imagefile.php:118 +#: lib/imagefile.php:122 msgid "Lost our file." msgstr "" -#: lib/imagefile.php:150 lib/imagefile.php:197 +#: lib/imagefile.php:166 lib/imagefile.php:231 msgid "Unknown file type" msgstr "نوع ملف غير معروف" -#: lib/imagefile.php:217 +#: lib/imagefile.php:251 msgid "MB" msgstr "ميجابايت" -#: lib/imagefile.php:219 +#: lib/imagefile.php:253 msgid "kB" msgstr "كيلوبايت" @@ -5469,6 +5641,12 @@ msgstr "إلى" msgid "Available characters" msgstr "المحارف المتوفرة" +#: lib/messageform.php:178 lib/noticeform.php:236 +#, fuzzy +msgctxt "Send button for sending notice" +msgid "Send" +msgstr "أرسل" + #: lib/noticeform.php:160 msgid "Send a notice" msgstr "أرسل إشعارًا" @@ -5525,23 +5703,23 @@ msgstr "غ" msgid "at" msgstr "في" -#: lib/noticelist.php:558 +#: lib/noticelist.php:566 msgid "in context" msgstr "في السياق" -#: lib/noticelist.php:583 +#: lib/noticelist.php:601 msgid "Repeated by" msgstr "مكرر بواسطة" -#: lib/noticelist.php:610 +#: lib/noticelist.php:628 msgid "Reply to this notice" msgstr "رُد على هذا الإشعار" -#: lib/noticelist.php:611 +#: lib/noticelist.php:629 msgid "Reply" msgstr "رُد" -#: lib/noticelist.php:655 +#: lib/noticelist.php:673 msgid "Notice repeated" msgstr "الإشعار مكرر" @@ -5589,6 +5767,10 @@ msgstr "الردود" msgid "Favorites" msgstr "المفضلات" +#: lib/personalgroupnav.php:115 +msgid "User" +msgstr "المستخدم" + #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "صندوق الوارد" @@ -5612,7 +5794,7 @@ msgstr "وسوم في إشعارات %s" #: lib/plugin.php:114 msgid "Unknown" -msgstr "غير معروف" +msgstr "غير معروفة" #: lib/profileaction.php:109 lib/profileaction.php:192 lib/subgroupnav.php:82 msgid "Subscriptions" @@ -5678,7 +5860,7 @@ msgstr "أأكرّر هذا الإشعار؟ّ" msgid "Repeat this notice" msgstr "كرّر هذا الإشعار" -#: lib/router.php:665 +#: lib/router.php:668 msgid "No single user defined for single-user mode." msgstr "" @@ -5698,6 +5880,10 @@ msgstr "ابحث في الموقع" msgid "Keyword(s)" msgstr "الكلمات المفتاحية" +#: lib/searchaction.php:127 +msgid "Search" +msgstr "ابحث" + #: lib/searchaction.php:162 msgid "Search help" msgstr "ابحث في المساعدة" @@ -5749,6 +5935,15 @@ msgstr "الأشخاص المشتركون ب%s" msgid "Groups %s is a member of" msgstr "المجموعات التي %s عضو فيها" +#: lib/subgroupnav.php:105 +msgid "Invite" +msgstr "ادعُ" + +#: lib/subgroupnav.php:106 +#, php-format +msgid "Invite friends and colleagues to join you on %s" +msgstr "" + #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -5819,47 +6014,47 @@ msgstr "رسالة" msgid "Moderate" msgstr "" -#: lib/util.php:952 +#: lib/util.php:1013 msgid "a few seconds ago" msgstr "قبل لحظات قليلة" -#: lib/util.php:954 +#: lib/util.php:1015 msgid "about a minute ago" msgstr "قبل دقيقة تقريبًا" -#: lib/util.php:956 +#: lib/util.php:1017 #, php-format msgid "about %d minutes ago" msgstr "" -#: lib/util.php:958 +#: lib/util.php:1019 msgid "about an hour ago" msgstr "قبل ساعة تقريبًا" -#: lib/util.php:960 +#: lib/util.php:1021 #, php-format msgid "about %d hours ago" msgstr "" -#: lib/util.php:962 +#: lib/util.php:1023 msgid "about a day ago" msgstr "قبل يوم تقريبا" -#: lib/util.php:964 +#: lib/util.php:1025 #, php-format msgid "about %d days ago" msgstr "" -#: lib/util.php:966 +#: lib/util.php:1027 msgid "about a month ago" msgstr "قبل شهر تقريبًا" -#: lib/util.php:968 +#: lib/util.php:1029 #, php-format msgid "about %d months ago" msgstr "" -#: lib/util.php:970 +#: lib/util.php:1031 msgid "about a year ago" msgstr "قبل سنة تقريبًا" diff --git a/locale/arz/LC_MESSAGES/statusnet.po b/locale/arz/LC_MESSAGES/statusnet.po index cd86407530..3ce1fbc4ef 100644 --- a/locale/arz/LC_MESSAGES/statusnet.po +++ b/locale/arz/LC_MESSAGES/statusnet.po @@ -10,79 +10,86 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-02-24 23:49+0000\n" -"PO-Revision-Date: 2010-02-24 23:50:08+0000\n" +"POT-Creation-Date: 2010-03-02 21:02+0000\n" +"PO-Revision-Date: 2010-03-02 21:02:09+0000\n" "Language-Team: Egyptian Spoken Arabic\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r62925); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: arz\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=6; plural= n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " "&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -#: actions/accessadminpanel.php:54 lib/adminpanelaction.php:326 +#. TRANS: Page title +#: actions/accessadminpanel.php:55 msgid "Access" msgstr "نفاذ" -#: actions/accessadminpanel.php:65 +#. TRANS: Page notice +#: actions/accessadminpanel.php:67 #, fuzzy msgid "Site access settings" msgstr "اذف إعدادت الموقع" -#: actions/accessadminpanel.php:158 +#. TRANS: Form legend for registration form. +#: actions/accessadminpanel.php:161 #, fuzzy msgid "Registration" msgstr "سجّل" -#: actions/accessadminpanel.php:161 -msgid "Private" -msgstr "خاص" - -#: actions/accessadminpanel.php:163 +#. TRANS: Checkbox instructions for admin setting "Private" +#: actions/accessadminpanel.php:165 msgid "Prohibit anonymous users (not logged in) from viewing site?" msgstr "أأمنع المستخدمين المجهولين (غير الوالجين) من عرض الموقع؟" +#. TRANS: Checkbox label for prohibiting anonymous users from viewing site. #: actions/accessadminpanel.php:167 -msgid "Invite only" -msgstr "بالدعوه فقط" +#, fuzzy +msgctxt "LABEL" +msgid "Private" +msgstr "خاص" -#: actions/accessadminpanel.php:169 +#. TRANS: Checkbox instructions for admin setting "Invite only" +#: actions/accessadminpanel.php:174 msgid "Make registration invitation only." msgstr "" -#: actions/accessadminpanel.php:173 -msgid "Closed" -msgstr "مُغلق" +#. TRANS: Checkbox label for configuring site as invite only. +#: actions/accessadminpanel.php:176 +msgid "Invite only" +msgstr "بالدعوه فقط" -#: actions/accessadminpanel.php:175 +#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations) +#: actions/accessadminpanel.php:183 msgid "Disable new registrations." msgstr "عطّل التسجيل الجديد." -#: actions/accessadminpanel.php:189 actions/designadminpanel.php:586 -#: actions/emailsettings.php:195 actions/imsettings.php:163 -#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 -#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 -#: actions/siteadminpanel.php:336 actions/smssettings.php:181 -#: actions/subscriptions.php:208 actions/tagother.php:154 -#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 -#: lib/applicationeditform.php:334 lib/designsettings.php:256 -#: lib/groupeditform.php:202 -msgid "Save" -msgstr "أرسل" +#. TRANS: Checkbox label for disabling new user registrations. +#: actions/accessadminpanel.php:185 +msgid "Closed" +msgstr "مُغلق" -#: actions/accessadminpanel.php:189 +#. TRANS: Title / tooltip for button to save access settings in site admin panel +#: actions/accessadminpanel.php:202 #, fuzzy msgid "Save access settings" msgstr "اذف إعدادت الموقع" -#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 -#: actions/showfavorites.php:137 actions/tag.php:51 +#: actions/accessadminpanel.php:203 +#, fuzzy +msgctxt "BUTTON" +msgid "Save" +msgstr "أرسل" + +#. TRANS: Server error when page not found (404) +#: actions/all.php:64 actions/public.php:98 actions/replies.php:93 +#: actions/showfavorites.php:138 actions/tag.php:52 msgid "No such page" msgstr "لا صفحه كهذه" -#: actions/all.php:74 actions/allrss.php:68 +#: actions/all.php:75 actions/allrss.php:68 #: actions/apiaccountupdatedeliverydevice.php:113 #: actions/apiaccountupdateprofile.php:105 #: actions/apiaccountupdateprofilebackgroundimage.php:116 @@ -96,72 +103,82 @@ msgstr "لا صفحه كهذه" #: actions/apitimelinehome.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/otp.php:76 -#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154 -#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 -#: actions/showfavorites.php:105 actions/userbyid.php:74 -#: actions/usergroups.php:91 actions/userrss.php:38 actions/xrds.php:71 -#: lib/command.php:163 lib/command.php:302 lib/command.php:355 -#: lib/command.php:401 lib/command.php:462 lib/command.php:518 -#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 +#: actions/hcard.php:67 actions/microsummary.php:62 actions/newmessage.php:116 +#: actions/otp.php:76 actions/remotesubscribe.php:145 +#: actions/remotesubscribe.php:154 actions/replies.php:73 +#: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/xrds.php:71 lib/command.php:163 lib/command.php:302 +#: lib/command.php:355 lib/command.php:401 lib/command.php:462 +#: lib/command.php:518 lib/galleryaction.php:59 lib/mailbox.php:82 +#: lib/profileaction.php:77 msgid "No such user." msgstr "لا مستخدم كهذا." -#: actions/all.php:84 +#. TRANS: Page title. %1$s is user nickname, %2$d is page number +#: actions/all.php:86 #, php-format msgid "%1$s and friends, page %2$d" msgstr "%1$s و الصحاب, صفحه %2$d" -#: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 +#. TRANS: Page title. %1$s is user nickname +#. TRANS: H1 text. %1$s is user nickname +#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" msgstr "%s والأصدقاء" -#: actions/all.php:99 +#. TRANS: %1$s is user nickname +#: actions/all.php:103 #, php-format msgid "Feed for friends of %s (RSS 1.0)" msgstr "" -#: actions/all.php:107 +#. TRANS: %1$s is user nickname +#: actions/all.php:112 #, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "" -#: actions/all.php:115 +#. TRANS: %1$s is user nickname +#: actions/all.php:121 #, php-format msgid "Feed for friends of %s (Atom)" msgstr "" -#: actions/all.php:127 +#. TRANS: %1$s is user nickname +#: actions/all.php:134 #, php-format msgid "" "This is the timeline for %s and friends but no one has posted anything yet." msgstr "" -#: actions/all.php:132 +#: actions/all.php:139 #, php-format msgid "" "Try subscribing to more people, [join a group](%%action.groups%%) or post " "something yourself." msgstr "" -#: actions/all.php:134 +#. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@" +#: actions/all.php:142 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) from his profile or [post something to " "his or her attention](%%%%action.newnotice%%%%?status_textarea=%3$s)." msgstr "" -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211 +#: actions/all.php:145 actions/replies.php:210 actions/showstream.php:211 #, 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/all.php:165 +#. TRANS: H1 text +#: actions/all.php:174 msgid "You and friends" msgstr "أنت والأصدقاء" @@ -179,20 +196,20 @@ msgstr "" #: actions/apiaccountverifycredentials.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:128 actions/apigroupcreate.php:136 +#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: actions/apigroupleave.php:141 actions/apigrouplist.php:132 #: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 #: actions/apigroupshow.php:115 actions/apihelptest.php:88 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 -#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184 +#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 #: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:207 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 msgid "API method not found." msgstr "الـ API method مش موجوده." @@ -224,8 +241,9 @@ msgstr "تعذّر تحديث المستخدم." #: actions/apiaccountupdateprofilebackgroundimage.php:194 #: actions/apiaccountupdateprofilecolors.php:185 #: 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 +#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 +#: actions/replies.php:80 actions/usergroups.php:98 lib/galleryaction.php:66 +#: lib/profileaction.php:84 msgid "User has no profile." msgstr "ليس للمستخدم ملف شخصى." @@ -249,7 +267,7 @@ msgstr "" #: actions/apiaccountupdateprofilebackgroundimage.php:146 #: actions/apiaccountupdateprofilecolors.php:164 #: actions/apiaccountupdateprofilecolors.php:174 -#: actions/groupdesignsettings.php:287 actions/groupdesignsettings.php:297 +#: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300 #: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 #: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 msgid "Unable to save your design settings." @@ -359,68 +377,68 @@ msgstr "" msgid "Could not find target user." msgstr "تعذّر إيجاد المستخدم الهدف." -#: actions/apigroupcreate.php:164 actions/editgroup.php:182 +#: actions/apigroupcreate.php:166 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:215 #: actions/register.php:205 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" -#: actions/apigroupcreate.php:173 actions/editgroup.php:186 +#: actions/apigroupcreate.php:175 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:238 #: actions/register.php:208 msgid "Nickname already in use. Try another one." msgstr "" -#: actions/apigroupcreate.php:180 actions/editgroup.php:189 +#: actions/apigroupcreate.php:182 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:218 #: actions/register.php:210 msgid "Not a valid nickname." msgstr "ليس اسمًا مستعارًا صحيحًا." -#: actions/apigroupcreate.php:196 actions/editapplication.php:215 -#: actions/editgroup.php:195 actions/newapplication.php:203 +#: actions/apigroupcreate.php:198 actions/editapplication.php:215 +#: actions/editgroup.php:199 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:217 msgid "Homepage is not a valid URL." msgstr "الصفحه الرئيسيه ليست عنونًا صالحًا." -#: actions/apigroupcreate.php:205 actions/editgroup.php:198 +#: actions/apigroupcreate.php:207 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:225 #: actions/register.php:220 msgid "Full name is too long (max 255 chars)." msgstr "الاسم الكامل طويل جدا (الأقصى 255 حرفًا)" -#: actions/apigroupcreate.php:213 actions/editapplication.php:190 +#: actions/apigroupcreate.php:215 actions/editapplication.php:190 #: actions/newapplication.php:172 #, php-format msgid "Description is too long (max %d chars)." msgstr "" -#: actions/apigroupcreate.php:224 actions/editgroup.php:204 +#: actions/apigroupcreate.php:226 actions/editgroup.php:208 #: actions/newgroup.php:148 actions/profilesettings.php:232 #: actions/register.php:227 msgid "Location is too long (max 255 chars)." msgstr "" -#: actions/apigroupcreate.php:243 actions/editgroup.php:215 +#: actions/apigroupcreate.php:245 actions/editgroup.php:219 #: actions/newgroup.php:159 #, php-format msgid "Too many aliases! Maximum %d." msgstr "" -#: actions/apigroupcreate.php:264 actions/editgroup.php:224 +#: actions/apigroupcreate.php:266 actions/editgroup.php:228 #: actions/newgroup.php:168 #, php-format msgid "Invalid alias: \"%s\"" msgstr "كنيه غير صالحة: \"%s\"" -#: actions/apigroupcreate.php:273 actions/editgroup.php:228 +#: actions/apigroupcreate.php:275 actions/editgroup.php:232 #: actions/newgroup.php:172 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "" -#: actions/apigroupcreate.php:286 actions/editgroup.php:234 +#: actions/apigroupcreate.php:288 actions/editgroup.php:238 #: actions/newgroup.php:178 msgid "Alias can't be the same as nickname." msgstr "" @@ -431,15 +449,15 @@ msgstr "" msgid "Group not found!" msgstr "لم توجد المجموعة!" -#: actions/apigroupjoin.php:110 actions/joingroup.php:90 +#: actions/apigroupjoin.php:110 actions/joingroup.php:100 msgid "You are already a member of that group." msgstr "" -#: actions/apigroupjoin.php:119 actions/joingroup.php:95 lib/command.php:221 +#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:221 msgid "You have been blocked from that group by the admin." msgstr "" -#: actions/apigroupjoin.php:138 actions/joingroup.php:124 +#: actions/apigroupjoin.php:138 actions/joingroup.php:134 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "ما نفعش يضم %1$s للجروپ %2$s." @@ -448,7 +466,7 @@ msgstr "ما نفعش يضم %1$s للجروپ %2$s." msgid "You are not a member of this group." msgstr "" -#: actions/apigroupleave.php:124 actions/leavegroup.php:119 +#: actions/apigroupleave.php:124 actions/leavegroup.php:129 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "ما نفعش يتشال اليوزر %1$s من الجروپ %2$s." @@ -480,7 +498,7 @@ msgstr "حجم غير صالح." #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 #: actions/deletenotice.php:157 actions/disfavor.php:74 #: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54 -#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupblock.php:66 actions/grouplogo.php:312 #: actions/groupunblock.php:66 actions/imsettings.php:206 #: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 @@ -523,7 +541,7 @@ msgstr "" #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:103 actions/editapplication.php:139 -#: actions/emailsettings.php:256 actions/grouplogo.php:319 +#: actions/emailsettings.php:256 actions/grouplogo.php:322 #: actions/imsettings.php:220 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 #: actions/smssettings.php:248 lib/designsettings.php:304 @@ -546,13 +564,13 @@ msgid "" "give access to your %4$s account to third parties you trust." msgstr "" -#: actions/apioauthauthorize.php:310 lib/action.php:441 +#: actions/apioauthauthorize.php:310 msgid "Account" msgstr "الحساب" #: actions/apioauthauthorize.php:313 actions/login.php:230 #: actions/profilesettings.php:106 actions/register.php:424 -#: actions/showgroup.php:236 actions/tagother.php:94 +#: actions/showgroup.php:244 actions/tagother.php:94 #: actions/userauthorization.php:145 lib/groupeditform.php:152 #: lib/userprofile.php:131 msgid "Nickname" @@ -634,12 +652,12 @@ msgid "%1$s updates favorited by %2$s / %2$s." msgstr "" #: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:131 actions/userrss.php:90 +#: actions/grouprss.php:138 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "مسار %s الزمني" -#: actions/apitimelinegroup.php:114 actions/apitimelineuser.php:126 +#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 #: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" @@ -675,7 +693,7 @@ msgstr "كرر إلى %s" msgid "Repeats of %s" msgstr "تكرارات %s" -#: actions/apitimelinetag.php:102 actions/tag.php:66 +#: actions/apitimelinetag.php:102 actions/tag.php:67 #, php-format msgid "Notices tagged with %s" msgstr "الإشعارات الموسومه ب%s" @@ -696,8 +714,7 @@ msgstr "لا مرفق كهذا." #: actions/avatarbynickname.php:59 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/leavegroup.php:76 -#: actions/showgroup.php:121 +#: actions/grouprss.php:91 actions/showgroup.php:121 msgid "No nickname." msgstr "لا اسم مستعار." @@ -709,7 +726,7 @@ msgstr "لا حجم." msgid "Invalid size." msgstr "حجم غير صالح." -#: actions/avatarsettings.php:67 actions/showgroup.php:221 +#: actions/avatarsettings.php:67 actions/showgroup.php:229 #: lib/accountsettingsaction.php:112 msgid "Avatar" msgstr "أفتار" @@ -726,30 +743,30 @@ msgid "User without matching profile" msgstr "" #: actions/avatarsettings.php:119 actions/avatarsettings.php:197 -#: actions/grouplogo.php:251 +#: actions/grouplogo.php:254 msgid "Avatar settings" msgstr "إعدادات الأفتار" #: actions/avatarsettings.php:127 actions/avatarsettings.php:205 -#: actions/grouplogo.php:199 actions/grouplogo.php:259 +#: actions/grouplogo.php:202 actions/grouplogo.php:262 msgid "Original" msgstr "الأصلي" #: actions/avatarsettings.php:142 actions/avatarsettings.php:217 -#: actions/grouplogo.php:210 actions/grouplogo.php:271 +#: actions/grouplogo.php:213 actions/grouplogo.php:274 msgid "Preview" msgstr "عاين" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:637 +#: lib/deleteuserform.php:66 lib/noticelist.php:655 msgid "Delete" msgstr "احذف" -#: actions/avatarsettings.php:166 actions/grouplogo.php:233 +#: actions/avatarsettings.php:166 actions/grouplogo.php:236 msgid "Upload" msgstr "ارفع" -#: actions/avatarsettings.php:231 actions/grouplogo.php:286 +#: actions/avatarsettings.php:231 actions/grouplogo.php:289 msgid "Crop" msgstr "" @@ -757,7 +774,7 @@ msgstr "" msgid "Pick a square area of the image to be your avatar" msgstr "" -#: actions/avatarsettings.php:343 actions/grouplogo.php:377 +#: actions/avatarsettings.php:343 actions/grouplogo.php:380 msgid "Lost our file data." msgstr "" @@ -789,22 +806,22 @@ msgid "" msgstr "" #: actions/block.php:143 actions/deleteapplication.php:153 -#: actions/deletenotice.php:145 actions/deleteuser.php:147 +#: actions/deletenotice.php:145 actions/deleteuser.php:150 #: actions/groupblock.php:178 msgid "No" msgstr "لا" -#: actions/block.php:143 actions/deleteuser.php:147 +#: actions/block.php:143 actions/deleteuser.php:150 msgid "Do not block this user" msgstr "لا تمنع هذا المستخدم" #: actions/block.php:144 actions/deleteapplication.php:158 -#: actions/deletenotice.php:146 actions/deleteuser.php:148 +#: actions/deletenotice.php:146 actions/deleteuser.php:151 #: actions/groupblock.php:179 lib/repeatform.php:132 msgid "Yes" msgstr "نعم" -#: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:355 lib/blockform.php:80 msgid "Block this user" msgstr "امنع هذا المستخدم" @@ -812,39 +829,43 @@ msgstr "امنع هذا المستخدم" msgid "Failed to save block information." msgstr "فشل حفظ معلومات المنع." -#: actions/blockedfromgroup.php:80 actions/editgroup.php:96 -#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/groupblock.php:86 -#: actions/groupbyid.php:83 actions/groupdesignsettings.php:97 -#: actions/grouplogo.php:99 actions/groupmembers.php:83 -#: actions/grouprss.php:98 actions/groupunblock.php:86 -#: actions/joingroup.php:83 actions/leavegroup.php:83 actions/makeadmin.php:86 -#: actions/showgroup.php:137 lib/command.php:212 lib/command.php:260 +#: actions/blockedfromgroup.php:80 actions/blockedfromgroup.php:87 +#: actions/editgroup.php:100 actions/foafgroup.php:44 actions/foafgroup.php:62 +#: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:100 actions/grouplogo.php:102 +#: actions/groupmembers.php:83 actions/groupmembers.php:90 +#: actions/grouprss.php:98 actions/grouprss.php:105 +#: actions/groupunblock.php:86 actions/joingroup.php:82 +#: actions/joingroup.php:93 actions/leavegroup.php:82 +#: actions/leavegroup.php:93 actions/makeadmin.php:86 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:212 +#: lib/command.php:260 msgid "No such group." msgstr "لا مجموعه كهذه." -#: actions/blockedfromgroup.php:90 +#: actions/blockedfromgroup.php:97 #, php-format msgid "%s blocked profiles" msgstr "" -#: actions/blockedfromgroup.php:93 +#: actions/blockedfromgroup.php:100 #, php-format msgid "%1$s blocked profiles, page %2$d" msgstr "%1$s فايلات معمول ليها بلوك, الصفحه %2$d" -#: actions/blockedfromgroup.php:108 +#: actions/blockedfromgroup.php:115 msgid "A list of the users blocked from joining this group." msgstr "" -#: actions/blockedfromgroup.php:281 +#: actions/blockedfromgroup.php:288 msgid "Unblock user from group" msgstr "ألغ منع المستخدم من المجموعة" -#: actions/blockedfromgroup.php:313 lib/unblockform.php:69 +#: actions/blockedfromgroup.php:320 lib/unblockform.php:69 msgid "Unblock" msgstr "ألغِ المنع" -#: actions/blockedfromgroup.php:313 lib/unblockform.php:80 +#: actions/blockedfromgroup.php:320 lib/unblockform.php:80 msgid "Unblock this user" msgstr "ألغِ منع هذا المستخدم" @@ -921,7 +942,7 @@ msgstr "انت مش بتملك الapplication دى." #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1197 +#: lib/action.php:1228 msgid "There was a problem with your session token." msgstr "" @@ -947,12 +968,13 @@ msgstr "لا تحذف هذا الإشعار" msgid "Delete this application" msgstr "احذف هذا الإشعار" +#. TRANS: Client error message #: 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:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 -#: lib/adminpanelaction.php:72 lib/profileformaction.php:63 +#: lib/adminpanelaction.php:73 lib/profileformaction.php:63 #: lib/settingsaction.php:72 msgid "Not logged in." msgstr "لست والجًا." @@ -979,7 +1001,7 @@ msgstr "أمتأكد من أنك تريد حذف هذا الإشعار؟" msgid "Do not delete this notice" msgstr "لا تحذف هذا الإشعار" -#: actions/deletenotice.php:146 lib/noticelist.php:637 +#: actions/deletenotice.php:146 lib/noticelist.php:655 msgid "Delete this notice" msgstr "احذف هذا الإشعار" @@ -995,18 +1017,18 @@ msgstr "يمكنك حذف المستخدمين المحليين فقط." msgid "Delete user" msgstr "احذف المستخدم" -#: actions/deleteuser.php:135 +#: actions/deleteuser.php:136 msgid "" "Are you sure you want to delete this user? This will clear all data about " "the user from the database, without a backup." msgstr "" -#: actions/deleteuser.php:148 lib/deleteuserform.php:77 +#: actions/deleteuser.php:151 lib/deleteuserform.php:77 msgid "Delete this user" msgstr "احذف هذا المستخدم" #: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 -#: lib/adminpanelaction.php:316 lib/groupnav.php:119 +#: lib/groupnav.php:119 msgid "Design" msgstr "التصميم" @@ -1107,6 +1129,17 @@ msgstr "استعد التصميمات المبدئية" msgid "Reset back to default" msgstr "ارجع إلى المبدئي" +#: actions/designadminpanel.php:586 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/tagother.php:154 actions/useradminpanel.php:294 +#: lib/applicationeditform.php:333 lib/applicationeditform.php:334 +#: lib/designsettings.php:256 lib/groupeditform.php:202 +msgid "Save" +msgstr "أرسل" + #: actions/designadminpanel.php:587 lib/designsettings.php:257 msgid "Save design" msgstr "احفظ التصميم" @@ -1199,29 +1232,29 @@ msgstr "عدّل مجموعه %s" msgid "You must be logged in to create a group." msgstr "يجب أن تكون والجًا لتنشئ مجموعه." -#: actions/editgroup.php:103 actions/editgroup.php:168 -#: actions/groupdesignsettings.php:104 actions/grouplogo.php:106 +#: actions/editgroup.php:107 actions/editgroup.php:172 +#: actions/groupdesignsettings.php:107 actions/grouplogo.php:109 msgid "You must be an admin to edit the group." msgstr "لازم تكون ادارى علشان تعدّل الجروپ." -#: actions/editgroup.php:154 +#: actions/editgroup.php:158 msgid "Use this form to edit the group." msgstr "استخدم هذا النموذج لتعديل المجموعه." -#: actions/editgroup.php:201 actions/newgroup.php:145 +#: actions/editgroup.php:205 actions/newgroup.php:145 #, php-format msgid "description is too long (max %d chars)." msgstr "" -#: actions/editgroup.php:253 +#: actions/editgroup.php:258 msgid "Could not update group." msgstr "تعذر تحديث المجموعه." -#: actions/editgroup.php:259 classes/User_group.php:433 +#: actions/editgroup.php:264 classes/User_group.php:478 msgid "Could not create aliases." msgstr "تعذّر إنشاء الكنى." -#: actions/editgroup.php:269 +#: actions/editgroup.php:280 msgid "Options saved." msgstr "حُفظت الخيارات." @@ -1550,7 +1583,7 @@ msgstr "" msgid "User is not a member of group." msgstr "المستخدم ليس عضوًا فى المجموعه." -#: actions/groupblock.php:136 actions/groupmembers.php:316 +#: actions/groupblock.php:136 actions/groupmembers.php:323 msgid "Block user from group" msgstr "امنع المستخدم من المجموعة" @@ -1582,86 +1615,86 @@ msgstr "لا هويه." msgid "You must be logged in to edit a group." msgstr "يجب أن تلج لتُعدّل المجموعات." -#: actions/groupdesignsettings.php:141 +#: actions/groupdesignsettings.php:144 msgid "Group design" msgstr "تصميم المجموعة" -#: actions/groupdesignsettings.php:152 +#: actions/groupdesignsettings.php:155 msgid "" "Customize the way your group looks with a background image and a colour " "palette of your choice." msgstr "" -#: actions/groupdesignsettings.php:263 actions/userdesignsettings.php:186 +#: actions/groupdesignsettings.php:266 actions/userdesignsettings.php:186 #: lib/designsettings.php:391 lib/designsettings.php:413 msgid "Couldn't update your design." msgstr "تعذّر تحديث تصميمك." -#: actions/groupdesignsettings.php:308 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231 msgid "Design preferences saved." msgstr "" -#: actions/grouplogo.php:139 actions/grouplogo.php:192 +#: actions/grouplogo.php:142 actions/grouplogo.php:195 msgid "Group logo" msgstr "شعار المجموعة" -#: actions/grouplogo.php:150 +#: actions/grouplogo.php:153 #, php-format msgid "" "You can upload a logo image for your group. The maximum file size is %s." msgstr "" -#: actions/grouplogo.php:178 +#: actions/grouplogo.php:181 msgid "User without matching profile." msgstr "يوزر من-غير پروفايل زيّه." -#: actions/grouplogo.php:362 +#: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." msgstr "" -#: actions/grouplogo.php:396 +#: actions/grouplogo.php:399 msgid "Logo updated." msgstr "حُدّث الشعار." -#: actions/grouplogo.php:398 +#: actions/grouplogo.php:401 msgid "Failed updating logo." msgstr "فشل رفع الشعار." -#: actions/groupmembers.php:93 lib/groupnav.php:92 +#: actions/groupmembers.php:100 lib/groupnav.php:92 #, php-format msgid "%s group members" msgstr "أعضاء مجموعه %s" -#: actions/groupmembers.php:96 +#: actions/groupmembers.php:103 #, php-format msgid "%1$s group members, page %2$d" msgstr "%1$s اعضاء الجروپ, صفحه %2$d" -#: actions/groupmembers.php:111 +#: actions/groupmembers.php:118 msgid "A list of the users in this group." msgstr "قائمه بمستخدمى هذه المجموعه." -#: actions/groupmembers.php:175 lib/action.php:448 lib/groupnav.php:107 +#: actions/groupmembers.php:182 lib/groupnav.php:107 msgid "Admin" msgstr "إداري" -#: actions/groupmembers.php:348 lib/blockform.php:69 +#: actions/groupmembers.php:355 lib/blockform.php:69 msgid "Block" msgstr "امنع" -#: actions/groupmembers.php:443 +#: actions/groupmembers.php:450 msgid "Make user an admin of the group" msgstr "" -#: actions/groupmembers.php:475 +#: actions/groupmembers.php:482 msgid "Make Admin" msgstr "" -#: actions/groupmembers.php:475 +#: actions/groupmembers.php:482 msgid "Make this user an admin" msgstr "اجعل هذا المستخدم إداريًا" -#: actions/grouprss.php:133 +#: actions/grouprss.php:140 #, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "" @@ -1897,16 +1930,19 @@ msgstr "رساله شخصية" msgid "Optionally add a personal message to the invitation." msgstr "" -#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:236 +#. TRANS: Send button for inviting friends +#: actions/invite.php:198 +#, fuzzy +msgctxt "BUTTON" msgid "Send" msgstr "أرسل" -#: actions/invite.php:226 +#: actions/invite.php:227 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "" -#: actions/invite.php:228 +#: actions/invite.php:229 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -1941,7 +1977,12 @@ msgstr "" msgid "You must be logged in to join a group." msgstr "" -#: actions/joingroup.php:131 +#: actions/joingroup.php:88 actions/leavegroup.php:88 +#, fuzzy +msgid "No nickname or ID." +msgstr "لا اسم مستعار." + +#: actions/joingroup.php:141 #, php-format msgid "%1$s joined group %2$s" msgstr "%1$s دخل جروپ %2$s" @@ -1950,11 +1991,11 @@ msgstr "%1$s دخل جروپ %2$s" msgid "You must be logged in to leave a group." msgstr "" -#: actions/leavegroup.php:90 lib/command.php:265 +#: actions/leavegroup.php:100 lib/command.php:265 msgid "You are not a member of that group." msgstr "لست عضوا فى تلك المجموعه." -#: actions/leavegroup.php:127 +#: actions/leavegroup.php:137 #, php-format msgid "%1$s left group %2$s" msgstr "%1$s ساب جروپ %2$s" @@ -1971,8 +2012,7 @@ msgstr "اسم المستخدم أو كلمه السر غير صحيحان." msgid "Error setting user. You are probably not authorized." msgstr "خطأ أثناء ضبط المستخدم. لست مُصرحًا على الأرجح." -#: actions/login.php:188 actions/login.php:241 lib/action.php:466 -#: lib/logingroupnav.php:79 +#: actions/login.php:188 actions/login.php:241 lib/logingroupnav.php:79 msgid "Login" msgstr "لُج" @@ -2212,8 +2252,8 @@ msgstr "نوع المحتوى " msgid "Only " msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 -#: lib/api.php:1068 lib/api.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 +#: lib/apiaction.php:1068 lib/apiaction.php:1177 msgid "Not a supported data format." msgstr " مش نظام بيانات مدعوم." @@ -2352,7 +2392,7 @@ msgstr "تعذّر حفظ كلمه السر الجديده." msgid "Password saved." msgstr "حُفظت كلمه السر." -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:331 +#: actions/pathsadminpanel.php:59 msgid "Paths" msgstr "المسارات" @@ -2385,7 +2425,6 @@ msgid "Invalid SSL server. The maximum length is 255 characters." msgstr "" #: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58 -#: lib/adminpanelaction.php:311 msgid "Site" msgstr "الموقع" @@ -2553,7 +2592,7 @@ msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "" #: actions/profilesettings.php:111 actions/register.php:448 -#: actions/showgroup.php:247 actions/tagother.php:104 +#: actions/showgroup.php:255 actions/tagother.php:104 #: lib/groupeditform.php:157 lib/userprofile.php:149 msgid "Full name" msgstr "الاسم الكامل" @@ -2581,7 +2620,7 @@ msgid "Bio" msgstr "السيرة" #: actions/profilesettings.php:132 actions/register.php:471 -#: actions/showgroup.php:256 actions/tagother.php:112 +#: actions/showgroup.php:264 actions/tagother.php:112 #: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:164 msgid "Location" @@ -2661,7 +2700,8 @@ msgstr "تعذّر حفظ الملف الشخصى." msgid "Couldn't save tags." msgstr "تعذّر حفظ الوسوم." -#: actions/profilesettings.php:391 lib/adminpanelaction.php:137 +#. TRANS: Message after successful saving of administrative settings. +#: actions/profilesettings.php:391 lib/adminpanelaction.php:141 msgid "Settings saved." msgstr "حُفظت الإعدادات." @@ -2674,45 +2714,45 @@ msgstr "وراء حد الصفحه (%s)" msgid "Could not retrieve public stream." msgstr "" -#: actions/public.php:129 +#: actions/public.php:130 #, php-format msgid "Public timeline, page %d" msgstr "المسار الزمنى العام، صفحه %d" -#: actions/public.php:131 lib/publicgroupnav.php:79 +#: actions/public.php:132 lib/publicgroupnav.php:79 msgid "Public timeline" msgstr "المسار الزمنى العام" -#: actions/public.php:159 +#: actions/public.php:160 msgid "Public Stream Feed (RSS 1.0)" msgstr "" -#: actions/public.php:163 +#: actions/public.php:164 msgid "Public Stream Feed (RSS 2.0)" msgstr "" -#: actions/public.php:167 +#: actions/public.php:168 msgid "Public Stream Feed (Atom)" msgstr "" -#: actions/public.php:187 +#: actions/public.php:188 #, php-format msgid "" "This is the public timeline for %%site.name%% but no one has posted anything " "yet." msgstr "" -#: actions/public.php:190 +#: actions/public.php:191 msgid "Be the first to post!" msgstr "كن أول من يُرسل!" -#: actions/public.php:194 +#: actions/public.php:195 #, php-format msgid "" "Why not [register an account](%%action.register%%) and be the first to post!" msgstr "" -#: actions/public.php:241 +#: actions/public.php:242 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2725,7 +2765,7 @@ msgstr "" "الآن](%%action.register%%) لتشارك اشعاراتك مع أصدقائك وعائلتك وزملائك! " "([اقرأ المزيد](%%doc.help%%))" -#: actions/public.php:246 +#: actions/public.php:247 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2896,8 +2936,7 @@ msgstr "عذرا، رمز دعوه غير صالح." msgid "Registration successful" msgstr "نجح التسجيل" -#: actions/register.php:114 actions/register.php:503 lib/action.php:463 -#: lib/logingroupnav.php:85 +#: actions/register.php:114 actions/register.php:503 lib/logingroupnav.php:85 msgid "Register" msgstr "سجّل" @@ -3056,7 +3095,7 @@ msgstr "ما ينفعش تكرر الملاحظه بتاعتك." msgid "You already repeated that notice." msgstr "انت عيدت الملاحظه دى فعلا." -#: actions/repeat.php:114 lib/noticelist.php:656 +#: actions/repeat.php:114 lib/noticelist.php:674 msgid "Repeated" msgstr "مكرر" @@ -3064,47 +3103,47 @@ msgstr "مكرر" msgid "Repeated!" msgstr "مكرر!" -#: actions/replies.php:125 actions/repliesrss.php:68 +#: actions/replies.php:126 actions/repliesrss.php:68 #: lib/personalgroupnav.php:105 #, php-format msgid "Replies to %s" msgstr "الردود على %s" -#: actions/replies.php:127 +#: actions/replies.php:128 #, fuzzy, php-format msgid "Replies to %1$s, page %2$d" msgstr "الردود على %s" -#: actions/replies.php:144 +#: actions/replies.php:145 #, php-format msgid "Replies feed for %s (RSS 1.0)" msgstr "" -#: actions/replies.php:151 +#: actions/replies.php:152 #, php-format msgid "Replies feed for %s (RSS 2.0)" msgstr "" -#: actions/replies.php:158 +#: actions/replies.php:159 #, php-format msgid "Replies feed for %s (Atom)" msgstr "" -#: actions/replies.php:198 +#: actions/replies.php:199 #, php-format msgid "" "This is the timeline showing replies to %1$s but %2$s hasn't received a " "notice to his attention yet." msgstr "" -#: actions/replies.php:203 +#: actions/replies.php:204 #, php-format msgid "" "You can engage other users in a conversation, subscribe to more people or " "[join groups](%%action.groups%%)." msgstr "" -#: actions/replies.php:205 +#: actions/replies.php:206 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) or [post something to his or her " @@ -3129,7 +3168,6 @@ msgid "User is already sandboxed." msgstr "" #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:336 msgid "Sessions" msgstr "الجلسات" @@ -3155,7 +3193,7 @@ msgid "Turn on debugging output for sessions." msgstr "مكّن تنقيح مُخرجات الجلسه." #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/useradminpanel.php:293 +#: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "اذف إعدادت الموقع" @@ -3185,7 +3223,7 @@ msgstr "المنظمه" msgid "Description" msgstr "الوصف" -#: actions/showapplication.php:192 actions/showgroup.php:429 +#: actions/showapplication.php:192 actions/showgroup.php:437 #: lib/profileaction.php:174 msgid "Statistics" msgstr "إحصاءات" @@ -3247,28 +3285,28 @@ msgstr "إشعارات %s المُفضلة" msgid "Could not retrieve favorite notices." msgstr "" -#: actions/showfavorites.php:170 +#: actions/showfavorites.php:171 #, php-format msgid "Feed for favorites of %s (RSS 1.0)" msgstr "" -#: actions/showfavorites.php:177 +#: actions/showfavorites.php:178 #, php-format msgid "Feed for favorites of %s (RSS 2.0)" msgstr "" -#: actions/showfavorites.php:184 +#: actions/showfavorites.php:185 #, php-format msgid "Feed for favorites of %s (Atom)" msgstr "" -#: actions/showfavorites.php:205 +#: actions/showfavorites.php:206 msgid "" "You haven't chosen any favorite notices yet. Click the fave button on " "notices you like to bookmark them for later or shed a spotlight on them." msgstr "" -#: actions/showfavorites.php:207 +#: actions/showfavorites.php:208 #, php-format msgid "" "%s hasn't added any notices to his favorites yet. Post something interesting " @@ -3277,7 +3315,7 @@ msgstr "" "%s لم يضف أى إشعارات إلى مفضلته إلى الآن. أرسل شيئًا شيقًا ليضيفه إلى " "مفضلته. :)" -#: actions/showfavorites.php:211 +#: actions/showfavorites.php:212 #, php-format msgid "" "%s hasn't added any notices to his favorites yet. Why not [register an " @@ -3287,7 +3325,7 @@ msgstr "" "%s لم يضف أى إشعارات إلى مفضلته إلى الآن. لمّ لا [تسجل حسابًا](%%%%action." "register%%%%) وترسل شيئًا شيقًا ليضيفه إلى مفضلته. :)" -#: actions/showfavorites.php:242 +#: actions/showfavorites.php:243 msgid "This is a way to share what you like." msgstr "إنها إحدى وسائل مشاركه ما تحب." @@ -3301,67 +3339,67 @@ msgstr "مجموعه %s" msgid "%1$s group, page %2$d" msgstr "%1$s أعضاء المجموعة, الصفحه %2$d" -#: actions/showgroup.php:218 +#: actions/showgroup.php:226 msgid "Group profile" msgstr "ملف المجموعه الشخصي" -#: actions/showgroup.php:263 actions/tagother.php:118 +#: actions/showgroup.php:271 actions/tagother.php:118 #: actions/userauthorization.php:175 lib/userprofile.php:177 msgid "URL" msgstr "مسار" -#: actions/showgroup.php:274 actions/tagother.php:128 +#: actions/showgroup.php:282 actions/tagother.php:128 #: actions/userauthorization.php:187 lib/userprofile.php:194 msgid "Note" msgstr "ملاحظة" -#: actions/showgroup.php:284 lib/groupeditform.php:184 +#: actions/showgroup.php:292 lib/groupeditform.php:184 msgid "Aliases" msgstr "الكنى" -#: actions/showgroup.php:293 +#: actions/showgroup.php:301 msgid "Group actions" msgstr "" -#: actions/showgroup.php:328 +#: actions/showgroup.php:336 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "" -#: actions/showgroup.php:334 +#: actions/showgroup.php:342 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "" -#: actions/showgroup.php:340 +#: actions/showgroup.php:348 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "" -#: actions/showgroup.php:345 +#: actions/showgroup.php:353 #, php-format msgid "FOAF for %s group" msgstr "" -#: actions/showgroup.php:381 actions/showgroup.php:438 lib/groupnav.php:91 +#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 msgid "Members" msgstr "الأعضاء" -#: actions/showgroup.php:386 lib/profileaction.php:117 +#: actions/showgroup.php:394 lib/profileaction.php:117 #: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(لا شيء)" -#: actions/showgroup.php:392 +#: actions/showgroup.php:400 msgid "All members" msgstr "جميع الأعضاء" -#: actions/showgroup.php:432 +#: actions/showgroup.php:440 msgid "Created" msgstr "أنشئ" -#: actions/showgroup.php:448 +#: actions/showgroup.php:456 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3371,7 +3409,7 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showgroup.php:454 +#: actions/showgroup.php:462 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3380,7 +3418,7 @@ msgid "" "their life and interests. " msgstr "" -#: actions/showgroup.php:482 +#: actions/showgroup.php:490 msgid "Admins" msgstr "الإداريون" @@ -3827,22 +3865,22 @@ msgstr "جابر" msgid "SMS" msgstr "رسائل قصيرة" -#: actions/tag.php:68 +#: actions/tag.php:69 #, fuzzy, php-format msgid "Notices tagged with %1$s, page %2$d" msgstr "الإشعارات الموسومه ب%s" -#: actions/tag.php:86 +#: actions/tag.php:87 #, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "" -#: actions/tag.php:92 +#: actions/tag.php:93 #, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "" -#: actions/tag.php:98 +#: actions/tag.php:99 #, php-format msgid "Notice feed for tag %s (Atom)" msgstr "" @@ -3892,7 +3930,7 @@ msgstr "" msgid "No such tag." msgstr "لا وسم كهذا." -#: actions/twitapitrends.php:87 +#: actions/twitapitrends.php:85 msgid "API method under construction." msgstr "" @@ -3922,70 +3960,72 @@ msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" -#: actions/useradminpanel.php:58 lib/adminpanelaction.php:321 -#: lib/personalgroupnav.php:115 +#. TRANS: User admin panel title +#: actions/useradminpanel.php:59 +#, fuzzy +msgctxt "TITLE" msgid "User" msgstr "المستخدم" -#: actions/useradminpanel.php:69 +#: actions/useradminpanel.php:70 msgid "User settings for this StatusNet site." msgstr "" -#: actions/useradminpanel.php:148 +#: actions/useradminpanel.php:149 msgid "Invalid bio limit. Must be numeric." msgstr "" -#: actions/useradminpanel.php:154 +#: actions/useradminpanel.php:155 msgid "Invalid welcome text. Max length is 255 characters." msgstr "رساله ترحيب غير صالحه. أقصى طول هو 255 حرف." -#: actions/useradminpanel.php:164 +#: actions/useradminpanel.php:165 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" -#: actions/useradminpanel.php:217 lib/accountsettingsaction.php:108 +#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "الملف الشخصي" -#: actions/useradminpanel.php:221 +#: actions/useradminpanel.php:222 msgid "Bio Limit" msgstr "حد السيرة" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:223 msgid "Maximum length of a profile bio in characters." msgstr "" -#: actions/useradminpanel.php:230 +#: actions/useradminpanel.php:231 msgid "New users" msgstr "مستخدمون جدد" -#: actions/useradminpanel.php:234 +#: actions/useradminpanel.php:235 msgid "New user welcome" msgstr "ترحيب المستخدمين الجدد" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:236 msgid "Welcome text for new users (Max 255 chars)." msgstr "نص الترحيب بالمستخدمين الجدد (255 حرفًا كحد أقصى)." -#: actions/useradminpanel.php:240 +#: actions/useradminpanel.php:241 msgid "Default subscription" msgstr "الاشتراك المبدئي" -#: actions/useradminpanel.php:241 +#: actions/useradminpanel.php:242 msgid "Automatically subscribe new users to this user." msgstr "أشرك المستخدمين الجدد بهذا المستخدم تلقائيًا." -#: actions/useradminpanel.php:250 +#: actions/useradminpanel.php:251 msgid "Invitations" msgstr "الدعوات" -#: actions/useradminpanel.php:255 +#: actions/useradminpanel.php:256 msgid "Invitations enabled" msgstr "الدعوات مُفعلة" -#: actions/useradminpanel.php:257 +#: actions/useradminpanel.php:258 msgid "Whether to allow users to invite new users." msgstr "" @@ -4158,7 +4198,7 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:196 lib/action.php:747 +#: actions/version.php:196 lib/action.php:778 msgid "Version" msgstr "النسخه" @@ -4195,6 +4235,11 @@ msgstr "مش جزء من الجروپ." msgid "Group leave failed." msgstr "الخروج من الجروپ فشل." +#: classes/Local_group.php:41 +#, fuzzy +msgid "Could not update local group." +msgstr "تعذر تحديث المجموعه." + #: classes/Login_token.php:76 #, php-format msgid "Could not create login token for %s" @@ -4212,44 +4257,44 @@ msgstr "تعذّر إدراج الرساله." msgid "Could not update message with new URI." msgstr "" -#: classes/Notice.php:157 +#: classes/Notice.php:172 #, php-format msgid "DB error inserting hashtag: %s" msgstr "" -#: classes/Notice.php:222 +#: classes/Notice.php:239 msgid "Problem saving notice. Too long." msgstr "مشكله فى حفظ الإشعار. طويل جدًا." -#: classes/Notice.php:226 +#: classes/Notice.php:243 msgid "Problem saving notice. Unknown user." msgstr "مشكله فى حفظ الإشعار. مستخدم غير معروف." -#: classes/Notice.php:231 +#: classes/Notice.php:248 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: classes/Notice.php:237 +#: classes/Notice.php:254 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." msgstr "" -#: classes/Notice.php:243 +#: classes/Notice.php:260 msgid "You are banned from posting notices on this site." msgstr "" -#: classes/Notice.php:309 classes/Notice.php:335 +#: classes/Notice.php:326 classes/Notice.php:352 msgid "Problem saving notice." msgstr "مشكله أثناء حفظ الإشعار." -#: classes/Notice.php:882 +#: classes/Notice.php:911 #, fuzzy msgid "Problem saving group inbox." msgstr "مشكله أثناء حفظ الإشعار." -#: classes/Notice.php:1407 +#: classes/Notice.php:1442 #, php-format msgid "RT @%1$s %2$s" msgstr "آر تى @%1$s %2$s" @@ -4278,19 +4323,29 @@ msgstr "ما نفعش يمسح الاشتراك الشخصى." msgid "Couldn't delete subscription." msgstr "تعذّر حذف الاشتراك." -#: classes/User.php:372 +#: classes/User.php:373 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "أهلا بكم فى %1$s يا @%2$s!" -#: classes/User_group.php:423 +#: classes/User_group.php:462 msgid "Could not create group." msgstr "تعذّر إنشاء المجموعه." -#: classes/User_group.php:452 +#: classes/User_group.php:471 +#, fuzzy +msgid "Could not set group URI." +msgstr "تعذّر ضبط عضويه المجموعه." + +#: classes/User_group.php:492 msgid "Could not set group membership." msgstr "تعذّر ضبط عضويه المجموعه." +#: classes/User_group.php:506 +#, fuzzy +msgid "Could not save local group info." +msgstr "تعذّر حفظ الاشتراك." + #: lib/accountsettingsaction.php:108 msgid "Change your profile settings" msgstr "غيّر إعدادات ملفك الشخصي" @@ -4332,120 +4387,190 @@ msgstr "صفحه غير مُعنونة" msgid "Primary site navigation" msgstr "" +#. TRANS: Tooltip for main menu option "Personal" #: lib/action.php:439 -msgid "Home" -msgstr "الرئيسية" - -#: lib/action.php:439 +#, fuzzy +msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "الملف الشخصى ومسار الأصدقاء الزمني" -#: lib/action.php:441 -msgid "Change your email, avatar, password, profile" -msgstr "" +#: lib/action.php:442 +#, fuzzy +msgctxt "MENU" +msgid "Personal" +msgstr "شخصية" +#. TRANS: Tooltip for main menu option "Account" #: lib/action.php:444 +#, fuzzy +msgctxt "TOOLTIP" +msgid "Change your email, avatar, password, profile" +msgstr "غير كلمه سرّك" + +#: lib/action.php:447 +#, fuzzy +msgctxt "MENU" +msgid "Account" +msgstr "الحساب" + +#. TRANS: Tooltip for main menu option "Services" +#: lib/action.php:450 +#, fuzzy +msgctxt "TOOLTIP" +msgid "Connect to services" +msgstr "كونيكشونات (Connections)" + +#: lib/action.php:453 +#, fuzzy +msgctxt "MENU" msgid "Connect" msgstr "اتصل" -#: lib/action.php:444 -msgid "Connect to services" -msgstr "" - -#: lib/action.php:448 +#. TRANS: Tooltip for menu option "Admin" +#: lib/action.php:457 +#, fuzzy +msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "غيّر ضبط الموقع" -#: lib/action.php:452 lib/subgroupnav.php:105 -msgid "Invite" -msgstr "ادعُ" +#: lib/action.php:460 +#, fuzzy +msgctxt "MENU" +msgid "Admin" +msgstr "إداري" -#: lib/action.php:453 lib/subgroupnav.php:106 +#. TRANS: Tooltip for main menu option "Invite" +#: lib/action.php:464 #, php-format +msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "" -#: lib/action.php:458 -msgid "Logout" -msgstr "اخرج" +#: lib/action.php:467 +#, fuzzy +msgctxt "MENU" +msgid "Invite" +msgstr "ادعُ" -#: lib/action.php:458 +#. TRANS: Tooltip for main menu option "Logout" +#: lib/action.php:473 +#, fuzzy +msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "اخرج من الموقع" -#: lib/action.php:463 +#: lib/action.php:476 +#, fuzzy +msgctxt "MENU" +msgid "Logout" +msgstr "اخرج" + +#. TRANS: Tooltip for main menu option "Register" +#: lib/action.php:481 +#, fuzzy +msgctxt "TOOLTIP" msgid "Create an account" msgstr "أنشئ حسابًا" -#: lib/action.php:466 +#: lib/action.php:484 +#, fuzzy +msgctxt "MENU" +msgid "Register" +msgstr "سجّل" + +#. TRANS: Tooltip for main menu option "Login" +#: lib/action.php:487 +#, fuzzy +msgctxt "TOOLTIP" msgid "Login to the site" msgstr "لُج إلى الموقع" -#: lib/action.php:469 lib/action.php:732 -msgid "Help" -msgstr "مساعدة" +#: lib/action.php:490 +#, fuzzy +msgctxt "MENU" +msgid "Login" +msgstr "لُج" -#: lib/action.php:469 +#. TRANS: Tooltip for main menu option "Help" +#: lib/action.php:493 +#, fuzzy +msgctxt "TOOLTIP" msgid "Help me!" msgstr "ساعدني!" -#: lib/action.php:472 lib/searchaction.php:127 -msgid "Search" -msgstr "ابحث" +#: lib/action.php:496 +#, fuzzy +msgctxt "MENU" +msgid "Help" +msgstr "مساعدة" -#: lib/action.php:472 +#. TRANS: Tooltip for main menu option "Search" +#: lib/action.php:499 +#, fuzzy +msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "ابحث عن أشخاص أو نص" -#: lib/action.php:493 +#: lib/action.php:502 +#, fuzzy +msgctxt "MENU" +msgid "Search" +msgstr "ابحث" + +#. TRANS: DT element for site notice. String is hidden in default CSS. +#: lib/action.php:524 msgid "Site notice" msgstr "إشعار الموقع" -#: lib/action.php:559 +#: lib/action.php:590 msgid "Local views" msgstr "المشاهدات المحلية" -#: lib/action.php:625 +#: lib/action.php:656 msgid "Page notice" msgstr "إشعار الصفحة" -#: lib/action.php:727 +#: lib/action.php:758 msgid "Secondary site navigation" msgstr "" -#: lib/action.php:734 +#: lib/action.php:763 +msgid "Help" +msgstr "مساعدة" + +#: lib/action.php:765 msgid "About" msgstr "عن" -#: lib/action.php:736 +#: lib/action.php:767 msgid "FAQ" msgstr "الأسئله المكررة" -#: lib/action.php:740 +#: lib/action.php:771 msgid "TOS" msgstr "الشروط" -#: lib/action.php:743 +#: lib/action.php:774 msgid "Privacy" msgstr "خصوصية" -#: lib/action.php:745 +#: lib/action.php:776 msgid "Source" msgstr "المصدر" -#: lib/action.php:749 +#: lib/action.php:780 msgid "Contact" msgstr "اتصل" -#: lib/action.php:751 +#: lib/action.php:782 msgid "Badge" msgstr "" -#: lib/action.php:779 +#: lib/action.php:810 msgid "StatusNet software license" msgstr "" -#: lib/action.php:782 +#: lib/action.php:813 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4454,12 +4579,12 @@ msgstr "" "**%%site.name%%** خدمه تدوين مصغر يقدمها لك [%%site.broughtby%%](%%site." "broughtbyurl%%). " -#: lib/action.php:784 +#: lib/action.php:815 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "" -#: lib/action.php:786 +#: lib/action.php:817 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4470,108 +4595,161 @@ msgstr "" "المتوفر تحت [رخصه غنو أفيرو العمومية](http://www.fsf.org/licensing/licenses/" "agpl-3.0.html)." -#: lib/action.php:801 +#: lib/action.php:832 msgid "Site content license" msgstr "رخصه محتوى الموقع" -#: lib/action.php:806 +#: lib/action.php:837 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:811 +#: lib/action.php:842 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:814 +#: lib/action.php:845 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" -#: lib/action.php:827 +#: lib/action.php:858 msgid "All " msgstr "" -#: lib/action.php:833 +#: lib/action.php:864 msgid "license." msgstr "الرخصه." -#: lib/action.php:1132 +#: lib/action.php:1163 msgid "Pagination" msgstr "" -#: lib/action.php:1141 +#: lib/action.php:1172 msgid "After" msgstr "بعد" -#: lib/action.php:1149 +#: lib/action.php:1180 msgid "Before" msgstr "قبل" -#: lib/activity.php:382 +#: lib/activity.php:449 msgid "Can't handle remote content yet." msgstr "" -#: lib/activity.php:410 +#: lib/activity.php:477 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activity.php:414 +#: lib/activity.php:481 msgid "Can't handle embedded Base64 content yet." msgstr "" -#: lib/adminpanelaction.php:96 +#. TRANS: Client error message +#: lib/adminpanelaction.php:98 msgid "You cannot make changes to this site." msgstr "" -#: lib/adminpanelaction.php:107 +#. TRANS: Client error message +#: lib/adminpanelaction.php:110 msgid "Changes to that panel are not allowed." msgstr "التغييرات مش مسموحه للـ لوحه دى." -#: lib/adminpanelaction.php:206 +#. TRANS: Client error message +#: lib/adminpanelaction.php:211 msgid "showForm() not implemented." msgstr "" -#: lib/adminpanelaction.php:235 +#. TRANS: Client error message +#: lib/adminpanelaction.php:241 msgid "saveSettings() not implemented." msgstr "" -#: lib/adminpanelaction.php:258 +#. TRANS: Client error message +#: lib/adminpanelaction.php:265 msgid "Unable to delete design setting." msgstr "تعذّر حذف إعدادات التصميم." -#: lib/adminpanelaction.php:312 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:330 msgid "Basic site configuration" msgstr "ضبط الموقع الأساسي" -#: lib/adminpanelaction.php:317 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:332 +#, fuzzy +msgctxt "MENU" +msgid "Site" +msgstr "الموقع" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:338 msgid "Design configuration" msgstr "ضبط التصميم" -#: lib/adminpanelaction.php:322 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:340 +#, fuzzy +msgctxt "MENU" +msgid "Design" +msgstr "التصميم" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:346 #, fuzzy msgid "User configuration" msgstr "ضبط المسارات" -#: lib/adminpanelaction.php:327 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:348 +#, fuzzy +msgctxt "MENU" +msgid "User" +msgstr "المستخدم" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:354 #, fuzzy msgid "Access configuration" msgstr "ضبط التصميم" -#: lib/adminpanelaction.php:332 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:356 +#, fuzzy +msgctxt "MENU" +msgid "Access" +msgstr "نفاذ" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:362 msgid "Paths configuration" msgstr "ضبط المسارات" -#: lib/adminpanelaction.php:337 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:364 +#, fuzzy +msgctxt "MENU" +msgid "Paths" +msgstr "المسارات" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:370 #, fuzzy msgid "Sessions configuration" msgstr "ضبط التصميم" -#: lib/apiauth.php:95 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:372 +#, fuzzy +msgctxt "MENU" +msgid "Sessions" +msgstr "الجلسات" + +#: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." msgstr "" -#: lib/apiauth.php:273 +#: lib/apiauth.php:272 #, php-format msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" msgstr "" @@ -4661,11 +4839,11 @@ msgstr "" msgid "Tags for this attachment" msgstr "وسوم هذا المرفق" -#: lib/authenticationplugin.php:218 lib/authenticationplugin.php:223 +#: lib/authenticationplugin.php:220 lib/authenticationplugin.php:225 msgid "Password changing failed" msgstr "تغيير الپاسوورد فشل" -#: lib/authenticationplugin.php:233 +#: lib/authenticationplugin.php:235 msgid "Password changing is not allowed" msgstr "تغيير الپاسوورد مش مسموح" @@ -4953,19 +5131,19 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:136 +#: lib/common.php:148 msgid "No configuration file found. " msgstr "" -#: lib/common.php:137 +#: lib/common.php:149 msgid "I looked for configuration files in the following places: " msgstr "" -#: lib/common.php:139 +#: lib/common.php:151 msgid "You may wish to run the installer to fix this." msgstr "" -#: lib/common.php:140 +#: lib/common.php:152 msgid "Go to the installer." msgstr "اذهب إلى المُثبّت." @@ -5151,23 +5329,23 @@ msgstr "" msgid "Not an image or corrupt file." msgstr "" -#: lib/imagefile.php:105 +#: lib/imagefile.php:109 msgid "Unsupported image file format." msgstr "" -#: lib/imagefile.php:118 +#: lib/imagefile.php:122 msgid "Lost our file." msgstr "" -#: lib/imagefile.php:150 lib/imagefile.php:197 +#: lib/imagefile.php:166 lib/imagefile.php:231 msgid "Unknown file type" msgstr "نوع ملف غير معروف" -#: lib/imagefile.php:217 +#: lib/imagefile.php:251 msgid "MB" msgstr "ميجابايت" -#: lib/imagefile.php:219 +#: lib/imagefile.php:253 msgid "kB" msgstr "كيلوبايت" @@ -5460,6 +5638,12 @@ msgstr "إلى" msgid "Available characters" msgstr "المحارف المتوفرة" +#: lib/messageform.php:178 lib/noticeform.php:236 +#, fuzzy +msgctxt "Send button for sending notice" +msgid "Send" +msgstr "أرسل" + #: lib/noticeform.php:160 msgid "Send a notice" msgstr "أرسل إشعارًا" @@ -5516,23 +5700,23 @@ msgstr "غ" msgid "at" msgstr "في" -#: lib/noticelist.php:558 +#: lib/noticelist.php:566 msgid "in context" msgstr "فى السياق" -#: lib/noticelist.php:583 +#: lib/noticelist.php:601 msgid "Repeated by" msgstr "متكرر من" -#: lib/noticelist.php:610 +#: lib/noticelist.php:628 msgid "Reply to this notice" msgstr "رُد على هذا الإشعار" -#: lib/noticelist.php:611 +#: lib/noticelist.php:629 msgid "Reply" msgstr "رُد" -#: lib/noticelist.php:655 +#: lib/noticelist.php:673 msgid "Notice repeated" msgstr "الإشعار مكرر" @@ -5580,6 +5764,10 @@ msgstr "الردود" msgid "Favorites" msgstr "المفضلات" +#: lib/personalgroupnav.php:115 +msgid "User" +msgstr "المستخدم" + #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "صندوق الوارد" @@ -5669,7 +5857,7 @@ msgstr "كرر هذا الإشعار؟" msgid "Repeat this notice" msgstr "كرر هذا الإشعار" -#: lib/router.php:665 +#: lib/router.php:668 msgid "No single user defined for single-user mode." msgstr "" @@ -5689,6 +5877,10 @@ msgstr "ابحث فى الموقع" msgid "Keyword(s)" msgstr "الكلمات المفتاحية" +#: lib/searchaction.php:127 +msgid "Search" +msgstr "ابحث" + #: lib/searchaction.php:162 msgid "Search help" msgstr "ابحث فى المساعدة" @@ -5740,6 +5932,15 @@ msgstr "الأشخاص المشتركون ب%s" msgid "Groups %s is a member of" msgstr "المجموعات التى %s عضو فيها" +#: lib/subgroupnav.php:105 +msgid "Invite" +msgstr "ادعُ" + +#: lib/subgroupnav.php:106 +#, php-format +msgid "Invite friends and colleagues to join you on %s" +msgstr "" + #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -5810,47 +6011,47 @@ msgstr "رسالة" msgid "Moderate" msgstr "" -#: lib/util.php:952 +#: lib/util.php:1013 msgid "a few seconds ago" msgstr "قبل لحظات قليلة" -#: lib/util.php:954 +#: lib/util.php:1015 msgid "about a minute ago" msgstr "قبل دقيقه تقريبًا" -#: lib/util.php:956 +#: lib/util.php:1017 #, php-format msgid "about %d minutes ago" msgstr "" -#: lib/util.php:958 +#: lib/util.php:1019 msgid "about an hour ago" msgstr "قبل ساعه تقريبًا" -#: lib/util.php:960 +#: lib/util.php:1021 #, php-format msgid "about %d hours ago" msgstr "" -#: lib/util.php:962 +#: lib/util.php:1023 msgid "about a day ago" msgstr "قبل يوم تقريبا" -#: lib/util.php:964 +#: lib/util.php:1025 #, php-format msgid "about %d days ago" msgstr "" -#: lib/util.php:966 +#: lib/util.php:1027 msgid "about a month ago" msgstr "قبل شهر تقريبًا" -#: lib/util.php:968 +#: lib/util.php:1029 #, php-format msgid "about %d months ago" msgstr "" -#: lib/util.php:970 +#: lib/util.php:1031 msgid "about a year ago" msgstr "قبل سنه تقريبًا" diff --git a/locale/bg/LC_MESSAGES/statusnet.po b/locale/bg/LC_MESSAGES/statusnet.po index 3cb1216285..abf1998d84 100644 --- a/locale/bg/LC_MESSAGES/statusnet.po +++ b/locale/bg/LC_MESSAGES/statusnet.po @@ -9,75 +9,82 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-02-24 23:49+0000\n" -"PO-Revision-Date: 2010-02-24 23:50:11+0000\n" +"POT-Creation-Date: 2010-03-02 21:02+0000\n" +"PO-Revision-Date: 2010-03-02 21:02:12+0000\n" "Language-Team: Bulgarian\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r62925); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: bg\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: actions/accessadminpanel.php:54 lib/adminpanelaction.php:326 +#. TRANS: Page title +#: actions/accessadminpanel.php:55 msgid "Access" msgstr "Достъп" -#: actions/accessadminpanel.php:65 +#. TRANS: Page notice +#: actions/accessadminpanel.php:67 msgid "Site access settings" msgstr "Настройки за достъп до сайта" -#: actions/accessadminpanel.php:158 +#. TRANS: Form legend for registration form. +#: actions/accessadminpanel.php:161 msgid "Registration" msgstr "Регистриране" -#: actions/accessadminpanel.php:161 -msgid "Private" -msgstr "Частен" - -#: actions/accessadminpanel.php:163 +#. TRANS: Checkbox instructions for admin setting "Private" +#: actions/accessadminpanel.php:165 msgid "Prohibit anonymous users (not logged in) from viewing site?" msgstr "" +#. TRANS: Checkbox label for prohibiting anonymous users from viewing site. #: actions/accessadminpanel.php:167 -msgid "Invite only" -msgstr "Само с покани" +#, fuzzy +msgctxt "LABEL" +msgid "Private" +msgstr "Частен" -#: actions/accessadminpanel.php:169 +#. TRANS: Checkbox instructions for admin setting "Invite only" +#: actions/accessadminpanel.php:174 msgid "Make registration invitation only." msgstr "Новите регистрации да са само с покани." -#: actions/accessadminpanel.php:173 -msgid "Closed" -msgstr "Затворен" +#. TRANS: Checkbox label for configuring site as invite only. +#: actions/accessadminpanel.php:176 +msgid "Invite only" +msgstr "Само с покани" -#: actions/accessadminpanel.php:175 +#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations) +#: actions/accessadminpanel.php:183 msgid "Disable new registrations." msgstr "Изключване на новите регистрации." -#: actions/accessadminpanel.php:189 actions/designadminpanel.php:586 -#: actions/emailsettings.php:195 actions/imsettings.php:163 -#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 -#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 -#: actions/siteadminpanel.php:336 actions/smssettings.php:181 -#: actions/subscriptions.php:208 actions/tagother.php:154 -#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 -#: lib/applicationeditform.php:334 lib/designsettings.php:256 -#: lib/groupeditform.php:202 -msgid "Save" -msgstr "Запазване" +#. TRANS: Checkbox label for disabling new user registrations. +#: actions/accessadminpanel.php:185 +msgid "Closed" +msgstr "Затворен" -#: actions/accessadminpanel.php:189 +#. TRANS: Title / tooltip for button to save access settings in site admin panel +#: actions/accessadminpanel.php:202 msgid "Save access settings" msgstr "Запазване настройките за достъп" -#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 -#: actions/showfavorites.php:137 actions/tag.php:51 +#: actions/accessadminpanel.php:203 +#, fuzzy +msgctxt "BUTTON" +msgid "Save" +msgstr "Запазване" + +#. TRANS: Server error when page not found (404) +#: actions/all.php:64 actions/public.php:98 actions/replies.php:93 +#: actions/showfavorites.php:138 actions/tag.php:52 msgid "No such page" msgstr "Няма такака страница." -#: actions/all.php:74 actions/allrss.php:68 +#: actions/all.php:75 actions/allrss.php:68 #: actions/apiaccountupdatedeliverydevice.php:113 #: actions/apiaccountupdateprofile.php:105 #: actions/apiaccountupdateprofilebackgroundimage.php:116 @@ -91,72 +98,82 @@ msgstr "Няма такака страница." #: actions/apitimelinehome.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/otp.php:76 -#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154 -#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 -#: actions/showfavorites.php:105 actions/userbyid.php:74 -#: actions/usergroups.php:91 actions/userrss.php:38 actions/xrds.php:71 -#: lib/command.php:163 lib/command.php:302 lib/command.php:355 -#: lib/command.php:401 lib/command.php:462 lib/command.php:518 -#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 +#: actions/hcard.php:67 actions/microsummary.php:62 actions/newmessage.php:116 +#: actions/otp.php:76 actions/remotesubscribe.php:145 +#: actions/remotesubscribe.php:154 actions/replies.php:73 +#: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/xrds.php:71 lib/command.php:163 lib/command.php:302 +#: lib/command.php:355 lib/command.php:401 lib/command.php:462 +#: lib/command.php:518 lib/galleryaction.php:59 lib/mailbox.php:82 +#: lib/profileaction.php:77 msgid "No such user." msgstr "Няма такъв потребител" -#: actions/all.php:84 +#. TRANS: Page title. %1$s is user nickname, %2$d is page number +#: actions/all.php:86 #, php-format msgid "%1$s and friends, page %2$d" msgstr "%1$s и приятели, страница %2$d" -#: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 +#. TRANS: Page title. %1$s is user nickname +#. TRANS: H1 text. %1$s is user nickname +#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" msgstr "%s и приятели" -#: actions/all.php:99 +#. TRANS: %1$s is user nickname +#: actions/all.php:103 #, php-format msgid "Feed for friends of %s (RSS 1.0)" msgstr "Емисия с приятелите на %s (RSS 1.0)" -#: actions/all.php:107 +#. TRANS: %1$s is user nickname +#: actions/all.php:112 #, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "Емисия с приятелите на %s (RSS 2.0)" -#: actions/all.php:115 +#. TRANS: %1$s is user nickname +#: actions/all.php:121 #, php-format msgid "Feed for friends of %s (Atom)" msgstr "Емисия с приятелите на %s (Atom)" -#: actions/all.php:127 +#. TRANS: %1$s is user nickname +#: actions/all.php:134 #, php-format msgid "" "This is the timeline for %s and friends but no one has posted anything yet." msgstr "" -#: actions/all.php:132 +#: actions/all.php:139 #, php-format msgid "" "Try subscribing to more people, [join a group](%%action.groups%%) or post " "something yourself." msgstr "" -#: actions/all.php:134 +#. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@" +#: actions/all.php:142 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) from his profile or [post something to " "his or her attention](%%%%action.newnotice%%%%?status_textarea=%3$s)." msgstr "" -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211 +#: actions/all.php:145 actions/replies.php:210 actions/showstream.php:211 #, 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/all.php:165 +#. TRANS: H1 text +#: actions/all.php:174 msgid "You and friends" msgstr "Вие и приятелите" @@ -174,20 +191,20 @@ msgstr "Бележки от %1$s и приятели в %2$s." #: actions/apiaccountverifycredentials.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:128 actions/apigroupcreate.php:136 +#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: actions/apigroupleave.php:141 actions/apigrouplist.php:132 #: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 #: actions/apigroupshow.php:115 actions/apihelptest.php:88 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 -#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184 +#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 #: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:207 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 msgid "API method not found." msgstr "Не е открит методът в API." @@ -219,8 +236,9 @@ msgstr "Грешка при обновяване на потребителя." #: actions/apiaccountupdateprofilebackgroundimage.php:194 #: actions/apiaccountupdateprofilecolors.php:185 #: 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 +#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 +#: actions/replies.php:80 actions/usergroups.php:98 lib/galleryaction.php:66 +#: lib/profileaction.php:84 msgid "User has no profile." msgstr "Потребителят няма профил." @@ -244,7 +262,7 @@ msgstr "" #: actions/apiaccountupdateprofilebackgroundimage.php:146 #: actions/apiaccountupdateprofilecolors.php:164 #: actions/apiaccountupdateprofilecolors.php:174 -#: actions/groupdesignsettings.php:287 actions/groupdesignsettings.php:297 +#: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300 #: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 #: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 #, fuzzy @@ -362,7 +380,7 @@ msgstr "Грешка при изтегляне на общия поток" msgid "Could not find target user." msgstr "Целевият потребител не беше открит." -#: actions/apigroupcreate.php:164 actions/editgroup.php:182 +#: actions/apigroupcreate.php:166 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:215 #: actions/register.php:205 msgid "Nickname must have only lowercase letters and numbers and no spaces." @@ -370,62 +388,62 @@ msgstr "" "Псевдонимът може да съдържа само малки букви, числа и никакво разстояние " "между тях." -#: actions/apigroupcreate.php:173 actions/editgroup.php:186 +#: actions/apigroupcreate.php:175 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:238 #: actions/register.php:208 msgid "Nickname already in use. Try another one." msgstr "Опитайте друг псевдоним, този вече е зает." -#: actions/apigroupcreate.php:180 actions/editgroup.php:189 +#: actions/apigroupcreate.php:182 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:218 #: actions/register.php:210 msgid "Not a valid nickname." msgstr "Неправилен псевдоним." -#: actions/apigroupcreate.php:196 actions/editapplication.php:215 -#: actions/editgroup.php:195 actions/newapplication.php:203 +#: actions/apigroupcreate.php:198 actions/editapplication.php:215 +#: actions/editgroup.php:199 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:217 msgid "Homepage is not a valid URL." msgstr "Адресът на личната страница не е правилен URL." -#: actions/apigroupcreate.php:205 actions/editgroup.php:198 +#: actions/apigroupcreate.php:207 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:225 #: actions/register.php:220 msgid "Full name is too long (max 255 chars)." msgstr "Пълното име е твърде дълго (макс. 255 знака)" -#: actions/apigroupcreate.php:213 actions/editapplication.php:190 +#: actions/apigroupcreate.php:215 actions/editapplication.php:190 #: actions/newapplication.php:172 #, php-format msgid "Description is too long (max %d chars)." msgstr "Описанието е твърде дълго (до %d символа)." -#: actions/apigroupcreate.php:224 actions/editgroup.php:204 +#: actions/apigroupcreate.php:226 actions/editgroup.php:208 #: actions/newgroup.php:148 actions/profilesettings.php:232 #: actions/register.php:227 msgid "Location is too long (max 255 chars)." msgstr "Името на местоположението е твърде дълго (макс. 255 знака)." -#: actions/apigroupcreate.php:243 actions/editgroup.php:215 +#: actions/apigroupcreate.php:245 actions/editgroup.php:219 #: actions/newgroup.php:159 #, php-format msgid "Too many aliases! Maximum %d." msgstr "" -#: actions/apigroupcreate.php:264 actions/editgroup.php:224 +#: actions/apigroupcreate.php:266 actions/editgroup.php:228 #: actions/newgroup.php:168 #, php-format msgid "Invalid alias: \"%s\"" msgstr "Неправилен псевдоним: \"%s\"" -#: actions/apigroupcreate.php:273 actions/editgroup.php:228 +#: actions/apigroupcreate.php:275 actions/editgroup.php:232 #: actions/newgroup.php:172 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "Псевдонимът \"%s\" вече е зает. Опитайте друг." -#: actions/apigroupcreate.php:286 actions/editgroup.php:234 +#: actions/apigroupcreate.php:288 actions/editgroup.php:238 #: actions/newgroup.php:178 msgid "Alias can't be the same as nickname." msgstr "" @@ -436,15 +454,15 @@ msgstr "" msgid "Group not found!" msgstr "Групата не е открита." -#: actions/apigroupjoin.php:110 actions/joingroup.php:90 +#: actions/apigroupjoin.php:110 actions/joingroup.php:100 msgid "You are already a member of that group." msgstr "Вече членувате в тази група." -#: actions/apigroupjoin.php:119 actions/joingroup.php:95 lib/command.php:221 +#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:221 msgid "You have been blocked from that group by the admin." msgstr "" -#: actions/apigroupjoin.php:138 actions/joingroup.php:124 +#: actions/apigroupjoin.php:138 actions/joingroup.php:134 #, fuzzy, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Грешка при проследяване — потребителят не е намерен." @@ -453,7 +471,7 @@ msgstr "Грешка при проследяване — потребителя msgid "You are not a member of this group." msgstr "Не членувате в тази група." -#: actions/apigroupleave.php:124 actions/leavegroup.php:119 +#: actions/apigroupleave.php:124 actions/leavegroup.php:129 #, fuzzy, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "Грешка при проследяване — потребителят не е намерен." @@ -485,7 +503,7 @@ msgstr "Неправилен размер." #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 #: actions/deletenotice.php:157 actions/disfavor.php:74 #: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54 -#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupblock.php:66 actions/grouplogo.php:312 #: actions/groupunblock.php:66 actions/imsettings.php:206 #: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 @@ -529,7 +547,7 @@ msgstr "" #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:103 actions/editapplication.php:139 -#: actions/emailsettings.php:256 actions/grouplogo.php:319 +#: actions/emailsettings.php:256 actions/grouplogo.php:322 #: actions/imsettings.php:220 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 #: actions/smssettings.php:248 lib/designsettings.php:304 @@ -552,13 +570,13 @@ msgid "" "give access to your %4$s account to third parties you trust." msgstr "" -#: actions/apioauthauthorize.php:310 lib/action.php:441 +#: actions/apioauthauthorize.php:310 msgid "Account" msgstr "Сметка" #: actions/apioauthauthorize.php:313 actions/login.php:230 #: actions/profilesettings.php:106 actions/register.php:424 -#: actions/showgroup.php:236 actions/tagother.php:94 +#: actions/showgroup.php:244 actions/tagother.php:94 #: actions/userauthorization.php:145 lib/groupeditform.php:152 #: lib/userprofile.php:131 msgid "Nickname" @@ -641,12 +659,12 @@ msgid "%1$s updates favorited by %2$s / %2$s." msgstr "%s бележки отбелязани като любими от %s / %s." #: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:131 actions/userrss.php:90 +#: actions/grouprss.php:138 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "Поток на %s" -#: actions/apitimelinegroup.php:114 actions/apitimelineuser.php:126 +#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 #: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" @@ -682,7 +700,7 @@ msgstr "Повторено за %s" msgid "Repeats of %s" msgstr "Повторения на %s" -#: actions/apitimelinetag.php:102 actions/tag.php:66 +#: actions/apitimelinetag.php:102 actions/tag.php:67 #, php-format msgid "Notices tagged with %s" msgstr "Бележки с етикет %s" @@ -704,8 +722,7 @@ msgstr "Няма такъв документ." #: actions/avatarbynickname.php:59 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/leavegroup.php:76 -#: actions/showgroup.php:121 +#: actions/grouprss.php:91 actions/showgroup.php:121 msgid "No nickname." msgstr "Няма псевдоним." @@ -717,7 +734,7 @@ msgstr "Няма размер." msgid "Invalid size." msgstr "Неправилен размер." -#: actions/avatarsettings.php:67 actions/showgroup.php:221 +#: actions/avatarsettings.php:67 actions/showgroup.php:229 #: lib/accountsettingsaction.php:112 msgid "Avatar" msgstr "Аватар" @@ -735,30 +752,30 @@ msgid "User without matching profile" msgstr "Потребител без съответстващ профил" #: actions/avatarsettings.php:119 actions/avatarsettings.php:197 -#: actions/grouplogo.php:251 +#: actions/grouplogo.php:254 msgid "Avatar settings" msgstr "Настройки за аватар" #: actions/avatarsettings.php:127 actions/avatarsettings.php:205 -#: actions/grouplogo.php:199 actions/grouplogo.php:259 +#: actions/grouplogo.php:202 actions/grouplogo.php:262 msgid "Original" msgstr "Оригинал" #: actions/avatarsettings.php:142 actions/avatarsettings.php:217 -#: actions/grouplogo.php:210 actions/grouplogo.php:271 +#: actions/grouplogo.php:213 actions/grouplogo.php:274 msgid "Preview" msgstr "Преглед" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:637 +#: lib/deleteuserform.php:66 lib/noticelist.php:655 msgid "Delete" msgstr "Изтриване" -#: actions/avatarsettings.php:166 actions/grouplogo.php:233 +#: actions/avatarsettings.php:166 actions/grouplogo.php:236 msgid "Upload" msgstr "Качване" -#: actions/avatarsettings.php:231 actions/grouplogo.php:286 +#: actions/avatarsettings.php:231 actions/grouplogo.php:289 msgid "Crop" msgstr "Изрязване" @@ -766,7 +783,7 @@ msgstr "Изрязване" msgid "Pick a square area of the image to be your avatar" msgstr "Изберете квадратна област от изображението за аватар" -#: actions/avatarsettings.php:343 actions/grouplogo.php:377 +#: actions/avatarsettings.php:343 actions/grouplogo.php:380 msgid "Lost our file data." msgstr "" @@ -798,22 +815,22 @@ msgid "" msgstr "" #: actions/block.php:143 actions/deleteapplication.php:153 -#: actions/deletenotice.php:145 actions/deleteuser.php:147 +#: actions/deletenotice.php:145 actions/deleteuser.php:150 #: actions/groupblock.php:178 msgid "No" msgstr "Не" -#: actions/block.php:143 actions/deleteuser.php:147 +#: actions/block.php:143 actions/deleteuser.php:150 msgid "Do not block this user" msgstr "Да не се блокира този потребител" #: actions/block.php:144 actions/deleteapplication.php:158 -#: actions/deletenotice.php:146 actions/deleteuser.php:148 +#: actions/deletenotice.php:146 actions/deleteuser.php:151 #: actions/groupblock.php:179 lib/repeatform.php:132 msgid "Yes" msgstr "Да" -#: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:355 lib/blockform.php:80 msgid "Block this user" msgstr "Блокиране на потребителя" @@ -821,40 +838,44 @@ msgstr "Блокиране на потребителя" msgid "Failed to save block information." msgstr "Грешка при записване данните за блокирането." -#: actions/blockedfromgroup.php:80 actions/editgroup.php:96 -#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/groupblock.php:86 -#: actions/groupbyid.php:83 actions/groupdesignsettings.php:97 -#: actions/grouplogo.php:99 actions/groupmembers.php:83 -#: actions/grouprss.php:98 actions/groupunblock.php:86 -#: actions/joingroup.php:83 actions/leavegroup.php:83 actions/makeadmin.php:86 -#: actions/showgroup.php:137 lib/command.php:212 lib/command.php:260 +#: actions/blockedfromgroup.php:80 actions/blockedfromgroup.php:87 +#: actions/editgroup.php:100 actions/foafgroup.php:44 actions/foafgroup.php:62 +#: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:100 actions/grouplogo.php:102 +#: actions/groupmembers.php:83 actions/groupmembers.php:90 +#: actions/grouprss.php:98 actions/grouprss.php:105 +#: actions/groupunblock.php:86 actions/joingroup.php:82 +#: actions/joingroup.php:93 actions/leavegroup.php:82 +#: actions/leavegroup.php:93 actions/makeadmin.php:86 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:212 +#: lib/command.php:260 msgid "No such group." msgstr "Няма такава група" -#: actions/blockedfromgroup.php:90 +#: actions/blockedfromgroup.php:97 #, php-format msgid "%s blocked profiles" msgstr "Блокирани за %s" -#: actions/blockedfromgroup.php:93 +#: actions/blockedfromgroup.php:100 #, fuzzy, php-format msgid "%1$s blocked profiles, page %2$d" msgstr "Блокирани за %s, страница %d" -#: actions/blockedfromgroup.php:108 +#: actions/blockedfromgroup.php:115 #, fuzzy msgid "A list of the users blocked from joining this group." msgstr "Списък с потребителите в тази група." -#: actions/blockedfromgroup.php:281 +#: actions/blockedfromgroup.php:288 msgid "Unblock user from group" msgstr "Разблокиране на потребителя от групата" -#: actions/blockedfromgroup.php:313 lib/unblockform.php:69 +#: actions/blockedfromgroup.php:320 lib/unblockform.php:69 msgid "Unblock" msgstr "Разблокиране" -#: actions/blockedfromgroup.php:313 lib/unblockform.php:80 +#: actions/blockedfromgroup.php:320 lib/unblockform.php:80 msgid "Unblock this user" msgstr "Разблокиране на този потребител" @@ -933,7 +954,7 @@ msgstr "Не членувате в тази група." #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1197 +#: lib/action.php:1228 msgid "There was a problem with your session token." msgstr "Имаше проблем със сесията ви в сайта." @@ -959,12 +980,13 @@ msgstr "Да не се изтрива бележката" msgid "Delete this application" msgstr "Изтриване на бележката" +#. TRANS: Client error message #: 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:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 -#: lib/adminpanelaction.php:72 lib/profileformaction.php:63 +#: lib/adminpanelaction.php:73 lib/profileformaction.php:63 #: lib/settingsaction.php:72 msgid "Not logged in." msgstr "Не сте влезли в системата." @@ -991,7 +1013,7 @@ msgstr "Наистина ли искате да изтриете тази бел msgid "Do not delete this notice" msgstr "Да не се изтрива бележката" -#: actions/deletenotice.php:146 lib/noticelist.php:637 +#: actions/deletenotice.php:146 lib/noticelist.php:655 msgid "Delete this notice" msgstr "Изтриване на бележката" @@ -1007,18 +1029,18 @@ msgstr "Може да изтривате само локални потреби msgid "Delete user" msgstr "Изтриване на потребител" -#: actions/deleteuser.php:135 +#: actions/deleteuser.php:136 msgid "" "Are you sure you want to delete this user? This will clear all data about " "the user from the database, without a backup." msgstr "" -#: actions/deleteuser.php:148 lib/deleteuserform.php:77 +#: actions/deleteuser.php:151 lib/deleteuserform.php:77 msgid "Delete this user" msgstr "Изтриване на този потребител" #: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 -#: lib/adminpanelaction.php:316 lib/groupnav.php:119 +#: lib/groupnav.php:119 msgid "Design" msgstr "" @@ -1124,6 +1146,17 @@ msgstr "" msgid "Reset back to default" msgstr "" +#: actions/designadminpanel.php:586 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/tagother.php:154 actions/useradminpanel.php:294 +#: lib/applicationeditform.php:333 lib/applicationeditform.php:334 +#: lib/designsettings.php:256 lib/groupeditform.php:202 +msgid "Save" +msgstr "Запазване" + #: actions/designadminpanel.php:587 lib/designsettings.php:257 msgid "Save design" msgstr "" @@ -1226,31 +1259,31 @@ msgstr "Редактиране на групата %s" msgid "You must be logged in to create a group." msgstr "За да създавате група, трябва да сте влезли." -#: actions/editgroup.php:103 actions/editgroup.php:168 -#: actions/groupdesignsettings.php:104 actions/grouplogo.php:106 +#: actions/editgroup.php:107 actions/editgroup.php:172 +#: actions/groupdesignsettings.php:107 actions/grouplogo.php:109 #, fuzzy msgid "You must be an admin to edit the group." msgstr "За да редактирате групата, трябва да сте й администратор." -#: actions/editgroup.php:154 +#: actions/editgroup.php:158 msgid "Use this form to edit the group." msgstr "" -#: actions/editgroup.php:201 actions/newgroup.php:145 +#: actions/editgroup.php:205 actions/newgroup.php:145 #, php-format msgid "description is too long (max %d chars)." msgstr "Описанието е твърде дълго (до %d символа)." -#: actions/editgroup.php:253 +#: actions/editgroup.php:258 msgid "Could not update group." msgstr "Грешка при обновяване на групата." -#: actions/editgroup.php:259 classes/User_group.php:433 +#: actions/editgroup.php:264 classes/User_group.php:478 #, fuzzy msgid "Could not create aliases." msgstr "Грешка при отбелязване като любима." -#: actions/editgroup.php:269 +#: actions/editgroup.php:280 msgid "Options saved." msgstr "Настройките са запазени." @@ -1591,7 +1624,7 @@ msgstr "Потребителят вече е блокиран за групат msgid "User is not a member of group." msgstr "Потребителят не членува в групата." -#: actions/groupblock.php:136 actions/groupmembers.php:316 +#: actions/groupblock.php:136 actions/groupmembers.php:323 #, fuzzy msgid "Block user from group" msgstr "Блокиране на потребителя" @@ -1626,92 +1659,92 @@ msgstr "Липсва ID." msgid "You must be logged in to edit a group." msgstr "За да редактирате група, трябва да сте влезли." -#: actions/groupdesignsettings.php:141 +#: actions/groupdesignsettings.php:144 #, fuzzy msgid "Group design" msgstr "Групи" -#: actions/groupdesignsettings.php:152 +#: actions/groupdesignsettings.php:155 msgid "" "Customize the way your group looks with a background image and a colour " "palette of your choice." msgstr "" -#: actions/groupdesignsettings.php:263 actions/userdesignsettings.php:186 +#: actions/groupdesignsettings.php:266 actions/userdesignsettings.php:186 #: lib/designsettings.php:391 lib/designsettings.php:413 #, fuzzy msgid "Couldn't update your design." msgstr "Грешка при обновяване на потребителя." -#: actions/groupdesignsettings.php:308 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231 #, fuzzy msgid "Design preferences saved." msgstr "Настройките са запазени." -#: actions/grouplogo.php:139 actions/grouplogo.php:192 +#: actions/grouplogo.php:142 actions/grouplogo.php:195 msgid "Group logo" msgstr "Лого на групата" -#: actions/grouplogo.php:150 +#: actions/grouplogo.php:153 #, fuzzy, php-format msgid "" "You can upload a logo image for your group. The maximum file size is %s." msgstr "Може да качите лого за групата ви." -#: actions/grouplogo.php:178 +#: actions/grouplogo.php:181 #, fuzzy msgid "User without matching profile." msgstr "Потребител без съответстващ профил" -#: actions/grouplogo.php:362 +#: actions/grouplogo.php:365 #, fuzzy msgid "Pick a square area of the image to be the logo." msgstr "Изберете квадратна област от изображението за аватар" -#: actions/grouplogo.php:396 +#: actions/grouplogo.php:399 msgid "Logo updated." msgstr "Лотого е обновено." -#: actions/grouplogo.php:398 +#: actions/grouplogo.php:401 msgid "Failed updating logo." msgstr "Неуспешно обновяване на логото." -#: actions/groupmembers.php:93 lib/groupnav.php:92 +#: actions/groupmembers.php:100 lib/groupnav.php:92 #, php-format msgid "%s group members" msgstr "Членове на групата %s" -#: actions/groupmembers.php:96 +#: actions/groupmembers.php:103 #, fuzzy, php-format msgid "%1$s group members, page %2$d" msgstr "Членове на групата %s, страница %d" -#: actions/groupmembers.php:111 +#: actions/groupmembers.php:118 msgid "A list of the users in this group." msgstr "Списък с потребителите в тази група." -#: actions/groupmembers.php:175 lib/action.php:448 lib/groupnav.php:107 +#: actions/groupmembers.php:182 lib/groupnav.php:107 msgid "Admin" msgstr "Настройки" -#: actions/groupmembers.php:348 lib/blockform.php:69 +#: actions/groupmembers.php:355 lib/blockform.php:69 msgid "Block" msgstr "Блокиране" -#: actions/groupmembers.php:443 +#: actions/groupmembers.php:450 #, fuzzy msgid "Make user an admin of the group" msgstr "За да редактирате групата, трябва да сте й администратор." -#: actions/groupmembers.php:475 +#: actions/groupmembers.php:482 msgid "Make Admin" msgstr "" -#: actions/groupmembers.php:475 +#: actions/groupmembers.php:482 msgid "Make this user an admin" msgstr "" -#: actions/grouprss.php:133 +#: actions/grouprss.php:140 #, fuzzy, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Бележки от %1$s в %2$s." @@ -1966,16 +1999,19 @@ msgstr "Лично съобщение" msgid "Optionally add a personal message to the invitation." msgstr "Може да добавите и лично съобщение към поканата." -#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:236 +#. TRANS: Send button for inviting friends +#: actions/invite.php:198 +#, fuzzy +msgctxt "BUTTON" msgid "Send" msgstr "Прати" -#: actions/invite.php:226 +#: actions/invite.php:227 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "%1$s ви кани да ползвате заедно %2$s" -#: actions/invite.php:228 +#: actions/invite.php:229 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -2036,7 +2072,12 @@ msgstr "" msgid "You must be logged in to join a group." msgstr "За да се присъедините към група, трябва да сте влезли." -#: actions/joingroup.php:131 +#: actions/joingroup.php:88 actions/leavegroup.php:88 +#, fuzzy +msgid "No nickname or ID." +msgstr "Няма псевдоним." + +#: actions/joingroup.php:141 #, fuzzy, php-format msgid "%1$s joined group %2$s" msgstr "%s се присъедини към групата %s" @@ -2045,11 +2086,11 @@ msgstr "%s се присъедини към групата %s" msgid "You must be logged in to leave a group." msgstr "За напуснете група, трябва да сте влезли." -#: actions/leavegroup.php:90 lib/command.php:265 +#: actions/leavegroup.php:100 lib/command.php:265 msgid "You are not a member of that group." msgstr "Не членувате в тази група." -#: actions/leavegroup.php:127 +#: actions/leavegroup.php:137 #, php-format msgid "%1$s left group %2$s" msgstr "%1$s напусна групата %2$s" @@ -2067,8 +2108,7 @@ msgstr "Грешно име или парола." msgid "Error setting user. You are probably not authorized." msgstr "Забранено." -#: actions/login.php:188 actions/login.php:241 lib/action.php:466 -#: lib/logingroupnav.php:79 +#: actions/login.php:188 actions/login.php:241 lib/logingroupnav.php:79 msgid "Login" msgstr "Вход" @@ -2322,8 +2362,8 @@ msgstr "вид съдържание " msgid "Only " msgstr "Само " -#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 -#: lib/api.php:1068 lib/api.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 +#: lib/apiaction.php:1068 lib/apiaction.php:1177 msgid "Not a supported data format." msgstr "Неподдържан формат на данните" @@ -2469,7 +2509,7 @@ msgstr "Грешка при запазване на новата парола." msgid "Password saved." msgstr "Паролата е записана." -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:331 +#: actions/pathsadminpanel.php:59 msgid "Paths" msgstr "Пътища" @@ -2502,7 +2542,6 @@ msgid "Invalid SSL server. The maximum length is 255 characters." msgstr "" #: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58 -#: lib/adminpanelaction.php:311 msgid "Site" msgstr "Сайт" @@ -2672,7 +2711,7 @@ msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "От 1 до 64 малки букви или цифри, без пунктоация и интервали" #: actions/profilesettings.php:111 actions/register.php:448 -#: actions/showgroup.php:247 actions/tagother.php:104 +#: actions/showgroup.php:255 actions/tagother.php:104 #: lib/groupeditform.php:157 lib/userprofile.php:149 msgid "Full name" msgstr "Пълно име" @@ -2700,7 +2739,7 @@ msgid "Bio" msgstr "За мен" #: actions/profilesettings.php:132 actions/register.php:471 -#: actions/showgroup.php:256 actions/tagother.php:112 +#: actions/showgroup.php:264 actions/tagother.php:112 #: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:164 msgid "Location" @@ -2783,7 +2822,8 @@ msgstr "Грешка при запазване на профила." msgid "Couldn't save tags." msgstr "Грешка при запазване етикетите." -#: actions/profilesettings.php:391 lib/adminpanelaction.php:137 +#. TRANS: Message after successful saving of administrative settings. +#: actions/profilesettings.php:391 lib/adminpanelaction.php:141 msgid "Settings saved." msgstr "Настройките са запазени." @@ -2796,45 +2836,45 @@ msgstr "" msgid "Could not retrieve public stream." msgstr "Грешка при изтегляне на общия поток" -#: actions/public.php:129 +#: actions/public.php:130 #, php-format msgid "Public timeline, page %d" msgstr "Общ поток, страница %d" -#: actions/public.php:131 lib/publicgroupnav.php:79 +#: actions/public.php:132 lib/publicgroupnav.php:79 msgid "Public timeline" msgstr "Общ поток" -#: actions/public.php:159 +#: actions/public.php:160 msgid "Public Stream Feed (RSS 1.0)" msgstr "Емисия на общия поток (RSS 1.0)" -#: actions/public.php:163 +#: actions/public.php:164 msgid "Public Stream Feed (RSS 2.0)" msgstr "Емисия на общия поток (RSS 2.0)" -#: actions/public.php:167 +#: actions/public.php:168 msgid "Public Stream Feed (Atom)" msgstr "Емисия на общия поток (Atom)" -#: actions/public.php:187 +#: actions/public.php:188 #, php-format msgid "" "This is the public timeline for %%site.name%% but no one has posted anything " "yet." msgstr "" -#: actions/public.php:190 +#: actions/public.php:191 msgid "Be the first to post!" msgstr "" -#: actions/public.php:194 +#: actions/public.php:195 #, php-format msgid "" "Why not [register an account](%%action.register%%) and be the first to post!" msgstr "" -#: actions/public.php:241 +#: actions/public.php:242 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2843,7 +2883,7 @@ msgid "" "friends, family, and colleagues! ([Read more](%%doc.help%%))" msgstr "" -#: actions/public.php:246 +#: actions/public.php:247 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -3016,8 +3056,7 @@ msgstr "Грешка в кода за потвърждение." msgid "Registration successful" msgstr "Записването е успешно." -#: actions/register.php:114 actions/register.php:503 lib/action.php:463 -#: lib/logingroupnav.php:85 +#: actions/register.php:114 actions/register.php:503 lib/logingroupnav.php:85 msgid "Register" msgstr "Регистриране" @@ -3201,7 +3240,7 @@ msgstr "Не можете да повтаряте собствена бележ msgid "You already repeated that notice." msgstr "Вече сте повторили тази бележка." -#: actions/repeat.php:114 lib/noticelist.php:656 +#: actions/repeat.php:114 lib/noticelist.php:674 msgid "Repeated" msgstr "Повторено" @@ -3209,47 +3248,47 @@ msgstr "Повторено" msgid "Repeated!" msgstr "Повторено!" -#: actions/replies.php:125 actions/repliesrss.php:68 +#: actions/replies.php:126 actions/repliesrss.php:68 #: lib/personalgroupnav.php:105 #, php-format msgid "Replies to %s" msgstr "Отговори на %s" -#: actions/replies.php:127 +#: actions/replies.php:128 #, fuzzy, php-format msgid "Replies to %1$s, page %2$d" msgstr "Отговори до %1$s в %2$s!" -#: actions/replies.php:144 +#: actions/replies.php:145 #, php-format msgid "Replies feed for %s (RSS 1.0)" msgstr "Емисия с отговори на %s (RSS 1.0)" -#: actions/replies.php:151 +#: actions/replies.php:152 #, php-format msgid "Replies feed for %s (RSS 2.0)" msgstr "Емисия с отговори на %s (RSS 2.0)" -#: actions/replies.php:158 +#: actions/replies.php:159 #, php-format msgid "Replies feed for %s (Atom)" msgstr "Емисия с отговори на %s (Atom)" -#: actions/replies.php:198 +#: actions/replies.php:199 #, php-format msgid "" "This is the timeline showing replies to %1$s but %2$s hasn't received a " "notice to his attention yet." msgstr "" -#: actions/replies.php:203 +#: actions/replies.php:204 #, php-format msgid "" "You can engage other users in a conversation, subscribe to more people or " "[join groups](%%action.groups%%)." msgstr "" -#: actions/replies.php:205 +#: actions/replies.php:206 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) or [post something to his or her " @@ -3276,7 +3315,6 @@ msgid "User is already sandboxed." msgstr "Потребителят ви е блокирал." #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:336 msgid "Sessions" msgstr "Сесии" @@ -3302,7 +3340,7 @@ msgid "Turn on debugging output for sessions." msgstr "" #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/useradminpanel.php:293 +#: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "Запазване настройките на сайта" @@ -3334,7 +3372,7 @@ msgstr "Организация" msgid "Description" msgstr "Описание" -#: actions/showapplication.php:192 actions/showgroup.php:429 +#: actions/showapplication.php:192 actions/showgroup.php:437 #: lib/profileaction.php:174 msgid "Statistics" msgstr "Статистики" @@ -3397,35 +3435,35 @@ msgstr "Любими бележки на %1$s, страница %2$d" msgid "Could not retrieve favorite notices." msgstr "Грешка при изтегляне на любимите бележки" -#: actions/showfavorites.php:170 +#: actions/showfavorites.php:171 #, php-format msgid "Feed for favorites of %s (RSS 1.0)" msgstr "Емисия с приятелите на %s" -#: actions/showfavorites.php:177 +#: actions/showfavorites.php:178 #, php-format msgid "Feed for favorites of %s (RSS 2.0)" msgstr "Емисия с приятелите на %s" -#: actions/showfavorites.php:184 +#: actions/showfavorites.php:185 #, php-format msgid "Feed for favorites of %s (Atom)" msgstr "Емисия с приятелите на %s" -#: actions/showfavorites.php:205 +#: actions/showfavorites.php:206 msgid "" "You haven't chosen any favorite notices yet. Click the fave button on " "notices you like to bookmark them for later or shed a spotlight on them." msgstr "" -#: actions/showfavorites.php:207 +#: actions/showfavorites.php:208 #, 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:211 +#: actions/showfavorites.php:212 #, php-format msgid "" "%s hasn't added any notices to his favorites yet. Why not [register an " @@ -3433,7 +3471,7 @@ msgid "" "would add to their favorites :)" msgstr "" -#: actions/showfavorites.php:242 +#: actions/showfavorites.php:243 msgid "This is a way to share what you like." msgstr "Така можете да споделите какво харесвате." @@ -3447,67 +3485,67 @@ msgstr "Група %s" msgid "%1$s group, page %2$d" msgstr "Членове на групата %s, страница %d" -#: actions/showgroup.php:218 +#: actions/showgroup.php:226 msgid "Group profile" msgstr "Профил на групата" -#: actions/showgroup.php:263 actions/tagother.php:118 +#: actions/showgroup.php:271 actions/tagother.php:118 #: actions/userauthorization.php:175 lib/userprofile.php:177 msgid "URL" msgstr "URL" -#: actions/showgroup.php:274 actions/tagother.php:128 +#: actions/showgroup.php:282 actions/tagother.php:128 #: actions/userauthorization.php:187 lib/userprofile.php:194 msgid "Note" msgstr "Бележка" -#: actions/showgroup.php:284 lib/groupeditform.php:184 +#: actions/showgroup.php:292 lib/groupeditform.php:184 msgid "Aliases" msgstr "Псевдоними" -#: actions/showgroup.php:293 +#: actions/showgroup.php:301 msgid "Group actions" msgstr "" -#: actions/showgroup.php:328 +#: actions/showgroup.php:336 #, fuzzy, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Емисия с бележки на %s" -#: actions/showgroup.php:334 +#: actions/showgroup.php:342 #, fuzzy, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Емисия с бележки на %s" -#: actions/showgroup.php:340 +#: actions/showgroup.php:348 #, fuzzy, php-format msgid "Notice feed for %s group (Atom)" msgstr "Емисия с бележки на %s" -#: actions/showgroup.php:345 +#: actions/showgroup.php:353 #, php-format msgid "FOAF for %s group" msgstr "Изходяща кутия за %s" -#: actions/showgroup.php:381 actions/showgroup.php:438 lib/groupnav.php:91 +#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 msgid "Members" msgstr "Членове" -#: actions/showgroup.php:386 lib/profileaction.php:117 +#: actions/showgroup.php:394 lib/profileaction.php:117 #: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "" -#: actions/showgroup.php:392 +#: actions/showgroup.php:400 msgid "All members" msgstr "Всички членове" -#: actions/showgroup.php:432 +#: actions/showgroup.php:440 msgid "Created" msgstr "Създадена на" -#: actions/showgroup.php:448 +#: actions/showgroup.php:456 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3517,7 +3555,7 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showgroup.php:454 +#: actions/showgroup.php:462 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3526,7 +3564,7 @@ msgid "" "their life and interests. " msgstr "" -#: actions/showgroup.php:482 +#: actions/showgroup.php:490 msgid "Admins" msgstr "Администратори" @@ -3987,22 +4025,22 @@ msgstr "Jabber" msgid "SMS" msgstr "SMS" -#: actions/tag.php:68 +#: actions/tag.php:69 #, fuzzy, php-format msgid "Notices tagged with %1$s, page %2$d" msgstr "Бележки с етикет %s, страница %d" -#: actions/tag.php:86 +#: actions/tag.php:87 #, fuzzy, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Емисия с бележки на %s" -#: actions/tag.php:92 +#: actions/tag.php:93 #, fuzzy, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Емисия с бележки на %s" -#: actions/tag.php:98 +#: actions/tag.php:99 #, fuzzy, php-format msgid "Notice feed for tag %s (Atom)" msgstr "Емисия с бележки на %s" @@ -4054,7 +4092,7 @@ msgstr "" msgid "No such tag." msgstr "Няма такъв етикет." -#: actions/twitapitrends.php:87 +#: actions/twitapitrends.php:85 msgid "API method under construction." msgstr "Методът в API все още се разработва." @@ -4087,74 +4125,76 @@ msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" -#: actions/useradminpanel.php:58 lib/adminpanelaction.php:321 -#: lib/personalgroupnav.php:115 +#. TRANS: User admin panel title +#: actions/useradminpanel.php:59 +#, fuzzy +msgctxt "TITLE" msgid "User" msgstr "Потребител" -#: actions/useradminpanel.php:69 +#: actions/useradminpanel.php:70 msgid "User settings for this StatusNet site." msgstr "" -#: actions/useradminpanel.php:148 +#: actions/useradminpanel.php:149 msgid "Invalid bio limit. Must be numeric." msgstr "" -#: actions/useradminpanel.php:154 +#: actions/useradminpanel.php:155 msgid "Invalid welcome text. Max length is 255 characters." msgstr "" -#: actions/useradminpanel.php:164 +#: actions/useradminpanel.php:165 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" -#: actions/useradminpanel.php:217 lib/accountsettingsaction.php:108 +#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Профил" -#: actions/useradminpanel.php:221 +#: actions/useradminpanel.php:222 msgid "Bio Limit" msgstr "" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:223 msgid "Maximum length of a profile bio in characters." msgstr "" -#: actions/useradminpanel.php:230 +#: actions/useradminpanel.php:231 msgid "New users" msgstr "Нови потребители" -#: actions/useradminpanel.php:234 +#: actions/useradminpanel.php:235 msgid "New user welcome" msgstr "" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:236 msgid "Welcome text for new users (Max 255 chars)." msgstr "" -#: actions/useradminpanel.php:240 +#: actions/useradminpanel.php:241 #, fuzzy msgid "Default subscription" msgstr "Всички абонаменти" -#: actions/useradminpanel.php:241 +#: actions/useradminpanel.php:242 #, fuzzy msgid "Automatically subscribe new users to this user." msgstr "" "Автоматично абониране за всеки, който се абонира за мен (подходящо за " "ботове)." -#: actions/useradminpanel.php:250 +#: actions/useradminpanel.php:251 msgid "Invitations" msgstr "Покани" -#: actions/useradminpanel.php:255 +#: actions/useradminpanel.php:256 msgid "Invitations enabled" msgstr "Поканите са включени" -#: actions/useradminpanel.php:257 +#: actions/useradminpanel.php:258 msgid "Whether to allow users to invite new users." msgstr "" @@ -4338,7 +4378,7 @@ msgstr "" msgid "Plugins" msgstr "Приставки" -#: actions/version.php:196 lib/action.php:747 +#: actions/version.php:196 lib/action.php:778 msgid "Version" msgstr "Версия" @@ -4378,6 +4418,11 @@ msgstr "Грешка при обновяване на групата." msgid "Group leave failed." msgstr "Профил на групата" +#: classes/Local_group.php:41 +#, fuzzy +msgid "Could not update local group." +msgstr "Грешка при обновяване на групата." + #: classes/Login_token.php:76 #, fuzzy, php-format msgid "Could not create login token for %s" @@ -4396,28 +4441,28 @@ msgstr "Грешка при вмъкване на съобщението." msgid "Could not update message with new URI." msgstr "Грешка при обновяване на бележката с нов URL-адрес." -#: classes/Notice.php:157 +#: classes/Notice.php:172 #, php-format msgid "DB error inserting hashtag: %s" msgstr "" -#: classes/Notice.php:222 +#: classes/Notice.php:239 #, fuzzy msgid "Problem saving notice. Too long." msgstr "Проблем при записване на бележката." -#: classes/Notice.php:226 +#: classes/Notice.php:243 msgid "Problem saving notice. Unknown user." msgstr "Грешка при записване на бележката. Непознат потребител." -#: classes/Notice.php:231 +#: classes/Notice.php:248 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" "Твърде много бележки за кратко време. Спрете, поемете дъх и публикувайте " "отново след няколко минути." -#: classes/Notice.php:237 +#: classes/Notice.php:254 #, fuzzy msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " @@ -4426,20 +4471,20 @@ msgstr "" "Твърде много бележки за кратко време. Спрете, поемете дъх и публикувайте " "отново след няколко минути." -#: classes/Notice.php:243 +#: classes/Notice.php:260 msgid "You are banned from posting notices on this site." msgstr "Забранено ви е да публикувате бележки в този сайт." -#: classes/Notice.php:309 classes/Notice.php:335 +#: classes/Notice.php:326 classes/Notice.php:352 msgid "Problem saving notice." msgstr "Проблем при записване на бележката." -#: classes/Notice.php:882 +#: classes/Notice.php:911 #, fuzzy msgid "Problem saving group inbox." msgstr "Проблем при записване на бележката." -#: classes/Notice.php:1407 +#: classes/Notice.php:1442 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -4471,20 +4516,30 @@ msgstr "Грешка при изтриване на абонамента." msgid "Couldn't delete subscription." msgstr "Грешка при изтриване на абонамента." -#: classes/User.php:372 +#: classes/User.php:373 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "Добре дошли в %1$s, @%2$s!" -#: classes/User_group.php:423 +#: classes/User_group.php:462 msgid "Could not create group." msgstr "Грешка при създаване на групата." -#: classes/User_group.php:452 +#: classes/User_group.php:471 +#, fuzzy +msgid "Could not set group URI." +msgstr "Грешка при създаване на нов абонамент." + +#: classes/User_group.php:492 #, fuzzy msgid "Could not set group membership." msgstr "Грешка при създаване на нов абонамент." +#: classes/User_group.php:506 +#, fuzzy +msgid "Could not save local group info." +msgstr "Грешка при създаване на нов абонамент." + #: lib/accountsettingsaction.php:108 msgid "Change your profile settings" msgstr "Промяна настройките на профила" @@ -4527,124 +4582,192 @@ msgstr "Неозаглавена страница" msgid "Primary site navigation" msgstr "" +#. TRANS: Tooltip for main menu option "Personal" #: lib/action.php:439 -msgid "Home" -msgstr "Начало" - -#: lib/action.php:439 +msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:441 +#: lib/action.php:442 +#, fuzzy +msgctxt "MENU" +msgid "Personal" +msgstr "Лично" + +#. TRANS: Tooltip for main menu option "Account" +#: lib/action.php:444 +#, fuzzy +msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Промяна на поща, аватар, парола, профил" -#: lib/action.php:444 -msgid "Connect" -msgstr "Свързване" +#: lib/action.php:447 +#, fuzzy +msgctxt "MENU" +msgid "Account" +msgstr "Сметка" -#: lib/action.php:444 +#. TRANS: Tooltip for main menu option "Services" +#: lib/action.php:450 +#, fuzzy +msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Свързване към услуги" -#: lib/action.php:448 +#: lib/action.php:453 +#, fuzzy +msgctxt "MENU" +msgid "Connect" +msgstr "Свързване" + +#. TRANS: Tooltip for menu option "Admin" +#: lib/action.php:457 +#, fuzzy +msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Промяна настройките на сайта" -#: lib/action.php:452 lib/subgroupnav.php:105 -msgid "Invite" -msgstr "Покани" +#: lib/action.php:460 +#, fuzzy +msgctxt "MENU" +msgid "Admin" +msgstr "Настройки" -#: lib/action.php:453 lib/subgroupnav.php:106 -#, php-format +#. TRANS: Tooltip for main menu option "Invite" +#: lib/action.php:464 +#, fuzzy, php-format +msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Поканете приятели и колеги да се присъединят към вас в %s" -#: lib/action.php:458 -msgid "Logout" -msgstr "Изход" +#: lib/action.php:467 +#, fuzzy +msgctxt "MENU" +msgid "Invite" +msgstr "Покани" -#: lib/action.php:458 +#. TRANS: Tooltip for main menu option "Logout" +#: lib/action.php:473 +#, fuzzy +msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Излизане от сайта" -#: lib/action.php:463 +#: lib/action.php:476 +#, fuzzy +msgctxt "MENU" +msgid "Logout" +msgstr "Изход" + +#. TRANS: Tooltip for main menu option "Register" +#: lib/action.php:481 +#, fuzzy +msgctxt "TOOLTIP" msgid "Create an account" msgstr "Създаване на нова сметка" -#: lib/action.php:466 +#: lib/action.php:484 +#, fuzzy +msgctxt "MENU" +msgid "Register" +msgstr "Регистриране" + +#. TRANS: Tooltip for main menu option "Login" +#: lib/action.php:487 +#, fuzzy +msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Влизане в сайта" -#: lib/action.php:469 lib/action.php:732 -msgid "Help" -msgstr "Помощ" - -#: lib/action.php:469 +#: lib/action.php:490 #, fuzzy +msgctxt "MENU" +msgid "Login" +msgstr "Вход" + +#. TRANS: Tooltip for main menu option "Help" +#: lib/action.php:493 +#, fuzzy +msgctxt "TOOLTIP" msgid "Help me!" msgstr "Помощ" -#: lib/action.php:472 lib/searchaction.php:127 -msgid "Search" -msgstr "Търсене" +#: lib/action.php:496 +#, fuzzy +msgctxt "MENU" +msgid "Help" +msgstr "Помощ" -#: lib/action.php:472 +#. TRANS: Tooltip for main menu option "Search" +#: lib/action.php:499 +#, fuzzy +msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Търсене за хора или бележки" -#: lib/action.php:493 +#: lib/action.php:502 +#, fuzzy +msgctxt "MENU" +msgid "Search" +msgstr "Търсене" + +#. TRANS: DT element for site notice. String is hidden in default CSS. +#: lib/action.php:524 #, fuzzy msgid "Site notice" msgstr "Нова бележка" -#: lib/action.php:559 +#: lib/action.php:590 msgid "Local views" msgstr "" -#: lib/action.php:625 +#: lib/action.php:656 #, fuzzy msgid "Page notice" msgstr "Нова бележка" -#: lib/action.php:727 +#: lib/action.php:758 #, fuzzy msgid "Secondary site navigation" msgstr "Абонаменти" -#: lib/action.php:734 +#: lib/action.php:763 +msgid "Help" +msgstr "Помощ" + +#: lib/action.php:765 msgid "About" msgstr "Относно" -#: lib/action.php:736 +#: lib/action.php:767 msgid "FAQ" msgstr "Въпроси" -#: lib/action.php:740 +#: lib/action.php:771 msgid "TOS" msgstr "Условия" -#: lib/action.php:743 +#: lib/action.php:774 msgid "Privacy" msgstr "Поверителност" -#: lib/action.php:745 +#: lib/action.php:776 msgid "Source" msgstr "Изходен код" -#: lib/action.php:749 +#: lib/action.php:780 msgid "Contact" msgstr "Контакт" -#: lib/action.php:751 +#: lib/action.php:782 msgid "Badge" msgstr "Табелка" -#: lib/action.php:779 +#: lib/action.php:810 msgid "StatusNet software license" msgstr "Лиценз на програмата StatusNet" -#: lib/action.php:782 +#: lib/action.php:813 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4653,12 +4776,12 @@ msgstr "" "**%%site.name%%** е услуга за микроблогване, предоставена ви от [%%site." "broughtby%%](%%site.broughtbyurl%%). " -#: lib/action.php:784 +#: lib/action.php:815 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** е услуга за микроблогване. " -#: lib/action.php:786 +#: lib/action.php:817 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4669,112 +4792,165 @@ msgstr "" "достъпна под [GNU Affero General Public License](http://www.fsf.org/" "licensing/licenses/agpl-3.0.html)." -#: lib/action.php:801 +#: lib/action.php:832 msgid "Site content license" msgstr "Лиценз на съдържанието" -#: lib/action.php:806 +#: lib/action.php:837 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:811 +#: lib/action.php:842 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:814 +#: lib/action.php:845 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" -#: lib/action.php:827 +#: lib/action.php:858 msgid "All " msgstr "Всички " -#: lib/action.php:833 +#: lib/action.php:864 msgid "license." msgstr "лиценз." -#: lib/action.php:1132 +#: lib/action.php:1163 msgid "Pagination" msgstr "Страниране" -#: lib/action.php:1141 +#: lib/action.php:1172 msgid "After" msgstr "След" -#: lib/action.php:1149 +#: lib/action.php:1180 msgid "Before" msgstr "Преди" -#: lib/activity.php:382 +#: lib/activity.php:449 msgid "Can't handle remote content yet." msgstr "" -#: lib/activity.php:410 +#: lib/activity.php:477 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activity.php:414 +#: lib/activity.php:481 msgid "Can't handle embedded Base64 content yet." msgstr "" -#: lib/adminpanelaction.php:96 +#. TRANS: Client error message +#: lib/adminpanelaction.php:98 msgid "You cannot make changes to this site." msgstr "Не можете да променяте този сайт." -#: lib/adminpanelaction.php:107 +#. TRANS: Client error message +#: lib/adminpanelaction.php:110 #, fuzzy msgid "Changes to that panel are not allowed." msgstr "Записването не е позволено." -#: lib/adminpanelaction.php:206 +#. TRANS: Client error message +#: lib/adminpanelaction.php:211 #, fuzzy msgid "showForm() not implemented." msgstr "Командата все още не се поддържа." -#: lib/adminpanelaction.php:235 +#. TRANS: Client error message +#: lib/adminpanelaction.php:241 #, fuzzy msgid "saveSettings() not implemented." msgstr "Командата все още не се поддържа." -#: lib/adminpanelaction.php:258 +#. TRANS: Client error message +#: lib/adminpanelaction.php:265 #, fuzzy msgid "Unable to delete design setting." msgstr "Грешка при записване настройките за Twitter" -#: lib/adminpanelaction.php:312 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:330 msgid "Basic site configuration" msgstr "Основна настройка на сайта" -#: lib/adminpanelaction.php:317 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:332 +#, fuzzy +msgctxt "MENU" +msgid "Site" +msgstr "Сайт" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:338 msgid "Design configuration" msgstr "Настройка на оформлението" -#: lib/adminpanelaction.php:322 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:340 +#, fuzzy +msgctxt "MENU" +msgid "Design" +msgstr "Версия" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:346 #, fuzzy msgid "User configuration" msgstr "Настройка на пътищата" -#: lib/adminpanelaction.php:327 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:348 +#, fuzzy +msgctxt "MENU" +msgid "User" +msgstr "Потребител" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:354 #, fuzzy msgid "Access configuration" msgstr "Настройка на оформлението" -#: lib/adminpanelaction.php:332 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:356 +#, fuzzy +msgctxt "MENU" +msgid "Access" +msgstr "Достъп" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:362 msgid "Paths configuration" msgstr "Настройка на пътищата" -#: lib/adminpanelaction.php:337 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:364 +#, fuzzy +msgctxt "MENU" +msgid "Paths" +msgstr "Пътища" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:370 #, fuzzy msgid "Sessions configuration" msgstr "Настройка на оформлението" -#: lib/apiauth.php:95 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:372 +#, fuzzy +msgctxt "MENU" +msgid "Sessions" +msgstr "Сесии" + +#: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." msgstr "" -#: lib/apiauth.php:273 +#: lib/apiauth.php:272 #, php-format msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" msgstr "" @@ -4869,12 +5045,12 @@ msgstr "" msgid "Tags for this attachment" msgstr "" -#: lib/authenticationplugin.php:218 lib/authenticationplugin.php:223 +#: lib/authenticationplugin.php:220 lib/authenticationplugin.php:225 #, fuzzy msgid "Password changing failed" msgstr "Паролата е записана." -#: lib/authenticationplugin.php:233 +#: lib/authenticationplugin.php:235 #, fuzzy msgid "Password changing is not allowed" msgstr "Паролата е записана." @@ -5153,19 +5329,19 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:136 +#: lib/common.php:148 msgid "No configuration file found. " msgstr "Не е открит файл с настройки. " -#: lib/common.php:137 +#: lib/common.php:149 msgid "I looked for configuration files in the following places: " msgstr "" -#: lib/common.php:139 +#: lib/common.php:151 msgid "You may wish to run the installer to fix this." msgstr "" -#: lib/common.php:140 +#: lib/common.php:152 #, fuzzy msgid "Go to the installer." msgstr "Влизане в сайта" @@ -5357,24 +5533,24 @@ msgstr "Системна грешка при качване на файл." msgid "Not an image or corrupt file." msgstr "Файлът не е изображение или е повреден." -#: lib/imagefile.php:105 +#: lib/imagefile.php:109 msgid "Unsupported image file format." msgstr "Форматът на файла с изображението не се поддържа." -#: lib/imagefile.php:118 +#: lib/imagefile.php:122 #, fuzzy msgid "Lost our file." msgstr "Няма такава бележка." -#: lib/imagefile.php:150 lib/imagefile.php:197 +#: lib/imagefile.php:166 lib/imagefile.php:231 msgid "Unknown file type" msgstr "Неподдържан вид файл" -#: lib/imagefile.php:217 +#: lib/imagefile.php:251 msgid "MB" msgstr "MB" -#: lib/imagefile.php:219 +#: lib/imagefile.php:253 msgid "kB" msgstr "kB" @@ -5678,6 +5854,12 @@ msgstr "До" msgid "Available characters" msgstr "Налични знаци" +#: lib/messageform.php:178 lib/noticeform.php:236 +#, fuzzy +msgctxt "Send button for sending notice" +msgid "Send" +msgstr "Прати" + #: lib/noticeform.php:160 msgid "Send a notice" msgstr "Изпращане на бележка" @@ -5736,23 +5918,23 @@ msgstr "З" msgid "at" msgstr "" -#: lib/noticelist.php:558 +#: lib/noticelist.php:566 msgid "in context" msgstr "в контекст" -#: lib/noticelist.php:583 +#: lib/noticelist.php:601 msgid "Repeated by" msgstr "Повторено от" -#: lib/noticelist.php:610 +#: lib/noticelist.php:628 msgid "Reply to this notice" msgstr "Отговаряне на тази бележка" -#: lib/noticelist.php:611 +#: lib/noticelist.php:629 msgid "Reply" msgstr "Отговор" -#: lib/noticelist.php:655 +#: lib/noticelist.php:673 msgid "Notice repeated" msgstr "Бележката е повторена." @@ -5801,6 +5983,10 @@ msgstr "Отговори" msgid "Favorites" msgstr "Любими" +#: lib/personalgroupnav.php:115 +msgid "User" +msgstr "Потребител" + #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "Входящи" @@ -5893,7 +6079,7 @@ msgstr "Повтаряне на тази бележка" msgid "Repeat this notice" msgstr "Повтаряне на тази бележка" -#: lib/router.php:665 +#: lib/router.php:668 msgid "No single user defined for single-user mode." msgstr "" @@ -5916,6 +6102,10 @@ msgstr "Търсене" msgid "Keyword(s)" msgstr "Ключови думи" +#: lib/searchaction.php:127 +msgid "Search" +msgstr "Търсене" + #: lib/searchaction.php:162 #, fuzzy msgid "Search help" @@ -5968,6 +6158,15 @@ msgstr "Абонирани за %s" msgid "Groups %s is a member of" msgstr "Групи, в които участва %s" +#: lib/subgroupnav.php:105 +msgid "Invite" +msgstr "Покани" + +#: lib/subgroupnav.php:106 +#, 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" @@ -6040,47 +6239,47 @@ msgstr "Съобщение" msgid "Moderate" msgstr "" -#: lib/util.php:952 +#: lib/util.php:1013 msgid "a few seconds ago" msgstr "преди няколко секунди" -#: lib/util.php:954 +#: lib/util.php:1015 msgid "about a minute ago" msgstr "преди около минута" -#: lib/util.php:956 +#: lib/util.php:1017 #, php-format msgid "about %d minutes ago" msgstr "преди около %d минути" -#: lib/util.php:958 +#: lib/util.php:1019 msgid "about an hour ago" msgstr "преди около час" -#: lib/util.php:960 +#: lib/util.php:1021 #, php-format msgid "about %d hours ago" msgstr "преди около %d часа" -#: lib/util.php:962 +#: lib/util.php:1023 msgid "about a day ago" msgstr "преди около ден" -#: lib/util.php:964 +#: lib/util.php:1025 #, php-format msgid "about %d days ago" msgstr "преди около %d дни" -#: lib/util.php:966 +#: lib/util.php:1027 msgid "about a month ago" msgstr "преди около месец" -#: lib/util.php:968 +#: lib/util.php:1029 #, php-format msgid "about %d months ago" msgstr "преди около %d месеца" -#: lib/util.php:970 +#: lib/util.php:1031 msgid "about a year ago" msgstr "преди около година" diff --git a/locale/ca/LC_MESSAGES/statusnet.po b/locale/ca/LC_MESSAGES/statusnet.po index d94ad84310..8b12f44a94 100644 --- a/locale/ca/LC_MESSAGES/statusnet.po +++ b/locale/ca/LC_MESSAGES/statusnet.po @@ -10,80 +10,87 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-02-24 23:49+0000\n" -"PO-Revision-Date: 2010-02-24 23:50:15+0000\n" +"POT-Creation-Date: 2010-03-02 21:02+0000\n" +"PO-Revision-Date: 2010-03-02 21:02:15+0000\n" "Language-Team: Catalan\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r62925); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: actions/accessadminpanel.php:54 lib/adminpanelaction.php:326 +#. TRANS: Page title +#: actions/accessadminpanel.php:55 msgid "Access" msgstr "Accés" -#: actions/accessadminpanel.php:65 +#. TRANS: Page notice +#: actions/accessadminpanel.php:67 #, fuzzy msgid "Site access settings" msgstr "Desa els paràmetres del lloc" -#: actions/accessadminpanel.php:158 +#. TRANS: Form legend for registration form. +#: actions/accessadminpanel.php:161 #, fuzzy msgid "Registration" msgstr "Registre" -#: actions/accessadminpanel.php:161 -msgid "Private" -msgstr "Privat" - -#: actions/accessadminpanel.php:163 +#. TRANS: Checkbox instructions for admin setting "Private" +#: actions/accessadminpanel.php:165 msgid "Prohibit anonymous users (not logged in) from viewing site?" msgstr "" "Voleu prohibir als usuaris anònims (que no han iniciat cap sessió) " "visualitzar el lloc?" +#. TRANS: Checkbox label for prohibiting anonymous users from viewing site. #: actions/accessadminpanel.php:167 -msgid "Invite only" -msgstr "Només invitació" +#, fuzzy +msgctxt "LABEL" +msgid "Private" +msgstr "Privat" -#: actions/accessadminpanel.php:169 +#. TRANS: Checkbox instructions for admin setting "Invite only" +#: actions/accessadminpanel.php:174 msgid "Make registration invitation only." msgstr "Fes que el registre sigui només amb invitacions." -#: actions/accessadminpanel.php:173 -msgid "Closed" -msgstr "Tancat" +#. TRANS: Checkbox label for configuring site as invite only. +#: actions/accessadminpanel.php:176 +msgid "Invite only" +msgstr "Només invitació" -#: actions/accessadminpanel.php:175 +#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations) +#: actions/accessadminpanel.php:183 msgid "Disable new registrations." msgstr "Inhabilita els nous registres." -#: actions/accessadminpanel.php:189 actions/designadminpanel.php:586 -#: actions/emailsettings.php:195 actions/imsettings.php:163 -#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 -#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 -#: actions/siteadminpanel.php:336 actions/smssettings.php:181 -#: actions/subscriptions.php:208 actions/tagother.php:154 -#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 -#: lib/applicationeditform.php:334 lib/designsettings.php:256 -#: lib/groupeditform.php:202 -msgid "Save" -msgstr "Guardar" +#. TRANS: Checkbox label for disabling new user registrations. +#: actions/accessadminpanel.php:185 +msgid "Closed" +msgstr "Tancat" -#: actions/accessadminpanel.php:189 +#. TRANS: Title / tooltip for button to save access settings in site admin panel +#: actions/accessadminpanel.php:202 #, fuzzy msgid "Save access settings" msgstr "Desa els paràmetres del lloc" -#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 -#: actions/showfavorites.php:137 actions/tag.php:51 +#: actions/accessadminpanel.php:203 +#, fuzzy +msgctxt "BUTTON" +msgid "Save" +msgstr "Guardar" + +#. TRANS: Server error when page not found (404) +#: actions/all.php:64 actions/public.php:98 actions/replies.php:93 +#: actions/showfavorites.php:138 actions/tag.php:52 msgid "No such page" msgstr "No existeix la pàgina." -#: actions/all.php:74 actions/allrss.php:68 +#: actions/all.php:75 actions/allrss.php:68 #: actions/apiaccountupdatedeliverydevice.php:113 #: actions/apiaccountupdateprofile.php:105 #: actions/apiaccountupdateprofilebackgroundimage.php:116 @@ -97,45 +104,53 @@ msgstr "No existeix la pàgina." #: actions/apitimelinehome.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/otp.php:76 -#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154 -#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 -#: actions/showfavorites.php:105 actions/userbyid.php:74 -#: actions/usergroups.php:91 actions/userrss.php:38 actions/xrds.php:71 -#: lib/command.php:163 lib/command.php:302 lib/command.php:355 -#: lib/command.php:401 lib/command.php:462 lib/command.php:518 -#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 +#: actions/hcard.php:67 actions/microsummary.php:62 actions/newmessage.php:116 +#: actions/otp.php:76 actions/remotesubscribe.php:145 +#: actions/remotesubscribe.php:154 actions/replies.php:73 +#: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/xrds.php:71 lib/command.php:163 lib/command.php:302 +#: lib/command.php:355 lib/command.php:401 lib/command.php:462 +#: lib/command.php:518 lib/galleryaction.php:59 lib/mailbox.php:82 +#: lib/profileaction.php:77 msgid "No such user." msgstr "No existeix aquest usuari." -#: actions/all.php:84 +#. TRANS: Page title. %1$s is user nickname, %2$d is page number +#: actions/all.php:86 #, fuzzy, php-format msgid "%1$s and friends, page %2$d" msgstr "%s perfils blocats, pàgina %d" -#: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 +#. TRANS: Page title. %1$s is user nickname +#. TRANS: H1 text. %1$s is user nickname +#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" msgstr "%s i amics" -#: actions/all.php:99 +#. TRANS: %1$s is user nickname +#: actions/all.php:103 #, php-format msgid "Feed for friends of %s (RSS 1.0)" msgstr "Canal dels amics de %s (RSS 1.0)" -#: actions/all.php:107 +#. TRANS: %1$s is user nickname +#: actions/all.php:112 #, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "Canal dels amics de %s (RSS 2.0)" -#: actions/all.php:115 +#. TRANS: %1$s is user nickname +#: actions/all.php:121 #, php-format msgid "Feed for friends of %s (Atom)" msgstr "Canal dels amics de %s (Atom)" -#: actions/all.php:127 +#. TRANS: %1$s is user nickname +#: actions/all.php:134 #, php-format msgid "" "This is the timeline for %s and friends but no one has posted anything yet." @@ -143,28 +158,30 @@ msgstr "" "Aquesta és la línia temporal de %s i amics, però ningú hi ha enviat res " "encara." -#: actions/all.php:132 +#: actions/all.php:139 #, php-format msgid "" "Try subscribing to more people, [join a group](%%action.groups%%) or post " "something yourself." msgstr "" -#: actions/all.php:134 +#. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@" +#: actions/all.php:142 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) from his profile or [post something to " "his or her attention](%%%%action.newnotice%%%%?status_textarea=%3$s)." msgstr "" -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211 +#: actions/all.php:145 actions/replies.php:210 actions/showstream.php:211 #, 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/all.php:165 +#. TRANS: H1 text +#: actions/all.php:174 msgid "You and friends" msgstr "Un mateix i amics" @@ -182,20 +199,20 @@ msgstr "Actualitzacions de %1$s i amics a %2$s!" #: actions/apiaccountverifycredentials.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:128 actions/apigroupcreate.php:136 +#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: actions/apigroupleave.php:141 actions/apigrouplist.php:132 #: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 #: actions/apigroupshow.php:115 actions/apihelptest.php:88 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 -#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184 +#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 #: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:207 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 #, fuzzy msgid "API method not found." msgstr "No s'ha trobat el mètode API!" @@ -229,8 +246,9 @@ msgstr "No s'ha pogut actualitzar l'usuari." #: actions/apiaccountupdateprofilebackgroundimage.php:194 #: actions/apiaccountupdateprofilecolors.php:185 #: 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 +#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 +#: 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." @@ -255,7 +273,7 @@ msgstr "" #: actions/apiaccountupdateprofilebackgroundimage.php:146 #: actions/apiaccountupdateprofilecolors.php:164 #: actions/apiaccountupdateprofilecolors.php:174 -#: actions/groupdesignsettings.php:287 actions/groupdesignsettings.php:297 +#: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300 #: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 #: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 #, fuzzy @@ -376,7 +394,7 @@ msgstr "No s'ha pogut determinar l'usuari d'origen." msgid "Could not find target user." msgstr "No es pot trobar cap estatus." -#: actions/apigroupcreate.php:164 actions/editgroup.php:182 +#: actions/apigroupcreate.php:166 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:215 #: actions/register.php:205 msgid "Nickname must have only lowercase letters and numbers and no spaces." @@ -384,62 +402,62 @@ msgstr "" "El sobrenom ha de tenir només lletres minúscules i números i no pot tenir " "espais." -#: actions/apigroupcreate.php:173 actions/editgroup.php:186 +#: actions/apigroupcreate.php:175 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:238 #: actions/register.php:208 msgid "Nickname already in use. Try another one." msgstr "Aquest sobrenom ja existeix. Prova un altre. " -#: actions/apigroupcreate.php:180 actions/editgroup.php:189 +#: actions/apigroupcreate.php:182 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:218 #: actions/register.php:210 msgid "Not a valid nickname." msgstr "Sobrenom no vàlid." -#: actions/apigroupcreate.php:196 actions/editapplication.php:215 -#: actions/editgroup.php:195 actions/newapplication.php:203 +#: actions/apigroupcreate.php:198 actions/editapplication.php:215 +#: actions/editgroup.php:199 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: 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:205 actions/editgroup.php:198 +#: actions/apigroupcreate.php:207 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:225 #: 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:213 actions/editapplication.php:190 +#: actions/apigroupcreate.php:215 actions/editapplication.php:190 #: actions/newapplication.php:172 #, php-format msgid "Description is too long (max %d chars)." msgstr "La descripció és massa llarga (màx. %d caràcters)." -#: actions/apigroupcreate.php:224 actions/editgroup.php:204 +#: actions/apigroupcreate.php:226 actions/editgroup.php:208 #: actions/newgroup.php:148 actions/profilesettings.php:232 #: actions/register.php:227 msgid "Location is too long (max 255 chars)." msgstr "La ubicació és massa llarga (màx. 255 caràcters)." -#: actions/apigroupcreate.php:243 actions/editgroup.php:215 +#: actions/apigroupcreate.php:245 actions/editgroup.php:219 #: actions/newgroup.php:159 #, php-format msgid "Too many aliases! Maximum %d." msgstr "Hi ha massa àlies! Màxim %d." -#: actions/apigroupcreate.php:264 actions/editgroup.php:224 +#: actions/apigroupcreate.php:266 actions/editgroup.php:228 #: actions/newgroup.php:168 #, php-format msgid "Invalid alias: \"%s\"" msgstr "L'àlies no és vàlid «%s»" -#: actions/apigroupcreate.php:273 actions/editgroup.php:228 +#: actions/apigroupcreate.php:275 actions/editgroup.php:232 #: actions/newgroup.php:172 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "L'àlies «%s» ja està en ús. Proveu-ne un altre." -#: actions/apigroupcreate.php:286 actions/editgroup.php:234 +#: actions/apigroupcreate.php:288 actions/editgroup.php:238 #: actions/newgroup.php:178 msgid "Alias can't be the same as nickname." msgstr "L'àlies no pot ser el mateix que el sobrenom." @@ -450,15 +468,15 @@ msgstr "L'àlies no pot ser el mateix que el sobrenom." msgid "Group not found!" msgstr "No s'ha trobat el grup!" -#: actions/apigroupjoin.php:110 actions/joingroup.php:90 +#: actions/apigroupjoin.php:110 actions/joingroup.php:100 msgid "You are already a member of that group." msgstr "Ja sou membre del grup." -#: actions/apigroupjoin.php:119 actions/joingroup.php:95 lib/command.php:221 +#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:221 msgid "You have been blocked from that group by the admin." msgstr "L'administrador us ha blocat del grup." -#: actions/apigroupjoin.php:138 actions/joingroup.php:124 +#: actions/apigroupjoin.php:138 actions/joingroup.php:134 #, fuzzy, php-format msgid "Could not join user %1$s to group %2$s." msgstr "No s'ha pogut afegir l'usuari %s al grup %s." @@ -467,7 +485,7 @@ msgstr "No s'ha pogut afegir l'usuari %s al grup %s." msgid "You are not a member of this group." msgstr "No sou un membre del grup." -#: actions/apigroupleave.php:124 actions/leavegroup.php:119 +#: actions/apigroupleave.php:124 actions/leavegroup.php:129 #, fuzzy, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "No s'ha pogut suprimir l'usuari %s del grup %s." @@ -499,7 +517,7 @@ msgstr "Mida invàlida." #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 #: actions/deletenotice.php:157 actions/disfavor.php:74 #: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54 -#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupblock.php:66 actions/grouplogo.php:312 #: actions/groupunblock.php:66 actions/imsettings.php:206 #: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 @@ -545,7 +563,7 @@ msgstr "" #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:103 actions/editapplication.php:139 -#: actions/emailsettings.php:256 actions/grouplogo.php:319 +#: actions/emailsettings.php:256 actions/grouplogo.php:322 #: actions/imsettings.php:220 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 #: actions/smssettings.php:248 lib/designsettings.php:304 @@ -568,13 +586,13 @@ msgid "" "give access to your %4$s account to third parties you trust." msgstr "" -#: actions/apioauthauthorize.php:310 lib/action.php:441 +#: actions/apioauthauthorize.php:310 msgid "Account" msgstr "Compte" #: actions/apioauthauthorize.php:313 actions/login.php:230 #: actions/profilesettings.php:106 actions/register.php:424 -#: actions/showgroup.php:236 actions/tagother.php:94 +#: actions/showgroup.php:244 actions/tagother.php:94 #: actions/userauthorization.php:145 lib/groupeditform.php:152 #: lib/userprofile.php:131 msgid "Nickname" @@ -660,12 +678,12 @@ msgid "%1$s updates favorited by %2$s / %2$s." msgstr "%s actualitzacions favorites per %s / %s." #: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:131 actions/userrss.php:90 +#: actions/grouprss.php:138 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "%s línia temporal" -#: actions/apitimelinegroup.php:114 actions/apitimelineuser.php:126 +#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 #: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" @@ -701,7 +719,7 @@ msgstr "Respostes a %s" msgid "Repeats of %s" msgstr "Repeticions de %s" -#: actions/apitimelinetag.php:102 actions/tag.php:66 +#: actions/apitimelinetag.php:102 actions/tag.php:67 #, php-format msgid "Notices tagged with %s" msgstr "Aviso etiquetats amb %s" @@ -722,8 +740,7 @@ msgstr "No existeix l'adjunció." #: actions/avatarbynickname.php:59 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/leavegroup.php:76 -#: actions/showgroup.php:121 +#: actions/grouprss.php:91 actions/showgroup.php:121 msgid "No nickname." msgstr "Cap sobrenom." @@ -735,7 +752,7 @@ msgstr "Cap mida." msgid "Invalid size." msgstr "Mida invàlida." -#: actions/avatarsettings.php:67 actions/showgroup.php:221 +#: actions/avatarsettings.php:67 actions/showgroup.php:229 #: lib/accountsettingsaction.php:112 msgid "Avatar" msgstr "Avatar" @@ -753,30 +770,30 @@ msgid "User without matching profile" msgstr "Usuari sense perfil coincident" #: actions/avatarsettings.php:119 actions/avatarsettings.php:197 -#: actions/grouplogo.php:251 +#: actions/grouplogo.php:254 msgid "Avatar settings" msgstr "Configuració de l'avatar" #: actions/avatarsettings.php:127 actions/avatarsettings.php:205 -#: actions/grouplogo.php:199 actions/grouplogo.php:259 +#: actions/grouplogo.php:202 actions/grouplogo.php:262 msgid "Original" msgstr "Original" #: actions/avatarsettings.php:142 actions/avatarsettings.php:217 -#: actions/grouplogo.php:210 actions/grouplogo.php:271 +#: actions/grouplogo.php:213 actions/grouplogo.php:274 msgid "Preview" msgstr "Vista prèvia" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:637 +#: lib/deleteuserform.php:66 lib/noticelist.php:655 msgid "Delete" msgstr "Suprimeix" -#: actions/avatarsettings.php:166 actions/grouplogo.php:233 +#: actions/avatarsettings.php:166 actions/grouplogo.php:236 msgid "Upload" msgstr "Puja" -#: actions/avatarsettings.php:231 actions/grouplogo.php:286 +#: actions/avatarsettings.php:231 actions/grouplogo.php:289 msgid "Crop" msgstr "Retalla" @@ -786,7 +803,7 @@ msgstr "" "Selecciona un quadrat de l'àrea de la imatge que vols que sigui el teu " "avatar." -#: actions/avatarsettings.php:343 actions/grouplogo.php:377 +#: actions/avatarsettings.php:343 actions/grouplogo.php:380 msgid "Lost our file data." msgstr "S'ha perdut el nostre fitxer de dades." @@ -818,22 +835,22 @@ msgid "" msgstr "" #: actions/block.php:143 actions/deleteapplication.php:153 -#: actions/deletenotice.php:145 actions/deleteuser.php:147 +#: actions/deletenotice.php:145 actions/deleteuser.php:150 #: actions/groupblock.php:178 msgid "No" msgstr "No" -#: actions/block.php:143 actions/deleteuser.php:147 +#: actions/block.php:143 actions/deleteuser.php:150 msgid "Do not block this user" msgstr "No bloquis l'usuari" #: actions/block.php:144 actions/deleteapplication.php:158 -#: actions/deletenotice.php:146 actions/deleteuser.php:148 +#: actions/deletenotice.php:146 actions/deleteuser.php:151 #: actions/groupblock.php:179 lib/repeatform.php:132 msgid "Yes" msgstr "Sí" -#: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:355 lib/blockform.php:80 msgid "Block this user" msgstr "Bloquejar aquest usuari" @@ -841,40 +858,44 @@ msgstr "Bloquejar aquest usuari" msgid "Failed to save block information." msgstr "Error al guardar la informació del block." -#: actions/blockedfromgroup.php:80 actions/editgroup.php:96 -#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/groupblock.php:86 -#: actions/groupbyid.php:83 actions/groupdesignsettings.php:97 -#: actions/grouplogo.php:99 actions/groupmembers.php:83 -#: actions/grouprss.php:98 actions/groupunblock.php:86 -#: actions/joingroup.php:83 actions/leavegroup.php:83 actions/makeadmin.php:86 -#: actions/showgroup.php:137 lib/command.php:212 lib/command.php:260 +#: actions/blockedfromgroup.php:80 actions/blockedfromgroup.php:87 +#: actions/editgroup.php:100 actions/foafgroup.php:44 actions/foafgroup.php:62 +#: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:100 actions/grouplogo.php:102 +#: actions/groupmembers.php:83 actions/groupmembers.php:90 +#: actions/grouprss.php:98 actions/grouprss.php:105 +#: actions/groupunblock.php:86 actions/joingroup.php:82 +#: actions/joingroup.php:93 actions/leavegroup.php:82 +#: actions/leavegroup.php:93 actions/makeadmin.php:86 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:212 +#: lib/command.php:260 msgid "No such group." msgstr "No s'ha trobat el grup." -#: actions/blockedfromgroup.php:90 +#: actions/blockedfromgroup.php:97 #, php-format msgid "%s blocked profiles" msgstr "%s perfils blocats" -#: actions/blockedfromgroup.php:93 +#: actions/blockedfromgroup.php:100 #, fuzzy, php-format msgid "%1$s blocked profiles, page %2$d" msgstr "%s perfils blocats, pàgina %d" -#: actions/blockedfromgroup.php:108 +#: actions/blockedfromgroup.php:115 #, fuzzy msgid "A list of the users blocked from joining this group." msgstr "La llista dels usuaris d'aquest grup." -#: actions/blockedfromgroup.php:281 +#: actions/blockedfromgroup.php:288 msgid "Unblock user from group" msgstr "Desbloca l'usuari del grup" -#: actions/blockedfromgroup.php:313 lib/unblockform.php:69 +#: actions/blockedfromgroup.php:320 lib/unblockform.php:69 msgid "Unblock" msgstr "Desbloca" -#: actions/blockedfromgroup.php:313 lib/unblockform.php:80 +#: actions/blockedfromgroup.php:320 lib/unblockform.php:80 msgid "Unblock this user" msgstr "Desbloca l'usuari" @@ -953,7 +974,7 @@ msgstr "No sou un membre del grup." #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1197 +#: lib/action.php:1228 msgid "There was a problem with your session token." msgstr "Ha ocorregut algun problema amb la teva sessió." @@ -979,12 +1000,13 @@ msgstr "No es pot esborrar la notificació." msgid "Delete this application" msgstr "Eliminar aquesta nota" +#. TRANS: Client error message #: 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:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 -#: lib/adminpanelaction.php:72 lib/profileformaction.php:63 +#: lib/adminpanelaction.php:73 lib/profileformaction.php:63 #: lib/settingsaction.php:72 msgid "Not logged in." msgstr "No heu iniciat una sessió." @@ -1015,7 +1037,7 @@ msgstr "N'estàs segur que vols eliminar aquesta notificació?" msgid "Do not delete this notice" msgstr "No es pot esborrar la notificació." -#: actions/deletenotice.php:146 lib/noticelist.php:637 +#: actions/deletenotice.php:146 lib/noticelist.php:655 msgid "Delete this notice" msgstr "Eliminar aquesta nota" @@ -1032,18 +1054,18 @@ msgstr "No pots eliminar l'estatus d'un altre usuari." msgid "Delete user" msgstr "Suprimeix l'usuari" -#: actions/deleteuser.php:135 +#: actions/deleteuser.php:136 msgid "" "Are you sure you want to delete this user? This will clear all data about " "the user from the database, without a backup." msgstr "" -#: actions/deleteuser.php:148 lib/deleteuserform.php:77 +#: actions/deleteuser.php:151 lib/deleteuserform.php:77 msgid "Delete this user" msgstr "Suprimeix l'usuari" #: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 -#: lib/adminpanelaction.php:316 lib/groupnav.php:119 +#: lib/groupnav.php:119 msgid "Design" msgstr "Disseny" @@ -1144,6 +1166,17 @@ msgstr "" msgid "Reset back to default" msgstr "" +#: actions/designadminpanel.php:586 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/tagother.php:154 actions/useradminpanel.php:294 +#: lib/applicationeditform.php:333 lib/applicationeditform.php:334 +#: lib/designsettings.php:256 lib/groupeditform.php:202 +msgid "Save" +msgstr "Guardar" + #: actions/designadminpanel.php:587 lib/designsettings.php:257 msgid "Save design" msgstr "Desa el disseny" @@ -1246,30 +1279,30 @@ msgstr "Editar el grup %s" msgid "You must be logged in to create a group." msgstr "Has d'haver entrat per crear un grup." -#: actions/editgroup.php:103 actions/editgroup.php:168 -#: actions/groupdesignsettings.php:104 actions/grouplogo.php:106 +#: actions/editgroup.php:107 actions/editgroup.php:172 +#: actions/groupdesignsettings.php:107 actions/grouplogo.php:109 #, fuzzy msgid "You must be an admin to edit the group." msgstr "Has de ser admin per editar aquest grup" -#: actions/editgroup.php:154 +#: actions/editgroup.php:158 msgid "Use this form to edit the group." msgstr "Utilitza aquest formulari per editar el grup." -#: actions/editgroup.php:201 actions/newgroup.php:145 +#: actions/editgroup.php:205 actions/newgroup.php:145 #, php-format msgid "description is too long (max %d chars)." msgstr "la descripció és massa llarga (màx. %d caràcters)." -#: actions/editgroup.php:253 +#: actions/editgroup.php:258 msgid "Could not update group." msgstr "No s'ha pogut actualitzar el grup." -#: actions/editgroup.php:259 classes/User_group.php:433 +#: actions/editgroup.php:264 classes/User_group.php:478 msgid "Could not create aliases." msgstr "No s'han pogut crear els àlies." -#: actions/editgroup.php:269 +#: actions/editgroup.php:280 msgid "Options saved." msgstr "Configuració guardada." @@ -1613,7 +1646,7 @@ msgstr "Un usuari t'ha bloquejat." msgid "User is not a member of group." msgstr "L'usuari no és membre del grup." -#: actions/groupblock.php:136 actions/groupmembers.php:316 +#: actions/groupblock.php:136 actions/groupmembers.php:323 msgid "Block user from group" msgstr "Bloca l'usuari del grup" @@ -1648,11 +1681,11 @@ msgstr "No ID" msgid "You must be logged in to edit a group." msgstr "Heu d'iniciar una sessió per editar un grup." -#: actions/groupdesignsettings.php:141 +#: actions/groupdesignsettings.php:144 msgid "Group design" msgstr "Disseny de grup" -#: actions/groupdesignsettings.php:152 +#: actions/groupdesignsettings.php:155 msgid "" "Customize the way your group looks with a background image and a colour " "palette of your choice." @@ -1660,77 +1693,77 @@ msgstr "" "Personalitzeu l'aspecte del vostre grup amb una imatge de fons i una paleta " "de colors de la vostra elecció." -#: actions/groupdesignsettings.php:263 actions/userdesignsettings.php:186 +#: actions/groupdesignsettings.php:266 actions/userdesignsettings.php:186 #: lib/designsettings.php:391 lib/designsettings.php:413 msgid "Couldn't update your design." msgstr "No s'ha pogut actualitzar el vostre disseny." -#: actions/groupdesignsettings.php:308 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231 msgid "Design preferences saved." msgstr "S'han desat les preferències de disseny." -#: actions/grouplogo.php:139 actions/grouplogo.php:192 +#: actions/grouplogo.php:142 actions/grouplogo.php:195 msgid "Group logo" msgstr "Logo del grup" -#: actions/grouplogo.php:150 +#: actions/grouplogo.php:153 #, 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:178 +#: actions/grouplogo.php:181 #, fuzzy msgid "User without matching profile." msgstr "Usuari sense perfil coincident" -#: actions/grouplogo.php:362 +#: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." msgstr "Trieu una àrea quadrada de la imatge perquè en sigui el logotip." -#: actions/grouplogo.php:396 +#: actions/grouplogo.php:399 msgid "Logo updated." msgstr "Logo actualitzat." -#: actions/grouplogo.php:398 +#: actions/grouplogo.php:401 msgid "Failed updating logo." msgstr "Error en actualitzar logo." -#: actions/groupmembers.php:93 lib/groupnav.php:92 +#: actions/groupmembers.php:100 lib/groupnav.php:92 #, php-format msgid "%s group members" msgstr "%s membre/s en el grup" -#: actions/groupmembers.php:96 +#: actions/groupmembers.php:103 #, fuzzy, php-format msgid "%1$s group members, page %2$d" msgstr "%s membre/s en el grup, pàgina %d" -#: actions/groupmembers.php:111 +#: actions/groupmembers.php:118 msgid "A list of the users in this group." msgstr "La llista dels usuaris d'aquest grup." -#: actions/groupmembers.php:175 lib/action.php:448 lib/groupnav.php:107 +#: actions/groupmembers.php:182 lib/groupnav.php:107 msgid "Admin" msgstr "Admin" -#: actions/groupmembers.php:348 lib/blockform.php:69 +#: actions/groupmembers.php:355 lib/blockform.php:69 msgid "Block" msgstr "Bloca" -#: actions/groupmembers.php:443 +#: actions/groupmembers.php:450 msgid "Make user an admin of the group" msgstr "Fes l'usuari un administrador del grup" -#: actions/groupmembers.php:475 +#: actions/groupmembers.php:482 msgid "Make Admin" msgstr "Fes-lo administrador" -#: actions/groupmembers.php:475 +#: actions/groupmembers.php:482 msgid "Make this user an admin" msgstr "Fes l'usuari administrador" -#: actions/grouprss.php:133 +#: actions/grouprss.php:140 #, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Actualitzacions dels membres de %1$s el %2$s!" @@ -1989,16 +2022,19 @@ msgstr "Missatge personal" msgid "Optionally add a personal message to the invitation." msgstr "Opcionalment pots afegir un missatge a la invitació." -#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:236 +#. TRANS: Send button for inviting friends +#: actions/invite.php:198 +#, fuzzy +msgctxt "BUTTON" msgid "Send" msgstr "Envia" -#: actions/invite.php:226 +#: actions/invite.php:227 #, fuzzy, 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" -#: actions/invite.php:228 +#: actions/invite.php:229 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -2059,7 +2095,12 @@ msgstr "" msgid "You must be logged in to join a group." msgstr "Has d'haver entrat per participar en un grup." -#: actions/joingroup.php:131 +#: actions/joingroup.php:88 actions/leavegroup.php:88 +#, fuzzy +msgid "No nickname or ID." +msgstr "Cap sobrenom." + +#: actions/joingroup.php:141 #, php-format msgid "%1$s joined group %2$s" msgstr "%1$s s'ha unit al grup %2$s" @@ -2068,11 +2109,11 @@ msgstr "%1$s s'ha unit al grup %2$s" msgid "You must be logged in to leave a group." msgstr "Has d'haver entrat per a poder marxar d'un grup." -#: actions/leavegroup.php:90 lib/command.php:265 +#: actions/leavegroup.php:100 lib/command.php:265 msgid "You are not a member of that group." msgstr "No ets membre d'aquest grup." -#: actions/leavegroup.php:127 +#: actions/leavegroup.php:137 #, fuzzy, php-format msgid "%1$s left group %2$s" msgstr "%s ha abandonat el grup %s" @@ -2090,8 +2131,7 @@ msgstr "Nom d'usuari o contrasenya incorrectes." msgid "Error setting user. You are probably not authorized." msgstr "No autoritzat." -#: actions/login.php:188 actions/login.php:241 lib/action.php:466 -#: lib/logingroupnav.php:79 +#: actions/login.php:188 actions/login.php:241 lib/logingroupnav.php:79 msgid "Login" msgstr "Inici de sessió" @@ -2213,9 +2253,9 @@ msgid "Message sent" msgstr "S'ha enviat el missatge" #: actions/newmessage.php:185 -#, fuzzy, php-format +#, php-format msgid "Direct message to %s sent." -msgstr "Missatge directe per a %s enviat" +msgstr "S'ha enviat un missatge directe a %s." #: actions/newmessage.php:210 actions/newnotice.php:245 lib/channel.php:170 msgid "Ajax Error" @@ -2293,9 +2333,8 @@ msgid "You must be logged in to list your applications." msgstr "Heu d'iniciar una sessió per editar un grup." #: actions/oauthappssettings.php:74 -#, fuzzy msgid "OAuth applications" -msgstr "Altres opcions" +msgstr "Aplicacions OAuth" #: actions/oauthappssettings.php:85 msgid "Applications you have registered" @@ -2315,9 +2354,8 @@ msgid "You have allowed the following applications to access you account." msgstr "" #: actions/oauthconnectionssettings.php:175 -#, fuzzy msgid "You are not a user of that application." -msgstr "No ets membre d'aquest grup." +msgstr "No sou usuari de l'aplicació." #: actions/oauthconnectionssettings.php:186 msgid "Unable to revoke access for app: " @@ -2349,8 +2387,8 @@ msgstr "tipus de contingut " msgid "Only " msgstr "Només " -#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 -#: lib/api.php:1068 lib/api.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 +#: lib/apiaction.php:1068 lib/apiaction.php:1177 msgid "Not a supported data format." msgstr "Format de data no suportat." @@ -2363,9 +2401,8 @@ msgid "Notice Search" msgstr "Cerca de notificacions" #: actions/othersettings.php:60 -#, fuzzy msgid "Other settings" -msgstr "Altres configuracions" +msgstr "Altres paràmetres" #: actions/othersettings.php:71 msgid "Manage various other options." @@ -2397,9 +2434,8 @@ msgstr "" "El servei d'auto-escurçament d'URL és massa llarga (màx. 50 caràcters)." #: actions/otp.php:69 -#, fuzzy msgid "No user ID specified." -msgstr "No s'ha especificat cap grup." +msgstr "No s'ha especificat cap ID d'usuari." #: actions/otp.php:83 #, fuzzy @@ -2498,7 +2534,7 @@ msgstr "No es pot guardar la nova contrasenya." msgid "Password saved." msgstr "Contrasenya guardada." -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:331 +#: actions/pathsadminpanel.php:59 msgid "Paths" msgstr "Camins" @@ -2531,7 +2567,6 @@ msgid "Invalid SSL server. The maximum length is 255 characters." msgstr "" #: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58 -#: lib/adminpanelaction.php:311 msgid "Site" msgstr "Lloc" @@ -2706,7 +2741,7 @@ msgstr "" "1-64 lletres en minúscula o números, sense signes de puntuació o espais" #: actions/profilesettings.php:111 actions/register.php:448 -#: actions/showgroup.php:247 actions/tagother.php:104 +#: actions/showgroup.php:255 actions/tagother.php:104 #: lib/groupeditform.php:157 lib/userprofile.php:149 msgid "Full name" msgstr "Nom complet" @@ -2735,7 +2770,7 @@ msgid "Bio" msgstr "Biografia" #: actions/profilesettings.php:132 actions/register.php:471 -#: actions/showgroup.php:256 actions/tagother.php:112 +#: actions/showgroup.php:264 actions/tagother.php:112 #: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:164 msgid "Location" @@ -2819,7 +2854,8 @@ msgstr "No s'ha pogut guardar el perfil." msgid "Couldn't save tags." msgstr "No s'han pogut guardar les etiquetes." -#: actions/profilesettings.php:391 lib/adminpanelaction.php:137 +#. TRANS: Message after successful saving of administrative settings. +#: actions/profilesettings.php:391 lib/adminpanelaction.php:141 msgid "Settings saved." msgstr "Configuració guardada." @@ -2832,28 +2868,28 @@ msgstr "Més enllà del límit de la pàgina (%s)" msgid "Could not retrieve public stream." msgstr "No s'ha pogut recuperar la conversa pública." -#: actions/public.php:129 +#: actions/public.php:130 #, php-format msgid "Public timeline, page %d" msgstr "Línia temporal pública, pàgina %d" -#: actions/public.php:131 lib/publicgroupnav.php:79 +#: actions/public.php:132 lib/publicgroupnav.php:79 msgid "Public timeline" msgstr "Línia temporal pública" -#: actions/public.php:159 +#: actions/public.php:160 msgid "Public Stream Feed (RSS 1.0)" msgstr "Flux de canal públic (RSS 1.0)" -#: actions/public.php:163 +#: actions/public.php:164 msgid "Public Stream Feed (RSS 2.0)" msgstr "Flux de canal públic (RSS 2.0)" -#: actions/public.php:167 +#: actions/public.php:168 msgid "Public Stream Feed (Atom)" msgstr "Flux de canal públic (Atom)" -#: actions/public.php:187 +#: actions/public.php:188 #, php-format msgid "" "This is the public timeline for %%site.name%% but no one has posted anything " @@ -2862,11 +2898,11 @@ msgstr "" "Aquesta és la línia temporal pública de %%site.name%%, però ningú no hi ha " "enviat res encara." -#: actions/public.php:190 +#: actions/public.php:191 msgid "Be the first to post!" msgstr "Sigueu el primer en escriure-hi!" -#: actions/public.php:194 +#: actions/public.php:195 #, php-format msgid "" "Why not [register an account](%%action.register%%) and be the first to post!" @@ -2874,7 +2910,7 @@ msgstr "" "Per què no [registreu un compte](%%action.register%%) i sou el primer en " "escriure-hi!" -#: actions/public.php:241 +#: actions/public.php:242 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2883,7 +2919,7 @@ msgid "" "friends, family, and colleagues! ([Read more](%%doc.help%%))" msgstr "" -#: actions/public.php:246 +#: actions/public.php:247 #, fuzzy, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -3060,8 +3096,7 @@ msgstr "El codi d'invitació no és vàlid." msgid "Registration successful" msgstr "Registre satisfactori" -#: actions/register.php:114 actions/register.php:503 lib/action.php:463 -#: lib/logingroupnav.php:85 +#: actions/register.php:114 actions/register.php:503 lib/logingroupnav.php:85 msgid "Register" msgstr "Registre" @@ -3252,7 +3287,7 @@ msgstr "No pots registrar-te si no estàs d'acord amb la llicència." msgid "You already repeated that notice." msgstr "Ja heu blocat l'usuari." -#: actions/repeat.php:114 lib/noticelist.php:656 +#: actions/repeat.php:114 lib/noticelist.php:674 msgid "Repeated" msgstr "Repetit" @@ -3260,33 +3295,33 @@ msgstr "Repetit" msgid "Repeated!" msgstr "Repetit!" -#: actions/replies.php:125 actions/repliesrss.php:68 +#: actions/replies.php:126 actions/repliesrss.php:68 #: lib/personalgroupnav.php:105 #, php-format msgid "Replies to %s" msgstr "Respostes a %s" -#: actions/replies.php:127 +#: actions/replies.php:128 #, fuzzy, php-format msgid "Replies to %1$s, page %2$d" msgstr "Respostes a %1$s el %2$s!" -#: actions/replies.php:144 +#: actions/replies.php:145 #, fuzzy, php-format msgid "Replies feed for %s (RSS 1.0)" msgstr "Feed d'avisos de %s" -#: actions/replies.php:151 +#: actions/replies.php:152 #, fuzzy, php-format msgid "Replies feed for %s (RSS 2.0)" msgstr "Feed d'avisos de %s" -#: actions/replies.php:158 +#: actions/replies.php:159 #, php-format msgid "Replies feed for %s (Atom)" msgstr "Feed d'avisos de %s" -#: actions/replies.php:198 +#: actions/replies.php:199 #, fuzzy, php-format msgid "" "This is the timeline showing replies to %1$s but %2$s hasn't received a " @@ -3295,14 +3330,14 @@ msgstr "" "Aquesta és la línia temporal de %s i amics, però ningú hi ha enviat res " "encara." -#: actions/replies.php:203 +#: actions/replies.php:204 #, php-format msgid "" "You can engage other users in a conversation, subscribe to more people or " "[join groups](%%action.groups%%)." msgstr "" -#: actions/replies.php:205 +#: actions/replies.php:206 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) or [post something to his or her " @@ -3330,7 +3365,6 @@ msgid "User is already sandboxed." msgstr "Un usuari t'ha bloquejat." #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:336 msgid "Sessions" msgstr "Sessions" @@ -3356,7 +3390,7 @@ msgid "Turn on debugging output for sessions." msgstr "Activa la sortida de depuració per a les sessions." #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/useradminpanel.php:293 +#: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "Desa els paràmetres del lloc" @@ -3389,7 +3423,7 @@ msgstr "Paginació" msgid "Description" msgstr "Descripció" -#: actions/showapplication.php:192 actions/showgroup.php:429 +#: actions/showapplication.php:192 actions/showgroup.php:437 #: lib/profileaction.php:174 msgid "Statistics" msgstr "Estadístiques" @@ -3452,35 +3486,35 @@ msgstr "%s's notes favorites" msgid "Could not retrieve favorite notices." msgstr "No s'han pogut recuperar els avisos preferits." -#: actions/showfavorites.php:170 +#: actions/showfavorites.php:171 #, php-format msgid "Feed for favorites of %s (RSS 1.0)" msgstr "Feed per a amics de %s" -#: actions/showfavorites.php:177 +#: actions/showfavorites.php:178 #, php-format msgid "Feed for favorites of %s (RSS 2.0)" msgstr "Feed per a amics de %s" -#: actions/showfavorites.php:184 +#: actions/showfavorites.php:185 #, php-format msgid "Feed for favorites of %s (Atom)" msgstr "Feed per a amics de %s" -#: actions/showfavorites.php:205 +#: actions/showfavorites.php:206 msgid "" "You haven't chosen any favorite notices yet. Click the fave button on " "notices you like to bookmark them for later or shed a spotlight on them." msgstr "" -#: actions/showfavorites.php:207 +#: actions/showfavorites.php:208 #, 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:211 +#: actions/showfavorites.php:212 #, php-format msgid "" "%s hasn't added any notices to his favorites yet. Why not [register an " @@ -3488,7 +3522,7 @@ msgid "" "would add to their favorites :)" msgstr "" -#: actions/showfavorites.php:242 +#: actions/showfavorites.php:243 msgid "This is a way to share what you like." msgstr "És una forma de compartir allò que us agrada." @@ -3502,67 +3536,67 @@ msgstr "%s grup" msgid "%1$s group, page %2$d" msgstr "%s membre/s en el grup, pàgina %d" -#: actions/showgroup.php:218 +#: actions/showgroup.php:226 msgid "Group profile" msgstr "Perfil del grup" -#: actions/showgroup.php:263 actions/tagother.php:118 +#: actions/showgroup.php:271 actions/tagother.php:118 #: actions/userauthorization.php:175 lib/userprofile.php:177 msgid "URL" msgstr "URL" -#: actions/showgroup.php:274 actions/tagother.php:128 +#: actions/showgroup.php:282 actions/tagother.php:128 #: actions/userauthorization.php:187 lib/userprofile.php:194 msgid "Note" msgstr "Avisos" -#: actions/showgroup.php:284 lib/groupeditform.php:184 +#: actions/showgroup.php:292 lib/groupeditform.php:184 msgid "Aliases" msgstr "Àlies" -#: actions/showgroup.php:293 +#: actions/showgroup.php:301 msgid "Group actions" msgstr "Accions del grup" -#: actions/showgroup.php:328 +#: actions/showgroup.php:336 #, fuzzy, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Feed d'avisos del grup %s" -#: actions/showgroup.php:334 +#: actions/showgroup.php:342 #, fuzzy, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Feed d'avisos del grup %s" -#: actions/showgroup.php:340 +#: actions/showgroup.php:348 #, fuzzy, php-format msgid "Notice feed for %s group (Atom)" msgstr "Feed d'avisos del grup %s" -#: actions/showgroup.php:345 +#: actions/showgroup.php:353 #, php-format msgid "FOAF for %s group" msgstr "Safata de sortida per %s" -#: actions/showgroup.php:381 actions/showgroup.php:438 lib/groupnav.php:91 +#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 msgid "Members" msgstr "Membres" -#: actions/showgroup.php:386 lib/profileaction.php:117 +#: actions/showgroup.php:394 lib/profileaction.php:117 #: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(Cap)" -#: actions/showgroup.php:392 +#: actions/showgroup.php:400 msgid "All members" msgstr "Tots els membres" -#: actions/showgroup.php:432 +#: actions/showgroup.php:440 msgid "Created" msgstr "S'ha creat" -#: actions/showgroup.php:448 +#: actions/showgroup.php:456 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3572,7 +3606,7 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showgroup.php:454 +#: actions/showgroup.php:462 #, fuzzy, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3583,7 +3617,7 @@ msgstr "" "**%s** és un grup d'usuaris a %%%%site.name%%%%, un servei de [microblogging]" "(http://ca.wikipedia.org/wiki/Microblogging)" -#: actions/showgroup.php:482 +#: actions/showgroup.php:490 msgid "Admins" msgstr "Administradors" @@ -4054,22 +4088,22 @@ msgstr "Jabber" msgid "SMS" msgstr "SMS" -#: actions/tag.php:68 +#: actions/tag.php:69 #, fuzzy, php-format msgid "Notices tagged with %1$s, page %2$d" msgstr "Usuaris que s'han etiquetat %s - pàgina %d" -#: actions/tag.php:86 +#: actions/tag.php:87 #, fuzzy, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Feed d'avisos de %s" -#: actions/tag.php:92 +#: actions/tag.php:93 #, fuzzy, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Feed d'avisos de %s" -#: actions/tag.php:98 +#: actions/tag.php:99 #, fuzzy, php-format msgid "Notice feed for tag %s (Atom)" msgstr "Feed d'avisos de %s" @@ -4126,7 +4160,7 @@ msgstr "" msgid "No such tag." msgstr "No existeix aquesta etiqueta." -#: actions/twitapitrends.php:87 +#: actions/twitapitrends.php:85 msgid "API method under construction." msgstr "Mètode API en construcció." @@ -4157,70 +4191,72 @@ msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" -#: actions/useradminpanel.php:58 lib/adminpanelaction.php:321 -#: lib/personalgroupnav.php:115 +#. TRANS: User admin panel title +#: actions/useradminpanel.php:59 +#, fuzzy +msgctxt "TITLE" msgid "User" msgstr "Usuari" -#: actions/useradminpanel.php:69 +#: actions/useradminpanel.php:70 msgid "User settings for this StatusNet site." msgstr "" -#: actions/useradminpanel.php:148 +#: actions/useradminpanel.php:149 msgid "Invalid bio limit. Must be numeric." msgstr "" -#: actions/useradminpanel.php:154 +#: actions/useradminpanel.php:155 msgid "Invalid welcome text. Max length is 255 characters." msgstr "" -#: actions/useradminpanel.php:164 +#: actions/useradminpanel.php:165 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" -#: actions/useradminpanel.php:217 lib/accountsettingsaction.php:108 +#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Perfil" -#: actions/useradminpanel.php:221 +#: actions/useradminpanel.php:222 msgid "Bio Limit" msgstr "Límit de la biografia" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:223 msgid "Maximum length of a profile bio in characters." msgstr "Límit màxim de la biografia d'un perfil (en caràcters)." -#: actions/useradminpanel.php:230 +#: actions/useradminpanel.php:231 msgid "New users" msgstr "Usuaris nous" -#: actions/useradminpanel.php:234 +#: actions/useradminpanel.php:235 msgid "New user welcome" msgstr "Benvinguda als usuaris nous" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:236 msgid "Welcome text for new users (Max 255 chars)." msgstr "" -#: actions/useradminpanel.php:240 +#: actions/useradminpanel.php:241 msgid "Default subscription" msgstr "Subscripció per defecte" -#: actions/useradminpanel.php:241 +#: actions/useradminpanel.php:242 msgid "Automatically subscribe new users to this user." msgstr "Subscriviu automàticament els usuaris nous a aquest usuari." -#: actions/useradminpanel.php:250 +#: actions/useradminpanel.php:251 msgid "Invitations" msgstr "Invitacions" -#: actions/useradminpanel.php:255 +#: actions/useradminpanel.php:256 msgid "Invitations enabled" msgstr "S'han habilitat les invitacions" -#: actions/useradminpanel.php:257 +#: actions/useradminpanel.php:258 msgid "Whether to allow users to invite new users." msgstr "" @@ -4406,7 +4442,7 @@ msgstr "" msgid "Plugins" msgstr "Connectors" -#: actions/version.php:196 lib/action.php:747 +#: actions/version.php:196 lib/action.php:778 #, fuzzy msgid "Version" msgstr "Sessions" @@ -4448,6 +4484,11 @@ msgstr "No s'ha pogut actualitzar el grup." msgid "Group leave failed." msgstr "Perfil del grup" +#: classes/Local_group.php:41 +#, fuzzy +msgid "Could not update local group." +msgstr "No s'ha pogut actualitzar el grup." + #: classes/Login_token.php:76 #, fuzzy, php-format msgid "Could not create login token for %s" @@ -4465,28 +4506,28 @@ msgstr "No s'ha pogut inserir el missatge." msgid "Could not update message with new URI." msgstr "No s'ha pogut inserir el missatge amb la nova URI." -#: classes/Notice.php:157 +#: classes/Notice.php:172 #, php-format msgid "DB error inserting hashtag: %s" msgstr "Hashtag de l'error de la base de dades:%s" -#: classes/Notice.php:222 +#: classes/Notice.php:239 #, fuzzy msgid "Problem saving notice. Too long." msgstr "Problema en guardar l'avís." -#: classes/Notice.php:226 +#: classes/Notice.php:243 msgid "Problem saving notice. Unknown user." msgstr "Problema al guardar la notificació. Usuari desconegut." -#: classes/Notice.php:231 +#: classes/Notice.php:248 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." -#: classes/Notice.php:237 +#: classes/Notice.php:254 #, fuzzy msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " @@ -4495,20 +4536,20 @@ msgstr "" "Masses notificacions massa ràpid; pren un respir i publica de nou en uns " "minuts." -#: classes/Notice.php:243 +#: classes/Notice.php:260 msgid "You are banned from posting notices on this site." msgstr "Ha estat bandejat de publicar notificacions en aquest lloc." -#: classes/Notice.php:309 classes/Notice.php:335 +#: classes/Notice.php:326 classes/Notice.php:352 msgid "Problem saving notice." msgstr "Problema en guardar l'avís." -#: classes/Notice.php:882 +#: classes/Notice.php:911 #, fuzzy msgid "Problem saving group inbox." msgstr "Problema en guardar l'avís." -#: classes/Notice.php:1407 +#: classes/Notice.php:1442 #, fuzzy, php-format msgid "RT @%1$s %2$s" msgstr "%1$s (%2$s)" @@ -4539,19 +4580,29 @@ msgstr "No s'ha pogut eliminar la subscripció." msgid "Couldn't delete subscription." msgstr "No s'ha pogut eliminar la subscripció." -#: classes/User.php:372 +#: classes/User.php:373 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "Us donem la benvinguda a %1$s, @%2$s!" -#: classes/User_group.php:423 +#: classes/User_group.php:462 msgid "Could not create group." msgstr "No s'ha pogut crear el grup." -#: classes/User_group.php:452 +#: classes/User_group.php:471 +#, fuzzy +msgid "Could not set group URI." +msgstr "No s'ha pogut establir la pertinença d'aquest grup." + +#: classes/User_group.php:492 msgid "Could not set group membership." msgstr "No s'ha pogut establir la pertinença d'aquest grup." +#: classes/User_group.php:506 +#, fuzzy +msgid "Could not save local group info." +msgstr "No s'ha pogut guardar la subscripció." + #: lib/accountsettingsaction.php:108 msgid "Change your profile settings" msgstr "Canvieu els paràmetres del vostre perfil" @@ -4594,121 +4645,190 @@ msgstr "Pàgina sense titol" msgid "Primary site navigation" msgstr "Navegació primària del lloc" +#. TRANS: Tooltip for main menu option "Personal" #: lib/action.php:439 -msgid "Home" -msgstr "Inici" - -#: lib/action.php:439 +#, fuzzy +msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Perfil personal i línia temporal dels amics" -#: lib/action.php:441 +#: lib/action.php:442 +#, fuzzy +msgctxt "MENU" +msgid "Personal" +msgstr "Personal" + +#. TRANS: Tooltip for main menu option "Account" +#: lib/action.php:444 +#, fuzzy +msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Canviar correu electrònic, avatar, contrasenya, perfil" -#: lib/action.php:444 -msgid "Connect" -msgstr "Connexió" - -#: lib/action.php:444 +#: lib/action.php:447 #, fuzzy +msgctxt "MENU" +msgid "Account" +msgstr "Compte" + +#. TRANS: Tooltip for main menu option "Services" +#: lib/action.php:450 +#, fuzzy +msgctxt "TOOLTIP" msgid "Connect to services" msgstr "No s'ha pogut redirigir al servidor: %s" -#: lib/action.php:448 +#: lib/action.php:453 +#, fuzzy +msgctxt "MENU" +msgid "Connect" +msgstr "Connexió" + +#. TRANS: Tooltip for menu option "Admin" +#: lib/action.php:457 +#, fuzzy +msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Canvia la configuració del lloc" -#: lib/action.php:452 lib/subgroupnav.php:105 -msgid "Invite" -msgstr "Convida" +#: lib/action.php:460 +#, fuzzy +msgctxt "MENU" +msgid "Admin" +msgstr "Admin" -#: lib/action.php:453 lib/subgroupnav.php:106 -#, php-format +#. TRANS: Tooltip for main menu option "Invite" +#: lib/action.php:464 +#, fuzzy, php-format +msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Convidar amics i companys perquè participin a %s" -#: lib/action.php:458 -msgid "Logout" -msgstr "Finalitza la sessió" +#: lib/action.php:467 +#, fuzzy +msgctxt "MENU" +msgid "Invite" +msgstr "Convida" -#: lib/action.php:458 +#. TRANS: Tooltip for main menu option "Logout" +#: lib/action.php:473 +#, fuzzy +msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Finalitza la sessió del lloc" -#: lib/action.php:463 +#: lib/action.php:476 +#, fuzzy +msgctxt "MENU" +msgid "Logout" +msgstr "Finalitza la sessió" + +#. TRANS: Tooltip for main menu option "Register" +#: lib/action.php:481 +#, fuzzy +msgctxt "TOOLTIP" msgid "Create an account" msgstr "Crea un compte" -#: lib/action.php:466 +#: lib/action.php:484 +#, fuzzy +msgctxt "MENU" +msgid "Register" +msgstr "Registre" + +#. TRANS: Tooltip for main menu option "Login" +#: lib/action.php:487 +#, fuzzy +msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Inicia una sessió al lloc" -#: lib/action.php:469 lib/action.php:732 -msgid "Help" -msgstr "Ajuda" +#: lib/action.php:490 +#, fuzzy +msgctxt "MENU" +msgid "Login" +msgstr "Inici de sessió" -#: lib/action.php:469 +#. TRANS: Tooltip for main menu option "Help" +#: lib/action.php:493 +#, fuzzy +msgctxt "TOOLTIP" msgid "Help me!" msgstr "Ajuda'm" -#: lib/action.php:472 lib/searchaction.php:127 -msgid "Search" -msgstr "Cerca" +#: lib/action.php:496 +#, fuzzy +msgctxt "MENU" +msgid "Help" +msgstr "Ajuda" -#: lib/action.php:472 +#. TRANS: Tooltip for main menu option "Search" +#: lib/action.php:499 +#, fuzzy +msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Cerca gent o text" -#: lib/action.php:493 +#: lib/action.php:502 +#, fuzzy +msgctxt "MENU" +msgid "Search" +msgstr "Cerca" + +#. TRANS: DT element for site notice. String is hidden in default CSS. +#: lib/action.php:524 msgid "Site notice" msgstr "Avís del lloc" -#: lib/action.php:559 +#: lib/action.php:590 msgid "Local views" msgstr "Vistes locals" -#: lib/action.php:625 +#: lib/action.php:656 msgid "Page notice" msgstr "Notificació pàgina" -#: lib/action.php:727 +#: lib/action.php:758 msgid "Secondary site navigation" msgstr "Navegació del lloc secundària" -#: lib/action.php:734 +#: lib/action.php:763 +msgid "Help" +msgstr "Ajuda" + +#: lib/action.php:765 msgid "About" msgstr "Quant a" -#: lib/action.php:736 +#: lib/action.php:767 msgid "FAQ" msgstr "Preguntes més freqüents" -#: lib/action.php:740 +#: lib/action.php:771 msgid "TOS" msgstr "" -#: lib/action.php:743 +#: lib/action.php:774 msgid "Privacy" msgstr "Privadesa" -#: lib/action.php:745 +#: lib/action.php:776 msgid "Source" msgstr "Font" -#: lib/action.php:749 +#: lib/action.php:780 msgid "Contact" msgstr "Contacte" -#: lib/action.php:751 +#: lib/action.php:782 msgid "Badge" msgstr "Insígnia" -#: lib/action.php:779 +#: lib/action.php:810 msgid "StatusNet software license" msgstr "Llicència del programari StatusNet" -#: lib/action.php:782 +#: lib/action.php:813 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4717,12 +4837,12 @@ msgstr "" "**%%site.name%%** és un servei de microblogging de [%%site.broughtby%%**](%%" "site.broughtbyurl%%)." -#: lib/action.php:784 +#: lib/action.php:815 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** és un servei de microblogging." -#: lib/action.php:786 +#: lib/action.php:817 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4733,112 +4853,165 @@ msgstr "" "%s, disponible sota la [GNU Affero General Public License](http://www.fsf." "org/licensing/licenses/agpl-3.0.html)." -#: lib/action.php:801 +#: lib/action.php:832 msgid "Site content license" msgstr "Llicència de contingut del lloc" -#: lib/action.php:806 +#: lib/action.php:837 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:811 +#: lib/action.php:842 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:814 +#: lib/action.php:845 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" -#: lib/action.php:827 +#: lib/action.php:858 msgid "All " msgstr "Tot " -#: lib/action.php:833 +#: lib/action.php:864 msgid "license." msgstr "llicència." -#: lib/action.php:1132 +#: lib/action.php:1163 msgid "Pagination" msgstr "Paginació" -#: lib/action.php:1141 +#: lib/action.php:1172 msgid "After" msgstr "Posteriors" -#: lib/action.php:1149 +#: lib/action.php:1180 msgid "Before" msgstr "Anteriors" -#: lib/activity.php:382 +#: lib/activity.php:449 msgid "Can't handle remote content yet." msgstr "" -#: lib/activity.php:410 +#: lib/activity.php:477 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activity.php:414 +#: lib/activity.php:481 msgid "Can't handle embedded Base64 content yet." msgstr "" -#: lib/adminpanelaction.php:96 +#. TRANS: Client error message +#: lib/adminpanelaction.php:98 msgid "You cannot make changes to this site." msgstr "No podeu fer canvis al lloc." -#: lib/adminpanelaction.php:107 +#. TRANS: Client error message +#: lib/adminpanelaction.php:110 #, fuzzy msgid "Changes to that panel are not allowed." msgstr "Registre no permès." -#: lib/adminpanelaction.php:206 +#. TRANS: Client error message +#: lib/adminpanelaction.php:211 #, fuzzy msgid "showForm() not implemented." msgstr "Comanda encara no implementada." -#: lib/adminpanelaction.php:235 +#. TRANS: Client error message +#: lib/adminpanelaction.php:241 #, fuzzy msgid "saveSettings() not implemented." msgstr "Comanda encara no implementada." -#: lib/adminpanelaction.php:258 +#. TRANS: Client error message +#: lib/adminpanelaction.php:265 #, fuzzy msgid "Unable to delete design setting." msgstr "No s'ha pogut guardar la teva configuració de Twitter!" -#: lib/adminpanelaction.php:312 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:330 msgid "Basic site configuration" msgstr "Configuració bàsica del lloc" -#: lib/adminpanelaction.php:317 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:332 +#, fuzzy +msgctxt "MENU" +msgid "Site" +msgstr "Lloc" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:338 msgid "Design configuration" msgstr "Configuració del disseny" -#: lib/adminpanelaction.php:322 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:340 +#, fuzzy +msgctxt "MENU" +msgid "Design" +msgstr "Disseny" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:346 #, fuzzy msgid "User configuration" msgstr "Configuració dels camins" -#: lib/adminpanelaction.php:327 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:348 +#, fuzzy +msgctxt "MENU" +msgid "User" +msgstr "Usuari" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:354 #, fuzzy msgid "Access configuration" msgstr "Configuració del disseny" -#: lib/adminpanelaction.php:332 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:356 +#, fuzzy +msgctxt "MENU" +msgid "Access" +msgstr "Accés" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:362 msgid "Paths configuration" msgstr "Configuració dels camins" -#: lib/adminpanelaction.php:337 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:364 +#, fuzzy +msgctxt "MENU" +msgid "Paths" +msgstr "Camins" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:370 #, fuzzy msgid "Sessions configuration" msgstr "Configuració del disseny" -#: lib/apiauth.php:95 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:372 +#, fuzzy +msgctxt "MENU" +msgid "Sessions" +msgstr "Sessions" + +#: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." msgstr "" -#: lib/apiauth.php:273 +#: lib/apiauth.php:272 #, php-format msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" msgstr "" @@ -4933,11 +5106,11 @@ msgstr "" msgid "Tags for this attachment" msgstr "Etiquetes de l'adjunció" -#: lib/authenticationplugin.php:218 lib/authenticationplugin.php:223 +#: lib/authenticationplugin.php:220 lib/authenticationplugin.php:225 msgid "Password changing failed" msgstr "El canvi de contrasenya ha fallat" -#: lib/authenticationplugin.php:233 +#: lib/authenticationplugin.php:235 #, fuzzy msgid "Password changing is not allowed" msgstr "Contrasenya canviada." @@ -5217,19 +5390,19 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:136 +#: lib/common.php:148 msgid "No configuration file found. " msgstr "No s'ha trobat cap fitxer de configuració. " -#: lib/common.php:137 +#: lib/common.php:149 msgid "I looked for configuration files in the following places: " msgstr "" -#: lib/common.php:139 +#: lib/common.php:151 msgid "You may wish to run the installer to fix this." msgstr "Podeu voler executar l'instal·lador per a corregir-ho." -#: lib/common.php:140 +#: lib/common.php:152 msgid "Go to the installer." msgstr "Vés a l'instal·lador." @@ -5417,23 +5590,23 @@ msgstr "Error del sistema en pujar el fitxer." msgid "Not an image or corrupt file." msgstr "No és una imatge o és un fitxer corrupte." -#: lib/imagefile.php:105 +#: lib/imagefile.php:109 msgid "Unsupported image file format." msgstr "Format d'imatge no suportat." -#: lib/imagefile.php:118 +#: lib/imagefile.php:122 msgid "Lost our file." msgstr "Hem perdut el nostre arxiu." -#: lib/imagefile.php:150 lib/imagefile.php:197 +#: lib/imagefile.php:166 lib/imagefile.php:231 msgid "Unknown file type" msgstr "Tipus de fitxer desconegut" -#: lib/imagefile.php:217 +#: lib/imagefile.php:251 msgid "MB" msgstr "MB" -#: lib/imagefile.php:219 +#: lib/imagefile.php:253 msgid "kB" msgstr "kB" @@ -5743,6 +5916,12 @@ msgstr "A" msgid "Available characters" msgstr "Caràcters disponibles" +#: lib/messageform.php:178 lib/noticeform.php:236 +#, fuzzy +msgctxt "Send button for sending notice" +msgid "Send" +msgstr "Envia" + #: lib/noticeform.php:160 msgid "Send a notice" msgstr "Enviar notificació" @@ -5802,23 +5981,23 @@ msgstr "" msgid "at" msgstr "" -#: lib/noticelist.php:558 +#: lib/noticelist.php:566 msgid "in context" msgstr "en context" -#: lib/noticelist.php:583 +#: lib/noticelist.php:601 msgid "Repeated by" msgstr "Repetit per" -#: lib/noticelist.php:610 +#: lib/noticelist.php:628 msgid "Reply to this notice" msgstr "respondre a aquesta nota" -#: lib/noticelist.php:611 +#: lib/noticelist.php:629 msgid "Reply" msgstr "Respon" -#: lib/noticelist.php:655 +#: lib/noticelist.php:673 #, fuzzy msgid "Notice repeated" msgstr "Notificació publicada" @@ -5868,6 +6047,10 @@ msgstr "Respostes" msgid "Favorites" msgstr "Preferits" +#: lib/personalgroupnav.php:115 +msgid "User" +msgstr "Usuari" + #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "Safata d'entrada" @@ -5960,7 +6143,7 @@ msgstr "Repeteix l'avís" msgid "Repeat this notice" msgstr "Repeteix l'avís" -#: lib/router.php:665 +#: lib/router.php:668 msgid "No single user defined for single-user mode." msgstr "" @@ -5982,6 +6165,10 @@ msgstr "Cerca al lloc" msgid "Keyword(s)" msgstr "Paraules clau" +#: lib/searchaction.php:127 +msgid "Search" +msgstr "Cerca" + #: lib/searchaction.php:162 msgid "Search help" msgstr "Ajuda de la cerca" @@ -6033,6 +6220,15 @@ msgstr "Persones subscrites a %s" msgid "Groups %s is a member of" msgstr "%s grups són membres de" +#: lib/subgroupnav.php:105 +msgid "Invite" +msgstr "Convida" + +#: 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" + #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -6104,47 +6300,47 @@ msgstr "Missatge" msgid "Moderate" msgstr "Modera" -#: lib/util.php:952 +#: lib/util.php:1013 msgid "a few seconds ago" msgstr "fa pocs segons" -#: lib/util.php:954 +#: lib/util.php:1015 msgid "about a minute ago" msgstr "fa un minut" -#: lib/util.php:956 +#: lib/util.php:1017 #, php-format msgid "about %d minutes ago" msgstr "fa %d minuts" -#: lib/util.php:958 +#: lib/util.php:1019 msgid "about an hour ago" msgstr "fa una hora" -#: lib/util.php:960 +#: lib/util.php:1021 #, php-format msgid "about %d hours ago" msgstr "fa %d hores" -#: lib/util.php:962 +#: lib/util.php:1023 msgid "about a day ago" msgstr "fa un dia" -#: lib/util.php:964 +#: lib/util.php:1025 #, php-format msgid "about %d days ago" msgstr "fa %d dies" -#: lib/util.php:966 +#: lib/util.php:1027 msgid "about a month ago" msgstr "fa un mes" -#: lib/util.php:968 +#: lib/util.php:1029 #, php-format msgid "about %d months ago" msgstr "fa %d mesos" -#: lib/util.php:970 +#: lib/util.php:1031 msgid "about a year ago" msgstr "fa un any" diff --git a/locale/cs/LC_MESSAGES/statusnet.po b/locale/cs/LC_MESSAGES/statusnet.po index dd51424e69..9137d37083 100644 --- a/locale/cs/LC_MESSAGES/statusnet.po +++ b/locale/cs/LC_MESSAGES/statusnet.po @@ -9,82 +9,88 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-02-24 23:49+0000\n" -"PO-Revision-Date: 2010-02-24 23:50:18+0000\n" +"POT-Creation-Date: 2010-03-02 21:02+0000\n" +"PO-Revision-Date: 2010-03-02 21:02:27+0000\n" "Language-Team: Czech\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r62925); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: cs\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n< =4) ? 1 : 2 ;\n" -#: actions/accessadminpanel.php:54 lib/adminpanelaction.php:326 +#. TRANS: Page title +#: actions/accessadminpanel.php:55 #, fuzzy msgid "Access" msgstr "Přijmout" -#: actions/accessadminpanel.php:65 +#. TRANS: Page notice +#: actions/accessadminpanel.php:67 #, fuzzy msgid "Site access settings" msgstr "Nastavení" -#: actions/accessadminpanel.php:158 +#. TRANS: Form legend for registration form. +#: actions/accessadminpanel.php:161 #, fuzzy msgid "Registration" msgstr "Registrovat" -#: actions/accessadminpanel.php:161 -#, fuzzy -msgid "Private" -msgstr "Soukromí" - -#: actions/accessadminpanel.php:163 +#. TRANS: Checkbox instructions for admin setting "Private" +#: actions/accessadminpanel.php:165 msgid "Prohibit anonymous users (not logged in) from viewing site?" msgstr "" +#. TRANS: Checkbox label for prohibiting anonymous users from viewing site. #: actions/accessadminpanel.php:167 -msgid "Invite only" -msgstr "" +#, fuzzy +msgctxt "LABEL" +msgid "Private" +msgstr "Soukromí" -#: actions/accessadminpanel.php:169 +#. TRANS: Checkbox instructions for admin setting "Invite only" +#: actions/accessadminpanel.php:174 msgid "Make registration invitation only." msgstr "" -#: actions/accessadminpanel.php:173 +#. TRANS: Checkbox label for configuring site as invite only. +#: actions/accessadminpanel.php:176 +msgid "Invite only" +msgstr "" + +#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations) +#: actions/accessadminpanel.php:183 +msgid "Disable new registrations." +msgstr "" + +#. TRANS: Checkbox label for disabling new user registrations. +#: actions/accessadminpanel.php:185 #, fuzzy msgid "Closed" msgstr "Žádný takový uživatel." -#: actions/accessadminpanel.php:175 -msgid "Disable new registrations." -msgstr "" - -#: actions/accessadminpanel.php:189 actions/designadminpanel.php:586 -#: actions/emailsettings.php:195 actions/imsettings.php:163 -#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 -#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 -#: actions/siteadminpanel.php:336 actions/smssettings.php:181 -#: actions/subscriptions.php:208 actions/tagother.php:154 -#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 -#: lib/applicationeditform.php:334 lib/designsettings.php:256 -#: lib/groupeditform.php:202 -msgid "Save" -msgstr "Uložit" - -#: actions/accessadminpanel.php:189 +#. TRANS: Title / tooltip for button to save access settings in site admin panel +#: actions/accessadminpanel.php:202 #, fuzzy msgid "Save access settings" msgstr "Nastavení" -#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 -#: actions/showfavorites.php:137 actions/tag.php:51 +#: actions/accessadminpanel.php:203 +#, fuzzy +msgctxt "BUTTON" +msgid "Save" +msgstr "Uložit" + +#. TRANS: Server error when page not found (404) +#: actions/all.php:64 actions/public.php:98 actions/replies.php:93 +#: actions/showfavorites.php:138 actions/tag.php:52 #, fuzzy msgid "No such page" msgstr "Žádné takové oznámení." -#: actions/all.php:74 actions/allrss.php:68 +#: actions/all.php:75 actions/allrss.php:68 #: actions/apiaccountupdatedeliverydevice.php:113 #: actions/apiaccountupdateprofile.php:105 #: actions/apiaccountupdateprofilebackgroundimage.php:116 @@ -98,72 +104,82 @@ msgstr "Žádné takové oznámení." #: actions/apitimelinehome.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/otp.php:76 -#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154 -#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 -#: actions/showfavorites.php:105 actions/userbyid.php:74 -#: actions/usergroups.php:91 actions/userrss.php:38 actions/xrds.php:71 -#: lib/command.php:163 lib/command.php:302 lib/command.php:355 -#: lib/command.php:401 lib/command.php:462 lib/command.php:518 -#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 +#: actions/hcard.php:67 actions/microsummary.php:62 actions/newmessage.php:116 +#: actions/otp.php:76 actions/remotesubscribe.php:145 +#: actions/remotesubscribe.php:154 actions/replies.php:73 +#: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/xrds.php:71 lib/command.php:163 lib/command.php:302 +#: lib/command.php:355 lib/command.php:401 lib/command.php:462 +#: lib/command.php:518 lib/galleryaction.php:59 lib/mailbox.php:82 +#: lib/profileaction.php:77 msgid "No such user." msgstr "Žádný takový uživatel." -#: actions/all.php:84 +#. TRANS: Page title. %1$s is user nickname, %2$d is page number +#: actions/all.php:86 #, fuzzy, php-format msgid "%1$s and friends, page %2$d" msgstr "%s a přátelé" -#: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 +#. TRANS: Page title. %1$s is user nickname +#. TRANS: H1 text. %1$s is user nickname +#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" msgstr "%s a přátelé" -#: actions/all.php:99 +#. TRANS: %1$s is user nickname +#: actions/all.php:103 #, fuzzy, php-format msgid "Feed for friends of %s (RSS 1.0)" msgstr "Feed přítel uživatele: %s" -#: actions/all.php:107 +#. TRANS: %1$s is user nickname +#: actions/all.php:112 #, fuzzy, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "Feed přítel uživatele: %s" -#: actions/all.php:115 +#. TRANS: %1$s is user nickname +#: actions/all.php:121 #, fuzzy, php-format msgid "Feed for friends of %s (Atom)" msgstr "Feed přítel uživatele: %s" -#: actions/all.php:127 +#. TRANS: %1$s is user nickname +#: actions/all.php:134 #, php-format msgid "" "This is the timeline for %s and friends but no one has posted anything yet." msgstr "" -#: actions/all.php:132 +#: actions/all.php:139 #, php-format msgid "" "Try subscribing to more people, [join a group](%%action.groups%%) or post " "something yourself." msgstr "" -#: actions/all.php:134 +#. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@" +#: actions/all.php:142 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) from his profile or [post something to " "his or her attention](%%%%action.newnotice%%%%?status_textarea=%3$s)." msgstr "" -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211 +#: actions/all.php:145 actions/replies.php:210 actions/showstream.php:211 #, 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/all.php:165 +#. TRANS: H1 text +#: actions/all.php:174 #, fuzzy msgid "You and friends" msgstr "%s a přátelé" @@ -182,20 +198,20 @@ msgstr "" #: actions/apiaccountverifycredentials.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:128 actions/apigroupcreate.php:136 +#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: actions/apigroupleave.php:141 actions/apigrouplist.php:132 #: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 #: actions/apigroupshow.php:115 actions/apihelptest.php:88 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 -#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184 +#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 #: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:207 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 #, fuzzy msgid "API method not found." msgstr "Potvrzující kód nebyl nalezen" @@ -229,8 +245,9 @@ msgstr "Nelze aktualizovat uživatele" #: actions/apiaccountupdateprofilebackgroundimage.php:194 #: actions/apiaccountupdateprofilecolors.php:185 #: 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 +#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 +#: 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." @@ -255,7 +272,7 @@ msgstr "" #: actions/apiaccountupdateprofilebackgroundimage.php:146 #: actions/apiaccountupdateprofilecolors.php:164 #: actions/apiaccountupdateprofilecolors.php:174 -#: actions/groupdesignsettings.php:287 actions/groupdesignsettings.php:297 +#: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300 #: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 #: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 msgid "Unable to save your design settings." @@ -372,68 +389,68 @@ msgstr "Nelze aktualizovat uživatele" msgid "Could not find target user." msgstr "Nelze aktualizovat uživatele" -#: actions/apigroupcreate.php:164 actions/editgroup.php:182 +#: actions/apigroupcreate.php:166 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:215 #: 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/apigroupcreate.php:173 actions/editgroup.php:186 +#: actions/apigroupcreate.php:175 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:238 #: actions/register.php:208 msgid "Nickname already in use. Try another one." msgstr "Přezdívku již někdo používá. Zkuste jinou" -#: actions/apigroupcreate.php:180 actions/editgroup.php:189 +#: actions/apigroupcreate.php:182 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:218 #: actions/register.php:210 msgid "Not a valid nickname." msgstr "Není platnou přezdívkou." -#: actions/apigroupcreate.php:196 actions/editapplication.php:215 -#: actions/editgroup.php:195 actions/newapplication.php:203 +#: actions/apigroupcreate.php:198 actions/editapplication.php:215 +#: actions/editgroup.php:199 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:217 msgid "Homepage is not a valid URL." msgstr "Stránka není platnou URL." -#: actions/apigroupcreate.php:205 actions/editgroup.php:198 +#: actions/apigroupcreate.php:207 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:225 #: 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/apigroupcreate.php:213 actions/editapplication.php:190 +#: actions/apigroupcreate.php:215 actions/editapplication.php:190 #: actions/newapplication.php:172 #, 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/apigroupcreate.php:224 actions/editgroup.php:204 +#: actions/apigroupcreate.php:226 actions/editgroup.php:208 #: actions/newgroup.php:148 actions/profilesettings.php:232 #: actions/register.php:227 msgid "Location is too long (max 255 chars)." msgstr "Umístění příliš dlouhé (maximálně 255 znaků)" -#: actions/apigroupcreate.php:243 actions/editgroup.php:215 +#: actions/apigroupcreate.php:245 actions/editgroup.php:219 #: actions/newgroup.php:159 #, php-format msgid "Too many aliases! Maximum %d." msgstr "" -#: actions/apigroupcreate.php:264 actions/editgroup.php:224 +#: actions/apigroupcreate.php:266 actions/editgroup.php:228 #: actions/newgroup.php:168 #, fuzzy, php-format msgid "Invalid alias: \"%s\"" msgstr "Neplatná adresa '%s'" -#: actions/apigroupcreate.php:273 actions/editgroup.php:228 +#: actions/apigroupcreate.php:275 actions/editgroup.php:232 #: 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/apigroupcreate.php:286 actions/editgroup.php:234 +#: actions/apigroupcreate.php:288 actions/editgroup.php:238 #: actions/newgroup.php:178 msgid "Alias can't be the same as nickname." msgstr "" @@ -445,16 +462,16 @@ msgstr "" msgid "Group not found!" msgstr "Žádný požadavek nebyl nalezen!" -#: actions/apigroupjoin.php:110 actions/joingroup.php:90 +#: actions/apigroupjoin.php:110 actions/joingroup.php:100 #, fuzzy msgid "You are already a member of that group." msgstr "Již jste přihlášen" -#: actions/apigroupjoin.php:119 actions/joingroup.php:95 lib/command.php:221 +#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:221 msgid "You have been blocked from that group by the admin." msgstr "" -#: actions/apigroupjoin.php:138 actions/joingroup.php:124 +#: actions/apigroupjoin.php:138 actions/joingroup.php:134 #, fuzzy, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Nelze přesměrovat na server: %s" @@ -464,7 +481,7 @@ msgstr "Nelze přesměrovat na server: %s" msgid "You are not a member of this group." msgstr "Neodeslal jste nám profil" -#: actions/apigroupleave.php:124 actions/leavegroup.php:119 +#: actions/apigroupleave.php:124 actions/leavegroup.php:129 #, fuzzy, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "Nelze vytvořit OpenID z: %s" @@ -496,7 +513,7 @@ msgstr "Neplatná velikost" #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 #: actions/deletenotice.php:157 actions/disfavor.php:74 #: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54 -#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupblock.php:66 actions/grouplogo.php:312 #: actions/groupunblock.php:66 actions/imsettings.php:206 #: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 @@ -540,7 +557,7 @@ msgstr "" #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:103 actions/editapplication.php:139 -#: actions/emailsettings.php:256 actions/grouplogo.php:319 +#: actions/emailsettings.php:256 actions/grouplogo.php:322 #: actions/imsettings.php:220 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 #: actions/smssettings.php:248 lib/designsettings.php:304 @@ -563,14 +580,14 @@ msgid "" "give access to your %4$s account to third parties you trust." msgstr "" -#: actions/apioauthauthorize.php:310 lib/action.php:441 +#: actions/apioauthauthorize.php:310 #, fuzzy msgid "Account" msgstr "O nás" #: actions/apioauthauthorize.php:313 actions/login.php:230 #: actions/profilesettings.php:106 actions/register.php:424 -#: actions/showgroup.php:236 actions/tagother.php:94 +#: actions/showgroup.php:244 actions/tagother.php:94 #: actions/userauthorization.php:145 lib/groupeditform.php:152 #: lib/userprofile.php:131 msgid "Nickname" @@ -657,12 +674,12 @@ msgid "%1$s updates favorited by %2$s / %2$s." msgstr "Mikroblog od %s" #: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:131 actions/userrss.php:90 +#: actions/grouprss.php:138 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "" -#: actions/apitimelinegroup.php:114 actions/apitimelineuser.php:126 +#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 #: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" @@ -698,7 +715,7 @@ msgstr "Odpovědi na %s" msgid "Repeats of %s" msgstr "Odpovědi na %s" -#: actions/apitimelinetag.php:102 actions/tag.php:66 +#: actions/apitimelinetag.php:102 actions/tag.php:67 #, php-format msgid "Notices tagged with %s" msgstr "" @@ -721,8 +738,7 @@ msgstr "Žádný takový dokument." #: actions/avatarbynickname.php:59 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/leavegroup.php:76 -#: actions/showgroup.php:121 +#: actions/grouprss.php:91 actions/showgroup.php:121 msgid "No nickname." msgstr "Žádná přezdívka." @@ -734,7 +750,7 @@ msgstr "Žádná velikost" msgid "Invalid size." msgstr "Neplatná velikost" -#: actions/avatarsettings.php:67 actions/showgroup.php:221 +#: actions/avatarsettings.php:67 actions/showgroup.php:229 #: lib/accountsettingsaction.php:112 msgid "Avatar" msgstr "Obrázek" @@ -751,31 +767,31 @@ msgid "User without matching profile" msgstr "" #: actions/avatarsettings.php:119 actions/avatarsettings.php:197 -#: actions/grouplogo.php:251 +#: actions/grouplogo.php:254 #, fuzzy msgid "Avatar settings" msgstr "Nastavení" #: actions/avatarsettings.php:127 actions/avatarsettings.php:205 -#: actions/grouplogo.php:199 actions/grouplogo.php:259 +#: actions/grouplogo.php:202 actions/grouplogo.php:262 msgid "Original" msgstr "" #: actions/avatarsettings.php:142 actions/avatarsettings.php:217 -#: actions/grouplogo.php:210 actions/grouplogo.php:271 +#: actions/grouplogo.php:213 actions/grouplogo.php:274 msgid "Preview" msgstr "" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:637 +#: lib/deleteuserform.php:66 lib/noticelist.php:655 msgid "Delete" msgstr "Odstranit" -#: actions/avatarsettings.php:166 actions/grouplogo.php:233 +#: actions/avatarsettings.php:166 actions/grouplogo.php:236 msgid "Upload" msgstr "Upload" -#: actions/avatarsettings.php:231 actions/grouplogo.php:286 +#: actions/avatarsettings.php:231 actions/grouplogo.php:289 msgid "Crop" msgstr "" @@ -783,7 +799,7 @@ msgstr "" msgid "Pick a square area of the image to be your avatar" msgstr "" -#: actions/avatarsettings.php:343 actions/grouplogo.php:377 +#: actions/avatarsettings.php:343 actions/grouplogo.php:380 msgid "Lost our file data." msgstr "" @@ -817,23 +833,23 @@ msgid "" msgstr "" #: actions/block.php:143 actions/deleteapplication.php:153 -#: actions/deletenotice.php:145 actions/deleteuser.php:147 +#: actions/deletenotice.php:145 actions/deleteuser.php:150 #: actions/groupblock.php:178 msgid "No" msgstr "Ne" -#: actions/block.php:143 actions/deleteuser.php:147 +#: actions/block.php:143 actions/deleteuser.php:150 #, fuzzy msgid "Do not block this user" msgstr "Žádný takový uživatel." #: actions/block.php:144 actions/deleteapplication.php:158 -#: actions/deletenotice.php:146 actions/deleteuser.php:148 +#: actions/deletenotice.php:146 actions/deleteuser.php:151 #: actions/groupblock.php:179 lib/repeatform.php:132 msgid "Yes" msgstr "Ano" -#: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:355 lib/blockform.php:80 msgid "Block this user" msgstr "Zablokovat tohoto uživatele" @@ -841,41 +857,45 @@ msgstr "Zablokovat tohoto uživatele" msgid "Failed to save block information." msgstr "" -#: actions/blockedfromgroup.php:80 actions/editgroup.php:96 -#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/groupblock.php:86 -#: actions/groupbyid.php:83 actions/groupdesignsettings.php:97 -#: actions/grouplogo.php:99 actions/groupmembers.php:83 -#: actions/grouprss.php:98 actions/groupunblock.php:86 -#: actions/joingroup.php:83 actions/leavegroup.php:83 actions/makeadmin.php:86 -#: actions/showgroup.php:137 lib/command.php:212 lib/command.php:260 +#: actions/blockedfromgroup.php:80 actions/blockedfromgroup.php:87 +#: actions/editgroup.php:100 actions/foafgroup.php:44 actions/foafgroup.php:62 +#: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:100 actions/grouplogo.php:102 +#: actions/groupmembers.php:83 actions/groupmembers.php:90 +#: actions/grouprss.php:98 actions/grouprss.php:105 +#: actions/groupunblock.php:86 actions/joingroup.php:82 +#: actions/joingroup.php:93 actions/leavegroup.php:82 +#: actions/leavegroup.php:93 actions/makeadmin.php:86 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:212 +#: lib/command.php:260 #, fuzzy msgid "No such group." msgstr "Žádné takové oznámení." -#: actions/blockedfromgroup.php:90 +#: actions/blockedfromgroup.php:97 #, fuzzy, php-format msgid "%s blocked profiles" msgstr "Uživatel nemá profil." -#: actions/blockedfromgroup.php:93 +#: actions/blockedfromgroup.php:100 #, fuzzy, php-format msgid "%1$s blocked profiles, page %2$d" msgstr "%s a přátelé" -#: actions/blockedfromgroup.php:108 +#: actions/blockedfromgroup.php:115 msgid "A list of the users blocked from joining this group." msgstr "" -#: actions/blockedfromgroup.php:281 +#: actions/blockedfromgroup.php:288 #, fuzzy msgid "Unblock user from group" msgstr "Žádný takový uživatel." -#: actions/blockedfromgroup.php:313 lib/unblockform.php:69 +#: actions/blockedfromgroup.php:320 lib/unblockform.php:69 msgid "Unblock" msgstr "" -#: actions/blockedfromgroup.php:313 lib/unblockform.php:80 +#: actions/blockedfromgroup.php:320 lib/unblockform.php:80 #, fuzzy msgid "Unblock this user" msgstr "Žádný takový uživatel." @@ -956,7 +976,7 @@ msgstr "Neodeslal jste nám profil" #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1197 +#: lib/action.php:1228 msgid "There was a problem with your session token." msgstr "" @@ -982,12 +1002,13 @@ msgstr "Žádné takové oznámení." msgid "Delete this application" msgstr "Odstranit toto oznámení" +#. TRANS: Client error message #: 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:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 -#: lib/adminpanelaction.php:72 lib/profileformaction.php:63 +#: lib/adminpanelaction.php:73 lib/profileformaction.php:63 #: lib/settingsaction.php:72 msgid "Not logged in." msgstr "Nepřihlášen" @@ -1015,7 +1036,7 @@ msgstr "" msgid "Do not delete this notice" msgstr "Žádné takové oznámení." -#: actions/deletenotice.php:146 lib/noticelist.php:637 +#: actions/deletenotice.php:146 lib/noticelist.php:655 msgid "Delete this notice" msgstr "Odstranit toto oznámení" @@ -1033,18 +1054,18 @@ msgstr "Můžete použít místní odebírání." msgid "Delete user" msgstr "" -#: actions/deleteuser.php:135 +#: actions/deleteuser.php:136 msgid "" "Are you sure you want to delete this user? This will clear all data about " "the user from the database, without a backup." msgstr "" -#: actions/deleteuser.php:148 lib/deleteuserform.php:77 +#: actions/deleteuser.php:151 lib/deleteuserform.php:77 msgid "Delete this user" msgstr "Odstranit tohoto uživatele" #: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 -#: lib/adminpanelaction.php:316 lib/groupnav.php:119 +#: lib/groupnav.php:119 msgid "Design" msgstr "Vzhled" @@ -1151,6 +1172,17 @@ msgstr "" msgid "Reset back to default" msgstr "" +#: actions/designadminpanel.php:586 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/tagother.php:154 actions/useradminpanel.php:294 +#: lib/applicationeditform.php:333 lib/applicationeditform.php:334 +#: lib/designsettings.php:256 lib/groupeditform.php:202 +msgid "Save" +msgstr "Uložit" + #: actions/designadminpanel.php:587 lib/designsettings.php:257 msgid "Save design" msgstr "" @@ -1250,31 +1282,31 @@ msgstr "Upravit %s skupinu" msgid "You must be logged in to create a group." msgstr "" -#: actions/editgroup.php:103 actions/editgroup.php:168 -#: actions/groupdesignsettings.php:104 actions/grouplogo.php:106 +#: actions/editgroup.php:107 actions/editgroup.php:172 +#: actions/groupdesignsettings.php:107 actions/grouplogo.php:109 msgid "You must be an admin to edit the group." msgstr "" -#: actions/editgroup.php:154 +#: actions/editgroup.php:158 msgid "Use this form to edit the group." msgstr "" -#: actions/editgroup.php:201 actions/newgroup.php:145 +#: actions/editgroup.php:205 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/editgroup.php:253 +#: actions/editgroup.php:258 #, fuzzy msgid "Could not update group." msgstr "Nelze aktualizovat uživatele" -#: actions/editgroup.php:259 classes/User_group.php:433 +#: actions/editgroup.php:264 classes/User_group.php:478 #, fuzzy msgid "Could not create aliases." msgstr "Nelze uložin informace o obrázku" -#: actions/editgroup.php:269 +#: actions/editgroup.php:280 msgid "Options saved." msgstr "Nastavení uloženo." @@ -1618,7 +1650,7 @@ msgstr "Uživatel nemá profil." msgid "User is not a member of group." msgstr "Neodeslal jste nám profil" -#: actions/groupblock.php:136 actions/groupmembers.php:316 +#: actions/groupblock.php:136 actions/groupmembers.php:323 #, fuzzy msgid "Block user from group" msgstr "Žádný takový uživatel." @@ -1654,91 +1686,91 @@ msgstr "Žádné id" msgid "You must be logged in to edit a group." msgstr "" -#: actions/groupdesignsettings.php:141 +#: actions/groupdesignsettings.php:144 msgid "Group design" msgstr "" -#: actions/groupdesignsettings.php:152 +#: actions/groupdesignsettings.php:155 msgid "" "Customize the way your group looks with a background image and a colour " "palette of your choice." msgstr "" -#: actions/groupdesignsettings.php:263 actions/userdesignsettings.php:186 +#: actions/groupdesignsettings.php:266 actions/userdesignsettings.php:186 #: lib/designsettings.php:391 lib/designsettings.php:413 #, fuzzy msgid "Couldn't update your design." msgstr "Nelze aktualizovat uživatele" -#: actions/groupdesignsettings.php:308 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231 #, fuzzy msgid "Design preferences saved." msgstr "Nastavení uloženo" -#: actions/grouplogo.php:139 actions/grouplogo.php:192 +#: actions/grouplogo.php:142 actions/grouplogo.php:195 msgid "Group logo" msgstr "Logo skupiny" -#: actions/grouplogo.php:150 +#: actions/grouplogo.php:153 #, php-format msgid "" "You can upload a logo image for your group. The maximum file size is %s." msgstr "" -#: actions/grouplogo.php:178 +#: actions/grouplogo.php:181 #, fuzzy msgid "User without matching profile." msgstr "Uživatel nemá profil." -#: actions/grouplogo.php:362 +#: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." msgstr "" -#: actions/grouplogo.php:396 +#: actions/grouplogo.php:399 #, fuzzy msgid "Logo updated." msgstr "Obrázek nahrán" -#: actions/grouplogo.php:398 +#: actions/grouplogo.php:401 #, fuzzy msgid "Failed updating logo." msgstr "Nahrávání obrázku selhalo." -#: actions/groupmembers.php:93 lib/groupnav.php:92 +#: actions/groupmembers.php:100 lib/groupnav.php:92 #, php-format msgid "%s group members" msgstr "" -#: actions/groupmembers.php:96 +#: actions/groupmembers.php:103 #, php-format msgid "%1$s group members, page %2$d" msgstr "" -#: actions/groupmembers.php:111 +#: actions/groupmembers.php:118 msgid "A list of the users in this group." msgstr "" -#: actions/groupmembers.php:175 lib/action.php:448 lib/groupnav.php:107 +#: actions/groupmembers.php:182 lib/groupnav.php:107 msgid "Admin" msgstr "" -#: actions/groupmembers.php:348 lib/blockform.php:69 +#: actions/groupmembers.php:355 lib/blockform.php:69 msgid "Block" msgstr "" -#: actions/groupmembers.php:443 +#: actions/groupmembers.php:450 msgid "Make user an admin of the group" msgstr "" -#: actions/groupmembers.php:475 +#: actions/groupmembers.php:482 msgid "Make Admin" msgstr "" -#: actions/groupmembers.php:475 +#: actions/groupmembers.php:482 msgid "Make this user an admin" msgstr "" -#: actions/grouprss.php:133 +#: actions/grouprss.php:140 #, fuzzy, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Mikroblog od %s" @@ -1992,16 +2024,19 @@ msgstr "" msgid "Optionally add a personal message to the invitation." msgstr "" -#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:236 +#. TRANS: Send button for inviting friends +#: actions/invite.php:198 +#, fuzzy +msgctxt "BUTTON" msgid "Send" msgstr "Odeslat" -#: actions/invite.php:226 +#: actions/invite.php:227 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "" -#: actions/invite.php:228 +#: actions/invite.php:229 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -2036,7 +2071,12 @@ msgstr "" msgid "You must be logged in to join a group." msgstr "" -#: actions/joingroup.php:131 +#: actions/joingroup.php:88 actions/leavegroup.php:88 +#, fuzzy +msgid "No nickname or ID." +msgstr "Žádná přezdívka." + +#: actions/joingroup.php:141 #, php-format msgid "%1$s joined group %2$s" msgstr "" @@ -2045,12 +2085,12 @@ msgstr "" msgid "You must be logged in to leave a group." msgstr "" -#: actions/leavegroup.php:90 lib/command.php:265 +#: actions/leavegroup.php:100 lib/command.php:265 #, fuzzy msgid "You are not a member of that group." msgstr "Neodeslal jste nám profil" -#: actions/leavegroup.php:127 +#: actions/leavegroup.php:137 #, fuzzy, php-format msgid "%1$s left group %2$s" msgstr "%1 statusů na %2" @@ -2068,8 +2108,7 @@ msgstr "Neplatné jméno nebo heslo" msgid "Error setting user. You are probably not authorized." msgstr "Neautorizován." -#: actions/login.php:188 actions/login.php:241 lib/action.php:466 -#: lib/logingroupnav.php:79 +#: actions/login.php:188 actions/login.php:241 lib/logingroupnav.php:79 msgid "Login" msgstr "Přihlásit" @@ -2318,8 +2357,8 @@ msgstr "Připojit" msgid "Only " msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 -#: lib/api.php:1068 lib/api.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 +#: lib/apiaction.php:1068 lib/apiaction.php:1177 msgid "Not a supported data format." msgstr "" @@ -2467,7 +2506,7 @@ msgstr "Nelze uložit nové heslo" msgid "Password saved." msgstr "Heslo uloženo" -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:331 +#: actions/pathsadminpanel.php:59 msgid "Paths" msgstr "" @@ -2500,7 +2539,6 @@ msgid "Invalid SSL server. The maximum length is 255 characters." msgstr "" #: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58 -#: lib/adminpanelaction.php:311 msgid "Site" msgstr "" @@ -2683,7 +2721,7 @@ msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1-64 znaků nebo čísel, bez teček, čárek a mezer" #: actions/profilesettings.php:111 actions/register.php:448 -#: actions/showgroup.php:247 actions/tagother.php:104 +#: actions/showgroup.php:255 actions/tagother.php:104 #: lib/groupeditform.php:157 lib/userprofile.php:149 msgid "Full name" msgstr "Celé jméno" @@ -2711,7 +2749,7 @@ msgid "Bio" msgstr "O mě" #: actions/profilesettings.php:132 actions/register.php:471 -#: actions/showgroup.php:256 actions/tagother.php:112 +#: actions/showgroup.php:264 actions/tagother.php:112 #: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:164 msgid "Location" @@ -2793,7 +2831,8 @@ msgstr "Nelze uložit profil" msgid "Couldn't save tags." msgstr "Nelze uložit profil" -#: actions/profilesettings.php:391 lib/adminpanelaction.php:137 +#. TRANS: Message after successful saving of administrative settings. +#: actions/profilesettings.php:391 lib/adminpanelaction.php:141 msgid "Settings saved." msgstr "Nastavení uloženo" @@ -2806,48 +2845,48 @@ msgstr "" msgid "Could not retrieve public stream." msgstr "" -#: actions/public.php:129 +#: actions/public.php:130 #, fuzzy, php-format msgid "Public timeline, page %d" msgstr "Veřejné zprávy" -#: actions/public.php:131 lib/publicgroupnav.php:79 +#: actions/public.php:132 lib/publicgroupnav.php:79 msgid "Public timeline" msgstr "Veřejné zprávy" -#: actions/public.php:159 +#: actions/public.php:160 #, fuzzy msgid "Public Stream Feed (RSS 1.0)" msgstr "Veřejný Stream Feed" -#: actions/public.php:163 +#: actions/public.php:164 #, fuzzy msgid "Public Stream Feed (RSS 2.0)" msgstr "Veřejný Stream Feed" -#: actions/public.php:167 +#: actions/public.php:168 #, fuzzy msgid "Public Stream Feed (Atom)" msgstr "Veřejný Stream Feed" -#: actions/public.php:187 +#: actions/public.php:188 #, php-format msgid "" "This is the public timeline for %%site.name%% but no one has posted anything " "yet." msgstr "" -#: actions/public.php:190 +#: actions/public.php:191 msgid "Be the first to post!" msgstr "" -#: actions/public.php:194 +#: actions/public.php:195 #, php-format msgid "" "Why not [register an account](%%action.register%%) and be the first to post!" msgstr "" -#: actions/public.php:241 +#: actions/public.php:242 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2856,7 +2895,7 @@ msgid "" "friends, family, and colleagues! ([Read more](%%doc.help%%))" msgstr "" -#: actions/public.php:246 +#: actions/public.php:247 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -3029,8 +3068,7 @@ msgstr "Chyba v ověřovacím kódu" msgid "Registration successful" msgstr "Registrace úspěšná" -#: actions/register.php:114 actions/register.php:503 lib/action.php:463 -#: lib/logingroupnav.php:85 +#: actions/register.php:114 actions/register.php:503 lib/logingroupnav.php:85 msgid "Register" msgstr "Registrovat" @@ -3201,7 +3239,7 @@ msgstr "Nemůžete se registrovat, pokud nesouhlasíte s licencí." msgid "You already repeated that notice." msgstr "Již jste přihlášen" -#: actions/repeat.php:114 lib/noticelist.php:656 +#: actions/repeat.php:114 lib/noticelist.php:674 #, fuzzy msgid "Repeated" msgstr "Vytvořit" @@ -3211,47 +3249,47 @@ msgstr "Vytvořit" msgid "Repeated!" msgstr "Vytvořit" -#: actions/replies.php:125 actions/repliesrss.php:68 +#: actions/replies.php:126 actions/repliesrss.php:68 #: lib/personalgroupnav.php:105 #, php-format msgid "Replies to %s" msgstr "Odpovědi na %s" -#: actions/replies.php:127 +#: actions/replies.php:128 #, fuzzy, php-format msgid "Replies to %1$s, page %2$d" msgstr "Odpovědi na %s" -#: actions/replies.php:144 +#: actions/replies.php:145 #, fuzzy, php-format msgid "Replies feed for %s (RSS 1.0)" msgstr "Feed sdělení pro %s" -#: actions/replies.php:151 +#: actions/replies.php:152 #, fuzzy, php-format msgid "Replies feed for %s (RSS 2.0)" msgstr "Feed sdělení pro %s" -#: actions/replies.php:158 +#: actions/replies.php:159 #, fuzzy, php-format msgid "Replies feed for %s (Atom)" msgstr "Feed sdělení pro %s" -#: actions/replies.php:198 +#: actions/replies.php:199 #, php-format msgid "" "This is the timeline showing replies to %1$s but %2$s hasn't received a " "notice to his attention yet." msgstr "" -#: actions/replies.php:203 +#: actions/replies.php:204 #, php-format msgid "" "You can engage other users in a conversation, subscribe to more people or " "[join groups](%%action.groups%%)." msgstr "" -#: actions/replies.php:205 +#: actions/replies.php:206 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) or [post something to his or her " @@ -3279,7 +3317,6 @@ msgid "User is already sandboxed." msgstr "Uživatel nemá profil." #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:336 msgid "Sessions" msgstr "" @@ -3304,7 +3341,7 @@ msgid "Turn on debugging output for sessions." msgstr "" #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/useradminpanel.php:293 +#: actions/useradminpanel.php:294 #, fuzzy msgid "Save site settings" msgstr "Nastavení" @@ -3339,7 +3376,7 @@ msgstr "Umístění" msgid "Description" msgstr "Odběry" -#: actions/showapplication.php:192 actions/showgroup.php:429 +#: actions/showapplication.php:192 actions/showgroup.php:437 #: lib/profileaction.php:174 msgid "Statistics" msgstr "Statistiky" @@ -3400,35 +3437,35 @@ msgstr "%s a přátelé" msgid "Could not retrieve favorite notices." msgstr "" -#: actions/showfavorites.php:170 +#: actions/showfavorites.php:171 #, fuzzy, php-format msgid "Feed for favorites of %s (RSS 1.0)" msgstr "Feed přítel uživatele: %s" -#: actions/showfavorites.php:177 +#: actions/showfavorites.php:178 #, fuzzy, php-format msgid "Feed for favorites of %s (RSS 2.0)" msgstr "Feed přítel uživatele: %s" -#: actions/showfavorites.php:184 +#: actions/showfavorites.php:185 #, fuzzy, php-format msgid "Feed for favorites of %s (Atom)" msgstr "Feed přítel uživatele: %s" -#: actions/showfavorites.php:205 +#: actions/showfavorites.php:206 msgid "" "You haven't chosen any favorite notices yet. Click the fave button on " "notices you like to bookmark them for later or shed a spotlight on them." msgstr "" -#: actions/showfavorites.php:207 +#: actions/showfavorites.php:208 #, 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:211 +#: actions/showfavorites.php:212 #, php-format msgid "" "%s hasn't added any notices to his favorites yet. Why not [register an " @@ -3436,7 +3473,7 @@ msgid "" "would add to their favorites :)" msgstr "" -#: actions/showfavorites.php:242 +#: actions/showfavorites.php:243 msgid "This is a way to share what you like." msgstr "" @@ -3450,70 +3487,70 @@ msgstr "" msgid "%1$s group, page %2$d" msgstr "Všechny odběry" -#: actions/showgroup.php:218 +#: actions/showgroup.php:226 #, fuzzy msgid "Group profile" msgstr "Žádné takové oznámení." -#: actions/showgroup.php:263 actions/tagother.php:118 +#: actions/showgroup.php:271 actions/tagother.php:118 #: actions/userauthorization.php:175 lib/userprofile.php:177 msgid "URL" msgstr "" -#: actions/showgroup.php:274 actions/tagother.php:128 +#: actions/showgroup.php:282 actions/tagother.php:128 #: actions/userauthorization.php:187 lib/userprofile.php:194 msgid "Note" msgstr "Poznámka" -#: actions/showgroup.php:284 lib/groupeditform.php:184 +#: actions/showgroup.php:292 lib/groupeditform.php:184 msgid "Aliases" msgstr "" -#: actions/showgroup.php:293 +#: actions/showgroup.php:301 msgid "Group actions" msgstr "" -#: actions/showgroup.php:328 +#: actions/showgroup.php:336 #, fuzzy, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Feed sdělení pro %s" -#: actions/showgroup.php:334 +#: actions/showgroup.php:342 #, fuzzy, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Feed sdělení pro %s" -#: actions/showgroup.php:340 +#: actions/showgroup.php:348 #, fuzzy, php-format msgid "Notice feed for %s group (Atom)" msgstr "Feed sdělení pro %s" -#: actions/showgroup.php:345 +#: actions/showgroup.php:353 #, 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:91 +#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 #, fuzzy msgid "Members" msgstr "Členem od" -#: actions/showgroup.php:386 lib/profileaction.php:117 +#: actions/showgroup.php:394 lib/profileaction.php:117 #: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "" -#: actions/showgroup.php:392 +#: actions/showgroup.php:400 msgid "All members" msgstr "" -#: actions/showgroup.php:432 +#: actions/showgroup.php:440 #, fuzzy msgid "Created" msgstr "Vytvořit" -#: actions/showgroup.php:448 +#: actions/showgroup.php:456 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3523,7 +3560,7 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showgroup.php:454 +#: actions/showgroup.php:462 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3532,7 +3569,7 @@ msgid "" "their life and interests. " msgstr "" -#: actions/showgroup.php:482 +#: actions/showgroup.php:490 msgid "Admins" msgstr "" @@ -3994,22 +4031,22 @@ msgstr "Žádné Jabber ID." msgid "SMS" msgstr "" -#: actions/tag.php:68 +#: actions/tag.php:69 #, fuzzy, php-format msgid "Notices tagged with %1$s, page %2$d" msgstr "Mikroblog od %s" -#: actions/tag.php:86 +#: actions/tag.php:87 #, fuzzy, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Feed sdělení pro %s" -#: actions/tag.php:92 +#: actions/tag.php:93 #, fuzzy, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Feed sdělení pro %s" -#: actions/tag.php:98 +#: actions/tag.php:99 #, fuzzy, php-format msgid "Notice feed for tag %s (Atom)" msgstr "Feed sdělení pro %s" @@ -4063,7 +4100,7 @@ msgstr "" msgid "No such tag." msgstr "Žádné takové oznámení." -#: actions/twitapitrends.php:87 +#: actions/twitapitrends.php:85 msgid "API method under construction." msgstr "" @@ -4098,73 +4135,74 @@ msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" -#: actions/useradminpanel.php:58 lib/adminpanelaction.php:321 -#: lib/personalgroupnav.php:115 +#. TRANS: User admin panel title +#: actions/useradminpanel.php:59 +msgctxt "TITLE" msgid "User" msgstr "" -#: actions/useradminpanel.php:69 +#: actions/useradminpanel.php:70 msgid "User settings for this StatusNet site." msgstr "" -#: actions/useradminpanel.php:148 +#: actions/useradminpanel.php:149 msgid "Invalid bio limit. Must be numeric." msgstr "" -#: actions/useradminpanel.php:154 +#: actions/useradminpanel.php:155 msgid "Invalid welcome text. Max length is 255 characters." msgstr "" -#: actions/useradminpanel.php:164 +#: actions/useradminpanel.php:165 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" -#: actions/useradminpanel.php:217 lib/accountsettingsaction.php:108 +#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Profil" -#: actions/useradminpanel.php:221 +#: actions/useradminpanel.php:222 msgid "Bio Limit" msgstr "" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:223 msgid "Maximum length of a profile bio in characters." msgstr "" -#: actions/useradminpanel.php:230 +#: actions/useradminpanel.php:231 msgid "New users" msgstr "" -#: actions/useradminpanel.php:234 +#: actions/useradminpanel.php:235 msgid "New user welcome" msgstr "" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:236 msgid "Welcome text for new users (Max 255 chars)." msgstr "" -#: actions/useradminpanel.php:240 +#: actions/useradminpanel.php:241 #, fuzzy msgid "Default subscription" msgstr "Všechny odběry" -#: actions/useradminpanel.php:241 +#: actions/useradminpanel.php:242 #, fuzzy msgid "Automatically subscribe new users to this user." msgstr "Odběr autorizován" -#: actions/useradminpanel.php:250 +#: actions/useradminpanel.php:251 #, fuzzy msgid "Invitations" msgstr "Umístění" -#: actions/useradminpanel.php:255 +#: actions/useradminpanel.php:256 msgid "Invitations enabled" msgstr "" -#: actions/useradminpanel.php:257 +#: actions/useradminpanel.php:258 msgid "Whether to allow users to invite new users." msgstr "" @@ -4351,7 +4389,7 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:196 lib/action.php:747 +#: actions/version.php:196 lib/action.php:778 #, fuzzy msgid "Version" msgstr "Osobní" @@ -4392,6 +4430,11 @@ msgstr "Nelze aktualizovat uživatele" msgid "Group leave failed." msgstr "Žádné takové oznámení." +#: classes/Local_group.php:41 +#, fuzzy +msgid "Could not update local group." +msgstr "Nelze aktualizovat uživatele" + #: classes/Login_token.php:76 #, fuzzy, php-format msgid "Could not create login token for %s" @@ -4409,46 +4452,46 @@ msgstr "" msgid "Could not update message with new URI." msgstr "" -#: classes/Notice.php:157 +#: classes/Notice.php:172 #, php-format msgid "DB error inserting hashtag: %s" msgstr "" -#: classes/Notice.php:222 +#: classes/Notice.php:239 #, fuzzy msgid "Problem saving notice. Too long." msgstr "Problém při ukládání sdělení" -#: classes/Notice.php:226 +#: classes/Notice.php:243 #, fuzzy msgid "Problem saving notice. Unknown user." msgstr "Problém při ukládání sdělení" -#: classes/Notice.php:231 +#: classes/Notice.php:248 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: classes/Notice.php:237 +#: classes/Notice.php:254 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." msgstr "" -#: classes/Notice.php:243 +#: classes/Notice.php:260 msgid "You are banned from posting notices on this site." msgstr "" -#: classes/Notice.php:309 classes/Notice.php:335 +#: classes/Notice.php:326 classes/Notice.php:352 msgid "Problem saving notice." msgstr "Problém při ukládání sdělení" -#: classes/Notice.php:882 +#: classes/Notice.php:911 #, fuzzy msgid "Problem saving group inbox." msgstr "Problém při ukládání sdělení" -#: classes/Notice.php:1407 +#: classes/Notice.php:1442 #, php-format msgid "RT @%1$s %2$s" msgstr "" @@ -4480,21 +4523,31 @@ msgstr "Nelze smazat odebírání" msgid "Couldn't delete subscription." msgstr "Nelze smazat odebírání" -#: classes/User.php:372 +#: classes/User.php:373 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "" -#: classes/User_group.php:423 +#: classes/User_group.php:462 #, fuzzy msgid "Could not create group." msgstr "Nelze uložin informace o obrázku" -#: classes/User_group.php:452 +#: classes/User_group.php:471 +#, fuzzy +msgid "Could not set group URI." +msgstr "Nelze vytvořit odebírat" + +#: classes/User_group.php:492 #, fuzzy msgid "Could not set group membership." msgstr "Nelze vytvořit odebírat" +#: classes/User_group.php:506 +#, fuzzy +msgid "Could not save local group info." +msgstr "Nelze vytvořit odebírat" + #: lib/accountsettingsaction.php:108 msgid "Change your profile settings" msgstr "" @@ -4538,126 +4591,188 @@ msgstr "" msgid "Primary site navigation" msgstr "" +#. TRANS: Tooltip for main menu option "Personal" #: lib/action.php:439 -msgid "Home" -msgstr "Domů" - -#: lib/action.php:439 +msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:441 -msgid "Change your email, avatar, password, profile" -msgstr "" - -#: lib/action.php:444 -msgid "Connect" -msgstr "Připojit" +#: lib/action.php:442 +#, fuzzy +msgctxt "MENU" +msgid "Personal" +msgstr "Osobní" +#. TRANS: Tooltip for main menu option "Account" #: lib/action.php:444 #, fuzzy +msgctxt "TOOLTIP" +msgid "Change your email, avatar, password, profile" +msgstr "Změnit heslo" + +#: lib/action.php:447 +#, fuzzy +msgctxt "MENU" +msgid "Account" +msgstr "O nás" + +#. TRANS: Tooltip for main menu option "Services" +#: lib/action.php:450 +#, fuzzy +msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Nelze přesměrovat na server: %s" -#: lib/action.php:448 +#: lib/action.php:453 #, fuzzy +msgctxt "MENU" +msgid "Connect" +msgstr "Připojit" + +#. TRANS: Tooltip for menu option "Admin" +#: lib/action.php:457 +#, fuzzy +msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Odběry" -#: lib/action.php:452 lib/subgroupnav.php:105 -msgid "Invite" +#: lib/action.php:460 +msgctxt "MENU" +msgid "Admin" msgstr "" -#: lib/action.php:453 lib/subgroupnav.php:106 +#. TRANS: Tooltip for main menu option "Invite" +#: lib/action.php:464 #, php-format +msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "" -#: lib/action.php:458 -msgid "Logout" -msgstr "Odhlásit" +#: lib/action.php:467 +#, fuzzy +msgctxt "MENU" +msgid "Invite" +msgstr "Neplatná velikost" -#: lib/action.php:458 +#. TRANS: Tooltip for main menu option "Logout" +#: lib/action.php:473 +msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "" -#: lib/action.php:463 +#: lib/action.php:476 #, fuzzy +msgctxt "MENU" +msgid "Logout" +msgstr "Odhlásit" + +#. TRANS: Tooltip for main menu option "Register" +#: lib/action.php:481 +#, fuzzy +msgctxt "TOOLTIP" msgid "Create an account" msgstr "Vytvořit nový účet" -#: lib/action.php:466 +#: lib/action.php:484 +#, fuzzy +msgctxt "MENU" +msgid "Register" +msgstr "Registrovat" + +#. TRANS: Tooltip for main menu option "Login" +#: lib/action.php:487 +msgctxt "TOOLTIP" msgid "Login to the site" msgstr "" -#: lib/action.php:469 lib/action.php:732 -msgid "Help" -msgstr "Nápověda" +#: lib/action.php:490 +#, fuzzy +msgctxt "MENU" +msgid "Login" +msgstr "Přihlásit" -#: lib/action.php:469 +#. TRANS: Tooltip for main menu option "Help" +#: lib/action.php:493 +#, fuzzy +msgctxt "TOOLTIP" msgid "Help me!" msgstr "Pomoci mi!" -#: lib/action.php:472 lib/searchaction.php:127 -msgid "Search" -msgstr "Hledat" +#: lib/action.php:496 +#, fuzzy +msgctxt "MENU" +msgid "Help" +msgstr "Nápověda" -#: lib/action.php:472 +#. TRANS: Tooltip for main menu option "Search" +#: lib/action.php:499 +msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "" -#: lib/action.php:493 +#: lib/action.php:502 +#, fuzzy +msgctxt "MENU" +msgid "Search" +msgstr "Hledat" + +#. TRANS: DT element for site notice. String is hidden in default CSS. +#: lib/action.php:524 #, fuzzy msgid "Site notice" msgstr "Nové sdělení" -#: lib/action.php:559 +#: lib/action.php:590 msgid "Local views" msgstr "" -#: lib/action.php:625 +#: lib/action.php:656 #, fuzzy msgid "Page notice" msgstr "Nové sdělení" -#: lib/action.php:727 +#: lib/action.php:758 #, fuzzy msgid "Secondary site navigation" msgstr "Odběry" -#: lib/action.php:734 +#: lib/action.php:763 +msgid "Help" +msgstr "Nápověda" + +#: lib/action.php:765 msgid "About" msgstr "O nás" -#: lib/action.php:736 +#: lib/action.php:767 msgid "FAQ" msgstr "FAQ" -#: lib/action.php:740 +#: lib/action.php:771 msgid "TOS" msgstr "" -#: lib/action.php:743 +#: lib/action.php:774 msgid "Privacy" msgstr "Soukromí" -#: lib/action.php:745 +#: lib/action.php:776 msgid "Source" msgstr "Zdroj" -#: lib/action.php:749 +#: lib/action.php:780 msgid "Contact" msgstr "Kontakt" -#: lib/action.php:751 +#: lib/action.php:782 msgid "Badge" msgstr "" -#: lib/action.php:779 +#: lib/action.php:810 msgid "StatusNet software license" msgstr "" -#: lib/action.php:782 +#: lib/action.php:813 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4666,12 +4781,12 @@ msgstr "" "**%%site.name%%** je služba microblogů, kterou pro vás poskytuje [%%site." "broughtby%%](%%site.broughtbyurl%%). " -#: lib/action.php:784 +#: lib/action.php:815 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** je služba mikroblogů." -#: lib/action.php:786 +#: lib/action.php:817 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4682,114 +4797,165 @@ msgstr "" "dostupná pod [GNU Affero General Public License](http://www.fsf.org/" "licensing/licenses/agpl-3.0.html)." -#: lib/action.php:801 +#: lib/action.php:832 #, fuzzy msgid "Site content license" msgstr "Nové sdělení" -#: lib/action.php:806 +#: lib/action.php:837 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:811 +#: lib/action.php:842 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:814 +#: lib/action.php:845 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" -#: lib/action.php:827 +#: lib/action.php:858 msgid "All " msgstr "" -#: lib/action.php:833 +#: lib/action.php:864 msgid "license." msgstr "" -#: lib/action.php:1132 +#: lib/action.php:1163 msgid "Pagination" msgstr "" -#: lib/action.php:1141 +#: lib/action.php:1172 #, fuzzy msgid "After" msgstr "« Novější" -#: lib/action.php:1149 +#: lib/action.php:1180 #, fuzzy msgid "Before" msgstr "Starší »" -#: lib/activity.php:382 +#: lib/activity.php:449 msgid "Can't handle remote content yet." msgstr "" -#: lib/activity.php:410 +#: lib/activity.php:477 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activity.php:414 +#: lib/activity.php:481 msgid "Can't handle embedded Base64 content yet." msgstr "" -#: lib/adminpanelaction.php:96 +#. TRANS: Client error message +#: lib/adminpanelaction.php:98 msgid "You cannot make changes to this site." msgstr "" -#: lib/adminpanelaction.php:107 +#. TRANS: Client error message +#: lib/adminpanelaction.php:110 msgid "Changes to that panel are not allowed." msgstr "" -#: lib/adminpanelaction.php:206 +#. TRANS: Client error message +#: lib/adminpanelaction.php:211 msgid "showForm() not implemented." msgstr "" -#: lib/adminpanelaction.php:235 +#. TRANS: Client error message +#: lib/adminpanelaction.php:241 msgid "saveSettings() not implemented." msgstr "" -#: lib/adminpanelaction.php:258 +#. TRANS: Client error message +#: lib/adminpanelaction.php:265 msgid "Unable to delete design setting." msgstr "" -#: lib/adminpanelaction.php:312 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:330 #, fuzzy msgid "Basic site configuration" msgstr "Potvrzení emailové adresy" -#: lib/adminpanelaction.php:317 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:332 +#, fuzzy +msgctxt "MENU" +msgid "Site" +msgstr "Nové sdělení" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:338 #, fuzzy msgid "Design configuration" msgstr "Potvrzení emailové adresy" -#: lib/adminpanelaction.php:322 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:340 +#, fuzzy +msgctxt "MENU" +msgid "Design" +msgstr "Vzhled" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:346 #, fuzzy msgid "User configuration" msgstr "Potvrzení emailové adresy" -#: lib/adminpanelaction.php:327 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:348 +msgctxt "MENU" +msgid "User" +msgstr "" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:354 #, fuzzy msgid "Access configuration" msgstr "Potvrzení emailové adresy" -#: lib/adminpanelaction.php:332 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:356 +#, fuzzy +msgctxt "MENU" +msgid "Access" +msgstr "Přijmout" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:362 #, fuzzy msgid "Paths configuration" msgstr "Potvrzení emailové adresy" -#: lib/adminpanelaction.php:337 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:364 +msgctxt "MENU" +msgid "Paths" +msgstr "" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:370 #, fuzzy msgid "Sessions configuration" msgstr "Potvrzení emailové adresy" -#: lib/apiauth.php:95 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:372 +#, fuzzy +msgctxt "MENU" +msgid "Sessions" +msgstr "Osobní" + +#: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." msgstr "" -#: lib/apiauth.php:273 +#: lib/apiauth.php:272 #, php-format msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" msgstr "" @@ -4884,12 +5050,12 @@ msgstr "" msgid "Tags for this attachment" msgstr "" -#: lib/authenticationplugin.php:218 lib/authenticationplugin.php:223 +#: lib/authenticationplugin.php:220 lib/authenticationplugin.php:225 #, fuzzy msgid "Password changing failed" msgstr "Heslo uloženo" -#: lib/authenticationplugin.php:233 +#: lib/authenticationplugin.php:235 #, fuzzy msgid "Password changing is not allowed" msgstr "Heslo uloženo" @@ -5176,20 +5342,20 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:136 +#: lib/common.php:148 #, fuzzy msgid "No configuration file found. " msgstr "Žádný potvrzující kód." -#: lib/common.php:137 +#: lib/common.php:149 msgid "I looked for configuration files in the following places: " msgstr "" -#: lib/common.php:139 +#: lib/common.php:151 msgid "You may wish to run the installer to fix this." msgstr "" -#: lib/common.php:140 +#: lib/common.php:152 msgid "Go to the installer." msgstr "" @@ -5383,24 +5549,24 @@ msgstr "Chyba systému při nahrávání souboru" msgid "Not an image or corrupt file." msgstr "Není obrázkem, nebo jde o poškozený soubor." -#: lib/imagefile.php:105 +#: lib/imagefile.php:109 msgid "Unsupported image file format." msgstr "Nepodporovaný formát obrázku." -#: lib/imagefile.php:118 +#: lib/imagefile.php:122 #, fuzzy msgid "Lost our file." msgstr "Žádné takové oznámení." -#: lib/imagefile.php:150 lib/imagefile.php:197 +#: lib/imagefile.php:166 lib/imagefile.php:231 msgid "Unknown file type" msgstr "" -#: lib/imagefile.php:217 +#: lib/imagefile.php:251 msgid "MB" msgstr "" -#: lib/imagefile.php:219 +#: lib/imagefile.php:253 msgid "kB" msgstr "" @@ -5705,6 +5871,12 @@ msgstr "" msgid "Available characters" msgstr "6 a více znaků" +#: lib/messageform.php:178 lib/noticeform.php:236 +#, fuzzy +msgctxt "Send button for sending notice" +msgid "Send" +msgstr "Odeslat" + #: lib/noticeform.php:160 #, fuzzy msgid "Send a notice" @@ -5764,26 +5936,26 @@ msgstr "" msgid "at" msgstr "" -#: lib/noticelist.php:558 +#: lib/noticelist.php:566 #, fuzzy msgid "in context" msgstr "Žádný obsah!" -#: lib/noticelist.php:583 +#: lib/noticelist.php:601 #, fuzzy msgid "Repeated by" msgstr "Vytvořit" -#: lib/noticelist.php:610 +#: lib/noticelist.php:628 msgid "Reply to this notice" msgstr "" -#: lib/noticelist.php:611 +#: lib/noticelist.php:629 #, fuzzy msgid "Reply" msgstr "odpověď" -#: lib/noticelist.php:655 +#: lib/noticelist.php:673 #, fuzzy msgid "Notice repeated" msgstr "Sdělení" @@ -5833,6 +6005,10 @@ msgstr "Odpovědi" msgid "Favorites" msgstr "Oblíbené" +#: lib/personalgroupnav.php:115 +msgid "User" +msgstr "" + #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "" @@ -5926,7 +6102,7 @@ msgstr "Odstranit toto oznámení" msgid "Repeat this notice" msgstr "Odstranit toto oznámení" -#: lib/router.php:665 +#: lib/router.php:668 msgid "No single user defined for single-user mode." msgstr "" @@ -5948,6 +6124,10 @@ msgstr "Hledat" msgid "Keyword(s)" msgstr "" +#: lib/searchaction.php:127 +msgid "Search" +msgstr "Hledat" + #: lib/searchaction.php:162 #, fuzzy msgid "Search help" @@ -6002,6 +6182,15 @@ msgstr "Vzdálený odběr" msgid "Groups %s is a member of" msgstr "" +#: lib/subgroupnav.php:105 +msgid "Invite" +msgstr "" + +#: lib/subgroupnav.php:106 +#, php-format +msgid "Invite friends and colleagues to join you on %s" +msgstr "" + #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -6075,47 +6264,47 @@ msgstr "Zpráva" msgid "Moderate" msgstr "" -#: lib/util.php:952 +#: lib/util.php:1013 msgid "a few seconds ago" msgstr "před pár sekundami" -#: lib/util.php:954 +#: lib/util.php:1015 msgid "about a minute ago" msgstr "asi před minutou" -#: lib/util.php:956 +#: lib/util.php:1017 #, php-format msgid "about %d minutes ago" msgstr "asi před %d minutami" -#: lib/util.php:958 +#: lib/util.php:1019 msgid "about an hour ago" msgstr "asi před hodinou" -#: lib/util.php:960 +#: lib/util.php:1021 #, php-format msgid "about %d hours ago" msgstr "asi před %d hodinami" -#: lib/util.php:962 +#: lib/util.php:1023 msgid "about a day ago" msgstr "asi přede dnem" -#: lib/util.php:964 +#: lib/util.php:1025 #, php-format msgid "about %d days ago" msgstr "před %d dny" -#: lib/util.php:966 +#: lib/util.php:1027 msgid "about a month ago" msgstr "asi před měsícem" -#: lib/util.php:968 +#: lib/util.php:1029 #, php-format msgid "about %d months ago" msgstr "asi před %d mesíci" -#: lib/util.php:970 +#: lib/util.php:1031 msgid "about a year ago" msgstr "asi před rokem" diff --git a/locale/de/LC_MESSAGES/statusnet.po b/locale/de/LC_MESSAGES/statusnet.po index 053187a860..a00ec26113 100644 --- a/locale/de/LC_MESSAGES/statusnet.po +++ b/locale/de/LC_MESSAGES/statusnet.po @@ -4,6 +4,7 @@ # Author@translatewiki.net: Lutzgh # Author@translatewiki.net: March # Author@translatewiki.net: McDutchie +# Author@translatewiki.net: Michi # Author@translatewiki.net: Pill # Author@translatewiki.net: Umherirrender # -- @@ -13,76 +14,83 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-02-24 23:49+0000\n" -"PO-Revision-Date: 2010-02-24 23:50:21+0000\n" +"POT-Creation-Date: 2010-03-02 21:02+0000\n" +"PO-Revision-Date: 2010-03-02 21:02:31+0000\n" "Language-Team: German\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r62925); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: actions/accessadminpanel.php:54 lib/adminpanelaction.php:326 +#. TRANS: Page title +#: actions/accessadminpanel.php:55 msgid "Access" msgstr "Zugang" -#: actions/accessadminpanel.php:65 +#. TRANS: Page notice +#: actions/accessadminpanel.php:67 msgid "Site access settings" msgstr "Zugangseinstellungen speichern" -#: actions/accessadminpanel.php:158 +#. TRANS: Form legend for registration form. +#: actions/accessadminpanel.php:161 msgid "Registration" msgstr "Registrieren" -#: actions/accessadminpanel.php:161 -msgid "Private" -msgstr "Privat" - -#: actions/accessadminpanel.php:163 +#. TRANS: Checkbox instructions for admin setting "Private" +#: actions/accessadminpanel.php:165 msgid "Prohibit anonymous users (not logged in) from viewing site?" msgstr "" "Anonymen (nicht eingeloggten) Nutzern das Betrachten der Seite verbieten?" +#. TRANS: Checkbox label for prohibiting anonymous users from viewing site. #: actions/accessadminpanel.php:167 -msgid "Invite only" -msgstr "Nur auf Einladung" +#, fuzzy +msgctxt "LABEL" +msgid "Private" +msgstr "Privat" -#: actions/accessadminpanel.php:169 +#. TRANS: Checkbox instructions for admin setting "Invite only" +#: actions/accessadminpanel.php:174 msgid "Make registration invitation only." msgstr "Registrierung nur bei vorheriger Einladung erlauben." -#: actions/accessadminpanel.php:173 -msgid "Closed" -msgstr "Geschlossen" +#. TRANS: Checkbox label for configuring site as invite only. +#: actions/accessadminpanel.php:176 +msgid "Invite only" +msgstr "Nur auf Einladung" -#: actions/accessadminpanel.php:175 +#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations) +#: actions/accessadminpanel.php:183 msgid "Disable new registrations." msgstr "Neuregistrierungen deaktivieren." -#: actions/accessadminpanel.php:189 actions/designadminpanel.php:586 -#: actions/emailsettings.php:195 actions/imsettings.php:163 -#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 -#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 -#: actions/siteadminpanel.php:336 actions/smssettings.php:181 -#: actions/subscriptions.php:208 actions/tagother.php:154 -#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 -#: lib/applicationeditform.php:334 lib/designsettings.php:256 -#: lib/groupeditform.php:202 -msgid "Save" -msgstr "Speichern" +#. TRANS: Checkbox label for disabling new user registrations. +#: actions/accessadminpanel.php:185 +msgid "Closed" +msgstr "Geschlossen" -#: actions/accessadminpanel.php:189 +#. TRANS: Title / tooltip for button to save access settings in site admin panel +#: actions/accessadminpanel.php:202 msgid "Save access settings" msgstr "Zugangs-Einstellungen speichern" -#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 -#: actions/showfavorites.php:137 actions/tag.php:51 +#: actions/accessadminpanel.php:203 +#, fuzzy +msgctxt "BUTTON" +msgid "Save" +msgstr "Speichern" + +#. TRANS: Server error when page not found (404) +#: actions/all.php:64 actions/public.php:98 actions/replies.php:93 +#: actions/showfavorites.php:138 actions/tag.php:52 msgid "No such page" msgstr "Seite nicht vorhanden" -#: actions/all.php:74 actions/allrss.php:68 +#: actions/all.php:75 actions/allrss.php:68 #: actions/apiaccountupdatedeliverydevice.php:113 #: actions/apiaccountupdateprofile.php:105 #: actions/apiaccountupdateprofilebackgroundimage.php:116 @@ -96,45 +104,53 @@ msgstr "Seite nicht vorhanden" #: actions/apitimelinehome.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/otp.php:76 -#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154 -#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 -#: actions/showfavorites.php:105 actions/userbyid.php:74 -#: actions/usergroups.php:91 actions/userrss.php:38 actions/xrds.php:71 -#: lib/command.php:163 lib/command.php:302 lib/command.php:355 -#: lib/command.php:401 lib/command.php:462 lib/command.php:518 -#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 +#: actions/hcard.php:67 actions/microsummary.php:62 actions/newmessage.php:116 +#: actions/otp.php:76 actions/remotesubscribe.php:145 +#: actions/remotesubscribe.php:154 actions/replies.php:73 +#: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/xrds.php:71 lib/command.php:163 lib/command.php:302 +#: lib/command.php:355 lib/command.php:401 lib/command.php:462 +#: lib/command.php:518 lib/galleryaction.php:59 lib/mailbox.php:82 +#: lib/profileaction.php:77 msgid "No such user." msgstr "Unbekannter Benutzer." -#: actions/all.php:84 +#. TRANS: Page title. %1$s is user nickname, %2$d is page number +#: actions/all.php:86 #, php-format msgid "%1$s and friends, page %2$d" msgstr "%1$s und Freunde, Seite% 2$d" -#: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 +#. TRANS: Page title. %1$s is user nickname +#. TRANS: H1 text. %1$s is user nickname +#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" msgstr "%s und Freunde" -#: actions/all.php:99 +#. TRANS: %1$s is user nickname +#: actions/all.php:103 #, php-format msgid "Feed for friends of %s (RSS 1.0)" msgstr "Feed der Freunde von %s (RSS 1.0)" -#: actions/all.php:107 +#. TRANS: %1$s is user nickname +#: actions/all.php:112 #, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "Feed der Freunde von %s (RSS 2.0)" -#: actions/all.php:115 +#. TRANS: %1$s is user nickname +#: actions/all.php:121 #, php-format msgid "Feed for friends of %s (Atom)" msgstr "Feed der Freunde von %s (Atom)" -#: actions/all.php:127 +#. TRANS: %1$s is user nickname +#: actions/all.php:134 #, php-format msgid "" "This is the timeline for %s and friends but no one has posted anything yet." @@ -142,7 +158,7 @@ msgstr "" "Dies ist die Zeitleiste für %s und Freunde aber bisher hat niemand etwas " "gepostet." -#: actions/all.php:132 +#: actions/all.php:139 #, php-format msgid "" "Try subscribing to more people, [join a group](%%action.groups%%) or post " @@ -151,7 +167,8 @@ msgstr "" "Abonniere doch mehr Leute, [tritt einer Gruppe bei](%%action.groups%%) oder " "poste selber etwas." -#: actions/all.php:134 +#. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@" +#: actions/all.php:142 #, fuzzy, php-format msgid "" "You can try to [nudge %1$s](../%2$s) from his profile or [post something to " @@ -161,7 +178,7 @@ msgstr "" "posten](%%%%action.newnotice%%%%?status_textarea=%s) um seine Aufmerksamkeit " "zu erregen." -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211 +#: actions/all.php:145 actions/replies.php:210 actions/showstream.php:211 #, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " @@ -171,7 +188,8 @@ msgstr "" "gibst %s dann einen Stups oder postest ihm etwas, um seine Aufmerksamkeit zu " "erregen?" -#: actions/all.php:165 +#. TRANS: H1 text +#: actions/all.php:174 msgid "You and friends" msgstr "Du und Freunde" @@ -189,20 +207,20 @@ msgstr "Aktualisierungen von %1$s und Freunden auf %2$s!" #: actions/apiaccountverifycredentials.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:128 actions/apigroupcreate.php:136 +#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: actions/apigroupleave.php:141 actions/apigrouplist.php:132 #: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 #: actions/apigroupshow.php:115 actions/apihelptest.php:88 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 -#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184 +#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 #: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:207 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 msgid "API method not found." msgstr "API-Methode nicht gefunden." @@ -234,8 +252,9 @@ msgstr "Konnte Benutzerdaten nicht aktualisieren." #: actions/apiaccountupdateprofilebackgroundimage.php:194 #: actions/apiaccountupdateprofilecolors.php:185 #: 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 +#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 +#: 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." @@ -259,7 +278,7 @@ msgstr "" #: actions/apiaccountupdateprofilebackgroundimage.php:146 #: actions/apiaccountupdateprofilecolors.php:164 #: actions/apiaccountupdateprofilecolors.php:174 -#: actions/groupdesignsettings.php:287 actions/groupdesignsettings.php:297 +#: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300 #: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 #: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 msgid "Unable to save your design settings." @@ -372,7 +391,7 @@ msgstr "Konnte öffentlichen Stream nicht abrufen." msgid "Could not find target user." msgstr "Konnte keine Statusmeldungen finden." -#: actions/apigroupcreate.php:164 actions/editgroup.php:182 +#: actions/apigroupcreate.php:166 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:215 #: actions/register.php:205 msgid "Nickname must have only lowercase letters and numbers and no spaces." @@ -380,63 +399,63 @@ msgstr "" "Der Nutzername darf nur aus Kleinbuchstaben und Ziffern bestehen. " "Leerzeichen sind nicht erlaubt." -#: actions/apigroupcreate.php:173 actions/editgroup.php:186 +#: actions/apigroupcreate.php:175 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:238 #: actions/register.php:208 msgid "Nickname already in use. Try another one." msgstr "Nutzername wird bereits verwendet. Suche dir einen anderen aus." -#: actions/apigroupcreate.php:180 actions/editgroup.php:189 +#: actions/apigroupcreate.php:182 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:218 #: actions/register.php:210 msgid "Not a valid nickname." msgstr "Ungültiger Nutzername." -#: actions/apigroupcreate.php:196 actions/editapplication.php:215 -#: actions/editgroup.php:195 actions/newapplication.php:203 +#: actions/apigroupcreate.php:198 actions/editapplication.php:215 +#: actions/editgroup.php:199 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:217 msgid "Homepage is not a valid URL." msgstr "" "Homepage ist keine gültige URL. URL’s müssen ein Präfix wie http enthalten." -#: actions/apigroupcreate.php:205 actions/editgroup.php:198 +#: actions/apigroupcreate.php:207 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:225 #: actions/register.php:220 msgid "Full name is too long (max 255 chars)." msgstr "Der vollständige Name ist zu lang (maximal 255 Zeichen)." -#: actions/apigroupcreate.php:213 actions/editapplication.php:190 +#: actions/apigroupcreate.php:215 actions/editapplication.php:190 #: actions/newapplication.php:172 #, php-format msgid "Description is too long (max %d chars)." msgstr "Die Beschreibung ist zu lang (max. %d Zeichen)." -#: actions/apigroupcreate.php:224 actions/editgroup.php:204 +#: actions/apigroupcreate.php:226 actions/editgroup.php:208 #: actions/newgroup.php:148 actions/profilesettings.php:232 #: actions/register.php:227 msgid "Location is too long (max 255 chars)." msgstr "Der eingegebene Aufenthaltsort ist zu lang (maximal 255 Zeichen)." -#: actions/apigroupcreate.php:243 actions/editgroup.php:215 +#: actions/apigroupcreate.php:245 actions/editgroup.php:219 #: actions/newgroup.php:159 #, php-format msgid "Too many aliases! Maximum %d." msgstr "Zu viele Pseudonyme! Maximale Anzahl ist %d." -#: actions/apigroupcreate.php:264 actions/editgroup.php:224 +#: actions/apigroupcreate.php:266 actions/editgroup.php:228 #: actions/newgroup.php:168 #, php-format msgid "Invalid alias: \"%s\"" msgstr "Ungültiger Tag: „%s“" -#: actions/apigroupcreate.php:273 actions/editgroup.php:228 +#: actions/apigroupcreate.php:275 actions/editgroup.php:232 #: actions/newgroup.php:172 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "Nutzername „%s“ wird bereits verwendet. Suche dir einen anderen aus." -#: actions/apigroupcreate.php:286 actions/editgroup.php:234 +#: actions/apigroupcreate.php:288 actions/editgroup.php:238 #: actions/newgroup.php:178 msgid "Alias can't be the same as nickname." msgstr "Alias kann nicht das gleiche wie der Spitznamen sein." @@ -447,15 +466,15 @@ msgstr "Alias kann nicht das gleiche wie der Spitznamen sein." msgid "Group not found!" msgstr "Gruppe nicht gefunden!" -#: actions/apigroupjoin.php:110 actions/joingroup.php:90 +#: actions/apigroupjoin.php:110 actions/joingroup.php:100 msgid "You are already a member of that group." msgstr "Du bist bereits Mitglied dieser Gruppe" -#: actions/apigroupjoin.php:119 actions/joingroup.php:95 lib/command.php:221 +#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:221 msgid "You have been blocked from that group by the admin." msgstr "Der Admin dieser Gruppe hat dich gesperrt." -#: actions/apigroupjoin.php:138 actions/joingroup.php:124 +#: actions/apigroupjoin.php:138 actions/joingroup.php:134 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Konnte Benutzer %s nicht der Gruppe %s hinzufügen." @@ -464,7 +483,7 @@ msgstr "Konnte Benutzer %s nicht der Gruppe %s hinzufügen." msgid "You are not a member of this group." msgstr "Du bist kein Mitglied dieser Gruppe." -#: actions/apigroupleave.php:124 actions/leavegroup.php:119 +#: actions/apigroupleave.php:124 actions/leavegroup.php:129 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "Konnte Benutzer %1$s nicht aus der Gruppe %2$s entfernen." @@ -496,7 +515,7 @@ msgstr "Ungültige Größe." #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 #: actions/deletenotice.php:157 actions/disfavor.php:74 #: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54 -#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupblock.php:66 actions/grouplogo.php:312 #: actions/groupunblock.php:66 actions/imsettings.php:206 #: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 @@ -539,7 +558,7 @@ msgstr "" #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:103 actions/editapplication.php:139 -#: actions/emailsettings.php:256 actions/grouplogo.php:319 +#: actions/emailsettings.php:256 actions/grouplogo.php:322 #: actions/imsettings.php:220 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 #: actions/smssettings.php:248 lib/designsettings.php:304 @@ -562,13 +581,13 @@ msgid "" "give access to your %4$s account to third parties you trust." msgstr "" -#: actions/apioauthauthorize.php:310 lib/action.php:441 +#: actions/apioauthauthorize.php:310 msgid "Account" msgstr "Konto" #: actions/apioauthauthorize.php:313 actions/login.php:230 #: actions/profilesettings.php:106 actions/register.php:424 -#: actions/showgroup.php:236 actions/tagother.php:94 +#: actions/showgroup.php:244 actions/tagother.php:94 #: actions/userauthorization.php:145 lib/groupeditform.php:152 #: lib/userprofile.php:131 msgid "Nickname" @@ -654,12 +673,12 @@ msgid "%1$s updates favorited by %2$s / %2$s." msgstr "%s Aktualisierung in den Favoriten von %s / %s." #: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:131 actions/userrss.php:90 +#: actions/grouprss.php:138 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "%s Zeitleiste" -#: actions/apitimelinegroup.php:114 actions/apitimelineuser.php:126 +#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 #: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" @@ -695,7 +714,7 @@ msgstr "Antworten an %s" msgid "Repeats of %s" msgstr "Antworten an %s" -#: actions/apitimelinetag.php:102 actions/tag.php:66 +#: actions/apitimelinetag.php:102 actions/tag.php:67 #, php-format msgid "Notices tagged with %s" msgstr "Nachrichten, die mit %s getagt sind" @@ -716,8 +735,7 @@ msgstr "Kein solcher Anhang." #: actions/avatarbynickname.php:59 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/leavegroup.php:76 -#: actions/showgroup.php:121 +#: actions/grouprss.php:91 actions/showgroup.php:121 msgid "No nickname." msgstr "Kein Nutzername." @@ -729,7 +747,7 @@ msgstr "Keine Größe." msgid "Invalid size." msgstr "Ungültige Größe." -#: actions/avatarsettings.php:67 actions/showgroup.php:221 +#: actions/avatarsettings.php:67 actions/showgroup.php:229 #: lib/accountsettingsaction.php:112 msgid "Avatar" msgstr "Avatar" @@ -747,30 +765,30 @@ msgid "User without matching profile" msgstr "Benutzer ohne passendes Profil" #: actions/avatarsettings.php:119 actions/avatarsettings.php:197 -#: actions/grouplogo.php:251 +#: actions/grouplogo.php:254 msgid "Avatar settings" msgstr "Avatar-Einstellungen" #: actions/avatarsettings.php:127 actions/avatarsettings.php:205 -#: actions/grouplogo.php:199 actions/grouplogo.php:259 +#: actions/grouplogo.php:202 actions/grouplogo.php:262 msgid "Original" msgstr "Original" #: actions/avatarsettings.php:142 actions/avatarsettings.php:217 -#: actions/grouplogo.php:210 actions/grouplogo.php:271 +#: actions/grouplogo.php:213 actions/grouplogo.php:274 msgid "Preview" msgstr "Vorschau" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:637 +#: lib/deleteuserform.php:66 lib/noticelist.php:655 msgid "Delete" msgstr "Löschen" -#: actions/avatarsettings.php:166 actions/grouplogo.php:233 +#: actions/avatarsettings.php:166 actions/grouplogo.php:236 msgid "Upload" msgstr "Hochladen" -#: actions/avatarsettings.php:231 actions/grouplogo.php:286 +#: actions/avatarsettings.php:231 actions/grouplogo.php:289 msgid "Crop" msgstr "Zuschneiden" @@ -779,7 +797,7 @@ 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:343 actions/grouplogo.php:377 +#: actions/avatarsettings.php:343 actions/grouplogo.php:380 msgid "Lost our file data." msgstr "Daten verloren." @@ -811,22 +829,22 @@ msgid "" msgstr "" #: actions/block.php:143 actions/deleteapplication.php:153 -#: actions/deletenotice.php:145 actions/deleteuser.php:147 +#: actions/deletenotice.php:145 actions/deleteuser.php:150 #: actions/groupblock.php:178 msgid "No" msgstr "Nein" -#: actions/block.php:143 actions/deleteuser.php:147 +#: actions/block.php:143 actions/deleteuser.php:150 msgid "Do not block this user" msgstr "Diesen Benutzer freigeben" #: actions/block.php:144 actions/deleteapplication.php:158 -#: actions/deletenotice.php:146 actions/deleteuser.php:148 +#: actions/deletenotice.php:146 actions/deleteuser.php:151 #: actions/groupblock.php:179 lib/repeatform.php:132 msgid "Yes" msgstr "Ja" -#: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:355 lib/blockform.php:80 msgid "Block this user" msgstr "Diesen Benutzer blockieren" @@ -834,39 +852,43 @@ msgstr "Diesen Benutzer blockieren" msgid "Failed to save block information." msgstr "Konnte Blockierungsdaten nicht speichern." -#: actions/blockedfromgroup.php:80 actions/editgroup.php:96 -#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/groupblock.php:86 -#: actions/groupbyid.php:83 actions/groupdesignsettings.php:97 -#: actions/grouplogo.php:99 actions/groupmembers.php:83 -#: actions/grouprss.php:98 actions/groupunblock.php:86 -#: actions/joingroup.php:83 actions/leavegroup.php:83 actions/makeadmin.php:86 -#: actions/showgroup.php:137 lib/command.php:212 lib/command.php:260 +#: actions/blockedfromgroup.php:80 actions/blockedfromgroup.php:87 +#: actions/editgroup.php:100 actions/foafgroup.php:44 actions/foafgroup.php:62 +#: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:100 actions/grouplogo.php:102 +#: actions/groupmembers.php:83 actions/groupmembers.php:90 +#: actions/grouprss.php:98 actions/grouprss.php:105 +#: actions/groupunblock.php:86 actions/joingroup.php:82 +#: actions/joingroup.php:93 actions/leavegroup.php:82 +#: actions/leavegroup.php:93 actions/makeadmin.php:86 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:212 +#: lib/command.php:260 msgid "No such group." msgstr "Keine derartige Gruppe." -#: actions/blockedfromgroup.php:90 +#: actions/blockedfromgroup.php:97 #, php-format msgid "%s blocked profiles" msgstr "%s blockierte Benutzerprofile" -#: actions/blockedfromgroup.php:93 +#: actions/blockedfromgroup.php:100 #, fuzzy, php-format msgid "%1$s blocked profiles, page %2$d" msgstr "%s blockierte Benutzerprofile, Seite %d" -#: actions/blockedfromgroup.php:108 +#: actions/blockedfromgroup.php:115 msgid "A list of the users blocked from joining this group." msgstr "Liste der blockierten Benutzer in dieser Gruppe." -#: actions/blockedfromgroup.php:281 +#: actions/blockedfromgroup.php:288 msgid "Unblock user from group" msgstr "Sperrung des Nutzers für die Gruppe aufheben." -#: actions/blockedfromgroup.php:313 lib/unblockform.php:69 +#: actions/blockedfromgroup.php:320 lib/unblockform.php:69 msgid "Unblock" msgstr "Freigeben" -#: actions/blockedfromgroup.php:313 lib/unblockform.php:80 +#: actions/blockedfromgroup.php:320 lib/unblockform.php:80 msgid "Unblock this user" msgstr "Diesen Benutzer freigeben" @@ -945,7 +967,7 @@ msgstr "Du bist kein Mitglied dieser Gruppe." #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1197 +#: lib/action.php:1228 msgid "There was a problem with your session token." msgstr "Es gab ein Problem mit deinem Sessiontoken." @@ -971,12 +993,13 @@ msgstr "Diese Nachricht nicht löschen" msgid "Delete this application" msgstr "Nachricht löschen" +#. TRANS: Client error message #: 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:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 -#: lib/adminpanelaction.php:72 lib/profileformaction.php:63 +#: lib/adminpanelaction.php:73 lib/profileformaction.php:63 #: lib/settingsaction.php:72 msgid "Not logged in." msgstr "Nicht angemeldet." @@ -1005,7 +1028,7 @@ msgstr "Bist du sicher, dass du diese Nachricht löschen möchtest?" msgid "Do not delete this notice" msgstr "Diese Nachricht nicht löschen" -#: actions/deletenotice.php:146 lib/noticelist.php:637 +#: actions/deletenotice.php:146 lib/noticelist.php:655 msgid "Delete this notice" msgstr "Nachricht löschen" @@ -1021,18 +1044,18 @@ msgstr "Du kannst nur lokale Benutzer löschen." msgid "Delete user" msgstr "Benutzer löschen" -#: actions/deleteuser.php:135 +#: actions/deleteuser.php:136 msgid "" "Are you sure you want to delete this user? This will clear all data about " "the user from the database, without a backup." msgstr "" -#: actions/deleteuser.php:148 lib/deleteuserform.php:77 +#: actions/deleteuser.php:151 lib/deleteuserform.php:77 msgid "Delete this user" msgstr "Diesen Benutzer löschen" #: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 -#: lib/adminpanelaction.php:316 lib/groupnav.php:119 +#: lib/groupnav.php:119 msgid "Design" msgstr "" @@ -1135,6 +1158,17 @@ msgstr "Standard-Design wiederherstellen" msgid "Reset back to default" msgstr "Standard wiederherstellen" +#: actions/designadminpanel.php:586 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/tagother.php:154 actions/useradminpanel.php:294 +#: lib/applicationeditform.php:333 lib/applicationeditform.php:334 +#: lib/designsettings.php:256 lib/groupeditform.php:202 +msgid "Save" +msgstr "Speichern" + #: actions/designadminpanel.php:587 lib/designsettings.php:257 msgid "Save design" msgstr "Design speichern" @@ -1153,68 +1187,58 @@ msgid "No such document \"%s\"" msgstr "Unbekanntes Dokument." #: actions/editapplication.php:54 -#, fuzzy msgid "Edit Application" -msgstr "Sonstige Optionen" +msgstr "Anwendung bearbeiten" #: actions/editapplication.php:66 -#, fuzzy msgid "You must be logged in to edit an application." -msgstr "Du musst angemeldet sein, um eine Gruppe zu bearbeiten." +msgstr "Du musst angemeldet sein, um eine Anwendung zu bearbeiten." #: actions/editapplication.php:81 actions/oauthconnectionssettings.php:166 #: actions/showapplication.php:87 -#, fuzzy msgid "No such application." -msgstr "Unbekannte Nachricht." +msgstr "Anwendung nicht bekannt." #: actions/editapplication.php:161 -#, fuzzy msgid "Use this form to edit your application." -msgstr "Benutze dieses Formular, um die Gruppe zu bearbeiten." +msgstr "Benutze dieses Formular, um die Anwendung zu bearbeiten." #: actions/editapplication.php:177 actions/newapplication.php:159 -#, fuzzy msgid "Name is required." -msgstr "Gleiches Passwort wie zuvor. Pflichteingabe." +msgstr "Name ist erforderlich." #: actions/editapplication.php:180 actions/newapplication.php:165 -#, fuzzy msgid "Name is too long (max 255 chars)." -msgstr "Der vollständige Name ist zu lang (maximal 255 Zeichen)." +msgstr "Der Name ist zu lang (maximal 255 Zeichen)." #: actions/editapplication.php:183 actions/newapplication.php:162 -#, fuzzy msgid "Name already in use. Try another one." -msgstr "Nutzername wird bereits verwendet. Suche dir einen anderen aus." +msgstr "Der Name wird bereits verwendet. Suche dir einen anderen aus." #: actions/editapplication.php:186 actions/newapplication.php:168 -#, fuzzy msgid "Description is required." -msgstr "Beschreibung" +msgstr "Beschreibung ist erforderlich." #: actions/editapplication.php:194 msgid "Source URL is too long." -msgstr "" +msgstr "Homepage ist zu lang." #: actions/editapplication.php:200 actions/newapplication.php:185 -#, fuzzy msgid "Source URL is not valid." msgstr "" "Homepage ist keine gültige URL. URL’s müssen ein Präfix wie http enthalten." #: actions/editapplication.php:203 actions/newapplication.php:188 msgid "Organization is required." -msgstr "" +msgstr "Organisation ist erforderlich. (Pflichtangabe)" #: actions/editapplication.php:206 actions/newapplication.php:191 -#, fuzzy msgid "Organization is too long (max 255 chars)." -msgstr "Der eingegebene Aufenthaltsort ist zu lang (maximal 255 Zeichen)." +msgstr "Die angegebene Organisation ist zu lang (maximal 255 Zeichen)." #: actions/editapplication.php:209 actions/newapplication.php:194 msgid "Organization homepage is required." -msgstr "" +msgstr "Homepage der Organisation ist erforderlich (Pflichtangabe)." #: actions/editapplication.php:218 actions/newapplication.php:206 msgid "Callback is too long." @@ -1238,35 +1262,34 @@ msgstr "Gruppe %s bearbeiten" msgid "You must be logged in to create a group." msgstr "Du musst angemeldet sein, um eine Gruppe zu erstellen." -#: actions/editgroup.php:103 actions/editgroup.php:168 -#: actions/groupdesignsettings.php:104 actions/grouplogo.php:106 +#: actions/editgroup.php:107 actions/editgroup.php:172 +#: actions/groupdesignsettings.php:107 actions/grouplogo.php:109 #, fuzzy msgid "You must be an admin to edit the group." msgstr "Du musst ein Administrator sein, um die Gruppe zu bearbeiten" -#: actions/editgroup.php:154 +#: actions/editgroup.php:158 msgid "Use this form to edit the group." msgstr "Benutze dieses Formular, um die Gruppe zu bearbeiten." -#: actions/editgroup.php:201 actions/newgroup.php:145 +#: actions/editgroup.php:205 actions/newgroup.php:145 #, php-format msgid "description is too long (max %d chars)." msgstr "Die Beschreibung ist zu lang (max. %d Zeichen)." -#: actions/editgroup.php:253 +#: actions/editgroup.php:258 msgid "Could not update group." msgstr "Konnte Gruppe nicht aktualisieren." -#: actions/editgroup.php:259 classes/User_group.php:433 +#: actions/editgroup.php:264 classes/User_group.php:478 msgid "Could not create aliases." msgstr "Konnte keinen Favoriten erstellen." -#: actions/editgroup.php:269 +#: actions/editgroup.php:280 msgid "Options saved." msgstr "Einstellungen gespeichert." #: actions/emailsettings.php:60 -#, fuzzy msgid "Email settings" msgstr "E-Mail-Einstellungen" @@ -1305,9 +1328,8 @@ msgid "Cancel" msgstr "Abbrechen" #: actions/emailsettings.php:121 -#, fuzzy msgid "Email address" -msgstr "E-Mail-Adressen" +msgstr "E-Mail-Adresse" #: actions/emailsettings.php:123 msgid "Email address, like \"UserName@example.org\"" @@ -1601,7 +1623,7 @@ msgstr "Dieser Nutzer ist bereits von der Gruppe gesperrt" msgid "User is not a member of group." msgstr "Nutzer ist kein Mitglied dieser Gruppe." -#: actions/groupblock.php:136 actions/groupmembers.php:316 +#: actions/groupblock.php:136 actions/groupmembers.php:323 msgid "Block user from group" msgstr "Benutzerzugang zu der Gruppe blockieren" @@ -1634,30 +1656,30 @@ msgstr "Keine ID" msgid "You must be logged in to edit a group." msgstr "Du musst angemeldet sein, um eine Gruppe zu bearbeiten." -#: actions/groupdesignsettings.php:141 +#: actions/groupdesignsettings.php:144 msgid "Group design" msgstr "Gruppen-Design" -#: actions/groupdesignsettings.php:152 +#: actions/groupdesignsettings.php:155 msgid "" "Customize the way your group looks with a background image and a colour " "palette of your choice." msgstr "" -#: actions/groupdesignsettings.php:263 actions/userdesignsettings.php:186 +#: actions/groupdesignsettings.php:266 actions/userdesignsettings.php:186 #: lib/designsettings.php:391 lib/designsettings.php:413 msgid "Couldn't update your design." msgstr "Konnte dein Design nicht aktualisieren." -#: actions/groupdesignsettings.php:308 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231 msgid "Design preferences saved." msgstr "Design-Einstellungen gespeichert." -#: actions/grouplogo.php:139 actions/grouplogo.php:192 +#: actions/grouplogo.php:142 actions/grouplogo.php:195 msgid "Group logo" msgstr "Gruppen-Logo" -#: actions/grouplogo.php:150 +#: actions/grouplogo.php:153 #, php-format msgid "" "You can upload a logo image for your group. The maximum file size is %s." @@ -1665,58 +1687,58 @@ msgstr "" "Du kannst ein Logo für Deine Gruppe hochladen. Die maximale Dateigröße ist %" "s." -#: actions/grouplogo.php:178 +#: actions/grouplogo.php:181 #, fuzzy msgid "User without matching profile." msgstr "Benutzer ohne passendes Profil" -#: actions/grouplogo.php:362 +#: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." msgstr "Wähle eine quadratische Fläche aus dem Bild, um das Logo zu speichern." -#: actions/grouplogo.php:396 +#: actions/grouplogo.php:399 msgid "Logo updated." msgstr "Logo aktualisiert." -#: actions/grouplogo.php:398 +#: actions/grouplogo.php:401 msgid "Failed updating logo." msgstr "Aktualisierung des Logos fehlgeschlagen." -#: actions/groupmembers.php:93 lib/groupnav.php:92 +#: actions/groupmembers.php:100 lib/groupnav.php:92 #, php-format msgid "%s group members" msgstr "%s Gruppen-Mitglieder" -#: actions/groupmembers.php:96 +#: actions/groupmembers.php:103 #, fuzzy, php-format msgid "%1$s group members, page %2$d" msgstr "%s Gruppen-Mitglieder, Seite %d" -#: actions/groupmembers.php:111 +#: actions/groupmembers.php:118 msgid "A list of the users in this group." msgstr "Liste der Benutzer in dieser Gruppe." -#: actions/groupmembers.php:175 lib/action.php:448 lib/groupnav.php:107 +#: actions/groupmembers.php:182 lib/groupnav.php:107 msgid "Admin" msgstr "Admin" -#: actions/groupmembers.php:348 lib/blockform.php:69 +#: actions/groupmembers.php:355 lib/blockform.php:69 msgid "Block" msgstr "Blockieren" -#: actions/groupmembers.php:443 +#: actions/groupmembers.php:450 msgid "Make user an admin of the group" msgstr "Benutzer zu einem Admin dieser Gruppe ernennen" -#: actions/groupmembers.php:475 +#: actions/groupmembers.php:482 msgid "Make Admin" msgstr "Zum Admin ernennen" -#: actions/groupmembers.php:475 +#: actions/groupmembers.php:482 msgid "Make this user an admin" msgstr "Diesen Benutzer zu einem Admin ernennen" -#: actions/grouprss.php:133 +#: actions/grouprss.php:140 #, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Aktualisierungen von %1$s auf %2$s!" @@ -1984,16 +2006,19 @@ msgstr "" "Wenn du möchtest kannst du zu der Einladung eine persönliche Nachricht " "anfügen." -#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:236 +#. TRANS: Send button for inviting friends +#: actions/invite.php:198 +#, fuzzy +msgctxt "BUTTON" msgid "Send" msgstr "Senden" -#: actions/invite.php:226 +#: actions/invite.php:227 #, 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." -#: actions/invite.php:228 +#: actions/invite.php:229 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -2053,7 +2078,12 @@ msgstr "" msgid "You must be logged in to join a group." msgstr "Du musst angemeldet sein, um Mitglied einer Gruppe zu werden." -#: actions/joingroup.php:131 +#: actions/joingroup.php:88 actions/leavegroup.php:88 +#, fuzzy +msgid "No nickname or ID." +msgstr "Kein Nutzername." + +#: actions/joingroup.php:141 #, fuzzy, php-format msgid "%1$s joined group %2$s" msgstr "%s ist der Gruppe %s beigetreten" @@ -2062,11 +2092,11 @@ msgstr "%s ist der Gruppe %s beigetreten" msgid "You must be logged in to leave a group." msgstr "Du musst angemeldet sein, um aus einer Gruppe auszutreten." -#: actions/leavegroup.php:90 lib/command.php:265 +#: actions/leavegroup.php:100 lib/command.php:265 msgid "You are not a member of that group." msgstr "Du bist kein Mitglied dieser Gruppe." -#: actions/leavegroup.php:127 +#: actions/leavegroup.php:137 #, fuzzy, php-format msgid "%1$s left group %2$s" msgstr "%s hat die Gruppe %s verlassen" @@ -2084,8 +2114,7 @@ msgid "Error setting user. You are probably not authorized." msgstr "" "Fehler beim setzen des Benutzers. Du bist vermutlich nicht autorisiert." -#: actions/login.php:188 actions/login.php:241 lib/action.php:466 -#: lib/logingroupnav.php:79 +#: actions/login.php:188 actions/login.php:241 lib/logingroupnav.php:79 msgid "Login" msgstr "Anmelden" @@ -2285,9 +2314,8 @@ msgid "You must be logged in to list your applications." msgstr "Du musst angemeldet sein, um eine Gruppe zu bearbeiten." #: actions/oauthappssettings.php:74 -#, fuzzy msgid "OAuth applications" -msgstr "Sonstige Optionen" +msgstr "OAuth-Anwendungen" #: actions/oauthappssettings.php:85 msgid "Applications you have registered" @@ -2341,8 +2369,8 @@ msgstr "Content-Typ " msgid "Only " msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 -#: lib/api.php:1068 lib/api.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 +#: lib/apiaction.php:1068 lib/apiaction.php:1177 msgid "Not a supported data format." msgstr "Kein unterstütztes Datenformat." @@ -2486,7 +2514,7 @@ msgstr "Konnte neues Passwort nicht speichern" msgid "Password saved." msgstr "Passwort gespeichert." -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:331 +#: actions/pathsadminpanel.php:59 msgid "Paths" msgstr "" @@ -2519,7 +2547,6 @@ msgid "Invalid SSL server. The maximum length is 255 characters." msgstr "Ungültiger SSL-Server. Die maximale Länge ist 255 Zeichen." #: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58 -#: lib/adminpanelaction.php:311 msgid "Site" msgstr "Seite" @@ -2694,7 +2721,7 @@ 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:448 -#: actions/showgroup.php:247 actions/tagother.php:104 +#: actions/showgroup.php:255 actions/tagother.php:104 #: lib/groupeditform.php:157 lib/userprofile.php:149 msgid "Full name" msgstr "Vollständiger Name" @@ -2723,7 +2750,7 @@ msgid "Bio" msgstr "Biografie" #: actions/profilesettings.php:132 actions/register.php:471 -#: actions/showgroup.php:256 actions/tagother.php:112 +#: actions/showgroup.php:264 actions/tagother.php:112 #: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:164 msgid "Location" @@ -2807,7 +2834,8 @@ msgstr "Konnte Profil nicht speichern." msgid "Couldn't save tags." msgstr "Konnte Tags nicht speichern." -#: actions/profilesettings.php:391 lib/adminpanelaction.php:137 +#. TRANS: Message after successful saving of administrative settings. +#: actions/profilesettings.php:391 lib/adminpanelaction.php:141 msgid "Settings saved." msgstr "Einstellungen gespeichert." @@ -2820,28 +2848,28 @@ msgstr "Jenseits des Seitenlimits (%s)" msgid "Could not retrieve public stream." msgstr "Konnte öffentlichen Stream nicht abrufen." -#: actions/public.php:129 +#: actions/public.php:130 #, php-format msgid "Public timeline, page %d" msgstr "Öffentliche Zeitleiste, Seite %d" -#: actions/public.php:131 lib/publicgroupnav.php:79 +#: actions/public.php:132 lib/publicgroupnav.php:79 msgid "Public timeline" msgstr "Öffentliche Zeitleiste" -#: actions/public.php:159 +#: actions/public.php:160 msgid "Public Stream Feed (RSS 1.0)" msgstr "Feed des öffentlichen Streams (RSS 1.0)" -#: actions/public.php:163 +#: actions/public.php:164 msgid "Public Stream Feed (RSS 2.0)" msgstr "Feed des öffentlichen Streams (RSS 2.0)" -#: actions/public.php:167 +#: actions/public.php:168 msgid "Public Stream Feed (Atom)" msgstr "Feed des öffentlichen Streams (Atom)" -#: actions/public.php:187 +#: actions/public.php:188 #, php-format msgid "" "This is the public timeline for %%site.name%% but no one has posted anything " @@ -2850,17 +2878,17 @@ msgstr "" "Dies ist die öffentliche Zeitlinie von %%site.name%% es wurde allerdings " "noch nichts gepostet." -#: actions/public.php:190 +#: actions/public.php:191 msgid "Be the first to post!" msgstr "Sei der erste der etwas schreibt!" -#: actions/public.php:194 +#: actions/public.php:195 #, php-format msgid "" "Why not [register an account](%%action.register%%) and be the first to post!" msgstr "" -#: actions/public.php:241 +#: actions/public.php:242 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2869,7 +2897,7 @@ msgid "" "friends, family, and colleagues! ([Read more](%%doc.help%%))" msgstr "" -#: actions/public.php:246 +#: actions/public.php:247 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -3045,8 +3073,7 @@ msgstr "Entschuldigung, ungültiger Bestätigungscode." msgid "Registration successful" msgstr "Registrierung erfolgreich" -#: actions/register.php:114 actions/register.php:503 lib/action.php:463 -#: lib/logingroupnav.php:85 +#: actions/register.php:114 actions/register.php:503 lib/logingroupnav.php:85 msgid "Register" msgstr "Registrieren" @@ -3235,7 +3262,7 @@ msgstr "Du kannst deine eigene Nachricht nicht wiederholen." msgid "You already repeated that notice." msgstr "Du hast diesen Benutzer bereits blockiert." -#: actions/repeat.php:114 lib/noticelist.php:656 +#: actions/repeat.php:114 lib/noticelist.php:674 #, fuzzy msgid "Repeated" msgstr "Erstellt" @@ -3245,33 +3272,33 @@ msgstr "Erstellt" msgid "Repeated!" msgstr "Erstellt" -#: actions/replies.php:125 actions/repliesrss.php:68 +#: actions/replies.php:126 actions/repliesrss.php:68 #: lib/personalgroupnav.php:105 #, php-format msgid "Replies to %s" msgstr "Antworten an %s" -#: actions/replies.php:127 +#: actions/replies.php:128 #, php-format msgid "Replies to %1$s, page %2$d" msgstr "Antworten an %1$s, Seite %2$d" -#: actions/replies.php:144 +#: actions/replies.php:145 #, php-format msgid "Replies feed for %s (RSS 1.0)" msgstr "Feed der Antworten an %s (RSS 1.0)" -#: actions/replies.php:151 +#: actions/replies.php:152 #, php-format msgid "Replies feed for %s (RSS 2.0)" msgstr "Feed der Antworten an %s (RSS 2.0)" -#: actions/replies.php:158 +#: actions/replies.php:159 #, php-format msgid "Replies feed for %s (Atom)" msgstr "Feed der Nachrichten von %s (Atom)" -#: actions/replies.php:198 +#: actions/replies.php:199 #, fuzzy, php-format msgid "" "This is the timeline showing replies to %1$s but %2$s hasn't received a " @@ -3280,14 +3307,14 @@ msgstr "" "Dies ist die Zeitleiste für %s und Freunde aber bisher hat niemand etwas " "gepostet." -#: actions/replies.php:203 +#: actions/replies.php:204 #, php-format msgid "" "You can engage other users in a conversation, subscribe to more people or " "[join groups](%%action.groups%%)." msgstr "" -#: actions/replies.php:205 +#: actions/replies.php:206 #, fuzzy, php-format msgid "" "You can try to [nudge %1$s](../%2$s) or [post something to his or her " @@ -3317,7 +3344,6 @@ msgid "User is already sandboxed." msgstr "Dieser Benutzer hat dich blockiert." #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:336 msgid "Sessions" msgstr "" @@ -3343,7 +3369,7 @@ msgid "Turn on debugging output for sessions." msgstr "" #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/useradminpanel.php:293 +#: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "Site-Einstellungen speichern" @@ -3376,7 +3402,7 @@ msgstr "Seitenerstellung" msgid "Description" msgstr "Beschreibung" -#: actions/showapplication.php:192 actions/showgroup.php:429 +#: actions/showapplication.php:192 actions/showgroup.php:437 #: lib/profileaction.php:174 msgid "Statistics" msgstr "Statistiken" @@ -3439,35 +3465,35 @@ msgstr "%ss favorisierte Nachrichten" msgid "Could not retrieve favorite notices." msgstr "Konnte Favoriten nicht abrufen." -#: actions/showfavorites.php:170 +#: actions/showfavorites.php:171 #, php-format msgid "Feed for favorites of %s (RSS 1.0)" msgstr "Feed der Freunde von %s (RSS 1.0)" -#: actions/showfavorites.php:177 +#: actions/showfavorites.php:178 #, php-format msgid "Feed for favorites of %s (RSS 2.0)" msgstr "Feed der Freunde von %s (RSS 2.0)" -#: actions/showfavorites.php:184 +#: actions/showfavorites.php:185 #, php-format msgid "Feed for favorites of %s (Atom)" msgstr "Feed der Freunde von %s (Atom)" -#: actions/showfavorites.php:205 +#: actions/showfavorites.php:206 msgid "" "You haven't chosen any favorite notices yet. Click the fave button on " "notices you like to bookmark them for later or shed a spotlight on them." msgstr "" -#: actions/showfavorites.php:207 +#: actions/showfavorites.php:208 #, 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:211 +#: actions/showfavorites.php:212 #, php-format msgid "" "%s hasn't added any notices to his favorites yet. Why not [register an " @@ -3475,7 +3501,7 @@ msgid "" "would add to their favorites :)" msgstr "" -#: actions/showfavorites.php:242 +#: actions/showfavorites.php:243 msgid "This is a way to share what you like." msgstr "Dies ist ein Weg Dinge zu teilen die dir gefallen." @@ -3489,67 +3515,67 @@ msgstr "%s Gruppe" msgid "%1$s group, page %2$d" msgstr "%s Gruppen-Mitglieder, Seite %d" -#: actions/showgroup.php:218 +#: actions/showgroup.php:226 msgid "Group profile" msgstr "Gruppenprofil" -#: actions/showgroup.php:263 actions/tagother.php:118 +#: actions/showgroup.php:271 actions/tagother.php:118 #: actions/userauthorization.php:175 lib/userprofile.php:177 msgid "URL" msgstr "URL" -#: actions/showgroup.php:274 actions/tagother.php:128 +#: actions/showgroup.php:282 actions/tagother.php:128 #: actions/userauthorization.php:187 lib/userprofile.php:194 msgid "Note" msgstr "Nachricht" -#: actions/showgroup.php:284 lib/groupeditform.php:184 +#: actions/showgroup.php:292 lib/groupeditform.php:184 msgid "Aliases" msgstr "" -#: actions/showgroup.php:293 +#: actions/showgroup.php:301 msgid "Group actions" msgstr "Gruppenaktionen" -#: actions/showgroup.php:328 +#: actions/showgroup.php:336 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Nachrichtenfeed der Gruppe %s (RSS 1.0)" -#: actions/showgroup.php:334 +#: actions/showgroup.php:342 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Nachrichtenfeed der Gruppe %s (RSS 2.0)" -#: actions/showgroup.php:340 +#: actions/showgroup.php:348 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "Nachrichtenfeed der Gruppe %s (Atom)" -#: actions/showgroup.php:345 +#: actions/showgroup.php:353 #, php-format msgid "FOAF for %s group" msgstr "Postausgang von %s" -#: actions/showgroup.php:381 actions/showgroup.php:438 lib/groupnav.php:91 +#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 msgid "Members" msgstr "Mitglieder" -#: actions/showgroup.php:386 lib/profileaction.php:117 +#: actions/showgroup.php:394 lib/profileaction.php:117 #: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(Kein)" -#: actions/showgroup.php:392 +#: actions/showgroup.php:400 msgid "All members" msgstr "Alle Mitglieder" -#: actions/showgroup.php:432 +#: actions/showgroup.php:440 msgid "Created" msgstr "Erstellt" -#: actions/showgroup.php:448 +#: actions/showgroup.php:456 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3559,7 +3585,7 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showgroup.php:454 +#: actions/showgroup.php:462 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3572,7 +3598,7 @@ msgstr "" "Freien Software [StatusNet](http://status.net/). Seine Mitglieder erstellen " "kurze Nachrichten über Ihr Leben und Interessen. " -#: actions/showgroup.php:482 +#: actions/showgroup.php:490 msgid "Admins" msgstr "Administratoren" @@ -4045,22 +4071,22 @@ msgstr "Jabber" msgid "SMS" msgstr "SMS" -#: actions/tag.php:68 +#: actions/tag.php:69 #, php-format msgid "Notices tagged with %1$s, page %2$d" msgstr "Mit %1$s gekennzeichnete Nachrichten, Seite %2$d" -#: actions/tag.php:86 +#: actions/tag.php:87 #, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Nachrichten Feed für Tag %s (RSS 1.0)" -#: actions/tag.php:92 +#: actions/tag.php:93 #, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Nachrichten Feed für Tag %s (RSS 2.0)" -#: actions/tag.php:98 +#: actions/tag.php:99 #, php-format msgid "Notice feed for tag %s (Atom)" msgstr "Nachrichten Feed für Tag %s (Atom)" @@ -4117,7 +4143,7 @@ msgstr "" msgid "No such tag." msgstr "Tag nicht vorhanden." -#: actions/twitapitrends.php:87 +#: actions/twitapitrends.php:85 msgid "API method under construction." msgstr "API-Methode im Aufbau." @@ -4150,70 +4176,72 @@ msgstr "" "Die Nachrichtenlizenz '%s' ist nicht kompatibel mit der Lizenz der Seite '%" "s'." -#: actions/useradminpanel.php:58 lib/adminpanelaction.php:321 -#: lib/personalgroupnav.php:115 +#. TRANS: User admin panel title +#: actions/useradminpanel.php:59 +#, fuzzy +msgctxt "TITLE" msgid "User" msgstr "Benutzer" -#: actions/useradminpanel.php:69 +#: actions/useradminpanel.php:70 msgid "User settings for this StatusNet site." msgstr "Nutzer Einstellungen dieser StatusNet Seite." -#: actions/useradminpanel.php:148 +#: actions/useradminpanel.php:149 msgid "Invalid bio limit. Must be numeric." msgstr "Das Zeichenlimit der Biografie muss numerisch sein!" -#: actions/useradminpanel.php:154 +#: actions/useradminpanel.php:155 msgid "Invalid welcome text. Max length is 255 characters." msgstr "Willkommens-Nachricht ungültig. Maximale Länge sind 255 Zeichen." -#: actions/useradminpanel.php:164 +#: actions/useradminpanel.php:165 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" -#: actions/useradminpanel.php:217 lib/accountsettingsaction.php:108 +#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Profil" -#: actions/useradminpanel.php:221 +#: actions/useradminpanel.php:222 msgid "Bio Limit" msgstr "" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:223 msgid "Maximum length of a profile bio in characters." msgstr "" -#: actions/useradminpanel.php:230 +#: actions/useradminpanel.php:231 msgid "New users" msgstr "Neue Nutzer" -#: actions/useradminpanel.php:234 +#: actions/useradminpanel.php:235 msgid "New user welcome" msgstr "" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:236 msgid "Welcome text for new users (Max 255 chars)." msgstr "Willkommens-Nachricht für neue Nutzer (maximal 255 Zeichen)." -#: actions/useradminpanel.php:240 +#: actions/useradminpanel.php:241 msgid "Default subscription" msgstr "Standard Abonnement" -#: actions/useradminpanel.php:241 +#: actions/useradminpanel.php:242 msgid "Automatically subscribe new users to this user." msgstr "Neue Nutzer abonnieren automatisch diesen Nutzer" -#: actions/useradminpanel.php:250 +#: actions/useradminpanel.php:251 msgid "Invitations" msgstr "Einladungen" -#: actions/useradminpanel.php:255 +#: actions/useradminpanel.php:256 msgid "Invitations enabled" msgstr "Einladungen aktivieren" -#: actions/useradminpanel.php:257 +#: actions/useradminpanel.php:258 msgid "Whether to allow users to invite new users." msgstr "Ist es Nutzern erlaubt neue Nutzer einzuladen." @@ -4398,7 +4426,7 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:196 lib/action.php:747 +#: actions/version.php:196 lib/action.php:778 #, fuzzy msgid "Version" msgstr "Eigene" @@ -4440,6 +4468,11 @@ msgstr "Konnte Gruppe nicht aktualisieren." msgid "Group leave failed." msgstr "Gruppenprofil" +#: classes/Local_group.php:41 +#, fuzzy +msgid "Could not update local group." +msgstr "Konnte Gruppe nicht aktualisieren." + #: classes/Login_token.php:76 #, fuzzy, php-format msgid "Could not create login token for %s" @@ -4458,27 +4491,27 @@ msgstr "Konnte Nachricht nicht einfügen." msgid "Could not update message with new URI." msgstr "Konnte Nachricht nicht mit neuer URI versehen." -#: classes/Notice.php:157 +#: classes/Notice.php:172 #, php-format msgid "DB error inserting hashtag: %s" msgstr "Datenbankfehler beim Einfügen des Hashtags: %s" -#: classes/Notice.php:222 +#: classes/Notice.php:239 msgid "Problem saving notice. Too long." msgstr "Problem bei Speichern der Nachricht. Sie ist zu lang." -#: classes/Notice.php:226 +#: classes/Notice.php:243 msgid "Problem saving notice. Unknown user." msgstr "Problem bei Speichern der Nachricht. Unbekannter Benutzer." -#: classes/Notice.php:231 +#: classes/Notice.php:248 msgid "" "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." -#: classes/Notice.php:237 +#: classes/Notice.php:254 #, fuzzy msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " @@ -4487,21 +4520,21 @@ msgstr "" "Zu schnell zu viele Nachrichten; atme kurz durch und schicke sie erneut in " "ein paar Minuten ab." -#: classes/Notice.php:243 +#: classes/Notice.php:260 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:309 classes/Notice.php:335 +#: classes/Notice.php:326 classes/Notice.php:352 msgid "Problem saving notice." msgstr "Problem bei Speichern der Nachricht." -#: classes/Notice.php:882 +#: classes/Notice.php:911 #, fuzzy msgid "Problem saving group inbox." msgstr "Problem bei Speichern der Nachricht." -#: classes/Notice.php:1407 +#: classes/Notice.php:1442 #, fuzzy, php-format msgid "RT @%1$s %2$s" msgstr "%1$s (%2$s)" @@ -4532,19 +4565,29 @@ msgstr "Konnte Abonnement nicht löschen." msgid "Couldn't delete subscription." msgstr "Konnte Abonnement nicht löschen." -#: classes/User.php:372 +#: classes/User.php:373 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "Herzlich willkommen bei %1$s, @%2$s!" -#: classes/User_group.php:423 +#: classes/User_group.php:462 msgid "Could not create group." msgstr "Konnte Gruppe nicht erstellen." -#: classes/User_group.php:452 +#: classes/User_group.php:471 +#, fuzzy +msgid "Could not set group URI." +msgstr "Konnte Gruppenmitgliedschaft nicht setzen." + +#: classes/User_group.php:492 msgid "Could not set group membership." msgstr "Konnte Gruppenmitgliedschaft nicht setzen." +#: classes/User_group.php:506 +#, fuzzy +msgid "Could not save local group info." +msgstr "Konnte Abonnement nicht erstellen." + #: lib/accountsettingsaction.php:108 msgid "Change your profile settings" msgstr "Ändern der Profileinstellungen" @@ -4587,123 +4630,191 @@ msgstr "Seite ohne Titel" msgid "Primary site navigation" msgstr "Hauptnavigation" +#. TRANS: Tooltip for main menu option "Personal" #: lib/action.php:439 -msgid "Home" -msgstr "Startseite" - -#: lib/action.php:439 +#, fuzzy +msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Persönliches Profil und Freundes-Zeitleiste" -#: lib/action.php:441 +#: lib/action.php:442 +#, fuzzy +msgctxt "MENU" +msgid "Personal" +msgstr "Eigene" + +#. TRANS: Tooltip for main menu option "Account" +#: lib/action.php:444 +#, fuzzy +msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Ändere deine E-Mail, dein Avatar, Passwort, Profil" -#: lib/action.php:444 -msgid "Connect" -msgstr "Verbinden" - -#: lib/action.php:444 +#: lib/action.php:447 #, fuzzy +msgctxt "MENU" +msgid "Account" +msgstr "Konto" + +#. TRANS: Tooltip for main menu option "Services" +#: lib/action.php:450 +#, fuzzy +msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Konnte nicht zum Server umleiten: %s" -#: lib/action.php:448 +#: lib/action.php:453 #, fuzzy +msgctxt "MENU" +msgid "Connect" +msgstr "Verbinden" + +#. TRANS: Tooltip for menu option "Admin" +#: lib/action.php:457 +#, fuzzy +msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Hauptnavigation" -#: lib/action.php:452 lib/subgroupnav.php:105 -msgid "Invite" -msgstr "Einladen" +#: lib/action.php:460 +#, fuzzy +msgctxt "MENU" +msgid "Admin" +msgstr "Admin" -#: lib/action.php:453 lib/subgroupnav.php:106 -#, php-format +#. TRANS: Tooltip for main menu option "Invite" +#: lib/action.php:464 +#, fuzzy, php-format +msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Lade Freunde und Kollegen ein dir auf %s zu folgen" -#: lib/action.php:458 -msgid "Logout" -msgstr "Abmelden" +#: lib/action.php:467 +#, fuzzy +msgctxt "MENU" +msgid "Invite" +msgstr "Einladen" -#: lib/action.php:458 +#. TRANS: Tooltip for main menu option "Logout" +#: lib/action.php:473 +#, fuzzy +msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Von der Seite abmelden" -#: lib/action.php:463 +#: lib/action.php:476 +#, fuzzy +msgctxt "MENU" +msgid "Logout" +msgstr "Abmelden" + +#. TRANS: Tooltip for main menu option "Register" +#: lib/action.php:481 +#, fuzzy +msgctxt "TOOLTIP" msgid "Create an account" msgstr "Neues Konto erstellen" -#: lib/action.php:466 +#: lib/action.php:484 +#, fuzzy +msgctxt "MENU" +msgid "Register" +msgstr "Registrieren" + +#. TRANS: Tooltip for main menu option "Login" +#: lib/action.php:487 +#, fuzzy +msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Auf der Seite anmelden" -#: lib/action.php:469 lib/action.php:732 -msgid "Help" -msgstr "Hilfe" +#: lib/action.php:490 +#, fuzzy +msgctxt "MENU" +msgid "Login" +msgstr "Anmelden" -#: lib/action.php:469 +#. TRANS: Tooltip for main menu option "Help" +#: lib/action.php:493 +#, fuzzy +msgctxt "TOOLTIP" msgid "Help me!" msgstr "Hilf mir!" -#: lib/action.php:472 lib/searchaction.php:127 -msgid "Search" -msgstr "Suchen" +#: lib/action.php:496 +#, fuzzy +msgctxt "MENU" +msgid "Help" +msgstr "Hilfe" -#: lib/action.php:472 +#. TRANS: Tooltip for main menu option "Search" +#: lib/action.php:499 +#, fuzzy +msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Suche nach Leuten oder Text" -#: lib/action.php:493 +#: lib/action.php:502 +#, fuzzy +msgctxt "MENU" +msgid "Search" +msgstr "Suchen" + +#. TRANS: DT element for site notice. String is hidden in default CSS. +#: lib/action.php:524 msgid "Site notice" msgstr "Seitennachricht" -#: lib/action.php:559 +#: lib/action.php:590 msgid "Local views" msgstr "Lokale Ansichten" -#: lib/action.php:625 +#: lib/action.php:656 msgid "Page notice" msgstr "Neue Nachricht" -#: lib/action.php:727 +#: lib/action.php:758 msgid "Secondary site navigation" msgstr "Unternavigation" -#: lib/action.php:734 +#: lib/action.php:763 +msgid "Help" +msgstr "Hilfe" + +#: lib/action.php:765 msgid "About" msgstr "Über" -#: lib/action.php:736 +#: lib/action.php:767 msgid "FAQ" msgstr "FAQ" -#: lib/action.php:740 +#: lib/action.php:771 msgid "TOS" msgstr "AGB" -#: lib/action.php:743 +#: lib/action.php:774 msgid "Privacy" msgstr "Privatsphäre" -#: lib/action.php:745 +#: lib/action.php:776 msgid "Source" msgstr "Quellcode" -#: lib/action.php:749 +#: lib/action.php:780 msgid "Contact" msgstr "Kontakt" -#: lib/action.php:751 +#: lib/action.php:782 #, fuzzy msgid "Badge" msgstr "Stups" -#: lib/action.php:779 +#: lib/action.php:810 msgid "StatusNet software license" msgstr "StatusNet-Software-Lizenz" -#: lib/action.php:782 +#: lib/action.php:813 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4712,12 +4823,12 @@ msgstr "" "**%%site.name%%** ist ein Microbloggingdienst von [%%site.broughtby%%](%%" "site.broughtbyurl%%)." -#: lib/action.php:784 +#: lib/action.php:815 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** ist ein Microbloggingdienst." -#: lib/action.php:786 +#: lib/action.php:817 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4728,114 +4839,167 @@ msgstr "" "(Version %s) betrieben, die unter der [GNU Affero General Public License]" "(http://www.fsf.org/licensing/licenses/agpl-3.0.html) erhältlich ist." -#: lib/action.php:801 +#: lib/action.php:832 msgid "Site content license" msgstr "StatusNet-Software-Lizenz" -#: lib/action.php:806 +#: lib/action.php:837 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:811 +#: lib/action.php:842 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:814 +#: lib/action.php:845 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" -#: lib/action.php:827 +#: lib/action.php:858 #, fuzzy msgid "All " msgstr "Alle " -#: lib/action.php:833 +#: lib/action.php:864 msgid "license." msgstr "Lizenz." -#: lib/action.php:1132 +#: lib/action.php:1163 msgid "Pagination" msgstr "Seitenerstellung" -#: lib/action.php:1141 +#: lib/action.php:1172 msgid "After" msgstr "Später" -#: lib/action.php:1149 +#: lib/action.php:1180 msgid "Before" msgstr "Vorher" -#: lib/activity.php:382 +#: lib/activity.php:449 msgid "Can't handle remote content yet." msgstr "" -#: lib/activity.php:410 +#: lib/activity.php:477 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activity.php:414 +#: lib/activity.php:481 msgid "Can't handle embedded Base64 content yet." msgstr "" -#: lib/adminpanelaction.php:96 +#. TRANS: Client error message +#: lib/adminpanelaction.php:98 #, fuzzy msgid "You cannot make changes to this site." msgstr "Du kannst diesem Benutzer keine Nachricht schicken." -#: lib/adminpanelaction.php:107 +#. TRANS: Client error message +#: lib/adminpanelaction.php:110 #, fuzzy msgid "Changes to that panel are not allowed." msgstr "Registrierung nicht gestattet" -#: lib/adminpanelaction.php:206 +#. TRANS: Client error message +#: lib/adminpanelaction.php:211 msgid "showForm() not implemented." msgstr "showForm() noch nicht implementiert." -#: lib/adminpanelaction.php:235 +#. TRANS: Client error message +#: lib/adminpanelaction.php:241 msgid "saveSettings() not implemented." msgstr "saveSettings() noch nicht implementiert." -#: lib/adminpanelaction.php:258 +#. TRANS: Client error message +#: lib/adminpanelaction.php:265 msgid "Unable to delete design setting." msgstr "Konnte die Design Einstellungen nicht löschen." -#: lib/adminpanelaction.php:312 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:330 #, fuzzy msgid "Basic site configuration" msgstr "Bestätigung der E-Mail-Adresse" -#: lib/adminpanelaction.php:317 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:332 +#, fuzzy +msgctxt "MENU" +msgid "Site" +msgstr "Seite" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:338 #, fuzzy msgid "Design configuration" msgstr "SMS-Konfiguration" -#: lib/adminpanelaction.php:322 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:340 +#, fuzzy +msgctxt "MENU" +msgid "Design" +msgstr "Eigene" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:346 #, fuzzy msgid "User configuration" msgstr "SMS-Konfiguration" -#: lib/adminpanelaction.php:327 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:348 +#, fuzzy +msgctxt "MENU" +msgid "User" +msgstr "Benutzer" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:354 #, fuzzy msgid "Access configuration" msgstr "SMS-Konfiguration" -#: lib/adminpanelaction.php:332 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:356 +#, fuzzy +msgctxt "MENU" +msgid "Access" +msgstr "Zugang" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:362 #, fuzzy msgid "Paths configuration" msgstr "SMS-Konfiguration" -#: lib/adminpanelaction.php:337 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:364 +#, fuzzy +msgctxt "MENU" +msgid "Paths" +msgstr "Pfad" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:370 #, fuzzy msgid "Sessions configuration" msgstr "SMS-Konfiguration" -#: lib/apiauth.php:95 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:372 +#, fuzzy +msgctxt "MENU" +msgid "Sessions" +msgstr "Eigene" + +#: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." msgstr "" -#: lib/apiauth.php:273 +#: lib/apiauth.php:272 #, php-format msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" msgstr "" @@ -4930,12 +5094,12 @@ msgstr "Nachrichten in denen dieser Anhang erscheint" msgid "Tags for this attachment" msgstr "Tags für diesen Anhang" -#: lib/authenticationplugin.php:218 lib/authenticationplugin.php:223 +#: lib/authenticationplugin.php:220 lib/authenticationplugin.php:225 #, fuzzy msgid "Password changing failed" msgstr "Passwort geändert" -#: lib/authenticationplugin.php:233 +#: lib/authenticationplugin.php:235 #, fuzzy msgid "Password changing is not allowed" msgstr "Passwort geändert" @@ -5210,19 +5374,19 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:136 +#: lib/common.php:148 msgid "No configuration file found. " msgstr "Keine Konfigurationsdatei gefunden." -#: lib/common.php:137 +#: lib/common.php:149 msgid "I looked for configuration files in the following places: " msgstr "Ich habe an folgenden Stellen nach Konfigurationsdateien gesucht: " -#: lib/common.php:139 +#: lib/common.php:151 msgid "You may wish to run the installer to fix this." msgstr "" -#: lib/common.php:140 +#: lib/common.php:152 #, fuzzy msgid "Go to the installer." msgstr "Auf der Seite anmelden" @@ -5419,23 +5583,23 @@ msgstr "Systemfehler beim hochladen der Datei." msgid "Not an image or corrupt file." msgstr "Kein Bild oder defekte Datei." -#: lib/imagefile.php:105 +#: lib/imagefile.php:109 msgid "Unsupported image file format." msgstr "Bildformat wird nicht unterstützt." -#: lib/imagefile.php:118 +#: lib/imagefile.php:122 msgid "Lost our file." msgstr "Daten verloren." -#: lib/imagefile.php:150 lib/imagefile.php:197 +#: lib/imagefile.php:166 lib/imagefile.php:231 msgid "Unknown file type" msgstr "Unbekannter Dateityp" -#: lib/imagefile.php:217 +#: lib/imagefile.php:251 msgid "MB" msgstr "MB" -#: lib/imagefile.php:219 +#: lib/imagefile.php:253 msgid "kB" msgstr "kB" @@ -5795,6 +5959,12 @@ msgstr "An" msgid "Available characters" msgstr "Verfügbare Zeichen" +#: lib/messageform.php:178 lib/noticeform.php:236 +#, fuzzy +msgctxt "Send button for sending notice" +msgid "Send" +msgstr "Senden" + #: lib/noticeform.php:160 msgid "Send a notice" msgstr "Nachricht senden" @@ -5851,23 +6021,23 @@ msgstr "W" msgid "at" msgstr "" -#: lib/noticelist.php:558 +#: lib/noticelist.php:566 msgid "in context" msgstr "im Zusammenhang" -#: lib/noticelist.php:583 +#: lib/noticelist.php:601 msgid "Repeated by" msgstr "Wiederholt von" -#: lib/noticelist.php:610 +#: lib/noticelist.php:628 msgid "Reply to this notice" msgstr "Auf diese Nachricht antworten" -#: lib/noticelist.php:611 +#: lib/noticelist.php:629 msgid "Reply" msgstr "Antworten" -#: lib/noticelist.php:655 +#: lib/noticelist.php:673 msgid "Notice repeated" msgstr "Nachricht wiederholt" @@ -5916,6 +6086,10 @@ msgstr "Antworten" msgid "Favorites" msgstr "Favoriten" +#: lib/personalgroupnav.php:115 +msgid "User" +msgstr "Benutzer" + #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "Posteingang" @@ -6007,7 +6181,7 @@ msgstr "Diese Nachricht wiederholen?" msgid "Repeat this notice" msgstr "Diese Nachricht wiederholen" -#: lib/router.php:665 +#: lib/router.php:668 msgid "No single user defined for single-user mode." msgstr "" @@ -6027,6 +6201,10 @@ msgstr "Site durchsuchen" msgid "Keyword(s)" msgstr "" +#: lib/searchaction.php:127 +msgid "Search" +msgstr "Suchen" + #: lib/searchaction.php:162 #, fuzzy msgid "Search help" @@ -6079,6 +6257,15 @@ msgstr "Leute, die %s abonniert haben" msgid "Groups %s is a member of" msgstr "Gruppen in denen %s Mitglied ist" +#: lib/subgroupnav.php:105 +msgid "Invite" +msgstr "Einladen" + +#: lib/subgroupnav.php:106 +#, php-format +msgid "Invite friends and colleagues to join you on %s" +msgstr "Lade Freunde und Kollegen ein dir auf %s zu folgen" + #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -6149,47 +6336,47 @@ msgstr "Nachricht" msgid "Moderate" msgstr "Moderieren" -#: lib/util.php:952 +#: lib/util.php:1013 msgid "a few seconds ago" msgstr "vor wenigen Sekunden" -#: lib/util.php:954 +#: lib/util.php:1015 msgid "about a minute ago" msgstr "vor einer Minute" -#: lib/util.php:956 +#: lib/util.php:1017 #, php-format msgid "about %d minutes ago" msgstr "vor %d Minuten" -#: lib/util.php:958 +#: lib/util.php:1019 msgid "about an hour ago" msgstr "vor einer Stunde" -#: lib/util.php:960 +#: lib/util.php:1021 #, php-format msgid "about %d hours ago" msgstr "vor %d Stunden" -#: lib/util.php:962 +#: lib/util.php:1023 msgid "about a day ago" msgstr "vor einem Tag" -#: lib/util.php:964 +#: lib/util.php:1025 #, php-format msgid "about %d days ago" msgstr "vor %d Tagen" -#: lib/util.php:966 +#: lib/util.php:1027 msgid "about a month ago" msgstr "vor einem Monat" -#: lib/util.php:968 +#: lib/util.php:1029 #, php-format msgid "about %d months ago" msgstr "vor %d Monaten" -#: lib/util.php:970 +#: lib/util.php:1031 msgid "about a year ago" msgstr "vor einem Jahr" diff --git a/locale/el/LC_MESSAGES/statusnet.po b/locale/el/LC_MESSAGES/statusnet.po index 6ff718d453..ed9ab78036 100644 --- a/locale/el/LC_MESSAGES/statusnet.po +++ b/locale/el/LC_MESSAGES/statusnet.po @@ -9,78 +9,84 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-02-24 23:49+0000\n" -"PO-Revision-Date: 2010-02-24 23:50:24+0000\n" +"POT-Creation-Date: 2010-03-02 21:02+0000\n" +"PO-Revision-Date: 2010-03-02 21:02:33+0000\n" "Language-Team: Greek\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r62925); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: el\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: actions/accessadminpanel.php:54 lib/adminpanelaction.php:326 +#. TRANS: Page title +#: actions/accessadminpanel.php:55 msgid "Access" msgstr "Πρόσβαση" -#: actions/accessadminpanel.php:65 +#. TRANS: Page notice +#: actions/accessadminpanel.php:67 #, fuzzy msgid "Site access settings" msgstr "Ρυθμίσεις OpenID" -#: actions/accessadminpanel.php:158 +#. TRANS: Form legend for registration form. +#: actions/accessadminpanel.php:161 #, fuzzy msgid "Registration" msgstr "Περιγραφή" -#: actions/accessadminpanel.php:161 -msgid "Private" -msgstr "" - -#: actions/accessadminpanel.php:163 +#. TRANS: Checkbox instructions for admin setting "Private" +#: actions/accessadminpanel.php:165 msgid "Prohibit anonymous users (not logged in) from viewing site?" msgstr "" +#. TRANS: Checkbox label for prohibiting anonymous users from viewing site. #: actions/accessadminpanel.php:167 -msgid "Invite only" +msgctxt "LABEL" +msgid "Private" msgstr "" -#: actions/accessadminpanel.php:169 +#. TRANS: Checkbox instructions for admin setting "Invite only" +#: actions/accessadminpanel.php:174 msgid "Make registration invitation only." msgstr "" -#: actions/accessadminpanel.php:173 -msgid "Closed" +#. TRANS: Checkbox label for configuring site as invite only. +#: actions/accessadminpanel.php:176 +msgid "Invite only" msgstr "" -#: actions/accessadminpanel.php:175 +#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations) +#: actions/accessadminpanel.php:183 msgid "Disable new registrations." msgstr "" -#: actions/accessadminpanel.php:189 actions/designadminpanel.php:586 -#: actions/emailsettings.php:195 actions/imsettings.php:163 -#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 -#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 -#: actions/siteadminpanel.php:336 actions/smssettings.php:181 -#: actions/subscriptions.php:208 actions/tagother.php:154 -#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 -#: lib/applicationeditform.php:334 lib/designsettings.php:256 -#: lib/groupeditform.php:202 -msgid "Save" +#. TRANS: Checkbox label for disabling new user registrations. +#: actions/accessadminpanel.php:185 +msgid "Closed" msgstr "" -#: actions/accessadminpanel.php:189 +#. TRANS: Title / tooltip for button to save access settings in site admin panel +#: actions/accessadminpanel.php:202 #, fuzzy msgid "Save access settings" msgstr "Ρυθμίσεις OpenID" -#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 -#: actions/showfavorites.php:137 actions/tag.php:51 +#: actions/accessadminpanel.php:203 +#, fuzzy +msgctxt "BUTTON" +msgid "Save" +msgstr "Αποχώρηση" + +#. TRANS: Server error when page not found (404) +#: actions/all.php:64 actions/public.php:98 actions/replies.php:93 +#: actions/showfavorites.php:138 actions/tag.php:52 msgid "No such page" msgstr "Δεν υπάρχει τέτοια σελίδα" -#: actions/all.php:74 actions/allrss.php:68 +#: actions/all.php:75 actions/allrss.php:68 #: actions/apiaccountupdatedeliverydevice.php:113 #: actions/apiaccountupdateprofile.php:105 #: actions/apiaccountupdateprofilebackgroundimage.php:116 @@ -94,72 +100,82 @@ msgstr "Δεν υπάρχει τέτοια σελίδα" #: actions/apitimelinehome.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/otp.php:76 -#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154 -#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 -#: actions/showfavorites.php:105 actions/userbyid.php:74 -#: actions/usergroups.php:91 actions/userrss.php:38 actions/xrds.php:71 -#: lib/command.php:163 lib/command.php:302 lib/command.php:355 -#: lib/command.php:401 lib/command.php:462 lib/command.php:518 -#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 +#: actions/hcard.php:67 actions/microsummary.php:62 actions/newmessage.php:116 +#: actions/otp.php:76 actions/remotesubscribe.php:145 +#: actions/remotesubscribe.php:154 actions/replies.php:73 +#: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/xrds.php:71 lib/command.php:163 lib/command.php:302 +#: lib/command.php:355 lib/command.php:401 lib/command.php:462 +#: lib/command.php:518 lib/galleryaction.php:59 lib/mailbox.php:82 +#: lib/profileaction.php:77 msgid "No such user." msgstr "Κανένας τέτοιος χρήστης." -#: actions/all.php:84 +#. TRANS: Page title. %1$s is user nickname, %2$d is page number +#: actions/all.php:86 #, fuzzy, php-format msgid "%1$s and friends, page %2$d" msgstr "%s και οι φίλοι του/της" -#: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 +#. TRANS: Page title. %1$s is user nickname +#. TRANS: H1 text. %1$s is user nickname +#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" msgstr "%s και οι φίλοι του/της" -#: actions/all.php:99 +#. TRANS: %1$s is user nickname +#: actions/all.php:103 #, php-format msgid "Feed for friends of %s (RSS 1.0)" msgstr "Ροή φίλων του/της %s (RSS 1.0)" -#: actions/all.php:107 +#. TRANS: %1$s is user nickname +#: actions/all.php:112 #, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "Ροή φίλων του/της %s (RSS 2.0)" -#: actions/all.php:115 +#. TRANS: %1$s is user nickname +#: actions/all.php:121 #, php-format msgid "Feed for friends of %s (Atom)" msgstr "Ροή φίλων του/της %s (Atom)" -#: actions/all.php:127 +#. TRANS: %1$s is user nickname +#: actions/all.php:134 #, php-format msgid "" "This is the timeline for %s and friends but no one has posted anything yet." msgstr "" -#: actions/all.php:132 +#: actions/all.php:139 #, php-format msgid "" "Try subscribing to more people, [join a group](%%action.groups%%) or post " "something yourself." msgstr "" -#: actions/all.php:134 +#. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@" +#: actions/all.php:142 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) from his profile or [post something to " "his or her attention](%%%%action.newnotice%%%%?status_textarea=%3$s)." msgstr "" -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211 +#: actions/all.php:145 actions/replies.php:210 actions/showstream.php:211 #, 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/all.php:165 +#. TRANS: H1 text +#: actions/all.php:174 msgid "You and friends" msgstr "Εσείς και οι φίλοι σας" @@ -177,20 +193,20 @@ msgstr "" #: actions/apiaccountverifycredentials.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:128 actions/apigroupcreate.php:136 +#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: actions/apigroupleave.php:141 actions/apigrouplist.php:132 #: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 #: actions/apigroupshow.php:115 actions/apihelptest.php:88 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 -#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184 +#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 #: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:207 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 #, fuzzy msgid "API method not found." msgstr "Η μέθοδος του ΑΡΙ δε βρέθηκε!" @@ -224,8 +240,9 @@ msgstr "Απέτυχε η ενημέρωση του χρήστη." #: actions/apiaccountupdateprofilebackgroundimage.php:194 #: actions/apiaccountupdateprofilecolors.php:185 #: 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 +#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 +#: actions/replies.php:80 actions/usergroups.php:98 lib/galleryaction.php:66 +#: lib/profileaction.php:84 msgid "User has no profile." msgstr "" @@ -250,7 +267,7 @@ msgstr "" #: actions/apiaccountupdateprofilebackgroundimage.php:146 #: actions/apiaccountupdateprofilecolors.php:164 #: actions/apiaccountupdateprofilecolors.php:174 -#: actions/groupdesignsettings.php:287 actions/groupdesignsettings.php:297 +#: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300 #: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 #: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 msgid "Unable to save your design settings." @@ -366,68 +383,68 @@ msgstr "Απέτυχε η ενημέρωση του χρήστη." msgid "Could not find target user." msgstr "Απέτυχε η εύρεση οποιασδήποτε κατάστασης." -#: actions/apigroupcreate.php:164 actions/editgroup.php:182 +#: actions/apigroupcreate.php:166 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:215 #: actions/register.php:205 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "Το ψευδώνυμο πρέπει να έχει μόνο πεζούς χαρακτήρες και χωρίς κενά." -#: actions/apigroupcreate.php:173 actions/editgroup.php:186 +#: actions/apigroupcreate.php:175 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:238 #: actions/register.php:208 msgid "Nickname already in use. Try another one." msgstr "Το ψευδώνυμο είναι ήδη σε χρήση. Δοκιμάστε κάποιο άλλο." -#: actions/apigroupcreate.php:180 actions/editgroup.php:189 +#: actions/apigroupcreate.php:182 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:218 #: actions/register.php:210 msgid "Not a valid nickname." msgstr "" -#: actions/apigroupcreate.php:196 actions/editapplication.php:215 -#: actions/editgroup.php:195 actions/newapplication.php:203 +#: actions/apigroupcreate.php:198 actions/editapplication.php:215 +#: actions/editgroup.php:199 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:217 msgid "Homepage is not a valid URL." msgstr "Η αρχική σελίδα δεν είναι έγκυρο URL." -#: actions/apigroupcreate.php:205 actions/editgroup.php:198 +#: actions/apigroupcreate.php:207 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:225 #: actions/register.php:220 msgid "Full name is too long (max 255 chars)." msgstr "Το ονοματεπώνυμο είναι πολύ μεγάλο (μέγιστο 255 χαρακτ.)." -#: actions/apigroupcreate.php:213 actions/editapplication.php:190 +#: actions/apigroupcreate.php:215 actions/editapplication.php:190 #: actions/newapplication.php:172 #, php-format msgid "Description is too long (max %d chars)." msgstr "Η περιγραφή είναι πολύ μεγάλη (μέγιστο %d χαρακτ.)." -#: actions/apigroupcreate.php:224 actions/editgroup.php:204 +#: actions/apigroupcreate.php:226 actions/editgroup.php:208 #: actions/newgroup.php:148 actions/profilesettings.php:232 #: actions/register.php:227 msgid "Location is too long (max 255 chars)." msgstr "Η τοποθεσία είναι πολύ μεγάλη (μέγιστο 255 χαρακτ.)." -#: actions/apigroupcreate.php:243 actions/editgroup.php:215 +#: actions/apigroupcreate.php:245 actions/editgroup.php:219 #: actions/newgroup.php:159 #, php-format msgid "Too many aliases! Maximum %d." msgstr "" -#: actions/apigroupcreate.php:264 actions/editgroup.php:224 +#: actions/apigroupcreate.php:266 actions/editgroup.php:228 #: actions/newgroup.php:168 #, php-format msgid "Invalid alias: \"%s\"" msgstr "" -#: actions/apigroupcreate.php:273 actions/editgroup.php:228 +#: actions/apigroupcreate.php:275 actions/editgroup.php:232 #: actions/newgroup.php:172 #, fuzzy, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "Το ψευδώνυμο είναι ήδη σε χρήση. Δοκιμάστε κάποιο άλλο." -#: actions/apigroupcreate.php:286 actions/editgroup.php:234 +#: actions/apigroupcreate.php:288 actions/editgroup.php:238 #: actions/newgroup.php:178 msgid "Alias can't be the same as nickname." msgstr "" @@ -438,15 +455,15 @@ msgstr "" msgid "Group not found!" msgstr "Η ομάδα δεν βρέθηκε!" -#: actions/apigroupjoin.php:110 actions/joingroup.php:90 +#: actions/apigroupjoin.php:110 actions/joingroup.php:100 msgid "You are already a member of that group." msgstr "" -#: actions/apigroupjoin.php:119 actions/joingroup.php:95 lib/command.php:221 +#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:221 msgid "You have been blocked from that group by the admin." msgstr "" -#: actions/apigroupjoin.php:138 actions/joingroup.php:124 +#: actions/apigroupjoin.php:138 actions/joingroup.php:134 #, fuzzy, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Αδύνατη η αποθήκευση των νέων πληροφοριών του προφίλ" @@ -455,7 +472,7 @@ msgstr "Αδύνατη η αποθήκευση των νέων πληροφορ msgid "You are not a member of this group." msgstr "" -#: actions/apigroupleave.php:124 actions/leavegroup.php:119 +#: actions/apigroupleave.php:124 actions/leavegroup.php:129 #, fuzzy, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "Αδύνατη η αποθήκευση του προφίλ." @@ -487,7 +504,7 @@ msgstr "Μήνυμα" #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 #: actions/deletenotice.php:157 actions/disfavor.php:74 #: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54 -#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupblock.php:66 actions/grouplogo.php:312 #: actions/groupunblock.php:66 actions/imsettings.php:206 #: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 @@ -530,7 +547,7 @@ msgstr "" #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:103 actions/editapplication.php:139 -#: actions/emailsettings.php:256 actions/grouplogo.php:319 +#: actions/emailsettings.php:256 actions/grouplogo.php:322 #: actions/imsettings.php:220 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 #: actions/smssettings.php:248 lib/designsettings.php:304 @@ -553,13 +570,13 @@ msgid "" "give access to your %4$s account to third parties you trust." msgstr "" -#: actions/apioauthauthorize.php:310 lib/action.php:441 +#: actions/apioauthauthorize.php:310 msgid "Account" msgstr "Λογαριασμός" #: actions/apioauthauthorize.php:313 actions/login.php:230 #: actions/profilesettings.php:106 actions/register.php:424 -#: actions/showgroup.php:236 actions/tagother.php:94 +#: actions/showgroup.php:244 actions/tagother.php:94 #: actions/userauthorization.php:145 lib/groupeditform.php:152 #: lib/userprofile.php:131 msgid "Nickname" @@ -643,12 +660,12 @@ msgid "%1$s updates favorited by %2$s / %2$s." msgstr "" #: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:131 actions/userrss.php:90 +#: actions/grouprss.php:138 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "χρονοδιάγραμμα του χρήστη %s" -#: actions/apitimelinegroup.php:114 actions/apitimelineuser.php:126 +#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 #: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" @@ -684,7 +701,7 @@ msgstr "" msgid "Repeats of %s" msgstr "" -#: actions/apitimelinetag.php:102 actions/tag.php:66 +#: actions/apitimelinetag.php:102 actions/tag.php:67 #, php-format msgid "Notices tagged with %s" msgstr "" @@ -705,8 +722,7 @@ msgstr "" #: actions/avatarbynickname.php:59 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/leavegroup.php:76 -#: actions/showgroup.php:121 +#: actions/grouprss.php:91 actions/showgroup.php:121 msgid "No nickname." msgstr "" @@ -718,7 +734,7 @@ msgstr "" msgid "Invalid size." msgstr "" -#: actions/avatarsettings.php:67 actions/showgroup.php:221 +#: actions/avatarsettings.php:67 actions/showgroup.php:229 #: lib/accountsettingsaction.php:112 msgid "Avatar" msgstr "" @@ -735,30 +751,30 @@ msgid "User without matching profile" msgstr "" #: actions/avatarsettings.php:119 actions/avatarsettings.php:197 -#: actions/grouplogo.php:251 +#: actions/grouplogo.php:254 msgid "Avatar settings" msgstr "Ρυθμίσεις του άβαταρ" #: actions/avatarsettings.php:127 actions/avatarsettings.php:205 -#: actions/grouplogo.php:199 actions/grouplogo.php:259 +#: actions/grouplogo.php:202 actions/grouplogo.php:262 msgid "Original" msgstr "" #: actions/avatarsettings.php:142 actions/avatarsettings.php:217 -#: actions/grouplogo.php:210 actions/grouplogo.php:271 +#: actions/grouplogo.php:213 actions/grouplogo.php:274 msgid "Preview" msgstr "" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:637 +#: lib/deleteuserform.php:66 lib/noticelist.php:655 msgid "Delete" msgstr "Διαγραφή" -#: actions/avatarsettings.php:166 actions/grouplogo.php:233 +#: actions/avatarsettings.php:166 actions/grouplogo.php:236 msgid "Upload" msgstr "" -#: actions/avatarsettings.php:231 actions/grouplogo.php:286 +#: actions/avatarsettings.php:231 actions/grouplogo.php:289 msgid "Crop" msgstr "" @@ -766,7 +782,7 @@ msgstr "" msgid "Pick a square area of the image to be your avatar" msgstr "" -#: actions/avatarsettings.php:343 actions/grouplogo.php:377 +#: actions/avatarsettings.php:343 actions/grouplogo.php:380 msgid "Lost our file data." msgstr "" @@ -800,23 +816,23 @@ msgid "" msgstr "" #: actions/block.php:143 actions/deleteapplication.php:153 -#: actions/deletenotice.php:145 actions/deleteuser.php:147 +#: actions/deletenotice.php:145 actions/deleteuser.php:150 #: actions/groupblock.php:178 msgid "No" msgstr "Όχι" -#: actions/block.php:143 actions/deleteuser.php:147 +#: actions/block.php:143 actions/deleteuser.php:150 #, fuzzy msgid "Do not block this user" msgstr "Αδυναμία διαγραφής αυτού του μηνύματος." #: actions/block.php:144 actions/deleteapplication.php:158 -#: actions/deletenotice.php:146 actions/deleteuser.php:148 +#: actions/deletenotice.php:146 actions/deleteuser.php:151 #: actions/groupblock.php:179 lib/repeatform.php:132 msgid "Yes" msgstr "Ναι" -#: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:355 lib/blockform.php:80 msgid "Block this user" msgstr "" @@ -824,40 +840,44 @@ msgstr "" msgid "Failed to save block information." msgstr "" -#: actions/blockedfromgroup.php:80 actions/editgroup.php:96 -#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/groupblock.php:86 -#: actions/groupbyid.php:83 actions/groupdesignsettings.php:97 -#: actions/grouplogo.php:99 actions/groupmembers.php:83 -#: actions/grouprss.php:98 actions/groupunblock.php:86 -#: actions/joingroup.php:83 actions/leavegroup.php:83 actions/makeadmin.php:86 -#: actions/showgroup.php:137 lib/command.php:212 lib/command.php:260 +#: actions/blockedfromgroup.php:80 actions/blockedfromgroup.php:87 +#: actions/editgroup.php:100 actions/foafgroup.php:44 actions/foafgroup.php:62 +#: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:100 actions/grouplogo.php:102 +#: actions/groupmembers.php:83 actions/groupmembers.php:90 +#: actions/grouprss.php:98 actions/grouprss.php:105 +#: actions/groupunblock.php:86 actions/joingroup.php:82 +#: actions/joingroup.php:93 actions/leavegroup.php:82 +#: actions/leavegroup.php:93 actions/makeadmin.php:86 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:212 +#: lib/command.php:260 #, fuzzy msgid "No such group." msgstr "Αδύνατη η αποθήκευση του προφίλ." -#: actions/blockedfromgroup.php:90 +#: actions/blockedfromgroup.php:97 #, fuzzy, php-format msgid "%s blocked profiles" msgstr "Αδύνατη η αποθήκευση του προφίλ." -#: actions/blockedfromgroup.php:93 +#: actions/blockedfromgroup.php:100 #, fuzzy, php-format msgid "%1$s blocked profiles, page %2$d" msgstr "%s και οι φίλοι του/της" -#: actions/blockedfromgroup.php:108 +#: actions/blockedfromgroup.php:115 msgid "A list of the users blocked from joining this group." msgstr "" -#: actions/blockedfromgroup.php:281 +#: actions/blockedfromgroup.php:288 msgid "Unblock user from group" msgstr "" -#: actions/blockedfromgroup.php:313 lib/unblockform.php:69 +#: actions/blockedfromgroup.php:320 lib/unblockform.php:69 msgid "Unblock" msgstr "" -#: actions/blockedfromgroup.php:313 lib/unblockform.php:80 +#: actions/blockedfromgroup.php:320 lib/unblockform.php:80 msgid "Unblock this user" msgstr "" @@ -936,7 +956,7 @@ msgstr "Ομάδες με τα περισσότερα μέλη" #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1197 +#: lib/action.php:1228 msgid "There was a problem with your session token." msgstr "" @@ -962,12 +982,13 @@ msgstr "Αδυναμία διαγραφής αυτού του μηνύματος msgid "Delete this application" msgstr "Περιγράψτε την ομάδα ή το θέμα" +#. TRANS: Client error message #: 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:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 -#: lib/adminpanelaction.php:72 lib/profileformaction.php:63 +#: lib/adminpanelaction.php:73 lib/profileformaction.php:63 #: lib/settingsaction.php:72 msgid "Not logged in." msgstr "" @@ -996,7 +1017,7 @@ msgstr "Είσαι σίγουρος ότι θες να διαγράψεις αυ msgid "Do not delete this notice" msgstr "Αδυναμία διαγραφής αυτού του μηνύματος." -#: actions/deletenotice.php:146 lib/noticelist.php:637 +#: actions/deletenotice.php:146 lib/noticelist.php:655 msgid "Delete this notice" msgstr "" @@ -1013,18 +1034,18 @@ msgstr "" msgid "Delete user" msgstr "Διαγραφή χρήστη" -#: actions/deleteuser.php:135 +#: actions/deleteuser.php:136 msgid "" "Are you sure you want to delete this user? This will clear all data about " "the user from the database, without a backup." msgstr "" -#: actions/deleteuser.php:148 lib/deleteuserform.php:77 +#: actions/deleteuser.php:151 lib/deleteuserform.php:77 msgid "Delete this user" msgstr "Διαγράψτε αυτόν τον χρήστη" #: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 -#: lib/adminpanelaction.php:316 lib/groupnav.php:119 +#: lib/groupnav.php:119 msgid "Design" msgstr "" @@ -1128,6 +1149,17 @@ msgstr "" msgid "Reset back to default" msgstr "" +#: actions/designadminpanel.php:586 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/tagother.php:154 actions/useradminpanel.php:294 +#: lib/applicationeditform.php:333 lib/applicationeditform.php:334 +#: lib/designsettings.php:256 lib/groupeditform.php:202 +msgid "Save" +msgstr "" + #: actions/designadminpanel.php:587 lib/designsettings.php:257 msgid "Save design" msgstr "" @@ -1227,31 +1259,31 @@ msgstr "" msgid "You must be logged in to create a group." msgstr "" -#: actions/editgroup.php:103 actions/editgroup.php:168 -#: actions/groupdesignsettings.php:104 actions/grouplogo.php:106 +#: actions/editgroup.php:107 actions/editgroup.php:172 +#: actions/groupdesignsettings.php:107 actions/grouplogo.php:109 msgid "You must be an admin to edit the group." msgstr "" -#: actions/editgroup.php:154 +#: actions/editgroup.php:158 msgid "Use this form to edit the group." msgstr "" -#: actions/editgroup.php:201 actions/newgroup.php:145 +#: actions/editgroup.php:205 actions/newgroup.php:145 #, fuzzy, php-format msgid "description is too long (max %d chars)." msgstr "Το βιογραφικό είναι πολύ μεγάλο (μέγιστο 140 χαρακτ.)." -#: actions/editgroup.php:253 +#: actions/editgroup.php:258 #, fuzzy msgid "Could not update group." msgstr "Αδύνατη η αποθήκευση του προφίλ." -#: actions/editgroup.php:259 classes/User_group.php:433 +#: actions/editgroup.php:264 classes/User_group.php:478 #, fuzzy msgid "Could not create aliases." msgstr "Αδύνατη η αποθήκευση του προφίλ." -#: actions/editgroup.php:269 +#: actions/editgroup.php:280 msgid "Options saved." msgstr "" @@ -1593,7 +1625,7 @@ msgstr "" msgid "User is not a member of group." msgstr "" -#: actions/groupblock.php:136 actions/groupmembers.php:316 +#: actions/groupblock.php:136 actions/groupmembers.php:323 msgid "Block user from group" msgstr "" @@ -1625,90 +1657,90 @@ msgstr "" msgid "You must be logged in to edit a group." msgstr "" -#: actions/groupdesignsettings.php:141 +#: actions/groupdesignsettings.php:144 msgid "Group design" msgstr "" -#: actions/groupdesignsettings.php:152 +#: actions/groupdesignsettings.php:155 msgid "" "Customize the way your group looks with a background image and a colour " "palette of your choice." msgstr "" -#: actions/groupdesignsettings.php:263 actions/userdesignsettings.php:186 +#: actions/groupdesignsettings.php:266 actions/userdesignsettings.php:186 #: lib/designsettings.php:391 lib/designsettings.php:413 #, fuzzy msgid "Couldn't update your design." msgstr "Απέτυχε η ενημέρωση του χρήστη." -#: actions/groupdesignsettings.php:308 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231 #, fuzzy msgid "Design preferences saved." msgstr "Οι προτιμήσεις αποθηκεύτηκαν" -#: actions/grouplogo.php:139 actions/grouplogo.php:192 +#: actions/grouplogo.php:142 actions/grouplogo.php:195 msgid "Group logo" msgstr "" -#: actions/grouplogo.php:150 +#: actions/grouplogo.php:153 #, php-format msgid "" "You can upload a logo image for your group. The maximum file size is %s." msgstr "" -#: actions/grouplogo.php:178 +#: actions/grouplogo.php:181 msgid "User without matching profile." msgstr "" -#: actions/grouplogo.php:362 +#: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." msgstr "" -#: actions/grouplogo.php:396 +#: actions/grouplogo.php:399 #, fuzzy msgid "Logo updated." msgstr "Αποσύνδεση" -#: actions/grouplogo.php:398 +#: actions/grouplogo.php:401 msgid "Failed updating logo." msgstr "" -#: actions/groupmembers.php:93 lib/groupnav.php:92 +#: actions/groupmembers.php:100 lib/groupnav.php:92 #, php-format msgid "%s group members" msgstr "" -#: actions/groupmembers.php:96 +#: actions/groupmembers.php:103 #, php-format msgid "%1$s group members, page %2$d" msgstr "" -#: actions/groupmembers.php:111 +#: actions/groupmembers.php:118 msgid "A list of the users in this group." msgstr "" -#: actions/groupmembers.php:175 lib/action.php:448 lib/groupnav.php:107 +#: actions/groupmembers.php:182 lib/groupnav.php:107 msgid "Admin" msgstr "Διαχειριστής" -#: actions/groupmembers.php:348 lib/blockform.php:69 +#: actions/groupmembers.php:355 lib/blockform.php:69 msgid "Block" msgstr "" -#: actions/groupmembers.php:443 +#: actions/groupmembers.php:450 msgid "Make user an admin of the group" msgstr "" -#: actions/groupmembers.php:475 +#: actions/groupmembers.php:482 #, fuzzy msgid "Make Admin" msgstr "Διαχειριστής" -#: actions/groupmembers.php:475 +#: actions/groupmembers.php:482 msgid "Make this user an admin" msgstr "" -#: actions/grouprss.php:133 +#: actions/grouprss.php:140 #, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "" @@ -1953,16 +1985,18 @@ msgstr "" msgid "Optionally add a personal message to the invitation." msgstr "" -#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:236 +#. TRANS: Send button for inviting friends +#: actions/invite.php:198 +msgctxt "BUTTON" msgid "Send" msgstr "" -#: actions/invite.php:226 +#: actions/invite.php:227 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "" -#: actions/invite.php:228 +#: actions/invite.php:229 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -1997,7 +2031,12 @@ msgstr "" msgid "You must be logged in to join a group." msgstr "" -#: actions/joingroup.php:131 +#: actions/joingroup.php:88 actions/leavegroup.php:88 +#, fuzzy +msgid "No nickname or ID." +msgstr "Μήνυμα" + +#: actions/joingroup.php:141 #, php-format msgid "%1$s joined group %2$s" msgstr "" @@ -2006,11 +2045,11 @@ msgstr "" msgid "You must be logged in to leave a group." msgstr "" -#: actions/leavegroup.php:90 lib/command.php:265 +#: actions/leavegroup.php:100 lib/command.php:265 msgid "You are not a member of that group." msgstr "" -#: actions/leavegroup.php:127 +#: actions/leavegroup.php:137 #, php-format msgid "%1$s left group %2$s" msgstr "" @@ -2027,8 +2066,7 @@ msgstr "Λάθος όνομα χρήστη ή κωδικός" msgid "Error setting user. You are probably not authorized." msgstr "" -#: actions/login.php:188 actions/login.php:241 lib/action.php:466 -#: lib/logingroupnav.php:79 +#: actions/login.php:188 actions/login.php:241 lib/logingroupnav.php:79 msgid "Login" msgstr "Σύνδεση" @@ -2276,8 +2314,8 @@ msgstr "Σύνδεση" msgid "Only " msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 -#: lib/api.php:1068 lib/api.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 +#: lib/apiaction.php:1068 lib/apiaction.php:1177 msgid "Not a supported data format." msgstr "" @@ -2423,7 +2461,7 @@ msgstr "Αδύνατη η αποθήκευση του νέου κωδικού" msgid "Password saved." msgstr "Ο κωδικός αποθηκεύτηκε." -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:331 +#: actions/pathsadminpanel.php:59 msgid "Paths" msgstr "" @@ -2456,7 +2494,6 @@ msgid "Invalid SSL server. The maximum length is 255 characters." msgstr "" #: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58 -#: lib/adminpanelaction.php:311 msgid "Site" msgstr "" @@ -2631,7 +2668,7 @@ msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1-64 μικρά γράμματα ή αριθμοί, χωρίς σημεία στίξης ή κενά" #: actions/profilesettings.php:111 actions/register.php:448 -#: actions/showgroup.php:247 actions/tagother.php:104 +#: actions/showgroup.php:255 actions/tagother.php:104 #: lib/groupeditform.php:157 lib/userprofile.php:149 msgid "Full name" msgstr "Ονοματεπώνυμο" @@ -2660,7 +2697,7 @@ msgid "Bio" msgstr "Βιογραφικό" #: actions/profilesettings.php:132 actions/register.php:471 -#: actions/showgroup.php:256 actions/tagother.php:112 +#: actions/showgroup.php:264 actions/tagother.php:112 #: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:164 msgid "Location" @@ -2745,7 +2782,8 @@ msgstr "Απέτυχε η αποθήκευση του προφίλ." msgid "Couldn't save tags." msgstr "Αδύνατη η αποθήκευση του προφίλ." -#: actions/profilesettings.php:391 lib/adminpanelaction.php:137 +#. TRANS: Message after successful saving of administrative settings. +#: actions/profilesettings.php:391 lib/adminpanelaction.php:141 msgid "Settings saved." msgstr "" @@ -2758,46 +2796,46 @@ msgstr "" msgid "Could not retrieve public stream." msgstr "" -#: actions/public.php:129 +#: actions/public.php:130 #, php-format msgid "Public timeline, page %d" msgstr "" -#: actions/public.php:131 lib/publicgroupnav.php:79 +#: actions/public.php:132 lib/publicgroupnav.php:79 msgid "Public timeline" msgstr "" -#: actions/public.php:159 +#: actions/public.php:160 msgid "Public Stream Feed (RSS 1.0)" msgstr "" -#: actions/public.php:163 +#: actions/public.php:164 msgid "Public Stream Feed (RSS 2.0)" msgstr "" -#: actions/public.php:167 +#: actions/public.php:168 #, fuzzy msgid "Public Stream Feed (Atom)" msgstr "Δημόσια ροή %s" -#: actions/public.php:187 +#: actions/public.php:188 #, php-format msgid "" "This is the public timeline for %%site.name%% but no one has posted anything " "yet." msgstr "" -#: actions/public.php:190 +#: actions/public.php:191 msgid "Be the first to post!" msgstr "" -#: actions/public.php:194 +#: actions/public.php:195 #, php-format msgid "" "Why not [register an account](%%action.register%%) and be the first to post!" msgstr "" -#: actions/public.php:241 +#: actions/public.php:242 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2806,7 +2844,7 @@ msgid "" "friends, family, and colleagues! ([Read more](%%doc.help%%))" msgstr "" -#: actions/public.php:246 +#: actions/public.php:247 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2977,8 +3015,7 @@ msgstr "" msgid "Registration successful" msgstr "" -#: actions/register.php:114 actions/register.php:503 lib/action.php:463 -#: lib/logingroupnav.php:85 +#: actions/register.php:114 actions/register.php:503 lib/logingroupnav.php:85 msgid "Register" msgstr "" @@ -3161,7 +3198,7 @@ msgstr "" msgid "You already repeated that notice." msgstr "Αδυναμία διαγραφής αυτού του μηνύματος." -#: actions/repeat.php:114 lib/noticelist.php:656 +#: actions/repeat.php:114 lib/noticelist.php:674 #, fuzzy msgid "Repeated" msgstr "Δημιουργία" @@ -3171,47 +3208,47 @@ msgstr "Δημιουργία" msgid "Repeated!" msgstr "Δημιουργία" -#: actions/replies.php:125 actions/repliesrss.php:68 +#: actions/replies.php:126 actions/repliesrss.php:68 #: lib/personalgroupnav.php:105 #, php-format msgid "Replies to %s" msgstr "" -#: actions/replies.php:127 +#: actions/replies.php:128 #, php-format msgid "Replies to %1$s, page %2$d" msgstr "" -#: actions/replies.php:144 +#: actions/replies.php:145 #, fuzzy, php-format msgid "Replies feed for %s (RSS 1.0)" msgstr "Ροή φίλων του/της %s" -#: actions/replies.php:151 +#: actions/replies.php:152 #, fuzzy, php-format msgid "Replies feed for %s (RSS 2.0)" msgstr "Ροή φίλων του/της %s" -#: actions/replies.php:158 +#: actions/replies.php:159 #, fuzzy, php-format msgid "Replies feed for %s (Atom)" msgstr "Ροή φίλων του/της %s" -#: actions/replies.php:198 +#: actions/replies.php:199 #, php-format msgid "" "This is the timeline showing replies to %1$s but %2$s hasn't received a " "notice to his attention yet." msgstr "" -#: actions/replies.php:203 +#: actions/replies.php:204 #, php-format msgid "" "You can engage other users in a conversation, subscribe to more people or " "[join groups](%%action.groups%%)." msgstr "" -#: actions/replies.php:205 +#: actions/replies.php:206 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) or [post something to his or her " @@ -3237,7 +3274,6 @@ msgid "User is already sandboxed." msgstr "" #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:336 msgid "Sessions" msgstr "" @@ -3262,7 +3298,7 @@ msgid "Turn on debugging output for sessions." msgstr "" #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/useradminpanel.php:293 +#: actions/useradminpanel.php:294 #, fuzzy msgid "Save site settings" msgstr "Ρυθμίσεις OpenID" @@ -3295,7 +3331,7 @@ msgstr "Προσκλήσεις" msgid "Description" msgstr "Περιγραφή" -#: actions/showapplication.php:192 actions/showgroup.php:429 +#: actions/showapplication.php:192 actions/showgroup.php:437 #: lib/profileaction.php:174 msgid "Statistics" msgstr "" @@ -3357,35 +3393,35 @@ msgstr "%s και οι φίλοι του/της" msgid "Could not retrieve favorite notices." msgstr "" -#: actions/showfavorites.php:170 +#: actions/showfavorites.php:171 #, fuzzy, php-format msgid "Feed for favorites of %s (RSS 1.0)" msgstr "Ροή φίλων του/της %s" -#: actions/showfavorites.php:177 +#: actions/showfavorites.php:178 #, fuzzy, php-format msgid "Feed for favorites of %s (RSS 2.0)" msgstr "Ροή φίλων του/της %s" -#: actions/showfavorites.php:184 +#: actions/showfavorites.php:185 #, fuzzy, php-format msgid "Feed for favorites of %s (Atom)" msgstr "Ροή φίλων του/της %s" -#: actions/showfavorites.php:205 +#: actions/showfavorites.php:206 msgid "" "You haven't chosen any favorite notices yet. Click the fave button on " "notices you like to bookmark them for later or shed a spotlight on them." msgstr "" -#: actions/showfavorites.php:207 +#: actions/showfavorites.php:208 #, 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:211 +#: actions/showfavorites.php:212 #, php-format msgid "" "%s hasn't added any notices to his favorites yet. Why not [register an " @@ -3393,7 +3429,7 @@ msgid "" "would add to their favorites :)" msgstr "" -#: actions/showfavorites.php:242 +#: actions/showfavorites.php:243 msgid "This is a way to share what you like." msgstr "" @@ -3407,68 +3443,68 @@ msgstr "" msgid "%1$s group, page %2$d" msgstr "Αδύνατη η αποθήκευση των νέων πληροφοριών του προφίλ" -#: actions/showgroup.php:218 +#: actions/showgroup.php:226 #, fuzzy msgid "Group profile" msgstr "Αδύνατη η αποθήκευση του προφίλ." -#: actions/showgroup.php:263 actions/tagother.php:118 +#: actions/showgroup.php:271 actions/tagother.php:118 #: actions/userauthorization.php:175 lib/userprofile.php:177 msgid "URL" msgstr "" -#: actions/showgroup.php:274 actions/tagother.php:128 +#: actions/showgroup.php:282 actions/tagother.php:128 #: actions/userauthorization.php:187 lib/userprofile.php:194 msgid "Note" msgstr "" -#: actions/showgroup.php:284 lib/groupeditform.php:184 +#: actions/showgroup.php:292 lib/groupeditform.php:184 msgid "Aliases" msgstr "" -#: actions/showgroup.php:293 +#: actions/showgroup.php:301 msgid "Group actions" msgstr "" -#: actions/showgroup.php:328 +#: actions/showgroup.php:336 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "" -#: actions/showgroup.php:334 +#: actions/showgroup.php:342 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "" -#: actions/showgroup.php:340 +#: actions/showgroup.php:348 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "" -#: actions/showgroup.php:345 +#: actions/showgroup.php:353 #, fuzzy, php-format msgid "FOAF for %s group" msgstr "Αδύνατη η αποθήκευση του προφίλ." -#: actions/showgroup.php:381 actions/showgroup.php:438 lib/groupnav.php:91 +#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 msgid "Members" msgstr "Μέλη" -#: actions/showgroup.php:386 lib/profileaction.php:117 +#: actions/showgroup.php:394 lib/profileaction.php:117 #: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "" -#: actions/showgroup.php:392 +#: actions/showgroup.php:400 msgid "All members" msgstr "" -#: actions/showgroup.php:432 +#: actions/showgroup.php:440 msgid "Created" msgstr "Δημιουργημένος" -#: actions/showgroup.php:448 +#: actions/showgroup.php:456 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3478,7 +3514,7 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showgroup.php:454 +#: actions/showgroup.php:462 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3487,7 +3523,7 @@ msgid "" "their life and interests. " msgstr "" -#: actions/showgroup.php:482 +#: actions/showgroup.php:490 msgid "Admins" msgstr "Διαχειριστές" @@ -3944,22 +3980,22 @@ msgstr "" msgid "SMS" msgstr "" -#: actions/tag.php:68 +#: actions/tag.php:69 #, php-format msgid "Notices tagged with %1$s, page %2$d" msgstr "" -#: actions/tag.php:86 +#: actions/tag.php:87 #, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "" -#: actions/tag.php:92 +#: actions/tag.php:93 #, fuzzy, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Ροή φίλων του/της %s" -#: actions/tag.php:98 +#: actions/tag.php:99 #, php-format msgid "Notice feed for tag %s (Atom)" msgstr "" @@ -4010,7 +4046,7 @@ msgstr "" msgid "No such tag." msgstr "" -#: actions/twitapitrends.php:87 +#: actions/twitapitrends.php:85 msgid "API method under construction." msgstr "Η μέθοδος του ΑΡΙ είναι υπό κατασκευή." @@ -4041,74 +4077,75 @@ msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" -#: actions/useradminpanel.php:58 lib/adminpanelaction.php:321 -#: lib/personalgroupnav.php:115 +#. TRANS: User admin panel title +#: actions/useradminpanel.php:59 +msgctxt "TITLE" msgid "User" msgstr "" -#: actions/useradminpanel.php:69 +#: actions/useradminpanel.php:70 msgid "User settings for this StatusNet site." msgstr "" -#: actions/useradminpanel.php:148 +#: actions/useradminpanel.php:149 msgid "Invalid bio limit. Must be numeric." msgstr "" -#: actions/useradminpanel.php:154 +#: actions/useradminpanel.php:155 msgid "Invalid welcome text. Max length is 255 characters." msgstr "" -#: actions/useradminpanel.php:164 +#: actions/useradminpanel.php:165 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" -#: actions/useradminpanel.php:217 lib/accountsettingsaction.php:108 +#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "" -#: actions/useradminpanel.php:221 +#: actions/useradminpanel.php:222 msgid "Bio Limit" msgstr "" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:223 msgid "Maximum length of a profile bio in characters." msgstr "" -#: actions/useradminpanel.php:230 +#: actions/useradminpanel.php:231 msgid "New users" msgstr "Νέοι χρήστες" -#: actions/useradminpanel.php:234 +#: actions/useradminpanel.php:235 msgid "New user welcome" msgstr "" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:236 msgid "Welcome text for new users (Max 255 chars)." msgstr "" -#: actions/useradminpanel.php:240 +#: actions/useradminpanel.php:241 #, fuzzy msgid "Default subscription" msgstr "Όλες οι συνδρομές" -#: actions/useradminpanel.php:241 +#: actions/useradminpanel.php:242 #, fuzzy msgid "Automatically subscribe new users to this user." msgstr "" "Αυτόματα γίνε συνδρομητής σε όσους γίνονται συνδρομητές σε μένα (χρήση " "κυρίως από λογισμικό και όχι ανθρώπους)" -#: actions/useradminpanel.php:250 +#: actions/useradminpanel.php:251 msgid "Invitations" msgstr "Προσκλήσεις" -#: actions/useradminpanel.php:255 +#: actions/useradminpanel.php:256 msgid "Invitations enabled" msgstr "" -#: actions/useradminpanel.php:257 +#: actions/useradminpanel.php:258 msgid "Whether to allow users to invite new users." msgstr "" @@ -4282,7 +4319,7 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:196 lib/action.php:747 +#: actions/version.php:196 lib/action.php:778 #, fuzzy msgid "Version" msgstr "Προσωπικά" @@ -4323,6 +4360,11 @@ msgstr "Αδύνατη η αποθήκευση του προφίλ." msgid "Group leave failed." msgstr "Αδύνατη η αποθήκευση του προφίλ." +#: classes/Local_group.php:41 +#, fuzzy +msgid "Could not update local group." +msgstr "Αδύνατη η αποθήκευση του προφίλ." + #: classes/Login_token.php:76 #, fuzzy, php-format msgid "Could not create login token for %s" @@ -4340,43 +4382,43 @@ msgstr "" msgid "Could not update message with new URI." msgstr "" -#: classes/Notice.php:157 +#: classes/Notice.php:172 #, php-format msgid "DB error inserting hashtag: %s" msgstr "Σφάλμα στη βάση δεδομένων κατά την εισαγωγή hashtag: %s" -#: classes/Notice.php:222 +#: classes/Notice.php:239 msgid "Problem saving notice. Too long." msgstr "" -#: classes/Notice.php:226 +#: classes/Notice.php:243 msgid "Problem saving notice. Unknown user." msgstr "" -#: classes/Notice.php:231 +#: classes/Notice.php:248 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: classes/Notice.php:237 +#: classes/Notice.php:254 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." msgstr "" -#: classes/Notice.php:243 +#: classes/Notice.php:260 msgid "You are banned from posting notices on this site." msgstr "" -#: classes/Notice.php:309 classes/Notice.php:335 +#: classes/Notice.php:326 classes/Notice.php:352 msgid "Problem saving notice." msgstr "" -#: classes/Notice.php:882 +#: classes/Notice.php:911 msgid "Problem saving group inbox." msgstr "" -#: classes/Notice.php:1407 +#: classes/Notice.php:1442 #, php-format msgid "RT @%1$s %2$s" msgstr "" @@ -4407,20 +4449,30 @@ msgstr "Απέτυχε η διαγραφή συνδρομής." msgid "Couldn't delete subscription." msgstr "Απέτυχε η διαγραφή συνδρομής." -#: classes/User.php:372 +#: classes/User.php:373 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "" -#: classes/User_group.php:423 +#: classes/User_group.php:462 msgid "Could not create group." msgstr "Δεν ήταν δυνατή η δημιουργία ομάδας." -#: classes/User_group.php:452 +#: classes/User_group.php:471 +#, fuzzy +msgid "Could not set group URI." +msgstr "Αδύνατη η αποθήκευση των νέων πληροφοριών του προφίλ" + +#: classes/User_group.php:492 #, fuzzy msgid "Could not set group membership." msgstr "Αδύνατη η αποθήκευση των νέων πληροφοριών του προφίλ" +#: classes/User_group.php:506 +#, fuzzy +msgid "Could not save local group info." +msgstr "Αδύνατη η αποθήκευση των νέων πληροφοριών του προφίλ" + #: lib/accountsettingsaction.php:108 msgid "Change your profile settings" msgstr "Αλλάξτε τις ρυθμίσεις του προφίλ σας" @@ -4462,121 +4514,185 @@ msgstr "" msgid "Primary site navigation" msgstr "" +#. TRANS: Tooltip for main menu option "Personal" #: lib/action.php:439 -msgid "Home" -msgstr "Αρχή" - -#: lib/action.php:439 +msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:441 -msgid "Change your email, avatar, password, profile" -msgstr "" - -#: lib/action.php:444 -msgid "Connect" -msgstr "Σύνδεση" +#: lib/action.php:442 +#, fuzzy +msgctxt "MENU" +msgid "Personal" +msgstr "Προσωπικά" +#. TRANS: Tooltip for main menu option "Account" #: lib/action.php:444 #, fuzzy +msgctxt "TOOLTIP" +msgid "Change your email, avatar, password, profile" +msgstr "Αλλάξτε τον κωδικό σας" + +#: lib/action.php:447 +#, fuzzy +msgctxt "MENU" +msgid "Account" +msgstr "Λογαριασμός" + +#. TRANS: Tooltip for main menu option "Services" +#: lib/action.php:450 +#, fuzzy +msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Αδυναμία ανακατεύθηνσης στο διακομιστή: %s" -#: lib/action.php:448 +#: lib/action.php:453 +#, fuzzy +msgctxt "MENU" +msgid "Connect" +msgstr "Σύνδεση" + +#. TRANS: Tooltip for menu option "Admin" +#: lib/action.php:457 +#, fuzzy +msgctxt "TOOLTIP" msgid "Change site configuration" -msgstr "" +msgstr "Επιβεβαίωση διεύθυνσης email" -#: lib/action.php:452 lib/subgroupnav.php:105 -msgid "Invite" -msgstr "" +#: lib/action.php:460 +#, fuzzy +msgctxt "MENU" +msgid "Admin" +msgstr "Διαχειριστής" -#: lib/action.php:453 lib/subgroupnav.php:106 -#, php-format +#. TRANS: Tooltip for main menu option "Invite" +#: lib/action.php:464 +#, fuzzy, php-format +msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Προσκάλεσε φίλους και συναδέλφους σου να γίνουν μέλη στο %s" -#: lib/action.php:458 -msgid "Logout" -msgstr "Αποσύνδεση" +#: lib/action.php:467 +#, fuzzy +msgctxt "MENU" +msgid "Invite" +msgstr "Μήνυμα" -#: lib/action.php:458 +#. TRANS: Tooltip for main menu option "Logout" +#: lib/action.php:473 +msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "" -#: lib/action.php:463 +#: lib/action.php:476 +#, fuzzy +msgctxt "MENU" +msgid "Logout" +msgstr "Αποσύνδεση" + +#. TRANS: Tooltip for main menu option "Register" +#: lib/action.php:481 +#, fuzzy +msgctxt "TOOLTIP" msgid "Create an account" msgstr "Δημιουργία ενός λογαριασμού" -#: lib/action.php:466 +#: lib/action.php:484 +#, fuzzy +msgctxt "MENU" +msgid "Register" +msgstr "Περιγραφή" + +#. TRANS: Tooltip for main menu option "Login" +#: lib/action.php:487 +msgctxt "TOOLTIP" msgid "Login to the site" msgstr "" -#: lib/action.php:469 lib/action.php:732 -msgid "Help" -msgstr "Βοήθεια" +#: lib/action.php:490 +#, fuzzy +msgctxt "MENU" +msgid "Login" +msgstr "Σύνδεση" -#: lib/action.php:469 +#. TRANS: Tooltip for main menu option "Help" +#: lib/action.php:493 +#, fuzzy +msgctxt "TOOLTIP" msgid "Help me!" msgstr "Βοηθήστε με!" -#: lib/action.php:472 lib/searchaction.php:127 -msgid "Search" -msgstr "" +#: lib/action.php:496 +#, fuzzy +msgctxt "MENU" +msgid "Help" +msgstr "Βοήθεια" -#: lib/action.php:472 +#. TRANS: Tooltip for main menu option "Search" +#: lib/action.php:499 +msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "" -#: lib/action.php:493 +#: lib/action.php:502 +msgctxt "MENU" +msgid "Search" +msgstr "" + +#. TRANS: DT element for site notice. String is hidden in default CSS. +#: lib/action.php:524 msgid "Site notice" msgstr "" -#: lib/action.php:559 +#: lib/action.php:590 msgid "Local views" msgstr "" -#: lib/action.php:625 +#: lib/action.php:656 msgid "Page notice" msgstr "" -#: lib/action.php:727 +#: lib/action.php:758 msgid "Secondary site navigation" msgstr "" -#: lib/action.php:734 +#: lib/action.php:763 +msgid "Help" +msgstr "Βοήθεια" + +#: lib/action.php:765 msgid "About" msgstr "Περί" -#: lib/action.php:736 +#: lib/action.php:767 msgid "FAQ" msgstr "Συχνές ερωτήσεις" -#: lib/action.php:740 +#: lib/action.php:771 msgid "TOS" msgstr "" -#: lib/action.php:743 +#: lib/action.php:774 msgid "Privacy" msgstr "" -#: lib/action.php:745 +#: lib/action.php:776 msgid "Source" msgstr "" -#: lib/action.php:749 +#: lib/action.php:780 msgid "Contact" msgstr "Επικοινωνία" -#: lib/action.php:751 +#: lib/action.php:782 msgid "Badge" msgstr "" -#: lib/action.php:779 +#: lib/action.php:810 msgid "StatusNet software license" msgstr "" -#: lib/action.php:782 +#: lib/action.php:813 #, fuzzy, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4585,13 +4701,13 @@ msgstr "" "To **%%site.name%%** είναι μία υπηρεσία microblogging (μικρο-ιστολογίου) που " "έφερε κοντά σας το [%%site.broughtby%%](%%site.broughtbyurl%%). " -#: lib/action.php:784 +#: lib/action.php:815 #, fuzzy, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "" "Το **%%site.name%%** είναι μία υπηρεσία microblogging (μικρο-ιστολογίου). " -#: lib/action.php:786 +#: lib/action.php:817 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4599,111 +4715,161 @@ msgid "" "org/licensing/licenses/agpl-3.0.html)." msgstr "" -#: lib/action.php:801 +#: lib/action.php:832 msgid "Site content license" msgstr "" -#: lib/action.php:806 +#: lib/action.php:837 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:811 +#: lib/action.php:842 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:814 +#: lib/action.php:845 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" -#: lib/action.php:827 +#: lib/action.php:858 msgid "All " msgstr "" -#: lib/action.php:833 +#: lib/action.php:864 msgid "license." msgstr "" -#: lib/action.php:1132 +#: lib/action.php:1163 msgid "Pagination" msgstr "" -#: lib/action.php:1141 +#: lib/action.php:1172 msgid "After" msgstr "" -#: lib/action.php:1149 +#: lib/action.php:1180 msgid "Before" msgstr "" -#: lib/activity.php:382 +#: lib/activity.php:449 msgid "Can't handle remote content yet." msgstr "" -#: lib/activity.php:410 +#: lib/activity.php:477 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activity.php:414 +#: lib/activity.php:481 msgid "Can't handle embedded Base64 content yet." msgstr "" -#: lib/adminpanelaction.php:96 +#. TRANS: Client error message +#: lib/adminpanelaction.php:98 msgid "You cannot make changes to this site." msgstr "" -#: lib/adminpanelaction.php:107 +#. TRANS: Client error message +#: lib/adminpanelaction.php:110 msgid "Changes to that panel are not allowed." msgstr "" -#: lib/adminpanelaction.php:206 +#. TRANS: Client error message +#: lib/adminpanelaction.php:211 msgid "showForm() not implemented." msgstr "" -#: lib/adminpanelaction.php:235 +#. TRANS: Client error message +#: lib/adminpanelaction.php:241 msgid "saveSettings() not implemented." msgstr "" -#: lib/adminpanelaction.php:258 +#. TRANS: Client error message +#: lib/adminpanelaction.php:265 msgid "Unable to delete design setting." msgstr "" -#: lib/adminpanelaction.php:312 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:330 #, fuzzy msgid "Basic site configuration" msgstr "Επιβεβαίωση διεύθυνσης email" -#: lib/adminpanelaction.php:317 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:332 +msgctxt "MENU" +msgid "Site" +msgstr "" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:338 #, fuzzy msgid "Design configuration" msgstr "Επιβεβαίωση διεύθυνσης email" -#: lib/adminpanelaction.php:322 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:340 +#, fuzzy +msgctxt "MENU" +msgid "Design" +msgstr "Προσωπικά" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:346 #, fuzzy msgid "User configuration" msgstr "Επιβεβαίωση διεύθυνσης email" -#: lib/adminpanelaction.php:327 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:348 +msgctxt "MENU" +msgid "User" +msgstr "" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:354 #, fuzzy msgid "Access configuration" msgstr "Επιβεβαίωση διεύθυνσης email" -#: lib/adminpanelaction.php:332 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:356 +#, fuzzy +msgctxt "MENU" +msgid "Access" +msgstr "Πρόσβαση" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:362 #, fuzzy msgid "Paths configuration" msgstr "Επιβεβαίωση διεύθυνσης email" -#: lib/adminpanelaction.php:337 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:364 +msgctxt "MENU" +msgid "Paths" +msgstr "" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:370 #, fuzzy msgid "Sessions configuration" msgstr "Επιβεβαίωση διεύθυνσης email" -#: lib/apiauth.php:95 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:372 +#, fuzzy +msgctxt "MENU" +msgid "Sessions" +msgstr "Προσωπικά" + +#: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." msgstr "" -#: lib/apiauth.php:273 +#: lib/apiauth.php:272 #, php-format msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" msgstr "" @@ -4794,12 +4960,12 @@ msgstr "" msgid "Tags for this attachment" msgstr "" -#: lib/authenticationplugin.php:218 lib/authenticationplugin.php:223 +#: lib/authenticationplugin.php:220 lib/authenticationplugin.php:225 #, fuzzy msgid "Password changing failed" msgstr "Ο κωδικός αποθηκεύτηκε." -#: lib/authenticationplugin.php:233 +#: lib/authenticationplugin.php:235 #, fuzzy msgid "Password changing is not allowed" msgstr "Ο κωδικός αποθηκεύτηκε." @@ -5078,20 +5244,20 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:136 +#: lib/common.php:148 #, fuzzy msgid "No configuration file found. " msgstr "Ο κωδικός επιβεβαίωσης δεν βρέθηκε." -#: lib/common.php:137 +#: lib/common.php:149 msgid "I looked for configuration files in the following places: " msgstr "" -#: lib/common.php:139 +#: lib/common.php:151 msgid "You may wish to run the installer to fix this." msgstr "" -#: lib/common.php:140 +#: lib/common.php:152 msgid "Go to the installer." msgstr "" @@ -5279,24 +5445,24 @@ msgstr "" msgid "Not an image or corrupt file." msgstr "" -#: lib/imagefile.php:105 +#: lib/imagefile.php:109 msgid "Unsupported image file format." msgstr "" -#: lib/imagefile.php:118 +#: lib/imagefile.php:122 #, fuzzy msgid "Lost our file." msgstr "Αδύνατη η αποθήκευση του προφίλ." -#: lib/imagefile.php:150 lib/imagefile.php:197 +#: lib/imagefile.php:166 lib/imagefile.php:231 msgid "Unknown file type" msgstr "" -#: lib/imagefile.php:217 +#: lib/imagefile.php:251 msgid "MB" msgstr "" -#: lib/imagefile.php:219 +#: lib/imagefile.php:253 msgid "kB" msgstr "" @@ -5592,6 +5758,11 @@ msgstr "" msgid "Available characters" msgstr "Διαθέσιμοι χαρακτήρες" +#: lib/messageform.php:178 lib/noticeform.php:236 +msgctxt "Send button for sending notice" +msgid "Send" +msgstr "" + #: lib/noticeform.php:160 msgid "Send a notice" msgstr "" @@ -5650,23 +5821,23 @@ msgstr "" msgid "at" msgstr "" -#: lib/noticelist.php:558 +#: lib/noticelist.php:566 msgid "in context" msgstr "" -#: lib/noticelist.php:583 +#: lib/noticelist.php:601 msgid "Repeated by" msgstr "Επαναλαμβάνεται από" -#: lib/noticelist.php:610 +#: lib/noticelist.php:628 msgid "Reply to this notice" msgstr "" -#: lib/noticelist.php:611 +#: lib/noticelist.php:629 msgid "Reply" msgstr "" -#: lib/noticelist.php:655 +#: lib/noticelist.php:673 #, fuzzy msgid "Notice repeated" msgstr "Ρυθμίσεις OpenID" @@ -5716,6 +5887,10 @@ msgstr "" msgid "Favorites" msgstr "" +#: lib/personalgroupnav.php:115 +msgid "User" +msgstr "" + #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "" @@ -5807,7 +5982,7 @@ msgstr "Αδυναμία διαγραφής αυτού του μηνύματος msgid "Repeat this notice" msgstr "Αδυναμία διαγραφής αυτού του μηνύματος." -#: lib/router.php:665 +#: lib/router.php:668 msgid "No single user defined for single-user mode." msgstr "" @@ -5828,6 +6003,10 @@ msgstr "" msgid "Keyword(s)" msgstr "" +#: lib/searchaction.php:127 +msgid "Search" +msgstr "" + #: lib/searchaction.php:162 msgid "Search help" msgstr "" @@ -5880,6 +6059,15 @@ msgstr "" msgid "Groups %s is a member of" msgstr "" +#: lib/subgroupnav.php:105 +msgid "Invite" +msgstr "" + +#: lib/subgroupnav.php:106 +#, 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" @@ -5952,47 +6140,47 @@ msgstr "Μήνυμα" msgid "Moderate" msgstr "" -#: lib/util.php:952 +#: lib/util.php:1013 msgid "a few seconds ago" msgstr "" -#: lib/util.php:954 +#: lib/util.php:1015 msgid "about a minute ago" msgstr "" -#: lib/util.php:956 +#: lib/util.php:1017 #, php-format msgid "about %d minutes ago" msgstr "" -#: lib/util.php:958 +#: lib/util.php:1019 msgid "about an hour ago" msgstr "" -#: lib/util.php:960 +#: lib/util.php:1021 #, php-format msgid "about %d hours ago" msgstr "" -#: lib/util.php:962 +#: lib/util.php:1023 msgid "about a day ago" msgstr "" -#: lib/util.php:964 +#: lib/util.php:1025 #, php-format msgid "about %d days ago" msgstr "" -#: lib/util.php:966 +#: lib/util.php:1027 msgid "about a month ago" msgstr "" -#: lib/util.php:968 +#: lib/util.php:1029 #, php-format msgid "about %d months ago" msgstr "" -#: lib/util.php:970 +#: lib/util.php:1031 msgid "about a year ago" msgstr "" diff --git a/locale/en_GB/LC_MESSAGES/statusnet.po b/locale/en_GB/LC_MESSAGES/statusnet.po index 98e7790f2b..d0ba439baa 100644 --- a/locale/en_GB/LC_MESSAGES/statusnet.po +++ b/locale/en_GB/LC_MESSAGES/statusnet.po @@ -2,7 +2,6 @@ # # Author@translatewiki.net: Bruce89 # Author@translatewiki.net: CiaranG -# Author@translatewiki.net: Lockal # -- # This file is distributed under the same license as the StatusNet package. # @@ -10,75 +9,82 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-02-24 23:49+0000\n" -"PO-Revision-Date: 2010-02-24 23:50:27+0000\n" +"POT-Creation-Date: 2010-03-02 21:02+0000\n" +"PO-Revision-Date: 2010-03-02 21:02:36+0000\n" "Language-Team: British English\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r62925); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: en-gb\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: actions/accessadminpanel.php:54 lib/adminpanelaction.php:326 +#. TRANS: Page title +#: actions/accessadminpanel.php:55 msgid "Access" msgstr "Access" -#: actions/accessadminpanel.php:65 +#. TRANS: Page notice +#: actions/accessadminpanel.php:67 msgid "Site access settings" msgstr "Site access settings" -#: actions/accessadminpanel.php:158 +#. TRANS: Form legend for registration form. +#: actions/accessadminpanel.php:161 msgid "Registration" msgstr "Registration" -#: actions/accessadminpanel.php:161 -msgid "Private" -msgstr "Private" - -#: actions/accessadminpanel.php:163 +#. TRANS: Checkbox instructions for admin setting "Private" +#: actions/accessadminpanel.php:165 msgid "Prohibit anonymous users (not logged in) from viewing site?" msgstr "Prohibit anonymous users (not logged in) from viewing site?" +#. TRANS: Checkbox label for prohibiting anonymous users from viewing site. #: actions/accessadminpanel.php:167 -msgid "Invite only" -msgstr "Invite only" +#, fuzzy +msgctxt "LABEL" +msgid "Private" +msgstr "Private" -#: actions/accessadminpanel.php:169 +#. TRANS: Checkbox instructions for admin setting "Invite only" +#: actions/accessadminpanel.php:174 msgid "Make registration invitation only." msgstr "Make registration invitation only." -#: actions/accessadminpanel.php:173 -msgid "Closed" -msgstr "Closed" +#. TRANS: Checkbox label for configuring site as invite only. +#: actions/accessadminpanel.php:176 +msgid "Invite only" +msgstr "Invite only" -#: actions/accessadminpanel.php:175 +#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations) +#: actions/accessadminpanel.php:183 msgid "Disable new registrations." msgstr "Disable new registrations." -#: actions/accessadminpanel.php:189 actions/designadminpanel.php:586 -#: actions/emailsettings.php:195 actions/imsettings.php:163 -#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 -#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 -#: actions/siteadminpanel.php:336 actions/smssettings.php:181 -#: actions/subscriptions.php:208 actions/tagother.php:154 -#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 -#: lib/applicationeditform.php:334 lib/designsettings.php:256 -#: lib/groupeditform.php:202 -msgid "Save" -msgstr "Save" +#. TRANS: Checkbox label for disabling new user registrations. +#: actions/accessadminpanel.php:185 +msgid "Closed" +msgstr "Closed" -#: actions/accessadminpanel.php:189 +#. TRANS: Title / tooltip for button to save access settings in site admin panel +#: actions/accessadminpanel.php:202 msgid "Save access settings" msgstr "Save access settings" -#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 -#: actions/showfavorites.php:137 actions/tag.php:51 +#: actions/accessadminpanel.php:203 +#, fuzzy +msgctxt "BUTTON" +msgid "Save" +msgstr "Save" + +#. TRANS: Server error when page not found (404) +#: actions/all.php:64 actions/public.php:98 actions/replies.php:93 +#: actions/showfavorites.php:138 actions/tag.php:52 msgid "No such page" msgstr "No such page" -#: actions/all.php:74 actions/allrss.php:68 +#: actions/all.php:75 actions/allrss.php:68 #: actions/apiaccountupdatedeliverydevice.php:113 #: actions/apiaccountupdateprofile.php:105 #: actions/apiaccountupdateprofilebackgroundimage.php:116 @@ -92,70 +98,79 @@ msgstr "No such page" #: actions/apitimelinehome.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/otp.php:76 -#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154 -#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 -#: actions/showfavorites.php:105 actions/userbyid.php:74 -#: actions/usergroups.php:91 actions/userrss.php:38 actions/xrds.php:71 -#: lib/command.php:163 lib/command.php:302 lib/command.php:355 -#: lib/command.php:401 lib/command.php:462 lib/command.php:518 -#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 +#: actions/hcard.php:67 actions/microsummary.php:62 actions/newmessage.php:116 +#: actions/otp.php:76 actions/remotesubscribe.php:145 +#: actions/remotesubscribe.php:154 actions/replies.php:73 +#: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/xrds.php:71 lib/command.php:163 lib/command.php:302 +#: lib/command.php:355 lib/command.php:401 lib/command.php:462 +#: lib/command.php:518 lib/galleryaction.php:59 lib/mailbox.php:82 +#: lib/profileaction.php:77 msgid "No such user." msgstr "No such user." -#: actions/all.php:84 +#. TRANS: Page title. %1$s is user nickname, %2$d is page number +#: actions/all.php:86 #, php-format msgid "%1$s and friends, page %2$d" msgstr "%1$s and friends, page %2$d" -#: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 +#. TRANS: Page title. %1$s is user nickname +#. TRANS: H1 text. %1$s is user nickname +#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" msgstr "%s and friends" -#: actions/all.php:99 +#. TRANS: %1$s is user nickname +#: actions/all.php:103 #, php-format msgid "Feed for friends of %s (RSS 1.0)" msgstr "Feed for friends of %s (RSS 1.0)" -#: actions/all.php:107 +#. TRANS: %1$s is user nickname +#: actions/all.php:112 #, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "Feed for friends of %s (RSS 2.0)" -#: actions/all.php:115 +#. TRANS: %1$s is user nickname +#: actions/all.php:121 #, php-format msgid "Feed for friends of %s (Atom)" msgstr "Feed for friends of %s (Atom)" -#: actions/all.php:127 -#, php-format -msgid "" -"This is the timeline for %s and friends but no one has posted anything yet." -msgstr "" -"This is the timeline for %s and friends but no one has posted anything yet." - -#: actions/all.php:132 -#, php-format -msgid "" -"Try subscribing to more people, [join a group](%%action.groups%%) or post " -"something yourself." -msgstr "" -"Try subscribing to more people, [join a group](%%action.groups%%) or post " -"something yourself." - +#. TRANS: %1$s is user nickname #: actions/all.php:134 #, php-format msgid "" +"This is the timeline for %s and friends but no one has posted anything yet." +msgstr "" +"This is the timeline for %s and friends but no one has posted anything yet." + +#: actions/all.php:139 +#, php-format +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." + +#. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@" +#: actions/all.php:142 +#, php-format +msgid "" "You can try to [nudge %1$s](../%2$s) from his profile or [post something to " "his or her attention](%%%%action.newnotice%%%%?status_textarea=%3$s)." msgstr "" "You can try to [nudge %1$s](../%2$s) from his profile or [post something to " "his or her attention](%%%%action.newnotice%%%%?status_textarea=%3$s)." -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211 +#: actions/all.php:145 actions/replies.php:210 actions/showstream.php:211 #, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " @@ -164,7 +179,8 @@ msgstr "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " "post a notice to his or her attention." -#: actions/all.php:165 +#. TRANS: H1 text +#: actions/all.php:174 msgid "You and friends" msgstr "You and friends" @@ -182,20 +198,20 @@ msgstr "Updates from %1$s and friends on %2$s!" #: actions/apiaccountverifycredentials.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:128 actions/apigroupcreate.php:136 +#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: actions/apigroupleave.php:141 actions/apigrouplist.php:132 #: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 #: actions/apigroupshow.php:115 actions/apihelptest.php:88 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 -#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184 +#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 #: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:207 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 msgid "API method not found." msgstr "API method not found." @@ -230,8 +246,9 @@ msgstr "Couldn't update user." #: actions/apiaccountupdateprofilebackgroundimage.php:194 #: actions/apiaccountupdateprofilecolors.php:185 #: 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 +#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 +#: 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." @@ -258,7 +275,7 @@ msgstr "" #: actions/apiaccountupdateprofilebackgroundimage.php:146 #: actions/apiaccountupdateprofilecolors.php:164 #: actions/apiaccountupdateprofilecolors.php:174 -#: actions/groupdesignsettings.php:287 actions/groupdesignsettings.php:297 +#: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300 #: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 #: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 msgid "Unable to save your design settings." @@ -368,68 +385,68 @@ msgstr "Could not determine source user." msgid "Could not find target user." msgstr "Could not find target user." -#: actions/apigroupcreate.php:164 actions/editgroup.php:182 +#: actions/apigroupcreate.php:166 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:215 #: 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/apigroupcreate.php:173 actions/editgroup.php:186 +#: actions/apigroupcreate.php:175 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:238 #: actions/register.php:208 msgid "Nickname already in use. Try another one." msgstr "Nickname already in use. Try another one." -#: actions/apigroupcreate.php:180 actions/editgroup.php:189 +#: actions/apigroupcreate.php:182 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:218 #: actions/register.php:210 msgid "Not a valid nickname." msgstr "Not a valid nickname." -#: actions/apigroupcreate.php:196 actions/editapplication.php:215 -#: actions/editgroup.php:195 actions/newapplication.php:203 +#: actions/apigroupcreate.php:198 actions/editapplication.php:215 +#: actions/editgroup.php:199 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:217 msgid "Homepage is not a valid URL." msgstr "Homepage is not a valid URL." -#: actions/apigroupcreate.php:205 actions/editgroup.php:198 +#: actions/apigroupcreate.php:207 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:225 #: actions/register.php:220 msgid "Full name is too long (max 255 chars)." msgstr "Full name is too long (max 255 chars)." -#: actions/apigroupcreate.php:213 actions/editapplication.php:190 +#: actions/apigroupcreate.php:215 actions/editapplication.php:190 #: actions/newapplication.php:172 #, php-format msgid "Description is too long (max %d chars)." msgstr "Description is too long (max %d chars)" -#: actions/apigroupcreate.php:224 actions/editgroup.php:204 +#: actions/apigroupcreate.php:226 actions/editgroup.php:208 #: actions/newgroup.php:148 actions/profilesettings.php:232 #: actions/register.php:227 msgid "Location is too long (max 255 chars)." msgstr "Location is too long (max 255 chars)." -#: actions/apigroupcreate.php:243 actions/editgroup.php:215 +#: actions/apigroupcreate.php:245 actions/editgroup.php:219 #: actions/newgroup.php:159 #, php-format msgid "Too many aliases! Maximum %d." msgstr "Too many aliases! Maximum %d." -#: actions/apigroupcreate.php:264 actions/editgroup.php:224 +#: actions/apigroupcreate.php:266 actions/editgroup.php:228 #: actions/newgroup.php:168 #, php-format msgid "Invalid alias: \"%s\"" msgstr "Invalid alias: \"%s\"" -#: actions/apigroupcreate.php:273 actions/editgroup.php:228 +#: actions/apigroupcreate.php:275 actions/editgroup.php:232 #: actions/newgroup.php:172 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "Alias \"%s\" already in use. Try another one." -#: actions/apigroupcreate.php:286 actions/editgroup.php:234 +#: actions/apigroupcreate.php:288 actions/editgroup.php:238 #: actions/newgroup.php:178 msgid "Alias can't be the same as nickname." msgstr "Alias can't be the same as nickname." @@ -440,15 +457,15 @@ msgstr "Alias can't be the same as nickname." msgid "Group not found!" msgstr "Group not found!" -#: actions/apigroupjoin.php:110 actions/joingroup.php:90 +#: actions/apigroupjoin.php:110 actions/joingroup.php:100 msgid "You are already a member of that group." msgstr "You are already a member of that group." -#: actions/apigroupjoin.php:119 actions/joingroup.php:95 lib/command.php:221 +#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:221 msgid "You have been blocked from that group by the admin." msgstr "You have been blocked from that group by the admin." -#: actions/apigroupjoin.php:138 actions/joingroup.php:124 +#: actions/apigroupjoin.php:138 actions/joingroup.php:134 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Could not join user %1$s to group %2$s." @@ -457,7 +474,7 @@ msgstr "Could not join user %1$s to group %2$s." msgid "You are not a member of this group." msgstr "You are not a member of this group." -#: actions/apigroupleave.php:124 actions/leavegroup.php:119 +#: actions/apigroupleave.php:124 actions/leavegroup.php:129 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "Could not remove user %1$s to group %2$s." @@ -488,7 +505,7 @@ msgstr "Invalid token." #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 #: actions/deletenotice.php:157 actions/disfavor.php:74 #: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54 -#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupblock.php:66 actions/grouplogo.php:312 #: actions/groupunblock.php:66 actions/imsettings.php:206 #: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 @@ -531,7 +548,7 @@ msgstr "The request token %s has been denied and revoked." #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:103 actions/editapplication.php:139 -#: actions/emailsettings.php:256 actions/grouplogo.php:319 +#: actions/emailsettings.php:256 actions/grouplogo.php:322 #: actions/imsettings.php:220 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 #: actions/smssettings.php:248 lib/designsettings.php:304 @@ -557,13 +574,13 @@ msgstr "" "the ability to %3$s your %4$s account data. You should only " "give access to your %4$s account to third parties you trust." -#: actions/apioauthauthorize.php:310 lib/action.php:441 +#: actions/apioauthauthorize.php:310 msgid "Account" msgstr "Account" #: actions/apioauthauthorize.php:313 actions/login.php:230 #: actions/profilesettings.php:106 actions/register.php:424 -#: actions/showgroup.php:236 actions/tagother.php:94 +#: actions/showgroup.php:244 actions/tagother.php:94 #: actions/userauthorization.php:145 lib/groupeditform.php:152 #: lib/userprofile.php:131 msgid "Nickname" @@ -645,12 +662,12 @@ msgid "%1$s updates favorited by %2$s / %2$s." msgstr "%1$s updates favourited by %2$s / %2$s." #: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:131 actions/userrss.php:90 +#: actions/grouprss.php:138 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "%s timeline" -#: actions/apitimelinegroup.php:114 actions/apitimelineuser.php:126 +#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 #: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" @@ -686,7 +703,7 @@ msgstr "Repeated to %s" msgid "Repeats of %s" msgstr "Repeats of %s" -#: actions/apitimelinetag.php:102 actions/tag.php:66 +#: actions/apitimelinetag.php:102 actions/tag.php:67 #, php-format msgid "Notices tagged with %s" msgstr "Notices tagged with %s" @@ -707,8 +724,7 @@ msgstr "No such attachment." #: actions/avatarbynickname.php:59 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/leavegroup.php:76 -#: actions/showgroup.php:121 +#: actions/grouprss.php:91 actions/showgroup.php:121 msgid "No nickname." msgstr "No nickname." @@ -720,7 +736,7 @@ msgstr "No size." msgid "Invalid size." msgstr "Invalid size." -#: actions/avatarsettings.php:67 actions/showgroup.php:221 +#: actions/avatarsettings.php:67 actions/showgroup.php:229 #: lib/accountsettingsaction.php:112 msgid "Avatar" msgstr "Avatar" @@ -737,30 +753,30 @@ msgid "User without matching profile" msgstr "User without matching profile" #: actions/avatarsettings.php:119 actions/avatarsettings.php:197 -#: actions/grouplogo.php:251 +#: actions/grouplogo.php:254 msgid "Avatar settings" msgstr "Avatar settings" #: actions/avatarsettings.php:127 actions/avatarsettings.php:205 -#: actions/grouplogo.php:199 actions/grouplogo.php:259 +#: actions/grouplogo.php:202 actions/grouplogo.php:262 msgid "Original" msgstr "Original" #: actions/avatarsettings.php:142 actions/avatarsettings.php:217 -#: actions/grouplogo.php:210 actions/grouplogo.php:271 +#: actions/grouplogo.php:213 actions/grouplogo.php:274 msgid "Preview" msgstr "Preview" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:637 +#: lib/deleteuserform.php:66 lib/noticelist.php:655 msgid "Delete" msgstr "Delete" -#: actions/avatarsettings.php:166 actions/grouplogo.php:233 +#: actions/avatarsettings.php:166 actions/grouplogo.php:236 msgid "Upload" msgstr "Upload" -#: actions/avatarsettings.php:231 actions/grouplogo.php:286 +#: actions/avatarsettings.php:231 actions/grouplogo.php:289 msgid "Crop" msgstr "Crop" @@ -768,7 +784,7 @@ msgstr "Crop" msgid "Pick a square area of the image to be your avatar" msgstr "Pick a square area of the image to be your avatar" -#: actions/avatarsettings.php:343 actions/grouplogo.php:377 +#: actions/avatarsettings.php:343 actions/grouplogo.php:380 msgid "Lost our file data." msgstr "Lost our file data." @@ -803,22 +819,22 @@ msgstr "" "will not be notified of any @-replies from them." #: actions/block.php:143 actions/deleteapplication.php:153 -#: actions/deletenotice.php:145 actions/deleteuser.php:147 +#: actions/deletenotice.php:145 actions/deleteuser.php:150 #: actions/groupblock.php:178 msgid "No" msgstr "No" -#: actions/block.php:143 actions/deleteuser.php:147 +#: actions/block.php:143 actions/deleteuser.php:150 msgid "Do not block this user" msgstr "Do not block this user" #: actions/block.php:144 actions/deleteapplication.php:158 -#: actions/deletenotice.php:146 actions/deleteuser.php:148 +#: actions/deletenotice.php:146 actions/deleteuser.php:151 #: actions/groupblock.php:179 lib/repeatform.php:132 msgid "Yes" msgstr "Yes" -#: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:355 lib/blockform.php:80 msgid "Block this user" msgstr "Block this user" @@ -826,39 +842,43 @@ msgstr "Block this user" msgid "Failed to save block information." msgstr "Failed to save block information." -#: actions/blockedfromgroup.php:80 actions/editgroup.php:96 -#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/groupblock.php:86 -#: actions/groupbyid.php:83 actions/groupdesignsettings.php:97 -#: actions/grouplogo.php:99 actions/groupmembers.php:83 -#: actions/grouprss.php:98 actions/groupunblock.php:86 -#: actions/joingroup.php:83 actions/leavegroup.php:83 actions/makeadmin.php:86 -#: actions/showgroup.php:137 lib/command.php:212 lib/command.php:260 +#: actions/blockedfromgroup.php:80 actions/blockedfromgroup.php:87 +#: actions/editgroup.php:100 actions/foafgroup.php:44 actions/foafgroup.php:62 +#: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:100 actions/grouplogo.php:102 +#: actions/groupmembers.php:83 actions/groupmembers.php:90 +#: actions/grouprss.php:98 actions/grouprss.php:105 +#: actions/groupunblock.php:86 actions/joingroup.php:82 +#: actions/joingroup.php:93 actions/leavegroup.php:82 +#: actions/leavegroup.php:93 actions/makeadmin.php:86 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:212 +#: lib/command.php:260 msgid "No such group." msgstr "No such group." -#: actions/blockedfromgroup.php:90 +#: actions/blockedfromgroup.php:97 #, php-format msgid "%s blocked profiles" msgstr "%s blocked profiles" -#: actions/blockedfromgroup.php:93 +#: actions/blockedfromgroup.php:100 #, php-format msgid "%1$s blocked profiles, page %2$d" msgstr "%1$s blocked profiles, page %2$d" -#: actions/blockedfromgroup.php:108 +#: actions/blockedfromgroup.php:115 msgid "A list of the users blocked from joining this group." msgstr "A list of the users blocked from joining this group." -#: actions/blockedfromgroup.php:281 +#: actions/blockedfromgroup.php:288 msgid "Unblock user from group" msgstr "Unblock user from group" -#: actions/blockedfromgroup.php:313 lib/unblockform.php:69 +#: actions/blockedfromgroup.php:320 lib/unblockform.php:69 msgid "Unblock" msgstr "Unblock" -#: actions/blockedfromgroup.php:313 lib/unblockform.php:80 +#: actions/blockedfromgroup.php:320 lib/unblockform.php:80 msgid "Unblock this user" msgstr "Unblock this user" @@ -933,7 +953,7 @@ msgstr "You are not the owner of this application." #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1197 +#: lib/action.php:1228 msgid "There was a problem with your session token." msgstr "There was a problem with your session token." @@ -959,12 +979,13 @@ msgstr "Do not delete this application" msgid "Delete this application" msgstr "Delete this application" +#. TRANS: Client error message #: 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:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 -#: lib/adminpanelaction.php:72 lib/profileformaction.php:63 +#: lib/adminpanelaction.php:73 lib/profileformaction.php:63 #: lib/settingsaction.php:72 msgid "Not logged in." msgstr "Not logged in." @@ -993,7 +1014,7 @@ msgstr "Are you sure you want to delete this notice?" msgid "Do not delete this notice" msgstr "Do not delete this notice" -#: actions/deletenotice.php:146 lib/noticelist.php:637 +#: actions/deletenotice.php:146 lib/noticelist.php:655 msgid "Delete this notice" msgstr "Delete this notice" @@ -1009,7 +1030,7 @@ msgstr "You can only delete local users." msgid "Delete user" msgstr "Delete user" -#: actions/deleteuser.php:135 +#: actions/deleteuser.php:136 msgid "" "Are you sure you want to delete this user? This will clear all data about " "the user from the database, without a backup." @@ -1017,12 +1038,12 @@ msgstr "" "Are you sure you want to delete this user? This will clear all data about " "the user from the database, without a backup." -#: actions/deleteuser.php:148 lib/deleteuserform.php:77 +#: actions/deleteuser.php:151 lib/deleteuserform.php:77 msgid "Delete this user" msgstr "Delete this user" #: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 -#: lib/adminpanelaction.php:316 lib/groupnav.php:119 +#: lib/groupnav.php:119 msgid "Design" msgstr "Design" @@ -1125,6 +1146,17 @@ msgstr "Restore default designs" msgid "Reset back to default" msgstr "Reset back to default" +#: actions/designadminpanel.php:586 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/tagother.php:154 actions/useradminpanel.php:294 +#: lib/applicationeditform.php:333 lib/applicationeditform.php:334 +#: lib/designsettings.php:256 lib/groupeditform.php:202 +msgid "Save" +msgstr "Save" + #: actions/designadminpanel.php:587 lib/designsettings.php:257 msgid "Save design" msgstr "Save design" @@ -1216,29 +1248,29 @@ msgstr "Edit %s group" msgid "You must be logged in to create a group." msgstr "You must be logged in to create a group." -#: actions/editgroup.php:103 actions/editgroup.php:168 -#: actions/groupdesignsettings.php:104 actions/grouplogo.php:106 +#: actions/editgroup.php:107 actions/editgroup.php:172 +#: actions/groupdesignsettings.php:107 actions/grouplogo.php:109 msgid "You must be an admin to edit the group." msgstr "You must be an admin to edit the group." -#: actions/editgroup.php:154 +#: actions/editgroup.php:158 msgid "Use this form to edit the group." msgstr "Use this form to edit the group." -#: actions/editgroup.php:201 actions/newgroup.php:145 +#: actions/editgroup.php:205 actions/newgroup.php:145 #, php-format msgid "description is too long (max %d chars)." msgstr "description is too long (max %d chars)." -#: actions/editgroup.php:253 +#: actions/editgroup.php:258 msgid "Could not update group." msgstr "Could not update group." -#: actions/editgroup.php:259 classes/User_group.php:433 +#: actions/editgroup.php:264 classes/User_group.php:478 msgid "Could not create aliases." msgstr "Could not create aliases" -#: actions/editgroup.php:269 +#: actions/editgroup.php:280 msgid "Options saved." msgstr "Options saved." @@ -1532,23 +1564,20 @@ msgid "Could not convert request token to access token." msgstr "Couldn't convert request tokens to access tokens." #: actions/finishremotesubscribe.php:118 -#, fuzzy msgid "Remote service uses unknown version of OMB protocol." -msgstr "Unknown version of OMB protocol." +msgstr "Remote service uses unknown version of OMB protocol." #: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306 msgid "Error updating remote profile" msgstr "Error updating remote profile." #: actions/getfile.php:79 -#, fuzzy msgid "No such file." -msgstr "No such notice." +msgstr "No such file." #: actions/getfile.php:83 -#, fuzzy msgid "Cannot read file." -msgstr "Lost our file." +msgstr "Cannot read file." #: actions/groupblock.php:71 actions/groupunblock.php:71 #: actions/makeadmin.php:71 actions/subedit.php:46 @@ -1564,9 +1593,8 @@ msgstr "No profile with that ID." #: actions/groupblock.php:81 actions/groupunblock.php:81 #: actions/makeadmin.php:81 -#, fuzzy msgid "No group specified." -msgstr "No profile specified." +msgstr "No group specified." #: actions/groupblock.php:91 msgid "Only an admin can block group members." @@ -1580,10 +1608,9 @@ msgstr "User is already blocked from group." msgid "User is not a member of group." msgstr "User is not a member of group." -#: actions/groupblock.php:136 actions/groupmembers.php:316 -#, fuzzy +#: actions/groupblock.php:136 actions/groupmembers.php:323 msgid "Block user from group" -msgstr "Block user" +msgstr "Block user from group" #: actions/groupblock.php:162 #, php-format @@ -1609,21 +1636,18 @@ msgid "Database error blocking user from group." msgstr "Database error blocking user from group." #: actions/groupbyid.php:74 actions/userbyid.php:70 -#, fuzzy msgid "No ID." -msgstr "No ID" +msgstr "No ID." #: 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." +msgstr "You must be logged in to edit a group." -#: actions/groupdesignsettings.php:141 -#, fuzzy +#: actions/groupdesignsettings.php:144 msgid "Group design" -msgstr "Groups" +msgstr "Group design" -#: actions/groupdesignsettings.php:152 +#: actions/groupdesignsettings.php:155 msgid "" "Customize the way your group looks with a background image and a colour " "palette of your choice." @@ -1631,85 +1655,80 @@ msgstr "" "Customise the way your group looks with a background image and a colour " "palette of your choice." -#: actions/groupdesignsettings.php:263 actions/userdesignsettings.php:186 +#: actions/groupdesignsettings.php:266 actions/userdesignsettings.php:186 #: lib/designsettings.php:391 lib/designsettings.php:413 -#, fuzzy msgid "Couldn't update your design." -msgstr "Couldn't update user." +msgstr "Couldn't update your design." -#: actions/groupdesignsettings.php:308 actions/userdesignsettings.php:231 -#, fuzzy +#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231 msgid "Design preferences saved." -msgstr "Sync preferences saved." +msgstr "Design preferences saved." -#: actions/grouplogo.php:139 actions/grouplogo.php:192 +#: actions/grouplogo.php:142 actions/grouplogo.php:195 msgid "Group logo" msgstr "Group logo" -#: actions/grouplogo.php:150 -#, fuzzy, php-format +#: actions/grouplogo.php:153 +#, 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." +msgstr "" +"You can upload a logo image for your group. The maximum file size is %s." -#: actions/grouplogo.php:178 -#, fuzzy +#: actions/grouplogo.php:181 msgid "User without matching profile." -msgstr "User without matching profile" +msgstr "User without matching profile." -#: actions/grouplogo.php:362 -#, fuzzy +#: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." -msgstr "Pick a square area of the image to be your avatar" +msgstr "Pick a square area of the image to be the logo." -#: actions/grouplogo.php:396 +#: actions/grouplogo.php:399 msgid "Logo updated." msgstr "Logo updated." -#: actions/grouplogo.php:398 +#: actions/grouplogo.php:401 msgid "Failed updating logo." msgstr "Failed updating logo." -#: actions/groupmembers.php:93 lib/groupnav.php:92 +#: actions/groupmembers.php:100 lib/groupnav.php:92 #, php-format msgid "%s group members" msgstr "%s group members" -#: actions/groupmembers.php:96 -#, fuzzy, php-format +#: actions/groupmembers.php:103 +#, php-format msgid "%1$s group members, page %2$d" -msgstr "%s group members, page %d" +msgstr "%1$s group members, page %2$d" -#: actions/groupmembers.php:111 +#: actions/groupmembers.php:118 msgid "A list of the users in this group." msgstr "A list of the users in this group." -#: actions/groupmembers.php:175 lib/action.php:448 lib/groupnav.php:107 +#: actions/groupmembers.php:182 lib/groupnav.php:107 msgid "Admin" msgstr "Admin" -#: actions/groupmembers.php:348 lib/blockform.php:69 +#: actions/groupmembers.php:355 lib/blockform.php:69 msgid "Block" msgstr "Block" -#: actions/groupmembers.php:443 -#, fuzzy +#: actions/groupmembers.php:450 msgid "Make user an admin of the group" -msgstr "You must be an admin to edit the group" +msgstr "Make user an admin of the group" -#: actions/groupmembers.php:475 -#, fuzzy +#: actions/groupmembers.php:482 msgid "Make Admin" -msgstr "Admin" +msgstr "Make admin" -#: actions/groupmembers.php:475 +#: actions/groupmembers.php:482 msgid "Make this user an admin" -msgstr "" +msgstr "Make this user an admin" -#: actions/grouprss.php:133 -#, fuzzy, php-format +#: actions/grouprss.php:140 +#, php-format msgid "Updates from members of %1$s on %2$s!" -msgstr "Updates from %1$s on %2$s!" +msgstr "Updates from members of %1$s on %2$s!" #: actions/groups.php:62 lib/profileaction.php:210 lib/profileaction.php:230 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 @@ -1741,12 +1760,12 @@ msgid "Create a new group" msgstr "Create a new group" #: actions/groupsearch.php:52 -#, fuzzy, php-format +#, 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. " +"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/groupsearch.php:58 @@ -1755,9 +1774,8 @@ msgstr "Group search" #: actions/groupsearch.php:79 actions/noticesearch.php:117 #: actions/peoplesearch.php:83 -#, fuzzy msgid "No results." -msgstr "No results" +msgstr "No results." #: actions/groupsearch.php:82 #, php-format @@ -1786,9 +1804,8 @@ msgid "Error removing the block." msgstr "Error removing the block." #: actions/imsettings.php:59 -#, fuzzy msgid "IM settings" -msgstr "I.M. Settings" +msgstr "IM settings" #: actions/imsettings.php:70 #, php-format @@ -1880,9 +1897,9 @@ msgid "That is not your Jabber ID." msgstr "That is not your Jabber ID." #: actions/inbox.php:59 -#, fuzzy, php-format +#, php-format msgid "Inbox for %1$s - page %2$d" -msgstr "Inbox for %s" +msgstr "Inbox for %1$s - page %2$d" #: actions/inbox.php:62 #, php-format @@ -1964,16 +1981,19 @@ msgstr "Personal message" msgid "Optionally add a personal message to the invitation." msgstr "Optionally add a personal message to the invitation." -#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:236 +#. TRANS: Send button for inviting friends +#: actions/invite.php:198 +#, fuzzy +msgctxt "BUTTON" msgid "Send" msgstr "Send" -#: actions/invite.php:226 +#: actions/invite.php:227 #, 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 +#: actions/invite.php:229 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -2034,23 +2054,27 @@ msgstr "" msgid "You must be logged in to join a group." msgstr "You must be logged in to join a group." -#: actions/joingroup.php:131 -#, fuzzy, php-format +#: actions/joingroup.php:88 actions/leavegroup.php:88 +msgid "No nickname or ID." +msgstr "No nickname or ID." + +#: actions/joingroup.php:141 +#, php-format msgid "%1$s joined group %2$s" -msgstr "%s joined group %s" +msgstr "%1$s joined group %2$s" #: 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/leavegroup.php:90 lib/command.php:265 +#: actions/leavegroup.php:100 lib/command.php:265 msgid "You are not a member of that group." msgstr "You are not a member of that group." -#: actions/leavegroup.php:127 -#, fuzzy, php-format +#: actions/leavegroup.php:137 +#, php-format msgid "%1$s left group %2$s" -msgstr "%s left group %s" +msgstr "%1$s left group %2$s" #: actions/login.php:80 actions/otp.php:62 actions/register.php:137 msgid "Already logged in." @@ -2064,8 +2088,7 @@ msgstr "Incorrect username or password." msgid "Error setting user. You are probably not authorized." msgstr "Error setting user. You are probably not authorised." -#: actions/login.php:188 actions/login.php:241 lib/action.php:466 -#: lib/logingroupnav.php:79 +#: actions/login.php:188 actions/login.php:241 lib/logingroupnav.php:79 msgid "Login" msgstr "Login" @@ -2107,47 +2130,43 @@ msgid "Only an admin can make another user an admin." msgstr "" #: actions/makeadmin.php:96 -#, fuzzy, php-format +#, php-format msgid "%1$s is already an admin for group \"%2$s\"." -msgstr "User is already blocked from group." +msgstr "%1$s is already an admin for group \"%2$s\"." #: actions/makeadmin.php:133 -#, fuzzy, php-format +#, php-format msgid "Can't get membership record for %1$s in group %2$s." -msgstr "Could not remove user %s to group %s" +msgstr "Can't get membership record for %1$s in group %2$s." #: actions/makeadmin.php:146 -#, fuzzy, php-format +#, php-format msgid "Can't make %1$s an admin for group %2$s." -msgstr "You must be an admin to edit the group" +msgstr "Can't make %1$s an admin for group %2$s." #: actions/microsummary.php:69 msgid "No current status" msgstr "No current status" #: actions/newapplication.php:52 -#, fuzzy msgid "New Application" -msgstr "No such notice." +msgstr "New Application" #: actions/newapplication.php:64 -#, fuzzy msgid "You must be logged in to register an application." -msgstr "You must be logged in to create a group." +msgstr "You must be logged in to register an application." #: actions/newapplication.php:143 -#, fuzzy msgid "Use this form to register a new application." -msgstr "Use this form to create a new group." +msgstr "Use this form to register a new application." #: actions/newapplication.php:176 msgid "Source URL is required." -msgstr "" +msgstr "Source URL is required." #: actions/newapplication.php:258 actions/newapplication.php:267 -#, fuzzy msgid "Could not create application." -msgstr "Could not create aliases" +msgstr "Could not create application." #: actions/newgroup.php:53 msgid "New group" @@ -2185,9 +2204,9 @@ msgid "Message sent" msgstr "Message sent" #: actions/newmessage.php:185 -#, fuzzy, php-format +#, php-format msgid "Direct message to %s sent." -msgstr "Direct message to %s sent" +msgstr "Could not create application." #: actions/newmessage.php:210 actions/newnotice.php:245 lib/channel.php:170 msgid "Ajax Error" @@ -2215,9 +2234,9 @@ msgid "Text search" msgstr "Text search" #: actions/noticesearch.php:91 -#, fuzzy, php-format +#, php-format msgid "Search results for \"%1$s\" on %2$s" -msgstr "Search results for \"%s\" on %s" +msgstr "Search results for \"%1$s\" on %2$s" #: actions/noticesearch.php:121 #, php-format @@ -2225,6 +2244,8 @@ msgid "" "Be the first to [post on this topic](%%%%action.newnotice%%%%?" "status_textarea=%s)!" msgstr "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" #: actions/noticesearch.php:124 #, php-format @@ -2260,14 +2281,12 @@ msgid "Nudge sent!" msgstr "Nudge sent!" #: actions/oauthappssettings.php:59 -#, fuzzy msgid "You must be logged in to list your applications." -msgstr "You must be logged in to create a group." +msgstr "You must be logged in to list your applications." #: actions/oauthappssettings.php:74 -#, fuzzy msgid "OAuth applications" -msgstr "Other options" +msgstr "OAuth applications" #: actions/oauthappssettings.php:85 msgid "Applications you have registered" @@ -2287,9 +2306,8 @@ msgid "You have allowed the following applications to access you account." msgstr "" #: actions/oauthconnectionssettings.php:175 -#, fuzzy msgid "You are not a user of that application." -msgstr "You are not a member of that group." +msgstr "You are not a user of that application." #: actions/oauthconnectionssettings.php:186 msgid "Unable to revoke access for app: " @@ -2314,16 +2332,15 @@ msgid "%1$s's status on %2$s" msgstr "%1$s's status on %2$s" #: actions/oembed.php:157 -#, fuzzy msgid "content type " -msgstr "Connect" +msgstr "content type " #: actions/oembed.php:160 msgid "Only " msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 -#: lib/api.php:1068 lib/api.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 +#: lib/apiaction.php:1068 lib/apiaction.php:1177 msgid "Not a supported data format." msgstr "Not a supported data format." @@ -2336,9 +2353,8 @@ msgid "Notice Search" msgstr "Notice Search" #: actions/othersettings.php:60 -#, fuzzy msgid "Other settings" -msgstr "Other Settings" +msgstr "Other settings" #: actions/othersettings.php:71 msgid "Manage various other options." @@ -2357,9 +2373,8 @@ msgid "Automatic shortening service to use." msgstr "Automatic shortening service to use." #: actions/othersettings.php:122 -#, fuzzy msgid "View profile designs" -msgstr "Profile settings" +msgstr "View profile designs" #: actions/othersettings.php:123 msgid "Show or hide profile designs." @@ -2370,34 +2385,29 @@ msgid "URL shortening service is too long (max 50 chars)." msgstr "URL shortening service is too long (max 50 chars)." #: actions/otp.php:69 -#, fuzzy msgid "No user ID specified." -msgstr "No profile specified." +msgstr "No user ID specified." #: actions/otp.php:83 -#, fuzzy msgid "No login token specified." -msgstr "No profile specified." +msgstr "No login token specified." #: actions/otp.php:90 -#, fuzzy msgid "No login token requested." -msgstr "No profile id in request." +msgstr "No login token requested." #: actions/otp.php:95 -#, fuzzy msgid "Invalid login token specified." -msgstr "Invalid notice content" +msgstr "Invalid login token specified." #: actions/otp.php:104 -#, fuzzy msgid "Login token expired." -msgstr "Login to site" +msgstr "Login token expired." #: actions/outbox.php:58 -#, fuzzy, php-format +#, php-format msgid "Outbox for %1$s - page %2$d" -msgstr "Outbox for %s" +msgstr "Outbox for %1$s - page %2$d" #: actions/outbox.php:61 #, php-format @@ -2469,7 +2479,7 @@ msgstr "Can't save new password." msgid "Password saved." msgstr "Password saved." -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:331 +#: actions/pathsadminpanel.php:59 msgid "Paths" msgstr "" @@ -2502,10 +2512,8 @@ msgid "Invalid SSL server. The maximum length is 255 characters." msgstr "" #: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58 -#: lib/adminpanelaction.php:311 -#, fuzzy msgid "Site" -msgstr "Invite" +msgstr "Site" #: actions/pathsadminpanel.php:238 msgid "Server" @@ -2556,24 +2564,20 @@ msgid "Theme directory" msgstr "" #: actions/pathsadminpanel.php:279 -#, fuzzy msgid "Avatars" -msgstr "Avatar" +msgstr "Avatars" #: actions/pathsadminpanel.php:284 -#, fuzzy msgid "Avatar server" -msgstr "Avatar settings" +msgstr "Avatar server" #: actions/pathsadminpanel.php:288 -#, fuzzy msgid "Avatar path" -msgstr "Avatar updated." +msgstr "Avatar path" #: actions/pathsadminpanel.php:292 -#, fuzzy msgid "Avatar directory" -msgstr "Avatar updated." +msgstr "Avatar directory" #: actions/pathsadminpanel.php:301 msgid "Backgrounds" @@ -2616,9 +2620,8 @@ msgid "When to use SSL" msgstr "" #: actions/pathsadminpanel.php:335 -#, fuzzy msgid "SSL server" -msgstr "Server" +msgstr "SSL server" #: actions/pathsadminpanel.php:336 msgid "Server to direct SSL requests to" @@ -2647,9 +2650,9 @@ msgid "Not a valid people tag: %s" msgstr "Not a valid people tag: %s" #: actions/peopletag.php:144 -#, fuzzy, php-format +#, php-format msgid "Users self-tagged with %1$s - page %2$d" -msgstr "Users self-tagged with %s - page %d" +msgstr "Users self-tagged with %1$s - page %2$d" #: actions/postnotice.php:84 msgid "Invalid notice content" @@ -2679,7 +2682,7 @@ msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1-64 lowercase letters or numbers, no punctuation or spaces" #: actions/profilesettings.php:111 actions/register.php:448 -#: actions/showgroup.php:247 actions/tagother.php:104 +#: actions/showgroup.php:255 actions/tagother.php:104 #: lib/groupeditform.php:157 lib/userprofile.php:149 msgid "Full name" msgstr "Full name" @@ -2707,7 +2710,7 @@ msgid "Bio" msgstr "Bio" #: actions/profilesettings.php:132 actions/register.php:471 -#: actions/showgroup.php:256 actions/tagother.php:112 +#: actions/showgroup.php:264 actions/tagother.php:112 #: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:164 msgid "Location" @@ -2778,9 +2781,8 @@ msgid "Couldn't update user for autosubscribe." msgstr "Couldn't update user for autosubscribe." #: actions/profilesettings.php:363 -#, fuzzy msgid "Couldn't save location prefs." -msgstr "Couldn't save tags." +msgstr "Couldn't save location prefs." #: actions/profilesettings.php:375 msgid "Couldn't save profile." @@ -2790,7 +2792,8 @@ msgstr "Couldn't save profile." msgid "Couldn't save tags." msgstr "Couldn't save tags." -#: actions/profilesettings.php:391 lib/adminpanelaction.php:137 +#. TRANS: Message after successful saving of administrative settings. +#: actions/profilesettings.php:391 lib/adminpanelaction.php:141 msgid "Settings saved." msgstr "Settings saved." @@ -2803,48 +2806,45 @@ msgstr "" msgid "Could not retrieve public stream." msgstr "Could not retrieve public stream." -#: actions/public.php:129 +#: actions/public.php:130 #, php-format msgid "Public timeline, page %d" msgstr "Public timeline, page %d" -#: actions/public.php:131 lib/publicgroupnav.php:79 +#: actions/public.php:132 lib/publicgroupnav.php:79 msgid "Public timeline" msgstr "Public timeline" -#: actions/public.php:159 -#, fuzzy +#: actions/public.php:160 msgid "Public Stream Feed (RSS 1.0)" -msgstr "Public Stream Feed" +msgstr "Public Stream Feed (RSS 1.0)" -#: actions/public.php:163 -#, fuzzy +#: actions/public.php:164 msgid "Public Stream Feed (RSS 2.0)" -msgstr "Public Stream Feed" +msgstr "Public Stream Feed (RSS 2.0)" -#: actions/public.php:167 -#, fuzzy +#: actions/public.php:168 msgid "Public Stream Feed (Atom)" -msgstr "Public Stream Feed" +msgstr "Public Stream Feed (Atom)" -#: actions/public.php:187 +#: actions/public.php:188 #, php-format msgid "" "This is the public timeline for %%site.name%% but no one has posted anything " "yet." msgstr "" -#: actions/public.php:190 +#: actions/public.php:191 msgid "Be the first to post!" msgstr "" -#: actions/public.php:194 +#: actions/public.php:195 #, php-format msgid "" "Why not [register an account](%%action.register%%) and be the first to post!" msgstr "" -#: actions/public.php:241 +#: actions/public.php:242 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2857,7 +2857,7 @@ msgstr "" "tool. [Join now](%%action.register%%) to share notices about yourself with " "friends, family, and colleagues! ([Read more](%%doc.help%%))" -#: actions/public.php:246 +#: actions/public.php:247 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -3026,16 +3026,14 @@ msgid "Sorry, only invited people can register." msgstr "Sorry, only invited people can register." #: actions/register.php:92 -#, fuzzy msgid "Sorry, invalid invitation code." -msgstr "Error with confirmation code." +msgstr "Sorry, invalid invitation code." #: actions/register.php:112 msgid "Registration successful" msgstr "Registration successful" -#: actions/register.php:114 actions/register.php:503 lib/action.php:463 -#: lib/logingroupnav.php:85 +#: actions/register.php:114 actions/register.php:503 lib/logingroupnav.php:85 msgid "Register" msgstr "Register" @@ -3095,12 +3093,11 @@ msgid "Creative Commons Attribution 3.0" msgstr "" #: actions/register.php:497 -#, 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 " +" except this private data: password, email address, IM address, and phone " "number." #: actions/register.php:538 @@ -3160,9 +3157,8 @@ msgid "Remote subscribe" msgstr "Remote subscribe" #: actions/remotesubscribe.php:124 -#, fuzzy msgid "Subscribe to a remote user" -msgstr "Subscribe to this user" +msgstr "Subscribe to a remote user" #: actions/remotesubscribe.php:129 msgid "User nickname" @@ -3190,98 +3186,91 @@ msgid "Invalid profile URL (bad format)" msgstr "Invalid profile URL (bad format)" #: actions/remotesubscribe.php:168 -#, fuzzy msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)." -msgstr "Not a valid profile URL (no YADIS document)." +msgstr "Not a valid profile URL (no YADIS document or invalid XRDS defined)." #: actions/remotesubscribe.php:176 -#, fuzzy msgid "That’s a local profile! Login to subscribe." -msgstr "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." +msgstr "Couldn’t get a request token." #: actions/repeat.php:57 -#, fuzzy msgid "Only logged-in users can repeat notices." -msgstr "Only the user can read their own mailboxes." +msgstr "Only logged-in users can repeat notices." #: actions/repeat.php:64 actions/repeat.php:71 -#, fuzzy msgid "No notice specified." -msgstr "No profile specified." +msgstr "No notice specified." #: actions/repeat.php:76 msgid "You can't repeat your own notice." msgstr "You can't repeat your own notice." #: actions/repeat.php:90 -#, fuzzy msgid "You already repeated that notice." -msgstr "You have already blocked this user." +msgstr "You already repeated that notice." -#: actions/repeat.php:114 lib/noticelist.php:656 -#, fuzzy +#: actions/repeat.php:114 lib/noticelist.php:674 msgid "Repeated" -msgstr "Created" +msgstr "Repeated" #: actions/repeat.php:119 -#, fuzzy msgid "Repeated!" -msgstr "Created" +msgstr "Repeated!" -#: actions/replies.php:125 actions/repliesrss.php:68 +#: actions/replies.php:126 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 +#: actions/replies.php:128 +#, php-format msgid "Replies to %1$s, page %2$d" -msgstr "Replies to %1$s on %2$s!" +msgstr "Replies to %1$s, page %2$d" -#: actions/replies.php:144 +#: actions/replies.php:145 #, php-format msgid "Replies feed for %s (RSS 1.0)" msgstr "Replies feed for %s (RSS 1.0)" -#: actions/replies.php:151 +#: actions/replies.php:152 #, php-format msgid "Replies feed for %s (RSS 2.0)" msgstr "Replies feed for %s (RSS 2.0)" -#: actions/replies.php:158 +#: actions/replies.php:159 #, php-format msgid "Replies feed for %s (Atom)" msgstr "Notice feed for %s" -#: actions/replies.php:198 -#, fuzzy, php-format +#: actions/replies.php:199 +#, php-format msgid "" "This is the timeline showing replies to %1$s but %2$s hasn't received a " "notice to his attention yet." msgstr "" -"This is the timeline for %s and friends but no one has posted anything yet." +"This is the timeline showing replies to %1$s but %2$s hasn't received a " +"notice to his attention yet." -#: actions/replies.php:203 +#: actions/replies.php:204 #, php-format msgid "" "You can engage other users in a conversation, subscribe to more people or " "[join groups](%%action.groups%%)." msgstr "" -#: actions/replies.php:205 -#, fuzzy, php-format +#: actions/replies.php:206 +#, php-format msgid "" "You can try to [nudge %1$s](../%2$s) or [post something to his or her " "attention](%%%%action.newnotice%%%%?status_textarea=%3$s)." msgstr "" -"You can try to [nudge %s](../%s) from his profile or [post something to his " -"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +"You can try to [nudge %1$s](../%2$s) or [post something to his or her " +"attention](%%%%action.newnotice%%%%?status_textarea=%3$s)." #: actions/repliesrss.php:72 #, php-format @@ -3289,9 +3278,8 @@ msgid "Replies to %1$s on %2$s!" msgstr "Replies to %1$s on %2$s!" #: actions/rsd.php:146 actions/version.php:157 -#, fuzzy msgid "StatusNet" -msgstr "Status deleted." +msgstr "StatusNet" #: actions/sandbox.php:65 actions/unsandbox.php:65 msgid "You cannot sandbox users on this site." @@ -3302,14 +3290,12 @@ msgid "User is already sandboxed." msgstr "User is already sandboxed." #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:336 msgid "Sessions" msgstr "" #: actions/sessionsadminpanel.php:65 -#, fuzzy msgid "Session settings for this StatusNet site." -msgstr "Design settings for this StausNet site." +msgstr "Session settings for this StatusNet site." #: actions/sessionsadminpanel.php:175 msgid "Handle sessions" @@ -3328,19 +3314,17 @@ msgid "Turn on debugging output for sessions." msgstr "" #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/useradminpanel.php:293 +#: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "Save site settings" #: actions/showapplication.php:82 -#, fuzzy msgid "You must be logged in to view an application." -msgstr "You must be logged in to leave a group." +msgstr "You must be logged in to view an application." #: actions/showapplication.php:157 -#, fuzzy msgid "Application profile" -msgstr "Notice has no profile" +msgstr "Application profile" #: actions/showapplication.php:159 lib/applicationeditform.php:180 msgid "Icon" @@ -3348,21 +3332,19 @@ msgstr "" #: actions/showapplication.php:169 actions/version.php:195 #: lib/applicationeditform.php:195 -#, fuzzy msgid "Name" -msgstr "Nickname" +msgstr "Name" #: actions/showapplication.php:178 lib/applicationeditform.php:222 -#, fuzzy msgid "Organization" -msgstr "Pagination" +msgstr "Organization" #: actions/showapplication.php:187 actions/version.php:198 #: lib/applicationeditform.php:209 lib/groupeditform.php:172 msgid "Description" msgstr "Description" -#: actions/showapplication.php:192 actions/showgroup.php:429 +#: actions/showapplication.php:192 actions/showgroup.php:437 #: lib/profileaction.php:174 msgid "Statistics" msgstr "Statistics" @@ -3411,35 +3393,34 @@ msgid "" msgstr "" #: actions/showapplication.php:309 -#, fuzzy msgid "Are you sure you want to reset your consumer key and secret?" -msgstr "Are you sure you want to delete this notice?" +msgstr "Are you sure you want to reset your consumer key and secret?" #: actions/showfavorites.php:79 -#, fuzzy, php-format +#, php-format msgid "%1$s's favorite notices, page %2$d" -msgstr "%s's favourite notices" +msgstr "%1$s's favorite notices, page %2$d" #: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "Could not retrieve favourite notices." -#: actions/showfavorites.php:170 +#: actions/showfavorites.php:171 #, php-format msgid "Feed for favorites of %s (RSS 1.0)" msgstr "Feed for friends of %s" -#: actions/showfavorites.php:177 +#: actions/showfavorites.php:178 #, php-format msgid "Feed for favorites of %s (RSS 2.0)" msgstr "Feed for friends of %s" -#: actions/showfavorites.php:184 +#: actions/showfavorites.php:185 #, php-format msgid "Feed for favorites of %s (Atom)" msgstr "Feed for friends of %s" -#: actions/showfavorites.php:205 +#: actions/showfavorites.php:206 msgid "" "You haven't chosen any favorite notices yet. Click the fave button on " "notices you like to bookmark them for later or shed a spotlight on them." @@ -3447,7 +3428,7 @@ msgstr "" "You haven't chosen any favourite notices yet. Click the fave button on " "notices you like to bookmark them for later or shed a spotlight on them." -#: actions/showfavorites.php:207 +#: actions/showfavorites.php:208 #, php-format msgid "" "%s hasn't added any notices to his favorites yet. Post something interesting " @@ -3456,7 +3437,7 @@ msgstr "" "%s hasn't added any notices to his favourites yet. Post something " "interesting they would add to their favourites :)" -#: actions/showfavorites.php:211 +#: actions/showfavorites.php:212 #, php-format msgid "" "%s hasn't added any notices to his favorites yet. Why not [register an " @@ -3467,7 +3448,7 @@ msgstr "" "account](%%%%action.register%%%%) and then post something interesting they " "would add to their favourites :)" -#: actions/showfavorites.php:242 +#: actions/showfavorites.php:243 msgid "This is a way to share what you like." msgstr "" @@ -3477,71 +3458,71 @@ msgid "%s group" msgstr "%s group" #: actions/showgroup.php:84 -#, fuzzy, php-format +#, php-format msgid "%1$s group, page %2$d" -msgstr "%s group members, page %d" +msgstr "%1$s group, page %2$d" -#: actions/showgroup.php:218 +#: actions/showgroup.php:226 msgid "Group profile" msgstr "Group profile" -#: actions/showgroup.php:263 actions/tagother.php:118 +#: actions/showgroup.php:271 actions/tagother.php:118 #: actions/userauthorization.php:175 lib/userprofile.php:177 msgid "URL" msgstr "URL" -#: actions/showgroup.php:274 actions/tagother.php:128 +#: actions/showgroup.php:282 actions/tagother.php:128 #: actions/userauthorization.php:187 lib/userprofile.php:194 msgid "Note" msgstr "Note" -#: actions/showgroup.php:284 lib/groupeditform.php:184 +#: actions/showgroup.php:292 lib/groupeditform.php:184 msgid "Aliases" msgstr "" -#: actions/showgroup.php:293 +#: actions/showgroup.php:301 msgid "Group actions" msgstr "Group actions" -#: actions/showgroup.php:328 -#, fuzzy, php-format +#: actions/showgroup.php:336 +#, php-format msgid "Notice feed for %s group (RSS 1.0)" -msgstr "Notice feed for %s group" +msgstr "Notice feed for %s group (RSS 1.0)" -#: actions/showgroup.php:334 -#, fuzzy, php-format +#: actions/showgroup.php:342 +#, php-format msgid "Notice feed for %s group (RSS 2.0)" -msgstr "Notice feed for %s group" +msgstr "Notice feed for %s group (RSS 2.0)" -#: actions/showgroup.php:340 -#, fuzzy, php-format +#: actions/showgroup.php:348 +#, php-format msgid "Notice feed for %s group (Atom)" -msgstr "Notice feed for %s group" +msgstr "Notice feed for %s group (Atom)" -#: actions/showgroup.php:345 +#: actions/showgroup.php:353 #, php-format msgid "FOAF for %s group" msgstr "Outbox for %s" -#: actions/showgroup.php:381 actions/showgroup.php:438 lib/groupnav.php:91 +#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 msgid "Members" msgstr "Members" -#: actions/showgroup.php:386 lib/profileaction.php:117 +#: actions/showgroup.php:394 lib/profileaction.php:117 #: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(None)" -#: actions/showgroup.php:392 +#: actions/showgroup.php:400 msgid "All members" msgstr "All members" -#: actions/showgroup.php:432 +#: actions/showgroup.php:440 msgid "Created" msgstr "Created" -#: actions/showgroup.php:448 +#: actions/showgroup.php:456 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3556,8 +3537,8 @@ msgstr "" "their life and interests. [Join now](%%%%action.register%%%%) to become part " "of this group and many more! ([Read more](%%%%doc.help%%%%))" -#: actions/showgroup.php:454 -#, fuzzy, php-format +#: actions/showgroup.php:462 +#, 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 " @@ -3565,12 +3546,13 @@ msgid "" "their life and interests. " msgstr "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " +"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. " -#: actions/showgroup.php:482 -#, fuzzy +#: actions/showgroup.php:490 msgid "Admins" -msgstr "Admin" +msgstr "Admins" #: actions/showmessage.php:81 msgid "No such message." @@ -3600,29 +3582,29 @@ msgid " tagged %s" msgstr " tagged %s" #: actions/showstream.php:79 -#, fuzzy, php-format +#, php-format msgid "%1$s, page %2$d" -msgstr "%1$s and friends, page %2$d" +msgstr "%1$s, page %2$d" #: actions/showstream.php:122 -#, fuzzy, php-format +#, php-format msgid "Notice feed for %1$s tagged %2$s (RSS 1.0)" -msgstr "Notice feed for %s tagged %s (RSS 1.0)" +msgstr "Notice feed for %1$s tagged %2$s (RSS 1.0)" #: actions/showstream.php:129 -#, fuzzy, php-format +#, php-format msgid "Notice feed for %s (RSS 1.0)" -msgstr "Notice feed for %s" +msgstr "Notice feed for %s (RSS 1.0)" #: actions/showstream.php:136 -#, fuzzy, php-format +#, php-format msgid "Notice feed for %s (RSS 2.0)" -msgstr "Notice feed for %s" +msgstr "Notice feed for %s (RSS 2.0)" #: actions/showstream.php:143 -#, fuzzy, php-format +#, php-format msgid "Notice feed for %s (Atom)" -msgstr "Notice feed for %s" +msgstr "Notice feed for %s (Atom)" #: actions/showstream.php:148 #, php-format @@ -3630,10 +3612,9 @@ msgid "FOAF for %s" msgstr "FOAF for %s" #: actions/showstream.php:200 -#, fuzzy, php-format +#, php-format msgid "This is the timeline for %1$s but %2$s hasn't posted anything yet." -msgstr "" -"This is the timeline for %s and friends but no one has posted anything yet." +msgstr "This is the timeline for %1$s but %2$s hasn't posted anything yet." #: actions/showstream.php:205 msgid "" @@ -3642,13 +3623,13 @@ msgid "" msgstr "" #: actions/showstream.php:207 -#, fuzzy, php-format +#, php-format msgid "" "You can try to nudge %1$s or [post something to his or her attention](%%%%" "action.newnotice%%%%?status_textarea=%2$s)." msgstr "" -"You can try to [nudge %s](../%s) from his profile or [post something to his " -"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +"You can try to nudge %1$s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%2$s)." #: actions/showstream.php:243 #, php-format @@ -3671,19 +3652,17 @@ msgstr "" "[StatusNet](http://status.net/) tool. " #: actions/showstream.php:305 -#, fuzzy, php-format +#, php-format msgid "Repeat of %s" -msgstr "Replies to %s" +msgstr "Repeat of %s" #: actions/silence.php:65 actions/unsilence.php:65 -#, fuzzy msgid "You cannot silence users on this site." -msgstr "You can't send a message to this user." +msgstr "You cannot silence users on this site." #: actions/silence.php:72 -#, fuzzy msgid "User is already silenced." -msgstr "User is already blocked from group." +msgstr "User is already silenced." #: actions/siteadminpanel.php:69 msgid "Basic settings for this StatusNet site." @@ -3694,9 +3673,8 @@ msgid "Site name must have non-zero length." msgstr "" #: actions/siteadminpanel.php:140 -#, fuzzy msgid "You must have a valid contact email address." -msgstr "Not a valid e-mail address." +msgstr "You must have a valid contact email address." #: actions/siteadminpanel.php:158 #, php-format @@ -3756,9 +3734,8 @@ msgid "Contact email address for your site" msgstr "Contact e-mail address for your site" #: actions/siteadminpanel.php:263 -#, fuzzy msgid "Local" -msgstr "Local views" +msgstr "Local" #: actions/siteadminpanel.php:274 msgid "Default timezone" @@ -3829,9 +3806,8 @@ msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" #: actions/smssettings.php:58 -#, fuzzy msgid "SMS settings" -msgstr "SMS Settings" +msgstr "SMS settings" #: actions/smssettings.php:69 #, php-format @@ -3860,16 +3836,14 @@ msgid "Enter the code you received on your phone." msgstr "Enter the code you received on your phone." #: actions/smssettings.php:138 -#, fuzzy msgid "SMS phone number" -msgstr "SMS Phone number" +msgstr "SMS phone number" #: 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/smssettings.php:174 -#, fuzzy msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." @@ -3882,7 +3856,6 @@ msgid "No phone number." msgstr "No phone number." #: actions/smssettings.php:311 -#, fuzzy msgid "No carrier selected." msgstr "No carrier selected." @@ -3895,13 +3868,12 @@ msgid "That phone number already belongs to another user." msgstr "That phone number already belongs to another 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." +"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/smssettings.php:374 msgid "That is the wrong confirmation number." @@ -3912,23 +3884,21 @@ msgid "That is not your phone number." msgstr "That is not your phone number." #: actions/smssettings.php:465 -#, fuzzy msgid "Mobile carrier" msgstr "Mobile carrier" #: actions/smssettings.php:469 -#, fuzzy msgid "Select a carrier" msgstr "Select a carrier" #: actions/smssettings.php:476 -#, fuzzy, php-format +#, 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." +"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/smssettings.php:498 msgid "No code entered" @@ -3948,14 +3918,12 @@ msgid "This action only accepts POST requests." msgstr "" #: actions/subscribe.php:107 -#, fuzzy msgid "No such profile." -msgstr "No such notice." +msgstr "No such profile." #: actions/subscribe.php:117 -#, fuzzy msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." -msgstr "You are not subscribed to that profile." +msgstr "You cannot subscribe to an OMB 0.1 remote profile with this action." #: actions/subscribe.php:145 msgid "Subscribed" @@ -3967,9 +3935,9 @@ msgid "%s subscribers" msgstr "%s subscribers" #: actions/subscribers.php:52 -#, fuzzy, php-format +#, php-format msgid "%1$s subscribers, page %2$d" -msgstr "%s subscribers, page %d" +msgstr "%1$s subscribers, page %2$d" #: actions/subscribers.php:63 msgid "These are the people who listen to your notices." @@ -4004,9 +3972,9 @@ msgid "%s subscriptions" msgstr "%s subscriptions" #: actions/subscriptions.php:54 -#, fuzzy, php-format +#, php-format msgid "%1$s subscriptions, page %2$d" -msgstr "%s subscriptions, page %d" +msgstr "%1$s subscriptions, page %2$d" #: actions/subscriptions.php:65 msgid "These are the people whose notices you listen to." @@ -4040,30 +4008,29 @@ msgstr "Jabber" msgid "SMS" msgstr "SMS" -#: actions/tag.php:68 -#, fuzzy, php-format +#: actions/tag.php:69 +#, php-format msgid "Notices tagged with %1$s, page %2$d" -msgstr "Users self-tagged with %s - page %d" +msgstr "Notices tagged with %1$s, page %2$d" -#: actions/tag.php:86 -#, fuzzy, php-format +#: actions/tag.php:87 +#, php-format msgid "Notice feed for tag %s (RSS 1.0)" -msgstr "Notice feed for %s" +msgstr "Notice feed for tag %s (RSS 1.0)" -#: actions/tag.php:92 -#, fuzzy, php-format +#: actions/tag.php:93 +#, php-format msgid "Notice feed for tag %s (RSS 2.0)" -msgstr "Notice feed for %s" +msgstr "Notice feed for tag %s (RSS 2.0)" -#: actions/tag.php:98 -#, fuzzy, php-format +#: actions/tag.php:99 +#, php-format msgid "Notice feed for tag %s (Atom)" -msgstr "Notice feed for %s" +msgstr "Notice feed for tag %s (Atom)" #: actions/tagother.php:39 -#, fuzzy msgid "No ID argument." -msgstr "No id argument." +msgstr "No ID argument." #: actions/tagother.php:65 #, php-format @@ -4109,24 +4076,21 @@ msgstr "Use this form to add tags to your subscribers or subscriptions." msgid "No such tag." msgstr "No such tag." -#: actions/twitapitrends.php:87 +#: actions/twitapitrends.php:85 msgid "API method under construction." msgstr "API method under construction." #: actions/unblock.php:59 -#, fuzzy msgid "You haven't blocked that user." -msgstr "You have already blocked this user." +msgstr "You haven't blocked that user." #: actions/unsandbox.php:72 -#, fuzzy msgid "User is not sandboxed." -msgstr "User has blocked you." +msgstr "User is not sandboxed." #: actions/unsilence.php:72 -#, fuzzy msgid "User is not silenced." -msgstr "User has no profile." +msgstr "User is not silenced." #: actions/unsubscribe.php:77 msgid "No profile id in request." @@ -4137,79 +4101,78 @@ msgid "Unsubscribed" msgstr "Unsubscribed" #: actions/updateprofile.php:62 actions/userauthorization.php:337 -#, fuzzy, php-format +#, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." -msgstr "Notice licence ‘%s’ is not compatible with site licence ‘%s’." +msgstr "" +"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." -#: actions/useradminpanel.php:58 lib/adminpanelaction.php:321 -#: lib/personalgroupnav.php:115 +#. TRANS: User admin panel title +#: actions/useradminpanel.php:59 +#, fuzzy +msgctxt "TITLE" msgid "User" msgstr "User" -#: actions/useradminpanel.php:69 +#: actions/useradminpanel.php:70 msgid "User settings for this StatusNet site." msgstr "" -#: actions/useradminpanel.php:148 +#: actions/useradminpanel.php:149 msgid "Invalid bio limit. Must be numeric." msgstr "" -#: actions/useradminpanel.php:154 +#: actions/useradminpanel.php:155 msgid "Invalid welcome text. Max length is 255 characters." msgstr "" -#: actions/useradminpanel.php:164 +#: actions/useradminpanel.php:165 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" -#: actions/useradminpanel.php:217 lib/accountsettingsaction.php:108 +#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Profile" -#: actions/useradminpanel.php:221 +#: actions/useradminpanel.php:222 msgid "Bio Limit" msgstr "" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:223 msgid "Maximum length of a profile bio in characters." msgstr "" -#: actions/useradminpanel.php:230 +#: actions/useradminpanel.php:231 msgid "New users" msgstr "New users" -#: actions/useradminpanel.php:234 +#: actions/useradminpanel.php:235 msgid "New user welcome" msgstr "" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:236 msgid "Welcome text for new users (Max 255 chars)." msgstr "" -#: actions/useradminpanel.php:240 +#: actions/useradminpanel.php:241 msgid "Default subscription" msgstr "Default subscription" -#: actions/useradminpanel.php:241 -#, fuzzy +#: actions/useradminpanel.php:242 msgid "Automatically subscribe new users to this user." -msgstr "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" +msgstr "Automatically subscribe new users to this user." -#: actions/useradminpanel.php:250 -#, fuzzy +#: actions/useradminpanel.php:251 msgid "Invitations" -msgstr "Invitation(s) sent" +msgstr "Invitations" -#: actions/useradminpanel.php:255 -#, fuzzy +#: actions/useradminpanel.php:256 msgid "Invitations enabled" -msgstr "Invitation(s) sent" +msgstr "Invitations enabled" -#: actions/useradminpanel.php:257 +#: actions/useradminpanel.php:258 msgid "Whether to allow users to invite new users." msgstr "" @@ -4218,15 +4181,14 @@ msgid "Authorize subscription" msgstr "Authorise subscription" #: 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\"." +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." #: actions/userauthorization.php:196 actions/version.php:165 msgid "License" @@ -4258,14 +4220,13 @@ msgid "Subscription authorized" msgstr "Subscription authorised" #: actions/userauthorization.php:256 -#, 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 " +"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/userauthorization.php:266 @@ -4273,14 +4234,13 @@ msgid "Subscription rejected" msgstr "Subscription rejected" #: actions/userauthorization.php:268 -#, 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 " +"with the site’s instructions for details on how to fully reject the " "subscription." #: actions/userauthorization.php:303 @@ -4309,19 +4269,18 @@ msgid "Avatar URL ‘%s’ is not valid." msgstr "" #: actions/userauthorization.php:350 -#, fuzzy, php-format +#, php-format msgid "Can’t read avatar URL ‘%s’." -msgstr "Can't read avatar URL '%s'" +msgstr "Can’t read avatar URL ‘%s’." #: actions/userauthorization.php:355 -#, fuzzy, php-format +#, php-format msgid "Wrong image type for avatar URL ‘%s’." -msgstr "Wrong image type for '%s'" +msgstr "Wrong image type for avatar URL ‘%s’." #: actions/userdesignsettings.php:76 lib/designsettings.php:65 -#, fuzzy msgid "Profile design" -msgstr "Profile settings" +msgstr "Profile design" #: actions/userdesignsettings.php:87 lib/designsettings.php:76 msgid "" @@ -4334,19 +4293,18 @@ msgid "Enjoy your hotdog!" msgstr "" #: actions/usergroups.php:64 -#, fuzzy, php-format +#, php-format msgid "%1$s groups, page %2$d" -msgstr "%s group members, page %d" +msgstr "%1$s groups, page %2$d" #: actions/usergroups.php:130 -#, fuzzy msgid "Search for more groups" -msgstr "Search for people or text" +msgstr "Search for more groups" #: actions/usergroups.php:153 -#, fuzzy, php-format +#, php-format msgid "%s is not a member of any group." -msgstr "You are not a member of that group." +msgstr "%s is not a member of any group." #: actions/usergroups.php:158 #, php-format @@ -4354,9 +4312,9 @@ msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" #: actions/version.php:73 -#, fuzzy, php-format +#, php-format msgid "StatusNet %s" -msgstr "Statistics" +msgstr "StatusNet %s" #: actions/version.php:153 #, php-format @@ -4406,10 +4364,9 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:196 lib/action.php:747 -#, fuzzy +#: actions/version.php:196 lib/action.php:778 msgid "Version" -msgstr "Personal" +msgstr "Version" #: actions/version.php:197 msgid "Author(s)" @@ -4433,29 +4390,29 @@ msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" #: classes/Group_member.php:41 -#, fuzzy msgid "Group join failed." -msgstr "Group profile" +msgstr "Group join failed." #: classes/Group_member.php:53 -#, fuzzy msgid "Not part of group." -msgstr "Could not update group." +msgstr "Not part of group." #: classes/Group_member.php:60 -#, fuzzy msgid "Group leave failed." -msgstr "Group profile" +msgstr "Group leave failed." + +#: classes/Local_group.php:41 +msgid "Could not update local group." +msgstr "Could not update local group." #: classes/Login_token.php:76 -#, fuzzy, php-format +#, php-format msgid "Could not create login token for %s" -msgstr "Could not create aliases" +msgstr "Could not create login token for %s" #: classes/Message.php:45 -#, fuzzy msgid "You are banned from sending direct messages." -msgstr "Error sending direct message." +msgstr "You are banned from sending direct messages." #: classes/Message.php:61 msgid "Could not insert message." @@ -4465,51 +4422,49 @@ msgstr "Could not insert message." msgid "Could not update message with new URI." msgstr "Could not update message with new URI." -#: classes/Notice.php:157 +#: classes/Notice.php:172 #, php-format msgid "DB error inserting hashtag: %s" msgstr "DB error inserting hashtag: %s" -#: classes/Notice.php:222 -#, fuzzy +#: classes/Notice.php:239 msgid "Problem saving notice. Too long." -msgstr "Problem saving notice." +msgstr "Problem saving notice. Too long." -#: classes/Notice.php:226 +#: classes/Notice.php:243 msgid "Problem saving notice. Unknown user." msgstr "Problem saving notice. Unknown user." -#: classes/Notice.php:231 +#: classes/Notice.php:248 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." -#: classes/Notice.php:237 -#, fuzzy +#: classes/Notice.php:254 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." +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." -#: classes/Notice.php:243 +#: classes/Notice.php:260 msgid "You are banned from posting notices on this site." msgstr "You are banned from posting notices on this site." -#: classes/Notice.php:309 classes/Notice.php:335 +#: classes/Notice.php:326 classes/Notice.php:352 msgid "Problem saving notice." msgstr "Problem saving notice." -#: classes/Notice.php:882 -#, fuzzy +#: classes/Notice.php:911 msgid "Problem saving group inbox." -msgstr "Problem saving notice." +msgstr "Problem saving group inbox." -#: classes/Notice.php:1407 -#, fuzzy, php-format +#: classes/Notice.php:1442 +#, php-format msgid "RT @%1$s %2$s" -msgstr "%1$s (%2$s)" +msgstr "RT @%1$s %2$s" #: classes/Subscription.php:66 lib/oauthstore.php:465 msgid "You have been banned from subscribing." @@ -4529,27 +4484,34 @@ msgid "Not subscribed!" msgstr "Not subscribed!" #: classes/Subscription.php:163 -#, fuzzy msgid "Couldn't delete self-subscription." -msgstr "Couldn't delete subscription." +msgstr "Couldn't delete self-subscription." #: classes/Subscription.php:179 lib/subs.php:69 msgid "Couldn't delete subscription." msgstr "Couldn't delete subscription." -#: classes/User.php:372 +#: classes/User.php:373 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "Welcome to %1$s, @%2$s!" -#: classes/User_group.php:423 +#: classes/User_group.php:462 msgid "Could not create group." msgstr "Could not create group." -#: classes/User_group.php:452 +#: classes/User_group.php:471 +msgid "Could not set group URI." +msgstr "Could not set group URI." + +#: classes/User_group.php:492 msgid "Could not set group membership." msgstr "Could not set group membership." +#: classes/User_group.php:506 +msgid "Could not save local group info." +msgstr "Could not save local group info." + #: lib/accountsettingsaction.php:108 msgid "Change your profile settings" msgstr "Change your profile settings" @@ -4579,9 +4541,9 @@ msgid "Other options" msgstr "Other options" #: lib/action.php:144 -#, fuzzy, php-format +#, php-format msgid "%1$s - %2$s" -msgstr "%1$s (%2$s)" +msgstr "%1$s - %2$s" #: lib/action.php:159 msgid "Untitled page" @@ -4591,122 +4553,190 @@ msgstr "Untitled page" msgid "Primary site navigation" msgstr "Primary site navigation" +#. TRANS: Tooltip for main menu option "Personal" #: lib/action.php:439 -msgid "Home" -msgstr "Home" - -#: lib/action.php:439 +#, fuzzy +msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Personal profile and friends timeline" -#: lib/action.php:441 +#: lib/action.php:442 +#, fuzzy +msgctxt "MENU" +msgid "Personal" +msgstr "Personal" + +#. TRANS: Tooltip for main menu option "Account" +#: lib/action.php:444 +#, fuzzy +msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Change your e-mail, avatar, password, profile" -#: lib/action.php:444 +#: lib/action.php:447 +#, fuzzy +msgctxt "MENU" +msgid "Account" +msgstr "Account" + +#. TRANS: Tooltip for main menu option "Services" +#: lib/action.php:450 +#, fuzzy +msgctxt "TOOLTIP" +msgid "Connect to services" +msgstr "Connect to services" + +#: lib/action.php:453 +#, fuzzy +msgctxt "MENU" msgid "Connect" msgstr "Connect" -#: lib/action.php:444 -#, fuzzy -msgid "Connect to services" -msgstr "Could not redirect to server: %s" - -#: lib/action.php:448 +#. TRANS: Tooltip for menu option "Admin" +#: lib/action.php:457 #, fuzzy +msgctxt "TOOLTIP" msgid "Change site configuration" -msgstr "Primary site navigation" +msgstr "Change site configuration" -#: lib/action.php:452 lib/subgroupnav.php:105 -msgid "Invite" -msgstr "Invite" +#: lib/action.php:460 +#, fuzzy +msgctxt "MENU" +msgid "Admin" +msgstr "Admin" -#: lib/action.php:453 lib/subgroupnav.php:106 -#, php-format +#. TRANS: Tooltip for main menu option "Invite" +#: lib/action.php:464 +#, fuzzy, php-format +msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Invite friends and colleagues to join you on %s" -#: lib/action.php:458 -msgid "Logout" -msgstr "Logout" +#: lib/action.php:467 +#, fuzzy +msgctxt "MENU" +msgid "Invite" +msgstr "Invite" -#: lib/action.php:458 +#. TRANS: Tooltip for main menu option "Logout" +#: lib/action.php:473 +#, fuzzy +msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Logout from the site" -#: lib/action.php:463 +#: lib/action.php:476 +#, fuzzy +msgctxt "MENU" +msgid "Logout" +msgstr "Logout" + +#. TRANS: Tooltip for main menu option "Register" +#: lib/action.php:481 +#, fuzzy +msgctxt "TOOLTIP" msgid "Create an account" msgstr "Create an account" -#: lib/action.php:466 +#: lib/action.php:484 +#, fuzzy +msgctxt "MENU" +msgid "Register" +msgstr "Register" + +#. TRANS: Tooltip for main menu option "Login" +#: lib/action.php:487 +#, fuzzy +msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Login to the site" -#: lib/action.php:469 lib/action.php:732 -msgid "Help" -msgstr "Help" +#: lib/action.php:490 +#, fuzzy +msgctxt "MENU" +msgid "Login" +msgstr "Login" -#: lib/action.php:469 +#. TRANS: Tooltip for main menu option "Help" +#: lib/action.php:493 +#, fuzzy +msgctxt "TOOLTIP" msgid "Help me!" msgstr "Help me!" -#: lib/action.php:472 lib/searchaction.php:127 -msgid "Search" -msgstr "Search" +#: lib/action.php:496 +#, fuzzy +msgctxt "MENU" +msgid "Help" +msgstr "Help" -#: lib/action.php:472 +#. TRANS: Tooltip for main menu option "Search" +#: lib/action.php:499 +#, fuzzy +msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Search for people or text" -#: lib/action.php:493 +#: lib/action.php:502 +#, fuzzy +msgctxt "MENU" +msgid "Search" +msgstr "Search" + +#. TRANS: DT element for site notice. String is hidden in default CSS. +#: lib/action.php:524 msgid "Site notice" msgstr "Site notice" -#: lib/action.php:559 +#: lib/action.php:590 msgid "Local views" msgstr "Local views" -#: lib/action.php:625 +#: lib/action.php:656 msgid "Page notice" msgstr "Page notice" -#: lib/action.php:727 +#: lib/action.php:758 msgid "Secondary site navigation" msgstr "Secondary site navigation" -#: lib/action.php:734 +#: lib/action.php:763 +msgid "Help" +msgstr "Help" + +#: lib/action.php:765 msgid "About" msgstr "About" -#: lib/action.php:736 +#: lib/action.php:767 msgid "FAQ" msgstr "F.A.Q." -#: lib/action.php:740 +#: lib/action.php:771 msgid "TOS" msgstr "" -#: lib/action.php:743 +#: lib/action.php:774 msgid "Privacy" msgstr "Privacy" -#: lib/action.php:745 +#: lib/action.php:776 msgid "Source" msgstr "Source" -#: lib/action.php:749 +#: lib/action.php:780 msgid "Contact" msgstr "Contact" -#: lib/action.php:751 +#: lib/action.php:782 msgid "Badge" msgstr "Badge" -#: lib/action.php:779 +#: lib/action.php:810 msgid "StatusNet software license" msgstr "StatusNet software licence" -#: lib/action.php:782 +#: lib/action.php:813 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4715,12 +4745,12 @@ msgstr "" "**%%site.name%%** is a microblogging service brought to you by [%%site." "broughtby%%](%%site.broughtbyurl%%)." -#: lib/action.php:784 +#: lib/action.php:815 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** is a microblogging service." -#: lib/action.php:786 +#: lib/action.php:817 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4731,115 +4761,157 @@ msgstr "" "s, available under the [GNU Affero General Public Licence](http://www.fsf." "org/licensing/licenses/agpl-3.0.html)." -#: lib/action.php:801 +#: lib/action.php:832 msgid "Site content license" msgstr "Site content license" -#: lib/action.php:806 +#: lib/action.php:837 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:811 +#: lib/action.php:842 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:814 +#: lib/action.php:845 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" -#: lib/action.php:827 +#: lib/action.php:858 msgid "All " msgstr "All " -#: lib/action.php:833 +#: lib/action.php:864 msgid "license." msgstr "licence." -#: lib/action.php:1132 +#: lib/action.php:1163 msgid "Pagination" msgstr "Pagination" -#: lib/action.php:1141 +#: lib/action.php:1172 msgid "After" msgstr "After" -#: lib/action.php:1149 +#: lib/action.php:1180 msgid "Before" msgstr "Before" -#: lib/activity.php:382 +#: lib/activity.php:449 msgid "Can't handle remote content yet." msgstr "" -#: lib/activity.php:410 +#: lib/activity.php:477 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activity.php:414 +#: lib/activity.php:481 msgid "Can't handle embedded Base64 content yet." msgstr "" -#: lib/adminpanelaction.php:96 -#, fuzzy +#. TRANS: Client error message +#: lib/adminpanelaction.php:98 msgid "You cannot make changes to this site." -msgstr "You can't send a message to this user." +msgstr "You cannot make changes to this site." -#: lib/adminpanelaction.php:107 -#, fuzzy +#. TRANS: Client error message +#: lib/adminpanelaction.php:110 msgid "Changes to that panel are not allowed." -msgstr "Registration not allowed." +msgstr "Changes to that panel are not allowed." -#: lib/adminpanelaction.php:206 -#, fuzzy +#. TRANS: Client error message +#: lib/adminpanelaction.php:211 msgid "showForm() not implemented." -msgstr "Command not yet implemented." +msgstr "showForm() not implemented." -#: lib/adminpanelaction.php:235 -#, fuzzy +#. TRANS: Client error message +#: lib/adminpanelaction.php:241 msgid "saveSettings() not implemented." -msgstr "Command not yet implemented." +msgstr "saveSettings() not implemented." -#: lib/adminpanelaction.php:258 -#, fuzzy +#. TRANS: Client error message +#: lib/adminpanelaction.php:265 msgid "Unable to delete design setting." -msgstr "Unable to save your design settings!" +msgstr "Unable to delete design setting." -#: lib/adminpanelaction.php:312 -#, fuzzy +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:330 msgid "Basic site configuration" -msgstr "E-mail address confirmation" +msgstr "Basic site configuration" -#: lib/adminpanelaction.php:317 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:332 +#, fuzzy +msgctxt "MENU" +msgid "Site" +msgstr "Site" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:338 msgid "Design configuration" msgstr "Design configuration" -#: lib/adminpanelaction.php:322 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:340 #, fuzzy +msgctxt "MENU" +msgid "Design" +msgstr "Design" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:346 msgid "User configuration" -msgstr "SMS confirmation" +msgstr "User configuration" -#: lib/adminpanelaction.php:327 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:348 #, fuzzy +msgctxt "MENU" +msgid "User" +msgstr "User" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:354 msgid "Access configuration" -msgstr "Design configuration" +msgstr "Access configuration" -#: lib/adminpanelaction.php:332 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:356 #, fuzzy +msgctxt "MENU" +msgid "Access" +msgstr "Access" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:362 msgid "Paths configuration" -msgstr "SMS confirmation" +msgstr "Paths configuration" -#: lib/adminpanelaction.php:337 -#, fuzzy +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:364 +msgctxt "MENU" +msgid "Paths" +msgstr "" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:370 msgid "Sessions configuration" -msgstr "Design configuration" +msgstr "Sessions configuration" -#: lib/apiauth.php:95 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:372 +#, fuzzy +msgctxt "MENU" +msgid "Sessions" +msgstr "Version" + +#: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." msgstr "" -#: lib/apiauth.php:273 +#: lib/apiauth.php:272 #, php-format msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" msgstr "" @@ -4853,24 +4925,21 @@ msgid "Icon for this application" msgstr "" #: lib/applicationeditform.php:204 -#, fuzzy, php-format +#, php-format msgid "Describe your application in %d characters" -msgstr "Describe the group or topic in %d characters" +msgstr "Describe your application in %d characters" #: lib/applicationeditform.php:207 -#, fuzzy msgid "Describe your application" -msgstr "Describe the group or topic" +msgstr "Describe your application" #: lib/applicationeditform.php:216 -#, fuzzy msgid "Source URL" -msgstr "Source" +msgstr "Source URL" #: lib/applicationeditform.php:218 -#, fuzzy msgid "URL of the homepage of this application" -msgstr "URL of the homepage or blog of the group or topic" +msgstr "URL of the homepage of this application" #: lib/applicationeditform.php:224 msgid "Organization responsible for this application" @@ -4909,9 +4978,8 @@ msgid "Default access for this application: read-only, or read-write" msgstr "" #: lib/applicationlist.php:154 -#, fuzzy msgid "Revoke" -msgstr "Remove" +msgstr "Revoke" #: lib/attachmentlist.php:87 msgid "Attachments" @@ -4922,9 +4990,8 @@ msgid "Author" msgstr "" #: lib/attachmentlist.php:278 -#, fuzzy msgid "Provider" -msgstr "Profile" +msgstr "Provider" #: lib/attachmentnoticesection.php:67 msgid "Notices where this attachment appears" @@ -4934,15 +5001,13 @@ msgstr "" msgid "Tags for this attachment" msgstr "" -#: lib/authenticationplugin.php:218 lib/authenticationplugin.php:223 -#, fuzzy +#: lib/authenticationplugin.php:220 lib/authenticationplugin.php:225 msgid "Password changing failed" -msgstr "Password change" +msgstr "Password changing failed" -#: lib/authenticationplugin.php:233 -#, fuzzy +#: lib/authenticationplugin.php:235 msgid "Password changing is not allowed" -msgstr "Password change" +msgstr "Password changing is not allowed" #: lib/channel.php:138 lib/channel.php:158 msgid "Command results" @@ -4983,9 +5048,8 @@ msgid "" msgstr "" #: lib/command.php:152 lib/command.php:390 lib/command.php:451 -#, fuzzy msgid "Notice with that id does not exist" -msgstr "No profile with that id." +msgstr "Notice with that id does not exist" #: lib/command.php:168 lib/command.php:406 lib/command.php:467 #: lib/command.php:523 @@ -5063,14 +5127,13 @@ msgid "Already repeated that notice" msgstr "Already repeated that notice." #: lib/command.php:426 -#, fuzzy, php-format +#, php-format msgid "Notice from %s repeated" -msgstr "Notice posted" +msgstr "Notice from %s repeated" #: lib/command.php:428 -#, fuzzy msgid "Error repeating notice." -msgstr "Error saving notice." +msgstr "Error repeating notice." #: lib/command.php:482 #, php-format @@ -5138,14 +5201,13 @@ msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "" #: lib/command.php:692 -#, fuzzy, php-format +#, php-format msgid "Unsubscribed %s" -msgstr "Unsubscribed from %s" +msgstr "Unsubscribed %s" #: lib/command.php:709 -#, fuzzy msgid "You are not subscribed to anyone." -msgstr "You are not subscribed to that profile." +msgstr "You are not subscribed to anyone." #: lib/command.php:711 msgid "You are subscribed to this person:" @@ -5154,9 +5216,8 @@ msgstr[0] "You are already subscribed to these users:" msgstr[1] "You are already subscribed to these users:" #: lib/command.php:731 -#, fuzzy msgid "No one is subscribed to you." -msgstr "Could not subscribe other to you." +msgstr "No one is subscribed to you." #: lib/command.php:733 msgid "This person is subscribed to you:" @@ -5165,9 +5226,8 @@ msgstr[0] "Could not subscribe other to you." msgstr[1] "Could not subscribe other to you." #: lib/command.php:753 -#, fuzzy msgid "You are not a member of any groups." -msgstr "You are not a member of that group." +msgstr "You are not a member of any groups." #: lib/command.php:755 msgid "You are a member of this group:" @@ -5217,19 +5277,19 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:136 +#: lib/common.php:148 msgid "No configuration file found. " msgstr "No configuration file found" -#: lib/common.php:137 +#: lib/common.php:149 msgid "I looked for configuration files in the following places: " msgstr "" -#: lib/common.php:139 +#: lib/common.php:151 msgid "You may wish to run the installer to fix this." msgstr "" -#: lib/common.php:140 +#: lib/common.php:152 msgid "Go to the installer." msgstr "Go to the installer." @@ -5246,9 +5306,8 @@ msgid "Updates by SMS" msgstr "Updates by SMS" #: lib/connectsettingsaction.php:120 -#, fuzzy msgid "Connections" -msgstr "Connect" +msgstr "Connections" #: lib/connectsettingsaction.php:121 msgid "Authorized connected applications" @@ -5259,15 +5318,14 @@ msgid "Database error" msgstr "" #: lib/designsettings.php:105 -#, fuzzy msgid "Upload file" -msgstr "Upload" +msgstr "Upload file" #: lib/designsettings.php:109 -#, fuzzy msgid "" "You can upload your personal background image. The maximum file size is 2MB." -msgstr "You can upload your personal avatar. The maximum file size is %s." +msgstr "" +"You can upload your personal background image. The maximum file size is 2MB." #: lib/designsettings.php:418 msgid "Design defaults restored." @@ -5419,23 +5477,23 @@ msgstr "System error uploading file." msgid "Not an image or corrupt file." msgstr "Not an image or corrupt file." -#: lib/imagefile.php:105 +#: lib/imagefile.php:109 msgid "Unsupported image file format." msgstr "Unsupported image file format." -#: lib/imagefile.php:118 +#: lib/imagefile.php:122 msgid "Lost our file." msgstr "Lost our file." -#: lib/imagefile.php:150 lib/imagefile.php:197 +#: lib/imagefile.php:166 lib/imagefile.php:231 msgid "Unknown file type" msgstr "Unknown file type" -#: lib/imagefile.php:217 +#: lib/imagefile.php:251 msgid "MB" msgstr "" -#: lib/imagefile.php:219 +#: lib/imagefile.php:253 msgid "kB" msgstr "" @@ -5517,11 +5575,9 @@ msgstr "" "Change your email address or notification options at %8$s\n" #: lib/mail.php:258 -#, fuzzy, php-format +#, php-format msgid "Bio: %s" -msgstr "" -"Bio: %s\n" -"\n" +msgstr "Bio: %s" #: lib/mail.php:286 #, php-format @@ -5660,7 +5716,6 @@ msgid "" msgstr "" #: lib/mailbox.php:227 lib/noticelist.php:482 -#, fuzzy msgid "from" msgstr "from" @@ -5681,9 +5736,9 @@ msgid "Sorry, no incoming email allowed." msgstr "Sorry, no incoming e-mail allowed." #: lib/mailhandler.php:228 -#, fuzzy, php-format +#, php-format msgid "Unsupported message type: %s" -msgstr "Unsupported image file format." +msgstr "Unsupported message type: %s" #: lib/mediafile.php:98 lib/mediafile.php:123 msgid "There was a database error while saving your file. Please try again." @@ -5724,9 +5779,8 @@ 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 "Could not retrieve public stream." +msgstr "Could not determine file's MIME type." #: lib/mediafile.php:270 #, php-format @@ -5750,6 +5804,11 @@ msgstr "To" msgid "Available characters" msgstr "Available characters" +#: lib/messageform.php:178 lib/noticeform.php:236 +msgctxt "Send button for sending notice" +msgid "Send" +msgstr "Send" + #: lib/noticeform.php:160 msgid "Send a notice" msgstr "Send a notice" @@ -5768,14 +5827,12 @@ msgid "Attach a file" msgstr "" #: lib/noticeform.php:212 -#, fuzzy msgid "Share my location" -msgstr "Couldn't save tags." +msgstr "Share my location" #: lib/noticeform.php:215 -#, fuzzy msgid "Do not share my location" -msgstr "Couldn't save tags." +msgstr "Do not share my location" #: lib/noticeform.php:216 msgid "" @@ -5789,9 +5846,8 @@ msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "" #: lib/noticelist.php:430 -#, fuzzy msgid "N" -msgstr "No" +msgstr "N" #: lib/noticelist.php:430 msgid "S" @@ -5809,27 +5865,25 @@ msgstr "" msgid "at" msgstr "" -#: lib/noticelist.php:558 +#: lib/noticelist.php:566 msgid "in context" msgstr "in context" -#: lib/noticelist.php:583 -#, fuzzy +#: lib/noticelist.php:601 msgid "Repeated by" -msgstr "Created" +msgstr "Repeated by" -#: lib/noticelist.php:610 +#: lib/noticelist.php:628 msgid "Reply to this notice" msgstr "Reply to this notice" -#: lib/noticelist.php:611 +#: lib/noticelist.php:629 msgid "Reply" msgstr "Reply" -#: lib/noticelist.php:655 -#, fuzzy +#: lib/noticelist.php:673 msgid "Notice repeated" -msgstr "Notice deleted." +msgstr "Notice repeated" #: lib/nudgeform.php:116 msgid "Nudge this user" @@ -5875,6 +5929,10 @@ msgstr "Replies" msgid "Favorites" msgstr "Favourites" +#: lib/personalgroupnav.php:115 +msgid "User" +msgstr "User" + #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "Inbox" @@ -5897,9 +5955,8 @@ msgid "Tags in %s's notices" msgstr "Tags in %s's notices" #: lib/plugin.php:114 -#, fuzzy msgid "Unknown" -msgstr "Unknown action" +msgstr "Unknown" #: lib/profileaction.php:109 lib/profileaction.php:192 lib/subgroupnav.php:82 msgid "Subscriptions" @@ -5930,9 +5987,8 @@ msgid "All groups" msgstr "All groups" #: lib/profileformaction.php:123 -#, fuzzy msgid "No return-to arguments." -msgstr "No id argument." +msgstr "No return-to arguments." #: lib/profileformaction.php:137 msgid "Unimplemented method." @@ -5959,16 +6015,14 @@ msgid "Popular" msgstr "Popular" #: lib/repeatform.php:107 -#, fuzzy msgid "Repeat this notice?" -msgstr "Reply to this notice" +msgstr "Repeat this notice?" #: lib/repeatform.php:132 -#, fuzzy msgid "Repeat this notice" -msgstr "Reply to this notice" +msgstr "Repeat this notice" -#: lib/router.php:665 +#: lib/router.php:668 msgid "No single user defined for single-user mode." msgstr "" @@ -5981,14 +6035,17 @@ msgid "Sandbox this user" msgstr "Sandbox this user" #: lib/searchaction.php:120 -#, fuzzy msgid "Search site" -msgstr "Search" +msgstr "Search site" #: lib/searchaction.php:126 msgid "Keyword(s)" msgstr "" +#: lib/searchaction.php:127 +msgid "Search" +msgstr "Search" + #: lib/searchaction.php:162 msgid "Search help" msgstr "Search help" @@ -6040,6 +6097,15 @@ msgstr "People subscribed to %s" msgid "Groups %s is a member of" msgstr "Groups %s is a member of" +#: lib/subgroupnav.php:105 +msgid "Invite" +msgstr "Invite" + +#: 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" + #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -6110,47 +6176,47 @@ msgstr "Message" msgid "Moderate" msgstr "" -#: lib/util.php:952 +#: lib/util.php:1013 msgid "a few seconds ago" msgstr "a few seconds ago" -#: lib/util.php:954 +#: lib/util.php:1015 msgid "about a minute ago" msgstr "about a minute ago" -#: lib/util.php:956 +#: lib/util.php:1017 #, php-format msgid "about %d minutes ago" msgstr "about %d minutes ago" -#: lib/util.php:958 +#: lib/util.php:1019 msgid "about an hour ago" msgstr "about an hour ago" -#: lib/util.php:960 +#: lib/util.php:1021 #, php-format msgid "about %d hours ago" msgstr "about %d hours ago" -#: lib/util.php:962 +#: lib/util.php:1023 msgid "about a day ago" msgstr "about a day ago" -#: lib/util.php:964 +#: lib/util.php:1025 #, php-format msgid "about %d days ago" msgstr "about %d days ago" -#: lib/util.php:966 +#: lib/util.php:1027 msgid "about a month ago" msgstr "about a month ago" -#: lib/util.php:968 +#: lib/util.php:1029 #, php-format msgid "about %d months ago" msgstr "about %d months ago" -#: lib/util.php:970 +#: lib/util.php:1031 msgid "about a year ago" msgstr "about a year ago" @@ -6165,6 +6231,6 @@ msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "%s is not a valid colour! Use 3 or 6 hex chars." #: lib/xmppmanager.php:402 -#, fuzzy, php-format +#, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." -msgstr "Message too long - maximum is %d characters, you sent %d" +msgstr "Message too long - maximum is %1$d characters, you sent %2$d." diff --git a/locale/es/LC_MESSAGES/statusnet.po b/locale/es/LC_MESSAGES/statusnet.po index b5e0469b61..fe861905db 100644 --- a/locale/es/LC_MESSAGES/statusnet.po +++ b/locale/es/LC_MESSAGES/statusnet.po @@ -3,6 +3,7 @@ # Author@translatewiki.net: Brion # Author@translatewiki.net: Crazymadlover # Author@translatewiki.net: McDutchie +# Author@translatewiki.net: PerroVerd # Author@translatewiki.net: Peter17 # Author@translatewiki.net: Translationista # -- @@ -12,75 +13,82 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-02-24 23:49+0000\n" -"PO-Revision-Date: 2010-02-24 23:50:30+0000\n" +"POT-Creation-Date: 2010-03-02 21:02+0000\n" +"PO-Revision-Date: 2010-03-02 21:02:39+0000\n" "Language-Team: Spanish\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r62925); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: actions/accessadminpanel.php:54 lib/adminpanelaction.php:326 +#. TRANS: Page title +#: actions/accessadminpanel.php:55 msgid "Access" msgstr "Acceder" -#: actions/accessadminpanel.php:65 +#. TRANS: Page notice +#: actions/accessadminpanel.php:67 msgid "Site access settings" msgstr "Configuración de acceso de la web" -#: actions/accessadminpanel.php:158 +#. TRANS: Form legend for registration form. +#: actions/accessadminpanel.php:161 msgid "Registration" msgstr "Registro" -#: actions/accessadminpanel.php:161 -msgid "Private" -msgstr "Privado" - -#: actions/accessadminpanel.php:163 +#. TRANS: Checkbox instructions for admin setting "Private" +#: actions/accessadminpanel.php:165 msgid "Prohibit anonymous users (not logged in) from viewing site?" msgstr "¿Prohibir a los usuarios anónimos (no conectados) ver el sitio?" +#. TRANS: Checkbox label for prohibiting anonymous users from viewing site. #: actions/accessadminpanel.php:167 -msgid "Invite only" -msgstr "Invitar sólo" +#, fuzzy +msgctxt "LABEL" +msgid "Private" +msgstr "Privado" -#: actions/accessadminpanel.php:169 +#. TRANS: Checkbox instructions for admin setting "Invite only" +#: actions/accessadminpanel.php:174 msgid "Make registration invitation only." msgstr "Haz que el registro sea sólo con invitaciones." -#: actions/accessadminpanel.php:173 -msgid "Closed" -msgstr "Cerrado" +#. TRANS: Checkbox label for configuring site as invite only. +#: actions/accessadminpanel.php:176 +msgid "Invite only" +msgstr "Invitar sólo" -#: actions/accessadminpanel.php:175 +#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations) +#: actions/accessadminpanel.php:183 msgid "Disable new registrations." msgstr "Inhabilitar nuevos registros." -#: actions/accessadminpanel.php:189 actions/designadminpanel.php:586 -#: actions/emailsettings.php:195 actions/imsettings.php:163 -#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 -#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 -#: actions/siteadminpanel.php:336 actions/smssettings.php:181 -#: actions/subscriptions.php:208 actions/tagother.php:154 -#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 -#: lib/applicationeditform.php:334 lib/designsettings.php:256 -#: lib/groupeditform.php:202 -msgid "Save" -msgstr "Guardar" +#. TRANS: Checkbox label for disabling new user registrations. +#: actions/accessadminpanel.php:185 +msgid "Closed" +msgstr "Cerrado" -#: actions/accessadminpanel.php:189 +#. TRANS: Title / tooltip for button to save access settings in site admin panel +#: actions/accessadminpanel.php:202 msgid "Save access settings" msgstr "Guardar la configuración de acceso" -#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 -#: actions/showfavorites.php:137 actions/tag.php:51 +#: actions/accessadminpanel.php:203 +#, fuzzy +msgctxt "BUTTON" +msgid "Save" +msgstr "Guardar" + +#. TRANS: Server error when page not found (404) +#: actions/all.php:64 actions/public.php:98 actions/replies.php:93 +#: actions/showfavorites.php:138 actions/tag.php:52 msgid "No such page" msgstr "No existe tal página" -#: actions/all.php:74 actions/allrss.php:68 +#: actions/all.php:75 actions/allrss.php:68 #: actions/apiaccountupdatedeliverydevice.php:113 #: actions/apiaccountupdateprofile.php:105 #: actions/apiaccountupdateprofilebackgroundimage.php:116 @@ -94,45 +102,53 @@ msgstr "No existe tal página" #: actions/apitimelinehome.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/otp.php:76 -#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154 -#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 -#: actions/showfavorites.php:105 actions/userbyid.php:74 -#: actions/usergroups.php:91 actions/userrss.php:38 actions/xrds.php:71 -#: lib/command.php:163 lib/command.php:302 lib/command.php:355 -#: lib/command.php:401 lib/command.php:462 lib/command.php:518 -#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 +#: actions/hcard.php:67 actions/microsummary.php:62 actions/newmessage.php:116 +#: actions/otp.php:76 actions/remotesubscribe.php:145 +#: actions/remotesubscribe.php:154 actions/replies.php:73 +#: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/xrds.php:71 lib/command.php:163 lib/command.php:302 +#: lib/command.php:355 lib/command.php:401 lib/command.php:462 +#: lib/command.php:518 lib/galleryaction.php:59 lib/mailbox.php:82 +#: lib/profileaction.php:77 msgid "No such user." msgstr "No existe ese usuario." -#: actions/all.php:84 +#. TRANS: Page title. %1$s is user nickname, %2$d is page number +#: actions/all.php:86 #, php-format msgid "%1$s and friends, page %2$d" msgstr "%1$s y amigos, página %2$d" -#: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 +#. TRANS: Page title. %1$s is user nickname +#. TRANS: H1 text. %1$s is user nickname +#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" msgstr "%s y amigos" -#: actions/all.php:99 +#. TRANS: %1$s is user nickname +#: actions/all.php:103 #, php-format msgid "Feed for friends of %s (RSS 1.0)" msgstr "Feed de los amigos de %s (RSS 1.0)" -#: actions/all.php:107 +#. TRANS: %1$s is user nickname +#: actions/all.php:112 #, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "Feed de los amigos de %s (RSS 2.0)" -#: actions/all.php:115 +#. TRANS: %1$s is user nickname +#: actions/all.php:121 #, php-format msgid "Feed for friends of %s (Atom)" msgstr "Feed de los amigos de %s (Atom)" -#: actions/all.php:127 +#. TRANS: %1$s is user nickname +#: actions/all.php:134 #, php-format msgid "" "This is the timeline for %s and friends but no one has posted anything yet." @@ -140,7 +156,7 @@ msgstr "" "Esta es la línea temporal de %s y amistades, pero nadie ha publicado nada " "todavía." -#: actions/all.php:132 +#: actions/all.php:139 #, php-format msgid "" "Try subscribing to more people, [join a group](%%action.groups%%) or post " @@ -149,7 +165,8 @@ msgstr "" "Esta es la línea temporal de %s y amistades, pero nadie ha publicado nada " "todavía." -#: actions/all.php:134 +#. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@" +#: actions/all.php:142 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) from his profile or [post something to " @@ -158,7 +175,7 @@ msgstr "" "Trata de suscribirte a más personas, [unirte a un grupo] (%%action.groups%%) " "o publicar algo." -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211 +#: actions/all.php:145 actions/replies.php:210 actions/showstream.php:211 #, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " @@ -167,7 +184,8 @@ msgstr "" "Puede intentar [guiñar a %1$s](../%2$s) desde su perfil o [publicar algo a " "su atención ](%%%%action.newnotice%%%%?status_textarea=%3$s)." -#: actions/all.php:165 +#. TRANS: H1 text +#: actions/all.php:174 msgid "You and friends" msgstr "Tú y amigos" @@ -185,20 +203,20 @@ msgstr "¡Actualizaciones de %1$s y amigos en %2$s!" #: actions/apiaccountverifycredentials.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:128 actions/apigroupcreate.php:136 +#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: actions/apigroupleave.php:141 actions/apigrouplist.php:132 #: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 #: actions/apigroupshow.php:115 actions/apihelptest.php:88 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 -#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184 +#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 #: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:207 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 msgid "API method not found." msgstr "Método de API no encontrado." @@ -232,8 +250,9 @@ msgstr "No se pudo actualizar el usuario." #: actions/apiaccountupdateprofilebackgroundimage.php:194 #: actions/apiaccountupdateprofilecolors.php:185 #: 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 +#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 +#: 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." @@ -259,7 +278,7 @@ msgstr "" #: actions/apiaccountupdateprofilebackgroundimage.php:146 #: actions/apiaccountupdateprofilecolors.php:164 #: actions/apiaccountupdateprofilecolors.php:174 -#: actions/groupdesignsettings.php:287 actions/groupdesignsettings.php:297 +#: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300 #: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 #: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 msgid "Unable to save your design settings." @@ -369,7 +388,7 @@ msgstr "No se pudo determinar el usuario fuente." msgid "Could not find target user." msgstr "No se pudo encontrar ningún usuario de destino." -#: actions/apigroupcreate.php:164 actions/editgroup.php:182 +#: actions/apigroupcreate.php:166 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:215 #: actions/register.php:205 msgid "Nickname must have only lowercase letters and numbers and no spaces." @@ -377,62 +396,62 @@ msgstr "" "El usuario debe tener solamente letras minúsculas y números y no puede tener " "espacios." -#: actions/apigroupcreate.php:173 actions/editgroup.php:186 +#: actions/apigroupcreate.php:175 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:238 #: actions/register.php:208 msgid "Nickname already in use. Try another one." msgstr "El usuario ya existe. Prueba con otro." -#: actions/apigroupcreate.php:180 actions/editgroup.php:189 +#: actions/apigroupcreate.php:182 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:218 #: actions/register.php:210 msgid "Not a valid nickname." msgstr "Usuario inválido" -#: actions/apigroupcreate.php:196 actions/editapplication.php:215 -#: actions/editgroup.php:195 actions/newapplication.php:203 +#: actions/apigroupcreate.php:198 actions/editapplication.php:215 +#: actions/editgroup.php:199 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:217 msgid "Homepage is not a valid URL." msgstr "La página de inicio no es un URL válido." -#: actions/apigroupcreate.php:205 actions/editgroup.php:198 +#: actions/apigroupcreate.php:207 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:225 #: actions/register.php:220 msgid "Full name is too long (max 255 chars)." msgstr "Tu nombre es demasiado largo (max. 255 carac.)" -#: actions/apigroupcreate.php:213 actions/editapplication.php:190 +#: actions/apigroupcreate.php:215 actions/editapplication.php:190 #: actions/newapplication.php:172 #, php-format msgid "Description is too long (max %d chars)." msgstr "La descripción es demasiado larga (máx. %d caracteres)." -#: actions/apigroupcreate.php:224 actions/editgroup.php:204 +#: actions/apigroupcreate.php:226 actions/editgroup.php:208 #: actions/newgroup.php:148 actions/profilesettings.php:232 #: actions/register.php:227 msgid "Location is too long (max 255 chars)." msgstr "La ubicación es demasiado larga (máx. 255 caracteres)." -#: actions/apigroupcreate.php:243 actions/editgroup.php:215 +#: actions/apigroupcreate.php:245 actions/editgroup.php:219 #: actions/newgroup.php:159 #, php-format msgid "Too many aliases! Maximum %d." msgstr "¡Muchos seudónimos! El máximo es %d." -#: actions/apigroupcreate.php:264 actions/editgroup.php:224 +#: actions/apigroupcreate.php:266 actions/editgroup.php:228 #: actions/newgroup.php:168 #, php-format msgid "Invalid alias: \"%s\"" msgstr "Alias inválido: \"%s\"" -#: actions/apigroupcreate.php:273 actions/editgroup.php:228 +#: actions/apigroupcreate.php:275 actions/editgroup.php:232 #: actions/newgroup.php:172 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "El alias \"%s\" ya está en uso. Intenta usar otro." -#: actions/apigroupcreate.php:286 actions/editgroup.php:234 +#: actions/apigroupcreate.php:288 actions/editgroup.php:238 #: actions/newgroup.php:178 msgid "Alias can't be the same as nickname." msgstr "El alias no puede ser el mismo que el usuario." @@ -443,15 +462,15 @@ msgstr "El alias no puede ser el mismo que el usuario." msgid "Group not found!" msgstr "¡No se ha encontrado el grupo!" -#: actions/apigroupjoin.php:110 actions/joingroup.php:90 +#: actions/apigroupjoin.php:110 actions/joingroup.php:100 msgid "You are already a member of that group." msgstr "Ya eres miembro de ese grupo" -#: actions/apigroupjoin.php:119 actions/joingroup.php:95 lib/command.php:221 +#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:221 msgid "You have been blocked from that group by the admin." msgstr "Has sido bloqueado de ese grupo por el administrador." -#: actions/apigroupjoin.php:138 actions/joingroup.php:124 +#: actions/apigroupjoin.php:138 actions/joingroup.php:134 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "No se pudo unir el usuario %s al grupo %s" @@ -460,7 +479,7 @@ msgstr "No se pudo unir el usuario %s al grupo %s" msgid "You are not a member of this group." msgstr "No eres miembro de este grupo." -#: actions/apigroupleave.php:124 actions/leavegroup.php:119 +#: actions/apigroupleave.php:124 actions/leavegroup.php:129 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "No se pudo eliminar al usuario %1$s del grupo %2$s." @@ -491,7 +510,7 @@ msgstr "Token inválido." #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 #: actions/deletenotice.php:157 actions/disfavor.php:74 #: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54 -#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupblock.php:66 actions/grouplogo.php:312 #: actions/groupunblock.php:66 actions/imsettings.php:206 #: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 @@ -537,7 +556,7 @@ msgstr "El token de solicitud %2 ha sido denegado y revocado." #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:103 actions/editapplication.php:139 -#: actions/emailsettings.php:256 actions/grouplogo.php:319 +#: actions/emailsettings.php:256 actions/grouplogo.php:322 #: actions/imsettings.php:220 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 #: actions/smssettings.php:248 lib/designsettings.php:304 @@ -563,13 +582,13 @@ msgstr "" "permiso para %3$s la información de tu cuenta %4$s. Sólo " "debes dar acceso a tu cuenta %4$s a terceras partes en las que confíes." -#: actions/apioauthauthorize.php:310 lib/action.php:441 +#: actions/apioauthauthorize.php:310 msgid "Account" msgstr "Cuenta" #: actions/apioauthauthorize.php:313 actions/login.php:230 #: actions/profilesettings.php:106 actions/register.php:424 -#: actions/showgroup.php:236 actions/tagother.php:94 +#: actions/showgroup.php:244 actions/tagother.php:94 #: actions/userauthorization.php:145 lib/groupeditform.php:152 #: lib/userprofile.php:131 msgid "Nickname" @@ -653,12 +672,12 @@ msgid "%1$s updates favorited by %2$s / %2$s." msgstr "%1$s actualizaciones favoritas de %2$s / %2$s." #: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:131 actions/userrss.php:90 +#: actions/grouprss.php:138 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "línea temporal de %s" -#: actions/apitimelinegroup.php:114 actions/apitimelineuser.php:126 +#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 #: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" @@ -694,7 +713,7 @@ msgstr "Repetido a %s" msgid "Repeats of %s" msgstr "Repeticiones de %s" -#: actions/apitimelinetag.php:102 actions/tag.php:66 +#: actions/apitimelinetag.php:102 actions/tag.php:67 #, php-format msgid "Notices tagged with %s" msgstr "Avisos marcados con %s" @@ -715,8 +734,7 @@ msgstr "No existe tal archivo adjunto." #: actions/avatarbynickname.php:59 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/leavegroup.php:76 -#: actions/showgroup.php:121 +#: actions/grouprss.php:91 actions/showgroup.php:121 msgid "No nickname." msgstr "Ningún apodo." @@ -728,7 +746,7 @@ msgstr "Ningún tamaño." msgid "Invalid size." msgstr "Tamaño inválido." -#: actions/avatarsettings.php:67 actions/showgroup.php:221 +#: actions/avatarsettings.php:67 actions/showgroup.php:229 #: lib/accountsettingsaction.php:112 msgid "Avatar" msgstr "Avatar" @@ -745,30 +763,30 @@ msgid "User without matching profile" msgstr "Usuario sin perfil equivalente" #: actions/avatarsettings.php:119 actions/avatarsettings.php:197 -#: actions/grouplogo.php:251 +#: actions/grouplogo.php:254 msgid "Avatar settings" msgstr "Configuración de Avatar" #: actions/avatarsettings.php:127 actions/avatarsettings.php:205 -#: actions/grouplogo.php:199 actions/grouplogo.php:259 +#: actions/grouplogo.php:202 actions/grouplogo.php:262 msgid "Original" msgstr "Original" #: actions/avatarsettings.php:142 actions/avatarsettings.php:217 -#: actions/grouplogo.php:210 actions/grouplogo.php:271 +#: actions/grouplogo.php:213 actions/grouplogo.php:274 msgid "Preview" msgstr "Vista previa" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:637 +#: lib/deleteuserform.php:66 lib/noticelist.php:655 msgid "Delete" msgstr "Borrar" -#: actions/avatarsettings.php:166 actions/grouplogo.php:233 +#: actions/avatarsettings.php:166 actions/grouplogo.php:236 msgid "Upload" msgstr "Cargar" -#: actions/avatarsettings.php:231 actions/grouplogo.php:286 +#: actions/avatarsettings.php:231 actions/grouplogo.php:289 msgid "Crop" msgstr "Cortar" @@ -776,7 +794,7 @@ msgstr "Cortar" 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:343 actions/grouplogo.php:377 +#: actions/avatarsettings.php:343 actions/grouplogo.php:380 msgid "Lost our file data." msgstr "Se perdió nuestros datos de archivo." @@ -811,22 +829,22 @@ msgstr "" "te notificará de ninguna de sus respuestas @." #: actions/block.php:143 actions/deleteapplication.php:153 -#: actions/deletenotice.php:145 actions/deleteuser.php:147 +#: actions/deletenotice.php:145 actions/deleteuser.php:150 #: actions/groupblock.php:178 msgid "No" msgstr "No" -#: actions/block.php:143 actions/deleteuser.php:147 +#: actions/block.php:143 actions/deleteuser.php:150 msgid "Do not block this user" msgstr "No bloquear a este usuario" #: actions/block.php:144 actions/deleteapplication.php:158 -#: actions/deletenotice.php:146 actions/deleteuser.php:148 +#: actions/deletenotice.php:146 actions/deleteuser.php:151 #: actions/groupblock.php:179 lib/repeatform.php:132 msgid "Yes" msgstr "Sí" -#: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:355 lib/blockform.php:80 msgid "Block this user" msgstr "Bloquear este usuario." @@ -834,40 +852,44 @@ msgstr "Bloquear este usuario." msgid "Failed to save block information." msgstr "No se guardó información de bloqueo." -#: actions/blockedfromgroup.php:80 actions/editgroup.php:96 -#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/groupblock.php:86 -#: actions/groupbyid.php:83 actions/groupdesignsettings.php:97 -#: actions/grouplogo.php:99 actions/groupmembers.php:83 -#: actions/grouprss.php:98 actions/groupunblock.php:86 -#: actions/joingroup.php:83 actions/leavegroup.php:83 actions/makeadmin.php:86 -#: actions/showgroup.php:137 lib/command.php:212 lib/command.php:260 +#: actions/blockedfromgroup.php:80 actions/blockedfromgroup.php:87 +#: actions/editgroup.php:100 actions/foafgroup.php:44 actions/foafgroup.php:62 +#: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:100 actions/grouplogo.php:102 +#: actions/groupmembers.php:83 actions/groupmembers.php:90 +#: actions/grouprss.php:98 actions/grouprss.php:105 +#: actions/groupunblock.php:86 actions/joingroup.php:82 +#: actions/joingroup.php:93 actions/leavegroup.php:82 +#: actions/leavegroup.php:93 actions/makeadmin.php:86 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:212 +#: lib/command.php:260 msgid "No such group." msgstr "No existe ese grupo." -#: actions/blockedfromgroup.php:90 +#: actions/blockedfromgroup.php:97 #, php-format msgid "%s blocked profiles" msgstr "%s perfiles bloqueados" -#: actions/blockedfromgroup.php:93 +#: actions/blockedfromgroup.php:100 #, php-format msgid "%1$s blocked profiles, page %2$d" msgstr "%1$s perfiles bloqueados, página %2$d" -#: actions/blockedfromgroup.php:108 +#: actions/blockedfromgroup.php:115 msgid "A list of the users blocked from joining this group." msgstr "" "Una lista de los usuarios que han sido bloqueados para unirse a este grupo." -#: actions/blockedfromgroup.php:281 +#: actions/blockedfromgroup.php:288 msgid "Unblock user from group" msgstr "Desbloquear usuario de grupo" -#: actions/blockedfromgroup.php:313 lib/unblockform.php:69 +#: actions/blockedfromgroup.php:320 lib/unblockform.php:69 msgid "Unblock" msgstr "Desbloquear" -#: actions/blockedfromgroup.php:313 lib/unblockform.php:80 +#: actions/blockedfromgroup.php:320 lib/unblockform.php:80 msgid "Unblock this user" msgstr "Desbloquear este usuario" @@ -942,7 +964,7 @@ msgstr "No eres el propietario de esta aplicación." #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1197 +#: lib/action.php:1228 msgid "There was a problem with your session token." msgstr "Hubo problemas con tu clave de sesión." @@ -968,12 +990,13 @@ msgstr "No eliminar esta aplicación" msgid "Delete this application" msgstr "Borrar esta aplicación" +#. TRANS: Client error message #: 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:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 -#: lib/adminpanelaction.php:72 lib/profileformaction.php:63 +#: lib/adminpanelaction.php:73 lib/profileformaction.php:63 #: lib/settingsaction.php:72 msgid "Not logged in." msgstr "No conectado." @@ -1002,7 +1025,7 @@ msgstr "¿Estás seguro de que quieres eliminar este aviso?" msgid "Do not delete this notice" msgstr "No eliminar este mensaje" -#: actions/deletenotice.php:146 lib/noticelist.php:637 +#: actions/deletenotice.php:146 lib/noticelist.php:655 msgid "Delete this notice" msgstr "Borrar este aviso" @@ -1018,7 +1041,7 @@ msgstr "Sólo puedes eliminar usuarios locales." msgid "Delete user" msgstr "Borrar usuario" -#: actions/deleteuser.php:135 +#: actions/deleteuser.php:136 msgid "" "Are you sure you want to delete this user? This will clear all data about " "the user from the database, without a backup." @@ -1026,12 +1049,12 @@ msgstr "" "¿Realmente deseas eliminar este usuario? Esto borrará de la base de datos " "todos los datos sobre el usuario, sin dejar una copia de seguridad." -#: actions/deleteuser.php:148 lib/deleteuserform.php:77 +#: actions/deleteuser.php:151 lib/deleteuserform.php:77 msgid "Delete this user" msgstr "Borrar este usuario" #: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 -#: lib/adminpanelaction.php:316 lib/groupnav.php:119 +#: lib/groupnav.php:119 msgid "Design" msgstr "Diseño" @@ -1134,6 +1157,17 @@ msgstr "Restaurar los diseños predeterminados" msgid "Reset back to default" msgstr "Volver a los valores predeterminados" +#: actions/designadminpanel.php:586 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/tagother.php:154 actions/useradminpanel.php:294 +#: lib/applicationeditform.php:333 lib/applicationeditform.php:334 +#: lib/designsettings.php:256 lib/groupeditform.php:202 +msgid "Save" +msgstr "Guardar" + #: actions/designadminpanel.php:587 lib/designsettings.php:257 msgid "Save design" msgstr "Guardar el diseño" @@ -1225,29 +1259,29 @@ msgstr "Editar grupo %s" msgid "You must be logged in to create a group." msgstr "Debes estar conectado para crear un grupo" -#: actions/editgroup.php:103 actions/editgroup.php:168 -#: actions/groupdesignsettings.php:104 actions/grouplogo.php:106 +#: actions/editgroup.php:107 actions/editgroup.php:172 +#: actions/groupdesignsettings.php:107 actions/grouplogo.php:109 msgid "You must be an admin to edit the group." msgstr "Para editar el grupo debes ser administrador." -#: actions/editgroup.php:154 +#: actions/editgroup.php:158 msgid "Use this form to edit the group." msgstr "Usa este formulario para editar el grupo." -#: actions/editgroup.php:201 actions/newgroup.php:145 +#: actions/editgroup.php:205 actions/newgroup.php:145 #, php-format msgid "description is too long (max %d chars)." msgstr "La descripción es muy larga (máx. %d caracteres)." -#: actions/editgroup.php:253 +#: actions/editgroup.php:258 msgid "Could not update group." msgstr "No se pudo actualizar el grupo." -#: actions/editgroup.php:259 classes/User_group.php:433 +#: actions/editgroup.php:264 classes/User_group.php:478 msgid "Could not create aliases." msgstr "No fue posible crear alias." -#: actions/editgroup.php:269 +#: actions/editgroup.php:280 msgid "Options saved." msgstr "Se guardó Opciones." @@ -1590,7 +1624,7 @@ msgstr "Usuario ya está bloqueado del grupo." msgid "User is not a member of group." msgstr "Usuario no es miembro del grupo" -#: actions/groupblock.php:136 actions/groupmembers.php:316 +#: actions/groupblock.php:136 actions/groupmembers.php:323 msgid "Block user from group" msgstr "Bloquear usuario de grupo" @@ -1627,11 +1661,11 @@ msgstr "Sin ID." msgid "You must be logged in to edit a group." msgstr "Debes estar conectado para editar un grupo." -#: actions/groupdesignsettings.php:141 +#: actions/groupdesignsettings.php:144 msgid "Group design" msgstr "Diseño de grupo" -#: actions/groupdesignsettings.php:152 +#: actions/groupdesignsettings.php:155 msgid "" "Customize the way your group looks with a background image and a colour " "palette of your choice." @@ -1639,20 +1673,20 @@ msgstr "" "Personaliza el aspecto de tu grupo con una imagen de fondo y la paleta de " "colores que prefieras." -#: actions/groupdesignsettings.php:263 actions/userdesignsettings.php:186 +#: actions/groupdesignsettings.php:266 actions/userdesignsettings.php:186 #: lib/designsettings.php:391 lib/designsettings.php:413 msgid "Couldn't update your design." msgstr "No fue posible actualizar tu diseño." -#: actions/groupdesignsettings.php:308 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231 msgid "Design preferences saved." msgstr "Preferencias de diseño guardadas." -#: actions/grouplogo.php:139 actions/grouplogo.php:192 +#: actions/grouplogo.php:142 actions/grouplogo.php:195 msgid "Group logo" msgstr "Logo de grupo" -#: actions/grouplogo.php:150 +#: actions/grouplogo.php:153 #, php-format msgid "" "You can upload a logo image for your group. The maximum file size is %s." @@ -1660,57 +1694,57 @@ msgstr "" "Puedes subir una imagen de logo para tu grupo. El tamaño máximo del archivo " "debe ser %s." -#: actions/grouplogo.php:178 +#: actions/grouplogo.php:181 msgid "User without matching profile." msgstr "Usuario sin perfil coincidente." -#: actions/grouplogo.php:362 +#: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." msgstr "Elige un área cuadrada de la imagen para que sea tu logo." -#: actions/grouplogo.php:396 +#: actions/grouplogo.php:399 msgid "Logo updated." msgstr "Logo actualizado." -#: actions/grouplogo.php:398 +#: actions/grouplogo.php:401 msgid "Failed updating logo." msgstr "Error al actualizar el logo." -#: actions/groupmembers.php:93 lib/groupnav.php:92 +#: actions/groupmembers.php:100 lib/groupnav.php:92 #, php-format msgid "%s group members" msgstr "Miembros del grupo %s" -#: actions/groupmembers.php:96 +#: actions/groupmembers.php:103 #, php-format msgid "%1$s group members, page %2$d" msgstr "%1$s miembros de grupo, página %2$d" -#: actions/groupmembers.php:111 +#: actions/groupmembers.php:118 msgid "A list of the users in this group." msgstr "Lista de los usuarios en este grupo." -#: actions/groupmembers.php:175 lib/action.php:448 lib/groupnav.php:107 +#: actions/groupmembers.php:182 lib/groupnav.php:107 msgid "Admin" msgstr "Admin" -#: actions/groupmembers.php:348 lib/blockform.php:69 +#: actions/groupmembers.php:355 lib/blockform.php:69 msgid "Block" msgstr "Bloquear" -#: actions/groupmembers.php:443 +#: actions/groupmembers.php:450 msgid "Make user an admin of the group" msgstr "Convertir al usuario en administrador del grupo" -#: actions/groupmembers.php:475 +#: actions/groupmembers.php:482 msgid "Make Admin" msgstr "Convertir en administrador" -#: actions/groupmembers.php:475 +#: actions/groupmembers.php:482 msgid "Make this user an admin" msgstr "Convertir a este usuario en administrador" -#: actions/grouprss.php:133 +#: actions/grouprss.php:140 #, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "¡Actualizaciones de miembros de %1$s en %2$s!" @@ -1974,16 +2008,19 @@ msgstr "Mensaje Personal" 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:178 lib/noticeform.php:236 +#. TRANS: Send button for inviting friends +#: actions/invite.php:198 +#, fuzzy +msgctxt "BUTTON" msgid "Send" msgstr "Enviar" -#: actions/invite.php:226 +#: actions/invite.php:227 #, 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/invite.php:228 +#: actions/invite.php:229 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -2044,7 +2081,12 @@ msgstr "" msgid "You must be logged in to join a group." msgstr "Debes estar conectado para unirte a un grupo." -#: actions/joingroup.php:131 +#: actions/joingroup.php:88 actions/leavegroup.php:88 +#, fuzzy +msgid "No nickname or ID." +msgstr "Ningún apodo." + +#: actions/joingroup.php:141 #, php-format msgid "%1$s joined group %2$s" msgstr "%1$s se ha unido al grupo %2$" @@ -2053,11 +2095,11 @@ msgstr "%1$s se ha unido al grupo %2$" msgid "You must be logged in to leave a group." msgstr "Debes estar conectado para dejar un grupo." -#: actions/leavegroup.php:90 lib/command.php:265 +#: actions/leavegroup.php:100 lib/command.php:265 msgid "You are not a member of that group." msgstr "No eres miembro de este grupo." -#: actions/leavegroup.php:127 +#: actions/leavegroup.php:137 #, php-format msgid "%1$s left group %2$s" msgstr "%1$s ha dejado el grupo %2$s" @@ -2074,8 +2116,7 @@ msgstr "Nombre de usuario o contraseña incorrectos." msgid "Error setting user. You are probably not authorized." msgstr "Error al configurar el usuario. Posiblemente no tengas autorización." -#: actions/login.php:188 actions/login.php:241 lib/action.php:466 -#: lib/logingroupnav.php:79 +#: actions/login.php:188 actions/login.php:241 lib/logingroupnav.php:79 msgid "Login" msgstr "Inicio de sesión" @@ -2333,8 +2374,8 @@ msgstr "tipo de contenido " msgid "Only " msgstr "Sólo " -#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 -#: lib/api.php:1068 lib/api.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 +#: lib/apiaction.php:1068 lib/apiaction.php:1177 msgid "Not a supported data format." msgstr "No es un formato de dato soportado" @@ -2474,9 +2515,9 @@ msgstr "No se puede guardar la nueva contraseña." msgid "Password saved." msgstr "Se guardó Contraseña." -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:331 +#: actions/pathsadminpanel.php:59 msgid "Paths" -msgstr "" +msgstr "Rutas" #: actions/pathsadminpanel.php:70 msgid "Path and server settings for this StatusNet site." @@ -2507,7 +2548,6 @@ msgid "Invalid SSL server. The maximum length is 255 characters." msgstr "Servidor SSL no válido. La longitud máxima es de 255 caracteres." #: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58 -#: lib/adminpanelaction.php:311 msgid "Site" msgstr "Sitio" @@ -2521,7 +2561,7 @@ msgstr "" #: actions/pathsadminpanel.php:242 msgid "Path" -msgstr "" +msgstr "Ruta" #: actions/pathsadminpanel.php:242 #, fuzzy @@ -2683,7 +2723,7 @@ msgstr "" "1-64 letras en minúscula o números, sin signos de puntuación o espacios" #: actions/profilesettings.php:111 actions/register.php:448 -#: actions/showgroup.php:247 actions/tagother.php:104 +#: actions/showgroup.php:255 actions/tagother.php:104 #: lib/groupeditform.php:157 lib/userprofile.php:149 msgid "Full name" msgstr "Nombre completo" @@ -2711,7 +2751,7 @@ msgid "Bio" msgstr "Biografía" #: actions/profilesettings.php:132 actions/register.php:471 -#: actions/showgroup.php:256 actions/tagother.php:112 +#: actions/showgroup.php:264 actions/tagother.php:112 #: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:164 msgid "Location" @@ -2793,7 +2833,8 @@ msgstr "No se pudo guardar el perfil." msgid "Couldn't save tags." msgstr "No se pudo guardar las etiquetas." -#: actions/profilesettings.php:391 lib/adminpanelaction.php:137 +#. TRANS: Message after successful saving of administrative settings. +#: actions/profilesettings.php:391 lib/adminpanelaction.php:141 msgid "Settings saved." msgstr "Se guardó configuración." @@ -2806,31 +2847,31 @@ msgstr "Más allá del límite de páginas (%s)" msgid "Could not retrieve public stream." msgstr "No se pudo acceder a corriente pública." -#: actions/public.php:129 +#: actions/public.php:130 #, php-format msgid "Public timeline, page %d" msgstr "Línea temporal pública, página %d" -#: actions/public.php:131 lib/publicgroupnav.php:79 +#: actions/public.php:132 lib/publicgroupnav.php:79 msgid "Public timeline" msgstr "Línea temporal pública" -#: actions/public.php:159 +#: actions/public.php:160 #, fuzzy msgid "Public Stream Feed (RSS 1.0)" msgstr "Feed del flujo público" -#: actions/public.php:163 +#: actions/public.php:164 #, fuzzy msgid "Public Stream Feed (RSS 2.0)" msgstr "Feed del flujo público" -#: actions/public.php:167 +#: actions/public.php:168 #, fuzzy msgid "Public Stream Feed (Atom)" msgstr "Feed del flujo público" -#: actions/public.php:187 +#: actions/public.php:188 #, php-format msgid "" "This is the public timeline for %%site.name%% but no one has posted anything " @@ -2839,17 +2880,17 @@ msgstr "" "Esta es la línea temporal pública de %%site.name%%, pero aún no se ha " "publicado nada." -#: actions/public.php:190 +#: actions/public.php:191 msgid "Be the first to post!" msgstr "¡Sé la primera persona en publicar algo!" -#: actions/public.php:194 +#: actions/public.php:195 #, php-format msgid "" "Why not [register an account](%%action.register%%) and be the first to post!" msgstr "" -#: actions/public.php:241 +#: actions/public.php:242 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2858,7 +2899,7 @@ msgid "" "friends, family, and colleagues! ([Read more](%%doc.help%%))" msgstr "" -#: actions/public.php:246 +#: actions/public.php:247 #, fuzzy, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -3039,8 +3080,7 @@ msgstr "El código de invitación no es válido." msgid "Registration successful" msgstr "Registro exitoso." -#: actions/register.php:114 actions/register.php:503 lib/action.php:463 -#: lib/logingroupnav.php:85 +#: actions/register.php:114 actions/register.php:503 lib/logingroupnav.php:85 msgid "Register" msgstr "Registrarse" @@ -3226,7 +3266,7 @@ msgstr "No puedes repetir tus propios mensajes." msgid "You already repeated that notice." msgstr "Ya has repetido este mensaje." -#: actions/repeat.php:114 lib/noticelist.php:656 +#: actions/repeat.php:114 lib/noticelist.php:674 msgid "Repeated" msgstr "Repetido" @@ -3234,47 +3274,47 @@ msgstr "Repetido" msgid "Repeated!" msgstr "¡Repetido!" -#: actions/replies.php:125 actions/repliesrss.php:68 +#: actions/replies.php:126 actions/repliesrss.php:68 #: lib/personalgroupnav.php:105 #, php-format msgid "Replies to %s" msgstr "Respuestas a %s" -#: actions/replies.php:127 +#: actions/replies.php:128 #, php-format msgid "Replies to %1$s, page %2$d" msgstr "Respuestas a %1$s, página %2$d" -#: actions/replies.php:144 +#: actions/replies.php:145 #, fuzzy, php-format msgid "Replies feed for %s (RSS 1.0)" msgstr "Feed de avisos de %s" -#: actions/replies.php:151 +#: actions/replies.php:152 #, fuzzy, php-format msgid "Replies feed for %s (RSS 2.0)" msgstr "Feed de avisos de %s" -#: actions/replies.php:158 +#: actions/replies.php:159 #, php-format msgid "Replies feed for %s (Atom)" msgstr "Feed de avisos de %s" -#: actions/replies.php:198 +#: actions/replies.php:199 #, php-format msgid "" "This is the timeline showing replies to %1$s but %2$s hasn't received a " "notice to his attention yet." msgstr "" -#: actions/replies.php:203 +#: actions/replies.php:204 #, php-format msgid "" "You can engage other users in a conversation, subscribe to more people or " "[join groups](%%action.groups%%)." msgstr "" -#: actions/replies.php:205 +#: actions/replies.php:206 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) or [post something to his or her " @@ -3301,7 +3341,6 @@ msgid "User is already sandboxed." msgstr "El usuario te ha bloqueado." #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:336 msgid "Sessions" msgstr "Sesiones" @@ -3326,7 +3365,7 @@ msgid "Turn on debugging output for sessions." msgstr "" #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/useradminpanel.php:293 +#: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "Guardar la configuración del sitio" @@ -3357,7 +3396,7 @@ msgstr "Organización" msgid "Description" msgstr "Descripción" -#: actions/showapplication.php:192 actions/showgroup.php:429 +#: actions/showapplication.php:192 actions/showgroup.php:437 #: lib/profileaction.php:174 msgid "Statistics" msgstr "Estadísticas" @@ -3419,35 +3458,35 @@ msgstr "Avisos favoritos de %s" msgid "Could not retrieve favorite notices." msgstr "No se pudo recibir avisos favoritos." -#: actions/showfavorites.php:170 +#: actions/showfavorites.php:171 #, php-format msgid "Feed for favorites of %s (RSS 1.0)" msgstr "Feed de los amigos de %s" -#: actions/showfavorites.php:177 +#: actions/showfavorites.php:178 #, php-format msgid "Feed for favorites of %s (RSS 2.0)" msgstr "Feed de los amigos de %s" -#: actions/showfavorites.php:184 +#: actions/showfavorites.php:185 #, php-format msgid "Feed for favorites of %s (Atom)" msgstr "Feed de los amigos de %s" -#: actions/showfavorites.php:205 +#: actions/showfavorites.php:206 msgid "" "You haven't chosen any favorite notices yet. Click the fave button on " "notices you like to bookmark them for later or shed a spotlight on them." msgstr "" -#: actions/showfavorites.php:207 +#: actions/showfavorites.php:208 #, 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:211 +#: actions/showfavorites.php:212 #, php-format msgid "" "%s hasn't added any notices to his favorites yet. Why not [register an " @@ -3455,7 +3494,7 @@ msgid "" "would add to their favorites :)" msgstr "" -#: actions/showfavorites.php:242 +#: actions/showfavorites.php:243 msgid "This is a way to share what you like." msgstr "" @@ -3469,68 +3508,68 @@ msgstr "Grupo %s" msgid "%1$s group, page %2$d" msgstr "Miembros del grupo %s, página %d" -#: actions/showgroup.php:218 +#: actions/showgroup.php:226 msgid "Group profile" msgstr "Perfil del grupo" -#: actions/showgroup.php:263 actions/tagother.php:118 +#: actions/showgroup.php:271 actions/tagother.php:118 #: actions/userauthorization.php:175 lib/userprofile.php:177 msgid "URL" msgstr "URL" -#: actions/showgroup.php:274 actions/tagother.php:128 +#: actions/showgroup.php:282 actions/tagother.php:128 #: actions/userauthorization.php:187 lib/userprofile.php:194 msgid "Note" msgstr "Nota" -#: actions/showgroup.php:284 lib/groupeditform.php:184 +#: actions/showgroup.php:292 lib/groupeditform.php:184 msgid "Aliases" msgstr "Alias" -#: actions/showgroup.php:293 +#: actions/showgroup.php:301 msgid "Group actions" msgstr "Acciones del grupo" -#: actions/showgroup.php:328 +#: actions/showgroup.php:336 #, fuzzy, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Feed de avisos de grupo %s" -#: actions/showgroup.php:334 +#: actions/showgroup.php:342 #, fuzzy, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Feed de avisos de grupo %s" -#: actions/showgroup.php:340 +#: actions/showgroup.php:348 #, fuzzy, php-format msgid "Notice feed for %s group (Atom)" msgstr "Feed de avisos de grupo %s" -#: actions/showgroup.php:345 +#: actions/showgroup.php:353 #, php-format msgid "FOAF for %s group" msgstr "Bandeja de salida para %s" -#: actions/showgroup.php:381 actions/showgroup.php:438 lib/groupnav.php:91 +#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 #, fuzzy msgid "Members" msgstr "Miembros" -#: actions/showgroup.php:386 lib/profileaction.php:117 +#: actions/showgroup.php:394 lib/profileaction.php:117 #: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(Ninguno)" -#: actions/showgroup.php:392 +#: actions/showgroup.php:400 msgid "All members" msgstr "Todos los miembros" -#: actions/showgroup.php:432 +#: actions/showgroup.php:440 msgid "Created" msgstr "Creado" -#: actions/showgroup.php:448 +#: actions/showgroup.php:456 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3540,7 +3579,7 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showgroup.php:454 +#: actions/showgroup.php:462 #, fuzzy, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3551,7 +3590,7 @@ msgstr "" "**%s** es un grupo de usuarios en %%%%site.name%%%%, un servicio [micro-" "blogging](http://en.wikipedia.org/wiki/Micro-blogging) " -#: actions/showgroup.php:482 +#: actions/showgroup.php:490 msgid "Admins" msgstr "Administradores" @@ -4017,22 +4056,22 @@ msgstr "Jabber" msgid "SMS" msgstr "SMS" -#: actions/tag.php:68 +#: actions/tag.php:69 #, fuzzy, php-format msgid "Notices tagged with %1$s, page %2$d" msgstr "Usuarios auto marcados con %s - página %d" -#: actions/tag.php:86 +#: actions/tag.php:87 #, fuzzy, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Feed de avisos de %s" -#: actions/tag.php:92 +#: actions/tag.php:93 #, fuzzy, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Feed de avisos de %s" -#: actions/tag.php:98 +#: actions/tag.php:99 #, fuzzy, php-format msgid "Notice feed for tag %s (Atom)" msgstr "Feed de avisos de %s" @@ -4087,7 +4126,7 @@ msgstr "" msgid "No such tag." msgstr "No existe ese tag." -#: actions/twitapitrends.php:87 +#: actions/twitapitrends.php:85 msgid "API method under construction." msgstr "Método API en construcción." @@ -4119,70 +4158,72 @@ msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" -#: actions/useradminpanel.php:58 lib/adminpanelaction.php:321 -#: lib/personalgroupnav.php:115 +#. TRANS: User admin panel title +#: actions/useradminpanel.php:59 +#, fuzzy +msgctxt "TITLE" msgid "User" msgstr "Usuario" -#: actions/useradminpanel.php:69 +#: actions/useradminpanel.php:70 msgid "User settings for this StatusNet site." msgstr "Configuración de usuarios en este sitio StatusNet." -#: actions/useradminpanel.php:148 +#: actions/useradminpanel.php:149 msgid "Invalid bio limit. Must be numeric." msgstr "Límite para la bio inválido: Debe ser numérico." -#: actions/useradminpanel.php:154 +#: actions/useradminpanel.php:155 msgid "Invalid welcome text. Max length is 255 characters." msgstr "Texto de bienvenida inválido. La longitud máx. es de 255 caracteres." -#: actions/useradminpanel.php:164 +#: actions/useradminpanel.php:165 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "Suscripción predeterminada inválida : '%1$s' no es un usuario" -#: actions/useradminpanel.php:217 lib/accountsettingsaction.php:108 +#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Perfil" -#: actions/useradminpanel.php:221 +#: actions/useradminpanel.php:222 msgid "Bio Limit" msgstr "Límite de la bio" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:223 msgid "Maximum length of a profile bio in characters." msgstr "Longitud máxima de bio de perfil en caracteres." -#: actions/useradminpanel.php:230 +#: actions/useradminpanel.php:231 msgid "New users" msgstr "Nuevos usuarios" -#: actions/useradminpanel.php:234 +#: actions/useradminpanel.php:235 msgid "New user welcome" msgstr "Bienvenida a nuevos usuarios" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:236 msgid "Welcome text for new users (Max 255 chars)." msgstr "Texto de bienvenida para nuevos usuarios (máx. 255 caracteres)." -#: actions/useradminpanel.php:240 +#: actions/useradminpanel.php:241 msgid "Default subscription" msgstr "Suscripción predeterminada" -#: actions/useradminpanel.php:241 +#: actions/useradminpanel.php:242 msgid "Automatically subscribe new users to this user." msgstr "Suscribir automáticamente nuevos usuarios a este usuario." -#: actions/useradminpanel.php:250 +#: actions/useradminpanel.php:251 msgid "Invitations" msgstr "Invitaciones" -#: actions/useradminpanel.php:255 +#: actions/useradminpanel.php:256 msgid "Invitations enabled" msgstr "Invitaciones habilitadas" -#: actions/useradminpanel.php:257 +#: actions/useradminpanel.php:258 msgid "Whether to allow users to invite new users." msgstr "" @@ -4368,7 +4409,7 @@ msgstr "" msgid "Plugins" msgstr "Complementos" -#: actions/version.php:196 lib/action.php:747 +#: actions/version.php:196 lib/action.php:778 #, fuzzy msgid "Version" msgstr "Sesiones" @@ -4408,6 +4449,11 @@ msgstr "No es parte del grupo." msgid "Group leave failed." msgstr "Perfil de grupo" +#: classes/Local_group.php:41 +#, fuzzy +msgid "Could not update local group." +msgstr "No se pudo actualizar el grupo." + #: classes/Login_token.php:76 #, fuzzy, php-format msgid "Could not create login token for %s" @@ -4425,27 +4471,27 @@ msgstr "No se pudo insertar mensaje." msgid "Could not update message with new URI." msgstr "No se pudo actualizar mensaje con nuevo URI." -#: classes/Notice.php:157 +#: classes/Notice.php:172 #, php-format msgid "DB error inserting hashtag: %s" msgstr "Error de la BD al insertar la etiqueta clave: %s" -#: classes/Notice.php:222 +#: classes/Notice.php:239 msgid "Problem saving notice. Too long." msgstr "Ha habido un problema al guardar el mensaje. Es muy largo." -#: classes/Notice.php:226 +#: classes/Notice.php:243 msgid "Problem saving notice. Unknown user." msgstr "Ha habido un problema al guardar el mensaje. Usuario desconocido." -#: classes/Notice.php:231 +#: classes/Notice.php:248 msgid "" "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." -#: classes/Notice.php:237 +#: classes/Notice.php:254 #, fuzzy msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " @@ -4454,20 +4500,20 @@ msgstr "" "Demasiados avisos demasiado rápido; para y publicar nuevamente en unos " "minutos." -#: classes/Notice.php:243 +#: classes/Notice.php:260 msgid "You are banned from posting notices on this site." msgstr "Tienes prohibido publicar avisos en este sitio." -#: classes/Notice.php:309 classes/Notice.php:335 +#: classes/Notice.php:326 classes/Notice.php:352 msgid "Problem saving notice." msgstr "Hubo un problema al guardar el aviso." -#: classes/Notice.php:882 +#: classes/Notice.php:911 #, fuzzy msgid "Problem saving group inbox." msgstr "Hubo un problema al guardar el aviso." -#: classes/Notice.php:1407 +#: classes/Notice.php:1442 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -4498,20 +4544,30 @@ msgstr "No se pudo eliminar la suscripción." msgid "Couldn't delete subscription." msgstr "No se pudo eliminar la suscripción." -#: classes/User.php:372 +#: classes/User.php:373 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "Bienvenido a %1$s, @%2$s!" -#: classes/User_group.php:423 +#: classes/User_group.php:462 msgid "Could not create group." msgstr "No se pudo crear grupo." -#: classes/User_group.php:452 +#: classes/User_group.php:471 +#, fuzzy +msgid "Could not set group URI." +msgstr "No se pudo configurar miembros de grupo." + +#: classes/User_group.php:492 #, fuzzy msgid "Could not set group membership." msgstr "No se pudo configurar miembros de grupo." +#: classes/User_group.php:506 +#, fuzzy +msgid "Could not save local group info." +msgstr "No se ha podido guardar la suscripción." + #: lib/accountsettingsaction.php:108 msgid "Change your profile settings" msgstr "Cambia tus opciones de perfil" @@ -4553,120 +4609,190 @@ msgstr "Página sin título" msgid "Primary site navigation" msgstr "Navegación de sitio primario" +#. TRANS: Tooltip for main menu option "Personal" #: lib/action.php:439 -msgid "Home" -msgstr "Inicio" - -#: lib/action.php:439 +#, fuzzy +msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Perfil personal y línea de tiempo de amigos" -#: lib/action.php:441 +#: lib/action.php:442 +#, fuzzy +msgctxt "MENU" +msgid "Personal" +msgstr "Personal" + +#. TRANS: Tooltip for main menu option "Account" +#: lib/action.php:444 +#, fuzzy +msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Cambia tu correo electrónico, avatar, contraseña, perfil" -#: lib/action.php:444 -msgid "Connect" -msgstr "Conectarse" +#: lib/action.php:447 +#, fuzzy +msgctxt "MENU" +msgid "Account" +msgstr "Cuenta" -#: lib/action.php:444 +#. TRANS: Tooltip for main menu option "Services" +#: lib/action.php:450 +#, fuzzy +msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Conectar a los servicios" -#: lib/action.php:448 +#: lib/action.php:453 +#, fuzzy +msgctxt "MENU" +msgid "Connect" +msgstr "Conectarse" + +#. TRANS: Tooltip for menu option "Admin" +#: lib/action.php:457 +#, fuzzy +msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Cambiar la configuración del sitio" -#: lib/action.php:452 lib/subgroupnav.php:105 -msgid "Invite" -msgstr "Invitar" +#: lib/action.php:460 +#, fuzzy +msgctxt "MENU" +msgid "Admin" +msgstr "Admin" -#: lib/action.php:453 lib/subgroupnav.php:106 -#, php-format +#. TRANS: Tooltip for main menu option "Invite" +#: lib/action.php:464 +#, fuzzy, php-format +msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Invita a amigos y colegas a unirse a %s" -#: lib/action.php:458 -msgid "Logout" -msgstr "Salir" +#: lib/action.php:467 +#, fuzzy +msgctxt "MENU" +msgid "Invite" +msgstr "Invitar" -#: lib/action.php:458 +#. TRANS: Tooltip for main menu option "Logout" +#: lib/action.php:473 +#, fuzzy +msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Salir de sitio" -#: lib/action.php:463 +#: lib/action.php:476 +#, fuzzy +msgctxt "MENU" +msgid "Logout" +msgstr "Salir" + +#. TRANS: Tooltip for main menu option "Register" +#: lib/action.php:481 +#, fuzzy +msgctxt "TOOLTIP" msgid "Create an account" msgstr "Crear una cuenta" -#: lib/action.php:466 +#: lib/action.php:484 +#, fuzzy +msgctxt "MENU" +msgid "Register" +msgstr "Registrarse" + +#. TRANS: Tooltip for main menu option "Login" +#: lib/action.php:487 +#, fuzzy +msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Ingresar a sitio" -#: lib/action.php:469 lib/action.php:732 -msgid "Help" -msgstr "Ayuda" +#: lib/action.php:490 +#, fuzzy +msgctxt "MENU" +msgid "Login" +msgstr "Inicio de sesión" -#: lib/action.php:469 +#. TRANS: Tooltip for main menu option "Help" +#: lib/action.php:493 +#, fuzzy +msgctxt "TOOLTIP" msgid "Help me!" msgstr "Ayúdame!" -#: lib/action.php:472 lib/searchaction.php:127 -msgid "Search" -msgstr "Buscar" +#: lib/action.php:496 +#, fuzzy +msgctxt "MENU" +msgid "Help" +msgstr "Ayuda" -#: lib/action.php:472 +#. TRANS: Tooltip for main menu option "Search" +#: lib/action.php:499 +#, fuzzy +msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Buscar personas o texto" -#: lib/action.php:493 +#: lib/action.php:502 +#, fuzzy +msgctxt "MENU" +msgid "Search" +msgstr "Buscar" + +#. TRANS: DT element for site notice. String is hidden in default CSS. +#: lib/action.php:524 msgid "Site notice" msgstr "Aviso de sitio" -#: lib/action.php:559 +#: lib/action.php:590 msgid "Local views" msgstr "Vistas locales" -#: lib/action.php:625 +#: lib/action.php:656 msgid "Page notice" msgstr "Aviso de página" -#: lib/action.php:727 +#: lib/action.php:758 msgid "Secondary site navigation" msgstr "Navegación de sitio secundario" -#: lib/action.php:734 +#: lib/action.php:763 +msgid "Help" +msgstr "Ayuda" + +#: lib/action.php:765 msgid "About" msgstr "Acerca de" -#: lib/action.php:736 +#: lib/action.php:767 msgid "FAQ" msgstr "Preguntas Frecuentes" -#: lib/action.php:740 +#: lib/action.php:771 msgid "TOS" msgstr "" -#: lib/action.php:743 +#: lib/action.php:774 msgid "Privacy" msgstr "Privacidad" -#: lib/action.php:745 +#: lib/action.php:776 msgid "Source" msgstr "Fuente" -#: lib/action.php:749 +#: lib/action.php:780 msgid "Contact" msgstr "Ponerse en contacto" -#: lib/action.php:751 +#: lib/action.php:782 msgid "Badge" msgstr "Insignia" -#: lib/action.php:779 +#: lib/action.php:810 msgid "StatusNet software license" msgstr "Licencia de software de StatusNet" -#: lib/action.php:782 +#: lib/action.php:813 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4675,12 +4801,12 @@ msgstr "" "**%%site.name%%** es un servicio de microblogueo de [%%site.broughtby%%**](%%" "site.broughtbyurl%%)." -#: lib/action.php:784 +#: lib/action.php:815 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** es un servicio de microblogueo." -#: lib/action.php:786 +#: lib/action.php:817 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4691,112 +4817,165 @@ msgstr "" "disponible bajo la [GNU Affero General Public License](http://www.fsf.org/" "licensing/licenses/agpl-3.0.html)." -#: lib/action.php:801 +#: lib/action.php:832 msgid "Site content license" msgstr "Licencia de contenido del sitio" -#: lib/action.php:806 +#: lib/action.php:837 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:811 +#: lib/action.php:842 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:814 +#: lib/action.php:845 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" "Derechos de autor de contenido y datos por los colaboradores. Todos los " "derechos reservados." -#: lib/action.php:827 +#: lib/action.php:858 msgid "All " msgstr "Todo" -#: lib/action.php:833 +#: lib/action.php:864 msgid "license." msgstr "Licencia." -#: lib/action.php:1132 +#: lib/action.php:1163 msgid "Pagination" msgstr "Paginación" -#: lib/action.php:1141 +#: lib/action.php:1172 msgid "After" msgstr "Después" -#: lib/action.php:1149 +#: lib/action.php:1180 msgid "Before" msgstr "Antes" -#: lib/activity.php:382 +#: lib/activity.php:449 msgid "Can't handle remote content yet." msgstr "" -#: lib/activity.php:410 +#: lib/activity.php:477 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activity.php:414 +#: lib/activity.php:481 msgid "Can't handle embedded Base64 content yet." msgstr "" -#: lib/adminpanelaction.php:96 +#. TRANS: Client error message +#: lib/adminpanelaction.php:98 msgid "You cannot make changes to this site." msgstr "No puedes hacer cambios a este sitio." -#: lib/adminpanelaction.php:107 +#. TRANS: Client error message +#: lib/adminpanelaction.php:110 #, fuzzy msgid "Changes to that panel are not allowed." msgstr "Registro de usuario no permitido." -#: lib/adminpanelaction.php:206 +#. TRANS: Client error message +#: lib/adminpanelaction.php:211 #, fuzzy msgid "showForm() not implemented." msgstr "Todavía no se implementa comando." -#: lib/adminpanelaction.php:235 +#. TRANS: Client error message +#: lib/adminpanelaction.php:241 #, fuzzy msgid "saveSettings() not implemented." msgstr "Todavía no se implementa comando." -#: lib/adminpanelaction.php:258 +#. TRANS: Client error message +#: lib/adminpanelaction.php:265 #, fuzzy msgid "Unable to delete design setting." msgstr "¡No se pudo guardar tu configuración de Twitter!" -#: lib/adminpanelaction.php:312 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:330 msgid "Basic site configuration" msgstr "Configuración básica del sitio" -#: lib/adminpanelaction.php:317 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:332 +#, fuzzy +msgctxt "MENU" +msgid "Site" +msgstr "Sitio" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:338 msgid "Design configuration" msgstr "Configuración del diseño" -#: lib/adminpanelaction.php:322 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:340 +#, fuzzy +msgctxt "MENU" +msgid "Design" +msgstr "Diseño" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:346 msgid "User configuration" msgstr "Configuración de usuario" -#: lib/adminpanelaction.php:327 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:348 +#, fuzzy +msgctxt "MENU" +msgid "User" +msgstr "Usuario" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:354 msgid "Access configuration" msgstr "Configuración de acceso" -#: lib/adminpanelaction.php:332 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:356 +#, fuzzy +msgctxt "MENU" +msgid "Access" +msgstr "Acceder" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:362 #, fuzzy msgid "Paths configuration" msgstr "SMS confirmación" -#: lib/adminpanelaction.php:337 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:364 +#, fuzzy +msgctxt "MENU" +msgid "Paths" +msgstr "Rutas" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:370 msgid "Sessions configuration" msgstr "Configuración de sesiones" -#: lib/apiauth.php:95 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:372 +#, fuzzy +msgctxt "MENU" +msgid "Sessions" +msgstr "Sesiones" + +#: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." msgstr "" -#: lib/apiauth.php:273 +#: lib/apiauth.php:272 #, php-format msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" msgstr "" @@ -4889,11 +5068,11 @@ msgstr "Mensajes donde aparece este adjunto" msgid "Tags for this attachment" msgstr "Etiquetas de este archivo adjunto" -#: lib/authenticationplugin.php:218 lib/authenticationplugin.php:223 +#: lib/authenticationplugin.php:220 lib/authenticationplugin.php:225 msgid "Password changing failed" msgstr "El cambio de contraseña ha fallado" -#: lib/authenticationplugin.php:233 +#: lib/authenticationplugin.php:235 #, fuzzy msgid "Password changing is not allowed" msgstr "Cambio de contraseña " @@ -5171,19 +5350,19 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:136 +#: lib/common.php:148 msgid "No configuration file found. " msgstr "Ningún archivo de configuración encontrado. " -#: lib/common.php:137 +#: lib/common.php:149 msgid "I looked for configuration files in the following places: " msgstr "" -#: lib/common.php:139 +#: lib/common.php:151 msgid "You may wish to run the installer to fix this." msgstr "" -#: lib/common.php:140 +#: lib/common.php:152 msgid "Go to the installer." msgstr "Ir al instalador." @@ -5375,23 +5554,23 @@ msgstr "Error del sistema al cargar el archivo." msgid "Not an image or corrupt file." msgstr "No es una imagen o es un fichero corrupto." -#: lib/imagefile.php:105 +#: lib/imagefile.php:109 msgid "Unsupported image file format." msgstr "Formato de imagen no soportado." -#: lib/imagefile.php:118 +#: lib/imagefile.php:122 msgid "Lost our file." msgstr "Se perdió nuestro archivo." -#: lib/imagefile.php:150 lib/imagefile.php:197 +#: lib/imagefile.php:166 lib/imagefile.php:231 msgid "Unknown file type" msgstr "Tipo de archivo desconocido" -#: lib/imagefile.php:217 +#: lib/imagefile.php:251 msgid "MB" msgstr "MB" -#: lib/imagefile.php:219 +#: lib/imagefile.php:253 msgid "kB" msgstr "kB" @@ -5702,6 +5881,12 @@ msgstr "Para" msgid "Available characters" msgstr "Caracteres disponibles" +#: lib/messageform.php:178 lib/noticeform.php:236 +#, fuzzy +msgctxt "Send button for sending notice" +msgid "Send" +msgstr "Enviar" + #: lib/noticeform.php:160 #, fuzzy msgid "Send a notice" @@ -5761,24 +5946,24 @@ msgstr "" msgid "at" msgstr "en" -#: lib/noticelist.php:558 +#: lib/noticelist.php:566 msgid "in context" msgstr "en contexto" -#: lib/noticelist.php:583 +#: lib/noticelist.php:601 #, fuzzy msgid "Repeated by" msgstr "Crear" -#: lib/noticelist.php:610 +#: lib/noticelist.php:628 msgid "Reply to this notice" msgstr "Responder este aviso." -#: lib/noticelist.php:611 +#: lib/noticelist.php:629 msgid "Reply" msgstr "Responder" -#: lib/noticelist.php:655 +#: lib/noticelist.php:673 #, fuzzy msgid "Notice repeated" msgstr "Aviso borrado" @@ -5827,6 +6012,10 @@ msgstr "Respuestas" msgid "Favorites" msgstr "Favoritos" +#: lib/personalgroupnav.php:115 +msgid "User" +msgstr "Usuario" + #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "Bandeja de Entrada" @@ -5921,7 +6110,7 @@ msgstr "Responder este aviso." msgid "Repeat this notice" msgstr "Responder este aviso." -#: lib/router.php:665 +#: lib/router.php:668 msgid "No single user defined for single-user mode." msgstr "" @@ -5944,6 +6133,10 @@ msgstr "Buscar" msgid "Keyword(s)" msgstr "" +#: lib/searchaction.php:127 +msgid "Search" +msgstr "Buscar" + #: lib/searchaction.php:162 msgid "Search help" msgstr "Buscar ayuda" @@ -5997,6 +6190,15 @@ msgstr "Personas suscritas a %s" msgid "Groups %s is a member of" msgstr "%s es miembro de los grupos" +#: lib/subgroupnav.php:105 +msgid "Invite" +msgstr "Invitar" + +#: 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" + #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -6069,47 +6271,47 @@ msgstr "Mensaje" msgid "Moderate" msgstr "Moderar" -#: lib/util.php:952 +#: lib/util.php:1013 msgid "a few seconds ago" msgstr "hace unos segundos" -#: lib/util.php:954 +#: lib/util.php:1015 msgid "about a minute ago" msgstr "hace un minuto" -#: lib/util.php:956 +#: lib/util.php:1017 #, php-format msgid "about %d minutes ago" msgstr "hace %d minutos" -#: lib/util.php:958 +#: lib/util.php:1019 msgid "about an hour ago" msgstr "hace una hora" -#: lib/util.php:960 +#: lib/util.php:1021 #, php-format msgid "about %d hours ago" msgstr "hace %d horas" -#: lib/util.php:962 +#: lib/util.php:1023 msgid "about a day ago" msgstr "hace un día" -#: lib/util.php:964 +#: lib/util.php:1025 #, php-format msgid "about %d days ago" msgstr "hace %d días" -#: lib/util.php:966 +#: lib/util.php:1027 msgid "about a month ago" msgstr "hace un mes" -#: lib/util.php:968 +#: lib/util.php:1029 #, php-format msgid "about %d months ago" msgstr "hace %d meses" -#: lib/util.php:970 +#: lib/util.php:1031 msgid "about a year ago" msgstr "hace un año" diff --git a/locale/fa/LC_MESSAGES/statusnet.po b/locale/fa/LC_MESSAGES/statusnet.po index 600323e436..bb453f582b 100644 --- a/locale/fa/LC_MESSAGES/statusnet.po +++ b/locale/fa/LC_MESSAGES/statusnet.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-02-24 23:49+0000\n" -"PO-Revision-Date: 2010-02-24 23:50:38+0000\n" +"POT-Creation-Date: 2010-03-02 21:02+0000\n" +"PO-Revision-Date: 2010-03-02 21:02:45+0000\n" "Last-Translator: Ahmad Sufi Mahmudi\n" "Language-Team: Persian\n" "MIME-Version: 1.0\n" @@ -20,70 +20,77 @@ msgstr "" "X-Language-Code: fa\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: MediaWiki 1.17alpha (r62925); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" -#: actions/accessadminpanel.php:54 lib/adminpanelaction.php:326 +#. TRANS: Page title +#: actions/accessadminpanel.php:55 msgid "Access" msgstr "دسترسی" -#: actions/accessadminpanel.php:65 +#. TRANS: Page notice +#: actions/accessadminpanel.php:67 #, fuzzy msgid "Site access settings" msgstr "تنظیمات دیگر" -#: actions/accessadminpanel.php:158 +#. TRANS: Form legend for registration form. +#: actions/accessadminpanel.php:161 #, fuzzy msgid "Registration" msgstr "ثبت نام" -#: actions/accessadminpanel.php:161 -msgid "Private" -msgstr "خصوصی" - -#: actions/accessadminpanel.php:163 +#. TRANS: Checkbox instructions for admin setting "Private" +#: actions/accessadminpanel.php:165 msgid "Prohibit anonymous users (not logged in) from viewing site?" msgstr "" +#. TRANS: Checkbox label for prohibiting anonymous users from viewing site. #: actions/accessadminpanel.php:167 -msgid "Invite only" -msgstr "فقط دعوت کردن" +#, fuzzy +msgctxt "LABEL" +msgid "Private" +msgstr "خصوصی" -#: actions/accessadminpanel.php:169 +#. TRANS: Checkbox instructions for admin setting "Invite only" +#: actions/accessadminpanel.php:174 msgid "Make registration invitation only." msgstr "تنها آماده کردن دعوت نامه های ثبت نام." -#: actions/accessadminpanel.php:173 -msgid "Closed" -msgstr "مسدود" +#. TRANS: Checkbox label for configuring site as invite only. +#: actions/accessadminpanel.php:176 +msgid "Invite only" +msgstr "فقط دعوت کردن" -#: actions/accessadminpanel.php:175 +#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations) +#: actions/accessadminpanel.php:183 msgid "Disable new registrations." msgstr "غیر فعال کردن نام نوبسی جدید" -#: actions/accessadminpanel.php:189 actions/designadminpanel.php:586 -#: actions/emailsettings.php:195 actions/imsettings.php:163 -#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 -#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 -#: actions/siteadminpanel.php:336 actions/smssettings.php:181 -#: actions/subscriptions.php:208 actions/tagother.php:154 -#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 -#: lib/applicationeditform.php:334 lib/designsettings.php:256 -#: lib/groupeditform.php:202 -msgid "Save" -msgstr "ذخیره‌کردن" +#. TRANS: Checkbox label for disabling new user registrations. +#: actions/accessadminpanel.php:185 +msgid "Closed" +msgstr "مسدود" -#: actions/accessadminpanel.php:189 +#. TRANS: Title / tooltip for button to save access settings in site admin panel +#: actions/accessadminpanel.php:202 #, fuzzy msgid "Save access settings" msgstr "تنظیمات چهره" -#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 -#: actions/showfavorites.php:137 actions/tag.php:51 +#: actions/accessadminpanel.php:203 +#, fuzzy +msgctxt "BUTTON" +msgid "Save" +msgstr "ذخیره‌کردن" + +#. TRANS: Server error when page not found (404) +#: actions/all.php:64 actions/public.php:98 actions/replies.php:93 +#: actions/showfavorites.php:138 actions/tag.php:52 msgid "No such page" msgstr "چنین صفحه‌ای وجود ندارد" -#: actions/all.php:74 actions/allrss.php:68 +#: actions/all.php:75 actions/allrss.php:68 #: actions/apiaccountupdatedeliverydevice.php:113 #: actions/apiaccountupdateprofile.php:105 #: actions/apiaccountupdateprofilebackgroundimage.php:116 @@ -97,51 +104,59 @@ msgstr "چنین صفحه‌ای وجود ندارد" #: actions/apitimelinehome.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/otp.php:76 -#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154 -#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 -#: actions/showfavorites.php:105 actions/userbyid.php:74 -#: actions/usergroups.php:91 actions/userrss.php:38 actions/xrds.php:71 -#: lib/command.php:163 lib/command.php:302 lib/command.php:355 -#: lib/command.php:401 lib/command.php:462 lib/command.php:518 -#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 +#: actions/hcard.php:67 actions/microsummary.php:62 actions/newmessage.php:116 +#: actions/otp.php:76 actions/remotesubscribe.php:145 +#: actions/remotesubscribe.php:154 actions/replies.php:73 +#: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/xrds.php:71 lib/command.php:163 lib/command.php:302 +#: lib/command.php:355 lib/command.php:401 lib/command.php:462 +#: lib/command.php:518 lib/galleryaction.php:59 lib/mailbox.php:82 +#: lib/profileaction.php:77 msgid "No such user." msgstr "چنین کاربری وجود ندارد." -#: actions/all.php:84 +#. TRANS: Page title. %1$s is user nickname, %2$d is page number +#: actions/all.php:86 #, fuzzy, php-format msgid "%1$s and friends, page %2$d" msgstr "%s کاربران مسدود شده، صفحه‌ی %d" -#: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 +#. TRANS: Page title. %1$s is user nickname +#. TRANS: H1 text. %1$s is user nickname +#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" msgstr "%s و دوستان" -#: actions/all.php:99 +#. TRANS: %1$s is user nickname +#: actions/all.php:103 #, php-format msgid "Feed for friends of %s (RSS 1.0)" msgstr "خوراک دوستان %s (RSS 1.0)" -#: actions/all.php:107 +#. TRANS: %1$s is user nickname +#: actions/all.php:112 #, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "خوراک دوستان %s (RSS 2.0)" -#: actions/all.php:115 +#. TRANS: %1$s is user nickname +#: actions/all.php:121 #, php-format msgid "Feed for friends of %s (Atom)" msgstr "خوراک دوستان %s (Atom)" -#: actions/all.php:127 +#. TRANS: %1$s is user nickname +#: actions/all.php:134 #, php-format msgid "" "This is the timeline for %s and friends but no one has posted anything yet." msgstr "این خط‌زمانی %s و دوستانش است، اما هیچ‌یک تاکنون چیزی پست نکرده‌اند." -#: actions/all.php:132 +#: actions/all.php:139 #, php-format msgid "" "Try subscribing to more people, [join a group](%%action.groups%%) or post " @@ -150,7 +165,8 @@ msgstr "" "پیگیری افراد بیش‌تری بشوید [به یک گروه بپیوندید](%%action.groups%%) یا خودتان " "چیزی را ارسال کنید." -#: actions/all.php:134 +#. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@" +#: actions/all.php:142 #, fuzzy, php-format msgid "" "You can try to [nudge %1$s](../%2$s) from his profile or [post something to " @@ -159,7 +175,7 @@ msgstr "" "اولین کسی باشید که در [این موضوع](%%%%action.newnotice%%%%?status_textarea=%" "s) پیام می‌فرستد." -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211 +#: actions/all.php:145 actions/replies.php:210 actions/showstream.php:211 #, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " @@ -168,7 +184,8 @@ msgstr "" "چرا [ثبت نام](%%%%action.register%%%%) نمی‌کنید و سپس با فرستادن پیام توجه %s " "را جلب کنید." -#: actions/all.php:165 +#. TRANS: H1 text +#: actions/all.php:174 msgid "You and friends" msgstr "شما و دوستان" @@ -186,20 +203,20 @@ msgstr "به روز رسانی از %1$ و دوستان در %2$" #: actions/apiaccountverifycredentials.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:128 actions/apigroupcreate.php:136 +#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: actions/apigroupleave.php:141 actions/apigrouplist.php:132 #: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 #: actions/apigroupshow.php:115 actions/apihelptest.php:88 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 -#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184 +#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 #: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:207 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 msgid "API method not found." msgstr "رابط مورد نظر پیدا نشد." @@ -231,8 +248,9 @@ msgstr "نمی‌توان کاربر را به‌هنگام‌سازی کرد." #: actions/apiaccountupdateprofilebackgroundimage.php:194 #: actions/apiaccountupdateprofilecolors.php:185 #: 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 +#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 +#: actions/replies.php:80 actions/usergroups.php:98 lib/galleryaction.php:66 +#: lib/profileaction.php:84 msgid "User has no profile." msgstr "کاربر هیچ شناس‌نامه‌ای ندارد." @@ -257,7 +275,7 @@ msgstr "" #: actions/apiaccountupdateprofilebackgroundimage.php:146 #: actions/apiaccountupdateprofilecolors.php:164 #: actions/apiaccountupdateprofilecolors.php:174 -#: actions/groupdesignsettings.php:287 actions/groupdesignsettings.php:297 +#: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300 #: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 #: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 msgid "Unable to save your design settings." @@ -370,68 +388,68 @@ msgstr "نمی‌توان کاربر منبع را تعیین کرد." msgid "Could not find target user." msgstr "نمی‌توان کاربر هدف را پیدا کرد." -#: actions/apigroupcreate.php:164 actions/editgroup.php:182 +#: actions/apigroupcreate.php:166 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:215 #: actions/register.php:205 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "لقب باید شامل حروف کوچک و اعداد و بدون فاصله باشد." -#: actions/apigroupcreate.php:173 actions/editgroup.php:186 +#: actions/apigroupcreate.php:175 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:238 #: actions/register.php:208 msgid "Nickname already in use. Try another one." msgstr "این لقب در حال حاضر ثبت شده است. لطفا یکی دیگر انتخاب کنید." -#: actions/apigroupcreate.php:180 actions/editgroup.php:189 +#: actions/apigroupcreate.php:182 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:218 #: actions/register.php:210 msgid "Not a valid nickname." msgstr "لقب نا معتبر." -#: actions/apigroupcreate.php:196 actions/editapplication.php:215 -#: actions/editgroup.php:195 actions/newapplication.php:203 +#: actions/apigroupcreate.php:198 actions/editapplication.php:215 +#: actions/editgroup.php:199 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:217 msgid "Homepage is not a valid URL." msgstr "برگهٔ آغازین یک نشانی معتبر نیست." -#: actions/apigroupcreate.php:205 actions/editgroup.php:198 +#: actions/apigroupcreate.php:207 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:225 #: actions/register.php:220 msgid "Full name is too long (max 255 chars)." msgstr "نام کامل طولانی است (۲۵۵ حرف در حالت بیشینه(." -#: actions/apigroupcreate.php:213 actions/editapplication.php:190 +#: actions/apigroupcreate.php:215 actions/editapplication.php:190 #: actions/newapplication.php:172 #, php-format msgid "Description is too long (max %d chars)." msgstr "توصیف بسیار زیاد است (حداکثر %d حرف)." -#: actions/apigroupcreate.php:224 actions/editgroup.php:204 +#: actions/apigroupcreate.php:226 actions/editgroup.php:208 #: actions/newgroup.php:148 actions/profilesettings.php:232 #: actions/register.php:227 msgid "Location is too long (max 255 chars)." msgstr "مکان طولانی است (حداکثر ۲۵۵ حرف)" -#: actions/apigroupcreate.php:243 actions/editgroup.php:215 +#: actions/apigroupcreate.php:245 actions/editgroup.php:219 #: actions/newgroup.php:159 #, php-format msgid "Too many aliases! Maximum %d." msgstr "نام‌های مستعار بسیار زیاد هستند! حداکثر %d." -#: actions/apigroupcreate.php:264 actions/editgroup.php:224 +#: actions/apigroupcreate.php:266 actions/editgroup.php:228 #: actions/newgroup.php:168 #, php-format msgid "Invalid alias: \"%s\"" msgstr "نام‌مستعار غیر مجاز: «%s»" -#: actions/apigroupcreate.php:273 actions/editgroup.php:228 +#: actions/apigroupcreate.php:275 actions/editgroup.php:232 #: actions/newgroup.php:172 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "نام‌مستعار «%s» ازپیش گرفته‌شده‌است. یکی دیگر را امتحان کنید." -#: actions/apigroupcreate.php:286 actions/editgroup.php:234 +#: actions/apigroupcreate.php:288 actions/editgroup.php:238 #: actions/newgroup.php:178 msgid "Alias can't be the same as nickname." msgstr "نام و نام مستعار شما نمی تواند یکی باشد ." @@ -442,15 +460,15 @@ msgstr "نام و نام مستعار شما نمی تواند یکی باشد . msgid "Group not found!" msgstr "گروه یافت نشد!" -#: actions/apigroupjoin.php:110 actions/joingroup.php:90 +#: actions/apigroupjoin.php:110 actions/joingroup.php:100 msgid "You are already a member of that group." msgstr "شما از پیش یک عضو این گروه هستید." -#: actions/apigroupjoin.php:119 actions/joingroup.php:95 lib/command.php:221 +#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:221 msgid "You have been blocked from that group by the admin." msgstr "دسترسی شما به گروه توسط مدیر آن محدود شده است." -#: actions/apigroupjoin.php:138 actions/joingroup.php:124 +#: actions/apigroupjoin.php:138 actions/joingroup.php:134 #, fuzzy, php-format msgid "Could not join user %1$s to group %2$s." msgstr "عضویت %s در گروه %s نا موفق بود." @@ -459,7 +477,7 @@ msgstr "عضویت %s در گروه %s نا موفق بود." msgid "You are not a member of this group." msgstr "شما یک عضو این گروه نیستید." -#: actions/apigroupleave.php:124 actions/leavegroup.php:119 +#: actions/apigroupleave.php:124 actions/leavegroup.php:129 #, fuzzy, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "خارج شدن %s از گروه %s نا موفق بود" @@ -491,7 +509,7 @@ msgstr "اندازه‌ی نادرست" #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 #: actions/deletenotice.php:157 actions/disfavor.php:74 #: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54 -#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupblock.php:66 actions/grouplogo.php:312 #: actions/groupunblock.php:66 actions/imsettings.php:206 #: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 @@ -533,7 +551,7 @@ msgstr "" #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:103 actions/editapplication.php:139 -#: actions/emailsettings.php:256 actions/grouplogo.php:319 +#: actions/emailsettings.php:256 actions/grouplogo.php:322 #: actions/imsettings.php:220 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 #: actions/smssettings.php:248 lib/designsettings.php:304 @@ -556,13 +574,13 @@ msgid "" "give access to your %4$s account to third parties you trust." msgstr "" -#: actions/apioauthauthorize.php:310 lib/action.php:441 +#: actions/apioauthauthorize.php:310 msgid "Account" msgstr "حساب کاربری" #: actions/apioauthauthorize.php:313 actions/login.php:230 #: actions/profilesettings.php:106 actions/register.php:424 -#: actions/showgroup.php:236 actions/tagother.php:94 +#: actions/showgroup.php:244 actions/tagother.php:94 #: actions/userauthorization.php:145 lib/groupeditform.php:152 #: lib/userprofile.php:131 msgid "Nickname" @@ -646,12 +664,12 @@ msgid "%1$s updates favorited by %2$s / %2$s." msgstr "%s به روز رسانی های دوست داشتنی %s / %s" #: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:131 actions/userrss.php:90 +#: actions/grouprss.php:138 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "خط زمانی %s" -#: actions/apitimelinegroup.php:114 actions/apitimelineuser.php:126 +#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 #: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" @@ -687,7 +705,7 @@ msgstr "" msgid "Repeats of %s" msgstr "تکرار %s" -#: actions/apitimelinetag.php:102 actions/tag.php:66 +#: actions/apitimelinetag.php:102 actions/tag.php:67 #, php-format msgid "Notices tagged with %s" msgstr "پیام‌هایی که با %s نشانه گزاری شده اند." @@ -708,8 +726,7 @@ msgstr "چنین پیوستی وجود ندارد." #: actions/avatarbynickname.php:59 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/leavegroup.php:76 -#: actions/showgroup.php:121 +#: actions/grouprss.php:91 actions/showgroup.php:121 msgid "No nickname." msgstr "بدون لقب." @@ -721,7 +738,7 @@ msgstr "بدون اندازه." msgid "Invalid size." msgstr "اندازه‌ی نادرست" -#: actions/avatarsettings.php:67 actions/showgroup.php:221 +#: actions/avatarsettings.php:67 actions/showgroup.php:229 #: lib/accountsettingsaction.php:112 msgid "Avatar" msgstr "چهره" @@ -739,30 +756,30 @@ msgid "User without matching profile" msgstr "کاربر بدون مشخصات" #: actions/avatarsettings.php:119 actions/avatarsettings.php:197 -#: actions/grouplogo.php:251 +#: actions/grouplogo.php:254 msgid "Avatar settings" msgstr "تنظیمات چهره" #: actions/avatarsettings.php:127 actions/avatarsettings.php:205 -#: actions/grouplogo.php:199 actions/grouplogo.php:259 +#: actions/grouplogo.php:202 actions/grouplogo.php:262 msgid "Original" msgstr "اصلی" #: actions/avatarsettings.php:142 actions/avatarsettings.php:217 -#: actions/grouplogo.php:210 actions/grouplogo.php:271 +#: actions/grouplogo.php:213 actions/grouplogo.php:274 msgid "Preview" msgstr "پیش‌نمایش" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:637 +#: lib/deleteuserform.php:66 lib/noticelist.php:655 msgid "Delete" msgstr "حذف" -#: actions/avatarsettings.php:166 actions/grouplogo.php:233 +#: actions/avatarsettings.php:166 actions/grouplogo.php:236 msgid "Upload" msgstr "پایین‌گذاری" -#: actions/avatarsettings.php:231 actions/grouplogo.php:286 +#: actions/avatarsettings.php:231 actions/grouplogo.php:289 msgid "Crop" msgstr "برش" @@ -770,7 +787,7 @@ msgstr "برش" msgid "Pick a square area of the image to be your avatar" msgstr "یک مربع از عکس خود را انتخاب کنید تا چهره‌ی شما باشد." -#: actions/avatarsettings.php:343 actions/grouplogo.php:377 +#: actions/avatarsettings.php:343 actions/grouplogo.php:380 msgid "Lost our file data." msgstr "فایل اطلاعات خود را گم کرده ایم." @@ -806,22 +823,22 @@ msgstr "" "نخواهید شد" #: actions/block.php:143 actions/deleteapplication.php:153 -#: actions/deletenotice.php:145 actions/deleteuser.php:147 +#: actions/deletenotice.php:145 actions/deleteuser.php:150 #: actions/groupblock.php:178 msgid "No" msgstr "خیر" -#: actions/block.php:143 actions/deleteuser.php:147 +#: actions/block.php:143 actions/deleteuser.php:150 msgid "Do not block this user" msgstr "کاربر را مسدود نکن" #: actions/block.php:144 actions/deleteapplication.php:158 -#: actions/deletenotice.php:146 actions/deleteuser.php:148 +#: actions/deletenotice.php:146 actions/deleteuser.php:151 #: actions/groupblock.php:179 lib/repeatform.php:132 msgid "Yes" msgstr "بله" -#: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:355 lib/blockform.php:80 msgid "Block this user" msgstr "کاربر را مسدود کن" @@ -829,39 +846,43 @@ msgstr "کاربر را مسدود کن" msgid "Failed to save block information." msgstr "" -#: actions/blockedfromgroup.php:80 actions/editgroup.php:96 -#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/groupblock.php:86 -#: actions/groupbyid.php:83 actions/groupdesignsettings.php:97 -#: actions/grouplogo.php:99 actions/groupmembers.php:83 -#: actions/grouprss.php:98 actions/groupunblock.php:86 -#: actions/joingroup.php:83 actions/leavegroup.php:83 actions/makeadmin.php:86 -#: actions/showgroup.php:137 lib/command.php:212 lib/command.php:260 +#: actions/blockedfromgroup.php:80 actions/blockedfromgroup.php:87 +#: actions/editgroup.php:100 actions/foafgroup.php:44 actions/foafgroup.php:62 +#: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:100 actions/grouplogo.php:102 +#: actions/groupmembers.php:83 actions/groupmembers.php:90 +#: actions/grouprss.php:98 actions/grouprss.php:105 +#: actions/groupunblock.php:86 actions/joingroup.php:82 +#: actions/joingroup.php:93 actions/leavegroup.php:82 +#: actions/leavegroup.php:93 actions/makeadmin.php:86 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:212 +#: lib/command.php:260 msgid "No such group." msgstr "چنین گروهی وجود ندارد." -#: actions/blockedfromgroup.php:90 +#: actions/blockedfromgroup.php:97 #, php-format msgid "%s blocked profiles" msgstr "%s کاربران مسدود شده" -#: actions/blockedfromgroup.php:93 +#: actions/blockedfromgroup.php:100 #, fuzzy, php-format msgid "%1$s blocked profiles, page %2$d" msgstr "%s کاربران مسدود شده، صفحه‌ی %d" -#: actions/blockedfromgroup.php:108 +#: actions/blockedfromgroup.php:115 msgid "A list of the users blocked from joining this group." msgstr "فهرستی از افراد مسدود شده در پیوستن به این گروه." -#: actions/blockedfromgroup.php:281 +#: actions/blockedfromgroup.php:288 msgid "Unblock user from group" msgstr "آزاد کردن کاربر در پیوستن به گروه" -#: actions/blockedfromgroup.php:313 lib/unblockform.php:69 +#: actions/blockedfromgroup.php:320 lib/unblockform.php:69 msgid "Unblock" msgstr "آزاد سازی" -#: actions/blockedfromgroup.php:313 lib/unblockform.php:80 +#: actions/blockedfromgroup.php:320 lib/unblockform.php:80 msgid "Unblock this user" msgstr "آزاد سازی کاربر" @@ -940,7 +961,7 @@ msgstr "شما یک عضو این گروه نیستید." #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1197 +#: lib/action.php:1228 msgid "There was a problem with your session token." msgstr "" @@ -969,12 +990,13 @@ msgstr "این پیام را پاک نکن" msgid "Delete this application" msgstr "این پیام را پاک کن" +#. TRANS: Client error message #: 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:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 -#: lib/adminpanelaction.php:72 lib/profileformaction.php:63 +#: lib/adminpanelaction.php:73 lib/profileformaction.php:63 #: lib/settingsaction.php:72 msgid "Not logged in." msgstr "شما به سیستم وارد نشده اید." @@ -1003,7 +1025,7 @@ msgstr "آیا اطمینان دارید که می‌خواهید این پیا msgid "Do not delete this notice" msgstr "این پیام را پاک نکن" -#: actions/deletenotice.php:146 lib/noticelist.php:637 +#: actions/deletenotice.php:146 lib/noticelist.php:655 msgid "Delete this notice" msgstr "این پیام را پاک کن" @@ -1019,7 +1041,7 @@ msgstr "شما فقط می‌توانید کاربران محلی را پاک ک msgid "Delete user" msgstr "حذف کاربر" -#: actions/deleteuser.php:135 +#: actions/deleteuser.php:136 msgid "" "Are you sure you want to delete this user? This will clear all data about " "the user from the database, without a backup." @@ -1027,12 +1049,12 @@ msgstr "" "آیا مطمئن هستید که می‌خواهید این کاربر را پاک کنید؟ با این کار تمام اطلاعات " "پاک و بدون برگشت خواهند بود." -#: actions/deleteuser.php:148 lib/deleteuserform.php:77 +#: actions/deleteuser.php:151 lib/deleteuserform.php:77 msgid "Delete this user" msgstr "حذف این کاربر" #: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 -#: lib/adminpanelaction.php:316 lib/groupnav.php:119 +#: lib/groupnav.php:119 msgid "Design" msgstr "طرح" @@ -1135,6 +1157,17 @@ msgstr "بازگرداندن طرح‌های پیش‌فرض" msgid "Reset back to default" msgstr "برگشت به حالت پیش گزیده" +#: actions/designadminpanel.php:586 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/tagother.php:154 actions/useradminpanel.php:294 +#: lib/applicationeditform.php:333 lib/applicationeditform.php:334 +#: lib/designsettings.php:256 lib/groupeditform.php:202 +msgid "Save" +msgstr "ذخیره‌کردن" + #: actions/designadminpanel.php:587 lib/designsettings.php:257 msgid "Save design" msgstr "ذخیره‌کردن طرح" @@ -1235,30 +1268,30 @@ msgstr "ویرایش گروه %s" msgid "You must be logged in to create a group." msgstr "برای ساخت یک گروه، باید وارد شده باشید." -#: actions/editgroup.php:103 actions/editgroup.php:168 -#: actions/groupdesignsettings.php:104 actions/grouplogo.php:106 +#: actions/editgroup.php:107 actions/editgroup.php:172 +#: actions/groupdesignsettings.php:107 actions/grouplogo.php:109 #, fuzzy msgid "You must be an admin to edit the group." msgstr "برای ویرایش گروه، باید یک مدیر باشید." -#: actions/editgroup.php:154 +#: actions/editgroup.php:158 msgid "Use this form to edit the group." msgstr "از این روش برای ویرایش گروه استفاده کنید." -#: actions/editgroup.php:201 actions/newgroup.php:145 +#: actions/editgroup.php:205 actions/newgroup.php:145 #, php-format msgid "description is too long (max %d chars)." msgstr "توصیف بسیار زیاد است (حداکثر %d حرف)." -#: actions/editgroup.php:253 +#: actions/editgroup.php:258 msgid "Could not update group." msgstr "نمی‌توان گروه را به‌هنگام‌سازی کرد." -#: actions/editgroup.php:259 classes/User_group.php:433 +#: actions/editgroup.php:264 classes/User_group.php:478 msgid "Could not create aliases." msgstr "نمی‌توان نام‌های مستعار را ساخت." -#: actions/editgroup.php:269 +#: actions/editgroup.php:280 msgid "Options saved." msgstr "گزینه‌ها ذخیره شدند." @@ -1596,7 +1629,7 @@ msgstr "هم اکنون دسترسی کاربر به گروه مسدود شده msgid "User is not a member of group." msgstr "کاربر عضو گروه نیست." -#: actions/groupblock.php:136 actions/groupmembers.php:316 +#: actions/groupblock.php:136 actions/groupmembers.php:323 msgid "Block user from group" msgstr "دسترسی کاربر به گروه را مسدود کن" @@ -1628,87 +1661,87 @@ msgstr "" msgid "You must be logged in to edit a group." msgstr "برای ویرایش گروه باید وارد شوید." -#: actions/groupdesignsettings.php:141 +#: actions/groupdesignsettings.php:144 msgid "Group design" msgstr "ظاهر گروه" -#: actions/groupdesignsettings.php:152 +#: actions/groupdesignsettings.php:155 msgid "" "Customize the way your group looks with a background image and a colour " "palette of your choice." msgstr "ظاهر گروه را تغییر دهید تا شما را راضی کند." -#: actions/groupdesignsettings.php:263 actions/userdesignsettings.php:186 +#: actions/groupdesignsettings.php:266 actions/userdesignsettings.php:186 #: lib/designsettings.php:391 lib/designsettings.php:413 msgid "Couldn't update your design." msgstr "نمی‌توان ظاهر را به روز کرد." -#: actions/groupdesignsettings.php:308 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231 msgid "Design preferences saved." msgstr "ترجیحات طرح ذخیره شد." -#: actions/grouplogo.php:139 actions/grouplogo.php:192 +#: actions/grouplogo.php:142 actions/grouplogo.php:195 msgid "Group logo" msgstr "نشان گروه" -#: actions/grouplogo.php:150 +#: actions/grouplogo.php:153 #, php-format msgid "" "You can upload a logo image for your group. The maximum file size is %s." msgstr "شما می‌توانید یک نشان برای گروه خود با بیشینه حجم %s بفرستید." -#: actions/grouplogo.php:178 +#: actions/grouplogo.php:181 #, fuzzy msgid "User without matching profile." msgstr "کاربر بدون مشخصات" -#: actions/grouplogo.php:362 +#: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." msgstr "یک ناحیه‌ی مربع از تصویر را انتخاب کنید تا به عنوان نشان باشد." -#: actions/grouplogo.php:396 +#: actions/grouplogo.php:399 msgid "Logo updated." msgstr "نشان به‌هنگام‌سازی شد." -#: actions/grouplogo.php:398 +#: actions/grouplogo.php:401 msgid "Failed updating logo." msgstr "اشکال در ارسال نشان." -#: actions/groupmembers.php:93 lib/groupnav.php:92 +#: actions/groupmembers.php:100 lib/groupnav.php:92 #, php-format msgid "%s group members" msgstr "اعضای گروه %s" -#: actions/groupmembers.php:96 +#: actions/groupmembers.php:103 #, fuzzy, php-format msgid "%1$s group members, page %2$d" msgstr "اعضای گروه %s، صفحهٔ %d" -#: actions/groupmembers.php:111 +#: actions/groupmembers.php:118 msgid "A list of the users in this group." msgstr "یک فهرست از کاربران در این گروه" -#: actions/groupmembers.php:175 lib/action.php:448 lib/groupnav.php:107 +#: actions/groupmembers.php:182 lib/groupnav.php:107 msgid "Admin" msgstr "مدیر" -#: actions/groupmembers.php:348 lib/blockform.php:69 +#: actions/groupmembers.php:355 lib/blockform.php:69 msgid "Block" msgstr "بازداشتن" -#: actions/groupmembers.php:443 +#: actions/groupmembers.php:450 msgid "Make user an admin of the group" msgstr "کاربر یک مدیر گروه شود" -#: actions/groupmembers.php:475 +#: actions/groupmembers.php:482 msgid "Make Admin" msgstr "مدیر شود" -#: actions/groupmembers.php:475 +#: actions/groupmembers.php:482 msgid "Make this user an admin" msgstr "این کاربر یک مدیر شود" -#: actions/grouprss.php:133 +#: actions/grouprss.php:140 #, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "به روز رسانی کابران %1$s در %2$s" @@ -1967,16 +2000,19 @@ msgstr "پیام خصوصی" msgid "Optionally add a personal message to the invitation." msgstr "اگر دوست دارید می‌توانید یک پیام به همراه دعوت نامه ارسال کنید." -#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:236 +#. TRANS: Send button for inviting friends +#: actions/invite.php:198 +#, fuzzy +msgctxt "BUTTON" msgid "Send" msgstr "فرستادن" -#: actions/invite.php:226 +#: actions/invite.php:227 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "%1$s شما را دعوت کرده است که در %2$s به آن‌ها بپیوندید." -#: actions/invite.php:228 +#: actions/invite.php:229 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -2011,7 +2047,12 @@ msgstr "" msgid "You must be logged in to join a group." msgstr "برای پیوستن به یک گروه، باید وارد شده باشید." -#: actions/joingroup.php:131 +#: actions/joingroup.php:88 actions/leavegroup.php:88 +#, fuzzy +msgid "No nickname or ID." +msgstr "بدون لقب." + +#: actions/joingroup.php:141 #, fuzzy, php-format msgid "%1$s joined group %2$s" msgstr "ملحق شدن به گروه" @@ -2020,11 +2061,11 @@ msgstr "ملحق شدن به گروه" msgid "You must be logged in to leave a group." msgstr "برای ترک یک گروه، شما باید وارد شده باشید." -#: actions/leavegroup.php:90 lib/command.php:265 +#: actions/leavegroup.php:100 lib/command.php:265 msgid "You are not a member of that group." msgstr "شما یک کاربر این گروه نیستید." -#: actions/leavegroup.php:127 +#: actions/leavegroup.php:137 #, fuzzy, php-format msgid "%1$s left group %2$s" msgstr "%s گروه %s را ترک کرد." @@ -2041,8 +2082,7 @@ msgstr "نام کاربری یا رمز عبور نادرست." msgid "Error setting user. You are probably not authorized." msgstr "خطا در تنظیم کاربر. شما احتمالا اجازه ی این کار را ندارید." -#: actions/login.php:188 actions/login.php:241 lib/action.php:466 -#: lib/logingroupnav.php:79 +#: actions/login.php:188 actions/login.php:241 lib/logingroupnav.php:79 msgid "Login" msgstr "ورود" @@ -2300,8 +2340,8 @@ msgstr "نوع محتوا " msgid "Only " msgstr " فقط" -#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 -#: lib/api.php:1068 lib/api.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 +#: lib/apiaction.php:1068 lib/apiaction.php:1177 msgid "Not a supported data format." msgstr "یک قالب دادهٔ پشتیبانی‌شده نیست." @@ -2447,7 +2487,7 @@ msgstr "نمی‌توان گذرواژه جدید را ذخیره کرد." msgid "Password saved." msgstr "گذرواژه ذخیره شد." -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:331 +#: actions/pathsadminpanel.php:59 msgid "Paths" msgstr "مسیر ها" @@ -2480,7 +2520,6 @@ msgid "Invalid SSL server. The maximum length is 255 characters." msgstr "" #: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58 -#: lib/adminpanelaction.php:311 msgid "Site" msgstr "سایت" @@ -2653,7 +2692,7 @@ msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "۱-۶۴ کاراکتر کوچک یا اعداد، بدون نقطه گذاری یا فاصله" #: actions/profilesettings.php:111 actions/register.php:448 -#: actions/showgroup.php:247 actions/tagother.php:104 +#: actions/showgroup.php:255 actions/tagother.php:104 #: lib/groupeditform.php:157 lib/userprofile.php:149 msgid "Full name" msgstr "نام‌کامل" @@ -2681,7 +2720,7 @@ msgid "Bio" msgstr "شرح‌حال" #: actions/profilesettings.php:132 actions/register.php:471 -#: actions/showgroup.php:256 actions/tagother.php:112 +#: actions/showgroup.php:264 actions/tagother.php:112 #: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:164 msgid "Location" @@ -2761,7 +2800,8 @@ msgstr "نمی‌توان شناسه را ذخیره کرد." msgid "Couldn't save tags." msgstr "نمی‌توان نشان را ذخیره کرد." -#: actions/profilesettings.php:391 lib/adminpanelaction.php:137 +#. TRANS: Message after successful saving of administrative settings. +#: actions/profilesettings.php:391 lib/adminpanelaction.php:141 msgid "Settings saved." msgstr "تنظیمات ذخیره شد." @@ -2774,45 +2814,45 @@ msgstr "" msgid "Could not retrieve public stream." msgstr "" -#: actions/public.php:129 +#: actions/public.php:130 #, php-format msgid "Public timeline, page %d" msgstr "خط زمانی عمومی، صفحه‌ی %d" -#: actions/public.php:131 lib/publicgroupnav.php:79 +#: actions/public.php:132 lib/publicgroupnav.php:79 msgid "Public timeline" msgstr "خط زمانی عمومی" -#: actions/public.php:159 +#: actions/public.php:160 msgid "Public Stream Feed (RSS 1.0)" msgstr "" -#: actions/public.php:163 +#: actions/public.php:164 msgid "Public Stream Feed (RSS 2.0)" msgstr "" -#: actions/public.php:167 +#: actions/public.php:168 msgid "Public Stream Feed (Atom)" msgstr "" -#: actions/public.php:187 +#: actions/public.php:188 #, php-format msgid "" "This is the public timeline for %%site.name%% but no one has posted anything " "yet." msgstr "" -#: actions/public.php:190 +#: actions/public.php:191 msgid "Be the first to post!" msgstr "اولین کسی باشید که پیام می‌فرستد!" -#: actions/public.php:194 +#: actions/public.php:195 #, php-format msgid "" "Why not [register an account](%%action.register%%) and be the first to post!" msgstr "چرا [ثبت نام](%%action.register%%) نمی‌کنید و اولین پیام را نمی‌فرستید؟" -#: actions/public.php:241 +#: actions/public.php:242 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2821,7 +2861,7 @@ msgid "" "friends, family, and colleagues! ([Read more](%%doc.help%%))" msgstr "" -#: actions/public.php:246 +#: actions/public.php:247 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2994,8 +3034,7 @@ msgstr "با عرض تاسف، کد دعوت نا معتبر است." msgid "Registration successful" msgstr "ثبت نام با موفقیت انجام شد." -#: actions/register.php:114 actions/register.php:503 lib/action.php:463 -#: lib/logingroupnav.php:85 +#: actions/register.php:114 actions/register.php:503 lib/logingroupnav.php:85 msgid "Register" msgstr "ثبت نام" @@ -3158,7 +3197,7 @@ msgstr "شما نمی توانید آگهی خودتان را تکرار کنی msgid "You already repeated that notice." msgstr "شما قبلا آن آگهی را تکرار کردید." -#: actions/repeat.php:114 lib/noticelist.php:656 +#: actions/repeat.php:114 lib/noticelist.php:674 msgid "Repeated" msgstr "" @@ -3166,47 +3205,47 @@ msgstr "" msgid "Repeated!" msgstr "" -#: actions/replies.php:125 actions/repliesrss.php:68 +#: actions/replies.php:126 actions/repliesrss.php:68 #: lib/personalgroupnav.php:105 #, php-format msgid "Replies to %s" msgstr "پاسخ‌های به %s" -#: actions/replies.php:127 +#: actions/replies.php:128 #, fuzzy, php-format msgid "Replies to %1$s, page %2$d" msgstr "پاسخ‌های به %s" -#: actions/replies.php:144 +#: actions/replies.php:145 #, php-format msgid "Replies feed for %s (RSS 1.0)" msgstr "خوراک پاسخ‌ها برای %s (RSS 1.0)" -#: actions/replies.php:151 +#: actions/replies.php:152 #, php-format msgid "Replies feed for %s (RSS 2.0)" msgstr "خوراک پاسخ‌ها برای %s (RSS 2.0)" -#: actions/replies.php:158 +#: actions/replies.php:159 #, php-format msgid "Replies feed for %s (Atom)" msgstr "خوراک پاسخ‌ها برای %s (Atom)" -#: actions/replies.php:198 +#: actions/replies.php:199 #, fuzzy, php-format msgid "" "This is the timeline showing replies to %1$s but %2$s hasn't received a " "notice to his attention yet." msgstr "این خط‌زمانی %s و دوستانش است، اما هیچ‌یک تاکنون چیزی پست نکرده‌اند." -#: actions/replies.php:203 +#: actions/replies.php:204 #, php-format msgid "" "You can engage other users in a conversation, subscribe to more people or " "[join groups](%%action.groups%%)." msgstr "" -#: actions/replies.php:205 +#: actions/replies.php:206 #, fuzzy, php-format msgid "" "You can try to [nudge %1$s](../%2$s) or [post something to his or her " @@ -3234,7 +3273,6 @@ msgid "User is already sandboxed." msgstr "" #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:336 msgid "Sessions" msgstr "" @@ -3260,7 +3298,7 @@ msgid "Turn on debugging output for sessions." msgstr "" #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/useradminpanel.php:293 +#: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "" @@ -3294,7 +3332,7 @@ msgstr "صفحه بندى" msgid "Description" msgstr "" -#: actions/showapplication.php:192 actions/showgroup.php:429 +#: actions/showapplication.php:192 actions/showgroup.php:437 #: lib/profileaction.php:174 msgid "Statistics" msgstr "آمار" @@ -3357,35 +3395,35 @@ msgstr "دوست داشتنی های %s" msgid "Could not retrieve favorite notices." msgstr "ناتوان در بازیابی آگهی های محبوب." -#: actions/showfavorites.php:170 +#: actions/showfavorites.php:171 #, php-format msgid "Feed for favorites of %s (RSS 1.0)" msgstr "" -#: actions/showfavorites.php:177 +#: actions/showfavorites.php:178 #, php-format msgid "Feed for favorites of %s (RSS 2.0)" msgstr "" -#: actions/showfavorites.php:184 +#: actions/showfavorites.php:185 #, php-format msgid "Feed for favorites of %s (Atom)" msgstr "" -#: actions/showfavorites.php:205 +#: actions/showfavorites.php:206 msgid "" "You haven't chosen any favorite notices yet. Click the fave button on " "notices you like to bookmark them for later or shed a spotlight on them." msgstr "" -#: actions/showfavorites.php:207 +#: actions/showfavorites.php:208 #, 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:211 +#: actions/showfavorites.php:212 #, php-format msgid "" "%s hasn't added any notices to his favorites yet. Why not [register an " @@ -3393,7 +3431,7 @@ msgid "" "would add to their favorites :)" msgstr "" -#: actions/showfavorites.php:242 +#: actions/showfavorites.php:243 msgid "This is a way to share what you like." msgstr "این یک راه است برای به اشتراک گذاشتن آنچه که دوست دارید." @@ -3407,67 +3445,67 @@ msgstr "" msgid "%1$s group, page %2$d" msgstr "اعضای گروه %s، صفحهٔ %d" -#: actions/showgroup.php:218 +#: actions/showgroup.php:226 msgid "Group profile" msgstr "" -#: actions/showgroup.php:263 actions/tagother.php:118 +#: actions/showgroup.php:271 actions/tagother.php:118 #: actions/userauthorization.php:175 lib/userprofile.php:177 msgid "URL" msgstr "" -#: actions/showgroup.php:274 actions/tagother.php:128 +#: actions/showgroup.php:282 actions/tagother.php:128 #: actions/userauthorization.php:187 lib/userprofile.php:194 msgid "Note" msgstr "" -#: actions/showgroup.php:284 lib/groupeditform.php:184 +#: actions/showgroup.php:292 lib/groupeditform.php:184 msgid "Aliases" msgstr "نام های مستعار" -#: actions/showgroup.php:293 +#: actions/showgroup.php:301 msgid "Group actions" msgstr "" -#: actions/showgroup.php:328 +#: actions/showgroup.php:336 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "" -#: actions/showgroup.php:334 +#: actions/showgroup.php:342 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "" -#: actions/showgroup.php:340 +#: actions/showgroup.php:348 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "" -#: actions/showgroup.php:345 +#: actions/showgroup.php:353 #, php-format msgid "FOAF for %s group" msgstr "" -#: actions/showgroup.php:381 actions/showgroup.php:438 lib/groupnav.php:91 +#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 msgid "Members" msgstr "اعضا" -#: actions/showgroup.php:386 lib/profileaction.php:117 +#: actions/showgroup.php:394 lib/profileaction.php:117 #: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "هیچ" -#: actions/showgroup.php:392 +#: actions/showgroup.php:400 msgid "All members" msgstr "همه ی اعضا" -#: actions/showgroup.php:432 +#: actions/showgroup.php:440 msgid "Created" msgstr "ساخته شد" -#: actions/showgroup.php:448 +#: actions/showgroup.php:456 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3477,7 +3515,7 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showgroup.php:454 +#: actions/showgroup.php:462 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3486,7 +3524,7 @@ msgid "" "their life and interests. " msgstr "" -#: actions/showgroup.php:482 +#: actions/showgroup.php:490 msgid "Admins" msgstr "" @@ -3945,22 +3983,22 @@ msgstr "" msgid "SMS" msgstr "" -#: actions/tag.php:68 +#: actions/tag.php:69 #, fuzzy, php-format msgid "Notices tagged with %1$s, page %2$d" msgstr "کاربران خود برچسب‌گذاری شده با %s - صفحهٔ %d" -#: actions/tag.php:86 +#: actions/tag.php:87 #, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "" -#: actions/tag.php:92 +#: actions/tag.php:93 #, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "" -#: actions/tag.php:98 +#: actions/tag.php:99 #, php-format msgid "Notice feed for tag %s (Atom)" msgstr "" @@ -4010,7 +4048,7 @@ msgstr "" msgid "No such tag." msgstr "" -#: actions/twitapitrends.php:87 +#: actions/twitapitrends.php:85 msgid "API method under construction." msgstr "روش API در دست ساخت." @@ -4040,70 +4078,72 @@ msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" -#: actions/useradminpanel.php:58 lib/adminpanelaction.php:321 -#: lib/personalgroupnav.php:115 +#. TRANS: User admin panel title +#: actions/useradminpanel.php:59 +#, fuzzy +msgctxt "TITLE" msgid "User" msgstr "کاربر" -#: actions/useradminpanel.php:69 +#: actions/useradminpanel.php:70 msgid "User settings for this StatusNet site." msgstr "" -#: actions/useradminpanel.php:148 +#: actions/useradminpanel.php:149 msgid "Invalid bio limit. Must be numeric." msgstr "" -#: actions/useradminpanel.php:154 +#: actions/useradminpanel.php:155 msgid "Invalid welcome text. Max length is 255 characters." msgstr "" -#: actions/useradminpanel.php:164 +#: actions/useradminpanel.php:165 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" -#: actions/useradminpanel.php:217 lib/accountsettingsaction.php:108 +#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "" -#: actions/useradminpanel.php:221 +#: actions/useradminpanel.php:222 msgid "Bio Limit" msgstr "" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:223 msgid "Maximum length of a profile bio in characters." msgstr "حداکثر طول یک زندگی نامه(در پروفایل) بر حسب کاراکتر." -#: actions/useradminpanel.php:230 +#: actions/useradminpanel.php:231 msgid "New users" msgstr "" -#: actions/useradminpanel.php:234 +#: actions/useradminpanel.php:235 msgid "New user welcome" msgstr "خوشامدگویی کاربر جدید" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:236 msgid "Welcome text for new users (Max 255 chars)." msgstr "پیام خوشامدگویی برای کاربران جدید( حداکثر 255 کاراکتر)" -#: actions/useradminpanel.php:240 +#: actions/useradminpanel.php:241 msgid "Default subscription" msgstr "" -#: actions/useradminpanel.php:241 +#: actions/useradminpanel.php:242 msgid "Automatically subscribe new users to this user." msgstr "" -#: actions/useradminpanel.php:250 +#: actions/useradminpanel.php:251 msgid "Invitations" msgstr "دعوت نامه ها" -#: actions/useradminpanel.php:255 +#: actions/useradminpanel.php:256 msgid "Invitations enabled" msgstr "دعوت نامه ها فعال شدند" -#: actions/useradminpanel.php:257 +#: actions/useradminpanel.php:258 msgid "Whether to allow users to invite new users." msgstr "خواه به کاربران اجازه ی دعوت کردن کاربران جدید داده شود." @@ -4276,7 +4316,7 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:196 lib/action.php:747 +#: actions/version.php:196 lib/action.php:778 #, fuzzy msgid "Version" msgstr "شخصی" @@ -4316,6 +4356,11 @@ msgstr "نمی‌توان گروه را به‌هنگام‌سازی کرد." msgid "Group leave failed." msgstr "" +#: classes/Local_group.php:41 +#, fuzzy +msgid "Could not update local group." +msgstr "نمی‌توان گروه را به‌هنگام‌سازی کرد." + #: classes/Login_token.php:76 #, fuzzy, php-format msgid "Could not create login token for %s" @@ -4333,27 +4378,27 @@ msgstr "پیغام نمی تواند درج گردد" msgid "Could not update message with new URI." msgstr "" -#: classes/Notice.php:157 +#: classes/Notice.php:172 #, php-format msgid "DB error inserting hashtag: %s" msgstr "" -#: classes/Notice.php:222 +#: classes/Notice.php:239 msgid "Problem saving notice. Too long." msgstr "مشکل در ذخیره کردن پیام. بسیار طولانی." -#: classes/Notice.php:226 +#: classes/Notice.php:243 msgid "Problem saving notice. Unknown user." msgstr "مشکل در ذخیره کردن پیام. کاربر نا شناخته." -#: classes/Notice.php:231 +#: classes/Notice.php:248 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" "تعداد خیلی زیاد آگهی و بسیار سریع؛ استراحت کنید و مجددا دقایقی دیگر ارسال " "کنید." -#: classes/Notice.php:237 +#: classes/Notice.php:254 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." @@ -4361,20 +4406,20 @@ msgstr "" "تعداد زیاد پیام های دو نسخه ای و بسرعت؛ استراحت کنید و دقایقی دیگر مجددا " "ارسال کنید." -#: classes/Notice.php:243 +#: classes/Notice.php:260 msgid "You are banned from posting notices on this site." msgstr "شما از فرستادن پست در این سایت مردود شدید ." -#: classes/Notice.php:309 classes/Notice.php:335 +#: classes/Notice.php:326 classes/Notice.php:352 msgid "Problem saving notice." msgstr "مشکل در ذخیره کردن آگهی." -#: classes/Notice.php:882 +#: classes/Notice.php:911 #, fuzzy msgid "Problem saving group inbox." msgstr "مشکل در ذخیره کردن آگهی." -#: classes/Notice.php:1407 +#: classes/Notice.php:1442 #, php-format msgid "RT @%1$s %2$s" msgstr "" @@ -4403,19 +4448,29 @@ msgstr "" msgid "Couldn't delete subscription." msgstr "" -#: classes/User.php:372 +#: classes/User.php:373 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "خوش امدید به %1$s , @%2$s!" -#: classes/User_group.php:423 +#: classes/User_group.php:462 msgid "Could not create group." msgstr "نمیتوان گروه را تشکیل داد" -#: classes/User_group.php:452 +#: classes/User_group.php:471 +#, fuzzy +msgid "Could not set group URI." +msgstr "نمیتوان گروه را تشکیل داد" + +#: classes/User_group.php:492 msgid "Could not set group membership." msgstr "" +#: classes/User_group.php:506 +#, fuzzy +msgid "Could not save local group info." +msgstr "نمی‌توان شناس‌نامه را ذخیره کرد." + #: lib/accountsettingsaction.php:108 msgid "Change your profile settings" msgstr "تنضبمات پروفيلتان را تغیر دهید" @@ -4457,132 +4512,201 @@ msgstr "صفحه ی بدون عنوان" msgid "Primary site navigation" msgstr "" +#. TRANS: Tooltip for main menu option "Personal" #: lib/action.php:439 -msgid "Home" -msgstr "خانه" - -#: lib/action.php:439 +msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:441 +#: lib/action.php:442 +#, fuzzy +msgctxt "MENU" +msgid "Personal" +msgstr "شخصی" + +#. TRANS: Tooltip for main menu option "Account" +#: lib/action.php:444 +#, fuzzy +msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "آدرس ایمیل، آواتار، کلمه ی عبور، پروفایل خود را تغییر دهید" -#: lib/action.php:444 -msgid "Connect" -msgstr "وصل‌شدن" +#: lib/action.php:447 +#, fuzzy +msgctxt "MENU" +msgid "Account" +msgstr "حساب کاربری" -#: lib/action.php:444 +#. TRANS: Tooltip for main menu option "Services" +#: lib/action.php:450 +#, fuzzy +msgctxt "TOOLTIP" msgid "Connect to services" msgstr "متصل شدن به خدمات" -#: lib/action.php:448 +#: lib/action.php:453 +#, fuzzy +msgctxt "MENU" +msgid "Connect" +msgstr "وصل‌شدن" + +#. TRANS: Tooltip for menu option "Admin" +#: lib/action.php:457 +#, fuzzy +msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "تغییر پیکربندی سایت" -#: lib/action.php:452 lib/subgroupnav.php:105 -msgid "Invite" -msgstr "دعوت‌کردن" +#: lib/action.php:460 +#, fuzzy +msgctxt "MENU" +msgid "Admin" +msgstr "مدیر" -#: lib/action.php:453 lib/subgroupnav.php:106 -#, php-format +#. TRANS: Tooltip for main menu option "Invite" +#: lib/action.php:464 +#, fuzzy, php-format +msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr " به شما ملحق شوند %s دوستان و همکاران را دعوت کنید تا در" -#: lib/action.php:458 -msgid "Logout" -msgstr "خروج" +#: lib/action.php:467 +#, fuzzy +msgctxt "MENU" +msgid "Invite" +msgstr "دعوت‌کردن" -#: lib/action.php:458 +#. TRANS: Tooltip for main menu option "Logout" +#: lib/action.php:473 +#, fuzzy +msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "خارج شدن از سایت ." -#: lib/action.php:463 +#: lib/action.php:476 +#, fuzzy +msgctxt "MENU" +msgid "Logout" +msgstr "خروج" + +#. TRANS: Tooltip for main menu option "Register" +#: lib/action.php:481 +#, fuzzy +msgctxt "TOOLTIP" msgid "Create an account" msgstr "یک حساب کاربری بسازید" -#: lib/action.php:466 +#: lib/action.php:484 +#, fuzzy +msgctxt "MENU" +msgid "Register" +msgstr "ثبت نام" + +#. TRANS: Tooltip for main menu option "Login" +#: lib/action.php:487 +#, fuzzy +msgctxt "TOOLTIP" msgid "Login to the site" msgstr "ورود به وب‌گاه" -#: lib/action.php:469 lib/action.php:732 -msgid "Help" -msgstr "کمک" +#: lib/action.php:490 +#, fuzzy +msgctxt "MENU" +msgid "Login" +msgstr "ورود" -#: lib/action.php:469 +#. TRANS: Tooltip for main menu option "Help" +#: lib/action.php:493 +#, fuzzy +msgctxt "TOOLTIP" msgid "Help me!" msgstr "به من کمک کنید!" -#: lib/action.php:472 lib/searchaction.php:127 -msgid "Search" -msgstr "جست‌وجو" +#: lib/action.php:496 +#, fuzzy +msgctxt "MENU" +msgid "Help" +msgstr "کمک" -#: lib/action.php:472 +#. TRANS: Tooltip for main menu option "Search" +#: lib/action.php:499 +#, fuzzy +msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "جستجو برای شخص با متن" -#: lib/action.php:493 +#: lib/action.php:502 +#, fuzzy +msgctxt "MENU" +msgid "Search" +msgstr "جست‌وجو" + +#. TRANS: DT element for site notice. String is hidden in default CSS. +#: lib/action.php:524 msgid "Site notice" msgstr "خبر سایت" -#: lib/action.php:559 +#: lib/action.php:590 msgid "Local views" msgstr "دید محلی" -#: lib/action.php:625 +#: lib/action.php:656 msgid "Page notice" msgstr "خبر صفحه" -#: lib/action.php:727 +#: lib/action.php:758 msgid "Secondary site navigation" msgstr "" -#: lib/action.php:734 +#: lib/action.php:763 +msgid "Help" +msgstr "کمک" + +#: lib/action.php:765 msgid "About" msgstr "دربارهٔ" -#: lib/action.php:736 +#: lib/action.php:767 msgid "FAQ" msgstr "سوال‌های رایج" -#: lib/action.php:740 +#: lib/action.php:771 msgid "TOS" msgstr "" -#: lib/action.php:743 +#: lib/action.php:774 msgid "Privacy" msgstr "خصوصی" -#: lib/action.php:745 +#: lib/action.php:776 msgid "Source" msgstr "منبع" -#: lib/action.php:749 +#: lib/action.php:780 msgid "Contact" msgstr "تماس" -#: lib/action.php:751 +#: lib/action.php:782 msgid "Badge" msgstr "" -#: lib/action.php:779 +#: lib/action.php:810 msgid "StatusNet software license" msgstr "StatusNet مجوز نرم افزار" -#: lib/action.php:782 +#: lib/action.php:813 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." "broughtby%%](%%site.broughtbyurl%%). " msgstr "" -#: lib/action.php:784 +#: lib/action.php:815 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "" -#: lib/action.php:786 +#: lib/action.php:817 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4590,109 +4714,162 @@ msgid "" "org/licensing/licenses/agpl-3.0.html)." msgstr "" -#: lib/action.php:801 +#: lib/action.php:832 msgid "Site content license" msgstr "مجوز محتویات سایت" -#: lib/action.php:806 +#: lib/action.php:837 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:811 +#: lib/action.php:842 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:814 +#: lib/action.php:845 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" -#: lib/action.php:827 +#: lib/action.php:858 msgid "All " msgstr "همه " -#: lib/action.php:833 +#: lib/action.php:864 msgid "license." msgstr "مجوز." -#: lib/action.php:1132 +#: lib/action.php:1163 msgid "Pagination" msgstr "صفحه بندى" -#: lib/action.php:1141 +#: lib/action.php:1172 msgid "After" msgstr "بعد از" -#: lib/action.php:1149 +#: lib/action.php:1180 msgid "Before" msgstr "قبل از" -#: lib/activity.php:382 +#: lib/activity.php:449 msgid "Can't handle remote content yet." msgstr "" -#: lib/activity.php:410 +#: lib/activity.php:477 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activity.php:414 +#: lib/activity.php:481 msgid "Can't handle embedded Base64 content yet." msgstr "" -#: lib/adminpanelaction.php:96 +#. TRANS: Client error message +#: lib/adminpanelaction.php:98 msgid "You cannot make changes to this site." msgstr "شما نمی توانید در این سایت تغیری ایجاد کنید" -#: lib/adminpanelaction.php:107 +#. TRANS: Client error message +#: lib/adminpanelaction.php:110 #, fuzzy msgid "Changes to that panel are not allowed." msgstr "اجازه‌ی ثبت نام داده نشده است." -#: lib/adminpanelaction.php:206 +#. TRANS: Client error message +#: lib/adminpanelaction.php:211 msgid "showForm() not implemented." msgstr "" -#: lib/adminpanelaction.php:235 +#. TRANS: Client error message +#: lib/adminpanelaction.php:241 msgid "saveSettings() not implemented." msgstr "" -#: lib/adminpanelaction.php:258 +#. TRANS: Client error message +#: lib/adminpanelaction.php:265 msgid "Unable to delete design setting." msgstr "نمی توان تنظیمات طراحی شده را پاک کرد ." -#: lib/adminpanelaction.php:312 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:330 msgid "Basic site configuration" msgstr "پیکره بندی اصلی سایت" -#: lib/adminpanelaction.php:317 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:332 +#, fuzzy +msgctxt "MENU" +msgid "Site" +msgstr "سایت" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:338 msgid "Design configuration" msgstr "" -#: lib/adminpanelaction.php:322 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:340 +#, fuzzy +msgctxt "MENU" +msgid "Design" +msgstr "طرح" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:346 #, fuzzy msgid "User configuration" msgstr "پیکره بندی اصلی سایت" -#: lib/adminpanelaction.php:327 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:348 +#, fuzzy +msgctxt "MENU" +msgid "User" +msgstr "کاربر" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:354 #, fuzzy msgid "Access configuration" msgstr "پیکره بندی اصلی سایت" -#: lib/adminpanelaction.php:332 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:356 +#, fuzzy +msgctxt "MENU" +msgid "Access" +msgstr "دسترسی" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:362 msgid "Paths configuration" msgstr "" -#: lib/adminpanelaction.php:337 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:364 +#, fuzzy +msgctxt "MENU" +msgid "Paths" +msgstr "مسیر ها" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:370 #, fuzzy msgid "Sessions configuration" msgstr "پیکره بندی اصلی سایت" -#: lib/apiauth.php:95 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:372 +#, fuzzy +msgctxt "MENU" +msgid "Sessions" +msgstr "شخصی" + +#: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." msgstr "" -#: lib/apiauth.php:273 +#: lib/apiauth.php:272 #, php-format msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" msgstr "" @@ -4784,12 +4961,12 @@ msgstr "" msgid "Tags for this attachment" msgstr "" -#: lib/authenticationplugin.php:218 lib/authenticationplugin.php:223 +#: lib/authenticationplugin.php:220 lib/authenticationplugin.php:225 #, fuzzy msgid "Password changing failed" msgstr "تغییر گذرواژه" -#: lib/authenticationplugin.php:233 +#: lib/authenticationplugin.php:235 #, fuzzy msgid "Password changing is not allowed" msgstr "تغییر گذرواژه" @@ -5067,19 +5244,19 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:136 +#: lib/common.php:148 msgid "No configuration file found. " msgstr "" -#: lib/common.php:137 +#: lib/common.php:149 msgid "I looked for configuration files in the following places: " msgstr "" -#: lib/common.php:139 +#: lib/common.php:151 msgid "You may wish to run the installer to fix this." msgstr "شما ممکن است بخواهید نصاب را اجرا کنید تا این را تعمیر کند." -#: lib/common.php:140 +#: lib/common.php:152 msgid "Go to the installer." msgstr "برو به نصاب." @@ -5267,23 +5444,23 @@ msgstr "خطای سیستم ارسال فایل." msgid "Not an image or corrupt file." msgstr "تصویر یا فایل خرابی نیست" -#: lib/imagefile.php:105 +#: lib/imagefile.php:109 msgid "Unsupported image file format." msgstr "فرمت(فایل) عکس پشتیبانی نشده." -#: lib/imagefile.php:118 +#: lib/imagefile.php:122 msgid "Lost our file." msgstr "فایلمان گم شده" -#: lib/imagefile.php:150 lib/imagefile.php:197 +#: lib/imagefile.php:166 lib/imagefile.php:231 msgid "Unknown file type" msgstr "نوع فایل پشتیبانی نشده" -#: lib/imagefile.php:217 +#: lib/imagefile.php:251 msgid "MB" msgstr "مگابایت" -#: lib/imagefile.php:219 +#: lib/imagefile.php:253 msgid "kB" msgstr "کیلوبایت" @@ -5584,6 +5761,12 @@ msgstr "به" msgid "Available characters" msgstr "کاراکترهای موجود" +#: lib/messageform.php:178 lib/noticeform.php:236 +#, fuzzy +msgctxt "Send button for sending notice" +msgid "Send" +msgstr "فرستادن" + #: lib/noticeform.php:160 msgid "Send a notice" msgstr "یک آگهی بفرستید" @@ -5642,23 +5825,23 @@ msgstr "" msgid "at" msgstr "در" -#: lib/noticelist.php:558 +#: lib/noticelist.php:566 msgid "in context" msgstr "در زمینه" -#: lib/noticelist.php:583 +#: lib/noticelist.php:601 msgid "Repeated by" msgstr "تکرار از" -#: lib/noticelist.php:610 +#: lib/noticelist.php:628 msgid "Reply to this notice" msgstr "به این آگهی جواب دهید" -#: lib/noticelist.php:611 +#: lib/noticelist.php:629 msgid "Reply" msgstr "جواب دادن" -#: lib/noticelist.php:655 +#: lib/noticelist.php:673 msgid "Notice repeated" msgstr "آگهی تکرار شد" @@ -5706,6 +5889,10 @@ msgstr "پاسخ ها" msgid "Favorites" msgstr "چیزهای مورد علاقه" +#: lib/personalgroupnav.php:115 +msgid "User" +msgstr "کاربر" + #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "صندوق دریافتی" @@ -5796,7 +5983,7 @@ msgstr "به این آگهی جواب دهید" msgid "Repeat this notice" msgstr "" -#: lib/router.php:665 +#: lib/router.php:668 msgid "No single user defined for single-user mode." msgstr "" @@ -5816,6 +6003,10 @@ msgstr "جست‌وجوی وب‌گاه" msgid "Keyword(s)" msgstr "کلمه(های) کلیدی" +#: lib/searchaction.php:127 +msgid "Search" +msgstr "جست‌وجو" + #: lib/searchaction.php:162 msgid "Search help" msgstr "راهنمای جستجو" @@ -5867,6 +6058,15 @@ msgstr "" msgid "Groups %s is a member of" msgstr "هست عضو %s گروه" +#: lib/subgroupnav.php:105 +msgid "Invite" +msgstr "دعوت‌کردن" + +#: lib/subgroupnav.php:106 +#, 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" @@ -5937,47 +6137,47 @@ msgstr "پیام" msgid "Moderate" msgstr "" -#: lib/util.php:952 +#: lib/util.php:1013 msgid "a few seconds ago" msgstr "چند ثانیه پیش" -#: lib/util.php:954 +#: lib/util.php:1015 msgid "about a minute ago" msgstr "حدود یک دقیقه پیش" -#: lib/util.php:956 +#: lib/util.php:1017 #, php-format msgid "about %d minutes ago" msgstr "حدود %d دقیقه پیش" -#: lib/util.php:958 +#: lib/util.php:1019 msgid "about an hour ago" msgstr "حدود یک ساعت پیش" -#: lib/util.php:960 +#: lib/util.php:1021 #, php-format msgid "about %d hours ago" msgstr "حدود %d ساعت پیش" -#: lib/util.php:962 +#: lib/util.php:1023 msgid "about a day ago" msgstr "حدود یک روز پیش" -#: lib/util.php:964 +#: lib/util.php:1025 #, php-format msgid "about %d days ago" msgstr "حدود %d روز پیش" -#: lib/util.php:966 +#: lib/util.php:1027 msgid "about a month ago" msgstr "حدود یک ماه پیش" -#: lib/util.php:968 +#: lib/util.php:1029 #, php-format msgid "about %d months ago" msgstr "حدود %d ماه پیش" -#: lib/util.php:970 +#: lib/util.php:1031 msgid "about a year ago" msgstr "حدود یک سال پیش" diff --git a/locale/fi/LC_MESSAGES/statusnet.po b/locale/fi/LC_MESSAGES/statusnet.po index b92edf1118..97ab7038b9 100644 --- a/locale/fi/LC_MESSAGES/statusnet.po +++ b/locale/fi/LC_MESSAGES/statusnet.po @@ -10,82 +10,88 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-02-24 23:49+0000\n" -"PO-Revision-Date: 2010-02-24 23:50:33+0000\n" +"POT-Creation-Date: 2010-03-02 21:02+0000\n" +"PO-Revision-Date: 2010-03-02 21:02:42+0000\n" "Language-Team: Finnish\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r62925); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: actions/accessadminpanel.php:54 lib/adminpanelaction.php:326 +#. TRANS: Page title +#: actions/accessadminpanel.php:55 #, fuzzy msgid "Access" msgstr "Hyväksy" -#: actions/accessadminpanel.php:65 +#. TRANS: Page notice +#: actions/accessadminpanel.php:67 #, fuzzy msgid "Site access settings" msgstr "Profiilikuva-asetukset" -#: actions/accessadminpanel.php:158 +#. TRANS: Form legend for registration form. +#: actions/accessadminpanel.php:161 #, fuzzy msgid "Registration" msgstr "Rekisteröidy" -#: actions/accessadminpanel.php:161 -#, fuzzy -msgid "Private" -msgstr "Yksityisyys" - -#: actions/accessadminpanel.php:163 +#. TRANS: Checkbox instructions for admin setting "Private" +#: actions/accessadminpanel.php:165 msgid "Prohibit anonymous users (not logged in) from viewing site?" msgstr "" +#. TRANS: Checkbox label for prohibiting anonymous users from viewing site. #: actions/accessadminpanel.php:167 #, fuzzy +msgctxt "LABEL" +msgid "Private" +msgstr "Yksityisyys" + +#. TRANS: Checkbox instructions for admin setting "Invite only" +#: actions/accessadminpanel.php:174 +msgid "Make registration invitation only." +msgstr "" + +#. TRANS: Checkbox label for configuring site as invite only. +#: actions/accessadminpanel.php:176 +#, fuzzy msgid "Invite only" msgstr "Kutsu" -#: actions/accessadminpanel.php:169 -msgid "Make registration invitation only." +#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations) +#: actions/accessadminpanel.php:183 +msgid "Disable new registrations." msgstr "" -#: actions/accessadminpanel.php:173 +#. TRANS: Checkbox label for disabling new user registrations. +#: actions/accessadminpanel.php:185 #, fuzzy msgid "Closed" msgstr "Estä" -#: actions/accessadminpanel.php:175 -msgid "Disable new registrations." -msgstr "" - -#: actions/accessadminpanel.php:189 actions/designadminpanel.php:586 -#: actions/emailsettings.php:195 actions/imsettings.php:163 -#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 -#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 -#: actions/siteadminpanel.php:336 actions/smssettings.php:181 -#: actions/subscriptions.php:208 actions/tagother.php:154 -#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 -#: lib/applicationeditform.php:334 lib/designsettings.php:256 -#: lib/groupeditform.php:202 -msgid "Save" -msgstr "Tallenna" - -#: actions/accessadminpanel.php:189 +#. TRANS: Title / tooltip for button to save access settings in site admin panel +#: actions/accessadminpanel.php:202 #, fuzzy msgid "Save access settings" msgstr "Profiilikuva-asetukset" -#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 -#: actions/showfavorites.php:137 actions/tag.php:51 +#: actions/accessadminpanel.php:203 +#, fuzzy +msgctxt "BUTTON" +msgid "Save" +msgstr "Tallenna" + +#. TRANS: Server error when page not found (404) +#: actions/all.php:64 actions/public.php:98 actions/replies.php:93 +#: actions/showfavorites.php:138 actions/tag.php:52 msgid "No such page" msgstr "Sivua ei ole." -#: actions/all.php:74 actions/allrss.php:68 +#: actions/all.php:75 actions/allrss.php:68 #: actions/apiaccountupdatedeliverydevice.php:113 #: actions/apiaccountupdateprofile.php:105 #: actions/apiaccountupdateprofilebackgroundimage.php:116 @@ -99,45 +105,53 @@ msgstr "Sivua ei ole." #: actions/apitimelinehome.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/otp.php:76 -#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154 -#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 -#: actions/showfavorites.php:105 actions/userbyid.php:74 -#: actions/usergroups.php:91 actions/userrss.php:38 actions/xrds.php:71 -#: lib/command.php:163 lib/command.php:302 lib/command.php:355 -#: lib/command.php:401 lib/command.php:462 lib/command.php:518 -#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 +#: actions/hcard.php:67 actions/microsummary.php:62 actions/newmessage.php:116 +#: actions/otp.php:76 actions/remotesubscribe.php:145 +#: actions/remotesubscribe.php:154 actions/replies.php:73 +#: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/xrds.php:71 lib/command.php:163 lib/command.php:302 +#: lib/command.php:355 lib/command.php:401 lib/command.php:462 +#: lib/command.php:518 lib/galleryaction.php:59 lib/mailbox.php:82 +#: lib/profileaction.php:77 msgid "No such user." msgstr "Käyttäjää ei ole." -#: actions/all.php:84 +#. TRANS: Page title. %1$s is user nickname, %2$d is page number +#: actions/all.php:86 #, fuzzy, php-format msgid "%1$s and friends, page %2$d" msgstr "%s ja kaverit, sivu %d" -#: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 +#. TRANS: Page title. %1$s is user nickname +#. TRANS: H1 text. %1$s is user nickname +#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" msgstr "%s ja kaverit" -#: actions/all.php:99 +#. TRANS: %1$s is user nickname +#: actions/all.php:103 #, php-format msgid "Feed for friends of %s (RSS 1.0)" msgstr "Käyttäjän %s kavereiden syöte (RSS 1.0)" -#: actions/all.php:107 +#. TRANS: %1$s is user nickname +#: actions/all.php:112 #, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "Käyttäjän %s kavereiden syöte (RSS 2.0)" -#: actions/all.php:115 +#. TRANS: %1$s is user nickname +#: actions/all.php:121 #, php-format msgid "Feed for friends of %s (Atom)" msgstr "Käyttäjän %s kavereiden syöte (Atom)" -#: actions/all.php:127 +#. TRANS: %1$s is user nickname +#: actions/all.php:134 #, php-format msgid "" "This is the timeline for %s and friends but no one has posted anything yet." @@ -145,7 +159,7 @@ msgstr "" "Tämä on käyttäjän %s ja kavereiden aikajana, mutta kukaan ei ole lähettyänyt " "vielä mitään." -#: actions/all.php:132 +#: actions/all.php:139 #, php-format msgid "" "Try subscribing to more people, [join a group](%%action.groups%%) or post " @@ -154,7 +168,8 @@ msgstr "" "Kokeile useamman käyttäjän tilaamista, [liity ryhmään] (%%action.groups%%) " "tai lähetä päivitys itse." -#: actions/all.php:134 +#. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@" +#: actions/all.php:142 #, fuzzy, php-format msgid "" "You can try to [nudge %1$s](../%2$s) from his profile or [post something to " @@ -163,14 +178,15 @@ msgstr "" "Ole ensimmäinen joka [lähettää päivityksen tästä aiheesta] (%%%%action." "newnotice%%%%?status_textarea=%s)!" -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211 +#: actions/all.php:145 actions/replies.php:210 actions/showstream.php:211 #, 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/all.php:165 +#. TRANS: H1 text +#: actions/all.php:174 msgid "You and friends" msgstr "Sinä ja kaverit" @@ -188,20 +204,20 @@ msgstr "Käyttäjän %1$s ja kavereiden päivitykset palvelussa %2$s!" #: actions/apiaccountverifycredentials.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:128 actions/apigroupcreate.php:136 +#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: actions/apigroupleave.php:141 actions/apigrouplist.php:132 #: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 #: actions/apigroupshow.php:115 actions/apihelptest.php:88 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 -#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184 +#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 #: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:207 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 #, fuzzy msgid "API method not found." msgstr "API-metodia ei löytynyt!" @@ -235,8 +251,9 @@ msgstr "Ei voitu päivittää käyttäjää." #: actions/apiaccountupdateprofilebackgroundimage.php:194 #: actions/apiaccountupdateprofilecolors.php:185 #: 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 +#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 +#: 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." @@ -261,7 +278,7 @@ msgstr "" #: actions/apiaccountupdateprofilebackgroundimage.php:146 #: actions/apiaccountupdateprofilecolors.php:164 #: actions/apiaccountupdateprofilecolors.php:174 -#: actions/groupdesignsettings.php:287 actions/groupdesignsettings.php:297 +#: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300 #: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 #: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 #, fuzzy @@ -380,7 +397,7 @@ msgstr "Julkista päivitysvirtaa ei saatu." msgid "Could not find target user." msgstr "Ei löytynyt yhtään päivitystä." -#: actions/apigroupcreate.php:164 actions/editgroup.php:182 +#: actions/apigroupcreate.php:166 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:215 #: actions/register.php:205 msgid "Nickname must have only lowercase letters and numbers and no spaces." @@ -388,62 +405,62 @@ msgstr "" "Käyttäjätunnuksessa voi olla ainoastaan pieniä kirjaimia ja numeroita ilman " "välilyöntiä." -#: actions/apigroupcreate.php:173 actions/editgroup.php:186 +#: actions/apigroupcreate.php:175 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:238 #: actions/register.php:208 msgid "Nickname already in use. Try another one." msgstr "Tunnus on jo käytössä. Yritä toista tunnusta." -#: actions/apigroupcreate.php:180 actions/editgroup.php:189 +#: actions/apigroupcreate.php:182 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:218 #: actions/register.php:210 msgid "Not a valid nickname." msgstr "Tuo ei ole kelvollinen tunnus." -#: actions/apigroupcreate.php:196 actions/editapplication.php:215 -#: actions/editgroup.php:195 actions/newapplication.php:203 +#: actions/apigroupcreate.php:198 actions/editapplication.php:215 +#: actions/editgroup.php:199 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:217 msgid "Homepage is not a valid URL." msgstr "Kotisivun verkko-osoite ei ole toimiva." -#: actions/apigroupcreate.php:205 actions/editgroup.php:198 +#: actions/apigroupcreate.php:207 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:225 #: actions/register.php:220 msgid "Full name is too long (max 255 chars)." msgstr "Koko nimi on liian pitkä (max 255 merkkiä)." -#: actions/apigroupcreate.php:213 actions/editapplication.php:190 +#: actions/apigroupcreate.php:215 actions/editapplication.php:190 #: actions/newapplication.php:172 #, fuzzy, php-format msgid "Description is too long (max %d chars)." msgstr "kuvaus on liian pitkä (max 140 merkkiä)." -#: actions/apigroupcreate.php:224 actions/editgroup.php:204 +#: actions/apigroupcreate.php:226 actions/editgroup.php:208 #: actions/newgroup.php:148 actions/profilesettings.php:232 #: actions/register.php:227 msgid "Location is too long (max 255 chars)." msgstr "Kotipaikka on liian pitkä (max 255 merkkiä)." -#: actions/apigroupcreate.php:243 actions/editgroup.php:215 +#: actions/apigroupcreate.php:245 actions/editgroup.php:219 #: actions/newgroup.php:159 #, php-format msgid "Too many aliases! Maximum %d." msgstr "Liikaa aliaksia. Maksimimäärä on %d." -#: actions/apigroupcreate.php:264 actions/editgroup.php:224 +#: actions/apigroupcreate.php:266 actions/editgroup.php:228 #: actions/newgroup.php:168 #, php-format msgid "Invalid alias: \"%s\"" msgstr "Virheellinen alias: \"%s\"" -#: actions/apigroupcreate.php:273 actions/editgroup.php:228 +#: actions/apigroupcreate.php:275 actions/editgroup.php:232 #: 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/apigroupcreate.php:286 actions/editgroup.php:234 +#: actions/apigroupcreate.php:288 actions/editgroup.php:238 #: actions/newgroup.php:178 msgid "Alias can't be the same as nickname." msgstr "Alias ei voi olla sama kuin ryhmätunnus." @@ -454,15 +471,15 @@ msgstr "Alias ei voi olla sama kuin ryhmätunnus." msgid "Group not found!" msgstr "Ryhmää ei löytynyt!" -#: actions/apigroupjoin.php:110 actions/joingroup.php:90 +#: actions/apigroupjoin.php:110 actions/joingroup.php:100 msgid "You are already a member of that group." msgstr "Sinä kuulut jo tähän ryhmään." -#: actions/apigroupjoin.php:119 actions/joingroup.php:95 lib/command.php:221 +#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:221 msgid "You have been blocked from that group by the admin." msgstr "Sinut on estetty osallistumasta tähän ryhmään ylläpitäjän toimesta." -#: actions/apigroupjoin.php:138 actions/joingroup.php:124 +#: actions/apigroupjoin.php:138 actions/joingroup.php:134 #, fuzzy, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Käyttäjä %s ei voinut liittyä ryhmään %s." @@ -471,7 +488,7 @@ msgstr "Käyttäjä %s ei voinut liittyä ryhmään %s." msgid "You are not a member of this group." msgstr "Sinä et kuulu tähän ryhmään." -#: actions/apigroupleave.php:124 actions/leavegroup.php:119 +#: actions/apigroupleave.php:124 actions/leavegroup.php:129 #, fuzzy, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "Ei voitu poistaa käyttäjää %s ryhmästä %s" @@ -503,7 +520,7 @@ msgstr "Koko ei kelpaa." #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 #: actions/deletenotice.php:157 actions/disfavor.php:74 #: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54 -#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupblock.php:66 actions/grouplogo.php:312 #: actions/groupunblock.php:66 actions/imsettings.php:206 #: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 @@ -549,7 +566,7 @@ msgstr "" #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:103 actions/editapplication.php:139 -#: actions/emailsettings.php:256 actions/grouplogo.php:319 +#: actions/emailsettings.php:256 actions/grouplogo.php:322 #: actions/imsettings.php:220 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 #: actions/smssettings.php:248 lib/designsettings.php:304 @@ -572,13 +589,13 @@ msgid "" "give access to your %4$s account to third parties you trust." msgstr "" -#: actions/apioauthauthorize.php:310 lib/action.php:441 +#: actions/apioauthauthorize.php:310 msgid "Account" msgstr "Käyttäjätili" #: actions/apioauthauthorize.php:313 actions/login.php:230 #: actions/profilesettings.php:106 actions/register.php:424 -#: actions/showgroup.php:236 actions/tagother.php:94 +#: actions/showgroup.php:244 actions/tagother.php:94 #: actions/userauthorization.php:145 lib/groupeditform.php:152 #: lib/userprofile.php:131 msgid "Nickname" @@ -664,12 +681,12 @@ msgid "%1$s updates favorited by %2$s / %2$s." msgstr " Palvelun %s päivitykset, jotka %s / %s on merkinnyt suosikikseen." #: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:131 actions/userrss.php:90 +#: actions/grouprss.php:138 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "%s aikajana" -#: actions/apitimelinegroup.php:114 actions/apitimelineuser.php:126 +#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 #: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" @@ -706,7 +723,7 @@ msgstr "Vastaukset käyttäjälle %s" msgid "Repeats of %s" msgstr "Vastaukset käyttäjälle %s" -#: actions/apitimelinetag.php:102 actions/tag.php:66 +#: actions/apitimelinetag.php:102 actions/tag.php:67 #, php-format msgid "Notices tagged with %s" msgstr "Päivitykset joilla on tagi %s" @@ -727,8 +744,7 @@ msgstr "Liitettä ei ole." #: actions/avatarbynickname.php:59 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/leavegroup.php:76 -#: actions/showgroup.php:121 +#: actions/grouprss.php:91 actions/showgroup.php:121 msgid "No nickname." msgstr "Tunnusta ei ole." @@ -740,7 +756,7 @@ msgstr "Kokoa ei ole." msgid "Invalid size." msgstr "Koko ei kelpaa." -#: actions/avatarsettings.php:67 actions/showgroup.php:221 +#: actions/avatarsettings.php:67 actions/showgroup.php:229 #: lib/accountsettingsaction.php:112 msgid "Avatar" msgstr "Kuva" @@ -757,30 +773,30 @@ msgid "User without matching profile" msgstr "Käyttäjälle ei löydy profiilia" #: actions/avatarsettings.php:119 actions/avatarsettings.php:197 -#: actions/grouplogo.php:251 +#: actions/grouplogo.php:254 msgid "Avatar settings" msgstr "Profiilikuva-asetukset" #: actions/avatarsettings.php:127 actions/avatarsettings.php:205 -#: actions/grouplogo.php:199 actions/grouplogo.php:259 +#: actions/grouplogo.php:202 actions/grouplogo.php:262 msgid "Original" msgstr "Alkuperäinen" #: actions/avatarsettings.php:142 actions/avatarsettings.php:217 -#: actions/grouplogo.php:210 actions/grouplogo.php:271 +#: actions/grouplogo.php:213 actions/grouplogo.php:274 msgid "Preview" msgstr "Esikatselu" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:637 +#: lib/deleteuserform.php:66 lib/noticelist.php:655 msgid "Delete" msgstr "Poista" -#: actions/avatarsettings.php:166 actions/grouplogo.php:233 +#: actions/avatarsettings.php:166 actions/grouplogo.php:236 msgid "Upload" msgstr "Lataa" -#: actions/avatarsettings.php:231 actions/grouplogo.php:286 +#: actions/avatarsettings.php:231 actions/grouplogo.php:289 msgid "Crop" msgstr "Rajaa" @@ -788,7 +804,7 @@ msgstr "Rajaa" msgid "Pick a square area of the image to be your avatar" msgstr "Valitse neliön muotoinen alue kuvasta profiilikuvaksi" -#: actions/avatarsettings.php:343 actions/grouplogo.php:377 +#: actions/avatarsettings.php:343 actions/grouplogo.php:380 msgid "Lost our file data." msgstr "Tiedoston data hävisi." @@ -821,22 +837,22 @@ msgid "" msgstr "" #: actions/block.php:143 actions/deleteapplication.php:153 -#: actions/deletenotice.php:145 actions/deleteuser.php:147 +#: actions/deletenotice.php:145 actions/deleteuser.php:150 #: actions/groupblock.php:178 msgid "No" msgstr "Ei" -#: actions/block.php:143 actions/deleteuser.php:147 +#: actions/block.php:143 actions/deleteuser.php:150 msgid "Do not block this user" msgstr "Älä estä tätä käyttäjää" #: actions/block.php:144 actions/deleteapplication.php:158 -#: actions/deletenotice.php:146 actions/deleteuser.php:148 +#: actions/deletenotice.php:146 actions/deleteuser.php:151 #: actions/groupblock.php:179 lib/repeatform.php:132 msgid "Yes" msgstr "Kyllä" -#: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:355 lib/blockform.php:80 msgid "Block this user" msgstr "Estä tämä käyttäjä" @@ -844,39 +860,43 @@ msgstr "Estä tämä käyttäjä" msgid "Failed to save block information." msgstr "Käyttäjän estotiedon tallennus epäonnistui." -#: actions/blockedfromgroup.php:80 actions/editgroup.php:96 -#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/groupblock.php:86 -#: actions/groupbyid.php:83 actions/groupdesignsettings.php:97 -#: actions/grouplogo.php:99 actions/groupmembers.php:83 -#: actions/grouprss.php:98 actions/groupunblock.php:86 -#: actions/joingroup.php:83 actions/leavegroup.php:83 actions/makeadmin.php:86 -#: actions/showgroup.php:137 lib/command.php:212 lib/command.php:260 +#: actions/blockedfromgroup.php:80 actions/blockedfromgroup.php:87 +#: actions/editgroup.php:100 actions/foafgroup.php:44 actions/foafgroup.php:62 +#: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:100 actions/grouplogo.php:102 +#: actions/groupmembers.php:83 actions/groupmembers.php:90 +#: actions/grouprss.php:98 actions/grouprss.php:105 +#: actions/groupunblock.php:86 actions/joingroup.php:82 +#: actions/joingroup.php:93 actions/leavegroup.php:82 +#: actions/leavegroup.php:93 actions/makeadmin.php:86 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:212 +#: lib/command.php:260 msgid "No such group." msgstr "Tuota ryhmää ei ole." -#: actions/blockedfromgroup.php:90 +#: actions/blockedfromgroup.php:97 #, fuzzy, php-format msgid "%s blocked profiles" msgstr "Käyttäjän profiili" -#: actions/blockedfromgroup.php:93 +#: actions/blockedfromgroup.php:100 #, fuzzy, php-format msgid "%1$s blocked profiles, page %2$d" msgstr "%s ja kaverit, sivu %d" -#: actions/blockedfromgroup.php:108 +#: actions/blockedfromgroup.php:115 msgid "A list of the users blocked from joining this group." msgstr "Lista käyttäjistä, jotka ovat estetty liittymästä tähän ryhmään." -#: actions/blockedfromgroup.php:281 +#: actions/blockedfromgroup.php:288 msgid "Unblock user from group" msgstr "Poista käyttäjän esto ryhmästä" -#: actions/blockedfromgroup.php:313 lib/unblockform.php:69 +#: actions/blockedfromgroup.php:320 lib/unblockform.php:69 msgid "Unblock" msgstr "Poista esto" -#: actions/blockedfromgroup.php:313 lib/unblockform.php:80 +#: actions/blockedfromgroup.php:320 lib/unblockform.php:80 msgid "Unblock this user" msgstr "Poista esto tältä käyttäjältä" @@ -957,7 +977,7 @@ msgstr "Sinä et kuulu tähän ryhmään." #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1197 +#: lib/action.php:1228 msgid "There was a problem with your session token." msgstr "Istuntoavaimesi kanssa oli ongelma." @@ -983,12 +1003,13 @@ msgstr "Älä poista tätä päivitystä" msgid "Delete this application" msgstr "Poista tämä päivitys" +#. TRANS: Client error message #: 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:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 -#: lib/adminpanelaction.php:72 lib/profileformaction.php:63 +#: lib/adminpanelaction.php:73 lib/profileformaction.php:63 #: lib/settingsaction.php:72 msgid "Not logged in." msgstr "Et ole kirjautunut sisään." @@ -1017,7 +1038,7 @@ msgstr "Oletko varma että haluat poistaa tämän päivityksen?" msgid "Do not delete this notice" msgstr "Älä poista tätä päivitystä" -#: actions/deletenotice.php:146 lib/noticelist.php:637 +#: actions/deletenotice.php:146 lib/noticelist.php:655 msgid "Delete this notice" msgstr "Poista tämä päivitys" @@ -1034,19 +1055,19 @@ msgstr "Et voi poistaa toisen käyttäjän päivitystä." msgid "Delete user" msgstr "Poista käyttäjä" -#: actions/deleteuser.php:135 +#: actions/deleteuser.php:136 msgid "" "Are you sure you want to delete this user? This will clear all data about " "the user from the database, without a backup." msgstr "" -#: actions/deleteuser.php:148 lib/deleteuserform.php:77 +#: actions/deleteuser.php:151 lib/deleteuserform.php:77 #, fuzzy msgid "Delete this user" msgstr "Poista tämä päivitys" #: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 -#: lib/adminpanelaction.php:316 lib/groupnav.php:119 +#: lib/groupnav.php:119 msgid "Design" msgstr "Ulkoasu" @@ -1154,6 +1175,17 @@ msgstr "" msgid "Reset back to default" msgstr "" +#: actions/designadminpanel.php:586 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/tagother.php:154 actions/useradminpanel.php:294 +#: lib/applicationeditform.php:333 lib/applicationeditform.php:334 +#: lib/designsettings.php:256 lib/groupeditform.php:202 +msgid "Save" +msgstr "Tallenna" + #: actions/designadminpanel.php:587 lib/designsettings.php:257 msgid "Save design" msgstr "" @@ -1257,30 +1289,30 @@ msgstr "Muokkaa ryhmää %s" msgid "You must be logged in to create a group." msgstr "Sinun pitää olla kirjautunut sisään jotta voit luoda ryhmän." -#: actions/editgroup.php:103 actions/editgroup.php:168 -#: actions/groupdesignsettings.php:104 actions/grouplogo.php:106 +#: actions/editgroup.php:107 actions/editgroup.php:172 +#: actions/groupdesignsettings.php:107 actions/grouplogo.php:109 #, fuzzy msgid "You must be an admin to edit the group." msgstr "Sinun pitää olla ylläpitäjä, jotta voit muokata ryhmää" -#: actions/editgroup.php:154 +#: actions/editgroup.php:158 msgid "Use this form to edit the group." msgstr "Käytä tätä lomaketta muokataksesi ryhmää." -#: actions/editgroup.php:201 actions/newgroup.php:145 +#: actions/editgroup.php:205 actions/newgroup.php:145 #, php-format msgid "description is too long (max %d chars)." msgstr "kuvaus on liian pitkä (max %d merkkiä)." -#: actions/editgroup.php:253 +#: actions/editgroup.php:258 msgid "Could not update group." msgstr "Ei voitu päivittää ryhmää." -#: actions/editgroup.php:259 classes/User_group.php:433 +#: actions/editgroup.php:264 classes/User_group.php:478 msgid "Could not create aliases." msgstr "Ei voitu lisätä aliasta." -#: actions/editgroup.php:269 +#: actions/editgroup.php:280 msgid "Options saved." msgstr "Asetukset tallennettu." @@ -1627,7 +1659,7 @@ msgstr "Käyttäjä on asettanut eston sinulle." msgid "User is not a member of group." msgstr "Käyttäjä ei kuulu tähän ryhmään." -#: actions/groupblock.php:136 actions/groupmembers.php:316 +#: actions/groupblock.php:136 actions/groupmembers.php:323 msgid "Block user from group" msgstr "Estä käyttäjä ryhmästä" @@ -1661,87 +1693,87 @@ msgid "You must be logged in to edit a group." msgstr "" "Sinun pitää olla kirjautunut sisään, jotta voit muuttaa ryhmän tietoja." -#: actions/groupdesignsettings.php:141 +#: actions/groupdesignsettings.php:144 msgid "Group design" msgstr "Ryhmän ulkoasu" -#: actions/groupdesignsettings.php:152 +#: actions/groupdesignsettings.php:155 msgid "" "Customize the way your group looks with a background image and a colour " "palette of your choice." msgstr "" -#: actions/groupdesignsettings.php:263 actions/userdesignsettings.php:186 +#: actions/groupdesignsettings.php:266 actions/userdesignsettings.php:186 #: lib/designsettings.php:391 lib/designsettings.php:413 msgid "Couldn't update your design." msgstr "Ei voitu päivittää sinun sivusi ulkoasua." -#: actions/groupdesignsettings.php:308 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231 msgid "Design preferences saved." msgstr "Ulkoasuasetukset tallennettu." -#: actions/grouplogo.php:139 actions/grouplogo.php:192 +#: actions/grouplogo.php:142 actions/grouplogo.php:195 msgid "Group logo" msgstr "Ryhmän logo" -#: actions/grouplogo.php:150 +#: actions/grouplogo.php:153 #, 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." -#: actions/grouplogo.php:178 +#: actions/grouplogo.php:181 #, fuzzy msgid "User without matching profile." msgstr "Käyttäjälle ei löydy profiilia" -#: actions/grouplogo.php:362 +#: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." msgstr "Valitse neliön muotoinen alue kuvasta logokuvaksi" -#: actions/grouplogo.php:396 +#: actions/grouplogo.php:399 msgid "Logo updated." msgstr "Logo päivitetty." -#: actions/grouplogo.php:398 +#: actions/grouplogo.php:401 msgid "Failed updating logo." msgstr "Logon päivittäminen epäonnistui." -#: actions/groupmembers.php:93 lib/groupnav.php:92 +#: actions/groupmembers.php:100 lib/groupnav.php:92 #, php-format msgid "%s group members" msgstr "Ryhmän %s jäsenet" -#: actions/groupmembers.php:96 +#: actions/groupmembers.php:103 #, fuzzy, php-format msgid "%1$s group members, page %2$d" msgstr "Ryhmän %s jäsenet, sivu %d" -#: actions/groupmembers.php:111 +#: actions/groupmembers.php:118 msgid "A list of the users in this group." msgstr "Lista ryhmän käyttäjistä." -#: actions/groupmembers.php:175 lib/action.php:448 lib/groupnav.php:107 +#: actions/groupmembers.php:182 lib/groupnav.php:107 msgid "Admin" msgstr "Ylläpito" -#: actions/groupmembers.php:348 lib/blockform.php:69 +#: actions/groupmembers.php:355 lib/blockform.php:69 msgid "Block" msgstr "Estä" -#: actions/groupmembers.php:443 +#: actions/groupmembers.php:450 msgid "Make user an admin of the group" msgstr "Tee tästä käyttäjästä ylläpitäjä" -#: actions/groupmembers.php:475 +#: actions/groupmembers.php:482 msgid "Make Admin" msgstr "Tee ylläpitäjäksi" -#: actions/groupmembers.php:475 +#: actions/groupmembers.php:482 msgid "Make this user an admin" msgstr "Tee tästä käyttäjästä ylläpitäjä" -#: actions/grouprss.php:133 +#: actions/grouprss.php:140 #, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Ryhmän %1$s käyttäjien päivitykset palvelussa %2$s!" @@ -2002,16 +2034,19 @@ msgstr "Henkilökohtainen viesti" msgid "Optionally add a personal message to the invitation." msgstr "Voit myös lisätä oman viestisi kutsuun" -#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:236 +#. TRANS: Send button for inviting friends +#: actions/invite.php:198 +#, fuzzy +msgctxt "BUTTON" msgid "Send" msgstr "Lähetä" -#: actions/invite.php:226 +#: actions/invite.php:227 #, 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:228 +#: actions/invite.php:229 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -2071,7 +2106,12 @@ msgstr "" msgid "You must be logged in to join a group." msgstr "Sinun pitää olla kirjautunut sisään, jos haluat liittyä ryhmään." -#: actions/joingroup.php:131 +#: actions/joingroup.php:88 actions/leavegroup.php:88 +#, fuzzy +msgid "No nickname or ID." +msgstr "Tunnusta ei ole." + +#: actions/joingroup.php:141 #, fuzzy, php-format msgid "%1$s joined group %2$s" msgstr "%s liittyi ryhmään %s" @@ -2080,11 +2120,11 @@ msgstr "%s liittyi ryhmään %s" msgid "You must be logged in to leave a group." msgstr "Sinun pitää olla kirjautunut sisään, jotta voit erota ryhmästä." -#: actions/leavegroup.php:90 lib/command.php:265 +#: actions/leavegroup.php:100 lib/command.php:265 msgid "You are not a member of that group." msgstr "Sinä et kuulu tähän ryhmään." -#: actions/leavegroup.php:127 +#: actions/leavegroup.php:137 #, fuzzy, php-format msgid "%1$s left group %2$s" msgstr "%s erosi ryhmästä %s" @@ -2102,8 +2142,7 @@ msgstr "Väärä käyttäjätunnus tai salasana" msgid "Error setting user. You are probably not authorized." msgstr "Sinulla ei ole valtuutusta tähän." -#: actions/login.php:188 actions/login.php:241 lib/action.php:466 -#: lib/logingroupnav.php:79 +#: actions/login.php:188 actions/login.php:241 lib/logingroupnav.php:79 msgid "Login" msgstr "Kirjaudu sisään" @@ -2364,8 +2403,8 @@ msgstr "Yhdistä" msgid "Only " msgstr "Vain " -#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 -#: lib/api.php:1068 lib/api.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 +#: lib/apiaction.php:1068 lib/apiaction.php:1177 msgid "Not a supported data format." msgstr "Tuo ei ole tuettu tietomuoto." @@ -2511,7 +2550,7 @@ msgstr "Uutta salasanaa ei voida tallentaa." msgid "Password saved." msgstr "Salasana tallennettu." -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:331 +#: actions/pathsadminpanel.php:59 msgid "Paths" msgstr "Polut" @@ -2544,7 +2583,6 @@ msgid "Invalid SSL server. The maximum length is 255 characters." msgstr "" #: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58 -#: lib/adminpanelaction.php:311 #, fuzzy msgid "Site" msgstr "Kutsu" @@ -2732,7 +2770,7 @@ msgstr "" "välilyöntejä" #: actions/profilesettings.php:111 actions/register.php:448 -#: actions/showgroup.php:247 actions/tagother.php:104 +#: actions/showgroup.php:255 actions/tagother.php:104 #: lib/groupeditform.php:157 lib/userprofile.php:149 msgid "Full name" msgstr "Koko nimi" @@ -2760,7 +2798,7 @@ msgid "Bio" msgstr "Tietoja" #: actions/profilesettings.php:132 actions/register.php:471 -#: actions/showgroup.php:256 actions/tagother.php:112 +#: actions/showgroup.php:264 actions/tagother.php:112 #: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:164 msgid "Location" @@ -2845,7 +2883,8 @@ msgstr "Ei voitu tallentaa profiilia." msgid "Couldn't save tags." msgstr "Tageja ei voitu tallentaa." -#: actions/profilesettings.php:391 lib/adminpanelaction.php:137 +#. TRANS: Message after successful saving of administrative settings. +#: actions/profilesettings.php:391 lib/adminpanelaction.php:141 msgid "Settings saved." msgstr "Asetukset tallennettu." @@ -2858,45 +2897,45 @@ msgstr "" msgid "Could not retrieve public stream." msgstr "Julkista päivitysvirtaa ei saatu." -#: actions/public.php:129 +#: actions/public.php:130 #, php-format msgid "Public timeline, page %d" msgstr "Julkinen aikajana, sivu %d" -#: actions/public.php:131 lib/publicgroupnav.php:79 +#: actions/public.php:132 lib/publicgroupnav.php:79 msgid "Public timeline" msgstr "Julkinen aikajana" -#: actions/public.php:159 +#: actions/public.php:160 msgid "Public Stream Feed (RSS 1.0)" msgstr "Julkinen syöte (RSS 1.0)" -#: actions/public.php:163 +#: actions/public.php:164 msgid "Public Stream Feed (RSS 2.0)" msgstr "Julkisen Aikajanan Syöte (RSS 2.0)" -#: actions/public.php:167 +#: actions/public.php:168 msgid "Public Stream Feed (Atom)" msgstr "Julkinen syöte (Atom)" -#: actions/public.php:187 +#: actions/public.php:188 #, php-format msgid "" "This is the public timeline for %%site.name%% but no one has posted anything " "yet." msgstr "" -#: actions/public.php:190 +#: actions/public.php:191 msgid "Be the first to post!" msgstr "Ole ensimmäinen joka lähettää päivityksen!" -#: actions/public.php:194 +#: actions/public.php:195 #, php-format msgid "" "Why not [register an account](%%action.register%%) and be the first to post!" msgstr "" -#: actions/public.php:241 +#: actions/public.php:242 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2905,7 +2944,7 @@ msgid "" "friends, family, and colleagues! ([Read more](%%doc.help%%))" msgstr "" -#: actions/public.php:246 +#: actions/public.php:247 #, fuzzy, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -3082,8 +3121,7 @@ msgstr "Virheellinen kutsukoodin." msgid "Registration successful" msgstr "Rekisteröityminen onnistui" -#: actions/register.php:114 actions/register.php:503 lib/action.php:463 -#: lib/logingroupnav.php:85 +#: actions/register.php:114 actions/register.php:503 lib/logingroupnav.php:85 msgid "Register" msgstr "Rekisteröidy" @@ -3278,7 +3316,7 @@ msgstr "Et voi rekisteröityä, jos et hyväksy lisenssiehtoja." msgid "You already repeated that notice." msgstr "Sinä olet jo estänyt tämän käyttäjän." -#: actions/repeat.php:114 lib/noticelist.php:656 +#: actions/repeat.php:114 lib/noticelist.php:674 #, fuzzy msgid "Repeated" msgstr "Luotu" @@ -3288,33 +3326,33 @@ msgstr "Luotu" msgid "Repeated!" msgstr "Luotu" -#: actions/replies.php:125 actions/repliesrss.php:68 +#: actions/replies.php:126 actions/repliesrss.php:68 #: lib/personalgroupnav.php:105 #, php-format msgid "Replies to %s" msgstr "Vastaukset käyttäjälle %s" -#: actions/replies.php:127 +#: actions/replies.php:128 #, fuzzy, php-format msgid "Replies to %1$s, page %2$d" msgstr "Viesti käyttäjälle %1$s, %2$s" -#: actions/replies.php:144 +#: actions/replies.php:145 #, fuzzy, php-format msgid "Replies feed for %s (RSS 1.0)" msgstr "Päivityksien syöte käyttäjälle %s" -#: actions/replies.php:151 +#: actions/replies.php:152 #, fuzzy, php-format msgid "Replies feed for %s (RSS 2.0)" msgstr "Päivityksien syöte käyttäjälle %s" -#: actions/replies.php:158 +#: actions/replies.php:159 #, php-format msgid "Replies feed for %s (Atom)" msgstr "Päivityksien syöte käyttäjälle %s" -#: actions/replies.php:198 +#: actions/replies.php:199 #, fuzzy, php-format msgid "" "This is the timeline showing replies to %1$s but %2$s hasn't received a " @@ -3323,14 +3361,14 @@ msgstr "" "Tämä on käyttäjän %s aikajana, mutta %s ei ole lähettänyt vielä yhtään " "päivitystä." -#: actions/replies.php:203 +#: actions/replies.php:204 #, php-format msgid "" "You can engage other users in a conversation, subscribe to more people or " "[join groups](%%action.groups%%)." msgstr "" -#: actions/replies.php:205 +#: actions/replies.php:206 #, fuzzy, php-format msgid "" "You can try to [nudge %1$s](../%2$s) or [post something to his or her " @@ -3360,7 +3398,6 @@ msgid "User is already sandboxed." msgstr "Käyttäjä on asettanut eston sinulle." #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:336 msgid "Sessions" msgstr "" @@ -3386,7 +3423,7 @@ msgid "Turn on debugging output for sessions." msgstr "" #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/useradminpanel.php:293 +#: actions/useradminpanel.php:294 #, fuzzy msgid "Save site settings" msgstr "Profiilikuva-asetukset" @@ -3421,7 +3458,7 @@ msgstr "Sivutus" msgid "Description" msgstr "Kuvaus" -#: actions/showapplication.php:192 actions/showgroup.php:429 +#: actions/showapplication.php:192 actions/showgroup.php:437 #: lib/profileaction.php:174 msgid "Statistics" msgstr "Tilastot" @@ -3483,35 +3520,35 @@ msgstr "Käyttäjän %s suosikkipäivitykset" msgid "Could not retrieve favorite notices." msgstr "Ei saatu haettua suosikkipäivityksiä." -#: actions/showfavorites.php:170 +#: actions/showfavorites.php:171 #, php-format msgid "Feed for favorites of %s (RSS 1.0)" msgstr "Käyttäjän %s kavereiden syöte (RSS 1.0)" -#: actions/showfavorites.php:177 +#: actions/showfavorites.php:178 #, php-format msgid "Feed for favorites of %s (RSS 2.0)" msgstr "Käyttäjän %s kavereiden syöte (RSS 2.0)" -#: actions/showfavorites.php:184 +#: actions/showfavorites.php:185 #, php-format msgid "Feed for favorites of %s (Atom)" msgstr "Käyttäjän %s kavereiden syöte (Atom)" -#: actions/showfavorites.php:205 +#: actions/showfavorites.php:206 msgid "" "You haven't chosen any favorite notices yet. Click the fave button on " "notices you like to bookmark them for later or shed a spotlight on them." msgstr "" -#: actions/showfavorites.php:207 +#: actions/showfavorites.php:208 #, 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:211 +#: actions/showfavorites.php:212 #, php-format msgid "" "%s hasn't added any notices to his favorites yet. Why not [register an " @@ -3519,7 +3556,7 @@ msgid "" "would add to their favorites :)" msgstr "" -#: actions/showfavorites.php:242 +#: actions/showfavorites.php:243 msgid "This is a way to share what you like." msgstr "" @@ -3533,67 +3570,67 @@ msgstr "Ryhmä %s" msgid "%1$s group, page %2$d" msgstr "Ryhmän %s jäsenet, sivu %d" -#: actions/showgroup.php:218 +#: actions/showgroup.php:226 msgid "Group profile" msgstr "Ryhmän profiili" -#: actions/showgroup.php:263 actions/tagother.php:118 +#: actions/showgroup.php:271 actions/tagother.php:118 #: actions/userauthorization.php:175 lib/userprofile.php:177 msgid "URL" msgstr "URL" -#: actions/showgroup.php:274 actions/tagother.php:128 +#: actions/showgroup.php:282 actions/tagother.php:128 #: actions/userauthorization.php:187 lib/userprofile.php:194 msgid "Note" msgstr "Huomaa" -#: actions/showgroup.php:284 lib/groupeditform.php:184 +#: actions/showgroup.php:292 lib/groupeditform.php:184 msgid "Aliases" msgstr "Aliakset" -#: actions/showgroup.php:293 +#: actions/showgroup.php:301 msgid "Group actions" msgstr "Ryhmän toiminnot" -#: actions/showgroup.php:328 +#: actions/showgroup.php:336 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Syöte ryhmän %s päivityksille (RSS 1.0)" -#: actions/showgroup.php:334 +#: actions/showgroup.php:342 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Syöte ryhmän %s päivityksille (RSS 2.0)" -#: actions/showgroup.php:340 +#: actions/showgroup.php:348 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "Syöte ryhmän %s päivityksille (Atom)" -#: actions/showgroup.php:345 +#: actions/showgroup.php:353 #, php-format msgid "FOAF for %s group" msgstr "Käyttäjän %s lähetetyt viestit" -#: actions/showgroup.php:381 actions/showgroup.php:438 lib/groupnav.php:91 +#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 msgid "Members" msgstr "Jäsenet" -#: actions/showgroup.php:386 lib/profileaction.php:117 +#: actions/showgroup.php:394 lib/profileaction.php:117 #: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(Tyhjä)" -#: actions/showgroup.php:392 +#: actions/showgroup.php:400 msgid "All members" msgstr "Kaikki jäsenet" -#: actions/showgroup.php:432 +#: actions/showgroup.php:440 msgid "Created" msgstr "Luotu" -#: actions/showgroup.php:448 +#: actions/showgroup.php:456 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3603,7 +3640,7 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showgroup.php:454 +#: actions/showgroup.php:462 #, fuzzy, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3614,7 +3651,7 @@ msgstr "" "**%s** on ryhmä palvelussa %%%%site.name%%%%, joka on [mikroblogauspalvelu]" "(http://en.wikipedia.org/wiki/Micro-blogging)" -#: actions/showgroup.php:482 +#: actions/showgroup.php:490 msgid "Admins" msgstr "Ylläpitäjät" @@ -4085,22 +4122,22 @@ msgstr "Jabber" msgid "SMS" msgstr "SMS" -#: actions/tag.php:68 +#: actions/tag.php:69 #, fuzzy, php-format msgid "Notices tagged with %1$s, page %2$d" msgstr "Käyttäjät joilla henkilötagi %s - sivu %d" -#: actions/tag.php:86 +#: actions/tag.php:87 #, fuzzy, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Päivityksien syöte käyttäjälle %s" -#: actions/tag.php:92 +#: actions/tag.php:93 #, fuzzy, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Päivityksien syöte käyttäjälle %s" -#: actions/tag.php:98 +#: actions/tag.php:99 #, fuzzy, php-format msgid "Notice feed for tag %s (Atom)" msgstr "Päivityksien syöte käyttäjälle %s" @@ -4157,7 +4194,7 @@ msgstr "" msgid "No such tag." msgstr "Tuota tagia ei ole." -#: actions/twitapitrends.php:87 +#: actions/twitapitrends.php:85 msgid "API method under construction." msgstr "API-metodi on työn alla!" @@ -4190,77 +4227,79 @@ msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" -#: actions/useradminpanel.php:58 lib/adminpanelaction.php:321 -#: lib/personalgroupnav.php:115 +#. TRANS: User admin panel title +#: actions/useradminpanel.php:59 +#, fuzzy +msgctxt "TITLE" msgid "User" msgstr "Käyttäjä" -#: actions/useradminpanel.php:69 +#: actions/useradminpanel.php:70 msgid "User settings for this StatusNet site." msgstr "" -#: actions/useradminpanel.php:148 +#: actions/useradminpanel.php:149 msgid "Invalid bio limit. Must be numeric." msgstr "" -#: actions/useradminpanel.php:154 +#: actions/useradminpanel.php:155 msgid "Invalid welcome text. Max length is 255 characters." msgstr "" -#: actions/useradminpanel.php:164 +#: actions/useradminpanel.php:165 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" -#: actions/useradminpanel.php:217 lib/accountsettingsaction.php:108 +#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Profiili" -#: actions/useradminpanel.php:221 +#: actions/useradminpanel.php:222 msgid "Bio Limit" msgstr "" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:223 msgid "Maximum length of a profile bio in characters." msgstr "" -#: actions/useradminpanel.php:230 +#: actions/useradminpanel.php:231 #, fuzzy msgid "New users" msgstr "Kutsu uusia käyttäjiä" -#: actions/useradminpanel.php:234 +#: actions/useradminpanel.php:235 msgid "New user welcome" msgstr "" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:236 msgid "Welcome text for new users (Max 255 chars)." msgstr "" -#: actions/useradminpanel.php:240 +#: actions/useradminpanel.php:241 #, fuzzy msgid "Default subscription" msgstr "Kaikki tilaukset" -#: actions/useradminpanel.php:241 +#: actions/useradminpanel.php:242 #, fuzzy msgid "Automatically subscribe new users to this user." msgstr "" "Tilaa automaattisesti kaikki, jotka tilaavat päivitykseni (ei sovi hyvin " "ihmiskäyttäjille)" -#: actions/useradminpanel.php:250 +#: actions/useradminpanel.php:251 #, fuzzy msgid "Invitations" msgstr "Kutsu(t) lähetettiin" -#: actions/useradminpanel.php:255 +#: actions/useradminpanel.php:256 #, fuzzy msgid "Invitations enabled" msgstr "Kutsu(t) lähetettiin" -#: actions/useradminpanel.php:257 +#: actions/useradminpanel.php:258 msgid "Whether to allow users to invite new users." msgstr "" @@ -4446,7 +4485,7 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:196 lib/action.php:747 +#: actions/version.php:196 lib/action.php:778 #, fuzzy msgid "Version" msgstr "Omat" @@ -4487,6 +4526,11 @@ msgstr "Ei voitu päivittää ryhmää." msgid "Group leave failed." msgstr "Ryhmän profiili" +#: classes/Local_group.php:41 +#, fuzzy +msgid "Could not update local group." +msgstr "Ei voitu päivittää ryhmää." + #: classes/Login_token.php:76 #, fuzzy, php-format msgid "Could not create login token for %s" @@ -4505,28 +4549,28 @@ msgstr "Viestin tallennus ei onnistunut." msgid "Could not update message with new URI." msgstr "Viestin päivittäminen uudella URI-osoitteella ei onnistunut." -#: classes/Notice.php:157 +#: classes/Notice.php:172 #, php-format msgid "DB error inserting hashtag: %s" msgstr "Tietokantavirhe tallennettaessa risutagiä: %s" -#: classes/Notice.php:222 +#: classes/Notice.php:239 #, fuzzy msgid "Problem saving notice. Too long." msgstr "Ongelma päivityksen tallentamisessa." -#: classes/Notice.php:226 +#: classes/Notice.php:243 msgid "Problem saving notice. Unknown user." msgstr "Virhe tapahtui päivityksen tallennuksessa. Tuntematon käyttäjä." -#: classes/Notice.php:231 +#: classes/Notice.php:248 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ä." -#: classes/Notice.php:237 +#: classes/Notice.php:254 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." @@ -4534,20 +4578,20 @@ 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:243 +#: classes/Notice.php:260 msgid "You are banned from posting notices on this site." msgstr "Päivityksesi tähän palveluun on estetty." -#: classes/Notice.php:309 classes/Notice.php:335 +#: classes/Notice.php:326 classes/Notice.php:352 msgid "Problem saving notice." msgstr "Ongelma päivityksen tallentamisessa." -#: classes/Notice.php:882 +#: classes/Notice.php:911 #, fuzzy msgid "Problem saving group inbox." msgstr "Ongelma päivityksen tallentamisessa." -#: classes/Notice.php:1407 +#: classes/Notice.php:1442 #, fuzzy, php-format msgid "RT @%1$s %2$s" msgstr "%1$s (%2$s)" @@ -4579,19 +4623,29 @@ msgstr "Ei voitu poistaa tilausta." msgid "Couldn't delete subscription." msgstr "Ei voitu poistaa tilausta." -#: classes/User.php:372 +#: classes/User.php:373 #, fuzzy, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "Viesti käyttäjälle %1$s, %2$s" -#: classes/User_group.php:423 +#: classes/User_group.php:462 msgid "Could not create group." msgstr "Ryhmän luonti ei onnistunut." -#: classes/User_group.php:452 +#: classes/User_group.php:471 +#, fuzzy +msgid "Could not set group URI." +msgstr "Ryhmän jäsenyystietoja ei voitu asettaa." + +#: classes/User_group.php:492 msgid "Could not set group membership." msgstr "Ryhmän jäsenyystietoja ei voitu asettaa." +#: classes/User_group.php:506 +#, fuzzy +msgid "Could not save local group info." +msgstr "Tilausta ei onnistuttu tallentamaan." + #: lib/accountsettingsaction.php:108 msgid "Change your profile settings" msgstr "Vaihda profiiliasetuksesi" @@ -4634,123 +4688,191 @@ msgstr "Nimetön sivu" msgid "Primary site navigation" msgstr "Ensisijainen sivunavigointi" +#. TRANS: Tooltip for main menu option "Personal" #: lib/action.php:439 -msgid "Home" -msgstr "Koti" - -#: lib/action.php:439 +#, fuzzy +msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Henkilökohtainen profiili ja kavereiden aikajana" -#: lib/action.php:441 +#: lib/action.php:442 +#, fuzzy +msgctxt "MENU" +msgid "Personal" +msgstr "Omat" + +#. TRANS: Tooltip for main menu option "Account" +#: lib/action.php:444 +#, fuzzy +msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Muuta sähköpostiosoitettasi, kuvaasi, salasanaasi, profiiliasi" -#: lib/action.php:444 -msgid "Connect" -msgstr "Yhdistä" - -#: lib/action.php:444 +#: lib/action.php:447 #, fuzzy +msgctxt "MENU" +msgid "Account" +msgstr "Käyttäjätili" + +#. TRANS: Tooltip for main menu option "Services" +#: lib/action.php:450 +#, fuzzy +msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Ei voitu uudelleenohjata palvelimelle: %s" -#: lib/action.php:448 +#: lib/action.php:453 #, fuzzy +msgctxt "MENU" +msgid "Connect" +msgstr "Yhdistä" + +#. TRANS: Tooltip for menu option "Admin" +#: lib/action.php:457 +#, fuzzy +msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Ensisijainen sivunavigointi" -#: lib/action.php:452 lib/subgroupnav.php:105 -msgid "Invite" -msgstr "Kutsu" +#: lib/action.php:460 +#, fuzzy +msgctxt "MENU" +msgid "Admin" +msgstr "Ylläpito" -#: lib/action.php:453 lib/subgroupnav.php:106 -#, php-format +#. TRANS: Tooltip for main menu option "Invite" +#: lib/action.php:464 +#, fuzzy, php-format +msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Kutsu kavereita ja työkavereita liittymään palveluun %s" -#: lib/action.php:458 -msgid "Logout" -msgstr "Kirjaudu ulos" +#: lib/action.php:467 +#, fuzzy +msgctxt "MENU" +msgid "Invite" +msgstr "Kutsu" -#: lib/action.php:458 +#. TRANS: Tooltip for main menu option "Logout" +#: lib/action.php:473 +#, fuzzy +msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Kirjaudu ulos palvelusta" -#: lib/action.php:463 +#: lib/action.php:476 +#, fuzzy +msgctxt "MENU" +msgid "Logout" +msgstr "Kirjaudu ulos" + +#. TRANS: Tooltip for main menu option "Register" +#: lib/action.php:481 +#, fuzzy +msgctxt "TOOLTIP" msgid "Create an account" msgstr "Luo uusi käyttäjätili" -#: lib/action.php:466 +#: lib/action.php:484 +#, fuzzy +msgctxt "MENU" +msgid "Register" +msgstr "Rekisteröidy" + +#. TRANS: Tooltip for main menu option "Login" +#: lib/action.php:487 +#, fuzzy +msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Kirjaudu sisään palveluun" -#: lib/action.php:469 lib/action.php:732 -msgid "Help" -msgstr "Ohjeet" +#: lib/action.php:490 +#, fuzzy +msgctxt "MENU" +msgid "Login" +msgstr "Kirjaudu sisään" -#: lib/action.php:469 +#. TRANS: Tooltip for main menu option "Help" +#: lib/action.php:493 +#, fuzzy +msgctxt "TOOLTIP" msgid "Help me!" msgstr "Auta minua!" -#: lib/action.php:472 lib/searchaction.php:127 -msgid "Search" -msgstr "Haku" +#: lib/action.php:496 +#, fuzzy +msgctxt "MENU" +msgid "Help" +msgstr "Ohjeet" -#: lib/action.php:472 +#. TRANS: Tooltip for main menu option "Search" +#: lib/action.php:499 +#, fuzzy +msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Hae ihmisiä tai tekstiä" -#: lib/action.php:493 +#: lib/action.php:502 +#, fuzzy +msgctxt "MENU" +msgid "Search" +msgstr "Haku" + +#. TRANS: DT element for site notice. String is hidden in default CSS. +#: lib/action.php:524 msgid "Site notice" msgstr "Palvelun ilmoitus" -#: lib/action.php:559 +#: lib/action.php:590 msgid "Local views" msgstr "Paikalliset näkymät" -#: lib/action.php:625 +#: lib/action.php:656 msgid "Page notice" msgstr "Sivuilmoitus" -#: lib/action.php:727 +#: lib/action.php:758 msgid "Secondary site navigation" msgstr "Toissijainen sivunavigointi" -#: lib/action.php:734 +#: lib/action.php:763 +msgid "Help" +msgstr "Ohjeet" + +#: lib/action.php:765 msgid "About" msgstr "Tietoa" -#: lib/action.php:736 +#: lib/action.php:767 msgid "FAQ" msgstr "UKK" -#: lib/action.php:740 +#: lib/action.php:771 msgid "TOS" msgstr "" -#: lib/action.php:743 +#: lib/action.php:774 msgid "Privacy" msgstr "Yksityisyys" -#: lib/action.php:745 +#: lib/action.php:776 msgid "Source" msgstr "Lähdekoodi" -#: lib/action.php:749 +#: lib/action.php:780 msgid "Contact" msgstr "Ota yhteyttä" -#: lib/action.php:751 +#: lib/action.php:782 #, fuzzy msgid "Badge" msgstr "Tönäise" -#: lib/action.php:779 +#: lib/action.php:810 msgid "StatusNet software license" msgstr "StatusNet-ohjelmiston lisenssi" -#: lib/action.php:782 +#: lib/action.php:813 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4759,12 +4881,12 @@ msgstr "" "**%%site.name%%** on mikroblogipalvelu, jonka tarjoaa [%%site.broughtby%%](%%" "site.broughtbyurl%%). " -#: lib/action.php:784 +#: lib/action.php:815 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** on mikroblogipalvelu. " -#: lib/action.php:786 +#: lib/action.php:817 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4775,117 +4897,170 @@ msgstr "" "versio %s, saatavilla lisenssillä [GNU Affero General Public License](http://" "www.fsf.org/licensing/licenses/agpl-3.0.html)." -#: lib/action.php:801 +#: lib/action.php:832 #, fuzzy msgid "Site content license" msgstr "StatusNet-ohjelmiston lisenssi" -#: lib/action.php:806 +#: lib/action.php:837 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:811 +#: lib/action.php:842 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:814 +#: lib/action.php:845 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" -#: lib/action.php:827 +#: lib/action.php:858 msgid "All " msgstr "Kaikki " -#: lib/action.php:833 +#: lib/action.php:864 msgid "license." msgstr "lisenssi." -#: lib/action.php:1132 +#: lib/action.php:1163 msgid "Pagination" msgstr "Sivutus" -#: lib/action.php:1141 +#: lib/action.php:1172 msgid "After" msgstr "Myöhemmin" -#: lib/action.php:1149 +#: lib/action.php:1180 msgid "Before" msgstr "Aiemmin" -#: lib/activity.php:382 +#: lib/activity.php:449 msgid "Can't handle remote content yet." msgstr "" -#: lib/activity.php:410 +#: lib/activity.php:477 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activity.php:414 +#: lib/activity.php:481 msgid "Can't handle embedded Base64 content yet." msgstr "" -#: lib/adminpanelaction.php:96 +#. TRANS: Client error message +#: lib/adminpanelaction.php:98 #, fuzzy msgid "You cannot make changes to this site." msgstr "Et voi lähettää viestiä tälle käyttäjälle." -#: lib/adminpanelaction.php:107 +#. TRANS: Client error message +#: lib/adminpanelaction.php:110 #, fuzzy msgid "Changes to that panel are not allowed." msgstr "Rekisteröityminen ei ole sallittu." -#: lib/adminpanelaction.php:206 +#. TRANS: Client error message +#: lib/adminpanelaction.php:211 #, fuzzy msgid "showForm() not implemented." msgstr "Komentoa ei ole vielä toteutettu." -#: lib/adminpanelaction.php:235 +#. TRANS: Client error message +#: lib/adminpanelaction.php:241 #, fuzzy msgid "saveSettings() not implemented." msgstr "Komentoa ei ole vielä toteutettu." -#: lib/adminpanelaction.php:258 +#. TRANS: Client error message +#: lib/adminpanelaction.php:265 #, fuzzy msgid "Unable to delete design setting." msgstr "Twitter-asetuksia ei voitu tallentaa!" -#: lib/adminpanelaction.php:312 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:330 #, fuzzy msgid "Basic site configuration" msgstr "Sähköpostiosoitteen vahvistus" -#: lib/adminpanelaction.php:317 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:332 +#, fuzzy +msgctxt "MENU" +msgid "Site" +msgstr "Kutsu" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:338 #, fuzzy msgid "Design configuration" msgstr "SMS vahvistus" -#: lib/adminpanelaction.php:322 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:340 +#, fuzzy +msgctxt "MENU" +msgid "Design" +msgstr "Ulkoasu" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:346 #, fuzzy msgid "User configuration" msgstr "SMS vahvistus" -#: lib/adminpanelaction.php:327 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:348 +#, fuzzy +msgctxt "MENU" +msgid "User" +msgstr "Käyttäjä" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:354 #, fuzzy msgid "Access configuration" msgstr "SMS vahvistus" -#: lib/adminpanelaction.php:332 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:356 +#, fuzzy +msgctxt "MENU" +msgid "Access" +msgstr "Hyväksy" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:362 #, fuzzy msgid "Paths configuration" msgstr "SMS vahvistus" -#: lib/adminpanelaction.php:337 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:364 +#, fuzzy +msgctxt "MENU" +msgid "Paths" +msgstr "Polut" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:370 #, fuzzy msgid "Sessions configuration" msgstr "SMS vahvistus" -#: lib/apiauth.php:95 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:372 +#, fuzzy +msgctxt "MENU" +msgid "Sessions" +msgstr "Omat" + +#: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." msgstr "" -#: lib/apiauth.php:273 +#: lib/apiauth.php:272 #, php-format msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" msgstr "" @@ -4981,12 +5156,12 @@ msgstr "" msgid "Tags for this attachment" msgstr "" -#: lib/authenticationplugin.php:218 lib/authenticationplugin.php:223 +#: lib/authenticationplugin.php:220 lib/authenticationplugin.php:225 #, fuzzy msgid "Password changing failed" msgstr "Salasanan vaihto" -#: lib/authenticationplugin.php:233 +#: lib/authenticationplugin.php:235 #, fuzzy msgid "Password changing is not allowed" msgstr "Salasanan vaihto" @@ -5267,20 +5442,20 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:136 +#: lib/common.php:148 #, fuzzy msgid "No configuration file found. " msgstr "Varmistuskoodia ei ole annettu." -#: lib/common.php:137 +#: lib/common.php:149 msgid "I looked for configuration files in the following places: " msgstr "" -#: lib/common.php:139 +#: lib/common.php:151 msgid "You may wish to run the installer to fix this." msgstr "" -#: lib/common.php:140 +#: lib/common.php:152 #, fuzzy msgid "Go to the installer." msgstr "Kirjaudu sisään palveluun" @@ -5475,23 +5650,23 @@ msgstr "Tiedoston lähetyksessä tapahtui järjestelmävirhe." msgid "Not an image or corrupt file." msgstr "Tuo ei ole kelvollinen kuva tai tiedosto on rikkoutunut." -#: lib/imagefile.php:105 +#: lib/imagefile.php:109 msgid "Unsupported image file format." msgstr "Kuvatiedoston formaattia ei ole tuettu." -#: lib/imagefile.php:118 +#: lib/imagefile.php:122 msgid "Lost our file." msgstr "Tiedosto hävisi." -#: lib/imagefile.php:150 lib/imagefile.php:197 +#: lib/imagefile.php:166 lib/imagefile.php:231 msgid "Unknown file type" msgstr "Tunnistamaton tiedoston tyyppi" -#: lib/imagefile.php:217 +#: lib/imagefile.php:251 msgid "MB" msgstr "" -#: lib/imagefile.php:219 +#: lib/imagefile.php:253 msgid "kB" msgstr "" @@ -5806,6 +5981,12 @@ msgstr "Vastaanottaja" msgid "Available characters" msgstr "Sallitut merkit" +#: lib/messageform.php:178 lib/noticeform.php:236 +#, fuzzy +msgctxt "Send button for sending notice" +msgid "Send" +msgstr "Lähetä" + #: lib/noticeform.php:160 msgid "Send a notice" msgstr "Lähetä päivitys" @@ -5865,25 +6046,25 @@ msgstr "" msgid "at" msgstr "" -#: lib/noticelist.php:558 +#: lib/noticelist.php:566 #, fuzzy msgid "in context" msgstr "Ei sisältöä!" -#: lib/noticelist.php:583 +#: lib/noticelist.php:601 #, fuzzy msgid "Repeated by" msgstr "Luotu" -#: lib/noticelist.php:610 +#: lib/noticelist.php:628 msgid "Reply to this notice" msgstr "Vastaa tähän päivitykseen" -#: lib/noticelist.php:611 +#: lib/noticelist.php:629 msgid "Reply" msgstr "Vastaus" -#: lib/noticelist.php:655 +#: lib/noticelist.php:673 #, fuzzy msgid "Notice repeated" msgstr "Päivitys on poistettu." @@ -5933,6 +6114,10 @@ msgstr "Vastaukset" msgid "Favorites" msgstr "Suosikit" +#: lib/personalgroupnav.php:115 +msgid "User" +msgstr "Käyttäjä" + #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "Saapuneet" @@ -6027,7 +6212,7 @@ msgstr "Vastaa tähän päivitykseen" msgid "Repeat this notice" msgstr "Vastaa tähän päivitykseen" -#: lib/router.php:665 +#: lib/router.php:668 msgid "No single user defined for single-user mode." msgstr "" @@ -6050,6 +6235,10 @@ msgstr "Haku" msgid "Keyword(s)" msgstr "" +#: lib/searchaction.php:127 +msgid "Search" +msgstr "Haku" + #: lib/searchaction.php:162 #, fuzzy msgid "Search help" @@ -6104,6 +6293,15 @@ msgstr "Ihmiset jotka ovat käyttäjän %s tilaajia" msgid "Groups %s is a member of" msgstr "Ryhmät, joiden jäsen %s on" +#: lib/subgroupnav.php:105 +msgid "Invite" +msgstr "Kutsu" + +#: lib/subgroupnav.php:106 +#, php-format +msgid "Invite friends and colleagues to join you on %s" +msgstr "Kutsu kavereita ja työkavereita liittymään palveluun %s" + #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -6178,47 +6376,47 @@ msgstr "Viesti" msgid "Moderate" msgstr "" -#: lib/util.php:952 +#: lib/util.php:1013 msgid "a few seconds ago" msgstr "muutama sekunti sitten" -#: lib/util.php:954 +#: lib/util.php:1015 msgid "about a minute ago" msgstr "noin minuutti sitten" -#: lib/util.php:956 +#: lib/util.php:1017 #, php-format msgid "about %d minutes ago" msgstr "noin %d minuuttia sitten" -#: lib/util.php:958 +#: lib/util.php:1019 msgid "about an hour ago" msgstr "noin tunti sitten" -#: lib/util.php:960 +#: lib/util.php:1021 #, php-format msgid "about %d hours ago" msgstr "noin %d tuntia sitten" -#: lib/util.php:962 +#: lib/util.php:1023 msgid "about a day ago" msgstr "noin päivä sitten" -#: lib/util.php:964 +#: lib/util.php:1025 #, php-format msgid "about %d days ago" msgstr "noin %d päivää sitten" -#: lib/util.php:966 +#: lib/util.php:1027 msgid "about a month ago" msgstr "noin kuukausi sitten" -#: lib/util.php:968 +#: lib/util.php:1029 #, php-format msgid "about %d months ago" msgstr "noin %d kuukautta sitten" -#: lib/util.php:970 +#: lib/util.php:1031 msgid "about a year ago" msgstr "noin vuosi sitten" diff --git a/locale/fr/LC_MESSAGES/statusnet.po b/locale/fr/LC_MESSAGES/statusnet.po index cf0cc849b2..68e210ff1c 100644 --- a/locale/fr/LC_MESSAGES/statusnet.po +++ b/locale/fr/LC_MESSAGES/statusnet.po @@ -14,75 +14,82 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-02-24 23:49+0000\n" -"PO-Revision-Date: 2010-02-24 23:50:48+0000\n" +"POT-Creation-Date: 2010-03-02 21:02+0000\n" +"PO-Revision-Date: 2010-03-02 21:02:48+0000\n" "Language-Team: French\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r62925); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: actions/accessadminpanel.php:54 lib/adminpanelaction.php:326 +#. TRANS: Page title +#: actions/accessadminpanel.php:55 msgid "Access" msgstr "Accès" -#: actions/accessadminpanel.php:65 +#. TRANS: Page notice +#: actions/accessadminpanel.php:67 msgid "Site access settings" msgstr "Paramètres d’accès au site" -#: actions/accessadminpanel.php:158 +#. TRANS: Form legend for registration form. +#: actions/accessadminpanel.php:161 msgid "Registration" msgstr "Inscription" -#: actions/accessadminpanel.php:161 -msgid "Private" -msgstr "Privé" - -#: actions/accessadminpanel.php:163 +#. TRANS: Checkbox instructions for admin setting "Private" +#: actions/accessadminpanel.php:165 msgid "Prohibit anonymous users (not logged in) from viewing site?" msgstr "Interdire aux utilisateurs anonymes (non connectés) de voir le site ?" +#. TRANS: Checkbox label for prohibiting anonymous users from viewing site. #: actions/accessadminpanel.php:167 -msgid "Invite only" -msgstr "Sur invitation uniquement" +#, fuzzy +msgctxt "LABEL" +msgid "Private" +msgstr "Privé" -#: actions/accessadminpanel.php:169 +#. TRANS: Checkbox instructions for admin setting "Invite only" +#: actions/accessadminpanel.php:174 msgid "Make registration invitation only." msgstr "Autoriser l’inscription sur invitation seulement." -#: actions/accessadminpanel.php:173 -msgid "Closed" -msgstr "Fermé" +#. TRANS: Checkbox label for configuring site as invite only. +#: actions/accessadminpanel.php:176 +msgid "Invite only" +msgstr "Sur invitation uniquement" -#: actions/accessadminpanel.php:175 +#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations) +#: actions/accessadminpanel.php:183 msgid "Disable new registrations." msgstr "Désactiver les nouvelles inscriptions." -#: actions/accessadminpanel.php:189 actions/designadminpanel.php:586 -#: actions/emailsettings.php:195 actions/imsettings.php:163 -#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 -#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 -#: actions/siteadminpanel.php:336 actions/smssettings.php:181 -#: actions/subscriptions.php:208 actions/tagother.php:154 -#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 -#: lib/applicationeditform.php:334 lib/designsettings.php:256 -#: lib/groupeditform.php:202 -msgid "Save" -msgstr "Enregistrer" +#. TRANS: Checkbox label for disabling new user registrations. +#: actions/accessadminpanel.php:185 +msgid "Closed" +msgstr "Fermé" -#: actions/accessadminpanel.php:189 +#. TRANS: Title / tooltip for button to save access settings in site admin panel +#: actions/accessadminpanel.php:202 msgid "Save access settings" msgstr "Sauvegarder les paramètres d’accès" -#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 -#: actions/showfavorites.php:137 actions/tag.php:51 +#: actions/accessadminpanel.php:203 +#, fuzzy +msgctxt "BUTTON" +msgid "Save" +msgstr "Enregistrer" + +#. TRANS: Server error when page not found (404) +#: actions/all.php:64 actions/public.php:98 actions/replies.php:93 +#: actions/showfavorites.php:138 actions/tag.php:52 msgid "No such page" msgstr "Page non trouvée" -#: actions/all.php:74 actions/allrss.php:68 +#: actions/all.php:75 actions/allrss.php:68 #: actions/apiaccountupdatedeliverydevice.php:113 #: actions/apiaccountupdateprofile.php:105 #: actions/apiaccountupdateprofilebackgroundimage.php:116 @@ -96,45 +103,53 @@ msgstr "Page non trouvée" #: actions/apitimelinehome.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/otp.php:76 -#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154 -#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 -#: actions/showfavorites.php:105 actions/userbyid.php:74 -#: actions/usergroups.php:91 actions/userrss.php:38 actions/xrds.php:71 -#: lib/command.php:163 lib/command.php:302 lib/command.php:355 -#: lib/command.php:401 lib/command.php:462 lib/command.php:518 -#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 +#: actions/hcard.php:67 actions/microsummary.php:62 actions/newmessage.php:116 +#: actions/otp.php:76 actions/remotesubscribe.php:145 +#: actions/remotesubscribe.php:154 actions/replies.php:73 +#: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/xrds.php:71 lib/command.php:163 lib/command.php:302 +#: lib/command.php:355 lib/command.php:401 lib/command.php:462 +#: lib/command.php:518 lib/galleryaction.php:59 lib/mailbox.php:82 +#: lib/profileaction.php:77 msgid "No such user." msgstr "Utilisateur non trouvé." -#: actions/all.php:84 +#. TRANS: Page title. %1$s is user nickname, %2$d is page number +#: actions/all.php:86 #, php-format msgid "%1$s and friends, page %2$d" msgstr "%1$s et ses amis, page %2$d" -#: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 +#. TRANS: Page title. %1$s is user nickname +#. TRANS: H1 text. %1$s is user nickname +#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" msgstr "%s et ses amis" -#: actions/all.php:99 +#. TRANS: %1$s is user nickname +#: actions/all.php:103 #, php-format msgid "Feed for friends of %s (RSS 1.0)" msgstr "Flux pour les amis de %s (RSS 1.0)" -#: actions/all.php:107 +#. TRANS: %1$s is user nickname +#: actions/all.php:112 #, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "Flux pour les amis de %s (RSS 2.0)" -#: actions/all.php:115 +#. TRANS: %1$s is user nickname +#: actions/all.php:121 #, php-format msgid "Feed for friends of %s (Atom)" msgstr "Flux pour les amis de %s (Atom)" -#: actions/all.php:127 +#. TRANS: %1$s is user nickname +#: actions/all.php:134 #, php-format msgid "" "This is the timeline for %s and friends but no one has posted anything yet." @@ -142,7 +157,7 @@ msgstr "" "Ceci est le flux pour %s et ses amis mais personne n’a rien posté pour le " "moment." -#: actions/all.php:132 +#: actions/all.php:139 #, php-format msgid "" "Try subscribing to more people, [join a group](%%action.groups%%) or post " @@ -151,7 +166,8 @@ msgstr "" "Essayez de vous abonner à plus d’utilisateurs, de vous [inscrire à un groupe]" "(%%action.groups%%) ou de poster quelque chose vous-même." -#: actions/all.php:134 +#. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@" +#: actions/all.php:142 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) from his profile or [post something to " @@ -161,7 +177,7 @@ msgstr "" "profil ou [poster quelque chose à son intention](%%%%action.newnotice%%%%?" "status_textarea=%3$s)." -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211 +#: actions/all.php:145 actions/replies.php:210 actions/showstream.php:211 #, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " @@ -170,7 +186,8 @@ msgstr "" "Pourquoi ne pas [créer un compte](%%%%action.register%%%%) et ensuite faire " "un clin d’œil à %s ou poster un avis à son intention." -#: actions/all.php:165 +#. TRANS: H1 text +#: actions/all.php:174 msgid "You and friends" msgstr "Vous et vos amis" @@ -188,20 +205,20 @@ msgstr "Statuts de %1$s et ses amis dans %2$s!" #: actions/apiaccountverifycredentials.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:128 actions/apigroupcreate.php:136 +#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: actions/apigroupleave.php:141 actions/apigrouplist.php:132 #: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 #: actions/apigroupshow.php:115 actions/apihelptest.php:88 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 -#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184 +#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 #: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:207 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 msgid "API method not found." msgstr "Méthode API non trouvée !" @@ -235,8 +252,9 @@ msgstr "Impossible de mettre à jour l’utilisateur." #: actions/apiaccountupdateprofilebackgroundimage.php:194 #: actions/apiaccountupdateprofilecolors.php:185 #: 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 +#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 +#: 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." @@ -262,7 +280,7 @@ msgstr "" #: actions/apiaccountupdateprofilebackgroundimage.php:146 #: actions/apiaccountupdateprofilecolors.php:164 #: actions/apiaccountupdateprofilecolors.php:174 -#: actions/groupdesignsettings.php:287 actions/groupdesignsettings.php:297 +#: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300 #: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 #: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 msgid "Unable to save your design settings." @@ -374,7 +392,7 @@ msgstr "Impossible de déterminer l’utilisateur source." msgid "Could not find target user." msgstr "Impossible de trouver l’utilisateur cible." -#: actions/apigroupcreate.php:164 actions/editgroup.php:182 +#: actions/apigroupcreate.php:166 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:215 #: actions/register.php:205 msgid "Nickname must have only lowercase letters and numbers and no spaces." @@ -382,62 +400,62 @@ msgstr "" "Les pseudos ne peuvent contenir que des caractères minuscules et des " "chiffres, sans espaces." -#: actions/apigroupcreate.php:173 actions/editgroup.php:186 +#: actions/apigroupcreate.php:175 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:238 #: actions/register.php:208 msgid "Nickname already in use. Try another one." msgstr "Pseudo déjà utilisé. Essayez-en un autre." -#: actions/apigroupcreate.php:180 actions/editgroup.php:189 +#: actions/apigroupcreate.php:182 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:218 #: actions/register.php:210 msgid "Not a valid nickname." msgstr "Pseudo invalide." -#: actions/apigroupcreate.php:196 actions/editapplication.php:215 -#: actions/editgroup.php:195 actions/newapplication.php:203 +#: actions/apigroupcreate.php:198 actions/editapplication.php:215 +#: actions/editgroup.php:199 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: 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:205 actions/editgroup.php:198 +#: actions/apigroupcreate.php:207 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:225 #: 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:213 actions/editapplication.php:190 +#: actions/apigroupcreate.php:215 actions/editapplication.php:190 #: actions/newapplication.php:172 #, php-format msgid "Description is too long (max %d chars)." msgstr "La description est trop longue (%d caractères maximum)." -#: actions/apigroupcreate.php:224 actions/editgroup.php:204 +#: actions/apigroupcreate.php:226 actions/editgroup.php:208 #: actions/newgroup.php:148 actions/profilesettings.php:232 #: actions/register.php:227 msgid "Location is too long (max 255 chars)." msgstr "Emplacement trop long (maximum de 255 caractères)." -#: actions/apigroupcreate.php:243 actions/editgroup.php:215 +#: actions/apigroupcreate.php:245 actions/editgroup.php:219 #: actions/newgroup.php:159 #, php-format msgid "Too many aliases! Maximum %d." msgstr "Trop d’alias ! Maximum %d." -#: actions/apigroupcreate.php:264 actions/editgroup.php:224 +#: actions/apigroupcreate.php:266 actions/editgroup.php:228 #: actions/newgroup.php:168 #, php-format msgid "Invalid alias: \"%s\"" msgstr "Alias invalide : « %s »" -#: actions/apigroupcreate.php:273 actions/editgroup.php:228 +#: actions/apigroupcreate.php:275 actions/editgroup.php:232 #: actions/newgroup.php:172 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "Alias « %s » déjà utilisé. Essayez-en un autre." -#: actions/apigroupcreate.php:286 actions/editgroup.php:234 +#: actions/apigroupcreate.php:288 actions/editgroup.php:238 #: actions/newgroup.php:178 msgid "Alias can't be the same as nickname." msgstr "L’alias ne peut pas être le même que le pseudo." @@ -448,15 +466,15 @@ msgstr "L’alias ne peut pas être le même que le pseudo." msgid "Group not found!" msgstr "Groupe non trouvé !" -#: actions/apigroupjoin.php:110 actions/joingroup.php:90 +#: actions/apigroupjoin.php:110 actions/joingroup.php:100 msgid "You are already a member of that group." msgstr "Vous êtes déjà membre de ce groupe." -#: actions/apigroupjoin.php:119 actions/joingroup.php:95 lib/command.php:221 +#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:221 msgid "You have been blocked from that group by the admin." msgstr "Vous avez été bloqué de ce groupe par l’administrateur." -#: actions/apigroupjoin.php:138 actions/joingroup.php:124 +#: actions/apigroupjoin.php:138 actions/joingroup.php:134 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Impossible de joindre l’utilisateur %1$s au groupe %2$s." @@ -465,7 +483,7 @@ msgstr "Impossible de joindre l’utilisateur %1$s au groupe %2$s." msgid "You are not a member of this group." msgstr "Vous n’êtes pas membre de ce groupe." -#: actions/apigroupleave.php:124 actions/leavegroup.php:119 +#: actions/apigroupleave.php:124 actions/leavegroup.php:129 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "Impossible de retirer l’utilisateur %1$s du groupe %2$s." @@ -496,7 +514,7 @@ msgstr "Jeton incorrect." #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 #: actions/deletenotice.php:157 actions/disfavor.php:74 #: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54 -#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupblock.php:66 actions/grouplogo.php:312 #: actions/groupunblock.php:66 actions/imsettings.php:206 #: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 @@ -544,7 +562,7 @@ msgstr "Le jeton de connexion %s a été refusé et révoqué." #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:103 actions/editapplication.php:139 -#: actions/emailsettings.php:256 actions/grouplogo.php:319 +#: actions/emailsettings.php:256 actions/grouplogo.php:322 #: actions/imsettings.php:220 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 #: actions/smssettings.php:248 lib/designsettings.php:304 @@ -572,13 +590,13 @@ msgstr "" "devriez donner l’accès à votre compte %4$s qu’aux tiers à qui vous faites " "confiance." -#: actions/apioauthauthorize.php:310 lib/action.php:441 +#: actions/apioauthauthorize.php:310 msgid "Account" msgstr "Compte" #: actions/apioauthauthorize.php:313 actions/login.php:230 #: actions/profilesettings.php:106 actions/register.php:424 -#: actions/showgroup.php:236 actions/tagother.php:94 +#: actions/showgroup.php:244 actions/tagother.php:94 #: actions/userauthorization.php:145 lib/groupeditform.php:152 #: lib/userprofile.php:131 msgid "Nickname" @@ -662,12 +680,12 @@ msgid "%1$s updates favorited by %2$s / %2$s." msgstr "%1$s statuts favoris de %2$s / %2$s." #: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:131 actions/userrss.php:90 +#: actions/grouprss.php:138 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "Activité de %s" -#: actions/apitimelinegroup.php:114 actions/apitimelineuser.php:126 +#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 #: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" @@ -703,7 +721,7 @@ msgstr "Repris pour %s" msgid "Repeats of %s" msgstr "Reprises de %s" -#: actions/apitimelinetag.php:102 actions/tag.php:66 +#: actions/apitimelinetag.php:102 actions/tag.php:67 #, php-format msgid "Notices tagged with %s" msgstr "Avis marqués avec %s" @@ -724,8 +742,7 @@ msgstr "Pièce jointe non trouvée." #: actions/avatarbynickname.php:59 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/leavegroup.php:76 -#: actions/showgroup.php:121 +#: actions/grouprss.php:91 actions/showgroup.php:121 msgid "No nickname." msgstr "Aucun pseudo." @@ -737,7 +754,7 @@ msgstr "Aucune taille" msgid "Invalid size." msgstr "Taille incorrecte." -#: actions/avatarsettings.php:67 actions/showgroup.php:221 +#: actions/avatarsettings.php:67 actions/showgroup.php:229 #: lib/accountsettingsaction.php:112 msgid "Avatar" msgstr "Avatar" @@ -756,30 +773,30 @@ msgid "User without matching profile" msgstr "Utilisateur sans profil correspondant" #: actions/avatarsettings.php:119 actions/avatarsettings.php:197 -#: actions/grouplogo.php:251 +#: actions/grouplogo.php:254 msgid "Avatar settings" msgstr "Paramètres de l’avatar" #: actions/avatarsettings.php:127 actions/avatarsettings.php:205 -#: actions/grouplogo.php:199 actions/grouplogo.php:259 +#: actions/grouplogo.php:202 actions/grouplogo.php:262 msgid "Original" msgstr "Image originale" #: actions/avatarsettings.php:142 actions/avatarsettings.php:217 -#: actions/grouplogo.php:210 actions/grouplogo.php:271 +#: actions/grouplogo.php:213 actions/grouplogo.php:274 msgid "Preview" msgstr "Aperçu" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:637 +#: lib/deleteuserform.php:66 lib/noticelist.php:655 msgid "Delete" msgstr "Supprimer" -#: actions/avatarsettings.php:166 actions/grouplogo.php:233 +#: actions/avatarsettings.php:166 actions/grouplogo.php:236 msgid "Upload" msgstr "Transfert" -#: actions/avatarsettings.php:231 actions/grouplogo.php:286 +#: actions/avatarsettings.php:231 actions/grouplogo.php:289 msgid "Crop" msgstr "Recadrer" @@ -787,7 +804,7 @@ msgstr "Recadrer" msgid "Pick a square area of the image to be your avatar" msgstr "Sélectionnez une zone de forme carrée pour définir votre avatar" -#: actions/avatarsettings.php:343 actions/grouplogo.php:377 +#: actions/avatarsettings.php:343 actions/grouplogo.php:380 msgid "Lost our file data." msgstr "Données perdues." @@ -822,22 +839,22 @@ msgstr "" "serez pas informé des @-réponses de sa part." #: actions/block.php:143 actions/deleteapplication.php:153 -#: actions/deletenotice.php:145 actions/deleteuser.php:147 +#: actions/deletenotice.php:145 actions/deleteuser.php:150 #: actions/groupblock.php:178 msgid "No" msgstr "Non" -#: actions/block.php:143 actions/deleteuser.php:147 +#: actions/block.php:143 actions/deleteuser.php:150 msgid "Do not block this user" msgstr "Ne pas bloquer cet utilisateur" #: actions/block.php:144 actions/deleteapplication.php:158 -#: actions/deletenotice.php:146 actions/deleteuser.php:148 +#: actions/deletenotice.php:146 actions/deleteuser.php:151 #: actions/groupblock.php:179 lib/repeatform.php:132 msgid "Yes" msgstr "Oui" -#: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:355 lib/blockform.php:80 msgid "Block this user" msgstr "Bloquer cet utilisateur" @@ -845,39 +862,43 @@ msgstr "Bloquer cet utilisateur" msgid "Failed to save block information." msgstr "Impossible d’enregistrer les informations de blocage." -#: actions/blockedfromgroup.php:80 actions/editgroup.php:96 -#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/groupblock.php:86 -#: actions/groupbyid.php:83 actions/groupdesignsettings.php:97 -#: actions/grouplogo.php:99 actions/groupmembers.php:83 -#: actions/grouprss.php:98 actions/groupunblock.php:86 -#: actions/joingroup.php:83 actions/leavegroup.php:83 actions/makeadmin.php:86 -#: actions/showgroup.php:137 lib/command.php:212 lib/command.php:260 +#: actions/blockedfromgroup.php:80 actions/blockedfromgroup.php:87 +#: actions/editgroup.php:100 actions/foafgroup.php:44 actions/foafgroup.php:62 +#: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:100 actions/grouplogo.php:102 +#: actions/groupmembers.php:83 actions/groupmembers.php:90 +#: actions/grouprss.php:98 actions/grouprss.php:105 +#: actions/groupunblock.php:86 actions/joingroup.php:82 +#: actions/joingroup.php:93 actions/leavegroup.php:82 +#: actions/leavegroup.php:93 actions/makeadmin.php:86 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:212 +#: lib/command.php:260 msgid "No such group." msgstr "Aucun groupe trouvé." -#: actions/blockedfromgroup.php:90 +#: actions/blockedfromgroup.php:97 #, php-format msgid "%s blocked profiles" msgstr "%s profils bloqués" -#: actions/blockedfromgroup.php:93 +#: actions/blockedfromgroup.php:100 #, php-format msgid "%1$s blocked profiles, page %2$d" msgstr "%1$s profils bloqués, page %2$d" -#: actions/blockedfromgroup.php:108 +#: actions/blockedfromgroup.php:115 msgid "A list of the users blocked from joining this group." msgstr "Une liste des utilisateurs dont l’inscription à ce groupe est bloquée." -#: actions/blockedfromgroup.php:281 +#: actions/blockedfromgroup.php:288 msgid "Unblock user from group" msgstr "Débloquer l’utilisateur de ce groupe" -#: actions/blockedfromgroup.php:313 lib/unblockform.php:69 +#: actions/blockedfromgroup.php:320 lib/unblockform.php:69 msgid "Unblock" msgstr "Débloquer" -#: actions/blockedfromgroup.php:313 lib/unblockform.php:80 +#: actions/blockedfromgroup.php:320 lib/unblockform.php:80 msgid "Unblock this user" msgstr "Débloquer cet utilisateur" @@ -952,7 +973,7 @@ msgstr "Vous n’êtes pas le propriétaire de cette application." #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1197 +#: lib/action.php:1228 msgid "There was a problem with your session token." msgstr "Un problème est survenu avec votre jeton de session." @@ -978,12 +999,13 @@ msgstr "Ne pas supprimer cette application" msgid "Delete this application" msgstr "Supprimer cette application" +#. TRANS: Client error message #: 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:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 -#: lib/adminpanelaction.php:72 lib/profileformaction.php:63 +#: lib/adminpanelaction.php:73 lib/profileformaction.php:63 #: lib/settingsaction.php:72 msgid "Not logged in." msgstr "Non connecté." @@ -1012,7 +1034,7 @@ msgstr "Voulez-vous vraiment supprimer cet avis ?" msgid "Do not delete this notice" msgstr "Ne pas supprimer cet avis" -#: actions/deletenotice.php:146 lib/noticelist.php:637 +#: actions/deletenotice.php:146 lib/noticelist.php:655 msgid "Delete this notice" msgstr "Supprimer cet avis" @@ -1028,7 +1050,7 @@ msgstr "Vous pouvez seulement supprimer les utilisateurs locaux." msgid "Delete user" msgstr "Supprimer l’utilisateur" -#: actions/deleteuser.php:135 +#: actions/deleteuser.php:136 msgid "" "Are you sure you want to delete this user? This will clear all data about " "the user from the database, without a backup." @@ -1036,12 +1058,12 @@ msgstr "" "Voulez-vous vraiment supprimer cet utilisateur ? Ceci effacera toutes les " "données à son propos de la base de données, sans sauvegarde." -#: actions/deleteuser.php:148 lib/deleteuserform.php:77 +#: actions/deleteuser.php:151 lib/deleteuserform.php:77 msgid "Delete this user" msgstr "Supprimer cet utilisateur" #: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 -#: lib/adminpanelaction.php:316 lib/groupnav.php:119 +#: lib/groupnav.php:119 msgid "Design" msgstr "Conception" @@ -1144,6 +1166,17 @@ msgstr "Restaurer les conceptions par défaut" msgid "Reset back to default" msgstr "Revenir aux valeurs par défaut" +#: actions/designadminpanel.php:586 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/tagother.php:154 actions/useradminpanel.php:294 +#: lib/applicationeditform.php:333 lib/applicationeditform.php:334 +#: lib/designsettings.php:256 lib/groupeditform.php:202 +msgid "Save" +msgstr "Enregistrer" + #: actions/designadminpanel.php:587 lib/designsettings.php:257 msgid "Save design" msgstr "Sauvegarder la conception" @@ -1235,29 +1268,29 @@ msgstr "Modifier le groupe %s" msgid "You must be logged in to create a group." msgstr "Vous devez ouvrir une session pour créer un groupe." -#: actions/editgroup.php:103 actions/editgroup.php:168 -#: actions/groupdesignsettings.php:104 actions/grouplogo.php:106 +#: actions/editgroup.php:107 actions/editgroup.php:172 +#: actions/groupdesignsettings.php:107 actions/grouplogo.php:109 msgid "You must be an admin to edit the group." msgstr "Vous devez être administrateur pour modifier le groupe." -#: actions/editgroup.php:154 +#: actions/editgroup.php:158 msgid "Use this form to edit the group." msgstr "Remplissez ce formulaire pour modifier les options du groupe." -#: actions/editgroup.php:201 actions/newgroup.php:145 +#: actions/editgroup.php:205 actions/newgroup.php:145 #, php-format msgid "description is too long (max %d chars)." msgstr "la description est trop longue (%d caractères maximum)." -#: actions/editgroup.php:253 +#: actions/editgroup.php:258 msgid "Could not update group." msgstr "Impossible de mettre à jour le groupe." -#: actions/editgroup.php:259 classes/User_group.php:433 +#: actions/editgroup.php:264 classes/User_group.php:478 msgid "Could not create aliases." msgstr "Impossible de créer les alias." -#: actions/editgroup.php:269 +#: actions/editgroup.php:280 msgid "Options saved." msgstr "Vos options ont été enregistrées." @@ -1598,7 +1631,7 @@ msgstr "Cet utilisateur est déjà bloqué pour le groupe." msgid "User is not a member of group." msgstr "L’utilisateur n’est pas membre du groupe." -#: actions/groupblock.php:136 actions/groupmembers.php:316 +#: actions/groupblock.php:136 actions/groupmembers.php:323 msgid "Block user from group" msgstr "Bloquer cet utilisateur du groupe" @@ -1634,11 +1667,11 @@ msgstr "Aucun identifiant." msgid "You must be logged in to edit a group." msgstr "Vous devez ouvrir une session pour modifier un groupe." -#: actions/groupdesignsettings.php:141 +#: actions/groupdesignsettings.php:144 msgid "Group design" msgstr "Conception du groupe" -#: actions/groupdesignsettings.php:152 +#: actions/groupdesignsettings.php:155 msgid "" "Customize the way your group looks with a background image and a colour " "palette of your choice." @@ -1646,20 +1679,20 @@ msgstr "" "Personnalisez l’apparence de votre groupe avec une image d’arrière plan et " "une palette de couleurs de votre choix" -#: actions/groupdesignsettings.php:263 actions/userdesignsettings.php:186 +#: actions/groupdesignsettings.php:266 actions/userdesignsettings.php:186 #: lib/designsettings.php:391 lib/designsettings.php:413 msgid "Couldn't update your design." msgstr "Impossible de mettre à jour votre conception." -#: actions/groupdesignsettings.php:308 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231 msgid "Design preferences saved." msgstr "Préférences de conception enregistrées." -#: actions/grouplogo.php:139 actions/grouplogo.php:192 +#: actions/grouplogo.php:142 actions/grouplogo.php:195 msgid "Group logo" msgstr "Logo du groupe" -#: actions/grouplogo.php:150 +#: actions/grouplogo.php:153 #, php-format msgid "" "You can upload a logo image for your group. The maximum file size is %s." @@ -1667,57 +1700,57 @@ msgstr "" "Vous pouvez choisir un logo pour votre groupe. La taille maximale du fichier " "est de %s." -#: actions/grouplogo.php:178 +#: actions/grouplogo.php:181 msgid "User without matching profile." msgstr "Utilisateur sans profil correspondant." -#: actions/grouplogo.php:362 +#: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." msgstr "Sélectionnez une zone de forme carrée sur l’image qui sera le logo." -#: actions/grouplogo.php:396 +#: actions/grouplogo.php:399 msgid "Logo updated." msgstr "Logo mis à jour." -#: actions/grouplogo.php:398 +#: actions/grouplogo.php:401 msgid "Failed updating logo." msgstr "La mise à jour du logo a échoué." -#: actions/groupmembers.php:93 lib/groupnav.php:92 +#: actions/groupmembers.php:100 lib/groupnav.php:92 #, php-format msgid "%s group members" msgstr "Membres du groupe %s" -#: actions/groupmembers.php:96 +#: actions/groupmembers.php:103 #, php-format msgid "%1$s group members, page %2$d" msgstr "Membres du groupe %1$s - page %2$d" -#: actions/groupmembers.php:111 +#: actions/groupmembers.php:118 msgid "A list of the users in this group." msgstr "Liste des utilisateurs inscrits à ce groupe." -#: actions/groupmembers.php:175 lib/action.php:448 lib/groupnav.php:107 +#: actions/groupmembers.php:182 lib/groupnav.php:107 msgid "Admin" msgstr "Administrer" -#: actions/groupmembers.php:348 lib/blockform.php:69 +#: actions/groupmembers.php:355 lib/blockform.php:69 msgid "Block" msgstr "Bloquer" -#: actions/groupmembers.php:443 +#: actions/groupmembers.php:450 msgid "Make user an admin of the group" msgstr "Faire de cet utilisateur un administrateur du groupe" -#: actions/groupmembers.php:475 +#: actions/groupmembers.php:482 msgid "Make Admin" msgstr "Faire un administrateur" -#: actions/groupmembers.php:475 +#: actions/groupmembers.php:482 msgid "Make this user an admin" msgstr "Faire de cet utilisateur un administrateur" -#: actions/grouprss.php:133 +#: actions/grouprss.php:140 #, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Mises à jour des membres de %1$s dans %2$s !" @@ -1988,16 +2021,19 @@ msgstr "Message personnel" msgid "Optionally add a personal message to the invitation." msgstr "Ajouter un message personnel à l’invitation (optionnel)." -#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:236 +#. TRANS: Send button for inviting friends +#: actions/invite.php:198 +#, fuzzy +msgctxt "BUTTON" msgid "Send" msgstr "Envoyer" -#: actions/invite.php:226 +#: actions/invite.php:227 #, 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/invite.php:228 +#: actions/invite.php:229 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -2060,7 +2096,11 @@ msgstr "" msgid "You must be logged in to join a group." msgstr "Vous devez ouvrir une session pour rejoindre un groupe." -#: actions/joingroup.php:131 +#: actions/joingroup.php:88 actions/leavegroup.php:88 +msgid "No nickname or ID." +msgstr "Aucun pseudo ou ID." + +#: actions/joingroup.php:141 #, php-format msgid "%1$s joined group %2$s" msgstr "%1$s a rejoint le groupe %2$s" @@ -2069,11 +2109,11 @@ msgstr "%1$s a rejoint le groupe %2$s" msgid "You must be logged in to leave a group." msgstr "Vous devez ouvrir une session pour quitter un groupe." -#: actions/leavegroup.php:90 lib/command.php:265 +#: actions/leavegroup.php:100 lib/command.php:265 msgid "You are not a member of that group." msgstr "Vous n’êtes pas membre de ce groupe." -#: actions/leavegroup.php:127 +#: actions/leavegroup.php:137 #, php-format msgid "%1$s left group %2$s" msgstr "%1$s a quitté le groupe %2$s" @@ -2092,8 +2132,7 @@ msgstr "" "Erreur lors de la mise en place de l’utilisateur. Vous n’y êtes probablement " "pas autorisé." -#: actions/login.php:188 actions/login.php:241 lib/action.php:466 -#: lib/logingroupnav.php:79 +#: actions/login.php:188 actions/login.php:241 lib/logingroupnav.php:79 msgid "Login" msgstr "Ouvrir une session" @@ -2355,8 +2394,8 @@ msgstr "type de contenu " msgid "Only " msgstr "Seulement " -#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 -#: lib/api.php:1068 lib/api.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 +#: lib/apiaction.php:1068 lib/apiaction.php:1177 msgid "Not a supported data format." msgstr "Format de données non supporté." @@ -2496,7 +2535,7 @@ msgstr "Impossible de sauvegarder le nouveau mot de passe." msgid "Password saved." msgstr "Mot de passe enregistré." -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:331 +#: actions/pathsadminpanel.php:59 msgid "Paths" msgstr "Chemins" @@ -2529,7 +2568,6 @@ msgid "Invalid SSL server. The maximum length is 255 characters." msgstr "Serveur SSL invalide. La longueur maximale est de 255 caractères." #: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58 -#: lib/adminpanelaction.php:311 msgid "Site" msgstr "Site" @@ -2704,7 +2742,7 @@ msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1 à 64 lettres minuscules ou chiffres, sans ponctuation ni espaces" #: actions/profilesettings.php:111 actions/register.php:448 -#: actions/showgroup.php:247 actions/tagother.php:104 +#: actions/showgroup.php:255 actions/tagother.php:104 #: lib/groupeditform.php:157 lib/userprofile.php:149 msgid "Full name" msgstr "Nom complet" @@ -2732,7 +2770,7 @@ msgid "Bio" msgstr "Bio" #: actions/profilesettings.php:132 actions/register.php:471 -#: actions/showgroup.php:256 actions/tagother.php:112 +#: actions/showgroup.php:264 actions/tagother.php:112 #: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:164 msgid "Location" @@ -2816,7 +2854,8 @@ msgstr "Impossible d’enregistrer le profil." msgid "Couldn't save tags." msgstr "Impossible d’enregistrer les marques." -#: actions/profilesettings.php:391 lib/adminpanelaction.php:137 +#. TRANS: Message after successful saving of administrative settings. +#: actions/profilesettings.php:391 lib/adminpanelaction.php:141 msgid "Settings saved." msgstr "Préférences enregistrées." @@ -2829,28 +2868,28 @@ msgstr "Au-delà de la limite de page (%s)" msgid "Could not retrieve public stream." msgstr "Impossible de récupérer le flux public." -#: actions/public.php:129 +#: actions/public.php:130 #, php-format msgid "Public timeline, page %d" msgstr "Flux public - page %d" -#: actions/public.php:131 lib/publicgroupnav.php:79 +#: actions/public.php:132 lib/publicgroupnav.php:79 msgid "Public timeline" msgstr "Flux public" -#: actions/public.php:159 +#: actions/public.php:160 msgid "Public Stream Feed (RSS 1.0)" msgstr "Fil du flux public (RSS 1.0)" -#: actions/public.php:163 +#: actions/public.php:164 msgid "Public Stream Feed (RSS 2.0)" msgstr "Fil du flux public (RSS 2.0)" -#: actions/public.php:167 +#: actions/public.php:168 msgid "Public Stream Feed (Atom)" msgstr "Fil du flux public (Atom)" -#: actions/public.php:187 +#: actions/public.php:188 #, php-format msgid "" "This is the public timeline for %%site.name%% but no one has posted anything " @@ -2859,11 +2898,11 @@ msgstr "" "Ceci est la chronologie publique de %%site.name%% mais personne n’a encore " "rien posté." -#: actions/public.php:190 +#: actions/public.php:191 msgid "Be the first to post!" msgstr "Soyez le premier à poster !" -#: actions/public.php:194 +#: actions/public.php:195 #, php-format msgid "" "Why not [register an account](%%action.register%%) and be the first to post!" @@ -2871,7 +2910,7 @@ msgstr "" "Pourquoi ne pas [créer un compte](%%action.register%%) et être le premier à " "poster !" -#: actions/public.php:241 +#: actions/public.php:242 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2885,7 +2924,7 @@ msgstr "" "vous avec vos amis, famille et collègues ! ([Plus d’informations](%%doc.help%" "%))" -#: actions/public.php:246 +#: actions/public.php:247 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -3067,8 +3106,7 @@ msgstr "Désolé, code d’invitation invalide." msgid "Registration successful" msgstr "Compte créé avec succès" -#: actions/register.php:114 actions/register.php:503 lib/action.php:463 -#: lib/logingroupnav.php:85 +#: actions/register.php:114 actions/register.php:503 lib/logingroupnav.php:85 msgid "Register" msgstr "Créer un compte" @@ -3256,7 +3294,7 @@ msgstr "Vous ne pouvez pas reprendre votre propre avis." msgid "You already repeated that notice." msgstr "Vous avez déjà repris cet avis." -#: actions/repeat.php:114 lib/noticelist.php:656 +#: actions/repeat.php:114 lib/noticelist.php:674 msgid "Repeated" msgstr "Repris" @@ -3264,33 +3302,33 @@ msgstr "Repris" msgid "Repeated!" msgstr "Repris !" -#: actions/replies.php:125 actions/repliesrss.php:68 +#: actions/replies.php:126 actions/repliesrss.php:68 #: lib/personalgroupnav.php:105 #, php-format msgid "Replies to %s" msgstr "Réponses à %s" -#: actions/replies.php:127 +#: actions/replies.php:128 #, php-format msgid "Replies to %1$s, page %2$d" msgstr "Réponses à %1$s, page %2$d" -#: actions/replies.php:144 +#: actions/replies.php:145 #, php-format msgid "Replies feed for %s (RSS 1.0)" msgstr "Flux des réponses pour %s (RSS 1.0)" -#: actions/replies.php:151 +#: actions/replies.php:152 #, php-format msgid "Replies feed for %s (RSS 2.0)" msgstr "Flux des réponses pour %s (RSS 2.0)" -#: actions/replies.php:158 +#: actions/replies.php:159 #, php-format msgid "Replies feed for %s (Atom)" msgstr "Flux des réponses pour %s (Atom)" -#: actions/replies.php:198 +#: actions/replies.php:199 #, php-format msgid "" "This is the timeline showing replies to %1$s but %2$s hasn't received a " @@ -3299,7 +3337,7 @@ msgstr "" "Ceci est la chronologie des réponses à %1$s mais %2$s n’a encore reçu aucun " "avis à son intention." -#: actions/replies.php:203 +#: actions/replies.php:204 #, php-format msgid "" "You can engage other users in a conversation, subscribe to more people or " @@ -3309,7 +3347,7 @@ msgstr "" "abonner à plus de personnes ou vous [inscrire à des groupes](%%action.groups%" "%)." -#: actions/replies.php:205 +#: actions/replies.php:206 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) or [post something to his or her " @@ -3338,7 +3376,6 @@ msgid "User is already sandboxed." msgstr "L’utilisateur est déjà dans le bac à sable." #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:336 msgid "Sessions" msgstr "Sessions" @@ -3363,7 +3400,7 @@ msgid "Turn on debugging output for sessions." msgstr "Activer la sortie de déboguage pour les sessions." #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/useradminpanel.php:293 +#: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "Sauvegarder les paramètres du site" @@ -3393,7 +3430,7 @@ msgstr "Organisation" msgid "Description" msgstr "Description" -#: actions/showapplication.php:192 actions/showgroup.php:429 +#: actions/showapplication.php:192 actions/showgroup.php:437 #: lib/profileaction.php:174 msgid "Statistics" msgstr "Statistiques" @@ -3456,22 +3493,22 @@ msgstr "Avis favoris de %1$s, page %2$d" msgid "Could not retrieve favorite notices." msgstr "Impossible d’afficher les favoris." -#: actions/showfavorites.php:170 +#: actions/showfavorites.php:171 #, php-format msgid "Feed for favorites of %s (RSS 1.0)" msgstr "Flux pour les amis de %s (RSS 1.0)" -#: actions/showfavorites.php:177 +#: actions/showfavorites.php:178 #, php-format msgid "Feed for favorites of %s (RSS 2.0)" msgstr "Flux pour les amis de %s (RSS 2.0)" -#: actions/showfavorites.php:184 +#: actions/showfavorites.php:185 #, php-format msgid "Feed for favorites of %s (Atom)" msgstr "Flux pour les amis de %s (Atom)" -#: actions/showfavorites.php:205 +#: actions/showfavorites.php:206 msgid "" "You haven't chosen any favorite notices yet. Click the fave button on " "notices you like to bookmark them for later or shed a spotlight on them." @@ -3480,7 +3517,7 @@ msgstr "" "favori sur les avis que vous aimez pour les mémoriser à l’avenir ou les " "mettre en lumière." -#: actions/showfavorites.php:207 +#: actions/showfavorites.php:208 #, php-format msgid "" "%s hasn't added any notices to his favorites yet. Post something interesting " @@ -3489,7 +3526,7 @@ msgstr "" "%s n’a pas ajouté d’avis à ses favoris pour le moment. Publiez quelque chose " "d’intéressant, et cela pourrait être ajouté à ses favoris :)" -#: actions/showfavorites.php:211 +#: actions/showfavorites.php:212 #, php-format msgid "" "%s hasn't added any notices to his favorites yet. Why not [register an " @@ -3500,7 +3537,7 @@ msgstr "" "un compte](%%%%action.register%%%%), puis poster quelque chose " "d’intéressant, qui serait ajouté à ses favoris :)" -#: actions/showfavorites.php:242 +#: actions/showfavorites.php:243 msgid "This is a way to share what you like." msgstr "C’est un moyen de partager ce que vous aimez." @@ -3514,67 +3551,67 @@ msgstr "Groupe %s" msgid "%1$s group, page %2$d" msgstr "Groupe %1$s, page %2$d" -#: actions/showgroup.php:218 +#: actions/showgroup.php:226 msgid "Group profile" msgstr "Profil du groupe" -#: actions/showgroup.php:263 actions/tagother.php:118 +#: actions/showgroup.php:271 actions/tagother.php:118 #: actions/userauthorization.php:175 lib/userprofile.php:177 msgid "URL" msgstr "URL" -#: actions/showgroup.php:274 actions/tagother.php:128 +#: actions/showgroup.php:282 actions/tagother.php:128 #: actions/userauthorization.php:187 lib/userprofile.php:194 msgid "Note" msgstr "Note" -#: actions/showgroup.php:284 lib/groupeditform.php:184 +#: actions/showgroup.php:292 lib/groupeditform.php:184 msgid "Aliases" msgstr "Alias" -#: actions/showgroup.php:293 +#: actions/showgroup.php:301 msgid "Group actions" msgstr "Actions du groupe" -#: actions/showgroup.php:328 +#: actions/showgroup.php:336 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Fil des avis du groupe %s (RSS 1.0)" -#: actions/showgroup.php:334 +#: actions/showgroup.php:342 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Fil des avis du groupe %s (RSS 2.0)" -#: actions/showgroup.php:340 +#: actions/showgroup.php:348 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "Fil des avis du groupe %s (Atom)" -#: actions/showgroup.php:345 +#: actions/showgroup.php:353 #, php-format msgid "FOAF for %s group" msgstr "ami d’un ami pour le groupe %s" -#: actions/showgroup.php:381 actions/showgroup.php:438 lib/groupnav.php:91 +#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 msgid "Members" msgstr "Membres" -#: actions/showgroup.php:386 lib/profileaction.php:117 +#: actions/showgroup.php:394 lib/profileaction.php:117 #: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(aucun)" -#: actions/showgroup.php:392 +#: actions/showgroup.php:400 msgid "All members" msgstr "Tous les membres" -#: actions/showgroup.php:432 +#: actions/showgroup.php:440 msgid "Created" msgstr "Créé" -#: actions/showgroup.php:448 +#: actions/showgroup.php:456 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3590,7 +3627,7 @@ msgstr "" "action.register%%%%) pour devenir membre de ce groupe et bien plus ! ([En " "lire plus](%%%%doc.help%%%%))" -#: actions/showgroup.php:454 +#: actions/showgroup.php:462 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3603,7 +3640,7 @@ msgstr "" "logiciel libre [StatusNet](http://status.net/). Ses membres partagent des " "messages courts à propos de leur vie et leurs intérêts. " -#: actions/showgroup.php:482 +#: actions/showgroup.php:490 msgid "Admins" msgstr "Administrateurs" @@ -3984,17 +4021,17 @@ msgstr "Impossible d’enregistrer l’abonnement." #: actions/subscribe.php:77 msgid "This action only accepts POST requests." -msgstr "" +msgstr "Cette action n'accepte que les requêtes de type POST." #: actions/subscribe.php:107 -#, fuzzy msgid "No such profile." -msgstr "Fichier non trouvé." +msgstr "Profil non-trouvé." #: actions/subscribe.php:117 -#, fuzzy msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." -msgstr "Vous n’êtes pas abonné(e) à ce profil." +msgstr "" +"Vous ne pouvez pas vous abonner à un profil OMB 0.1 distant par cette " +"action." #: actions/subscribe.php:145 msgid "Subscribed" @@ -4089,22 +4126,22 @@ msgstr "Jabber" msgid "SMS" msgstr "SMS" -#: actions/tag.php:68 +#: actions/tag.php:69 #, php-format msgid "Notices tagged with %1$s, page %2$d" msgstr "Avis marqués avec %1$s, page %2$d" -#: actions/tag.php:86 +#: actions/tag.php:87 #, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Flux des avis pour la marque %s (RSS 1.0)" -#: actions/tag.php:92 +#: actions/tag.php:93 #, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Flux des avis pour la marque %s (RSS 2.0)" -#: actions/tag.php:98 +#: actions/tag.php:99 #, php-format msgid "Notice feed for tag %s (Atom)" msgstr "Flux des avis pour la marque %s (Atom)" @@ -4159,7 +4196,7 @@ msgstr "" msgid "No such tag." msgstr "Cette marque n’existe pas." -#: actions/twitapitrends.php:87 +#: actions/twitapitrends.php:85 msgid "API method under construction." msgstr "Méthode API en construction." @@ -4191,71 +4228,73 @@ msgstr "" "La licence du flux auquel vous êtes abonné(e), « %1$s », n’est pas compatible " "avec la licence du site « %2$s »." -#: actions/useradminpanel.php:58 lib/adminpanelaction.php:321 -#: lib/personalgroupnav.php:115 +#. TRANS: User admin panel title +#: actions/useradminpanel.php:59 +#, fuzzy +msgctxt "TITLE" msgid "User" msgstr "Utilisateur" -#: actions/useradminpanel.php:69 +#: actions/useradminpanel.php:70 msgid "User settings for this StatusNet site." msgstr "Paramètres des utilisateurs pour ce site StatusNet." -#: actions/useradminpanel.php:148 +#: actions/useradminpanel.php:149 msgid "Invalid bio limit. Must be numeric." msgstr "Limite de bio invalide : doit être numérique." -#: actions/useradminpanel.php:154 +#: actions/useradminpanel.php:155 msgid "Invalid welcome text. Max length is 255 characters." msgstr "Texte de bienvenue invalide. La taille maximale est de 255 caractères." -#: actions/useradminpanel.php:164 +#: actions/useradminpanel.php:165 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "Abonnement par défaut invalide : « %1$s » n’est pas un utilisateur." -#: actions/useradminpanel.php:217 lib/accountsettingsaction.php:108 +#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Profil" -#: actions/useradminpanel.php:221 +#: actions/useradminpanel.php:222 msgid "Bio Limit" msgstr "Limite de bio" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:223 msgid "Maximum length of a profile bio in characters." msgstr "Longueur maximale de la bio d’un profil en caractères." -#: actions/useradminpanel.php:230 +#: actions/useradminpanel.php:231 msgid "New users" msgstr "Nouveaux utilisateurs" -#: actions/useradminpanel.php:234 +#: actions/useradminpanel.php:235 msgid "New user welcome" msgstr "Accueil des nouveaux utilisateurs" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:236 msgid "Welcome text for new users (Max 255 chars)." msgstr "" "Texte de bienvenue pour les nouveaux utilisateurs (maximum 255 caractères)." -#: actions/useradminpanel.php:240 +#: actions/useradminpanel.php:241 msgid "Default subscription" msgstr "Abonnements par défaut" -#: actions/useradminpanel.php:241 +#: actions/useradminpanel.php:242 msgid "Automatically subscribe new users to this user." msgstr "Abonner automatiquement les nouveaux utilisateurs à cet utilisateur." -#: actions/useradminpanel.php:250 +#: actions/useradminpanel.php:251 msgid "Invitations" msgstr "Invitations" -#: actions/useradminpanel.php:255 +#: actions/useradminpanel.php:256 msgid "Invitations enabled" msgstr "Invitations activées" -#: actions/useradminpanel.php:257 +#: actions/useradminpanel.php:258 msgid "Whether to allow users to invite new users." msgstr "" "S’il faut autoriser les utilisateurs à inviter de nouveaux utilisateurs." @@ -4455,7 +4494,7 @@ msgstr "" msgid "Plugins" msgstr "Extensions" -#: actions/version.php:196 lib/action.php:747 +#: actions/version.php:196 lib/action.php:778 msgid "Version" msgstr "Version" @@ -4494,6 +4533,10 @@ msgstr "N’appartient pas au groupe." msgid "Group leave failed." msgstr "La désinscription du groupe a échoué." +#: classes/Local_group.php:41 +msgid "Could not update local group." +msgstr "Impossible de mettre à jour le groupe local." + #: classes/Login_token.php:76 #, php-format msgid "Could not create login token for %s" @@ -4511,27 +4554,27 @@ msgstr "Impossible d’insérer le message." msgid "Could not update message with new URI." msgstr "Impossible de mettre à jour le message avec un nouvel URI." -#: classes/Notice.php:157 +#: classes/Notice.php:172 #, php-format msgid "DB error inserting hashtag: %s" msgstr "Erreur de base de donnée en insérant la marque (hashtag) : %s" -#: classes/Notice.php:222 +#: classes/Notice.php:239 msgid "Problem saving notice. Too long." msgstr "Problème lors de l’enregistrement de l’avis ; trop long." -#: classes/Notice.php:226 +#: classes/Notice.php:243 msgid "Problem saving notice. Unknown user." msgstr "Erreur lors de l’enregistrement de l’avis. Utilisateur inconnu." -#: classes/Notice.php:231 +#: classes/Notice.php:248 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" "Trop d’avis, trop vite ! Faites une pause et publiez à nouveau dans quelques " "minutes." -#: classes/Notice.php:237 +#: classes/Notice.php:254 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." @@ -4539,19 +4582,19 @@ msgstr "" "Trop de messages en double trop vite ! Prenez une pause et publiez à nouveau " "dans quelques minutes." -#: classes/Notice.php:243 +#: classes/Notice.php:260 msgid "You are banned from posting notices on this site." msgstr "Il vous est interdit de poster des avis sur ce site." -#: classes/Notice.php:309 classes/Notice.php:335 +#: classes/Notice.php:326 classes/Notice.php:352 msgid "Problem saving notice." msgstr "Problème lors de l’enregistrement de l’avis." -#: classes/Notice.php:882 +#: classes/Notice.php:911 msgid "Problem saving group inbox." msgstr "Problème lors de l’enregistrement de la boîte de réception du groupe." -#: classes/Notice.php:1407 +#: classes/Notice.php:1442 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -4580,19 +4623,28 @@ msgstr "Impossible de supprimer l’abonnement à soi-même." msgid "Couldn't delete subscription." msgstr "Impossible de cesser l’abonnement" -#: classes/User.php:372 +#: classes/User.php:373 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "Bienvenue à %1$s, @%2$s !" -#: classes/User_group.php:423 +#: classes/User_group.php:462 msgid "Could not create group." msgstr "Impossible de créer le groupe." -#: classes/User_group.php:452 +#: classes/User_group.php:471 +#, fuzzy +msgid "Could not set group URI." +msgstr "Impossible de définir l'URI du groupe." + +#: classes/User_group.php:492 msgid "Could not set group membership." msgstr "Impossible d’établir l’inscription au groupe." +#: classes/User_group.php:506 +msgid "Could not save local group info." +msgstr "Impossible d’enregistrer les informations du groupe local." + #: lib/accountsettingsaction.php:108 msgid "Change your profile settings" msgstr "Modifier vos paramètres de profil" @@ -4634,120 +4686,190 @@ msgstr "Page sans nom" msgid "Primary site navigation" msgstr "Navigation primaire du site" +#. TRANS: Tooltip for main menu option "Personal" #: lib/action.php:439 -msgid "Home" -msgstr "Accueil" - -#: lib/action.php:439 +#, fuzzy +msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Profil personnel et flux des amis" -#: lib/action.php:441 +#: lib/action.php:442 +#, fuzzy +msgctxt "MENU" +msgid "Personal" +msgstr "Personnel" + +#. TRANS: Tooltip for main menu option "Account" +#: lib/action.php:444 +#, fuzzy +msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Modifier votre courriel, avatar, mot de passe, profil" -#: lib/action.php:444 -msgid "Connect" -msgstr "Connecter" +#: lib/action.php:447 +#, fuzzy +msgctxt "MENU" +msgid "Account" +msgstr "Compte" -#: lib/action.php:444 +#. TRANS: Tooltip for main menu option "Services" +#: lib/action.php:450 +#, fuzzy +msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Se connecter aux services" -#: lib/action.php:448 +#: lib/action.php:453 +#, fuzzy +msgctxt "MENU" +msgid "Connect" +msgstr "Connecter" + +#. TRANS: Tooltip for menu option "Admin" +#: lib/action.php:457 +#, fuzzy +msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Modifier la configuration du site" -#: lib/action.php:452 lib/subgroupnav.php:105 -msgid "Invite" -msgstr "Inviter" +#: lib/action.php:460 +#, fuzzy +msgctxt "MENU" +msgid "Admin" +msgstr "Administrer" -#: lib/action.php:453 lib/subgroupnav.php:106 -#, php-format +#. TRANS: Tooltip for main menu option "Invite" +#: lib/action.php:464 +#, fuzzy, php-format +msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Inviter des amis et collègues à vous rejoindre dans %s" -#: lib/action.php:458 -msgid "Logout" -msgstr "Fermeture de session" +#: lib/action.php:467 +#, fuzzy +msgctxt "MENU" +msgid "Invite" +msgstr "Inviter" -#: lib/action.php:458 +#. TRANS: Tooltip for main menu option "Logout" +#: lib/action.php:473 +#, fuzzy +msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Fermer la session" -#: lib/action.php:463 +#: lib/action.php:476 +#, fuzzy +msgctxt "MENU" +msgid "Logout" +msgstr "Fermeture de session" + +#. TRANS: Tooltip for main menu option "Register" +#: lib/action.php:481 +#, fuzzy +msgctxt "TOOLTIP" msgid "Create an account" msgstr "Créer un compte" -#: lib/action.php:466 +#: lib/action.php:484 +#, fuzzy +msgctxt "MENU" +msgid "Register" +msgstr "Créer un compte" + +#. TRANS: Tooltip for main menu option "Login" +#: lib/action.php:487 +#, fuzzy +msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Ouvrir une session" -#: lib/action.php:469 lib/action.php:732 -msgid "Help" -msgstr "Aide" +#: lib/action.php:490 +#, fuzzy +msgctxt "MENU" +msgid "Login" +msgstr "Ouvrir une session" -#: lib/action.php:469 +#. TRANS: Tooltip for main menu option "Help" +#: lib/action.php:493 +#, fuzzy +msgctxt "TOOLTIP" msgid "Help me!" msgstr "À l’aide !" -#: lib/action.php:472 lib/searchaction.php:127 -msgid "Search" -msgstr "Rechercher" +#: lib/action.php:496 +#, fuzzy +msgctxt "MENU" +msgid "Help" +msgstr "Aide" -#: lib/action.php:472 +#. TRANS: Tooltip for main menu option "Search" +#: lib/action.php:499 +#, fuzzy +msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Rechercher des personnes ou du texte" -#: lib/action.php:493 +#: lib/action.php:502 +#, fuzzy +msgctxt "MENU" +msgid "Search" +msgstr "Rechercher" + +#. TRANS: DT element for site notice. String is hidden in default CSS. +#: lib/action.php:524 msgid "Site notice" msgstr "Notice du site" -#: lib/action.php:559 +#: lib/action.php:590 msgid "Local views" msgstr "Vues locales" -#: lib/action.php:625 +#: lib/action.php:656 msgid "Page notice" msgstr "Avis de la page" -#: lib/action.php:727 +#: lib/action.php:758 msgid "Secondary site navigation" msgstr "Navigation secondaire du site" -#: lib/action.php:734 +#: lib/action.php:763 +msgid "Help" +msgstr "Aide" + +#: lib/action.php:765 msgid "About" msgstr "À propos" -#: lib/action.php:736 +#: lib/action.php:767 msgid "FAQ" msgstr "FAQ" -#: lib/action.php:740 +#: lib/action.php:771 msgid "TOS" msgstr "CGU" -#: lib/action.php:743 +#: lib/action.php:774 msgid "Privacy" msgstr "Confidentialité" -#: lib/action.php:745 +#: lib/action.php:776 msgid "Source" msgstr "Source" -#: lib/action.php:749 +#: lib/action.php:780 msgid "Contact" msgstr "Contact" -#: lib/action.php:751 +#: lib/action.php:782 msgid "Badge" msgstr "Insigne" -#: lib/action.php:779 +#: lib/action.php:810 msgid "StatusNet software license" msgstr "Licence du logiciel StatusNet" -#: lib/action.php:782 +#: lib/action.php:813 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4756,12 +4878,12 @@ msgstr "" "**%%site.name%%** est un service de microblogging qui vous est proposé par " "[%%site.broughtby%%](%%site.broughtbyurl%%)." -#: lib/action.php:784 +#: lib/action.php:815 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** est un service de micro-blogging." -#: lib/action.php:786 +#: lib/action.php:817 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4772,111 +4894,164 @@ msgstr "" "version %s, disponible sous la licence [GNU Affero General Public License] " "(http://www.fsf.org/licensing/licenses/agpl-3.0.html)." -#: lib/action.php:801 +#: lib/action.php:832 msgid "Site content license" msgstr "Licence du contenu du site" -#: lib/action.php:806 +#: lib/action.php:837 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "Le contenu et les données de %1$s sont privés et confidentiels." -#: lib/action.php:811 +#: lib/action.php:842 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" "Le contenu et les données sont sous le droit d’auteur de %1$s. Tous droits " "réservés." -#: lib/action.php:814 +#: lib/action.php:845 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" "Le contenu et les données sont sous le droit d’auteur du contributeur. Tous " "droits réservés." -#: lib/action.php:827 +#: lib/action.php:858 msgid "All " msgstr "Tous " -#: lib/action.php:833 +#: lib/action.php:864 msgid "license." msgstr "licence." -#: lib/action.php:1132 +#: lib/action.php:1163 msgid "Pagination" msgstr "Pagination" -#: lib/action.php:1141 +#: lib/action.php:1172 msgid "After" msgstr "Après" -#: lib/action.php:1149 +#: lib/action.php:1180 msgid "Before" msgstr "Avant" -#: lib/activity.php:382 +#: lib/activity.php:449 msgid "Can't handle remote content yet." -msgstr "" +msgstr "Impossible de gérer le contenu distant pour le moment." -#: lib/activity.php:410 +#: lib/activity.php:477 msgid "Can't handle embedded XML content yet." -msgstr "" +msgstr "Impossible de gérer le contenu XML embarqué pour le moment." -#: lib/activity.php:414 +#: lib/activity.php:481 msgid "Can't handle embedded Base64 content yet." -msgstr "" +msgstr "Impossible de gérer le contenu en Base64 embarqué pour le moment." -#: lib/adminpanelaction.php:96 +#. TRANS: Client error message +#: lib/adminpanelaction.php:98 msgid "You cannot make changes to this site." msgstr "Vous ne pouvez pas faire de modifications sur ce site." -#: lib/adminpanelaction.php:107 +#. TRANS: Client error message +#: lib/adminpanelaction.php:110 msgid "Changes to that panel are not allowed." msgstr "La modification de ce panneau n’est pas autorisée." -#: lib/adminpanelaction.php:206 +#. TRANS: Client error message +#: lib/adminpanelaction.php:211 msgid "showForm() not implemented." msgstr "showForm() n’a pas été implémentée." -#: lib/adminpanelaction.php:235 +#. TRANS: Client error message +#: lib/adminpanelaction.php:241 msgid "saveSettings() not implemented." msgstr "saveSettings() n’a pas été implémentée." -#: lib/adminpanelaction.php:258 +#. TRANS: Client error message +#: lib/adminpanelaction.php:265 msgid "Unable to delete design setting." msgstr "Impossible de supprimer les paramètres de conception." -#: lib/adminpanelaction.php:312 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:330 msgid "Basic site configuration" msgstr "Configuration basique du site" -#: lib/adminpanelaction.php:317 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:332 +#, fuzzy +msgctxt "MENU" +msgid "Site" +msgstr "Site" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:338 msgid "Design configuration" msgstr "Configuration de la conception" -#: lib/adminpanelaction.php:322 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:340 +#, fuzzy +msgctxt "MENU" +msgid "Design" +msgstr "Conception" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:346 msgid "User configuration" msgstr "Configuration utilisateur" -#: lib/adminpanelaction.php:327 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:348 +#, fuzzy +msgctxt "MENU" +msgid "User" +msgstr "Utilisateur" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:354 msgid "Access configuration" msgstr "Configuration d’accès" -#: lib/adminpanelaction.php:332 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:356 +#, fuzzy +msgctxt "MENU" +msgid "Access" +msgstr "Accès" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:362 msgid "Paths configuration" msgstr "Configuration des chemins" -#: lib/adminpanelaction.php:337 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:364 +#, fuzzy +msgctxt "MENU" +msgid "Paths" +msgstr "Chemins" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:370 msgid "Sessions configuration" msgstr "Configuration des sessions" -#: lib/apiauth.php:95 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:372 +#, fuzzy +msgctxt "MENU" +msgid "Sessions" +msgstr "Sessions" + +#: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." msgstr "" "La ressource de l’API a besoin de l’accès en lecture et en écriture, mais " "vous n’y avez accès qu’en lecture." -#: lib/apiauth.php:273 +#: lib/apiauth.php:272 #, php-format msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" msgstr "" @@ -4970,11 +5145,11 @@ msgstr "Avis sur lesquels cette pièce jointe apparaît." msgid "Tags for this attachment" msgstr "Marques de cette pièce jointe" -#: lib/authenticationplugin.php:218 lib/authenticationplugin.php:223 +#: lib/authenticationplugin.php:220 lib/authenticationplugin.php:225 msgid "Password changing failed" msgstr "La modification du mot de passe a échoué" -#: lib/authenticationplugin.php:233 +#: lib/authenticationplugin.php:235 msgid "Password changing is not allowed" msgstr "La modification du mot de passe n’est pas autorisée" @@ -5179,7 +5354,7 @@ msgstr "" "pendant 2 minutes : %s" #: lib/command.php:692 -#, fuzzy, php-format +#, php-format msgid "Unsubscribed %s" msgstr "Désabonné de %s" @@ -5214,7 +5389,6 @@ msgstr[0] "Vous êtes membre de ce groupe :" msgstr[1] "Vous êtes membre de ces groupes :" #: lib/command.php:769 -#, fuzzy msgid "" "Commands:\n" "on - turn on notifications\n" @@ -5267,6 +5441,7 @@ msgstr "" "d - message direct à l’utilisateur\n" "get - obtenir le dernier avis de l’utilisateur\n" "whois - obtenir le profil de l’utilisateur\n" +"lose - forcer un utilisateur à arrêter de vous suivre\n" "fav - ajouter de dernier avis de l’utilisateur comme favori\n" "fav # - ajouter l’avis correspondant à l’identifiant comme " "favori\n" @@ -5294,20 +5469,20 @@ msgstr "" "tracks - pas encore implémenté.\n" "tracking - pas encore implémenté.\n" -#: lib/common.php:136 +#: lib/common.php:148 msgid "No configuration file found. " msgstr "Aucun fichier de configuration n’a été trouvé. " -#: lib/common.php:137 +#: lib/common.php:149 msgid "I looked for configuration files in the following places: " msgstr "" "J’ai cherché des fichiers de configuration dans les emplacements suivants : " -#: lib/common.php:139 +#: lib/common.php:151 msgid "You may wish to run the installer to fix this." msgstr "Vous pouvez essayer de lancer l’installeur pour régler ce problème." -#: lib/common.php:140 +#: lib/common.php:152 msgid "Go to the installer." msgstr "Aller au programme d’installation" @@ -5500,23 +5675,23 @@ msgstr "Erreur système lors du transfert du fichier." msgid "Not an image or corrupt file." msgstr "Ceci n’est pas une image, ou c’est un fichier corrompu." -#: lib/imagefile.php:105 +#: lib/imagefile.php:109 msgid "Unsupported image file format." msgstr "Format de fichier d’image non supporté." -#: lib/imagefile.php:118 +#: lib/imagefile.php:122 msgid "Lost our file." msgstr "Fichier perdu." -#: lib/imagefile.php:150 lib/imagefile.php:197 +#: lib/imagefile.php:166 lib/imagefile.php:231 msgid "Unknown file type" msgstr "Type de fichier inconnu" -#: lib/imagefile.php:217 +#: lib/imagefile.php:251 msgid "MB" msgstr "Mo" -#: lib/imagefile.php:219 +#: lib/imagefile.php:253 msgid "kB" msgstr "Ko" @@ -5899,6 +6074,12 @@ msgstr "À" msgid "Available characters" msgstr "Caractères restants" +#: lib/messageform.php:178 lib/noticeform.php:236 +#, fuzzy +msgctxt "Send button for sending notice" +msgid "Send" +msgstr "Envoyer" + #: lib/noticeform.php:160 msgid "Send a notice" msgstr "Envoyer un avis" @@ -5957,23 +6138,23 @@ msgstr "O" msgid "at" msgstr "chez" -#: lib/noticelist.php:558 +#: lib/noticelist.php:566 msgid "in context" msgstr "dans le contexte" -#: lib/noticelist.php:583 +#: lib/noticelist.php:601 msgid "Repeated by" msgstr "Repris par" -#: lib/noticelist.php:610 +#: lib/noticelist.php:628 msgid "Reply to this notice" msgstr "Répondre à cet avis" -#: lib/noticelist.php:611 +#: lib/noticelist.php:629 msgid "Reply" msgstr "Répondre" -#: lib/noticelist.php:655 +#: lib/noticelist.php:673 msgid "Notice repeated" msgstr "Avis repris" @@ -6021,6 +6202,10 @@ msgstr "Réponses" msgid "Favorites" msgstr "Favoris" +#: lib/personalgroupnav.php:115 +msgid "User" +msgstr "Utilisateur" + #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "Boîte de réception" @@ -6110,7 +6295,7 @@ msgstr "Reprendre cet avis ?" msgid "Repeat this notice" msgstr "Reprendre cet avis" -#: lib/router.php:665 +#: lib/router.php:668 msgid "No single user defined for single-user mode." msgstr "Aucun utilisateur unique défini pour le mode mono-utilisateur." @@ -6130,6 +6315,10 @@ msgstr "Rechercher sur le site" msgid "Keyword(s)" msgstr "Mot(s) clef(s)" +#: lib/searchaction.php:127 +msgid "Search" +msgstr "Rechercher" + #: lib/searchaction.php:162 msgid "Search help" msgstr "Aide sur la recherche" @@ -6181,6 +6370,15 @@ msgstr "Abonnés de %s" msgid "Groups %s is a member of" msgstr "Groupes de %s" +#: lib/subgroupnav.php:105 +msgid "Invite" +msgstr "Inviter" + +#: lib/subgroupnav.php:106 +#, php-format +msgid "Invite friends and colleagues to join you on %s" +msgstr "Inviter des amis et collègues à vous rejoindre dans %s" + #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -6251,47 +6449,47 @@ msgstr "Message" msgid "Moderate" msgstr "Modérer" -#: lib/util.php:952 +#: lib/util.php:1013 msgid "a few seconds ago" msgstr "il y a quelques secondes" -#: lib/util.php:954 +#: lib/util.php:1015 msgid "about a minute ago" msgstr "il y a 1 minute" -#: lib/util.php:956 +#: lib/util.php:1017 #, php-format msgid "about %d minutes ago" msgstr "il y a %d minutes" -#: lib/util.php:958 +#: lib/util.php:1019 msgid "about an hour ago" msgstr "il y a 1 heure" -#: lib/util.php:960 +#: lib/util.php:1021 #, php-format msgid "about %d hours ago" msgstr "il y a %d heures" -#: lib/util.php:962 +#: lib/util.php:1023 msgid "about a day ago" msgstr "il y a 1 jour" -#: lib/util.php:964 +#: lib/util.php:1025 #, php-format msgid "about %d days ago" msgstr "il y a %d jours" -#: lib/util.php:966 +#: lib/util.php:1027 msgid "about a month ago" msgstr "il y a 1 mois" -#: lib/util.php:968 +#: lib/util.php:1029 #, php-format msgid "about %d months ago" msgstr "il y a %d mois" -#: lib/util.php:970 +#: lib/util.php:1031 msgid "about a year ago" msgstr "il y a environ 1 an" diff --git a/locale/ga/LC_MESSAGES/statusnet.po b/locale/ga/LC_MESSAGES/statusnet.po index b60553d44f..0b62fe337c 100644 --- a/locale/ga/LC_MESSAGES/statusnet.po +++ b/locale/ga/LC_MESSAGES/statusnet.po @@ -8,84 +8,90 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-02-24 23:49+0000\n" -"PO-Revision-Date: 2010-02-24 23:50:51+0000\n" +"POT-Creation-Date: 2010-03-02 21:02+0000\n" +"PO-Revision-Date: 2010-03-02 21:02:51+0000\n" "Language-Team: Irish\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r62925); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ga\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=5; plural=n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : " "4;\n" -#: actions/accessadminpanel.php:54 lib/adminpanelaction.php:326 +#. TRANS: Page title +#: actions/accessadminpanel.php:55 #, fuzzy msgid "Access" msgstr "Aceptar" -#: actions/accessadminpanel.php:65 +#. TRANS: Page notice +#: actions/accessadminpanel.php:67 #, fuzzy msgid "Site access settings" msgstr "Configuracións de Twitter" -#: actions/accessadminpanel.php:158 +#. TRANS: Form legend for registration form. +#: actions/accessadminpanel.php:161 #, fuzzy msgid "Registration" msgstr "Rexistrar" -#: actions/accessadminpanel.php:161 -#, fuzzy -msgid "Private" -msgstr "Privacidade" - -#: actions/accessadminpanel.php:163 +#. TRANS: Checkbox instructions for admin setting "Private" +#: actions/accessadminpanel.php:165 msgid "Prohibit anonymous users (not logged in) from viewing site?" msgstr "" +#. TRANS: Checkbox label for prohibiting anonymous users from viewing site. #: actions/accessadminpanel.php:167 #, fuzzy +msgctxt "LABEL" +msgid "Private" +msgstr "Privacidade" + +#. TRANS: Checkbox instructions for admin setting "Invite only" +#: actions/accessadminpanel.php:174 +msgid "Make registration invitation only." +msgstr "" + +#. TRANS: Checkbox label for configuring site as invite only. +#: actions/accessadminpanel.php:176 +#, fuzzy msgid "Invite only" msgstr "Invitar" -#: actions/accessadminpanel.php:169 -msgid "Make registration invitation only." +#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations) +#: actions/accessadminpanel.php:183 +msgid "Disable new registrations." msgstr "" -#: actions/accessadminpanel.php:173 +#. TRANS: Checkbox label for disabling new user registrations. +#: actions/accessadminpanel.php:185 #, fuzzy msgid "Closed" msgstr "Bloquear" -#: actions/accessadminpanel.php:175 -msgid "Disable new registrations." -msgstr "" - -#: actions/accessadminpanel.php:189 actions/designadminpanel.php:586 -#: actions/emailsettings.php:195 actions/imsettings.php:163 -#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 -#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 -#: actions/siteadminpanel.php:336 actions/smssettings.php:181 -#: actions/subscriptions.php:208 actions/tagother.php:154 -#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 -#: lib/applicationeditform.php:334 lib/designsettings.php:256 -#: lib/groupeditform.php:202 -msgid "Save" -msgstr "Gardar" - -#: actions/accessadminpanel.php:189 +#. TRANS: Title / tooltip for button to save access settings in site admin panel +#: actions/accessadminpanel.php:202 #, fuzzy msgid "Save access settings" msgstr "Configuracións de Twitter" -#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 -#: actions/showfavorites.php:137 actions/tag.php:51 +#: actions/accessadminpanel.php:203 +#, fuzzy +msgctxt "BUTTON" +msgid "Save" +msgstr "Gardar" + +#. TRANS: Server error when page not found (404) +#: actions/all.php:64 actions/public.php:98 actions/replies.php:93 +#: actions/showfavorites.php:138 actions/tag.php:52 #, fuzzy msgid "No such page" msgstr "Non existe a etiqueta." -#: actions/all.php:74 actions/allrss.php:68 +#: actions/all.php:75 actions/allrss.php:68 #: actions/apiaccountupdatedeliverydevice.php:113 #: actions/apiaccountupdateprofile.php:105 #: actions/apiaccountupdateprofilebackgroundimage.php:116 @@ -99,72 +105,82 @@ msgstr "Non existe a etiqueta." #: actions/apitimelinehome.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/otp.php:76 -#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154 -#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 -#: actions/showfavorites.php:105 actions/userbyid.php:74 -#: actions/usergroups.php:91 actions/userrss.php:38 actions/xrds.php:71 -#: lib/command.php:163 lib/command.php:302 lib/command.php:355 -#: lib/command.php:401 lib/command.php:462 lib/command.php:518 -#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 +#: actions/hcard.php:67 actions/microsummary.php:62 actions/newmessage.php:116 +#: actions/otp.php:76 actions/remotesubscribe.php:145 +#: actions/remotesubscribe.php:154 actions/replies.php:73 +#: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/xrds.php:71 lib/command.php:163 lib/command.php:302 +#: lib/command.php:355 lib/command.php:401 lib/command.php:462 +#: lib/command.php:518 lib/galleryaction.php:59 lib/mailbox.php:82 +#: lib/profileaction.php:77 msgid "No such user." msgstr "Ningún usuario." -#: actions/all.php:84 +#. TRANS: Page title. %1$s is user nickname, %2$d is page number +#: actions/all.php:86 #, fuzzy, php-format msgid "%1$s and friends, page %2$d" msgstr "%s e amigos" -#: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 +#. TRANS: Page title. %1$s is user nickname +#. TRANS: H1 text. %1$s is user nickname +#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" msgstr "%s e amigos" -#: actions/all.php:99 +#. TRANS: %1$s is user nickname +#: actions/all.php:103 #, fuzzy, php-format msgid "Feed for friends of %s (RSS 1.0)" msgstr "Fonte para os amigos de %s" -#: actions/all.php:107 +#. TRANS: %1$s is user nickname +#: actions/all.php:112 #, fuzzy, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "Fonte para os amigos de %s" -#: actions/all.php:115 +#. TRANS: %1$s is user nickname +#: actions/all.php:121 #, fuzzy, php-format msgid "Feed for friends of %s (Atom)" msgstr "Fonte para os amigos de %s" -#: actions/all.php:127 +#. TRANS: %1$s is user nickname +#: actions/all.php:134 #, php-format msgid "" "This is the timeline for %s and friends but no one has posted anything yet." msgstr "" -#: actions/all.php:132 +#: actions/all.php:139 #, php-format msgid "" "Try subscribing to more people, [join a group](%%action.groups%%) or post " "something yourself." msgstr "" -#: actions/all.php:134 +#. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@" +#: actions/all.php:142 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) from his profile or [post something to " "his or her attention](%%%%action.newnotice%%%%?status_textarea=%3$s)." msgstr "" -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211 +#: actions/all.php:145 actions/replies.php:210 actions/showstream.php:211 #, 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/all.php:165 +#. TRANS: H1 text +#: actions/all.php:174 #, fuzzy msgid "You and friends" msgstr "%s e amigos" @@ -183,20 +199,20 @@ msgstr "Actualizacións dende %1$s e amigos en %2$s!" #: actions/apiaccountverifycredentials.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:128 actions/apigroupcreate.php:136 +#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: actions/apigroupleave.php:141 actions/apigrouplist.php:132 #: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 #: actions/apigroupshow.php:115 actions/apihelptest.php:88 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 -#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184 +#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 #: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:207 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 #, fuzzy msgid "API method not found." msgstr "Método da API non atopado" @@ -230,8 +246,9 @@ msgstr "Non se puido actualizar o usuario." #: actions/apiaccountupdateprofilebackgroundimage.php:194 #: actions/apiaccountupdateprofilecolors.php:185 #: 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 +#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 +#: 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." @@ -256,7 +273,7 @@ msgstr "" #: actions/apiaccountupdateprofilebackgroundimage.php:146 #: actions/apiaccountupdateprofilecolors.php:164 #: actions/apiaccountupdateprofilecolors.php:174 -#: actions/groupdesignsettings.php:287 actions/groupdesignsettings.php:297 +#: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300 #: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 #: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 #, fuzzy @@ -379,68 +396,68 @@ msgstr "Non se pudo recuperar a liña de tempo publica." msgid "Could not find target user." msgstr "Non se puido atopar ningún estado" -#: actions/apigroupcreate.php:164 actions/editgroup.php:182 +#: actions/apigroupcreate.php:166 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:215 #: 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/apigroupcreate.php:173 actions/editgroup.php:186 +#: actions/apigroupcreate.php:175 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:238 #: 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/apigroupcreate.php:180 actions/editgroup.php:189 +#: actions/apigroupcreate.php:182 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:218 #: actions/register.php:210 msgid "Not a valid nickname." msgstr "Non é un alcume válido." -#: actions/apigroupcreate.php:196 actions/editapplication.php:215 -#: actions/editgroup.php:195 actions/newapplication.php:203 +#: actions/apigroupcreate.php:198 actions/editapplication.php:215 +#: actions/editgroup.php:199 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: 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:205 actions/editgroup.php:198 +#: actions/apigroupcreate.php:207 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:225 #: actions/register.php:220 msgid "Full name is too long (max 255 chars)." msgstr "O nome completo é demasiado longo (max 255 car)." -#: actions/apigroupcreate.php:213 actions/editapplication.php:190 +#: actions/apigroupcreate.php:215 actions/editapplication.php:190 #: actions/newapplication.php:172 #, php-format msgid "Description is too long (max %d chars)." msgstr "O teu Bio é demasiado longo (max 140 car.)." -#: actions/apigroupcreate.php:224 actions/editgroup.php:204 +#: actions/apigroupcreate.php:226 actions/editgroup.php:208 #: actions/newgroup.php:148 actions/profilesettings.php:232 #: actions/register.php:227 msgid "Location is too long (max 255 chars)." msgstr "A localización é demasiado longa (max 255 car.)." -#: actions/apigroupcreate.php:243 actions/editgroup.php:215 +#: actions/apigroupcreate.php:245 actions/editgroup.php:219 #: actions/newgroup.php:159 #, php-format msgid "Too many aliases! Maximum %d." msgstr "" -#: actions/apigroupcreate.php:264 actions/editgroup.php:224 +#: actions/apigroupcreate.php:266 actions/editgroup.php:228 #: actions/newgroup.php:168 #, fuzzy, php-format msgid "Invalid alias: \"%s\"" msgstr "Etiqueta inválida: '%s'" -#: actions/apigroupcreate.php:273 actions/editgroup.php:228 +#: actions/apigroupcreate.php:275 actions/editgroup.php:232 #: 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:286 actions/editgroup.php:234 +#: actions/apigroupcreate.php:288 actions/editgroup.php:238 #: actions/newgroup.php:178 msgid "Alias can't be the same as nickname." msgstr "" @@ -452,15 +469,15 @@ msgstr "" msgid "Group not found!" msgstr "Método da API non atopado" -#: actions/apigroupjoin.php:110 actions/joingroup.php:90 +#: actions/apigroupjoin.php:110 actions/joingroup.php:100 msgid "You are already a member of that group." msgstr "Xa estas suscrito a estes usuarios:" -#: actions/apigroupjoin.php:119 actions/joingroup.php:95 lib/command.php:221 +#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:221 msgid "You have been blocked from that group by the admin." msgstr "" -#: actions/apigroupjoin.php:138 actions/joingroup.php:124 +#: actions/apigroupjoin.php:138 actions/joingroup.php:134 #, fuzzy, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Non podes seguir a este usuario: o Usuario non se atopa." @@ -469,7 +486,7 @@ msgstr "Non podes seguir a este usuario: o Usuario non se atopa." msgid "You are not a member of this group." msgstr "Non estás suscrito a ese perfil" -#: actions/apigroupleave.php:124 actions/leavegroup.php:119 +#: actions/apigroupleave.php:124 actions/leavegroup.php:129 #, fuzzy, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "Non podes seguir a este usuario: o Usuario non se atopa." @@ -501,7 +518,7 @@ msgstr "Tamaño inválido." #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 #: actions/deletenotice.php:157 actions/disfavor.php:74 #: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54 -#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupblock.php:66 actions/grouplogo.php:312 #: actions/groupunblock.php:66 actions/imsettings.php:206 #: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 @@ -545,7 +562,7 @@ msgstr "" #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:103 actions/editapplication.php:139 -#: actions/emailsettings.php:256 actions/grouplogo.php:319 +#: actions/emailsettings.php:256 actions/grouplogo.php:322 #: actions/imsettings.php:220 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 #: actions/smssettings.php:248 lib/designsettings.php:304 @@ -568,14 +585,14 @@ msgid "" "give access to your %4$s account to third parties you trust." msgstr "" -#: actions/apioauthauthorize.php:310 lib/action.php:441 +#: actions/apioauthauthorize.php:310 #, fuzzy msgid "Account" msgstr "Sobre" #: actions/apioauthauthorize.php:313 actions/login.php:230 #: actions/profilesettings.php:106 actions/register.php:424 -#: actions/showgroup.php:236 actions/tagother.php:94 +#: actions/showgroup.php:244 actions/tagother.php:94 #: actions/userauthorization.php:145 lib/groupeditform.php:152 #: lib/userprofile.php:131 msgid "Nickname" @@ -663,12 +680,12 @@ msgid "%1$s updates favorited by %2$s / %2$s." msgstr "%s updates favorited by %s / %s." #: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:131 actions/userrss.php:90 +#: actions/grouprss.php:138 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "Liña de tempo de %s" -#: actions/apitimelinegroup.php:114 actions/apitimelineuser.php:126 +#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 #: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" @@ -704,7 +721,7 @@ msgstr "Replies to %s" msgid "Repeats of %s" msgstr "Replies to %s" -#: actions/apitimelinetag.php:102 actions/tag.php:66 +#: actions/apitimelinetag.php:102 actions/tag.php:67 #, php-format msgid "Notices tagged with %s" msgstr "Chíos tagueados con %s" @@ -726,8 +743,7 @@ msgstr "Ningún documento." #: actions/avatarbynickname.php:59 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/leavegroup.php:76 -#: actions/showgroup.php:121 +#: actions/grouprss.php:91 actions/showgroup.php:121 msgid "No nickname." msgstr "Sen alcume." @@ -739,7 +755,7 @@ msgstr "Sen tamaño." msgid "Invalid size." msgstr "Tamaño inválido." -#: actions/avatarsettings.php:67 actions/showgroup.php:221 +#: actions/avatarsettings.php:67 actions/showgroup.php:229 #: lib/accountsettingsaction.php:112 msgid "Avatar" msgstr "Avatar" @@ -756,32 +772,32 @@ msgid "User without matching profile" msgstr "Usuario sen un perfil que coincida." #: actions/avatarsettings.php:119 actions/avatarsettings.php:197 -#: actions/grouplogo.php:251 +#: actions/grouplogo.php:254 #, fuzzy msgid "Avatar settings" msgstr "Configuracións de Twitter" #: actions/avatarsettings.php:127 actions/avatarsettings.php:205 -#: actions/grouplogo.php:199 actions/grouplogo.php:259 +#: actions/grouplogo.php:202 actions/grouplogo.php:262 msgid "Original" msgstr "" #: actions/avatarsettings.php:142 actions/avatarsettings.php:217 -#: actions/grouplogo.php:210 actions/grouplogo.php:271 +#: actions/grouplogo.php:213 actions/grouplogo.php:274 msgid "Preview" msgstr "" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:637 +#: lib/deleteuserform.php:66 lib/noticelist.php:655 #, fuzzy msgid "Delete" msgstr "eliminar" -#: actions/avatarsettings.php:166 actions/grouplogo.php:233 +#: actions/avatarsettings.php:166 actions/grouplogo.php:236 msgid "Upload" msgstr "Subir" -#: actions/avatarsettings.php:231 actions/grouplogo.php:286 +#: actions/avatarsettings.php:231 actions/grouplogo.php:289 msgid "Crop" msgstr "" @@ -789,7 +805,7 @@ msgstr "" msgid "Pick a square area of the image to be your avatar" msgstr "" -#: actions/avatarsettings.php:343 actions/grouplogo.php:377 +#: actions/avatarsettings.php:343 actions/grouplogo.php:380 msgid "Lost our file data." msgstr "" @@ -826,23 +842,23 @@ msgstr "" "ser notificado de ningunha resposta-@ del." #: actions/block.php:143 actions/deleteapplication.php:153 -#: actions/deletenotice.php:145 actions/deleteuser.php:147 +#: actions/deletenotice.php:145 actions/deleteuser.php:150 #: actions/groupblock.php:178 msgid "No" msgstr "No" -#: actions/block.php:143 actions/deleteuser.php:147 +#: actions/block.php:143 actions/deleteuser.php:150 #, fuzzy msgid "Do not block this user" msgstr "Bloquear usuario" #: actions/block.php:144 actions/deleteapplication.php:158 -#: actions/deletenotice.php:146 actions/deleteuser.php:148 +#: actions/deletenotice.php:146 actions/deleteuser.php:151 #: actions/groupblock.php:179 lib/repeatform.php:132 msgid "Yes" msgstr "Si" -#: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:355 lib/blockform.php:80 #, fuzzy msgid "Block this user" msgstr "Bloquear usuario" @@ -851,41 +867,45 @@ msgstr "Bloquear usuario" msgid "Failed to save block information." msgstr "Erro ao gardar información de bloqueo." -#: actions/blockedfromgroup.php:80 actions/editgroup.php:96 -#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/groupblock.php:86 -#: actions/groupbyid.php:83 actions/groupdesignsettings.php:97 -#: actions/grouplogo.php:99 actions/groupmembers.php:83 -#: actions/grouprss.php:98 actions/groupunblock.php:86 -#: actions/joingroup.php:83 actions/leavegroup.php:83 actions/makeadmin.php:86 -#: actions/showgroup.php:137 lib/command.php:212 lib/command.php:260 +#: actions/blockedfromgroup.php:80 actions/blockedfromgroup.php:87 +#: actions/editgroup.php:100 actions/foafgroup.php:44 actions/foafgroup.php:62 +#: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:100 actions/grouplogo.php:102 +#: actions/groupmembers.php:83 actions/groupmembers.php:90 +#: actions/grouprss.php:98 actions/grouprss.php:105 +#: actions/groupunblock.php:86 actions/joingroup.php:82 +#: actions/joingroup.php:93 actions/leavegroup.php:82 +#: actions/leavegroup.php:93 actions/makeadmin.php:86 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:212 +#: lib/command.php:260 #, fuzzy msgid "No such group." msgstr "Non existe a etiqueta." -#: actions/blockedfromgroup.php:90 +#: actions/blockedfromgroup.php:97 #, php-format msgid "%s blocked profiles" msgstr "" -#: actions/blockedfromgroup.php:93 +#: actions/blockedfromgroup.php:100 #, fuzzy, php-format msgid "%1$s blocked profiles, page %2$d" msgstr "%s e amigos" -#: actions/blockedfromgroup.php:108 +#: actions/blockedfromgroup.php:115 msgid "A list of the users blocked from joining this group." msgstr "" -#: actions/blockedfromgroup.php:281 +#: actions/blockedfromgroup.php:288 #, fuzzy msgid "Unblock user from group" msgstr "Desbloqueo de usuario fallido." -#: actions/blockedfromgroup.php:313 lib/unblockform.php:69 +#: actions/blockedfromgroup.php:320 lib/unblockform.php:69 msgid "Unblock" msgstr "Desbloquear" -#: actions/blockedfromgroup.php:313 lib/unblockform.php:80 +#: actions/blockedfromgroup.php:320 lib/unblockform.php:80 #, fuzzy msgid "Unblock this user" msgstr "Bloquear usuario" @@ -967,7 +987,7 @@ msgstr "Non estás suscrito a ese perfil" #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1197 +#: lib/action.php:1228 #, fuzzy msgid "There was a problem with your session token." msgstr "Houbo un problema co teu token de sesión. Tentao de novo, anda..." @@ -994,12 +1014,13 @@ msgstr "Non se pode eliminar este chíos." msgid "Delete this application" msgstr "Eliminar chío" +#. TRANS: Client error message #: 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:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 -#: lib/adminpanelaction.php:72 lib/profileformaction.php:63 +#: lib/adminpanelaction.php:73 lib/profileformaction.php:63 #: lib/settingsaction.php:72 msgid "Not logged in." msgstr "Non está logueado." @@ -1030,7 +1051,7 @@ msgstr "Estas seguro que queres eliminar este chío?" msgid "Do not delete this notice" msgstr "Non se pode eliminar este chíos." -#: actions/deletenotice.php:146 lib/noticelist.php:637 +#: actions/deletenotice.php:146 lib/noticelist.php:655 #, fuzzy msgid "Delete this notice" msgstr "Eliminar chío" @@ -1050,19 +1071,19 @@ msgstr "Non deberías eliminar o estado de outro usuario" msgid "Delete user" msgstr "eliminar" -#: actions/deleteuser.php:135 +#: actions/deleteuser.php:136 msgid "" "Are you sure you want to delete this user? This will clear all data about " "the user from the database, without a backup." msgstr "" -#: actions/deleteuser.php:148 lib/deleteuserform.php:77 +#: actions/deleteuser.php:151 lib/deleteuserform.php:77 #, fuzzy msgid "Delete this user" msgstr "Eliminar chío" #: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 -#: lib/adminpanelaction.php:316 lib/groupnav.php:119 +#: lib/groupnav.php:119 msgid "Design" msgstr "" @@ -1172,6 +1193,17 @@ msgstr "" msgid "Reset back to default" msgstr "" +#: actions/designadminpanel.php:586 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/tagother.php:154 actions/useradminpanel.php:294 +#: lib/applicationeditform.php:333 lib/applicationeditform.php:334 +#: lib/designsettings.php:256 lib/groupeditform.php:202 +msgid "Save" +msgstr "Gardar" + #: actions/designadminpanel.php:587 lib/designsettings.php:257 msgid "Save design" msgstr "" @@ -1277,32 +1309,32 @@ msgstr "" msgid "You must be logged in to create a group." msgstr "Debes estar logueado para invitar a outros usuarios a empregar %s" -#: actions/editgroup.php:103 actions/editgroup.php:168 -#: actions/groupdesignsettings.php:104 actions/grouplogo.php:106 +#: actions/editgroup.php:107 actions/editgroup.php:172 +#: actions/groupdesignsettings.php:107 actions/grouplogo.php:109 #, fuzzy msgid "You must be an admin to edit the group." msgstr "Debes estar logueado para invitar a outros usuarios a empregar %s" -#: actions/editgroup.php:154 +#: actions/editgroup.php:158 msgid "Use this form to edit the group." msgstr "" -#: actions/editgroup.php:201 actions/newgroup.php:145 +#: actions/editgroup.php:205 actions/newgroup.php:145 #, php-format msgid "description is too long (max %d chars)." msgstr "O teu Bio é demasiado longo (max 140 car.)." -#: actions/editgroup.php:253 +#: actions/editgroup.php:258 #, fuzzy msgid "Could not update group." msgstr "Non se puido actualizar o usuario." -#: actions/editgroup.php:259 classes/User_group.php:433 +#: actions/editgroup.php:264 classes/User_group.php:478 #, fuzzy msgid "Could not create aliases." msgstr "Non se puido crear o favorito." -#: actions/editgroup.php:269 +#: actions/editgroup.php:280 #, fuzzy msgid "Options saved." msgstr "Configuracións gardadas." @@ -1653,7 +1685,7 @@ msgstr "O usuario bloqueoute." msgid "User is not a member of group." msgstr "%1s non é unha orixe fiable." -#: actions/groupblock.php:136 actions/groupmembers.php:316 +#: actions/groupblock.php:136 actions/groupmembers.php:323 #, fuzzy msgid "Block user from group" msgstr "Bloquear usuario" @@ -1691,91 +1723,91 @@ msgstr "Sen id." 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:141 +#: actions/groupdesignsettings.php:144 msgid "Group design" msgstr "" -#: actions/groupdesignsettings.php:152 +#: actions/groupdesignsettings.php:155 msgid "" "Customize the way your group looks with a background image and a colour " "palette of your choice." msgstr "" -#: actions/groupdesignsettings.php:263 actions/userdesignsettings.php:186 +#: actions/groupdesignsettings.php:266 actions/userdesignsettings.php:186 #: lib/designsettings.php:391 lib/designsettings.php:413 #, fuzzy msgid "Couldn't update your design." msgstr "Non se puido actualizar o usuario." -#: actions/groupdesignsettings.php:308 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231 #, fuzzy msgid "Design preferences saved." msgstr "Preferencias gardadas." -#: actions/grouplogo.php:139 actions/grouplogo.php:192 +#: actions/grouplogo.php:142 actions/grouplogo.php:195 msgid "Group logo" msgstr "" -#: actions/grouplogo.php:150 +#: actions/grouplogo.php:153 #, php-format msgid "" "You can upload a logo image for your group. The maximum file size is %s." msgstr "" -#: actions/grouplogo.php:178 +#: actions/grouplogo.php:181 #, fuzzy msgid "User without matching profile." msgstr "Usuario sen un perfil que coincida." -#: actions/grouplogo.php:362 +#: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." msgstr "" -#: actions/grouplogo.php:396 +#: actions/grouplogo.php:399 #, fuzzy msgid "Logo updated." msgstr "Avatar actualizado." -#: actions/grouplogo.php:398 +#: actions/grouplogo.php:401 #, fuzzy msgid "Failed updating logo." msgstr "Acounteceu un fallo ó actualizar o avatar." -#: actions/groupmembers.php:93 lib/groupnav.php:92 +#: actions/groupmembers.php:100 lib/groupnav.php:92 #, php-format msgid "%s group members" msgstr "" -#: actions/groupmembers.php:96 +#: actions/groupmembers.php:103 #, php-format msgid "%1$s group members, page %2$d" msgstr "" -#: actions/groupmembers.php:111 +#: actions/groupmembers.php:118 msgid "A list of the users in this group." msgstr "" -#: actions/groupmembers.php:175 lib/action.php:448 lib/groupnav.php:107 +#: actions/groupmembers.php:182 lib/groupnav.php:107 msgid "Admin" msgstr "" -#: actions/groupmembers.php:348 lib/blockform.php:69 +#: actions/groupmembers.php:355 lib/blockform.php:69 msgid "Block" msgstr "Bloquear" -#: actions/groupmembers.php:443 +#: actions/groupmembers.php:450 msgid "Make user an admin of the group" msgstr "" -#: actions/groupmembers.php:475 +#: actions/groupmembers.php:482 msgid "Make Admin" msgstr "" -#: actions/groupmembers.php:475 +#: actions/groupmembers.php:482 msgid "Make this user an admin" msgstr "" -#: actions/grouprss.php:133 +#: actions/grouprss.php:140 #, fuzzy, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Actualizacións dende %1$s en %2$s!" @@ -2034,16 +2066,19 @@ msgstr "Mensaxe persoal" msgid "Optionally add a personal message to the invitation." msgstr "Opcionalmente engadir unha mensaxe persoal á invitación." -#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:236 +#. TRANS: Send button for inviting friends +#: actions/invite.php:198 +#, fuzzy +msgctxt "BUTTON" msgid "Send" msgstr "Enviar" -#: actions/invite.php:226 +#: actions/invite.php:227 #, 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/invite.php:228 +#: actions/invite.php:229 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -2103,7 +2138,12 @@ msgstr "" msgid "You must be logged in to join a group." msgstr "Debes estar logueado para invitar a outros usuarios a empregar %s" -#: actions/joingroup.php:131 +#: actions/joingroup.php:88 actions/leavegroup.php:88 +#, fuzzy +msgid "No nickname or ID." +msgstr "Sen alcume." + +#: actions/joingroup.php:141 #, fuzzy, php-format msgid "%1$s joined group %2$s" msgstr "%s / Favoritos dende %s" @@ -2113,12 +2153,12 @@ msgstr "%s / Favoritos dende %s" msgid "You must be logged in to leave a group." msgstr "Debes estar logueado para invitar a outros usuarios a empregar %s" -#: actions/leavegroup.php:90 lib/command.php:265 +#: actions/leavegroup.php:100 lib/command.php:265 #, fuzzy msgid "You are not a member of that group." msgstr "Non estás suscrito a ese perfil" -#: actions/leavegroup.php:127 +#: actions/leavegroup.php:137 #, fuzzy, php-format msgid "%1$s left group %2$s" msgstr "%s / Favoritos dende %s" @@ -2136,8 +2176,7 @@ msgstr "Usuario ou contrasinal incorrectos." msgid "Error setting user. You are probably not authorized." msgstr "Non está autorizado." -#: actions/login.php:188 actions/login.php:241 lib/action.php:466 -#: lib/logingroupnav.php:79 +#: actions/login.php:188 actions/login.php:241 lib/logingroupnav.php:79 msgid "Login" msgstr "Inicio de sesión" @@ -2395,8 +2434,8 @@ msgstr "Conectar" msgid "Only " msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 -#: lib/api.php:1068 lib/api.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 +#: lib/apiaction.php:1068 lib/apiaction.php:1177 msgid "Not a supported data format." msgstr "Non é un formato de datos soportado." @@ -2544,7 +2583,7 @@ msgstr "Non se pode gardar a contrasinal." msgid "Password saved." msgstr "Contrasinal gardada." -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:331 +#: actions/pathsadminpanel.php:59 msgid "Paths" msgstr "" @@ -2577,7 +2616,6 @@ msgid "Invalid SSL server. The maximum length is 255 characters." msgstr "" #: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58 -#: lib/adminpanelaction.php:311 #, fuzzy msgid "Site" msgstr "Invitar" @@ -2763,7 +2801,7 @@ msgstr "" "De 1 a 64 letras minúsculas ou númeors, nin espazos nin signos de puntuación" #: actions/profilesettings.php:111 actions/register.php:448 -#: actions/showgroup.php:247 actions/tagother.php:104 +#: actions/showgroup.php:255 actions/tagother.php:104 #: lib/groupeditform.php:157 lib/userprofile.php:149 msgid "Full name" msgstr "Nome completo" @@ -2792,7 +2830,7 @@ msgid "Bio" msgstr "Bio" #: actions/profilesettings.php:132 actions/register.php:471 -#: actions/showgroup.php:256 actions/tagother.php:112 +#: actions/showgroup.php:264 actions/tagother.php:112 #: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:164 msgid "Location" @@ -2877,7 +2915,8 @@ msgstr "Non se puido gardar o perfil." msgid "Couldn't save tags." msgstr "Non se puideron gardar as etiquetas." -#: actions/profilesettings.php:391 lib/adminpanelaction.php:137 +#. TRANS: Message after successful saving of administrative settings. +#: actions/profilesettings.php:391 lib/adminpanelaction.php:141 msgid "Settings saved." msgstr "Configuracións gardadas." @@ -2890,48 +2929,48 @@ msgstr "" msgid "Could not retrieve public stream." msgstr "Non se pudo recuperar a liña de tempo publica." -#: actions/public.php:129 +#: actions/public.php:130 #, fuzzy, php-format msgid "Public timeline, page %d" msgstr "Liña de tempo pública" -#: actions/public.php:131 lib/publicgroupnav.php:79 +#: actions/public.php:132 lib/publicgroupnav.php:79 msgid "Public timeline" msgstr "Liña de tempo pública" -#: actions/public.php:159 +#: actions/public.php:160 #, fuzzy msgid "Public Stream Feed (RSS 1.0)" msgstr "Sindicación do Fio Público" -#: actions/public.php:163 +#: actions/public.php:164 #, fuzzy msgid "Public Stream Feed (RSS 2.0)" msgstr "Sindicación do Fio Público" -#: actions/public.php:167 +#: actions/public.php:168 #, fuzzy msgid "Public Stream Feed (Atom)" msgstr "Sindicación do Fio Público" -#: actions/public.php:187 +#: actions/public.php:188 #, php-format msgid "" "This is the public timeline for %%site.name%% but no one has posted anything " "yet." msgstr "" -#: actions/public.php:190 +#: actions/public.php:191 msgid "Be the first to post!" msgstr "" -#: actions/public.php:194 +#: actions/public.php:195 #, php-format msgid "" "Why not [register an account](%%action.register%%) and be the first to post!" msgstr "" -#: actions/public.php:241 +#: actions/public.php:242 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2944,7 +2983,7 @@ msgstr "" "(http://status.net/). [Únete agora](%%action.register%%) para compartir " "chíos cos teus amigos, colegas e familia! ([Ler mais](%%doc.help%%))" -#: actions/public.php:246 +#: actions/public.php:247 #, fuzzy, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -3121,8 +3160,7 @@ msgstr "Acounteceu un erro co código de confirmación." msgid "Registration successful" msgstr "Xa estas rexistrado!!" -#: actions/register.php:114 actions/register.php:503 lib/action.php:463 -#: lib/logingroupnav.php:85 +#: actions/register.php:114 actions/register.php:503 lib/logingroupnav.php:85 msgid "Register" msgstr "Rexistrar" @@ -3318,7 +3356,7 @@ msgstr "Non podes rexistrarte se non estas de acordo coa licenza." msgid "You already repeated that notice." msgstr "Xa bloqueaches a este usuario." -#: actions/repeat.php:114 lib/noticelist.php:656 +#: actions/repeat.php:114 lib/noticelist.php:674 #, fuzzy msgid "Repeated" msgstr "Crear" @@ -3328,47 +3366,47 @@ msgstr "Crear" msgid "Repeated!" msgstr "Crear" -#: actions/replies.php:125 actions/repliesrss.php:68 +#: actions/replies.php:126 actions/repliesrss.php:68 #: lib/personalgroupnav.php:105 #, php-format msgid "Replies to %s" msgstr "Replies to %s" -#: actions/replies.php:127 +#: actions/replies.php:128 #, fuzzy, php-format msgid "Replies to %1$s, page %2$d" msgstr "Mensaxe de %1$s en %2$s" -#: actions/replies.php:144 +#: actions/replies.php:145 #, fuzzy, php-format msgid "Replies feed for %s (RSS 1.0)" msgstr "Fonte de chíos para %s" -#: actions/replies.php:151 +#: actions/replies.php:152 #, fuzzy, php-format msgid "Replies feed for %s (RSS 2.0)" msgstr "Fonte de chíos para %s" -#: actions/replies.php:158 +#: actions/replies.php:159 #, fuzzy, php-format msgid "Replies feed for %s (Atom)" msgstr "Fonte de chíos para %s" -#: actions/replies.php:198 +#: actions/replies.php:199 #, php-format msgid "" "This is the timeline showing replies to %1$s but %2$s hasn't received a " "notice to his attention yet." msgstr "" -#: actions/replies.php:203 +#: actions/replies.php:204 #, php-format msgid "" "You can engage other users in a conversation, subscribe to more people or " "[join groups](%%action.groups%%)." msgstr "" -#: actions/replies.php:205 +#: actions/replies.php:206 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) or [post something to his or her " @@ -3396,7 +3434,6 @@ msgid "User is already sandboxed." msgstr "O usuario bloqueoute." #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:336 msgid "Sessions" msgstr "" @@ -3421,7 +3458,7 @@ msgid "Turn on debugging output for sessions." msgstr "" #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/useradminpanel.php:293 +#: actions/useradminpanel.php:294 #, fuzzy msgid "Save site settings" msgstr "Configuracións de Twitter" @@ -3457,7 +3494,7 @@ msgstr "Invitación(s) enviada(s)." msgid "Description" msgstr "Subscricións" -#: actions/showapplication.php:192 actions/showgroup.php:429 +#: actions/showapplication.php:192 actions/showgroup.php:437 #: lib/profileaction.php:174 msgid "Statistics" msgstr "Estatísticas" @@ -3519,35 +3556,35 @@ msgstr "Chíos favoritos de %s" msgid "Could not retrieve favorite notices." msgstr "Non se pode " -#: actions/showfavorites.php:170 +#: actions/showfavorites.php:171 #, php-format msgid "Feed for favorites of %s (RSS 1.0)" msgstr "Fonte para os amigos de %s" -#: actions/showfavorites.php:177 +#: actions/showfavorites.php:178 #, php-format msgid "Feed for favorites of %s (RSS 2.0)" msgstr "Fonte para os amigos de %s" -#: actions/showfavorites.php:184 +#: actions/showfavorites.php:185 #, php-format msgid "Feed for favorites of %s (Atom)" msgstr "Fonte para os amigos de %s" -#: actions/showfavorites.php:205 +#: actions/showfavorites.php:206 msgid "" "You haven't chosen any favorite notices yet. Click the fave button on " "notices you like to bookmark them for later or shed a spotlight on them." msgstr "" -#: actions/showfavorites.php:207 +#: actions/showfavorites.php:208 #, 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:211 +#: actions/showfavorites.php:212 #, php-format msgid "" "%s hasn't added any notices to his favorites yet. Why not [register an " @@ -3555,7 +3592,7 @@ msgid "" "would add to their favorites :)" msgstr "" -#: actions/showfavorites.php:242 +#: actions/showfavorites.php:243 msgid "This is a way to share what you like." msgstr "" @@ -3569,73 +3606,73 @@ msgstr "" msgid "%1$s group, page %2$d" msgstr "Tódalas subscricións" -#: actions/showgroup.php:218 +#: actions/showgroup.php:226 #, fuzzy msgid "Group profile" msgstr "Non existe o perfil." -#: actions/showgroup.php:263 actions/tagother.php:118 +#: actions/showgroup.php:271 actions/tagother.php:118 #: actions/userauthorization.php:175 lib/userprofile.php:177 msgid "URL" msgstr "" -#: actions/showgroup.php:274 actions/tagother.php:128 +#: actions/showgroup.php:282 actions/tagother.php:128 #: actions/userauthorization.php:187 lib/userprofile.php:194 #, fuzzy msgid "Note" msgstr "Chíos" -#: actions/showgroup.php:284 lib/groupeditform.php:184 +#: actions/showgroup.php:292 lib/groupeditform.php:184 msgid "Aliases" msgstr "" -#: actions/showgroup.php:293 +#: actions/showgroup.php:301 #, fuzzy msgid "Group actions" msgstr "Outras opcions" -#: actions/showgroup.php:328 +#: actions/showgroup.php:336 #, fuzzy, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Fonte de chíos para %s" -#: actions/showgroup.php:334 +#: actions/showgroup.php:342 #, fuzzy, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Fonte de chíos para %s" -#: actions/showgroup.php:340 +#: actions/showgroup.php:348 #, fuzzy, php-format msgid "Notice feed for %s group (Atom)" msgstr "Fonte de chíos para %s" -#: actions/showgroup.php:345 +#: actions/showgroup.php:353 #, fuzzy, php-format msgid "FOAF for %s group" msgstr "Band. Saída para %s" -#: actions/showgroup.php:381 actions/showgroup.php:438 lib/groupnav.php:91 +#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 #, fuzzy msgid "Members" msgstr "Membro dende" -#: actions/showgroup.php:386 lib/profileaction.php:117 +#: actions/showgroup.php:394 lib/profileaction.php:117 #: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 #, fuzzy msgid "(None)" msgstr "(nada)" -#: actions/showgroup.php:392 +#: actions/showgroup.php:400 msgid "All members" msgstr "" -#: actions/showgroup.php:432 +#: actions/showgroup.php:440 #, fuzzy msgid "Created" msgstr "Crear" -#: actions/showgroup.php:448 +#: actions/showgroup.php:456 #, fuzzy, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3649,7 +3686,7 @@ msgstr "" "(http://status.net/). [Únete agora](%%action.register%%) para compartir " "chíos cos teus amigos, colegas e familia! ([Ler mais](%%doc.help%%))" -#: actions/showgroup.php:454 +#: actions/showgroup.php:462 #, fuzzy, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3662,7 +3699,7 @@ msgstr "" "(http://status.net/). [Únete agora](%%action.register%%) para compartir " "chíos cos teus amigos, colegas e familia! ([Ler mais](%%doc.help%%))" -#: actions/showgroup.php:482 +#: actions/showgroup.php:490 msgid "Admins" msgstr "" @@ -4137,22 +4174,22 @@ msgstr "Jabber." msgid "SMS" msgstr "SMS" -#: actions/tag.php:68 +#: actions/tag.php:69 #, fuzzy, php-format msgid "Notices tagged with %1$s, page %2$d" msgstr "Usuarios auto-etiquetados como %s - páxina %d" -#: actions/tag.php:86 +#: actions/tag.php:87 #, fuzzy, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Fonte de chíos para %s" -#: actions/tag.php:92 +#: actions/tag.php:93 #, fuzzy, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Fonte de chíos para %s" -#: actions/tag.php:98 +#: actions/tag.php:99 #, fuzzy, php-format msgid "Notice feed for tag %s (Atom)" msgstr "Fonte de chíos para %s" @@ -4211,7 +4248,7 @@ msgstr "" msgid "No such tag." msgstr "Non existe a etiqueta." -#: actions/twitapitrends.php:87 +#: actions/twitapitrends.php:85 msgid "API method under construction." msgstr "Método da API en contrución." @@ -4244,77 +4281,79 @@ msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" -#: actions/useradminpanel.php:58 lib/adminpanelaction.php:321 -#: lib/personalgroupnav.php:115 +#. TRANS: User admin panel title +#: actions/useradminpanel.php:59 +#, fuzzy +msgctxt "TITLE" msgid "User" msgstr "Usuario" -#: actions/useradminpanel.php:69 +#: actions/useradminpanel.php:70 msgid "User settings for this StatusNet site." msgstr "" -#: actions/useradminpanel.php:148 +#: actions/useradminpanel.php:149 msgid "Invalid bio limit. Must be numeric." msgstr "" -#: actions/useradminpanel.php:154 +#: actions/useradminpanel.php:155 msgid "Invalid welcome text. Max length is 255 characters." msgstr "" -#: actions/useradminpanel.php:164 +#: actions/useradminpanel.php:165 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" -#: actions/useradminpanel.php:217 lib/accountsettingsaction.php:108 +#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Perfil" -#: actions/useradminpanel.php:221 +#: actions/useradminpanel.php:222 msgid "Bio Limit" msgstr "" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:223 msgid "Maximum length of a profile bio in characters." msgstr "" -#: actions/useradminpanel.php:230 +#: actions/useradminpanel.php:231 #, fuzzy msgid "New users" msgstr "Invitar a novos usuarios" -#: actions/useradminpanel.php:234 +#: actions/useradminpanel.php:235 msgid "New user welcome" msgstr "" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:236 msgid "Welcome text for new users (Max 255 chars)." msgstr "" -#: actions/useradminpanel.php:240 +#: actions/useradminpanel.php:241 #, fuzzy msgid "Default subscription" msgstr "Tódalas subscricións" -#: actions/useradminpanel.php:241 +#: actions/useradminpanel.php:242 #, fuzzy msgid "Automatically subscribe new users to this user." msgstr "" "Suscribirse automáticamente a calquera que se suscriba a min (o mellor para " "non humáns)" -#: actions/useradminpanel.php:250 +#: actions/useradminpanel.php:251 #, fuzzy msgid "Invitations" msgstr "Invitación(s) enviada(s)." -#: actions/useradminpanel.php:255 +#: actions/useradminpanel.php:256 #, fuzzy msgid "Invitations enabled" msgstr "Invitación(s) enviada(s)." -#: actions/useradminpanel.php:257 +#: actions/useradminpanel.php:258 msgid "Whether to allow users to invite new users." msgstr "" @@ -4502,7 +4541,7 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:196 lib/action.php:747 +#: actions/version.php:196 lib/action.php:778 #, fuzzy msgid "Version" msgstr "Persoal" @@ -4543,6 +4582,11 @@ msgstr "Non se puido actualizar o usuario." msgid "Group leave failed." msgstr "Non existe o perfil." +#: classes/Local_group.php:41 +#, fuzzy +msgid "Could not update local group." +msgstr "Non se puido actualizar o usuario." + #: classes/Login_token.php:76 #, fuzzy, php-format msgid "Could not create login token for %s" @@ -4561,28 +4605,28 @@ msgstr "Non se pode inserir unha mensaxe." msgid "Could not update message with new URI." msgstr "Non se puido actualizar a mensaxe coa nova URI." -#: classes/Notice.php:157 +#: classes/Notice.php:172 #, php-format msgid "DB error inserting hashtag: %s" msgstr "Erro ó inserir o hashtag na BD: %s" -#: classes/Notice.php:222 +#: classes/Notice.php:239 #, fuzzy msgid "Problem saving notice. Too long." msgstr "Aconteceu un erro ó gardar o chío." -#: classes/Notice.php:226 +#: classes/Notice.php:243 msgid "Problem saving notice. Unknown user." msgstr "Aconteceu un erro ó gardar o chío. Usuario descoñecido." -#: classes/Notice.php:231 +#: classes/Notice.php:248 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." -#: classes/Notice.php:237 +#: classes/Notice.php:254 #, fuzzy msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " @@ -4591,20 +4635,20 @@ msgstr "" "Demasiados chíos en pouco tempo; tomate un respiro e envíao de novo dentro " "duns minutos." -#: classes/Notice.php:243 +#: classes/Notice.php:260 msgid "You are banned from posting notices on this site." msgstr "Tes restrinxido o envio de chíos neste sitio." -#: classes/Notice.php:309 classes/Notice.php:335 +#: classes/Notice.php:326 classes/Notice.php:352 msgid "Problem saving notice." msgstr "Aconteceu un erro ó gardar o chío." -#: classes/Notice.php:882 +#: classes/Notice.php:911 #, fuzzy msgid "Problem saving group inbox." msgstr "Aconteceu un erro ó gardar o chío." -#: classes/Notice.php:1407 +#: classes/Notice.php:1442 #, fuzzy, php-format msgid "RT @%1$s %2$s" msgstr "%1$s (%2$s)" @@ -4636,21 +4680,31 @@ msgstr "Non se pode eliminar a subscrición." msgid "Couldn't delete subscription." msgstr "Non se pode eliminar a subscrición." -#: classes/User.php:372 +#: classes/User.php:373 #, fuzzy, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "Mensaxe de %1$s en %2$s" -#: classes/User_group.php:423 +#: classes/User_group.php:462 #, fuzzy msgid "Could not create group." msgstr "Non se puido crear o favorito." -#: classes/User_group.php:452 +#: classes/User_group.php:471 +#, fuzzy +msgid "Could not set group URI." +msgstr "Non se pode gardar a subscrición." + +#: classes/User_group.php:492 #, fuzzy msgid "Could not set group membership." msgstr "Non se pode gardar a subscrición." +#: classes/User_group.php:506 +#, fuzzy +msgid "Could not save local group info." +msgstr "Non se pode gardar a subscrición." + #: lib/accountsettingsaction.php:108 msgid "Change your profile settings" msgstr "Configuración de perfil" @@ -4694,130 +4748,190 @@ msgstr "" msgid "Primary site navigation" msgstr "" +#. TRANS: Tooltip for main menu option "Personal" #: lib/action.php:439 -msgid "Home" -msgstr "Persoal" - -#: lib/action.php:439 +msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:441 +#: lib/action.php:442 #, fuzzy +msgctxt "MENU" +msgid "Personal" +msgstr "Persoal" + +#. TRANS: Tooltip for main menu option "Account" +#: lib/action.php:444 +#, fuzzy +msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Cambiar contrasinal" -#: lib/action.php:444 -msgid "Connect" -msgstr "Conectar" - -#: lib/action.php:444 +#: lib/action.php:447 #, fuzzy +msgctxt "MENU" +msgid "Account" +msgstr "Sobre" + +#. TRANS: Tooltip for main menu option "Services" +#: lib/action.php:450 +#, fuzzy +msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Non se pode redireccionar ao servidor: %s" -#: lib/action.php:448 +#: lib/action.php:453 #, fuzzy +msgctxt "MENU" +msgid "Connect" +msgstr "Conectar" + +#. TRANS: Tooltip for menu option "Admin" +#: lib/action.php:457 +#, fuzzy +msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Navegación de subscricións" -#: lib/action.php:452 lib/subgroupnav.php:105 -msgid "Invite" -msgstr "Invitar" +#: lib/action.php:460 +msgctxt "MENU" +msgid "Admin" +msgstr "" -#: lib/action.php:453 lib/subgroupnav.php:106 +#. TRANS: Tooltip for main menu option "Invite" +#: lib/action.php:464 #, fuzzy, php-format +msgctxt "TOOLTIP" 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." -#: lib/action.php:458 -msgid "Logout" -msgstr "Sair" +#: lib/action.php:467 +#, fuzzy +msgctxt "MENU" +msgid "Invite" +msgstr "Invitar" -#: lib/action.php:458 +#. TRANS: Tooltip for main menu option "Logout" +#: lib/action.php:473 +msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "" -#: lib/action.php:463 +#: lib/action.php:476 #, fuzzy +msgctxt "MENU" +msgid "Logout" +msgstr "Sair" + +#. TRANS: Tooltip for main menu option "Register" +#: lib/action.php:481 +#, fuzzy +msgctxt "TOOLTIP" msgid "Create an account" msgstr "Crear nova conta" -#: lib/action.php:466 +#: lib/action.php:484 +#, fuzzy +msgctxt "MENU" +msgid "Register" +msgstr "Rexistrar" + +#. TRANS: Tooltip for main menu option "Login" +#: lib/action.php:487 +msgctxt "TOOLTIP" msgid "Login to the site" msgstr "" -#: lib/action.php:469 lib/action.php:732 -msgid "Help" -msgstr "Axuda" - -#: lib/action.php:469 +#: lib/action.php:490 #, fuzzy +msgctxt "MENU" +msgid "Login" +msgstr "Inicio de sesión" + +#. TRANS: Tooltip for main menu option "Help" +#: lib/action.php:493 +#, fuzzy +msgctxt "TOOLTIP" msgid "Help me!" msgstr "Axuda" -#: lib/action.php:472 lib/searchaction.php:127 -msgid "Search" -msgstr "Buscar" +#: lib/action.php:496 +#, fuzzy +msgctxt "MENU" +msgid "Help" +msgstr "Axuda" -#: lib/action.php:472 +#. TRANS: Tooltip for main menu option "Search" +#: lib/action.php:499 +msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "" -#: lib/action.php:493 +#: lib/action.php:502 +#, fuzzy +msgctxt "MENU" +msgid "Search" +msgstr "Buscar" + +#. TRANS: DT element for site notice. String is hidden in default CSS. +#: lib/action.php:524 #, fuzzy msgid "Site notice" msgstr "Novo chío" -#: lib/action.php:559 +#: lib/action.php:590 msgid "Local views" msgstr "" -#: lib/action.php:625 +#: lib/action.php:656 #, fuzzy msgid "Page notice" msgstr "Novo chío" -#: lib/action.php:727 +#: lib/action.php:758 #, fuzzy msgid "Secondary site navigation" msgstr "Navegación de subscricións" -#: lib/action.php:734 +#: lib/action.php:763 +msgid "Help" +msgstr "Axuda" + +#: lib/action.php:765 msgid "About" msgstr "Sobre" -#: lib/action.php:736 +#: lib/action.php:767 msgid "FAQ" msgstr "Preguntas frecuentes" -#: lib/action.php:740 +#: lib/action.php:771 msgid "TOS" msgstr "" -#: lib/action.php:743 +#: lib/action.php:774 msgid "Privacy" msgstr "Privacidade" -#: lib/action.php:745 +#: lib/action.php:776 msgid "Source" msgstr "Fonte" -#: lib/action.php:749 +#: lib/action.php:780 msgid "Contact" msgstr "Contacto" -#: lib/action.php:751 +#: lib/action.php:782 msgid "Badge" msgstr "" -#: lib/action.php:779 +#: lib/action.php:810 msgid "StatusNet software license" msgstr "" -#: lib/action.php:782 +#: lib/action.php:813 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4826,12 +4940,12 @@ msgstr "" "**%%site.name%%** é un servizo de microbloguexo que che proporciona [%%site." "broughtby%%](%%site.broughtbyurl%%). " -#: lib/action.php:784 +#: lib/action.php:815 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** é un servizo de microbloguexo." -#: lib/action.php:786 +#: lib/action.php:817 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4842,120 +4956,172 @@ msgstr "" "%s, dispoñible baixo licenza [GNU Affero General Public License](http://www." "fsf.org/licensing/licenses/agpl-3.0.html)." -#: lib/action.php:801 +#: lib/action.php:832 #, fuzzy msgid "Site content license" msgstr "Atopar no contido dos chíos" -#: lib/action.php:806 +#: lib/action.php:837 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:811 +#: lib/action.php:842 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:814 +#: lib/action.php:845 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" -#: lib/action.php:827 +#: lib/action.php:858 #, fuzzy msgid "All " msgstr "Todos" -#: lib/action.php:833 +#: lib/action.php:864 msgid "license." msgstr "" -#: lib/action.php:1132 +#: lib/action.php:1163 msgid "Pagination" msgstr "" -#: lib/action.php:1141 +#: lib/action.php:1172 #, fuzzy msgid "After" msgstr "« Despois" -#: lib/action.php:1149 +#: lib/action.php:1180 #, fuzzy msgid "Before" msgstr "Antes »" -#: lib/activity.php:382 +#: lib/activity.php:449 msgid "Can't handle remote content yet." msgstr "" -#: lib/activity.php:410 +#: lib/activity.php:477 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activity.php:414 +#: lib/activity.php:481 msgid "Can't handle embedded Base64 content yet." msgstr "" -#: lib/adminpanelaction.php:96 +#. TRANS: Client error message +#: lib/adminpanelaction.php:98 #, fuzzy msgid "You cannot make changes to this site." msgstr "Non podes enviar mensaxes a este usurio." -#: lib/adminpanelaction.php:107 +#. TRANS: Client error message +#: lib/adminpanelaction.php:110 #, fuzzy msgid "Changes to that panel are not allowed." msgstr "Non se permite o rexistro neste intre." -#: lib/adminpanelaction.php:206 +#. TRANS: Client error message +#: lib/adminpanelaction.php:211 #, fuzzy msgid "showForm() not implemented." msgstr "Comando non implementado." -#: lib/adminpanelaction.php:235 +#. TRANS: Client error message +#: lib/adminpanelaction.php:241 #, fuzzy msgid "saveSettings() not implemented." msgstr "Comando non implementado." -#: lib/adminpanelaction.php:258 +#. TRANS: Client error message +#: lib/adminpanelaction.php:265 #, fuzzy msgid "Unable to delete design setting." msgstr "Non se puideron gardar os teus axustes de Twitter!" -#: lib/adminpanelaction.php:312 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:330 #, fuzzy msgid "Basic site configuration" msgstr "Confirmar correo electrónico" -#: lib/adminpanelaction.php:317 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:332 +#, fuzzy +msgctxt "MENU" +msgid "Site" +msgstr "Invitar" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:338 #, fuzzy msgid "Design configuration" msgstr "Confirmación de SMS" -#: lib/adminpanelaction.php:322 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:340 +#, fuzzy +msgctxt "MENU" +msgid "Design" +msgstr "Persoal" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:346 #, fuzzy msgid "User configuration" msgstr "Confirmación de SMS" -#: lib/adminpanelaction.php:327 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:348 +#, fuzzy +msgctxt "MENU" +msgid "User" +msgstr "Usuario" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:354 #, fuzzy msgid "Access configuration" msgstr "Confirmación de SMS" -#: lib/adminpanelaction.php:332 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:356 +#, fuzzy +msgctxt "MENU" +msgid "Access" +msgstr "Aceptar" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:362 #, fuzzy msgid "Paths configuration" msgstr "Confirmación de SMS" -#: lib/adminpanelaction.php:337 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:364 +msgctxt "MENU" +msgid "Paths" +msgstr "" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:370 #, fuzzy msgid "Sessions configuration" msgstr "Confirmación de SMS" -#: lib/apiauth.php:95 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:372 +#, fuzzy +msgctxt "MENU" +msgid "Sessions" +msgstr "Persoal" + +#: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." msgstr "" -#: lib/apiauth.php:273 +#: lib/apiauth.php:272 #, php-format msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" msgstr "" @@ -5051,12 +5217,12 @@ msgstr "" msgid "Tags for this attachment" msgstr "" -#: lib/authenticationplugin.php:218 lib/authenticationplugin.php:223 +#: lib/authenticationplugin.php:220 lib/authenticationplugin.php:225 #, fuzzy msgid "Password changing failed" msgstr "Contrasinal gardada." -#: lib/authenticationplugin.php:233 +#: lib/authenticationplugin.php:235 #, fuzzy msgid "Password changing is not allowed" msgstr "Contrasinal gardada." @@ -5377,20 +5543,20 @@ msgstr "" "tracks - non implementado por agora.\n" "tracking - non implementado por agora.\n" -#: lib/common.php:136 +#: lib/common.php:148 #, fuzzy msgid "No configuration file found. " msgstr "Sen código de confirmación." -#: lib/common.php:137 +#: lib/common.php:149 msgid "I looked for configuration files in the following places: " msgstr "" -#: lib/common.php:139 +#: lib/common.php:151 msgid "You may wish to run the installer to fix this." msgstr "" -#: lib/common.php:140 +#: lib/common.php:152 msgid "Go to the installer." msgstr "" @@ -5587,25 +5753,25 @@ msgstr "Aconteceu un erro no sistema namentras se estaba cargando o ficheiro." msgid "Not an image or corrupt file." msgstr "Non é unha imaxe ou está corrupta." -#: lib/imagefile.php:105 +#: lib/imagefile.php:109 msgid "Unsupported image file format." msgstr "Formato de ficheiro de imaxe non soportado." -#: lib/imagefile.php:118 +#: lib/imagefile.php:122 #, fuzzy msgid "Lost our file." msgstr "Bloqueo de usuario fallido." -#: lib/imagefile.php:150 lib/imagefile.php:197 +#: lib/imagefile.php:166 lib/imagefile.php:231 #, fuzzy msgid "Unknown file type" msgstr "tipo de ficheiro non soportado" -#: lib/imagefile.php:217 +#: lib/imagefile.php:251 msgid "MB" msgstr "" -#: lib/imagefile.php:219 +#: lib/imagefile.php:253 msgid "kB" msgstr "" @@ -5968,6 +6134,12 @@ msgstr "A" msgid "Available characters" msgstr "6 ou máis caracteres" +#: lib/messageform.php:178 lib/noticeform.php:236 +#, fuzzy +msgctxt "Send button for sending notice" +msgid "Send" +msgstr "Enviar" + #: lib/noticeform.php:160 #, fuzzy msgid "Send a notice" @@ -6028,27 +6200,27 @@ msgstr "" msgid "at" msgstr "" -#: lib/noticelist.php:558 +#: lib/noticelist.php:566 #, fuzzy msgid "in context" msgstr "Sen contido!" -#: lib/noticelist.php:583 +#: lib/noticelist.php:601 #, fuzzy msgid "Repeated by" msgstr "Crear" -#: lib/noticelist.php:610 +#: lib/noticelist.php:628 #, fuzzy msgid "Reply to this notice" msgstr "Non se pode eliminar este chíos." -#: lib/noticelist.php:611 +#: lib/noticelist.php:629 #, fuzzy msgid "Reply" msgstr "contestar" -#: lib/noticelist.php:655 +#: lib/noticelist.php:673 #, fuzzy msgid "Notice repeated" msgstr "Chío publicado" @@ -6101,6 +6273,10 @@ msgstr "Respostas" msgid "Favorites" msgstr "Favoritos" +#: lib/personalgroupnav.php:115 +msgid "User" +msgstr "Usuario" + #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "Band. Entrada" @@ -6198,7 +6374,7 @@ msgstr "Non se pode eliminar este chíos." msgid "Repeat this notice" msgstr "Non se pode eliminar este chíos." -#: lib/router.php:665 +#: lib/router.php:668 msgid "No single user defined for single-user mode." msgstr "" @@ -6221,6 +6397,10 @@ msgstr "Buscar" msgid "Keyword(s)" msgstr "" +#: lib/searchaction.php:127 +msgid "Search" +msgstr "Buscar" + #: lib/searchaction.php:162 #, fuzzy msgid "Search help" @@ -6276,6 +6456,17 @@ msgstr "Suscrito a %s" msgid "Groups %s is a member of" msgstr "" +#: lib/subgroupnav.php:105 +msgid "Invite" +msgstr "Invitar" + +#: 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." + #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -6355,47 +6546,47 @@ msgstr "Nova mensaxe" msgid "Moderate" msgstr "" -#: lib/util.php:952 +#: lib/util.php:1013 msgid "a few seconds ago" msgstr "fai uns segundos" -#: lib/util.php:954 +#: lib/util.php:1015 msgid "about a minute ago" msgstr "fai un minuto" -#: lib/util.php:956 +#: lib/util.php:1017 #, php-format msgid "about %d minutes ago" msgstr "fai %d minutos" -#: lib/util.php:958 +#: lib/util.php:1019 msgid "about an hour ago" msgstr "fai unha hora" -#: lib/util.php:960 +#: lib/util.php:1021 #, php-format msgid "about %d hours ago" msgstr "fai %d horas" -#: lib/util.php:962 +#: lib/util.php:1023 msgid "about a day ago" msgstr "fai un día" -#: lib/util.php:964 +#: lib/util.php:1025 #, php-format msgid "about %d days ago" msgstr "fai %d días" -#: lib/util.php:966 +#: lib/util.php:1027 msgid "about a month ago" msgstr "fai un mes" -#: lib/util.php:968 +#: lib/util.php:1029 #, php-format msgid "about %d months ago" msgstr "fai %d meses" -#: lib/util.php:970 +#: lib/util.php:1031 msgid "about a year ago" msgstr "fai un ano" diff --git a/locale/he/LC_MESSAGES/statusnet.po b/locale/he/LC_MESSAGES/statusnet.po index 424917efb2..89fd4dd7ad 100644 --- a/locale/he/LC_MESSAGES/statusnet.po +++ b/locale/he/LC_MESSAGES/statusnet.po @@ -7,82 +7,88 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-02-24 23:49+0000\n" -"PO-Revision-Date: 2010-02-24 23:50:54+0000\n" +"POT-Creation-Date: 2010-03-02 21:02+0000\n" +"PO-Revision-Date: 2010-03-02 21:02:54+0000\n" "Language-Team: Hebrew\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r62925); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: actions/accessadminpanel.php:54 lib/adminpanelaction.php:326 +#. TRANS: Page title +#: actions/accessadminpanel.php:55 #, fuzzy msgid "Access" msgstr "קבל" -#: actions/accessadminpanel.php:65 +#. TRANS: Page notice +#: actions/accessadminpanel.php:67 #, fuzzy msgid "Site access settings" msgstr "הגדרות" -#: actions/accessadminpanel.php:158 +#. TRANS: Form legend for registration form. +#: actions/accessadminpanel.php:161 #, fuzzy msgid "Registration" msgstr "הירשם" -#: actions/accessadminpanel.php:161 -#, fuzzy -msgid "Private" -msgstr "פרטיות" - -#: actions/accessadminpanel.php:163 +#. TRANS: Checkbox instructions for admin setting "Private" +#: actions/accessadminpanel.php:165 msgid "Prohibit anonymous users (not logged in) from viewing site?" msgstr "" +#. TRANS: Checkbox label for prohibiting anonymous users from viewing site. #: actions/accessadminpanel.php:167 -msgid "Invite only" -msgstr "" +#, fuzzy +msgctxt "LABEL" +msgid "Private" +msgstr "פרטיות" -#: actions/accessadminpanel.php:169 +#. TRANS: Checkbox instructions for admin setting "Invite only" +#: actions/accessadminpanel.php:174 msgid "Make registration invitation only." msgstr "" -#: actions/accessadminpanel.php:173 +#. TRANS: Checkbox label for configuring site as invite only. +#: actions/accessadminpanel.php:176 +msgid "Invite only" +msgstr "" + +#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations) +#: actions/accessadminpanel.php:183 +msgid "Disable new registrations." +msgstr "" + +#. TRANS: Checkbox label for disabling new user registrations. +#: actions/accessadminpanel.php:185 #, fuzzy msgid "Closed" msgstr "אין משתמש כזה." -#: actions/accessadminpanel.php:175 -msgid "Disable new registrations." -msgstr "" - -#: actions/accessadminpanel.php:189 actions/designadminpanel.php:586 -#: actions/emailsettings.php:195 actions/imsettings.php:163 -#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 -#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 -#: actions/siteadminpanel.php:336 actions/smssettings.php:181 -#: actions/subscriptions.php:208 actions/tagother.php:154 -#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 -#: lib/applicationeditform.php:334 lib/designsettings.php:256 -#: lib/groupeditform.php:202 -msgid "Save" -msgstr "שמור" - -#: actions/accessadminpanel.php:189 +#. TRANS: Title / tooltip for button to save access settings in site admin panel +#: actions/accessadminpanel.php:202 #, fuzzy msgid "Save access settings" msgstr "הגדרות" -#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 -#: actions/showfavorites.php:137 actions/tag.php:51 +#: actions/accessadminpanel.php:203 +#, fuzzy +msgctxt "BUTTON" +msgid "Save" +msgstr "שמור" + +#. TRANS: Server error when page not found (404) +#: actions/all.php:64 actions/public.php:98 actions/replies.php:93 +#: actions/showfavorites.php:138 actions/tag.php:52 #, fuzzy msgid "No such page" msgstr "אין הודעה כזו." -#: actions/all.php:74 actions/allrss.php:68 +#: actions/all.php:75 actions/allrss.php:68 #: actions/apiaccountupdatedeliverydevice.php:113 #: actions/apiaccountupdateprofile.php:105 #: actions/apiaccountupdateprofilebackgroundimage.php:116 @@ -96,72 +102,82 @@ msgstr "אין הודעה כזו." #: actions/apitimelinehome.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/otp.php:76 -#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154 -#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 -#: actions/showfavorites.php:105 actions/userbyid.php:74 -#: actions/usergroups.php:91 actions/userrss.php:38 actions/xrds.php:71 -#: lib/command.php:163 lib/command.php:302 lib/command.php:355 -#: lib/command.php:401 lib/command.php:462 lib/command.php:518 -#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 +#: actions/hcard.php:67 actions/microsummary.php:62 actions/newmessage.php:116 +#: actions/otp.php:76 actions/remotesubscribe.php:145 +#: actions/remotesubscribe.php:154 actions/replies.php:73 +#: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/xrds.php:71 lib/command.php:163 lib/command.php:302 +#: lib/command.php:355 lib/command.php:401 lib/command.php:462 +#: lib/command.php:518 lib/galleryaction.php:59 lib/mailbox.php:82 +#: lib/profileaction.php:77 msgid "No such user." msgstr "אין משתמש כזה." -#: actions/all.php:84 +#. TRANS: Page title. %1$s is user nickname, %2$d is page number +#: actions/all.php:86 #, fuzzy, php-format msgid "%1$s and friends, page %2$d" msgstr "%s וחברים" -#: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 +#. TRANS: Page title. %1$s is user nickname +#. TRANS: H1 text. %1$s is user nickname +#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" msgstr "%s וחברים" -#: actions/all.php:99 +#. TRANS: %1$s is user nickname +#: actions/all.php:103 #, fuzzy, php-format msgid "Feed for friends of %s (RSS 1.0)" msgstr "הזנות החברים של %s" -#: actions/all.php:107 +#. TRANS: %1$s is user nickname +#: actions/all.php:112 #, fuzzy, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "הזנות החברים של %s" -#: actions/all.php:115 +#. TRANS: %1$s is user nickname +#: actions/all.php:121 #, fuzzy, php-format msgid "Feed for friends of %s (Atom)" msgstr "הזנות החברים של %s" -#: actions/all.php:127 +#. TRANS: %1$s is user nickname +#: actions/all.php:134 #, php-format msgid "" "This is the timeline for %s and friends but no one has posted anything yet." msgstr "" -#: actions/all.php:132 +#: actions/all.php:139 #, php-format msgid "" "Try subscribing to more people, [join a group](%%action.groups%%) or post " "something yourself." msgstr "" -#: actions/all.php:134 +#. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@" +#: actions/all.php:142 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) from his profile or [post something to " "his or her attention](%%%%action.newnotice%%%%?status_textarea=%3$s)." msgstr "" -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211 +#: actions/all.php:145 actions/replies.php:210 actions/showstream.php:211 #, 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/all.php:165 +#. TRANS: H1 text +#: actions/all.php:174 #, fuzzy msgid "You and friends" msgstr "%s וחברים" @@ -180,20 +196,20 @@ msgstr "" #: actions/apiaccountverifycredentials.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:128 actions/apigroupcreate.php:136 +#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: actions/apigroupleave.php:141 actions/apigrouplist.php:132 #: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 #: actions/apigroupshow.php:115 actions/apihelptest.php:88 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 -#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184 +#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 #: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:207 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 #, fuzzy msgid "API method not found." msgstr "קוד האישור לא נמצא." @@ -227,8 +243,9 @@ msgstr "עידכון המשתמש נכשל." #: actions/apiaccountupdateprofilebackgroundimage.php:194 #: actions/apiaccountupdateprofilecolors.php:185 #: 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 +#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 +#: actions/replies.php:80 actions/usergroups.php:98 lib/galleryaction.php:66 +#: lib/profileaction.php:84 msgid "User has no profile." msgstr "למשתמש אין פרופיל." @@ -253,7 +270,7 @@ msgstr "" #: actions/apiaccountupdateprofilebackgroundimage.php:146 #: actions/apiaccountupdateprofilecolors.php:164 #: actions/apiaccountupdateprofilecolors.php:174 -#: actions/groupdesignsettings.php:287 actions/groupdesignsettings.php:297 +#: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300 #: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 #: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 msgid "Unable to save your design settings." @@ -370,68 +387,68 @@ msgstr "עידכון המשתמש נכשל." msgid "Could not find target user." msgstr "עידכון המשתמש נכשל." -#: actions/apigroupcreate.php:164 actions/editgroup.php:182 +#: actions/apigroupcreate.php:166 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:215 #: actions/register.php:205 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "כינוי יכול להכיל רק אותיות אנגליות קטנות ומספרים, וללא רווחים." -#: actions/apigroupcreate.php:173 actions/editgroup.php:186 +#: actions/apigroupcreate.php:175 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:238 #: actions/register.php:208 msgid "Nickname already in use. Try another one." msgstr "כינוי זה כבר תפוס. נסה כינוי אחר." -#: actions/apigroupcreate.php:180 actions/editgroup.php:189 +#: actions/apigroupcreate.php:182 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:218 #: actions/register.php:210 msgid "Not a valid nickname." msgstr "שם משתמש לא חוקי." -#: actions/apigroupcreate.php:196 actions/editapplication.php:215 -#: actions/editgroup.php:195 actions/newapplication.php:203 +#: actions/apigroupcreate.php:198 actions/editapplication.php:215 +#: actions/editgroup.php:199 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:217 msgid "Homepage is not a valid URL." msgstr "לאתר הבית יש כתובת לא חוקית." -#: actions/apigroupcreate.php:205 actions/editgroup.php:198 +#: actions/apigroupcreate.php:207 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:225 #: actions/register.php:220 msgid "Full name is too long (max 255 chars)." msgstr "השם המלא ארוך מידי (מותרות 255 אותיות בלבד)" -#: actions/apigroupcreate.php:213 actions/editapplication.php:190 +#: actions/apigroupcreate.php:215 actions/editapplication.php:190 #: actions/newapplication.php:172 #, fuzzy, php-format msgid "Description is too long (max %d chars)." msgstr "הביוגרפיה ארוכה מידי (לכל היותר 140 אותיות)" -#: actions/apigroupcreate.php:224 actions/editgroup.php:204 +#: actions/apigroupcreate.php:226 actions/editgroup.php:208 #: actions/newgroup.php:148 actions/profilesettings.php:232 #: actions/register.php:227 msgid "Location is too long (max 255 chars)." msgstr "שם המיקום ארוך מידי (מותר עד 255 אותיות)." -#: actions/apigroupcreate.php:243 actions/editgroup.php:215 +#: actions/apigroupcreate.php:245 actions/editgroup.php:219 #: actions/newgroup.php:159 #, php-format msgid "Too many aliases! Maximum %d." msgstr "" -#: actions/apigroupcreate.php:264 actions/editgroup.php:224 +#: actions/apigroupcreate.php:266 actions/editgroup.php:228 #: actions/newgroup.php:168 #, fuzzy, php-format msgid "Invalid alias: \"%s\"" msgstr "כתובת אתר הבית '%s' אינה חוקית" -#: actions/apigroupcreate.php:273 actions/editgroup.php:228 +#: actions/apigroupcreate.php:275 actions/editgroup.php:232 #: actions/newgroup.php:172 #, fuzzy, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "כינוי זה כבר תפוס. נסה כינוי אחר." -#: actions/apigroupcreate.php:286 actions/editgroup.php:234 +#: actions/apigroupcreate.php:288 actions/editgroup.php:238 #: actions/newgroup.php:178 msgid "Alias can't be the same as nickname." msgstr "" @@ -443,16 +460,16 @@ msgstr "" msgid "Group not found!" msgstr "לא נמצא" -#: actions/apigroupjoin.php:110 actions/joingroup.php:90 +#: actions/apigroupjoin.php:110 actions/joingroup.php:100 #, fuzzy msgid "You are already a member of that group." msgstr "כבר נכנסת למערכת!" -#: actions/apigroupjoin.php:119 actions/joingroup.php:95 lib/command.php:221 +#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:221 msgid "You have been blocked from that group by the admin." msgstr "" -#: actions/apigroupjoin.php:138 actions/joingroup.php:124 +#: actions/apigroupjoin.php:138 actions/joingroup.php:134 #, fuzzy, php-format msgid "Could not join user %1$s to group %2$s." msgstr "נכשלה ההפניה לשרת: %s" @@ -462,7 +479,7 @@ msgstr "נכשלה ההפניה לשרת: %s" msgid "You are not a member of this group." msgstr "לא שלחנו אלינו את הפרופיל הזה" -#: actions/apigroupleave.php:124 actions/leavegroup.php:119 +#: actions/apigroupleave.php:124 actions/leavegroup.php:129 #, fuzzy, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "נכשלה יצירת OpenID מתוך: %s" @@ -494,7 +511,7 @@ msgstr "גודל לא חוקי." #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 #: actions/deletenotice.php:157 actions/disfavor.php:74 #: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54 -#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupblock.php:66 actions/grouplogo.php:312 #: actions/groupunblock.php:66 actions/imsettings.php:206 #: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 @@ -538,7 +555,7 @@ msgstr "" #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:103 actions/editapplication.php:139 -#: actions/emailsettings.php:256 actions/grouplogo.php:319 +#: actions/emailsettings.php:256 actions/grouplogo.php:322 #: actions/imsettings.php:220 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 #: actions/smssettings.php:248 lib/designsettings.php:304 @@ -561,14 +578,14 @@ msgid "" "give access to your %4$s account to third parties you trust." msgstr "" -#: actions/apioauthauthorize.php:310 lib/action.php:441 +#: actions/apioauthauthorize.php:310 #, fuzzy msgid "Account" msgstr "אודות" #: actions/apioauthauthorize.php:313 actions/login.php:230 #: actions/profilesettings.php:106 actions/register.php:424 -#: actions/showgroup.php:236 actions/tagother.php:94 +#: actions/showgroup.php:244 actions/tagother.php:94 #: actions/userauthorization.php:145 lib/groupeditform.php:152 #: lib/userprofile.php:131 msgid "Nickname" @@ -654,12 +671,12 @@ msgid "%1$s updates favorited by %2$s / %2$s." msgstr "מיקרובלוג מאת %s" #: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:131 actions/userrss.php:90 +#: actions/grouprss.php:138 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "" -#: actions/apitimelinegroup.php:114 actions/apitimelineuser.php:126 +#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 #: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" @@ -695,7 +712,7 @@ msgstr "תגובת עבור %s" msgid "Repeats of %s" msgstr "תגובת עבור %s" -#: actions/apitimelinetag.php:102 actions/tag.php:66 +#: actions/apitimelinetag.php:102 actions/tag.php:67 #, php-format msgid "Notices tagged with %s" msgstr "" @@ -718,8 +735,7 @@ msgstr "אין מסמך כזה." #: actions/avatarbynickname.php:59 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/leavegroup.php:76 -#: actions/showgroup.php:121 +#: actions/grouprss.php:91 actions/showgroup.php:121 msgid "No nickname." msgstr "אין כינוי" @@ -731,7 +747,7 @@ msgstr "אין גודל." msgid "Invalid size." msgstr "גודל לא חוקי." -#: actions/avatarsettings.php:67 actions/showgroup.php:221 +#: actions/avatarsettings.php:67 actions/showgroup.php:229 #: lib/accountsettingsaction.php:112 msgid "Avatar" msgstr "תמונה" @@ -748,32 +764,32 @@ msgid "User without matching profile" msgstr "" #: actions/avatarsettings.php:119 actions/avatarsettings.php:197 -#: actions/grouplogo.php:251 +#: actions/grouplogo.php:254 #, fuzzy msgid "Avatar settings" msgstr "הגדרות" #: actions/avatarsettings.php:127 actions/avatarsettings.php:205 -#: actions/grouplogo.php:199 actions/grouplogo.php:259 +#: actions/grouplogo.php:202 actions/grouplogo.php:262 msgid "Original" msgstr "" #: actions/avatarsettings.php:142 actions/avatarsettings.php:217 -#: actions/grouplogo.php:210 actions/grouplogo.php:271 +#: actions/grouplogo.php:213 actions/grouplogo.php:274 msgid "Preview" msgstr "" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:637 +#: lib/deleteuserform.php:66 lib/noticelist.php:655 #, fuzzy msgid "Delete" msgstr "מחק" -#: actions/avatarsettings.php:166 actions/grouplogo.php:233 +#: actions/avatarsettings.php:166 actions/grouplogo.php:236 msgid "Upload" msgstr "ההעלה" -#: actions/avatarsettings.php:231 actions/grouplogo.php:286 +#: actions/avatarsettings.php:231 actions/grouplogo.php:289 msgid "Crop" msgstr "" @@ -781,7 +797,7 @@ msgstr "" msgid "Pick a square area of the image to be your avatar" msgstr "" -#: actions/avatarsettings.php:343 actions/grouplogo.php:377 +#: actions/avatarsettings.php:343 actions/grouplogo.php:380 msgid "Lost our file data." msgstr "" @@ -816,23 +832,23 @@ msgid "" msgstr "" #: actions/block.php:143 actions/deleteapplication.php:153 -#: actions/deletenotice.php:145 actions/deleteuser.php:147 +#: actions/deletenotice.php:145 actions/deleteuser.php:150 #: actions/groupblock.php:178 msgid "No" msgstr "לא" -#: actions/block.php:143 actions/deleteuser.php:147 +#: actions/block.php:143 actions/deleteuser.php:150 #, fuzzy msgid "Do not block this user" msgstr "אין משתמש כזה." #: actions/block.php:144 actions/deleteapplication.php:158 -#: actions/deletenotice.php:146 actions/deleteuser.php:148 +#: actions/deletenotice.php:146 actions/deleteuser.php:151 #: actions/groupblock.php:179 lib/repeatform.php:132 msgid "Yes" msgstr "כן" -#: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:355 lib/blockform.php:80 #, fuzzy msgid "Block this user" msgstr "אין משתמש כזה." @@ -841,41 +857,45 @@ msgstr "אין משתמש כזה." msgid "Failed to save block information." msgstr "" -#: actions/blockedfromgroup.php:80 actions/editgroup.php:96 -#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/groupblock.php:86 -#: actions/groupbyid.php:83 actions/groupdesignsettings.php:97 -#: actions/grouplogo.php:99 actions/groupmembers.php:83 -#: actions/grouprss.php:98 actions/groupunblock.php:86 -#: actions/joingroup.php:83 actions/leavegroup.php:83 actions/makeadmin.php:86 -#: actions/showgroup.php:137 lib/command.php:212 lib/command.php:260 +#: actions/blockedfromgroup.php:80 actions/blockedfromgroup.php:87 +#: actions/editgroup.php:100 actions/foafgroup.php:44 actions/foafgroup.php:62 +#: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:100 actions/grouplogo.php:102 +#: actions/groupmembers.php:83 actions/groupmembers.php:90 +#: actions/grouprss.php:98 actions/grouprss.php:105 +#: actions/groupunblock.php:86 actions/joingroup.php:82 +#: actions/joingroup.php:93 actions/leavegroup.php:82 +#: actions/leavegroup.php:93 actions/makeadmin.php:86 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:212 +#: lib/command.php:260 #, fuzzy msgid "No such group." msgstr "אין הודעה כזו." -#: actions/blockedfromgroup.php:90 +#: actions/blockedfromgroup.php:97 #, fuzzy, php-format msgid "%s blocked profiles" msgstr "למשתמש אין פרופיל." -#: actions/blockedfromgroup.php:93 +#: actions/blockedfromgroup.php:100 #, fuzzy, php-format msgid "%1$s blocked profiles, page %2$d" msgstr "%s וחברים" -#: actions/blockedfromgroup.php:108 +#: actions/blockedfromgroup.php:115 msgid "A list of the users blocked from joining this group." msgstr "" -#: actions/blockedfromgroup.php:281 +#: actions/blockedfromgroup.php:288 #, fuzzy msgid "Unblock user from group" msgstr "אין משתמש כזה." -#: actions/blockedfromgroup.php:313 lib/unblockform.php:69 +#: actions/blockedfromgroup.php:320 lib/unblockform.php:69 msgid "Unblock" msgstr "" -#: actions/blockedfromgroup.php:313 lib/unblockform.php:80 +#: actions/blockedfromgroup.php:320 lib/unblockform.php:80 #, fuzzy msgid "Unblock this user" msgstr "אין משתמש כזה." @@ -956,7 +976,7 @@ msgstr "לא שלחנו אלינו את הפרופיל הזה" #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1197 +#: lib/action.php:1228 msgid "There was a problem with your session token." msgstr "" @@ -982,12 +1002,13 @@ msgstr "אין הודעה כזו." msgid "Delete this application" msgstr "תאר את עצמך ואת נושאי העניין שלך ב-140 אותיות" +#. TRANS: Client error message #: 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:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 -#: lib/adminpanelaction.php:72 lib/profileformaction.php:63 +#: lib/adminpanelaction.php:73 lib/profileformaction.php:63 #: lib/settingsaction.php:72 msgid "Not logged in." msgstr "לא מחובר." @@ -1015,7 +1036,7 @@ msgstr "" msgid "Do not delete this notice" msgstr "אין הודעה כזו." -#: actions/deletenotice.php:146 lib/noticelist.php:637 +#: actions/deletenotice.php:146 lib/noticelist.php:655 msgid "Delete this notice" msgstr "" @@ -1034,19 +1055,19 @@ msgstr "ניתן להשתמש במנוי המקומי!" msgid "Delete user" msgstr "מחק" -#: actions/deleteuser.php:135 +#: actions/deleteuser.php:136 msgid "" "Are you sure you want to delete this user? This will clear all data about " "the user from the database, without a backup." msgstr "" -#: actions/deleteuser.php:148 lib/deleteuserform.php:77 +#: actions/deleteuser.php:151 lib/deleteuserform.php:77 #, fuzzy msgid "Delete this user" msgstr "אין משתמש כזה." #: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 -#: lib/adminpanelaction.php:316 lib/groupnav.php:119 +#: lib/groupnav.php:119 msgid "Design" msgstr "" @@ -1156,6 +1177,17 @@ msgstr "" msgid "Reset back to default" msgstr "" +#: actions/designadminpanel.php:586 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/tagother.php:154 actions/useradminpanel.php:294 +#: lib/applicationeditform.php:333 lib/applicationeditform.php:334 +#: lib/designsettings.php:256 lib/groupeditform.php:202 +msgid "Save" +msgstr "שמור" + #: actions/designadminpanel.php:587 lib/designsettings.php:257 msgid "Save design" msgstr "" @@ -1256,31 +1288,31 @@ msgstr "" msgid "You must be logged in to create a group." msgstr "" -#: actions/editgroup.php:103 actions/editgroup.php:168 -#: actions/groupdesignsettings.php:104 actions/grouplogo.php:106 +#: actions/editgroup.php:107 actions/editgroup.php:172 +#: actions/groupdesignsettings.php:107 actions/grouplogo.php:109 msgid "You must be an admin to edit the group." msgstr "" -#: actions/editgroup.php:154 +#: actions/editgroup.php:158 msgid "Use this form to edit the group." msgstr "" -#: actions/editgroup.php:201 actions/newgroup.php:145 +#: actions/editgroup.php:205 actions/newgroup.php:145 #, fuzzy, php-format msgid "description is too long (max %d chars)." msgstr "הביוגרפיה ארוכה מידי (לכל היותר 140 אותיות)" -#: actions/editgroup.php:253 +#: actions/editgroup.php:258 #, fuzzy msgid "Could not update group." msgstr "עידכון המשתמש נכשל." -#: actions/editgroup.php:259 classes/User_group.php:433 +#: actions/editgroup.php:264 classes/User_group.php:478 #, fuzzy msgid "Could not create aliases." msgstr "שמירת מידע התמונה נכשל" -#: actions/editgroup.php:269 +#: actions/editgroup.php:280 #, fuzzy msgid "Options saved." msgstr "ההגדרות נשמרו." @@ -1625,7 +1657,7 @@ msgstr "למשתמש אין פרופיל." msgid "User is not a member of group." msgstr "לא שלחנו אלינו את הפרופיל הזה" -#: actions/groupblock.php:136 actions/groupmembers.php:316 +#: actions/groupblock.php:136 actions/groupmembers.php:323 #, fuzzy msgid "Block user from group" msgstr "אין משתמש כזה." @@ -1661,92 +1693,92 @@ msgstr "אין זיהוי." msgid "You must be logged in to edit a group." msgstr "" -#: actions/groupdesignsettings.php:141 +#: actions/groupdesignsettings.php:144 #, fuzzy msgid "Group design" msgstr "קבוצות" -#: actions/groupdesignsettings.php:152 +#: actions/groupdesignsettings.php:155 msgid "" "Customize the way your group looks with a background image and a colour " "palette of your choice." msgstr "" -#: actions/groupdesignsettings.php:263 actions/userdesignsettings.php:186 +#: actions/groupdesignsettings.php:266 actions/userdesignsettings.php:186 #: lib/designsettings.php:391 lib/designsettings.php:413 #, fuzzy msgid "Couldn't update your design." msgstr "עידכון המשתמש נכשל." -#: actions/groupdesignsettings.php:308 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231 #, fuzzy msgid "Design preferences saved." msgstr "העדפות נשמרו." -#: actions/grouplogo.php:139 actions/grouplogo.php:192 +#: actions/grouplogo.php:142 actions/grouplogo.php:195 msgid "Group logo" msgstr "" -#: actions/grouplogo.php:150 +#: actions/grouplogo.php:153 #, php-format msgid "" "You can upload a logo image for your group. The maximum file size is %s." msgstr "" -#: actions/grouplogo.php:178 +#: actions/grouplogo.php:181 #, fuzzy msgid "User without matching profile." msgstr "למשתמש אין פרופיל." -#: actions/grouplogo.php:362 +#: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." msgstr "" -#: actions/grouplogo.php:396 +#: actions/grouplogo.php:399 #, fuzzy msgid "Logo updated." msgstr "התמונה עודכנה." -#: actions/grouplogo.php:398 +#: actions/grouplogo.php:401 #, fuzzy msgid "Failed updating logo." msgstr "עדכון התמונה נכשל." -#: actions/groupmembers.php:93 lib/groupnav.php:92 +#: actions/groupmembers.php:100 lib/groupnav.php:92 #, php-format msgid "%s group members" msgstr "" -#: actions/groupmembers.php:96 +#: actions/groupmembers.php:103 #, php-format msgid "%1$s group members, page %2$d" msgstr "" -#: actions/groupmembers.php:111 +#: actions/groupmembers.php:118 msgid "A list of the users in this group." msgstr "" -#: actions/groupmembers.php:175 lib/action.php:448 lib/groupnav.php:107 +#: actions/groupmembers.php:182 lib/groupnav.php:107 msgid "Admin" msgstr "" -#: actions/groupmembers.php:348 lib/blockform.php:69 +#: actions/groupmembers.php:355 lib/blockform.php:69 msgid "Block" msgstr "" -#: actions/groupmembers.php:443 +#: actions/groupmembers.php:450 msgid "Make user an admin of the group" msgstr "" -#: actions/groupmembers.php:475 +#: actions/groupmembers.php:482 msgid "Make Admin" msgstr "" -#: actions/groupmembers.php:475 +#: actions/groupmembers.php:482 msgid "Make this user an admin" msgstr "" -#: actions/grouprss.php:133 +#: actions/grouprss.php:140 #, fuzzy, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "מיקרובלוג מאת %s" @@ -2000,16 +2032,19 @@ msgstr "" msgid "Optionally add a personal message to the invitation." msgstr "" -#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:236 +#. TRANS: Send button for inviting friends +#: actions/invite.php:198 +#, fuzzy +msgctxt "BUTTON" msgid "Send" msgstr "שלח" -#: actions/invite.php:226 +#: actions/invite.php:227 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "" -#: actions/invite.php:228 +#: actions/invite.php:229 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -2044,7 +2079,12 @@ msgstr "" msgid "You must be logged in to join a group." msgstr "" -#: actions/joingroup.php:131 +#: actions/joingroup.php:88 actions/leavegroup.php:88 +#, fuzzy +msgid "No nickname or ID." +msgstr "אין כינוי" + +#: actions/joingroup.php:141 #, php-format msgid "%1$s joined group %2$s" msgstr "" @@ -2053,12 +2093,12 @@ msgstr "" msgid "You must be logged in to leave a group." msgstr "" -#: actions/leavegroup.php:90 lib/command.php:265 +#: actions/leavegroup.php:100 lib/command.php:265 #, fuzzy msgid "You are not a member of that group." msgstr "לא שלחנו אלינו את הפרופיל הזה" -#: actions/leavegroup.php:127 +#: actions/leavegroup.php:137 #, fuzzy, php-format msgid "%1$s left group %2$s" msgstr "הסטטוס של %1$s ב-%2$s " @@ -2076,8 +2116,7 @@ msgstr "שם משתמש או סיסמה לא נכונים." msgid "Error setting user. You are probably not authorized." msgstr "לא מורשה." -#: actions/login.php:188 actions/login.php:241 lib/action.php:466 -#: lib/logingroupnav.php:79 +#: actions/login.php:188 actions/login.php:241 lib/logingroupnav.php:79 msgid "Login" msgstr "היכנס" @@ -2326,8 +2365,8 @@ msgstr "התחבר" msgid "Only " msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 -#: lib/api.php:1068 lib/api.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 +#: lib/apiaction.php:1068 lib/apiaction.php:1177 msgid "Not a supported data format." msgstr "" @@ -2475,7 +2514,7 @@ msgstr "לא ניתן לשמור את הסיסמה" msgid "Password saved." msgstr "הסיסמה נשמרה." -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:331 +#: actions/pathsadminpanel.php:59 msgid "Paths" msgstr "" @@ -2508,7 +2547,6 @@ msgid "Invalid SSL server. The maximum length is 255 characters." msgstr "" #: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58 -#: lib/adminpanelaction.php:311 msgid "Site" msgstr "" @@ -2690,7 +2728,7 @@ msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1 עד 64 אותיות אנגליות קטנות או מספרים, ללא סימני פיסוק או רווחים." #: actions/profilesettings.php:111 actions/register.php:448 -#: actions/showgroup.php:247 actions/tagother.php:104 +#: actions/showgroup.php:255 actions/tagother.php:104 #: lib/groupeditform.php:157 lib/userprofile.php:149 msgid "Full name" msgstr "שם מלא" @@ -2719,7 +2757,7 @@ msgid "Bio" msgstr "ביוגרפיה" #: actions/profilesettings.php:132 actions/register.php:471 -#: actions/showgroup.php:256 actions/tagother.php:112 +#: actions/showgroup.php:264 actions/tagother.php:112 #: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:164 msgid "Location" @@ -2801,7 +2839,8 @@ msgstr "שמירת הפרופיל נכשלה." msgid "Couldn't save tags." msgstr "שמירת הפרופיל נכשלה." -#: actions/profilesettings.php:391 lib/adminpanelaction.php:137 +#. TRANS: Message after successful saving of administrative settings. +#: actions/profilesettings.php:391 lib/adminpanelaction.php:141 msgid "Settings saved." msgstr "ההגדרות נשמרו." @@ -2814,48 +2853,48 @@ msgstr "" msgid "Could not retrieve public stream." msgstr "" -#: actions/public.php:129 +#: actions/public.php:130 #, fuzzy, php-format msgid "Public timeline, page %d" msgstr "קו זמן ציבורי" -#: actions/public.php:131 lib/publicgroupnav.php:79 +#: actions/public.php:132 lib/publicgroupnav.php:79 msgid "Public timeline" msgstr "קו זמן ציבורי" -#: actions/public.php:159 +#: actions/public.php:160 #, fuzzy msgid "Public Stream Feed (RSS 1.0)" msgstr "הזנת זרם הציבורי" -#: actions/public.php:163 +#: actions/public.php:164 #, fuzzy msgid "Public Stream Feed (RSS 2.0)" msgstr "הזנת זרם הציבורי" -#: actions/public.php:167 +#: actions/public.php:168 #, fuzzy msgid "Public Stream Feed (Atom)" msgstr "הזנת זרם הציבורי" -#: actions/public.php:187 +#: actions/public.php:188 #, php-format msgid "" "This is the public timeline for %%site.name%% but no one has posted anything " "yet." msgstr "" -#: actions/public.php:190 +#: actions/public.php:191 msgid "Be the first to post!" msgstr "" -#: actions/public.php:194 +#: actions/public.php:195 #, php-format msgid "" "Why not [register an account](%%action.register%%) and be the first to post!" msgstr "" -#: actions/public.php:241 +#: actions/public.php:242 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2864,7 +2903,7 @@ msgid "" "friends, family, and colleagues! ([Read more](%%doc.help%%))" msgstr "" -#: actions/public.php:246 +#: actions/public.php:247 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -3035,8 +3074,7 @@ msgstr "שגיאה באישור הקוד." msgid "Registration successful" msgstr "" -#: actions/register.php:114 actions/register.php:503 lib/action.php:463 -#: lib/logingroupnav.php:85 +#: actions/register.php:114 actions/register.php:503 lib/logingroupnav.php:85 msgid "Register" msgstr "הירשם" @@ -3204,7 +3242,7 @@ msgstr "לא ניתן להירשם ללא הסכמה לרשיון" msgid "You already repeated that notice." msgstr "כבר נכנסת למערכת!" -#: actions/repeat.php:114 lib/noticelist.php:656 +#: actions/repeat.php:114 lib/noticelist.php:674 #, fuzzy msgid "Repeated" msgstr "צור" @@ -3214,47 +3252,47 @@ msgstr "צור" msgid "Repeated!" msgstr "צור" -#: actions/replies.php:125 actions/repliesrss.php:68 +#: actions/replies.php:126 actions/repliesrss.php:68 #: lib/personalgroupnav.php:105 #, php-format msgid "Replies to %s" msgstr "תגובת עבור %s" -#: actions/replies.php:127 +#: actions/replies.php:128 #, fuzzy, php-format msgid "Replies to %1$s, page %2$d" msgstr "תגובת עבור %s" -#: actions/replies.php:144 +#: actions/replies.php:145 #, fuzzy, php-format msgid "Replies feed for %s (RSS 1.0)" msgstr "הזנת הודעות של %s" -#: actions/replies.php:151 +#: actions/replies.php:152 #, fuzzy, php-format msgid "Replies feed for %s (RSS 2.0)" msgstr "הזנת הודעות של %s" -#: actions/replies.php:158 +#: actions/replies.php:159 #, fuzzy, php-format msgid "Replies feed for %s (Atom)" msgstr "הזנת הודעות של %s" -#: actions/replies.php:198 +#: actions/replies.php:199 #, php-format msgid "" "This is the timeline showing replies to %1$s but %2$s hasn't received a " "notice to his attention yet." msgstr "" -#: actions/replies.php:203 +#: actions/replies.php:204 #, php-format msgid "" "You can engage other users in a conversation, subscribe to more people or " "[join groups](%%action.groups%%)." msgstr "" -#: actions/replies.php:205 +#: actions/replies.php:206 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) or [post something to his or her " @@ -3282,7 +3320,6 @@ msgid "User is already sandboxed." msgstr "למשתמש אין פרופיל." #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:336 msgid "Sessions" msgstr "" @@ -3307,7 +3344,7 @@ msgid "Turn on debugging output for sessions." msgstr "" #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/useradminpanel.php:293 +#: actions/useradminpanel.php:294 #, fuzzy msgid "Save site settings" msgstr "הגדרות" @@ -3342,7 +3379,7 @@ msgstr "מיקום" msgid "Description" msgstr "הרשמות" -#: actions/showapplication.php:192 actions/showgroup.php:429 +#: actions/showapplication.php:192 actions/showgroup.php:437 #: lib/profileaction.php:174 msgid "Statistics" msgstr "סטטיסטיקה" @@ -3403,35 +3440,35 @@ msgstr "%s וחברים" msgid "Could not retrieve favorite notices." msgstr "" -#: actions/showfavorites.php:170 +#: actions/showfavorites.php:171 #, fuzzy, php-format msgid "Feed for favorites of %s (RSS 1.0)" msgstr "הזנות החברים של %s" -#: actions/showfavorites.php:177 +#: actions/showfavorites.php:178 #, fuzzy, php-format msgid "Feed for favorites of %s (RSS 2.0)" msgstr "הזנות החברים של %s" -#: actions/showfavorites.php:184 +#: actions/showfavorites.php:185 #, fuzzy, php-format msgid "Feed for favorites of %s (Atom)" msgstr "הזנות החברים של %s" -#: actions/showfavorites.php:205 +#: actions/showfavorites.php:206 msgid "" "You haven't chosen any favorite notices yet. Click the fave button on " "notices you like to bookmark them for later or shed a spotlight on them." msgstr "" -#: actions/showfavorites.php:207 +#: actions/showfavorites.php:208 #, 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:211 +#: actions/showfavorites.php:212 #, php-format msgid "" "%s hasn't added any notices to his favorites yet. Why not [register an " @@ -3439,7 +3476,7 @@ msgid "" "would add to their favorites :)" msgstr "" -#: actions/showfavorites.php:242 +#: actions/showfavorites.php:243 msgid "This is a way to share what you like." msgstr "" @@ -3453,71 +3490,71 @@ msgstr "" msgid "%1$s group, page %2$d" msgstr "כל המנויים" -#: actions/showgroup.php:218 +#: actions/showgroup.php:226 #, fuzzy msgid "Group profile" msgstr "אין הודעה כזו." -#: actions/showgroup.php:263 actions/tagother.php:118 +#: actions/showgroup.php:271 actions/tagother.php:118 #: actions/userauthorization.php:175 lib/userprofile.php:177 msgid "URL" msgstr "" -#: actions/showgroup.php:274 actions/tagother.php:128 +#: actions/showgroup.php:282 actions/tagother.php:128 #: actions/userauthorization.php:187 lib/userprofile.php:194 #, fuzzy msgid "Note" msgstr "הודעות" -#: actions/showgroup.php:284 lib/groupeditform.php:184 +#: actions/showgroup.php:292 lib/groupeditform.php:184 msgid "Aliases" msgstr "" -#: actions/showgroup.php:293 +#: actions/showgroup.php:301 msgid "Group actions" msgstr "" -#: actions/showgroup.php:328 +#: actions/showgroup.php:336 #, fuzzy, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "הזנת הודעות של %s" -#: actions/showgroup.php:334 +#: actions/showgroup.php:342 #, fuzzy, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "הזנת הודעות של %s" -#: actions/showgroup.php:340 +#: actions/showgroup.php:348 #, fuzzy, php-format msgid "Notice feed for %s group (Atom)" msgstr "הזנת הודעות של %s" -#: actions/showgroup.php:345 +#: actions/showgroup.php:353 #, fuzzy, php-format msgid "FOAF for %s group" msgstr "הזנת הודעות של %s" -#: actions/showgroup.php:381 actions/showgroup.php:438 lib/groupnav.php:91 +#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 #, fuzzy msgid "Members" msgstr "חבר מאז" -#: actions/showgroup.php:386 lib/profileaction.php:117 +#: actions/showgroup.php:394 lib/profileaction.php:117 #: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "" -#: actions/showgroup.php:392 +#: actions/showgroup.php:400 msgid "All members" msgstr "" -#: actions/showgroup.php:432 +#: actions/showgroup.php:440 #, fuzzy msgid "Created" msgstr "צור" -#: actions/showgroup.php:448 +#: actions/showgroup.php:456 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3527,7 +3564,7 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showgroup.php:454 +#: actions/showgroup.php:462 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3536,7 +3573,7 @@ msgid "" "their life and interests. " msgstr "" -#: actions/showgroup.php:482 +#: actions/showgroup.php:490 msgid "Admins" msgstr "" @@ -3995,22 +4032,22 @@ msgstr "אין זיהוי Jabber כזה." msgid "SMS" msgstr "סמס" -#: actions/tag.php:68 +#: actions/tag.php:69 #, fuzzy, php-format msgid "Notices tagged with %1$s, page %2$d" msgstr "מיקרובלוג מאת %s" -#: actions/tag.php:86 +#: actions/tag.php:87 #, fuzzy, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "הזנת הודעות של %s" -#: actions/tag.php:92 +#: actions/tag.php:93 #, fuzzy, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "הזנת הודעות של %s" -#: actions/tag.php:98 +#: actions/tag.php:99 #, fuzzy, php-format msgid "Notice feed for tag %s (Atom)" msgstr "הזנת הודעות של %s" @@ -4064,7 +4101,7 @@ msgstr "" msgid "No such tag." msgstr "אין הודעה כזו." -#: actions/twitapitrends.php:87 +#: actions/twitapitrends.php:85 msgid "API method under construction." msgstr "" @@ -4099,74 +4136,76 @@ msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" -#: actions/useradminpanel.php:58 lib/adminpanelaction.php:321 -#: lib/personalgroupnav.php:115 +#. TRANS: User admin panel title +#: actions/useradminpanel.php:59 +#, fuzzy +msgctxt "TITLE" msgid "User" msgstr "מתשמש" -#: actions/useradminpanel.php:69 +#: actions/useradminpanel.php:70 msgid "User settings for this StatusNet site." msgstr "" -#: actions/useradminpanel.php:148 +#: actions/useradminpanel.php:149 msgid "Invalid bio limit. Must be numeric." msgstr "" -#: actions/useradminpanel.php:154 +#: actions/useradminpanel.php:155 msgid "Invalid welcome text. Max length is 255 characters." msgstr "" -#: actions/useradminpanel.php:164 +#: actions/useradminpanel.php:165 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" -#: actions/useradminpanel.php:217 lib/accountsettingsaction.php:108 +#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "פרופיל" -#: actions/useradminpanel.php:221 +#: actions/useradminpanel.php:222 msgid "Bio Limit" msgstr "" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:223 msgid "Maximum length of a profile bio in characters." msgstr "" -#: actions/useradminpanel.php:230 +#: actions/useradminpanel.php:231 #, fuzzy msgid "New users" msgstr "מחק" -#: actions/useradminpanel.php:234 +#: actions/useradminpanel.php:235 msgid "New user welcome" msgstr "" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:236 msgid "Welcome text for new users (Max 255 chars)." msgstr "" -#: actions/useradminpanel.php:240 +#: actions/useradminpanel.php:241 #, fuzzy msgid "Default subscription" msgstr "כל המנויים" -#: actions/useradminpanel.php:241 +#: actions/useradminpanel.php:242 #, fuzzy msgid "Automatically subscribe new users to this user." msgstr "ההרשמה אושרה" -#: actions/useradminpanel.php:250 +#: actions/useradminpanel.php:251 #, fuzzy msgid "Invitations" msgstr "מיקום" -#: actions/useradminpanel.php:255 +#: actions/useradminpanel.php:256 msgid "Invitations enabled" msgstr "" -#: actions/useradminpanel.php:257 +#: actions/useradminpanel.php:258 msgid "Whether to allow users to invite new users." msgstr "" @@ -4351,7 +4390,7 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:196 lib/action.php:747 +#: actions/version.php:196 lib/action.php:778 #, fuzzy msgid "Version" msgstr "אישי" @@ -4392,6 +4431,11 @@ msgstr "עידכון המשתמש נכשל." msgid "Group leave failed." msgstr "אין הודעה כזו." +#: classes/Local_group.php:41 +#, fuzzy +msgid "Could not update local group." +msgstr "עידכון המשתמש נכשל." + #: classes/Login_token.php:76 #, fuzzy, php-format msgid "Could not create login token for %s" @@ -4409,46 +4453,46 @@ msgstr "" msgid "Could not update message with new URI." msgstr "" -#: classes/Notice.php:157 +#: classes/Notice.php:172 #, php-format msgid "DB error inserting hashtag: %s" msgstr "" -#: classes/Notice.php:222 +#: classes/Notice.php:239 #, fuzzy msgid "Problem saving notice. Too long." msgstr "בעיה בשמירת ההודעה." -#: classes/Notice.php:226 +#: classes/Notice.php:243 #, fuzzy msgid "Problem saving notice. Unknown user." msgstr "בעיה בשמירת ההודעה." -#: classes/Notice.php:231 +#: classes/Notice.php:248 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: classes/Notice.php:237 +#: classes/Notice.php:254 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." msgstr "" -#: classes/Notice.php:243 +#: classes/Notice.php:260 msgid "You are banned from posting notices on this site." msgstr "" -#: classes/Notice.php:309 classes/Notice.php:335 +#: classes/Notice.php:326 classes/Notice.php:352 msgid "Problem saving notice." msgstr "בעיה בשמירת ההודעה." -#: classes/Notice.php:882 +#: classes/Notice.php:911 #, fuzzy msgid "Problem saving group inbox." msgstr "בעיה בשמירת ההודעה." -#: classes/Notice.php:1407 +#: classes/Notice.php:1442 #, php-format msgid "RT @%1$s %2$s" msgstr "" @@ -4480,21 +4524,31 @@ msgstr "מחיקת המנוי לא הצליחה." msgid "Couldn't delete subscription." msgstr "מחיקת המנוי לא הצליחה." -#: classes/User.php:372 +#: classes/User.php:373 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "" -#: classes/User_group.php:423 +#: classes/User_group.php:462 #, fuzzy msgid "Could not create group." msgstr "שמירת מידע התמונה נכשל" -#: classes/User_group.php:452 +#: classes/User_group.php:471 +#, fuzzy +msgid "Could not set group URI." +msgstr "יצירת המנוי נכשלה." + +#: classes/User_group.php:492 #, fuzzy msgid "Could not set group membership." msgstr "יצירת המנוי נכשלה." +#: classes/User_group.php:506 +#, fuzzy +msgid "Could not save local group info." +msgstr "יצירת המנוי נכשלה." + #: lib/accountsettingsaction.php:108 msgid "Change your profile settings" msgstr "" @@ -4538,127 +4592,188 @@ msgstr "" msgid "Primary site navigation" msgstr "" +#. TRANS: Tooltip for main menu option "Personal" #: lib/action.php:439 -msgid "Home" -msgstr "בית" - -#: lib/action.php:439 +msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:441 -msgid "Change your email, avatar, password, profile" -msgstr "" - -#: lib/action.php:444 -msgid "Connect" -msgstr "התחבר" +#: lib/action.php:442 +#, fuzzy +msgctxt "MENU" +msgid "Personal" +msgstr "אישי" +#. TRANS: Tooltip for main menu option "Account" #: lib/action.php:444 #, fuzzy +msgctxt "TOOLTIP" +msgid "Change your email, avatar, password, profile" +msgstr "שנה סיסמה" + +#: lib/action.php:447 +#, fuzzy +msgctxt "MENU" +msgid "Account" +msgstr "אודות" + +#. TRANS: Tooltip for main menu option "Services" +#: lib/action.php:450 +#, fuzzy +msgctxt "TOOLTIP" msgid "Connect to services" msgstr "נכשלה ההפניה לשרת: %s" -#: lib/action.php:448 +#: lib/action.php:453 #, fuzzy +msgctxt "MENU" +msgid "Connect" +msgstr "התחבר" + +#. TRANS: Tooltip for menu option "Admin" +#: lib/action.php:457 +#, fuzzy +msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "הרשמות" -#: lib/action.php:452 lib/subgroupnav.php:105 -msgid "Invite" +#: lib/action.php:460 +msgctxt "MENU" +msgid "Admin" msgstr "" -#: lib/action.php:453 lib/subgroupnav.php:106 +#. TRANS: Tooltip for main menu option "Invite" +#: lib/action.php:464 #, php-format +msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "" -#: lib/action.php:458 -msgid "Logout" -msgstr "צא" +#: lib/action.php:467 +#, fuzzy +msgctxt "MENU" +msgid "Invite" +msgstr "גודל לא חוקי." -#: lib/action.php:458 +#. TRANS: Tooltip for main menu option "Logout" +#: lib/action.php:473 +msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "" -#: lib/action.php:463 +#: lib/action.php:476 #, fuzzy +msgctxt "MENU" +msgid "Logout" +msgstr "צא" + +#. TRANS: Tooltip for main menu option "Register" +#: lib/action.php:481 +#, fuzzy +msgctxt "TOOLTIP" msgid "Create an account" msgstr "צור חשבון חדש" -#: lib/action.php:466 +#: lib/action.php:484 +#, fuzzy +msgctxt "MENU" +msgid "Register" +msgstr "הירשם" + +#. TRANS: Tooltip for main menu option "Login" +#: lib/action.php:487 +msgctxt "TOOLTIP" msgid "Login to the site" msgstr "" -#: lib/action.php:469 lib/action.php:732 -msgid "Help" -msgstr "עזרה" - -#: lib/action.php:469 +#: lib/action.php:490 #, fuzzy +msgctxt "MENU" +msgid "Login" +msgstr "היכנס" + +#. TRANS: Tooltip for main menu option "Help" +#: lib/action.php:493 +#, fuzzy +msgctxt "TOOLTIP" msgid "Help me!" msgstr "עזרה" -#: lib/action.php:472 lib/searchaction.php:127 -msgid "Search" -msgstr "חיפוש" +#: lib/action.php:496 +#, fuzzy +msgctxt "MENU" +msgid "Help" +msgstr "עזרה" -#: lib/action.php:472 +#. TRANS: Tooltip for main menu option "Search" +#: lib/action.php:499 +msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "" -#: lib/action.php:493 +#: lib/action.php:502 +#, fuzzy +msgctxt "MENU" +msgid "Search" +msgstr "חיפוש" + +#. TRANS: DT element for site notice. String is hidden in default CSS. +#: lib/action.php:524 #, fuzzy msgid "Site notice" msgstr "הודעה חדשה" -#: lib/action.php:559 +#: lib/action.php:590 msgid "Local views" msgstr "" -#: lib/action.php:625 +#: lib/action.php:656 #, fuzzy msgid "Page notice" msgstr "הודעה חדשה" -#: lib/action.php:727 +#: lib/action.php:758 #, fuzzy msgid "Secondary site navigation" msgstr "הרשמות" -#: lib/action.php:734 +#: lib/action.php:763 +msgid "Help" +msgstr "עזרה" + +#: lib/action.php:765 msgid "About" msgstr "אודות" -#: lib/action.php:736 +#: lib/action.php:767 msgid "FAQ" msgstr "רשימת שאלות נפוצות" -#: lib/action.php:740 +#: lib/action.php:771 msgid "TOS" msgstr "" -#: lib/action.php:743 +#: lib/action.php:774 msgid "Privacy" msgstr "פרטיות" -#: lib/action.php:745 +#: lib/action.php:776 msgid "Source" msgstr "מקור" -#: lib/action.php:749 +#: lib/action.php:780 msgid "Contact" msgstr "צור קשר" -#: lib/action.php:751 +#: lib/action.php:782 msgid "Badge" msgstr "" -#: lib/action.php:779 +#: lib/action.php:810 msgid "StatusNet software license" msgstr "" -#: lib/action.php:782 +#: lib/action.php:813 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4667,12 +4782,12 @@ msgstr "" "**%%site.name%%** הוא שרות ביקרובלוג הניתן על ידי [%%site.broughtby%%](%%" "site.broughtbyurl%%)." -#: lib/action.php:784 +#: lib/action.php:815 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** הוא שרות ביקרובלוג." -#: lib/action.php:786 +#: lib/action.php:817 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4683,113 +4798,165 @@ msgstr "" "s, המופצת תחת רשיון [GNU Affero General Public License](http://www.fsf.org/" "licensing/licenses/agpl-3.0.html)" -#: lib/action.php:801 +#: lib/action.php:832 #, fuzzy msgid "Site content license" msgstr "הודעה חדשה" -#: lib/action.php:806 +#: lib/action.php:837 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:811 +#: lib/action.php:842 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:814 +#: lib/action.php:845 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" -#: lib/action.php:827 +#: lib/action.php:858 msgid "All " msgstr "" -#: lib/action.php:833 +#: lib/action.php:864 msgid "license." msgstr "" -#: lib/action.php:1132 +#: lib/action.php:1163 msgid "Pagination" msgstr "" -#: lib/action.php:1141 +#: lib/action.php:1172 #, fuzzy msgid "After" msgstr "<< אחרי" -#: lib/action.php:1149 +#: lib/action.php:1180 #, fuzzy msgid "Before" msgstr "לפני >>" -#: lib/activity.php:382 +#: lib/activity.php:449 msgid "Can't handle remote content yet." msgstr "" -#: lib/activity.php:410 +#: lib/activity.php:477 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activity.php:414 +#: lib/activity.php:481 msgid "Can't handle embedded Base64 content yet." msgstr "" -#: lib/adminpanelaction.php:96 +#. TRANS: Client error message +#: lib/adminpanelaction.php:98 msgid "You cannot make changes to this site." msgstr "" -#: lib/adminpanelaction.php:107 +#. TRANS: Client error message +#: lib/adminpanelaction.php:110 msgid "Changes to that panel are not allowed." msgstr "" -#: lib/adminpanelaction.php:206 +#. TRANS: Client error message +#: lib/adminpanelaction.php:211 msgid "showForm() not implemented." msgstr "" -#: lib/adminpanelaction.php:235 +#. TRANS: Client error message +#: lib/adminpanelaction.php:241 msgid "saveSettings() not implemented." msgstr "" -#: lib/adminpanelaction.php:258 +#. TRANS: Client error message +#: lib/adminpanelaction.php:265 msgid "Unable to delete design setting." msgstr "" -#: lib/adminpanelaction.php:312 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:330 #, fuzzy msgid "Basic site configuration" msgstr "הרשמות" -#: lib/adminpanelaction.php:317 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:332 +#, fuzzy +msgctxt "MENU" +msgid "Site" +msgstr "הודעה חדשה" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:338 msgid "Design configuration" msgstr "" -#: lib/adminpanelaction.php:322 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:340 +#, fuzzy +msgctxt "MENU" +msgid "Design" +msgstr "אישי" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:346 #, fuzzy msgid "User configuration" msgstr "הרשמות" -#: lib/adminpanelaction.php:327 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:348 +#, fuzzy +msgctxt "MENU" +msgid "User" +msgstr "מתשמש" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:354 #, fuzzy msgid "Access configuration" msgstr "הרשמות" -#: lib/adminpanelaction.php:332 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:356 +#, fuzzy +msgctxt "MENU" +msgid "Access" +msgstr "קבל" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:362 #, fuzzy msgid "Paths configuration" msgstr "הרשמות" -#: lib/adminpanelaction.php:337 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:364 +msgctxt "MENU" +msgid "Paths" +msgstr "" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:370 #, fuzzy msgid "Sessions configuration" msgstr "הרשמות" -#: lib/apiauth.php:95 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:372 +#, fuzzy +msgctxt "MENU" +msgid "Sessions" +msgstr "אישי" + +#: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." msgstr "" -#: lib/apiauth.php:273 +#: lib/apiauth.php:272 #, php-format msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" msgstr "" @@ -4885,12 +5052,12 @@ msgstr "" msgid "Tags for this attachment" msgstr "" -#: lib/authenticationplugin.php:218 lib/authenticationplugin.php:223 +#: lib/authenticationplugin.php:220 lib/authenticationplugin.php:225 #, fuzzy msgid "Password changing failed" msgstr "הסיסמה נשמרה." -#: lib/authenticationplugin.php:233 +#: lib/authenticationplugin.php:235 #, fuzzy msgid "Password changing is not allowed" msgstr "הסיסמה נשמרה." @@ -5174,20 +5341,20 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:136 +#: lib/common.php:148 #, fuzzy msgid "No configuration file found. " msgstr "אין קוד אישור." -#: lib/common.php:137 +#: lib/common.php:149 msgid "I looked for configuration files in the following places: " msgstr "" -#: lib/common.php:139 +#: lib/common.php:151 msgid "You may wish to run the installer to fix this." msgstr "" -#: lib/common.php:140 +#: lib/common.php:152 msgid "Go to the installer." msgstr "" @@ -5382,24 +5549,24 @@ msgstr "שגיאת מערכת בהעלאת הקובץ." msgid "Not an image or corrupt file." msgstr "זהו לא קובץ תמונה, או שחל בו שיבוש." -#: lib/imagefile.php:105 +#: lib/imagefile.php:109 msgid "Unsupported image file format." msgstr "פורמט התמונה אינו נתמך." -#: lib/imagefile.php:118 +#: lib/imagefile.php:122 #, fuzzy msgid "Lost our file." msgstr "אין הודעה כזו." -#: lib/imagefile.php:150 lib/imagefile.php:197 +#: lib/imagefile.php:166 lib/imagefile.php:231 msgid "Unknown file type" msgstr "" -#: lib/imagefile.php:217 +#: lib/imagefile.php:251 msgid "MB" msgstr "" -#: lib/imagefile.php:219 +#: lib/imagefile.php:253 msgid "kB" msgstr "" @@ -5703,6 +5870,12 @@ msgstr "אל" msgid "Available characters" msgstr "לפחות 6 אותיות" +#: lib/messageform.php:178 lib/noticeform.php:236 +#, fuzzy +msgctxt "Send button for sending notice" +msgid "Send" +msgstr "שלח" + #: lib/noticeform.php:160 #, fuzzy msgid "Send a notice" @@ -5763,26 +5936,26 @@ msgstr "" msgid "at" msgstr "" -#: lib/noticelist.php:558 +#: lib/noticelist.php:566 #, fuzzy msgid "in context" msgstr "אין תוכן!" -#: lib/noticelist.php:583 +#: lib/noticelist.php:601 #, fuzzy msgid "Repeated by" msgstr "צור" -#: lib/noticelist.php:610 +#: lib/noticelist.php:628 msgid "Reply to this notice" msgstr "" -#: lib/noticelist.php:611 +#: lib/noticelist.php:629 #, fuzzy msgid "Reply" msgstr "הגב" -#: lib/noticelist.php:655 +#: lib/noticelist.php:673 #, fuzzy msgid "Notice repeated" msgstr "הודעות" @@ -5832,6 +6005,10 @@ msgstr "תגובות" msgid "Favorites" msgstr "מועדפים" +#: lib/personalgroupnav.php:115 +msgid "User" +msgstr "מתשמש" + #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "" @@ -5927,7 +6104,7 @@ msgstr "אין הודעה כזו." msgid "Repeat this notice" msgstr "אין הודעה כזו." -#: lib/router.php:665 +#: lib/router.php:668 msgid "No single user defined for single-user mode." msgstr "" @@ -5949,6 +6126,10 @@ msgstr "חיפוש" msgid "Keyword(s)" msgstr "" +#: lib/searchaction.php:127 +msgid "Search" +msgstr "חיפוש" + #: lib/searchaction.php:162 #, fuzzy msgid "Search help" @@ -6003,6 +6184,15 @@ msgstr "הרשמה מרוחקת" msgid "Groups %s is a member of" msgstr "" +#: lib/subgroupnav.php:105 +msgid "Invite" +msgstr "" + +#: lib/subgroupnav.php:106 +#, php-format +msgid "Invite friends and colleagues to join you on %s" +msgstr "" + #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -6079,47 +6269,47 @@ msgstr "הודעה חדשה" msgid "Moderate" msgstr "" -#: lib/util.php:952 +#: lib/util.php:1013 msgid "a few seconds ago" msgstr "לפני מספר שניות" -#: lib/util.php:954 +#: lib/util.php:1015 msgid "about a minute ago" msgstr "לפני כדקה" -#: lib/util.php:956 +#: lib/util.php:1017 #, php-format msgid "about %d minutes ago" msgstr "לפני כ-%d דקות" -#: lib/util.php:958 +#: lib/util.php:1019 msgid "about an hour ago" msgstr "לפני כשעה" -#: lib/util.php:960 +#: lib/util.php:1021 #, php-format msgid "about %d hours ago" msgstr "לפני כ-%d שעות" -#: lib/util.php:962 +#: lib/util.php:1023 msgid "about a day ago" msgstr "לפני כיום" -#: lib/util.php:964 +#: lib/util.php:1025 #, php-format msgid "about %d days ago" msgstr "לפני כ-%d ימים" -#: lib/util.php:966 +#: lib/util.php:1027 msgid "about a month ago" msgstr "לפני כחודש" -#: lib/util.php:968 +#: lib/util.php:1029 #, php-format msgid "about %d months ago" msgstr "לפני כ-%d חודשים" -#: lib/util.php:970 +#: lib/util.php:1031 msgid "about a year ago" msgstr "לפני כשנה" diff --git a/locale/hsb/LC_MESSAGES/statusnet.po b/locale/hsb/LC_MESSAGES/statusnet.po index 7b6870afec..f46e7357ad 100644 --- a/locale/hsb/LC_MESSAGES/statusnet.po +++ b/locale/hsb/LC_MESSAGES/statusnet.po @@ -9,79 +9,86 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-02-24 23:49+0000\n" -"PO-Revision-Date: 2010-02-24 23:50:58+0000\n" +"POT-Creation-Date: 2010-03-02 21:02+0000\n" +"PO-Revision-Date: 2010-03-02 21:02:57+0000\n" "Language-Team: Dutch\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r62925); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: hsb\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : (n%100==3 || " "n%100==4) ? 2 : 3)\n" -#: actions/accessadminpanel.php:54 lib/adminpanelaction.php:326 +#. TRANS: Page title +#: actions/accessadminpanel.php:55 msgid "Access" msgstr "Přistup" -#: actions/accessadminpanel.php:65 +#. TRANS: Page notice +#: actions/accessadminpanel.php:67 #, fuzzy msgid "Site access settings" msgstr "Sydłowe nastajenja składować" -#: actions/accessadminpanel.php:158 +#. TRANS: Form legend for registration form. +#: actions/accessadminpanel.php:161 #, fuzzy msgid "Registration" msgstr "Registrować" -#: actions/accessadminpanel.php:161 -msgid "Private" -msgstr "Priwatny" - -#: actions/accessadminpanel.php:163 +#. TRANS: Checkbox instructions for admin setting "Private" +#: actions/accessadminpanel.php:165 msgid "Prohibit anonymous users (not logged in) from viewing site?" msgstr "" +#. TRANS: Checkbox label for prohibiting anonymous users from viewing site. #: actions/accessadminpanel.php:167 -msgid "Invite only" -msgstr "Jenož přeprosyć" +#, fuzzy +msgctxt "LABEL" +msgid "Private" +msgstr "Priwatny" -#: actions/accessadminpanel.php:169 +#. TRANS: Checkbox instructions for admin setting "Invite only" +#: actions/accessadminpanel.php:174 msgid "Make registration invitation only." msgstr "" -#: actions/accessadminpanel.php:173 -msgid "Closed" -msgstr "Začinjeny" +#. TRANS: Checkbox label for configuring site as invite only. +#: actions/accessadminpanel.php:176 +msgid "Invite only" +msgstr "Jenož přeprosyć" -#: actions/accessadminpanel.php:175 +#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations) +#: actions/accessadminpanel.php:183 msgid "Disable new registrations." msgstr "Nowe registrowanja znjemóžnić." -#: actions/accessadminpanel.php:189 actions/designadminpanel.php:586 -#: actions/emailsettings.php:195 actions/imsettings.php:163 -#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 -#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 -#: actions/siteadminpanel.php:336 actions/smssettings.php:181 -#: actions/subscriptions.php:208 actions/tagother.php:154 -#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 -#: lib/applicationeditform.php:334 lib/designsettings.php:256 -#: lib/groupeditform.php:202 -msgid "Save" -msgstr "Składować" +#. TRANS: Checkbox label for disabling new user registrations. +#: actions/accessadminpanel.php:185 +msgid "Closed" +msgstr "Začinjeny" -#: actions/accessadminpanel.php:189 +#. TRANS: Title / tooltip for button to save access settings in site admin panel +#: actions/accessadminpanel.php:202 #, fuzzy msgid "Save access settings" msgstr "Sydłowe nastajenja składować" -#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 -#: actions/showfavorites.php:137 actions/tag.php:51 +#: actions/accessadminpanel.php:203 +#, fuzzy +msgctxt "BUTTON" +msgid "Save" +msgstr "Składować" + +#. TRANS: Server error when page not found (404) +#: actions/all.php:64 actions/public.php:98 actions/replies.php:93 +#: actions/showfavorites.php:138 actions/tag.php:52 msgid "No such page" msgstr "Strona njeeksistuje" -#: actions/all.php:74 actions/allrss.php:68 +#: actions/all.php:75 actions/allrss.php:68 #: actions/apiaccountupdatedeliverydevice.php:113 #: actions/apiaccountupdateprofile.php:105 #: actions/apiaccountupdateprofilebackgroundimage.php:116 @@ -95,72 +102,82 @@ msgstr "Strona njeeksistuje" #: actions/apitimelinehome.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/otp.php:76 -#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154 -#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 -#: actions/showfavorites.php:105 actions/userbyid.php:74 -#: actions/usergroups.php:91 actions/userrss.php:38 actions/xrds.php:71 -#: lib/command.php:163 lib/command.php:302 lib/command.php:355 -#: lib/command.php:401 lib/command.php:462 lib/command.php:518 -#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 +#: actions/hcard.php:67 actions/microsummary.php:62 actions/newmessage.php:116 +#: actions/otp.php:76 actions/remotesubscribe.php:145 +#: actions/remotesubscribe.php:154 actions/replies.php:73 +#: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/xrds.php:71 lib/command.php:163 lib/command.php:302 +#: lib/command.php:355 lib/command.php:401 lib/command.php:462 +#: lib/command.php:518 lib/galleryaction.php:59 lib/mailbox.php:82 +#: lib/profileaction.php:77 msgid "No such user." msgstr "Wužiwar njeeksistuje" -#: actions/all.php:84 +#. TRANS: Page title. %1$s is user nickname, %2$d is page number +#: actions/all.php:86 #, php-format msgid "%1$s and friends, page %2$d" msgstr "%1$s a přećeljo, strona %2$d" -#: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 +#. TRANS: Page title. %1$s is user nickname +#. TRANS: H1 text. %1$s is user nickname +#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" msgstr "%s a přećeljo" -#: actions/all.php:99 +#. TRANS: %1$s is user nickname +#: actions/all.php:103 #, php-format msgid "Feed for friends of %s (RSS 1.0)" msgstr "Kanal za přećelow wužiwarja %s (RSS 1.0)" -#: actions/all.php:107 +#. TRANS: %1$s is user nickname +#: actions/all.php:112 #, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "Kanal za přećelow wužiwarja %s (RSS 2.0)" -#: actions/all.php:115 +#. TRANS: %1$s is user nickname +#: actions/all.php:121 #, php-format msgid "Feed for friends of %s (Atom)" msgstr "Kanal za přećelow wužiwarja %s (Atom)" -#: actions/all.php:127 +#. TRANS: %1$s is user nickname +#: actions/all.php:134 #, php-format msgid "" "This is the timeline for %s and friends but no one has posted anything yet." msgstr "" -#: actions/all.php:132 +#: actions/all.php:139 #, php-format msgid "" "Try subscribing to more people, [join a group](%%action.groups%%) or post " "something yourself." msgstr "" -#: actions/all.php:134 +#. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@" +#: actions/all.php:142 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) from his profile or [post something to " "his or her attention](%%%%action.newnotice%%%%?status_textarea=%3$s)." msgstr "" -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211 +#: actions/all.php:145 actions/replies.php:210 actions/showstream.php:211 #, 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/all.php:165 +#. TRANS: H1 text +#: actions/all.php:174 msgid "You and friends" msgstr "Ty a přećeljo" @@ -178,20 +195,20 @@ msgstr "" #: actions/apiaccountverifycredentials.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:128 actions/apigroupcreate.php:136 +#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: actions/apigroupleave.php:141 actions/apigrouplist.php:132 #: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 #: actions/apigroupshow.php:115 actions/apihelptest.php:88 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 -#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184 +#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 #: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:207 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 msgid "API method not found." msgstr "API-metoda njenamakana." @@ -223,8 +240,9 @@ msgstr "Wužiwar njeje so dał aktualizować." #: actions/apiaccountupdateprofilebackgroundimage.php:194 #: actions/apiaccountupdateprofilecolors.php:185 #: 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 +#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 +#: actions/replies.php:80 actions/usergroups.php:98 lib/galleryaction.php:66 +#: lib/profileaction.php:84 msgid "User has no profile." msgstr "Wužiwar nima profil." @@ -248,7 +266,7 @@ msgstr "" #: actions/apiaccountupdateprofilebackgroundimage.php:146 #: actions/apiaccountupdateprofilecolors.php:164 #: actions/apiaccountupdateprofilecolors.php:174 -#: actions/groupdesignsettings.php:287 actions/groupdesignsettings.php:297 +#: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300 #: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 #: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 msgid "Unable to save your design settings." @@ -358,68 +376,68 @@ msgstr "" msgid "Could not find target user." msgstr "" -#: actions/apigroupcreate.php:164 actions/editgroup.php:182 +#: actions/apigroupcreate.php:166 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:215 #: actions/register.php:205 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" -#: actions/apigroupcreate.php:173 actions/editgroup.php:186 +#: actions/apigroupcreate.php:175 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:238 #: actions/register.php:208 msgid "Nickname already in use. Try another one." msgstr "Přimjeno so hižo wužiwa. Spytaj druhe." -#: actions/apigroupcreate.php:180 actions/editgroup.php:189 +#: actions/apigroupcreate.php:182 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:218 #: actions/register.php:210 msgid "Not a valid nickname." msgstr "Žane płaćiwe přimjeno." -#: actions/apigroupcreate.php:196 actions/editapplication.php:215 -#: actions/editgroup.php:195 actions/newapplication.php:203 +#: actions/apigroupcreate.php:198 actions/editapplication.php:215 +#: actions/editgroup.php:199 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:217 msgid "Homepage is not a valid URL." msgstr "Startowa strona njeje płaćiwy URL." -#: actions/apigroupcreate.php:205 actions/editgroup.php:198 +#: actions/apigroupcreate.php:207 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:225 #: actions/register.php:220 msgid "Full name is too long (max 255 chars)." msgstr "Dospołne mjeno je předołho (maks. 255 znamješkow)." -#: actions/apigroupcreate.php:213 actions/editapplication.php:190 +#: actions/apigroupcreate.php:215 actions/editapplication.php:190 #: actions/newapplication.php:172 #, php-format msgid "Description is too long (max %d chars)." msgstr "Wopisanje je předołho (maks. %d znamješkow)." -#: actions/apigroupcreate.php:224 actions/editgroup.php:204 +#: actions/apigroupcreate.php:226 actions/editgroup.php:208 #: actions/newgroup.php:148 actions/profilesettings.php:232 #: actions/register.php:227 msgid "Location is too long (max 255 chars)." msgstr "Městno je předołho (maks. 255 znamješkow)." -#: actions/apigroupcreate.php:243 actions/editgroup.php:215 +#: actions/apigroupcreate.php:245 actions/editgroup.php:219 #: actions/newgroup.php:159 #, php-format msgid "Too many aliases! Maximum %d." msgstr "Přewjele aliasow! Maksimum: %d." -#: actions/apigroupcreate.php:264 actions/editgroup.php:224 +#: actions/apigroupcreate.php:266 actions/editgroup.php:228 #: actions/newgroup.php:168 #, php-format msgid "Invalid alias: \"%s\"" msgstr "Njepłaćiwy alias: \"%s\"" -#: actions/apigroupcreate.php:273 actions/editgroup.php:228 +#: actions/apigroupcreate.php:275 actions/editgroup.php:232 #: actions/newgroup.php:172 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "Alias \"%s\" so hižo wužiwa. Spytaj druhi." -#: actions/apigroupcreate.php:286 actions/editgroup.php:234 +#: actions/apigroupcreate.php:288 actions/editgroup.php:238 #: actions/newgroup.php:178 msgid "Alias can't be the same as nickname." msgstr "Alias njemóže samsny kaž přimjeno być." @@ -430,15 +448,15 @@ msgstr "Alias njemóže samsny kaž přimjeno być." msgid "Group not found!" msgstr "Skupina njenamakana!" -#: actions/apigroupjoin.php:110 actions/joingroup.php:90 +#: actions/apigroupjoin.php:110 actions/joingroup.php:100 msgid "You are already a member of that group." msgstr "Sy hižo čłon teje skupiny." -#: actions/apigroupjoin.php:119 actions/joingroup.php:95 lib/command.php:221 +#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:221 msgid "You have been blocked from that group by the admin." msgstr "" -#: actions/apigroupjoin.php:138 actions/joingroup.php:124 +#: actions/apigroupjoin.php:138 actions/joingroup.php:134 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Njebě móžno wužiwarja %1$s skupinje %2%s přidać." @@ -447,7 +465,7 @@ msgstr "Njebě móžno wužiwarja %1$s skupinje %2%s přidać." msgid "You are not a member of this group." msgstr "Njejsy čłon tuteje skupiny." -#: actions/apigroupleave.php:124 actions/leavegroup.php:119 +#: actions/apigroupleave.php:124 actions/leavegroup.php:129 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "Njebě móžno wužiwarja %1$s ze skupiny %2$s wotstronić." @@ -479,7 +497,7 @@ msgstr "Njepłaćiwa wulkosć." #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 #: actions/deletenotice.php:157 actions/disfavor.php:74 #: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54 -#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupblock.php:66 actions/grouplogo.php:312 #: actions/groupunblock.php:66 actions/imsettings.php:206 #: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 @@ -522,7 +540,7 @@ msgstr "" #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:103 actions/editapplication.php:139 -#: actions/emailsettings.php:256 actions/grouplogo.php:319 +#: actions/emailsettings.php:256 actions/grouplogo.php:322 #: actions/imsettings.php:220 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 #: actions/smssettings.php:248 lib/designsettings.php:304 @@ -545,13 +563,13 @@ msgid "" "give access to your %4$s account to third parties you trust." msgstr "" -#: actions/apioauthauthorize.php:310 lib/action.php:441 +#: actions/apioauthauthorize.php:310 msgid "Account" msgstr "Konto" #: actions/apioauthauthorize.php:313 actions/login.php:230 #: actions/profilesettings.php:106 actions/register.php:424 -#: actions/showgroup.php:236 actions/tagother.php:94 +#: actions/showgroup.php:244 actions/tagother.php:94 #: actions/userauthorization.php:145 lib/groupeditform.php:152 #: lib/userprofile.php:131 msgid "Nickname" @@ -633,12 +651,12 @@ msgid "%1$s updates favorited by %2$s / %2$s." msgstr "" #: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:131 actions/userrss.php:90 +#: actions/grouprss.php:138 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "" -#: actions/apitimelinegroup.php:114 actions/apitimelineuser.php:126 +#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 #: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" @@ -674,7 +692,7 @@ msgstr "" msgid "Repeats of %s" msgstr "" -#: actions/apitimelinetag.php:102 actions/tag.php:66 +#: actions/apitimelinetag.php:102 actions/tag.php:67 #, php-format msgid "Notices tagged with %s" msgstr "" @@ -695,8 +713,7 @@ msgstr "Přiwěšk njeeksistuje." #: actions/avatarbynickname.php:59 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/leavegroup.php:76 -#: actions/showgroup.php:121 +#: actions/grouprss.php:91 actions/showgroup.php:121 msgid "No nickname." msgstr "Žane přimjeno." @@ -708,7 +725,7 @@ msgstr "Žana wulkosć." msgid "Invalid size." msgstr "Njepłaćiwa wulkosć." -#: actions/avatarsettings.php:67 actions/showgroup.php:221 +#: actions/avatarsettings.php:67 actions/showgroup.php:229 #: lib/accountsettingsaction.php:112 msgid "Avatar" msgstr "Awatar" @@ -726,30 +743,30 @@ msgid "User without matching profile" msgstr "Wužiwar bjez hodźaceho so profila" #: actions/avatarsettings.php:119 actions/avatarsettings.php:197 -#: actions/grouplogo.php:251 +#: actions/grouplogo.php:254 msgid "Avatar settings" msgstr "Nastajenja awatara" #: actions/avatarsettings.php:127 actions/avatarsettings.php:205 -#: actions/grouplogo.php:199 actions/grouplogo.php:259 +#: actions/grouplogo.php:202 actions/grouplogo.php:262 msgid "Original" msgstr "Original" #: actions/avatarsettings.php:142 actions/avatarsettings.php:217 -#: actions/grouplogo.php:210 actions/grouplogo.php:271 +#: actions/grouplogo.php:213 actions/grouplogo.php:274 msgid "Preview" msgstr "Přehlad" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:637 +#: lib/deleteuserform.php:66 lib/noticelist.php:655 msgid "Delete" msgstr "Zničić" -#: actions/avatarsettings.php:166 actions/grouplogo.php:233 +#: actions/avatarsettings.php:166 actions/grouplogo.php:236 msgid "Upload" msgstr "Nahrać" -#: actions/avatarsettings.php:231 actions/grouplogo.php:286 +#: actions/avatarsettings.php:231 actions/grouplogo.php:289 msgid "Crop" msgstr "" @@ -757,7 +774,7 @@ msgstr "" msgid "Pick a square area of the image to be your avatar" msgstr "" -#: actions/avatarsettings.php:343 actions/grouplogo.php:377 +#: actions/avatarsettings.php:343 actions/grouplogo.php:380 msgid "Lost our file data." msgstr "" @@ -789,22 +806,22 @@ msgid "" msgstr "" #: actions/block.php:143 actions/deleteapplication.php:153 -#: actions/deletenotice.php:145 actions/deleteuser.php:147 +#: actions/deletenotice.php:145 actions/deleteuser.php:150 #: actions/groupblock.php:178 msgid "No" msgstr "Ně" -#: actions/block.php:143 actions/deleteuser.php:147 +#: actions/block.php:143 actions/deleteuser.php:150 msgid "Do not block this user" msgstr "Tutoho wužiwarja njeblokować" #: actions/block.php:144 actions/deleteapplication.php:158 -#: actions/deletenotice.php:146 actions/deleteuser.php:148 +#: actions/deletenotice.php:146 actions/deleteuser.php:151 #: actions/groupblock.php:179 lib/repeatform.php:132 msgid "Yes" msgstr "Haj" -#: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:355 lib/blockform.php:80 msgid "Block this user" msgstr "Tutoho wužiwarja blokować" @@ -812,39 +829,43 @@ msgstr "Tutoho wužiwarja blokować" msgid "Failed to save block information." msgstr "" -#: actions/blockedfromgroup.php:80 actions/editgroup.php:96 -#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/groupblock.php:86 -#: actions/groupbyid.php:83 actions/groupdesignsettings.php:97 -#: actions/grouplogo.php:99 actions/groupmembers.php:83 -#: actions/grouprss.php:98 actions/groupunblock.php:86 -#: actions/joingroup.php:83 actions/leavegroup.php:83 actions/makeadmin.php:86 -#: actions/showgroup.php:137 lib/command.php:212 lib/command.php:260 +#: actions/blockedfromgroup.php:80 actions/blockedfromgroup.php:87 +#: actions/editgroup.php:100 actions/foafgroup.php:44 actions/foafgroup.php:62 +#: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:100 actions/grouplogo.php:102 +#: actions/groupmembers.php:83 actions/groupmembers.php:90 +#: actions/grouprss.php:98 actions/grouprss.php:105 +#: actions/groupunblock.php:86 actions/joingroup.php:82 +#: actions/joingroup.php:93 actions/leavegroup.php:82 +#: actions/leavegroup.php:93 actions/makeadmin.php:86 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:212 +#: lib/command.php:260 msgid "No such group." msgstr "Skupina njeeksistuje." -#: actions/blockedfromgroup.php:90 +#: actions/blockedfromgroup.php:97 #, php-format msgid "%s blocked profiles" msgstr "" -#: actions/blockedfromgroup.php:93 +#: actions/blockedfromgroup.php:100 #, php-format msgid "%1$s blocked profiles, page %2$d" msgstr "%1$s zablokowa profile, stronu %2$d" -#: actions/blockedfromgroup.php:108 +#: actions/blockedfromgroup.php:115 msgid "A list of the users blocked from joining this group." msgstr "" -#: actions/blockedfromgroup.php:281 +#: actions/blockedfromgroup.php:288 msgid "Unblock user from group" msgstr "" -#: actions/blockedfromgroup.php:313 lib/unblockform.php:69 +#: actions/blockedfromgroup.php:320 lib/unblockform.php:69 msgid "Unblock" msgstr "" -#: actions/blockedfromgroup.php:313 lib/unblockform.php:80 +#: actions/blockedfromgroup.php:320 lib/unblockform.php:80 msgid "Unblock this user" msgstr "" @@ -921,7 +942,7 @@ msgstr "Njejsy wobsedźer tuteje aplikacije." #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1197 +#: lib/action.php:1228 msgid "There was a problem with your session token." msgstr "" @@ -947,12 +968,13 @@ msgstr "Tutu zdźělenku njewušmórnyć" msgid "Delete this application" msgstr "Tutu zdźělenku wušmórnyć" +#. TRANS: Client error message #: 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:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 -#: lib/adminpanelaction.php:72 lib/profileformaction.php:63 +#: lib/adminpanelaction.php:73 lib/profileformaction.php:63 #: lib/settingsaction.php:72 msgid "Not logged in." msgstr "Njepřizjewjeny." @@ -979,7 +1001,7 @@ msgstr "Chceš woprawdźe tutu zdźělenku wušmórnyć?" msgid "Do not delete this notice" msgstr "Tutu zdźělenku njewušmórnyć" -#: actions/deletenotice.php:146 lib/noticelist.php:637 +#: actions/deletenotice.php:146 lib/noticelist.php:655 msgid "Delete this notice" msgstr "Tutu zdźělenku wušmórnyć" @@ -995,18 +1017,18 @@ msgstr "Móžeš jenož lokalnych wužiwarjow wušmórnyć." msgid "Delete user" msgstr "Wužiwarja wušmórnyć" -#: actions/deleteuser.php:135 +#: actions/deleteuser.php:136 msgid "" "Are you sure you want to delete this user? This will clear all data about " "the user from the database, without a backup." msgstr "" -#: actions/deleteuser.php:148 lib/deleteuserform.php:77 +#: actions/deleteuser.php:151 lib/deleteuserform.php:77 msgid "Delete this user" msgstr "Tutoho wužiwarja wušmórnyć" #: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 -#: lib/adminpanelaction.php:316 lib/groupnav.php:119 +#: lib/groupnav.php:119 msgid "Design" msgstr "Design" @@ -1108,6 +1130,17 @@ msgstr "Standardne designy wobnowić" msgid "Reset back to default" msgstr "Na standard wróćo stajić" +#: actions/designadminpanel.php:586 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/tagother.php:154 actions/useradminpanel.php:294 +#: lib/applicationeditform.php:333 lib/applicationeditform.php:334 +#: lib/designsettings.php:256 lib/groupeditform.php:202 +msgid "Save" +msgstr "Składować" + #: actions/designadminpanel.php:587 lib/designsettings.php:257 msgid "Save design" msgstr "Design składować" @@ -1201,29 +1234,29 @@ msgstr "" msgid "You must be logged in to create a group." msgstr "Dyrbiš přizjewjeny być, zo by skupinu wutworił." -#: actions/editgroup.php:103 actions/editgroup.php:168 -#: actions/groupdesignsettings.php:104 actions/grouplogo.php:106 +#: actions/editgroup.php:107 actions/editgroup.php:172 +#: actions/groupdesignsettings.php:107 actions/grouplogo.php:109 msgid "You must be an admin to edit the group." msgstr "Dyrbiš administrator być, zo by skupinu wobdźěłał." -#: actions/editgroup.php:154 +#: actions/editgroup.php:158 msgid "Use this form to edit the group." msgstr "Wuž tutón formular, zo by skupinu wobdźěłał." -#: actions/editgroup.php:201 actions/newgroup.php:145 +#: actions/editgroup.php:205 actions/newgroup.php:145 #, php-format msgid "description is too long (max %d chars)." msgstr "wopisanje je předołho (maks. %d znamješkow)." -#: actions/editgroup.php:253 +#: actions/editgroup.php:258 msgid "Could not update group." msgstr "Skupina njeje so dała aktualizować." -#: actions/editgroup.php:259 classes/User_group.php:433 +#: actions/editgroup.php:264 classes/User_group.php:478 msgid "Could not create aliases." msgstr "Aliasy njejsu so dali wutworić." -#: actions/editgroup.php:269 +#: actions/editgroup.php:280 msgid "Options saved." msgstr "Opcije składowane." @@ -1552,7 +1585,7 @@ msgstr "Wužiwar je hižo za skupinu zablokowany." msgid "User is not a member of group." msgstr "Wužiwar njeje čłon skupiny." -#: actions/groupblock.php:136 actions/groupmembers.php:316 +#: actions/groupblock.php:136 actions/groupmembers.php:323 msgid "Block user from group" msgstr "Wužiwarja za skupinu blokować" @@ -1584,30 +1617,30 @@ msgstr "Žadyn ID." msgid "You must be logged in to edit a group." msgstr "Dyrbiš přizjewjeny być, zo by skupinu wobdźěłał." -#: actions/groupdesignsettings.php:141 +#: actions/groupdesignsettings.php:144 msgid "Group design" msgstr "Skupinski design" -#: actions/groupdesignsettings.php:152 +#: actions/groupdesignsettings.php:155 msgid "" "Customize the way your group looks with a background image and a colour " "palette of your choice." msgstr "" -#: actions/groupdesignsettings.php:263 actions/userdesignsettings.php:186 +#: actions/groupdesignsettings.php:266 actions/userdesignsettings.php:186 #: lib/designsettings.php:391 lib/designsettings.php:413 msgid "Couldn't update your design." msgstr "" -#: actions/groupdesignsettings.php:308 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231 msgid "Design preferences saved." msgstr "Designowe nastajenja składowane." -#: actions/grouplogo.php:139 actions/grouplogo.php:192 +#: actions/grouplogo.php:142 actions/grouplogo.php:195 msgid "Group logo" msgstr "Skupinske logo" -#: actions/grouplogo.php:150 +#: actions/grouplogo.php:153 #, php-format msgid "" "You can upload a logo image for your group. The maximum file size is %s." @@ -1615,57 +1648,57 @@ msgstr "" "Móžeš logowy wobraz za swoju skupinu nahrać. Maksimalna datajowa wulkosć je %" "s." -#: actions/grouplogo.php:178 +#: actions/grouplogo.php:181 msgid "User without matching profile." msgstr "Wužiwar bjez hodźaceho so profila." -#: actions/grouplogo.php:362 +#: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." msgstr "" -#: actions/grouplogo.php:396 +#: actions/grouplogo.php:399 msgid "Logo updated." msgstr "Logo zaktualizowane." -#: actions/grouplogo.php:398 +#: actions/grouplogo.php:401 msgid "Failed updating logo." msgstr "" -#: actions/groupmembers.php:93 lib/groupnav.php:92 +#: actions/groupmembers.php:100 lib/groupnav.php:92 #, php-format msgid "%s group members" msgstr "" -#: actions/groupmembers.php:96 +#: actions/groupmembers.php:103 #, php-format msgid "%1$s group members, page %2$d" msgstr "%1$s skupinskich čłonow, strona %2$d" -#: actions/groupmembers.php:111 +#: actions/groupmembers.php:118 msgid "A list of the users in this group." msgstr "Lisćina wužiwarjow w tutej skupinje." -#: actions/groupmembers.php:175 lib/action.php:448 lib/groupnav.php:107 +#: actions/groupmembers.php:182 lib/groupnav.php:107 msgid "Admin" msgstr "Administrator" -#: actions/groupmembers.php:348 lib/blockform.php:69 +#: actions/groupmembers.php:355 lib/blockform.php:69 msgid "Block" msgstr "Blokować" -#: actions/groupmembers.php:443 +#: actions/groupmembers.php:450 msgid "Make user an admin of the group" msgstr "" -#: actions/groupmembers.php:475 +#: actions/groupmembers.php:482 msgid "Make Admin" msgstr "" -#: actions/groupmembers.php:475 +#: actions/groupmembers.php:482 msgid "Make this user an admin" msgstr "Tutoho wužiwarja k administratorej činić" -#: actions/grouprss.php:133 +#: actions/grouprss.php:140 #, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "" @@ -1903,16 +1936,19 @@ msgstr "Wosobinska powěsć" msgid "Optionally add a personal message to the invitation." msgstr "Wosobinsku powěsć po dobrozdaću přeprošenju přidać." -#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:236 +#. TRANS: Send button for inviting friends +#: actions/invite.php:198 +#, fuzzy +msgctxt "BUTTON" msgid "Send" msgstr "Pósłać" -#: actions/invite.php:226 +#: actions/invite.php:227 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "" -#: actions/invite.php:228 +#: actions/invite.php:229 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -1947,7 +1983,12 @@ msgstr "" msgid "You must be logged in to join a group." msgstr "" -#: actions/joingroup.php:131 +#: actions/joingroup.php:88 actions/leavegroup.php:88 +#, fuzzy +msgid "No nickname or ID." +msgstr "Žane přimjeno." + +#: actions/joingroup.php:141 #, php-format msgid "%1$s joined group %2$s" msgstr "" @@ -1956,11 +1997,11 @@ msgstr "" msgid "You must be logged in to leave a group." msgstr "Dyrbiš přizjewjeny być, zo by skupinu wopušćił." -#: actions/leavegroup.php:90 lib/command.php:265 +#: actions/leavegroup.php:100 lib/command.php:265 msgid "You are not a member of that group." msgstr "Njejsy čłon teje skupiny." -#: actions/leavegroup.php:127 +#: actions/leavegroup.php:137 #, php-format msgid "%1$s left group %2$s" msgstr "" @@ -1977,8 +2018,7 @@ msgstr "Wopačne wužiwarske mjeno abo hesło." msgid "Error setting user. You are probably not authorized." msgstr "Zmylk při nastajenju wužiwarja. Snano njejsy awtorizowany." -#: actions/login.php:188 actions/login.php:241 lib/action.php:466 -#: lib/logingroupnav.php:79 +#: actions/login.php:188 actions/login.php:241 lib/logingroupnav.php:79 msgid "Login" msgstr "Přizjewić" @@ -2218,8 +2258,8 @@ msgstr "" msgid "Only " msgstr "Jenož " -#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 -#: lib/api.php:1068 lib/api.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 +#: lib/apiaction.php:1068 lib/apiaction.php:1177 msgid "Not a supported data format." msgstr "Njeje podpěrany datowy format." @@ -2358,7 +2398,7 @@ msgstr "" msgid "Password saved." msgstr "Hesło składowane." -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:331 +#: actions/pathsadminpanel.php:59 msgid "Paths" msgstr "Šćežki" @@ -2391,7 +2431,6 @@ msgid "Invalid SSL server. The maximum length is 255 characters." msgstr "" #: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58 -#: lib/adminpanelaction.php:311 msgid "Site" msgstr "Sydło" @@ -2559,7 +2598,7 @@ msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "" #: actions/profilesettings.php:111 actions/register.php:448 -#: actions/showgroup.php:247 actions/tagother.php:104 +#: actions/showgroup.php:255 actions/tagother.php:104 #: lib/groupeditform.php:157 lib/userprofile.php:149 msgid "Full name" msgstr "Dospołne mjeno" @@ -2587,7 +2626,7 @@ msgid "Bio" msgstr "Biografija" #: actions/profilesettings.php:132 actions/register.php:471 -#: actions/showgroup.php:256 actions/tagother.php:112 +#: actions/showgroup.php:264 actions/tagother.php:112 #: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:164 msgid "Location" @@ -2667,7 +2706,8 @@ msgstr "" msgid "Couldn't save tags." msgstr "" -#: actions/profilesettings.php:391 lib/adminpanelaction.php:137 +#. TRANS: Message after successful saving of administrative settings. +#: actions/profilesettings.php:391 lib/adminpanelaction.php:141 msgid "Settings saved." msgstr "Nastajenja składowane." @@ -2680,45 +2720,45 @@ msgstr "" msgid "Could not retrieve public stream." msgstr "" -#: actions/public.php:129 +#: actions/public.php:130 #, php-format msgid "Public timeline, page %d" msgstr "" -#: actions/public.php:131 lib/publicgroupnav.php:79 +#: actions/public.php:132 lib/publicgroupnav.php:79 msgid "Public timeline" msgstr "" -#: actions/public.php:159 +#: actions/public.php:160 msgid "Public Stream Feed (RSS 1.0)" msgstr "" -#: actions/public.php:163 +#: actions/public.php:164 msgid "Public Stream Feed (RSS 2.0)" msgstr "" -#: actions/public.php:167 +#: actions/public.php:168 msgid "Public Stream Feed (Atom)" msgstr "" -#: actions/public.php:187 +#: actions/public.php:188 #, php-format msgid "" "This is the public timeline for %%site.name%% but no one has posted anything " "yet." msgstr "" -#: actions/public.php:190 +#: actions/public.php:191 msgid "Be the first to post!" msgstr "" -#: actions/public.php:194 +#: actions/public.php:195 #, php-format msgid "" "Why not [register an account](%%action.register%%) and be the first to post!" msgstr "" -#: actions/public.php:241 +#: actions/public.php:242 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2727,7 +2767,7 @@ msgid "" "friends, family, and colleagues! ([Read more](%%doc.help%%))" msgstr "" -#: actions/public.php:246 +#: actions/public.php:247 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2897,8 +2937,7 @@ msgstr "Wodaj, njepłaćiwy přeprošenski kod." msgid "Registration successful" msgstr "Registrowanje wuspěšne" -#: actions/register.php:114 actions/register.php:503 lib/action.php:463 -#: lib/logingroupnav.php:85 +#: actions/register.php:114 actions/register.php:503 lib/logingroupnav.php:85 msgid "Register" msgstr "Registrować" @@ -3057,7 +3096,7 @@ msgstr "Njemóžeš swójsku zdźělenku wospjetować." msgid "You already repeated that notice." msgstr "Sy tutu zdźělenku hižo wospjetował." -#: actions/repeat.php:114 lib/noticelist.php:656 +#: actions/repeat.php:114 lib/noticelist.php:674 msgid "Repeated" msgstr "Wospjetowany" @@ -3065,47 +3104,47 @@ msgstr "Wospjetowany" msgid "Repeated!" msgstr "Wospjetowany!" -#: actions/replies.php:125 actions/repliesrss.php:68 +#: actions/replies.php:126 actions/repliesrss.php:68 #: lib/personalgroupnav.php:105 #, php-format msgid "Replies to %s" msgstr "" -#: actions/replies.php:127 +#: actions/replies.php:128 #, php-format msgid "Replies to %1$s, page %2$d" msgstr "" -#: actions/replies.php:144 +#: actions/replies.php:145 #, php-format msgid "Replies feed for %s (RSS 1.0)" msgstr "" -#: actions/replies.php:151 +#: actions/replies.php:152 #, php-format msgid "Replies feed for %s (RSS 2.0)" msgstr "" -#: actions/replies.php:158 +#: actions/replies.php:159 #, php-format msgid "Replies feed for %s (Atom)" msgstr "" -#: actions/replies.php:198 +#: actions/replies.php:199 #, php-format msgid "" "This is the timeline showing replies to %1$s but %2$s hasn't received a " "notice to his attention yet." msgstr "" -#: actions/replies.php:203 +#: actions/replies.php:204 #, php-format msgid "" "You can engage other users in a conversation, subscribe to more people or " "[join groups](%%action.groups%%)." msgstr "" -#: actions/replies.php:205 +#: actions/replies.php:206 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) or [post something to his or her " @@ -3130,7 +3169,6 @@ msgid "User is already sandboxed." msgstr "" #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:336 msgid "Sessions" msgstr "Posedźenja" @@ -3156,7 +3194,7 @@ msgid "Turn on debugging output for sessions." msgstr "" #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/useradminpanel.php:293 +#: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "Sydłowe nastajenja składować" @@ -3186,7 +3224,7 @@ msgstr "Organizacija" msgid "Description" msgstr "Wopisanje" -#: actions/showapplication.php:192 actions/showgroup.php:429 +#: actions/showapplication.php:192 actions/showgroup.php:437 #: lib/profileaction.php:174 msgid "Statistics" msgstr "Statistika" @@ -3248,35 +3286,35 @@ msgstr "%1$s a přećeljo, strona %2$d" msgid "Could not retrieve favorite notices." msgstr "" -#: actions/showfavorites.php:170 +#: actions/showfavorites.php:171 #, php-format msgid "Feed for favorites of %s (RSS 1.0)" msgstr "" -#: actions/showfavorites.php:177 +#: actions/showfavorites.php:178 #, php-format msgid "Feed for favorites of %s (RSS 2.0)" msgstr "" -#: actions/showfavorites.php:184 +#: actions/showfavorites.php:185 #, php-format msgid "Feed for favorites of %s (Atom)" msgstr "" -#: actions/showfavorites.php:205 +#: actions/showfavorites.php:206 msgid "" "You haven't chosen any favorite notices yet. Click the fave button on " "notices you like to bookmark them for later or shed a spotlight on them." msgstr "" -#: actions/showfavorites.php:207 +#: actions/showfavorites.php:208 #, 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:211 +#: actions/showfavorites.php:212 #, php-format msgid "" "%s hasn't added any notices to his favorites yet. Why not [register an " @@ -3284,7 +3322,7 @@ msgid "" "would add to their favorites :)" msgstr "" -#: actions/showfavorites.php:242 +#: actions/showfavorites.php:243 msgid "This is a way to share what you like." msgstr "" @@ -3298,67 +3336,67 @@ msgstr "" msgid "%1$s group, page %2$d" msgstr "%1$s skupinskich čłonow, strona %2$d" -#: actions/showgroup.php:218 +#: actions/showgroup.php:226 msgid "Group profile" msgstr "Skupinski profil" -#: actions/showgroup.php:263 actions/tagother.php:118 +#: actions/showgroup.php:271 actions/tagother.php:118 #: actions/userauthorization.php:175 lib/userprofile.php:177 msgid "URL" msgstr "URL" -#: actions/showgroup.php:274 actions/tagother.php:128 +#: actions/showgroup.php:282 actions/tagother.php:128 #: actions/userauthorization.php:187 lib/userprofile.php:194 msgid "Note" msgstr "" -#: actions/showgroup.php:284 lib/groupeditform.php:184 +#: actions/showgroup.php:292 lib/groupeditform.php:184 msgid "Aliases" msgstr "Aliasy" -#: actions/showgroup.php:293 +#: actions/showgroup.php:301 msgid "Group actions" msgstr "Skupinske akcije" -#: actions/showgroup.php:328 +#: actions/showgroup.php:336 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "" -#: actions/showgroup.php:334 +#: actions/showgroup.php:342 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "" -#: actions/showgroup.php:340 +#: actions/showgroup.php:348 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "" -#: actions/showgroup.php:345 +#: actions/showgroup.php:353 #, php-format msgid "FOAF for %s group" msgstr "" -#: actions/showgroup.php:381 actions/showgroup.php:438 lib/groupnav.php:91 +#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 msgid "Members" msgstr "Čłonojo" -#: actions/showgroup.php:386 lib/profileaction.php:117 +#: actions/showgroup.php:394 lib/profileaction.php:117 #: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(Žadyn)" -#: actions/showgroup.php:392 +#: actions/showgroup.php:400 msgid "All members" msgstr "Wšitcy čłonojo" -#: actions/showgroup.php:432 +#: actions/showgroup.php:440 msgid "Created" msgstr "Wutworjeny" -#: actions/showgroup.php:448 +#: actions/showgroup.php:456 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3368,7 +3406,7 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showgroup.php:454 +#: actions/showgroup.php:462 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3377,7 +3415,7 @@ msgid "" "their life and interests. " msgstr "" -#: actions/showgroup.php:482 +#: actions/showgroup.php:490 msgid "Admins" msgstr "Administratorojo" @@ -3825,22 +3863,22 @@ msgstr "Jabber" msgid "SMS" msgstr "SMS" -#: actions/tag.php:68 +#: actions/tag.php:69 #, php-format msgid "Notices tagged with %1$s, page %2$d" msgstr "" -#: actions/tag.php:86 +#: actions/tag.php:87 #, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "" -#: actions/tag.php:92 +#: actions/tag.php:93 #, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "" -#: actions/tag.php:98 +#: actions/tag.php:99 #, php-format msgid "Notice feed for tag %s (Atom)" msgstr "" @@ -3890,7 +3928,7 @@ msgstr "" msgid "No such tag." msgstr "" -#: actions/twitapitrends.php:87 +#: actions/twitapitrends.php:85 msgid "API method under construction." msgstr "" @@ -3920,70 +3958,72 @@ msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" -#: actions/useradminpanel.php:58 lib/adminpanelaction.php:321 -#: lib/personalgroupnav.php:115 +#. TRANS: User admin panel title +#: actions/useradminpanel.php:59 +#, fuzzy +msgctxt "TITLE" msgid "User" msgstr "Wužiwar" -#: actions/useradminpanel.php:69 +#: actions/useradminpanel.php:70 msgid "User settings for this StatusNet site." msgstr "Wužiwarske nastajenja za sydło StatusNet." -#: actions/useradminpanel.php:148 +#: actions/useradminpanel.php:149 msgid "Invalid bio limit. Must be numeric." msgstr "" -#: actions/useradminpanel.php:154 +#: actions/useradminpanel.php:155 msgid "Invalid welcome text. Max length is 255 characters." msgstr "" -#: actions/useradminpanel.php:164 +#: actions/useradminpanel.php:165 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" -#: actions/useradminpanel.php:217 lib/accountsettingsaction.php:108 +#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Profil" -#: actions/useradminpanel.php:221 +#: actions/useradminpanel.php:222 msgid "Bio Limit" msgstr "" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:223 msgid "Maximum length of a profile bio in characters." msgstr "" -#: actions/useradminpanel.php:230 +#: actions/useradminpanel.php:231 msgid "New users" msgstr "Nowi wužiwarjo" -#: actions/useradminpanel.php:234 +#: actions/useradminpanel.php:235 msgid "New user welcome" msgstr "Powitanje noweho wužiwarja" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:236 msgid "Welcome text for new users (Max 255 chars)." msgstr "Powitanski tekst za nowych wužiwarjow (maks. 255 znamješkow)." -#: actions/useradminpanel.php:240 +#: actions/useradminpanel.php:241 msgid "Default subscription" msgstr "Standardny abonement" -#: actions/useradminpanel.php:241 +#: actions/useradminpanel.php:242 msgid "Automatically subscribe new users to this user." msgstr "" -#: actions/useradminpanel.php:250 +#: actions/useradminpanel.php:251 msgid "Invitations" msgstr "Přeprošenja" -#: actions/useradminpanel.php:255 +#: actions/useradminpanel.php:256 msgid "Invitations enabled" msgstr "Přeprošenja zmóžnjene" -#: actions/useradminpanel.php:257 +#: actions/useradminpanel.php:258 msgid "Whether to allow users to invite new users." msgstr "" @@ -4156,7 +4196,7 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:196 lib/action.php:747 +#: actions/version.php:196 lib/action.php:778 msgid "Version" msgstr "Wersija" @@ -4193,6 +4233,11 @@ msgstr "Njeje dźěl skupiny." msgid "Group leave failed." msgstr "Wopušćenje skupiny je so njeporadźiło." +#: classes/Local_group.php:41 +#, fuzzy +msgid "Could not update local group." +msgstr "Skupina njeje so dała aktualizować." + #: classes/Login_token.php:76 #, php-format msgid "Could not create login token for %s" @@ -4210,43 +4255,43 @@ msgstr "" msgid "Could not update message with new URI." msgstr "" -#: classes/Notice.php:157 +#: classes/Notice.php:172 #, php-format msgid "DB error inserting hashtag: %s" msgstr "" -#: classes/Notice.php:222 +#: classes/Notice.php:239 msgid "Problem saving notice. Too long." msgstr "" -#: classes/Notice.php:226 +#: classes/Notice.php:243 msgid "Problem saving notice. Unknown user." msgstr "" -#: classes/Notice.php:231 +#: classes/Notice.php:248 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: classes/Notice.php:237 +#: classes/Notice.php:254 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." msgstr "" -#: classes/Notice.php:243 +#: classes/Notice.php:260 msgid "You are banned from posting notices on this site." msgstr "" -#: classes/Notice.php:309 classes/Notice.php:335 +#: classes/Notice.php:326 classes/Notice.php:352 msgid "Problem saving notice." msgstr "" -#: classes/Notice.php:882 +#: classes/Notice.php:911 msgid "Problem saving group inbox." msgstr "" -#: classes/Notice.php:1407 +#: classes/Notice.php:1442 #, php-format msgid "RT @%1$s %2$s" msgstr "" @@ -4275,19 +4320,29 @@ msgstr "Sebjeabonement njeje so dał zničić." msgid "Couldn't delete subscription." msgstr "Abonoment njeje so dał zničić." -#: classes/User.php:372 +#: classes/User.php:373 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "" -#: classes/User_group.php:423 +#: classes/User_group.php:462 msgid "Could not create group." msgstr "" -#: classes/User_group.php:452 +#: classes/User_group.php:471 +#, fuzzy +msgid "Could not set group URI." +msgstr "Skupina njeje so dała aktualizować." + +#: classes/User_group.php:492 msgid "Could not set group membership." msgstr "" +#: classes/User_group.php:506 +#, fuzzy +msgid "Could not save local group info." +msgstr "Profil njeje so składować dał." + #: lib/accountsettingsaction.php:108 msgid "Change your profile settings" msgstr "" @@ -4329,132 +4384,203 @@ msgstr "Strona bjez titula" msgid "Primary site navigation" msgstr "" +#. TRANS: Tooltip for main menu option "Personal" #: lib/action.php:439 -msgid "Home" -msgstr "" - -#: lib/action.php:439 +msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:441 -msgid "Change your email, avatar, password, profile" -msgstr "" +#: lib/action.php:442 +#, fuzzy +msgctxt "MENU" +msgid "Personal" +msgstr "Wosobinski" +#. TRANS: Tooltip for main menu option "Account" #: lib/action.php:444 +#, fuzzy +msgctxt "TOOLTIP" +msgid "Change your email, avatar, password, profile" +msgstr "Změń swoje hesło." + +#: lib/action.php:447 +#, fuzzy +msgctxt "MENU" +msgid "Account" +msgstr "Konto" + +#. TRANS: Tooltip for main menu option "Services" +#: lib/action.php:450 +#, fuzzy +msgctxt "TOOLTIP" +msgid "Connect to services" +msgstr "Zwiski" + +#: lib/action.php:453 +#, fuzzy +msgctxt "MENU" msgid "Connect" msgstr "Zwjazać" -#: lib/action.php:444 -msgid "Connect to services" -msgstr "" - -#: lib/action.php:448 +#. TRANS: Tooltip for menu option "Admin" +#: lib/action.php:457 +#, fuzzy +msgctxt "TOOLTIP" msgid "Change site configuration" -msgstr "" +msgstr "SMS-wobkrućenje" -#: lib/action.php:452 lib/subgroupnav.php:105 +#: lib/action.php:460 +#, fuzzy +msgctxt "MENU" +msgid "Admin" +msgstr "Administrator" + +#. TRANS: Tooltip for main menu option "Invite" +#: lib/action.php:464 +#, fuzzy, php-format +msgctxt "TOOLTIP" +msgid "Invite friends and colleagues to join you on %s" +msgstr "" +"Wužij tutón formular, zo by swojich přećelow a kolegow přeprosył, zo bychu " +"tutu słužbu wužiwali." + +#: lib/action.php:467 +#, fuzzy +msgctxt "MENU" msgid "Invite" msgstr "Přeprosyć" -#: lib/action.php:453 lib/subgroupnav.php:106 -#, php-format -msgid "Invite friends and colleagues to join you on %s" -msgstr "" - -#: lib/action.php:458 -msgid "Logout" -msgstr "" - -#: lib/action.php:458 +#. TRANS: Tooltip for main menu option "Logout" +#: lib/action.php:473 +#, fuzzy +msgctxt "TOOLTIP" msgid "Logout from the site" -msgstr "" +msgstr "Šat za sydło." -#: lib/action.php:463 +#: lib/action.php:476 +#, fuzzy +msgctxt "MENU" +msgid "Logout" +msgstr "Logo" + +#. TRANS: Tooltip for main menu option "Register" +#: lib/action.php:481 +#, fuzzy +msgctxt "TOOLTIP" msgid "Create an account" msgstr "Konto załožić" -#: lib/action.php:466 +#: lib/action.php:484 +#, fuzzy +msgctxt "MENU" +msgid "Register" +msgstr "Registrować" + +#. TRANS: Tooltip for main menu option "Login" +#: lib/action.php:487 +#, fuzzy +msgctxt "TOOLTIP" msgid "Login to the site" -msgstr "" +msgstr "Při sydle přizjewić" -#: lib/action.php:469 lib/action.php:732 -msgid "Help" -msgstr "Pomoc" +#: lib/action.php:490 +#, fuzzy +msgctxt "MENU" +msgid "Login" +msgstr "Přizjewić" -#: lib/action.php:469 +#. TRANS: Tooltip for main menu option "Help" +#: lib/action.php:493 +#, fuzzy +msgctxt "TOOLTIP" msgid "Help me!" msgstr "Pomhaj!" -#: lib/action.php:472 lib/searchaction.php:127 -msgid "Search" -msgstr "Pytać" +#: lib/action.php:496 +#, fuzzy +msgctxt "MENU" +msgid "Help" +msgstr "Pomoc" -#: lib/action.php:472 +#. TRANS: Tooltip for main menu option "Search" +#: lib/action.php:499 +#, fuzzy +msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Za ludźimi abo tekstom pytać" -#: lib/action.php:493 +#: lib/action.php:502 +#, fuzzy +msgctxt "MENU" +msgid "Search" +msgstr "Pytać" + +#. TRANS: DT element for site notice. String is hidden in default CSS. +#: lib/action.php:524 msgid "Site notice" msgstr "" -#: lib/action.php:559 +#: lib/action.php:590 msgid "Local views" msgstr "" -#: lib/action.php:625 +#: lib/action.php:656 msgid "Page notice" msgstr "" -#: lib/action.php:727 +#: lib/action.php:758 msgid "Secondary site navigation" msgstr "" -#: lib/action.php:734 +#: lib/action.php:763 +msgid "Help" +msgstr "Pomoc" + +#: lib/action.php:765 msgid "About" msgstr "Wo" -#: lib/action.php:736 +#: lib/action.php:767 msgid "FAQ" msgstr "Huste prašenja" -#: lib/action.php:740 +#: lib/action.php:771 msgid "TOS" msgstr "" -#: lib/action.php:743 +#: lib/action.php:774 msgid "Privacy" msgstr "Priwatnosć" -#: lib/action.php:745 +#: lib/action.php:776 msgid "Source" msgstr "Žórło" -#: lib/action.php:749 +#: lib/action.php:780 msgid "Contact" msgstr "Kontakt" -#: lib/action.php:751 +#: lib/action.php:782 msgid "Badge" msgstr "" -#: lib/action.php:779 +#: lib/action.php:810 msgid "StatusNet software license" msgstr "" -#: lib/action.php:782 +#: lib/action.php:813 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." "broughtby%%](%%site.broughtbyurl%%). " msgstr "" -#: lib/action.php:784 +#: lib/action.php:815 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "" -#: lib/action.php:786 +#: lib/action.php:817 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4462,108 +4588,161 @@ msgid "" "org/licensing/licenses/agpl-3.0.html)." msgstr "" -#: lib/action.php:801 +#: lib/action.php:832 msgid "Site content license" msgstr "" -#: lib/action.php:806 +#: lib/action.php:837 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:811 +#: lib/action.php:842 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:814 +#: lib/action.php:845 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" -#: lib/action.php:827 +#: lib/action.php:858 msgid "All " msgstr "" -#: lib/action.php:833 +#: lib/action.php:864 msgid "license." msgstr "" -#: lib/action.php:1132 +#: lib/action.php:1163 msgid "Pagination" msgstr "" -#: lib/action.php:1141 +#: lib/action.php:1172 msgid "After" msgstr "" -#: lib/action.php:1149 +#: lib/action.php:1180 msgid "Before" msgstr "" -#: lib/activity.php:382 +#: lib/activity.php:449 msgid "Can't handle remote content yet." msgstr "" -#: lib/activity.php:410 +#: lib/activity.php:477 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activity.php:414 +#: lib/activity.php:481 msgid "Can't handle embedded Base64 content yet." msgstr "" -#: lib/adminpanelaction.php:96 +#. TRANS: Client error message +#: lib/adminpanelaction.php:98 msgid "You cannot make changes to this site." msgstr "" -#: lib/adminpanelaction.php:107 +#. TRANS: Client error message +#: lib/adminpanelaction.php:110 msgid "Changes to that panel are not allowed." msgstr "Změny na tutym woknje njejsu dowolene." -#: lib/adminpanelaction.php:206 +#. TRANS: Client error message +#: lib/adminpanelaction.php:211 msgid "showForm() not implemented." msgstr "" -#: lib/adminpanelaction.php:235 +#. TRANS: Client error message +#: lib/adminpanelaction.php:241 msgid "saveSettings() not implemented." msgstr "" -#: lib/adminpanelaction.php:258 +#. TRANS: Client error message +#: lib/adminpanelaction.php:265 msgid "Unable to delete design setting." msgstr "" -#: lib/adminpanelaction.php:312 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:330 msgid "Basic site configuration" msgstr "" -#: lib/adminpanelaction.php:317 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:332 +#, fuzzy +msgctxt "MENU" +msgid "Site" +msgstr "Sydło" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:338 msgid "Design configuration" msgstr "" -#: lib/adminpanelaction.php:322 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:340 +#, fuzzy +msgctxt "MENU" +msgid "Design" +msgstr "Design" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:346 #, fuzzy msgid "User configuration" msgstr "SMS-wobkrućenje" -#: lib/adminpanelaction.php:327 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:348 +#, fuzzy +msgctxt "MENU" +msgid "User" +msgstr "Wužiwar" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:354 #, fuzzy msgid "Access configuration" msgstr "SMS-wobkrućenje" -#: lib/adminpanelaction.php:332 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:356 +#, fuzzy +msgctxt "MENU" +msgid "Access" +msgstr "Přistup" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:362 msgid "Paths configuration" msgstr "" -#: lib/adminpanelaction.php:337 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:364 +#, fuzzy +msgctxt "MENU" +msgid "Paths" +msgstr "Šćežki" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:370 #, fuzzy msgid "Sessions configuration" msgstr "SMS-wobkrućenje" -#: lib/apiauth.php:95 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:372 +#, fuzzy +msgctxt "MENU" +msgid "Sessions" +msgstr "Posedźenja" + +#: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." msgstr "" -#: lib/apiauth.php:273 +#: lib/apiauth.php:272 #, php-format msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" msgstr "" @@ -4653,11 +4832,11 @@ msgstr "" msgid "Tags for this attachment" msgstr "" -#: lib/authenticationplugin.php:218 lib/authenticationplugin.php:223 +#: lib/authenticationplugin.php:220 lib/authenticationplugin.php:225 msgid "Password changing failed" msgstr "Změnjenje hesła je so njeporadźiło" -#: lib/authenticationplugin.php:233 +#: lib/authenticationplugin.php:235 msgid "Password changing is not allowed" msgstr "Změnjenje hesła njeje dowolene" @@ -4936,19 +5115,19 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:136 +#: lib/common.php:148 msgid "No configuration file found. " msgstr "Žana konfiguraciska dataja namakana. " -#: lib/common.php:137 +#: lib/common.php:149 msgid "I looked for configuration files in the following places: " msgstr "" -#: lib/common.php:139 +#: lib/common.php:151 msgid "You may wish to run the installer to fix this." msgstr "" -#: lib/common.php:140 +#: lib/common.php:152 msgid "Go to the installer." msgstr "" @@ -5134,23 +5313,23 @@ msgstr "" msgid "Not an image or corrupt file." msgstr "" -#: lib/imagefile.php:105 +#: lib/imagefile.php:109 msgid "Unsupported image file format." msgstr "" -#: lib/imagefile.php:118 +#: lib/imagefile.php:122 msgid "Lost our file." msgstr "Naša dataja je so zhubiła." -#: lib/imagefile.php:150 lib/imagefile.php:197 +#: lib/imagefile.php:166 lib/imagefile.php:231 msgid "Unknown file type" msgstr "Njeznaty datajowy typ" -#: lib/imagefile.php:217 +#: lib/imagefile.php:251 msgid "MB" msgstr "MB" -#: lib/imagefile.php:219 +#: lib/imagefile.php:253 msgid "kB" msgstr "KB" @@ -5443,6 +5622,12 @@ msgstr "Komu" msgid "Available characters" msgstr "K dispoziciji stejace znamješka" +#: lib/messageform.php:178 lib/noticeform.php:236 +#, fuzzy +msgctxt "Send button for sending notice" +msgid "Send" +msgstr "Pósłać" + #: lib/noticeform.php:160 msgid "Send a notice" msgstr "Zdźělenku pósłać" @@ -5499,23 +5684,23 @@ msgstr "Z" msgid "at" msgstr "" -#: lib/noticelist.php:558 +#: lib/noticelist.php:566 msgid "in context" msgstr "" -#: lib/noticelist.php:583 +#: lib/noticelist.php:601 msgid "Repeated by" msgstr "Wospjetowany wot" -#: lib/noticelist.php:610 +#: lib/noticelist.php:628 msgid "Reply to this notice" msgstr "Na tutu zdźělenku wotmołwić" -#: lib/noticelist.php:611 +#: lib/noticelist.php:629 msgid "Reply" msgstr "Wotmołwić" -#: lib/noticelist.php:655 +#: lib/noticelist.php:673 msgid "Notice repeated" msgstr "Zdźělenka wospjetowana" @@ -5563,6 +5748,10 @@ msgstr "Wotmołwy" msgid "Favorites" msgstr "Fawority" +#: lib/personalgroupnav.php:115 +msgid "User" +msgstr "Wužiwar" + #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "" @@ -5652,7 +5841,7 @@ msgstr "Tutu zdźělenku wospjetować?" msgid "Repeat this notice" msgstr "Tutu zdźělenku wospjetować" -#: lib/router.php:665 +#: lib/router.php:668 msgid "No single user defined for single-user mode." msgstr "" @@ -5672,6 +5861,10 @@ msgstr "Pytanske sydło" msgid "Keyword(s)" msgstr "Klučowe hesła" +#: lib/searchaction.php:127 +msgid "Search" +msgstr "Pytać" + #: lib/searchaction.php:162 msgid "Search help" msgstr "Pytanska pomoc" @@ -5723,6 +5916,15 @@ msgstr "" msgid "Groups %s is a member of" msgstr "" +#: lib/subgroupnav.php:105 +msgid "Invite" +msgstr "Přeprosyć" + +#: lib/subgroupnav.php:106 +#, php-format +msgid "Invite friends and colleagues to join you on %s" +msgstr "" + #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -5793,47 +5995,47 @@ msgstr "Powěsć" msgid "Moderate" msgstr "" -#: lib/util.php:952 +#: lib/util.php:1013 msgid "a few seconds ago" msgstr "před něšto sekundami" -#: lib/util.php:954 +#: lib/util.php:1015 msgid "about a minute ago" msgstr "před něhdźe jednej mjeńšinu" -#: lib/util.php:956 +#: lib/util.php:1017 #, php-format msgid "about %d minutes ago" msgstr "před %d mjeńšinami" -#: lib/util.php:958 +#: lib/util.php:1019 msgid "about an hour ago" msgstr "před něhdźe jednej hodźinu" -#: lib/util.php:960 +#: lib/util.php:1021 #, php-format msgid "about %d hours ago" msgstr "před něhdźe %d hodźinami" -#: lib/util.php:962 +#: lib/util.php:1023 msgid "about a day ago" msgstr "před něhdźe jednym dnjom" -#: lib/util.php:964 +#: lib/util.php:1025 #, php-format msgid "about %d days ago" msgstr "před něhdźe %d dnjemi" -#: lib/util.php:966 +#: lib/util.php:1027 msgid "about a month ago" msgstr "před něhdźe jednym měsacom" -#: lib/util.php:968 +#: lib/util.php:1029 #, php-format msgid "about %d months ago" msgstr "před něhdźe %d měsacami" -#: lib/util.php:970 +#: lib/util.php:1031 msgid "about a year ago" msgstr "před něhdźe jednym lětom" diff --git a/locale/ia/LC_MESSAGES/statusnet.po b/locale/ia/LC_MESSAGES/statusnet.po index fa42bd3fea..cc6af7f0f7 100644 --- a/locale/ia/LC_MESSAGES/statusnet.po +++ b/locale/ia/LC_MESSAGES/statusnet.po @@ -8,75 +8,82 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-02-24 23:49+0000\n" -"PO-Revision-Date: 2010-02-24 23:51:01+0000\n" +"POT-Creation-Date: 2010-03-02 21:02+0000\n" +"PO-Revision-Date: 2010-03-02 21:03:00+0000\n" "Language-Team: Interlingua\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r62925); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: actions/accessadminpanel.php:54 lib/adminpanelaction.php:326 +#. TRANS: Page title +#: actions/accessadminpanel.php:55 msgid "Access" msgstr "Accesso" -#: actions/accessadminpanel.php:65 +#. TRANS: Page notice +#: actions/accessadminpanel.php:67 msgid "Site access settings" msgstr "Configurationes de accesso al sito" -#: actions/accessadminpanel.php:158 +#. TRANS: Form legend for registration form. +#: actions/accessadminpanel.php:161 msgid "Registration" msgstr "Registration" -#: actions/accessadminpanel.php:161 -msgid "Private" -msgstr "Private" - -#: actions/accessadminpanel.php:163 +#. TRANS: Checkbox instructions for admin setting "Private" +#: actions/accessadminpanel.php:165 msgid "Prohibit anonymous users (not logged in) from viewing site?" msgstr "Prohibir al usatores anonyme (sin session aperte) de vider le sito?" +#. TRANS: Checkbox label for prohibiting anonymous users from viewing site. #: actions/accessadminpanel.php:167 -msgid "Invite only" -msgstr "Solmente per invitation" +#, fuzzy +msgctxt "LABEL" +msgid "Private" +msgstr "Private" -#: actions/accessadminpanel.php:169 +#. TRANS: Checkbox instructions for admin setting "Invite only" +#: actions/accessadminpanel.php:174 msgid "Make registration invitation only." msgstr "Permitter le registration solmente al invitatos." -#: actions/accessadminpanel.php:173 -msgid "Closed" -msgstr "Claudite" +#. TRANS: Checkbox label for configuring site as invite only. +#: actions/accessadminpanel.php:176 +msgid "Invite only" +msgstr "Solmente per invitation" -#: actions/accessadminpanel.php:175 +#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations) +#: actions/accessadminpanel.php:183 msgid "Disable new registrations." msgstr "Disactivar le creation de nove contos." -#: actions/accessadminpanel.php:189 actions/designadminpanel.php:586 -#: actions/emailsettings.php:195 actions/imsettings.php:163 -#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 -#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 -#: actions/siteadminpanel.php:336 actions/smssettings.php:181 -#: actions/subscriptions.php:208 actions/tagother.php:154 -#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 -#: lib/applicationeditform.php:334 lib/designsettings.php:256 -#: lib/groupeditform.php:202 -msgid "Save" -msgstr "Salveguardar" +#. TRANS: Checkbox label for disabling new user registrations. +#: actions/accessadminpanel.php:185 +msgid "Closed" +msgstr "Claudite" -#: actions/accessadminpanel.php:189 +#. TRANS: Title / tooltip for button to save access settings in site admin panel +#: actions/accessadminpanel.php:202 msgid "Save access settings" msgstr "Salveguardar configurationes de accesso" -#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 -#: actions/showfavorites.php:137 actions/tag.php:51 +#: actions/accessadminpanel.php:203 +#, fuzzy +msgctxt "BUTTON" +msgid "Save" +msgstr "Salveguardar" + +#. TRANS: Server error when page not found (404) +#: actions/all.php:64 actions/public.php:98 actions/replies.php:93 +#: actions/showfavorites.php:138 actions/tag.php:52 msgid "No such page" msgstr "Pagina non existe" -#: actions/all.php:74 actions/allrss.php:68 +#: actions/all.php:75 actions/allrss.php:68 #: actions/apiaccountupdatedeliverydevice.php:113 #: actions/apiaccountupdateprofile.php:105 #: actions/apiaccountupdateprofilebackgroundimage.php:116 @@ -90,45 +97,53 @@ msgstr "Pagina non existe" #: actions/apitimelinehome.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/otp.php:76 -#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154 -#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 -#: actions/showfavorites.php:105 actions/userbyid.php:74 -#: actions/usergroups.php:91 actions/userrss.php:38 actions/xrds.php:71 -#: lib/command.php:163 lib/command.php:302 lib/command.php:355 -#: lib/command.php:401 lib/command.php:462 lib/command.php:518 -#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 +#: actions/hcard.php:67 actions/microsummary.php:62 actions/newmessage.php:116 +#: actions/otp.php:76 actions/remotesubscribe.php:145 +#: actions/remotesubscribe.php:154 actions/replies.php:73 +#: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/xrds.php:71 lib/command.php:163 lib/command.php:302 +#: lib/command.php:355 lib/command.php:401 lib/command.php:462 +#: lib/command.php:518 lib/galleryaction.php:59 lib/mailbox.php:82 +#: lib/profileaction.php:77 msgid "No such user." msgstr "Usator non existe." -#: actions/all.php:84 +#. TRANS: Page title. %1$s is user nickname, %2$d is page number +#: actions/all.php:86 #, php-format msgid "%1$s and friends, page %2$d" msgstr "%1$s e amicos, pagina %2$d" -#: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 +#. TRANS: Page title. %1$s is user nickname +#. TRANS: H1 text. %1$s is user nickname +#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" msgstr "%s e amicos" -#: actions/all.php:99 +#. TRANS: %1$s is user nickname +#: actions/all.php:103 #, php-format msgid "Feed for friends of %s (RSS 1.0)" msgstr "Syndication pro le amicos de %s (RSS 1.0)" -#: actions/all.php:107 +#. TRANS: %1$s is user nickname +#: actions/all.php:112 #, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "Syndication pro le amicos de %s (RSS 2.0)" -#: actions/all.php:115 +#. TRANS: %1$s is user nickname +#: actions/all.php:121 #, php-format msgid "Feed for friends of %s (Atom)" msgstr "Syndication pro le amicos de %s (Atom)" -#: actions/all.php:127 +#. TRANS: %1$s is user nickname +#: actions/all.php:134 #, php-format msgid "" "This is the timeline for %s and friends but no one has posted anything yet." @@ -136,7 +151,7 @@ msgstr "" "Isto es le chronologia pro %s e su amicos, ma necuno ha ancora publicate " "alique." -#: actions/all.php:132 +#: actions/all.php:139 #, php-format msgid "" "Try subscribing to more people, [join a group](%%action.groups%%) or post " @@ -145,7 +160,8 @@ msgstr "" "Proba subscriber te a altere personas, [face te membro de un gruppo](%%" "action.groups%%) o publica alique tu mesme." -#: actions/all.php:134 +#. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@" +#: actions/all.php:142 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) from his profile or [post something to " @@ -154,7 +170,7 @@ msgstr "" "Tu pote tentar [dar un pulsata a %1$s](../%2$s) in su profilo o [publicar un " "message a su attention](%%%%action.newnotice%%%%?status_textarea=%3$s)." -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211 +#: actions/all.php:145 actions/replies.php:210 actions/showstream.php:211 #, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " @@ -163,7 +179,8 @@ msgstr "" "Proque non [registrar un conto](%%%%action.register%%%%) e postea dar un " "pulsata a %s o publicar un message a su attention." -#: actions/all.php:165 +#. TRANS: H1 text +#: actions/all.php:174 msgid "You and friends" msgstr "Tu e amicos" @@ -181,20 +198,20 @@ msgstr "Actualisationes de %1$s e su amicos in %2$s!" #: actions/apiaccountverifycredentials.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:128 actions/apigroupcreate.php:136 +#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: actions/apigroupleave.php:141 actions/apigrouplist.php:132 #: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 #: actions/apigroupshow.php:115 actions/apihelptest.php:88 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 -#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184 +#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 #: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:207 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 msgid "API method not found." msgstr "Methodo API non trovate." @@ -228,8 +245,9 @@ msgstr "Non poteva actualisar le usator." #: actions/apiaccountupdateprofilebackgroundimage.php:194 #: actions/apiaccountupdateprofilecolors.php:185 #: 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 +#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 +#: actions/replies.php:80 actions/usergroups.php:98 lib/galleryaction.php:66 +#: lib/profileaction.php:84 msgid "User has no profile." msgstr "Le usator non ha un profilo." @@ -255,7 +273,7 @@ msgstr "" #: actions/apiaccountupdateprofilebackgroundimage.php:146 #: actions/apiaccountupdateprofilecolors.php:164 #: actions/apiaccountupdateprofilecolors.php:174 -#: actions/groupdesignsettings.php:287 actions/groupdesignsettings.php:297 +#: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300 #: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 #: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 msgid "Unable to save your design settings." @@ -365,68 +383,68 @@ msgstr "Non poteva determinar le usator de origine." msgid "Could not find target user." msgstr "Non poteva trovar le usator de destination." -#: actions/apigroupcreate.php:164 actions/editgroup.php:182 +#: actions/apigroupcreate.php:166 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:215 #: actions/register.php:205 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "Le pseudonymo pote solmente haber minusculas e numeros, sin spatios." -#: actions/apigroupcreate.php:173 actions/editgroup.php:186 +#: actions/apigroupcreate.php:175 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:238 #: actions/register.php:208 msgid "Nickname already in use. Try another one." msgstr "Pseudonymo ja in uso. Proba un altere." -#: actions/apigroupcreate.php:180 actions/editgroup.php:189 +#: actions/apigroupcreate.php:182 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:218 #: actions/register.php:210 msgid "Not a valid nickname." msgstr "Non un pseudonymo valide." -#: actions/apigroupcreate.php:196 actions/editapplication.php:215 -#: actions/editgroup.php:195 actions/newapplication.php:203 +#: actions/apigroupcreate.php:198 actions/editapplication.php:215 +#: actions/editgroup.php:199 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:217 msgid "Homepage is not a valid URL." msgstr "Le pagina personal non es un URL valide." -#: actions/apigroupcreate.php:205 actions/editgroup.php:198 +#: actions/apigroupcreate.php:207 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:225 #: actions/register.php:220 msgid "Full name is too long (max 255 chars)." msgstr "Le nomine complete es troppo longe (max. 255 characteres)." -#: actions/apigroupcreate.php:213 actions/editapplication.php:190 +#: actions/apigroupcreate.php:215 actions/editapplication.php:190 #: actions/newapplication.php:172 #, php-format msgid "Description is too long (max %d chars)." msgstr "Description es troppo longe (max %d charachteres)." -#: actions/apigroupcreate.php:224 actions/editgroup.php:204 +#: actions/apigroupcreate.php:226 actions/editgroup.php:208 #: actions/newgroup.php:148 actions/profilesettings.php:232 #: actions/register.php:227 msgid "Location is too long (max 255 chars)." msgstr "Loco es troppo longe (max. 255 characteres)." -#: actions/apigroupcreate.php:243 actions/editgroup.php:215 +#: actions/apigroupcreate.php:245 actions/editgroup.php:219 #: actions/newgroup.php:159 #, php-format msgid "Too many aliases! Maximum %d." msgstr "Troppo de aliases! Maximo: %d." -#: actions/apigroupcreate.php:264 actions/editgroup.php:224 +#: actions/apigroupcreate.php:266 actions/editgroup.php:228 #: actions/newgroup.php:168 #, php-format msgid "Invalid alias: \"%s\"" msgstr "Alias invalide: \"%s\"" -#: actions/apigroupcreate.php:273 actions/editgroup.php:228 +#: actions/apigroupcreate.php:275 actions/editgroup.php:232 #: actions/newgroup.php:172 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "Le alias \"%s\" es ja in uso. Proba un altere." -#: actions/apigroupcreate.php:286 actions/editgroup.php:234 +#: actions/apigroupcreate.php:288 actions/editgroup.php:238 #: actions/newgroup.php:178 msgid "Alias can't be the same as nickname." msgstr "Le alias non pote esser identic al pseudonymo." @@ -437,15 +455,15 @@ msgstr "Le alias non pote esser identic al pseudonymo." msgid "Group not found!" msgstr "Gruppo non trovate!" -#: actions/apigroupjoin.php:110 actions/joingroup.php:90 +#: actions/apigroupjoin.php:110 actions/joingroup.php:100 msgid "You are already a member of that group." msgstr "Tu es ja membro de iste gruppo." -#: actions/apigroupjoin.php:119 actions/joingroup.php:95 lib/command.php:221 +#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:221 msgid "You have been blocked from that group by the admin." msgstr "Le administrator te ha blocate de iste gruppo." -#: actions/apigroupjoin.php:138 actions/joingroup.php:124 +#: actions/apigroupjoin.php:138 actions/joingroup.php:134 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Non poteva inscriber le usator %1$s in le gruppo %2$s." @@ -454,7 +472,7 @@ msgstr "Non poteva inscriber le usator %1$s in le gruppo %2$s." msgid "You are not a member of this group." msgstr "Tu non es membro de iste gruppo." -#: actions/apigroupleave.php:124 actions/leavegroup.php:119 +#: actions/apigroupleave.php:124 actions/leavegroup.php:129 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "Non poteva remover le usator %1$s del gruppo %2$s." @@ -485,7 +503,7 @@ msgstr "Indicio invalide." #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 #: actions/deletenotice.php:157 actions/disfavor.php:74 #: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54 -#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupblock.php:66 actions/grouplogo.php:312 #: actions/groupunblock.php:66 actions/imsettings.php:206 #: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 @@ -531,7 +549,7 @@ msgstr "Le indicio de requesta %s ha essite refusate e revocate." #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:103 actions/editapplication.php:139 -#: actions/emailsettings.php:256 actions/grouplogo.php:319 +#: actions/emailsettings.php:256 actions/grouplogo.php:322 #: actions/imsettings.php:220 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 #: actions/smssettings.php:248 lib/designsettings.php:304 @@ -557,13 +575,13 @@ msgstr "" "%3$s le datos de tu conto de %4$s. Tu debe solmente dar " "accesso a tu conto de %4$s a tertie personas in le quales tu ha confidentia." -#: actions/apioauthauthorize.php:310 lib/action.php:441 +#: actions/apioauthauthorize.php:310 msgid "Account" msgstr "Conto" #: actions/apioauthauthorize.php:313 actions/login.php:230 #: actions/profilesettings.php:106 actions/register.php:424 -#: actions/showgroup.php:236 actions/tagother.php:94 +#: actions/showgroup.php:244 actions/tagother.php:94 #: actions/userauthorization.php:145 lib/groupeditform.php:152 #: lib/userprofile.php:131 msgid "Nickname" @@ -648,12 +666,12 @@ msgid "%1$s updates favorited by %2$s / %2$s." msgstr "%1$s actualisationes favoritisate per %2$s / %2$s." #: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:131 actions/userrss.php:90 +#: actions/grouprss.php:138 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "Chronologia de %s" -#: actions/apitimelinegroup.php:114 actions/apitimelineuser.php:126 +#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 #: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" @@ -690,7 +708,7 @@ msgstr "Repetite a %s" msgid "Repeats of %s" msgstr "Repetitiones de %s" -#: actions/apitimelinetag.php:102 actions/tag.php:66 +#: actions/apitimelinetag.php:102 actions/tag.php:67 #, php-format msgid "Notices tagged with %s" msgstr "Notas con etiquetta %s" @@ -711,8 +729,7 @@ msgstr "Annexo non existe." #: actions/avatarbynickname.php:59 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/leavegroup.php:76 -#: actions/showgroup.php:121 +#: actions/grouprss.php:91 actions/showgroup.php:121 msgid "No nickname." msgstr "Nulle pseudonymo." @@ -724,7 +741,7 @@ msgstr "Nulle dimension." msgid "Invalid size." msgstr "Dimension invalide." -#: actions/avatarsettings.php:67 actions/showgroup.php:221 +#: actions/avatarsettings.php:67 actions/showgroup.php:229 #: lib/accountsettingsaction.php:112 msgid "Avatar" msgstr "Avatar" @@ -742,30 +759,30 @@ msgid "User without matching profile" msgstr "Usator sin profilo correspondente" #: actions/avatarsettings.php:119 actions/avatarsettings.php:197 -#: actions/grouplogo.php:251 +#: actions/grouplogo.php:254 msgid "Avatar settings" msgstr "Configuration del avatar" #: actions/avatarsettings.php:127 actions/avatarsettings.php:205 -#: actions/grouplogo.php:199 actions/grouplogo.php:259 +#: actions/grouplogo.php:202 actions/grouplogo.php:262 msgid "Original" msgstr "Original" #: actions/avatarsettings.php:142 actions/avatarsettings.php:217 -#: actions/grouplogo.php:210 actions/grouplogo.php:271 +#: actions/grouplogo.php:213 actions/grouplogo.php:274 msgid "Preview" msgstr "Previsualisation" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:637 +#: lib/deleteuserform.php:66 lib/noticelist.php:655 msgid "Delete" msgstr "Deler" -#: actions/avatarsettings.php:166 actions/grouplogo.php:233 +#: actions/avatarsettings.php:166 actions/grouplogo.php:236 msgid "Upload" msgstr "Incargar" -#: actions/avatarsettings.php:231 actions/grouplogo.php:286 +#: actions/avatarsettings.php:231 actions/grouplogo.php:289 msgid "Crop" msgstr "Taliar" @@ -773,7 +790,7 @@ msgstr "Taliar" msgid "Pick a square area of the image to be your avatar" msgstr "Selige un area quadrate del imagine pro facer lo tu avatar" -#: actions/avatarsettings.php:343 actions/grouplogo.php:377 +#: actions/avatarsettings.php:343 actions/grouplogo.php:380 msgid "Lost our file data." msgstr "Datos del file perdite." @@ -808,22 +825,22 @@ msgstr "" "recipera notification de su @-responsas." #: actions/block.php:143 actions/deleteapplication.php:153 -#: actions/deletenotice.php:145 actions/deleteuser.php:147 +#: actions/deletenotice.php:145 actions/deleteuser.php:150 #: actions/groupblock.php:178 msgid "No" msgstr "No" -#: actions/block.php:143 actions/deleteuser.php:147 +#: actions/block.php:143 actions/deleteuser.php:150 msgid "Do not block this user" msgstr "Non blocar iste usator" #: actions/block.php:144 actions/deleteapplication.php:158 -#: actions/deletenotice.php:146 actions/deleteuser.php:148 +#: actions/deletenotice.php:146 actions/deleteuser.php:151 #: actions/groupblock.php:179 lib/repeatform.php:132 msgid "Yes" msgstr "Si" -#: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:355 lib/blockform.php:80 msgid "Block this user" msgstr "Blocar iste usator" @@ -831,39 +848,43 @@ msgstr "Blocar iste usator" msgid "Failed to save block information." msgstr "Falleva de salveguardar le information del blocada." -#: actions/blockedfromgroup.php:80 actions/editgroup.php:96 -#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/groupblock.php:86 -#: actions/groupbyid.php:83 actions/groupdesignsettings.php:97 -#: actions/grouplogo.php:99 actions/groupmembers.php:83 -#: actions/grouprss.php:98 actions/groupunblock.php:86 -#: actions/joingroup.php:83 actions/leavegroup.php:83 actions/makeadmin.php:86 -#: actions/showgroup.php:137 lib/command.php:212 lib/command.php:260 +#: actions/blockedfromgroup.php:80 actions/blockedfromgroup.php:87 +#: actions/editgroup.php:100 actions/foafgroup.php:44 actions/foafgroup.php:62 +#: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:100 actions/grouplogo.php:102 +#: actions/groupmembers.php:83 actions/groupmembers.php:90 +#: actions/grouprss.php:98 actions/grouprss.php:105 +#: actions/groupunblock.php:86 actions/joingroup.php:82 +#: actions/joingroup.php:93 actions/leavegroup.php:82 +#: actions/leavegroup.php:93 actions/makeadmin.php:86 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:212 +#: lib/command.php:260 msgid "No such group." msgstr "Gruppo non existe." -#: actions/blockedfromgroup.php:90 +#: actions/blockedfromgroup.php:97 #, php-format msgid "%s blocked profiles" msgstr "%s profilos blocate" -#: actions/blockedfromgroup.php:93 +#: actions/blockedfromgroup.php:100 #, php-format msgid "%1$s blocked profiles, page %2$d" msgstr "%1$s profilos blocate, pagina %2$d" -#: actions/blockedfromgroup.php:108 +#: actions/blockedfromgroup.php:115 msgid "A list of the users blocked from joining this group." msgstr "Un lista del usatores excludite del membrato de iste gruppo." -#: actions/blockedfromgroup.php:281 +#: actions/blockedfromgroup.php:288 msgid "Unblock user from group" msgstr "Disblocar le usator del gruppo" -#: actions/blockedfromgroup.php:313 lib/unblockform.php:69 +#: actions/blockedfromgroup.php:320 lib/unblockform.php:69 msgid "Unblock" msgstr "Disblocar" -#: actions/blockedfromgroup.php:313 lib/unblockform.php:80 +#: actions/blockedfromgroup.php:320 lib/unblockform.php:80 msgid "Unblock this user" msgstr "Disblocar iste usator" @@ -938,7 +959,7 @@ msgstr "Tu non es le proprietario de iste application." #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1197 +#: lib/action.php:1228 msgid "There was a problem with your session token." msgstr "Il habeva un problema con tu indicio de session." @@ -964,12 +985,13 @@ msgstr "Non deler iste application" msgid "Delete this application" msgstr "Deler iste application" +#. TRANS: Client error message #: 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:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 -#: lib/adminpanelaction.php:72 lib/profileformaction.php:63 +#: lib/adminpanelaction.php:73 lib/profileformaction.php:63 #: lib/settingsaction.php:72 msgid "Not logged in." msgstr "Non identificate." @@ -998,7 +1020,7 @@ msgstr "Es tu secur de voler deler iste nota?" msgid "Do not delete this notice" msgstr "Non deler iste nota" -#: actions/deletenotice.php:146 lib/noticelist.php:637 +#: actions/deletenotice.php:146 lib/noticelist.php:655 msgid "Delete this notice" msgstr "Deler iste nota" @@ -1014,7 +1036,7 @@ msgstr "Tu pote solmente deler usatores local." msgid "Delete user" msgstr "Deler usator" -#: actions/deleteuser.php:135 +#: actions/deleteuser.php:136 msgid "" "Are you sure you want to delete this user? This will clear all data about " "the user from the database, without a backup." @@ -1022,12 +1044,12 @@ msgstr "" "Es tu secur de voler deler iste usator? Isto radera tote le datos super le " "usator del base de datos, sin copia de reserva." -#: actions/deleteuser.php:148 lib/deleteuserform.php:77 +#: actions/deleteuser.php:151 lib/deleteuserform.php:77 msgid "Delete this user" msgstr "Deler iste usator" #: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 -#: lib/adminpanelaction.php:316 lib/groupnav.php:119 +#: lib/groupnav.php:119 msgid "Design" msgstr "Apparentia" @@ -1130,6 +1152,17 @@ msgstr "Restaurar apparentias predefinite" msgid "Reset back to default" msgstr "Revenir al predefinitiones" +#: actions/designadminpanel.php:586 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/tagother.php:154 actions/useradminpanel.php:294 +#: lib/applicationeditform.php:333 lib/applicationeditform.php:334 +#: lib/designsettings.php:256 lib/groupeditform.php:202 +msgid "Save" +msgstr "Salveguardar" + #: actions/designadminpanel.php:587 lib/designsettings.php:257 msgid "Save design" msgstr "Salveguardar apparentia" @@ -1221,29 +1254,29 @@ msgstr "Modificar gruppo %s" msgid "You must be logged in to create a group." msgstr "Tu debe aperir un session pro crear un gruppo." -#: actions/editgroup.php:103 actions/editgroup.php:168 -#: actions/groupdesignsettings.php:104 actions/grouplogo.php:106 +#: actions/editgroup.php:107 actions/editgroup.php:172 +#: actions/groupdesignsettings.php:107 actions/grouplogo.php:109 msgid "You must be an admin to edit the group." msgstr "Tu debe esser administrator pro modificar le gruppo." -#: actions/editgroup.php:154 +#: actions/editgroup.php:158 msgid "Use this form to edit the group." msgstr "Usa iste formulario pro modificar le gruppo." -#: actions/editgroup.php:201 actions/newgroup.php:145 +#: actions/editgroup.php:205 actions/newgroup.php:145 #, php-format msgid "description is too long (max %d chars)." msgstr "description es troppo longe (max %d chars)." -#: actions/editgroup.php:253 +#: actions/editgroup.php:258 msgid "Could not update group." msgstr "Non poteva actualisar gruppo." -#: actions/editgroup.php:259 classes/User_group.php:433 +#: actions/editgroup.php:264 classes/User_group.php:478 msgid "Could not create aliases." msgstr "Non poteva crear aliases." -#: actions/editgroup.php:269 +#: actions/editgroup.php:280 msgid "Options saved." msgstr "Optiones salveguardate." @@ -1583,7 +1616,7 @@ msgstr "Le usator es ja blocate del gruppo." msgid "User is not a member of group." msgstr "Le usator non es membro del gruppo." -#: actions/groupblock.php:136 actions/groupmembers.php:316 +#: actions/groupblock.php:136 actions/groupmembers.php:323 msgid "Block user from group" msgstr "Blocar usator del gruppo" @@ -1618,11 +1651,11 @@ msgstr "Nulle ID." msgid "You must be logged in to edit a group." msgstr "Tu debe aperir un session pro modificar un gruppo." -#: actions/groupdesignsettings.php:141 +#: actions/groupdesignsettings.php:144 msgid "Group design" msgstr "Apparentia del gruppo" -#: actions/groupdesignsettings.php:152 +#: actions/groupdesignsettings.php:155 msgid "" "Customize the way your group looks with a background image and a colour " "palette of your choice." @@ -1630,20 +1663,20 @@ msgstr "" "Personalisa le apparentia de tu gruppo con un imagine de fundo e un paletta " "de colores de tu preferentia." -#: actions/groupdesignsettings.php:263 actions/userdesignsettings.php:186 +#: actions/groupdesignsettings.php:266 actions/userdesignsettings.php:186 #: lib/designsettings.php:391 lib/designsettings.php:413 msgid "Couldn't update your design." msgstr "Non poteva actualisar tu apparentia." -#: actions/groupdesignsettings.php:308 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231 msgid "Design preferences saved." msgstr "Preferentias de apparentia salveguardate." -#: actions/grouplogo.php:139 actions/grouplogo.php:192 +#: actions/grouplogo.php:142 actions/grouplogo.php:195 msgid "Group logo" msgstr "Logotypo del gruppo" -#: actions/grouplogo.php:150 +#: actions/grouplogo.php:153 #, php-format msgid "" "You can upload a logo image for your group. The maximum file size is %s." @@ -1651,57 +1684,57 @@ msgstr "" "Tu pote incargar un imagine pro le logotypo de tu gruppo. Le dimension " "maximal del file es %s." -#: actions/grouplogo.php:178 +#: actions/grouplogo.php:181 msgid "User without matching profile." msgstr "Usator sin profilo correspondente" -#: actions/grouplogo.php:362 +#: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." msgstr "Selige un area quadrate del imagine que devenira le logotypo." -#: actions/grouplogo.php:396 +#: actions/grouplogo.php:399 msgid "Logo updated." msgstr "Logotypo actualisate." -#: actions/grouplogo.php:398 +#: actions/grouplogo.php:401 msgid "Failed updating logo." msgstr "Falleva de actualisar le logotypo." -#: actions/groupmembers.php:93 lib/groupnav.php:92 +#: actions/groupmembers.php:100 lib/groupnav.php:92 #, php-format msgid "%s group members" msgstr "Membros del gruppo %s" -#: actions/groupmembers.php:96 +#: actions/groupmembers.php:103 #, php-format msgid "%1$s group members, page %2$d" msgstr "Membros del gruppo %1$s, pagina %2$d" -#: actions/groupmembers.php:111 +#: actions/groupmembers.php:118 msgid "A list of the users in this group." msgstr "Un lista de usatores in iste gruppo." -#: actions/groupmembers.php:175 lib/action.php:448 lib/groupnav.php:107 +#: actions/groupmembers.php:182 lib/groupnav.php:107 msgid "Admin" msgstr "Administrator" -#: actions/groupmembers.php:348 lib/blockform.php:69 +#: actions/groupmembers.php:355 lib/blockform.php:69 msgid "Block" msgstr "Blocar" -#: actions/groupmembers.php:443 +#: actions/groupmembers.php:450 msgid "Make user an admin of the group" msgstr "Facer le usator administrator del gruppo" -#: actions/groupmembers.php:475 +#: actions/groupmembers.php:482 msgid "Make Admin" msgstr "Facer administrator" -#: actions/groupmembers.php:475 +#: actions/groupmembers.php:482 msgid "Make this user an admin" msgstr "Facer iste usator administrator" -#: actions/grouprss.php:133 +#: actions/grouprss.php:140 #, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Actualisationes de membros de %1$s in %2$s!" @@ -1966,16 +1999,19 @@ msgstr "Message personal" msgid "Optionally add a personal message to the invitation." msgstr "Si tu vole, adde un message personal al invitation." -#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:236 +#. TRANS: Send button for inviting friends +#: actions/invite.php:198 +#, fuzzy +msgctxt "BUTTON" msgid "Send" msgstr "Inviar" -#: actions/invite.php:226 +#: actions/invite.php:227 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "%1$s te ha invitate a accompaniar le/la in %2$s" -#: actions/invite.php:228 +#: actions/invite.php:229 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -2036,7 +2072,12 @@ msgstr "" msgid "You must be logged in to join a group." msgstr "Tu debe aperir un session pro facer te membro de un gruppo." -#: actions/joingroup.php:131 +#: actions/joingroup.php:88 actions/leavegroup.php:88 +#, fuzzy +msgid "No nickname or ID." +msgstr "Nulle pseudonymo." + +#: actions/joingroup.php:141 #, php-format msgid "%1$s joined group %2$s" msgstr "%1$s es ora membro del gruppo %2$s" @@ -2045,11 +2086,11 @@ msgstr "%1$s es ora membro del gruppo %2$s" msgid "You must be logged in to leave a group." msgstr "Tu debe aperir un session pro quitar un gruppo." -#: actions/leavegroup.php:90 lib/command.php:265 +#: actions/leavegroup.php:100 lib/command.php:265 msgid "You are not a member of that group." msgstr "Tu non es membro de iste gruppo." -#: actions/leavegroup.php:127 +#: actions/leavegroup.php:137 #, php-format msgid "%1$s left group %2$s" msgstr "%1$s quitava le gruppo %2$s" @@ -2067,8 +2108,7 @@ msgid "Error setting user. You are probably not authorized." msgstr "" "Error de acceder al conto de usator. Tu probabilemente non es autorisate." -#: actions/login.php:188 actions/login.php:241 lib/action.php:466 -#: lib/logingroupnav.php:79 +#: actions/login.php:188 actions/login.php:241 lib/logingroupnav.php:79 msgid "Login" msgstr "Aperir session" @@ -2326,8 +2366,8 @@ msgstr "typo de contento " msgid "Only " msgstr "Solmente " -#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 -#: lib/api.php:1068 lib/api.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 +#: lib/apiaction.php:1068 lib/apiaction.php:1177 msgid "Not a supported data format." msgstr "Formato de datos non supportate." @@ -2467,7 +2507,7 @@ msgstr "Non pote salveguardar le nove contrasigno." msgid "Password saved." msgstr "Contrasigno salveguardate." -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:331 +#: actions/pathsadminpanel.php:59 msgid "Paths" msgstr "Camminos" @@ -2500,7 +2540,6 @@ msgid "Invalid SSL server. The maximum length is 255 characters." msgstr "Servitor SSL invalide. Le longitude maximal es 255 characteres." #: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58 -#: lib/adminpanelaction.php:311 msgid "Site" msgstr "Sito" @@ -2674,7 +2713,7 @@ msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1-64 minusculas o numeros, sin punctuation o spatios" #: actions/profilesettings.php:111 actions/register.php:448 -#: actions/showgroup.php:247 actions/tagother.php:104 +#: actions/showgroup.php:255 actions/tagother.php:104 #: lib/groupeditform.php:157 lib/userprofile.php:149 msgid "Full name" msgstr "Nomine complete" @@ -2702,7 +2741,7 @@ msgid "Bio" msgstr "Bio" #: actions/profilesettings.php:132 actions/register.php:471 -#: actions/showgroup.php:256 actions/tagother.php:112 +#: actions/showgroup.php:264 actions/tagother.php:112 #: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:164 msgid "Location" @@ -2785,7 +2824,8 @@ msgstr "Non poteva salveguardar profilo." msgid "Couldn't save tags." msgstr "Non poteva salveguardar etiquettas." -#: actions/profilesettings.php:391 lib/adminpanelaction.php:137 +#. TRANS: Message after successful saving of administrative settings. +#: actions/profilesettings.php:391 lib/adminpanelaction.php:141 msgid "Settings saved." msgstr "Preferentias confirmate." @@ -2798,28 +2838,28 @@ msgstr "Ultra le limite de pagina (%s)" msgid "Could not retrieve public stream." msgstr "Non poteva recuperar le fluxo public." -#: actions/public.php:129 +#: actions/public.php:130 #, php-format msgid "Public timeline, page %d" msgstr "Chronologia public, pagina %d" -#: actions/public.php:131 lib/publicgroupnav.php:79 +#: actions/public.php:132 lib/publicgroupnav.php:79 msgid "Public timeline" msgstr "Chronologia public" -#: actions/public.php:159 +#: actions/public.php:160 msgid "Public Stream Feed (RSS 1.0)" msgstr "Syndication del fluxo public (RSS 1.0)" -#: actions/public.php:163 +#: actions/public.php:164 msgid "Public Stream Feed (RSS 2.0)" msgstr "Syndication del fluxo public (RSS 2.0)" -#: actions/public.php:167 +#: actions/public.php:168 msgid "Public Stream Feed (Atom)" msgstr "Syndication del fluxo public (Atom)" -#: actions/public.php:187 +#: actions/public.php:188 #, php-format msgid "" "This is the public timeline for %%site.name%% but no one has posted anything " @@ -2828,11 +2868,11 @@ msgstr "" "Isto es le chronologia public pro %%site.name%%, ma nulle persona ha ancora " "scribite alique." -#: actions/public.php:190 +#: actions/public.php:191 msgid "Be the first to post!" msgstr "Sia le prime a publicar!" -#: actions/public.php:194 +#: actions/public.php:195 #, php-format msgid "" "Why not [register an account](%%action.register%%) and be the first to post!" @@ -2840,7 +2880,7 @@ msgstr "" "Proque non [registrar un conto](%%action.register%%) e devenir le prime a " "publicar?" -#: actions/public.php:241 +#: actions/public.php:242 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2853,7 +2893,7 @@ msgstr "" "[Inscribe te ora](%%action.register%%) pro condivider notas super te con " "amicos, familia e collegas! ([Leger plus](%%doc.help%%))" -#: actions/public.php:246 +#: actions/public.php:247 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -3031,8 +3071,7 @@ msgstr "Pardono, le codice de invitation es invalide." msgid "Registration successful" msgstr "Registration succedite" -#: actions/register.php:114 actions/register.php:503 lib/action.php:463 -#: lib/logingroupnav.php:85 +#: actions/register.php:114 actions/register.php:503 lib/logingroupnav.php:85 msgid "Register" msgstr "Crear conto" @@ -3218,7 +3257,7 @@ msgstr "Tu non pote repeter tu proprie nota." msgid "You already repeated that notice." msgstr "Tu ha ja repetite iste nota." -#: actions/repeat.php:114 lib/noticelist.php:656 +#: actions/repeat.php:114 lib/noticelist.php:674 msgid "Repeated" msgstr "Repetite" @@ -3226,33 +3265,33 @@ msgstr "Repetite" msgid "Repeated!" msgstr "Repetite!" -#: actions/replies.php:125 actions/repliesrss.php:68 +#: actions/replies.php:126 actions/repliesrss.php:68 #: lib/personalgroupnav.php:105 #, php-format msgid "Replies to %s" msgstr "Responsas a %s" -#: actions/replies.php:127 +#: actions/replies.php:128 #, php-format msgid "Replies to %1$s, page %2$d" msgstr "Responsas a %1$s, pagina %2$d" -#: actions/replies.php:144 +#: actions/replies.php:145 #, php-format msgid "Replies feed for %s (RSS 1.0)" msgstr "Syndication de responsas pro %s (RSS 1.0)" -#: actions/replies.php:151 +#: actions/replies.php:152 #, php-format msgid "Replies feed for %s (RSS 2.0)" msgstr "Syndication de responsas pro %s (RSS 2.0)" -#: actions/replies.php:158 +#: actions/replies.php:159 #, php-format msgid "Replies feed for %s (Atom)" msgstr "Syndication de responsas pro %s (Atom)" -#: actions/replies.php:198 +#: actions/replies.php:199 #, php-format msgid "" "This is the timeline showing replies to %1$s but %2$s hasn't received a " @@ -3261,7 +3300,7 @@ msgstr "" "Isto es le chronologia de responsas a %1$s, ma %2$s non ha ancora recipite " "alcun nota a su attention." -#: actions/replies.php:203 +#: actions/replies.php:204 #, php-format msgid "" "You can engage other users in a conversation, subscribe to more people or " @@ -3270,7 +3309,7 @@ msgstr "" "Tu pote facer conversation con altere usatores, subscriber te a plus " "personas o [devenir membro de gruppos](%%action.groups%%)." -#: actions/replies.php:205 +#: actions/replies.php:206 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) or [post something to his or her " @@ -3297,7 +3336,6 @@ msgid "User is already sandboxed." msgstr "Usator es ja in cassa de sablo." #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:336 msgid "Sessions" msgstr "Sessiones" @@ -3322,7 +3360,7 @@ msgid "Turn on debugging output for sessions." msgstr "Producer informationes technic pro cercar defectos in sessiones." #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/useradminpanel.php:293 +#: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "Salveguardar configurationes del sito" @@ -3352,7 +3390,7 @@ msgstr "Organisation" msgid "Description" msgstr "Description" -#: actions/showapplication.php:192 actions/showgroup.php:429 +#: actions/showapplication.php:192 actions/showgroup.php:437 #: lib/profileaction.php:174 msgid "Statistics" msgstr "Statisticas" @@ -3415,22 +3453,22 @@ msgstr "Notas favorite de %1$s, pagina %2$d" msgid "Could not retrieve favorite notices." msgstr "Non poteva recuperar notas favorite." -#: actions/showfavorites.php:170 +#: actions/showfavorites.php:171 #, php-format msgid "Feed for favorites of %s (RSS 1.0)" msgstr "Syndication del favorites de %s (RSS 1.0)" -#: actions/showfavorites.php:177 +#: actions/showfavorites.php:178 #, php-format msgid "Feed for favorites of %s (RSS 2.0)" msgstr "Syndication del favorites de %s (RSS 2.0)" -#: actions/showfavorites.php:184 +#: actions/showfavorites.php:185 #, php-format msgid "Feed for favorites of %s (Atom)" msgstr "Syndication del favorites de %s (Atom)" -#: actions/showfavorites.php:205 +#: actions/showfavorites.php:206 msgid "" "You haven't chosen any favorite notices yet. Click the fave button on " "notices you like to bookmark them for later or shed a spotlight on them." @@ -3439,7 +3477,7 @@ msgstr "" "Favorite sub notas que te place pro memorisar los pro plus tarde o pro " "mitter los in evidentia." -#: actions/showfavorites.php:207 +#: actions/showfavorites.php:208 #, php-format msgid "" "%s hasn't added any notices to his favorites yet. Post something interesting " @@ -3448,7 +3486,7 @@ msgstr "" "%s non ha ancora addite alcun nota a su favorites. Publica alique " "interessante que ille favoritisarea :)" -#: actions/showfavorites.php:211 +#: actions/showfavorites.php:212 #, php-format msgid "" "%s hasn't added any notices to his favorites yet. Why not [register an " @@ -3459,7 +3497,7 @@ msgstr "" "conto](%%%%action.register%%%%) e postea publicar alique interessante que " "ille favoritisarea :)" -#: actions/showfavorites.php:242 +#: actions/showfavorites.php:243 msgid "This is a way to share what you like." msgstr "Isto es un modo de condivider lo que te place." @@ -3473,67 +3511,67 @@ msgstr "Gruppo %s" msgid "%1$s group, page %2$d" msgstr "Gruppo %1$s, pagina %2$d" -#: actions/showgroup.php:218 +#: actions/showgroup.php:226 msgid "Group profile" msgstr "Profilo del gruppo" -#: actions/showgroup.php:263 actions/tagother.php:118 +#: actions/showgroup.php:271 actions/tagother.php:118 #: actions/userauthorization.php:175 lib/userprofile.php:177 msgid "URL" msgstr "URL" -#: actions/showgroup.php:274 actions/tagother.php:128 +#: actions/showgroup.php:282 actions/tagother.php:128 #: actions/userauthorization.php:187 lib/userprofile.php:194 msgid "Note" msgstr "Nota" -#: actions/showgroup.php:284 lib/groupeditform.php:184 +#: actions/showgroup.php:292 lib/groupeditform.php:184 msgid "Aliases" msgstr "Aliases" -#: actions/showgroup.php:293 +#: actions/showgroup.php:301 msgid "Group actions" msgstr "Actiones del gruppo" -#: actions/showgroup.php:328 +#: actions/showgroup.php:336 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Syndication de notas pro le gruppo %s (RSS 1.0)" -#: actions/showgroup.php:334 +#: actions/showgroup.php:342 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Syndication de notas pro le gruppo %s (RSS 2.0)" -#: actions/showgroup.php:340 +#: actions/showgroup.php:348 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "Syndication de notas pro le gruppo %s (Atom)" -#: actions/showgroup.php:345 +#: actions/showgroup.php:353 #, php-format msgid "FOAF for %s group" msgstr "Amico de un amico pro le gruppo %s" -#: actions/showgroup.php:381 actions/showgroup.php:438 lib/groupnav.php:91 +#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 msgid "Members" msgstr "Membros" -#: actions/showgroup.php:386 lib/profileaction.php:117 +#: actions/showgroup.php:394 lib/profileaction.php:117 #: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(Nulle)" -#: actions/showgroup.php:392 +#: actions/showgroup.php:400 msgid "All members" msgstr "Tote le membros" -#: actions/showgroup.php:432 +#: actions/showgroup.php:440 msgid "Created" msgstr "Create" -#: actions/showgroup.php:448 +#: actions/showgroup.php:456 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3548,7 +3586,7 @@ msgstr "" "lor vita e interesses. [Crea un conto](%%%%action.register%%%%) pro devenir " "parte de iste gruppo e multe alteres! ([Lege plus](%%%%doc.help%%%%))" -#: actions/showgroup.php:454 +#: actions/showgroup.php:462 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3561,7 +3599,7 @@ msgstr "" "[StatusNet](http://status.net/). Su membros condivide breve messages super " "lor vita e interesses. " -#: actions/showgroup.php:482 +#: actions/showgroup.php:490 msgid "Admins" msgstr "Administratores" @@ -4041,22 +4079,22 @@ msgstr "Jabber" msgid "SMS" msgstr "SMS" -#: actions/tag.php:68 +#: actions/tag.php:69 #, php-format msgid "Notices tagged with %1$s, page %2$d" msgstr "Notas etiquettate con %1$s, pagina %2$d" -#: actions/tag.php:86 +#: actions/tag.php:87 #, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Syndication de notas pro le etiquetta %s (RSS 1.0)" -#: actions/tag.php:92 +#: actions/tag.php:93 #, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Syndication de notas pro le etiquetta %s (RSS 2.0)" -#: actions/tag.php:98 +#: actions/tag.php:99 #, php-format msgid "Notice feed for tag %s (Atom)" msgstr "Syndication de notas pro le etiquetta %s (Atom)" @@ -4111,7 +4149,7 @@ msgstr "" msgid "No such tag." msgstr "Etiquetta non existe." -#: actions/twitapitrends.php:87 +#: actions/twitapitrends.php:85 msgid "API method under construction." msgstr "Methodo API in construction." @@ -4143,70 +4181,72 @@ msgstr "" "Le licentia del fluxo que tu ascolta, ‘%1$s’, non es compatibile con le " "licentia del sito ‘%2$s’." -#: actions/useradminpanel.php:58 lib/adminpanelaction.php:321 -#: lib/personalgroupnav.php:115 +#. TRANS: User admin panel title +#: actions/useradminpanel.php:59 +#, fuzzy +msgctxt "TITLE" msgid "User" msgstr "Usator" -#: actions/useradminpanel.php:69 +#: actions/useradminpanel.php:70 msgid "User settings for this StatusNet site." msgstr "Configurationes de usator pro iste sito de StatusNet." -#: actions/useradminpanel.php:148 +#: actions/useradminpanel.php:149 msgid "Invalid bio limit. Must be numeric." msgstr "Limite de biographia invalide. Debe esser un numero." -#: actions/useradminpanel.php:154 +#: actions/useradminpanel.php:155 msgid "Invalid welcome text. Max length is 255 characters." msgstr "Texto de benvenita invalide. Longitude maximal es 255 characteres." -#: actions/useradminpanel.php:164 +#: actions/useradminpanel.php:165 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "Subscription predefinite invalide: '%1$s' non es usator." -#: actions/useradminpanel.php:217 lib/accountsettingsaction.php:108 +#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Profilo" -#: actions/useradminpanel.php:221 +#: actions/useradminpanel.php:222 msgid "Bio Limit" msgstr "Limite de biographia" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:223 msgid "Maximum length of a profile bio in characters." msgstr "Le longitude maximal del biographia de un profilo in characteres." -#: actions/useradminpanel.php:230 +#: actions/useradminpanel.php:231 msgid "New users" msgstr "Nove usatores" -#: actions/useradminpanel.php:234 +#: actions/useradminpanel.php:235 msgid "New user welcome" msgstr "Message de benvenita a nove usatores" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:236 msgid "Welcome text for new users (Max 255 chars)." msgstr "Texto de benvenita pro nove usatores (max. 255 characteres)" -#: actions/useradminpanel.php:240 +#: actions/useradminpanel.php:241 msgid "Default subscription" msgstr "Subscription predefinite" -#: actions/useradminpanel.php:241 +#: actions/useradminpanel.php:242 msgid "Automatically subscribe new users to this user." msgstr "Subscriber automaticamente le nove usatores a iste usator." -#: actions/useradminpanel.php:250 +#: actions/useradminpanel.php:251 msgid "Invitations" msgstr "Invitationes" -#: actions/useradminpanel.php:255 +#: actions/useradminpanel.php:256 msgid "Invitations enabled" msgstr "Invitationes activate" -#: actions/useradminpanel.php:257 +#: actions/useradminpanel.php:258 msgid "Whether to allow users to invite new users." msgstr "Si le usatores pote invitar nove usatores." @@ -4402,7 +4442,7 @@ msgstr "" msgid "Plugins" msgstr "Plug-ins" -#: actions/version.php:196 lib/action.php:747 +#: actions/version.php:196 lib/action.php:778 msgid "Version" msgstr "Version" @@ -4441,6 +4481,11 @@ msgstr "Non es membro del gruppo." msgid "Group leave failed." msgstr "Le cancellation del membrato del gruppo ha fallite." +#: classes/Local_group.php:41 +#, fuzzy +msgid "Could not update local group." +msgstr "Non poteva actualisar gruppo." + #: classes/Login_token.php:76 #, php-format msgid "Could not create login token for %s" @@ -4458,27 +4503,27 @@ msgstr "Non poteva inserer message." msgid "Could not update message with new URI." msgstr "Non poteva actualisar message con nove URI." -#: classes/Notice.php:157 +#: classes/Notice.php:172 #, php-format msgid "DB error inserting hashtag: %s" msgstr "Error in base de datos durante insertion del marca (hashtag): %s" -#: classes/Notice.php:222 +#: classes/Notice.php:239 msgid "Problem saving notice. Too long." msgstr "Problema salveguardar nota. Troppo longe." -#: classes/Notice.php:226 +#: classes/Notice.php:243 msgid "Problem saving notice. Unknown user." msgstr "Problema salveguardar nota. Usator incognite." -#: classes/Notice.php:231 +#: classes/Notice.php:248 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" "Troppo de notas troppo rapidemente; face un pausa e publica de novo post " "alcun minutas." -#: classes/Notice.php:237 +#: classes/Notice.php:254 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." @@ -4486,19 +4531,19 @@ msgstr "" "Troppo de messages duplicate troppo rapidemente; face un pausa e publica de " "novo post alcun minutas." -#: classes/Notice.php:243 +#: classes/Notice.php:260 msgid "You are banned from posting notices on this site." msgstr "Il te es prohibite publicar notas in iste sito." -#: classes/Notice.php:309 classes/Notice.php:335 +#: classes/Notice.php:326 classes/Notice.php:352 msgid "Problem saving notice." msgstr "Problema salveguardar nota." -#: classes/Notice.php:882 +#: classes/Notice.php:911 msgid "Problem saving group inbox." msgstr "Problema salveguardar le cassa de entrata del gruppo." -#: classes/Notice.php:1407 +#: classes/Notice.php:1442 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -4527,19 +4572,29 @@ msgstr "Non poteva deler auto-subscription." msgid "Couldn't delete subscription." msgstr "Non poteva deler subscription." -#: classes/User.php:372 +#: classes/User.php:373 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "Benvenite a %1$s, @%2$s!" -#: classes/User_group.php:423 +#: classes/User_group.php:462 msgid "Could not create group." msgstr "Non poteva crear gruppo." -#: classes/User_group.php:452 +#: classes/User_group.php:471 +#, fuzzy +msgid "Could not set group URI." +msgstr "Non poteva configurar le membrato del gruppo." + +#: classes/User_group.php:492 msgid "Could not set group membership." msgstr "Non poteva configurar le membrato del gruppo." +#: classes/User_group.php:506 +#, fuzzy +msgid "Could not save local group info." +msgstr "Non poteva salveguardar le subscription." + #: lib/accountsettingsaction.php:108 msgid "Change your profile settings" msgstr "Cambiar le optiones de tu profilo" @@ -4581,120 +4636,190 @@ msgstr "Pagina sin titulo" msgid "Primary site navigation" msgstr "Navigation primari del sito" +#. TRANS: Tooltip for main menu option "Personal" #: lib/action.php:439 -msgid "Home" -msgstr "Initio" - -#: lib/action.php:439 +#, fuzzy +msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Profilo personal e chronologia de amicos" -#: lib/action.php:441 +#: lib/action.php:442 +#, fuzzy +msgctxt "MENU" +msgid "Personal" +msgstr "Personal" + +#. TRANS: Tooltip for main menu option "Account" +#: lib/action.php:444 +#, fuzzy +msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Cambiar tu e-mail, avatar, contrasigno, profilo" -#: lib/action.php:444 -msgid "Connect" -msgstr "Connecter" +#: lib/action.php:447 +#, fuzzy +msgctxt "MENU" +msgid "Account" +msgstr "Conto" -#: lib/action.php:444 +#. TRANS: Tooltip for main menu option "Services" +#: lib/action.php:450 +#, fuzzy +msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Connecter con servicios" -#: lib/action.php:448 +#: lib/action.php:453 +#, fuzzy +msgctxt "MENU" +msgid "Connect" +msgstr "Connecter" + +#. TRANS: Tooltip for menu option "Admin" +#: lib/action.php:457 +#, fuzzy +msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Modificar le configuration del sito" -#: lib/action.php:452 lib/subgroupnav.php:105 -msgid "Invite" -msgstr "Invitar" +#: lib/action.php:460 +#, fuzzy +msgctxt "MENU" +msgid "Admin" +msgstr "Administrator" -#: lib/action.php:453 lib/subgroupnav.php:106 -#, php-format +#. TRANS: Tooltip for main menu option "Invite" +#: lib/action.php:464 +#, fuzzy, php-format +msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Invitar amicos e collegas a accompaniar te in %s" -#: lib/action.php:458 -msgid "Logout" -msgstr "Clauder session" +#: lib/action.php:467 +#, fuzzy +msgctxt "MENU" +msgid "Invite" +msgstr "Invitar" -#: lib/action.php:458 +#. TRANS: Tooltip for main menu option "Logout" +#: lib/action.php:473 +#, fuzzy +msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Terminar le session del sito" -#: lib/action.php:463 +#: lib/action.php:476 +#, fuzzy +msgctxt "MENU" +msgid "Logout" +msgstr "Clauder session" + +#. TRANS: Tooltip for main menu option "Register" +#: lib/action.php:481 +#, fuzzy +msgctxt "TOOLTIP" msgid "Create an account" msgstr "Crear un conto" -#: lib/action.php:466 +#: lib/action.php:484 +#, fuzzy +msgctxt "MENU" +msgid "Register" +msgstr "Crear conto" + +#. TRANS: Tooltip for main menu option "Login" +#: lib/action.php:487 +#, fuzzy +msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Identificar te a iste sito" -#: lib/action.php:469 lib/action.php:732 -msgid "Help" -msgstr "Adjuta" +#: lib/action.php:490 +#, fuzzy +msgctxt "MENU" +msgid "Login" +msgstr "Aperir session" -#: lib/action.php:469 +#. TRANS: Tooltip for main menu option "Help" +#: lib/action.php:493 +#, fuzzy +msgctxt "TOOLTIP" msgid "Help me!" msgstr "Adjuta me!" -#: lib/action.php:472 lib/searchaction.php:127 -msgid "Search" -msgstr "Cercar" +#: lib/action.php:496 +#, fuzzy +msgctxt "MENU" +msgid "Help" +msgstr "Adjuta" -#: lib/action.php:472 +#. TRANS: Tooltip for main menu option "Search" +#: lib/action.php:499 +#, fuzzy +msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Cercar personas o texto" -#: lib/action.php:493 +#: lib/action.php:502 +#, fuzzy +msgctxt "MENU" +msgid "Search" +msgstr "Cercar" + +#. TRANS: DT element for site notice. String is hidden in default CSS. +#: lib/action.php:524 msgid "Site notice" msgstr "Aviso del sito" -#: lib/action.php:559 +#: lib/action.php:590 msgid "Local views" msgstr "Vistas local" -#: lib/action.php:625 +#: lib/action.php:656 msgid "Page notice" msgstr "Aviso de pagina" -#: lib/action.php:727 +#: lib/action.php:758 msgid "Secondary site navigation" msgstr "Navigation secundari del sito" -#: lib/action.php:734 +#: lib/action.php:763 +msgid "Help" +msgstr "Adjuta" + +#: lib/action.php:765 msgid "About" msgstr "A proposito" -#: lib/action.php:736 +#: lib/action.php:767 msgid "FAQ" msgstr "FAQ" -#: lib/action.php:740 +#: lib/action.php:771 msgid "TOS" msgstr "CdS" -#: lib/action.php:743 +#: lib/action.php:774 msgid "Privacy" msgstr "Confidentialitate" -#: lib/action.php:745 +#: lib/action.php:776 msgid "Source" msgstr "Fonte" -#: lib/action.php:749 +#: lib/action.php:780 msgid "Contact" msgstr "Contacto" -#: lib/action.php:751 +#: lib/action.php:782 msgid "Badge" msgstr "Insignia" -#: lib/action.php:779 +#: lib/action.php:810 msgid "StatusNet software license" msgstr "Licentia del software StatusNet" -#: lib/action.php:782 +#: lib/action.php:813 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4703,12 +4828,12 @@ msgstr "" "**%%site.name%%** es un servicio de microblog offerite per [%%site.broughtby%" "%](%%site.broughtbyurl%%). " -#: lib/action.php:784 +#: lib/action.php:815 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** es un servicio de microblog. " -#: lib/action.php:786 +#: lib/action.php:817 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4719,108 +4844,161 @@ msgstr "" "net/), version %s, disponibile sub le [GNU Affero General Public License]" "(http://www.fsf.org/licensing/licenses/agpl-3.0.html)." -#: lib/action.php:801 +#: lib/action.php:832 msgid "Site content license" msgstr "Licentia del contento del sito" -#: lib/action.php:806 +#: lib/action.php:837 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "Le contento e datos de %1$s es private e confidential." -#: lib/action.php:811 +#: lib/action.php:842 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "Contento e datos sub copyright de %1$s. Tote le derectos reservate." -#: lib/action.php:814 +#: lib/action.php:845 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" "Contento e datos sub copyright del contributores. Tote le derectos reservate." -#: lib/action.php:827 +#: lib/action.php:858 msgid "All " msgstr "Totes " -#: lib/action.php:833 +#: lib/action.php:864 msgid "license." msgstr "licentia." -#: lib/action.php:1132 +#: lib/action.php:1163 msgid "Pagination" msgstr "Pagination" -#: lib/action.php:1141 +#: lib/action.php:1172 msgid "After" msgstr "Post" -#: lib/action.php:1149 +#: lib/action.php:1180 msgid "Before" msgstr "Ante" -#: lib/activity.php:382 +#: lib/activity.php:449 msgid "Can't handle remote content yet." msgstr "" -#: lib/activity.php:410 +#: lib/activity.php:477 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activity.php:414 +#: lib/activity.php:481 msgid "Can't handle embedded Base64 content yet." msgstr "" -#: lib/adminpanelaction.php:96 +#. TRANS: Client error message +#: lib/adminpanelaction.php:98 msgid "You cannot make changes to this site." msgstr "Tu non pote facer modificationes in iste sito." -#: lib/adminpanelaction.php:107 +#. TRANS: Client error message +#: lib/adminpanelaction.php:110 msgid "Changes to that panel are not allowed." msgstr "Le modification de iste pannello non es permittite." -#: lib/adminpanelaction.php:206 +#. TRANS: Client error message +#: lib/adminpanelaction.php:211 msgid "showForm() not implemented." msgstr "showForm() non implementate." -#: lib/adminpanelaction.php:235 +#. TRANS: Client error message +#: lib/adminpanelaction.php:241 msgid "saveSettings() not implemented." msgstr "saveSettings() non implementate." -#: lib/adminpanelaction.php:258 +#. TRANS: Client error message +#: lib/adminpanelaction.php:265 msgid "Unable to delete design setting." msgstr "Impossibile deler configuration de apparentia." -#: lib/adminpanelaction.php:312 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:330 msgid "Basic site configuration" msgstr "Configuration basic del sito" -#: lib/adminpanelaction.php:317 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:332 +#, fuzzy +msgctxt "MENU" +msgid "Site" +msgstr "Sito" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:338 msgid "Design configuration" msgstr "Configuration del apparentia" -#: lib/adminpanelaction.php:322 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:340 +#, fuzzy +msgctxt "MENU" +msgid "Design" +msgstr "Apparentia" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:346 msgid "User configuration" msgstr "Configuration del usator" -#: lib/adminpanelaction.php:327 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:348 +#, fuzzy +msgctxt "MENU" +msgid "User" +msgstr "Usator" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:354 msgid "Access configuration" msgstr "Configuration del accesso" -#: lib/adminpanelaction.php:332 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:356 +#, fuzzy +msgctxt "MENU" +msgid "Access" +msgstr "Accesso" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:362 msgid "Paths configuration" msgstr "Configuration del camminos" -#: lib/adminpanelaction.php:337 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:364 +#, fuzzy +msgctxt "MENU" +msgid "Paths" +msgstr "Camminos" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:370 msgid "Sessions configuration" msgstr "Configuration del sessiones" -#: lib/apiauth.php:95 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:372 +#, fuzzy +msgctxt "MENU" +msgid "Sessions" +msgstr "Sessiones" + +#: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." msgstr "" "Le ressource de API require accesso pro lectura e scriptura, ma tu ha " "solmente accesso pro lectura." -#: lib/apiauth.php:273 +#: lib/apiauth.php:272 #, php-format msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" msgstr "" @@ -4914,11 +5092,11 @@ msgstr "Notas ubi iste annexo appare" msgid "Tags for this attachment" msgstr "Etiquettas pro iste annexo" -#: lib/authenticationplugin.php:218 lib/authenticationplugin.php:223 +#: lib/authenticationplugin.php:220 lib/authenticationplugin.php:225 msgid "Password changing failed" msgstr "Cambio del contrasigno fallite" -#: lib/authenticationplugin.php:233 +#: lib/authenticationplugin.php:235 msgid "Password changing is not allowed" msgstr "Cambio del contrasigno non permittite" @@ -5233,19 +5411,19 @@ msgstr "" "tracks - non ancora implementate.\n" "tracking - non ancora implementate.\n" -#: lib/common.php:136 +#: lib/common.php:148 msgid "No configuration file found. " msgstr "Nulle file de configuration trovate. " -#: lib/common.php:137 +#: lib/common.php:149 msgid "I looked for configuration files in the following places: " msgstr "Io cercava files de configuration in le sequente locos: " -#: lib/common.php:139 +#: lib/common.php:151 msgid "You may wish to run the installer to fix this." msgstr "Considera executar le installator pro reparar isto." -#: lib/common.php:140 +#: lib/common.php:152 msgid "Go to the installer." msgstr "Ir al installator." @@ -5433,25 +5611,25 @@ msgstr "Error de systema durante le incargamento del file." #: lib/imagefile.php:96 msgid "Not an image or corrupt file." -msgstr "Le file non es un imagine o es defecte." +msgstr "Le file non es un imagine o es defectuose." -#: lib/imagefile.php:105 +#: lib/imagefile.php:109 msgid "Unsupported image file format." msgstr "Formato de file de imagine non supportate." -#: lib/imagefile.php:118 +#: lib/imagefile.php:122 msgid "Lost our file." msgstr "File perdite." -#: lib/imagefile.php:150 lib/imagefile.php:197 +#: lib/imagefile.php:166 lib/imagefile.php:231 msgid "Unknown file type" msgstr "Typo de file incognite" -#: lib/imagefile.php:217 +#: lib/imagefile.php:251 msgid "MB" msgstr "MB" -#: lib/imagefile.php:219 +#: lib/imagefile.php:253 msgid "kB" msgstr "KB" @@ -5834,6 +6012,12 @@ msgstr "A" msgid "Available characters" msgstr "Characteres disponibile" +#: lib/messageform.php:178 lib/noticeform.php:236 +#, fuzzy +msgctxt "Send button for sending notice" +msgid "Send" +msgstr "Inviar" + #: lib/noticeform.php:160 msgid "Send a notice" msgstr "Inviar un nota" @@ -5892,23 +6076,23 @@ msgstr "W" msgid "at" msgstr "a" -#: lib/noticelist.php:558 +#: lib/noticelist.php:566 msgid "in context" msgstr "in contexto" -#: lib/noticelist.php:583 +#: lib/noticelist.php:601 msgid "Repeated by" msgstr "Repetite per" -#: lib/noticelist.php:610 +#: lib/noticelist.php:628 msgid "Reply to this notice" msgstr "Responder a iste nota" -#: lib/noticelist.php:611 +#: lib/noticelist.php:629 msgid "Reply" msgstr "Responder" -#: lib/noticelist.php:655 +#: lib/noticelist.php:673 msgid "Notice repeated" msgstr "Nota repetite" @@ -5956,6 +6140,10 @@ msgstr "Responsas" msgid "Favorites" msgstr "Favorites" +#: lib/personalgroupnav.php:115 +msgid "User" +msgstr "Usator" + #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "Cassa de entrata" @@ -6045,7 +6233,7 @@ msgstr "Repeter iste nota?" msgid "Repeat this notice" msgstr "Repeter iste nota" -#: lib/router.php:665 +#: lib/router.php:668 msgid "No single user defined for single-user mode." msgstr "Nulle signule usator definite pro le modo de singule usator." @@ -6065,6 +6253,10 @@ msgstr "Cercar in sito" msgid "Keyword(s)" msgstr "Parola(s)-clave" +#: lib/searchaction.php:127 +msgid "Search" +msgstr "Cercar" + #: lib/searchaction.php:162 msgid "Search help" msgstr "Adjuta super le recerca" @@ -6116,6 +6308,15 @@ msgstr "Personas qui seque %s" msgid "Groups %s is a member of" msgstr "Gruppos del quales %s es membro" +#: lib/subgroupnav.php:105 +msgid "Invite" +msgstr "Invitar" + +#: lib/subgroupnav.php:106 +#, php-format +msgid "Invite friends and colleagues to join you on %s" +msgstr "Invitar amicos e collegas a accompaniar te in %s" + #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -6186,47 +6387,47 @@ msgstr "Message" msgid "Moderate" msgstr "Moderar" -#: lib/util.php:952 +#: lib/util.php:1013 msgid "a few seconds ago" msgstr "alcun secundas retro" -#: lib/util.php:954 +#: lib/util.php:1015 msgid "about a minute ago" msgstr "circa un minuta retro" -#: lib/util.php:956 +#: lib/util.php:1017 #, php-format msgid "about %d minutes ago" msgstr "circa %d minutas retro" -#: lib/util.php:958 +#: lib/util.php:1019 msgid "about an hour ago" msgstr "circa un hora retro" -#: lib/util.php:960 +#: lib/util.php:1021 #, php-format msgid "about %d hours ago" msgstr "circa %d horas retro" -#: lib/util.php:962 +#: lib/util.php:1023 msgid "about a day ago" msgstr "circa un die retro" -#: lib/util.php:964 +#: lib/util.php:1025 #, php-format msgid "about %d days ago" msgstr "circa %d dies retro" -#: lib/util.php:966 +#: lib/util.php:1027 msgid "about a month ago" msgstr "circa un mense retro" -#: lib/util.php:968 +#: lib/util.php:1029 #, php-format msgid "about %d months ago" msgstr "circa %d menses retro" -#: lib/util.php:970 +#: lib/util.php:1031 msgid "about a year ago" msgstr "circa un anno retro" diff --git a/locale/is/LC_MESSAGES/statusnet.po b/locale/is/LC_MESSAGES/statusnet.po index 08e4fec952..aaf79c8f7f 100644 --- a/locale/is/LC_MESSAGES/statusnet.po +++ b/locale/is/LC_MESSAGES/statusnet.po @@ -8,12 +8,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-02-24 23:49+0000\n" -"PO-Revision-Date: 2010-02-24 23:51:05+0000\n" +"POT-Creation-Date: 2010-03-02 21:02+0000\n" +"PO-Revision-Date: 2010-03-02 21:03:04+0000\n" "Language-Team: Icelandic\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r62925); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: is\n" "X-Message-Group: out-statusnet\n" @@ -21,71 +21,77 @@ msgstr "" "= 31 && n % 100 != 41 && n % 100 != 51 && n % 100 != 61 && n % 100 != 71 && " "n % 100 != 81 && n % 100 != 91);\n" -#: actions/accessadminpanel.php:54 lib/adminpanelaction.php:326 +#. TRANS: Page title +#: actions/accessadminpanel.php:55 #, fuzzy msgid "Access" msgstr "Samþykkja" -#: actions/accessadminpanel.php:65 +#. TRANS: Page notice +#: actions/accessadminpanel.php:67 #, fuzzy msgid "Site access settings" msgstr "Stillingar fyrir mynd" -#: actions/accessadminpanel.php:158 +#. TRANS: Form legend for registration form. +#: actions/accessadminpanel.php:161 #, fuzzy msgid "Registration" msgstr "Nýskrá" -#: actions/accessadminpanel.php:161 -#, fuzzy -msgid "Private" -msgstr "Friðhelgi" - -#: actions/accessadminpanel.php:163 +#. TRANS: Checkbox instructions for admin setting "Private" +#: actions/accessadminpanel.php:165 msgid "Prohibit anonymous users (not logged in) from viewing site?" msgstr "" +#. TRANS: Checkbox label for prohibiting anonymous users from viewing site. #: actions/accessadminpanel.php:167 #, fuzzy +msgctxt "LABEL" +msgid "Private" +msgstr "Friðhelgi" + +#. TRANS: Checkbox instructions for admin setting "Invite only" +#: actions/accessadminpanel.php:174 +msgid "Make registration invitation only." +msgstr "" + +#. TRANS: Checkbox label for configuring site as invite only. +#: actions/accessadminpanel.php:176 +#, fuzzy msgid "Invite only" msgstr "Bjóða" -#: actions/accessadminpanel.php:169 -msgid "Make registration invitation only." -msgstr "" - -#: actions/accessadminpanel.php:173 -msgid "Closed" -msgstr "" - -#: actions/accessadminpanel.php:175 +#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations) +#: actions/accessadminpanel.php:183 msgid "Disable new registrations." msgstr "" -#: actions/accessadminpanel.php:189 actions/designadminpanel.php:586 -#: actions/emailsettings.php:195 actions/imsettings.php:163 -#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 -#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 -#: actions/siteadminpanel.php:336 actions/smssettings.php:181 -#: actions/subscriptions.php:208 actions/tagother.php:154 -#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 -#: lib/applicationeditform.php:334 lib/designsettings.php:256 -#: lib/groupeditform.php:202 -msgid "Save" -msgstr "Vista" +#. TRANS: Checkbox label for disabling new user registrations. +#: actions/accessadminpanel.php:185 +msgid "Closed" +msgstr "" -#: actions/accessadminpanel.php:189 +#. TRANS: Title / tooltip for button to save access settings in site admin panel +#: actions/accessadminpanel.php:202 #, fuzzy msgid "Save access settings" msgstr "Stillingar fyrir mynd" -#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 -#: actions/showfavorites.php:137 actions/tag.php:51 +#: actions/accessadminpanel.php:203 +#, fuzzy +msgctxt "BUTTON" +msgid "Save" +msgstr "Vista" + +#. TRANS: Server error when page not found (404) +#: actions/all.php:64 actions/public.php:98 actions/replies.php:93 +#: actions/showfavorites.php:138 actions/tag.php:52 #, fuzzy msgid "No such page" msgstr "Ekkert þannig merki." -#: actions/all.php:74 actions/allrss.php:68 +#: actions/all.php:75 actions/allrss.php:68 #: actions/apiaccountupdatedeliverydevice.php:113 #: actions/apiaccountupdateprofile.php:105 #: actions/apiaccountupdateprofilebackgroundimage.php:116 @@ -99,72 +105,82 @@ msgstr "Ekkert þannig merki." #: actions/apitimelinehome.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/otp.php:76 -#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154 -#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 -#: actions/showfavorites.php:105 actions/userbyid.php:74 -#: actions/usergroups.php:91 actions/userrss.php:38 actions/xrds.php:71 -#: lib/command.php:163 lib/command.php:302 lib/command.php:355 -#: lib/command.php:401 lib/command.php:462 lib/command.php:518 -#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 +#: actions/hcard.php:67 actions/microsummary.php:62 actions/newmessage.php:116 +#: actions/otp.php:76 actions/remotesubscribe.php:145 +#: actions/remotesubscribe.php:154 actions/replies.php:73 +#: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/xrds.php:71 lib/command.php:163 lib/command.php:302 +#: lib/command.php:355 lib/command.php:401 lib/command.php:462 +#: lib/command.php:518 lib/galleryaction.php:59 lib/mailbox.php:82 +#: lib/profileaction.php:77 msgid "No such user." msgstr "Enginn svoleiðis notandi." -#: actions/all.php:84 +#. TRANS: Page title. %1$s is user nickname, %2$d is page number +#: actions/all.php:86 #, fuzzy, php-format msgid "%1$s and friends, page %2$d" msgstr "%s og vinirnir, síða %d" -#: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 +#. TRANS: Page title. %1$s is user nickname +#. TRANS: H1 text. %1$s is user nickname +#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" msgstr "%s og vinirnir" -#: actions/all.php:99 +#. TRANS: %1$s is user nickname +#: actions/all.php:103 #, php-format msgid "Feed for friends of %s (RSS 1.0)" msgstr "" -#: actions/all.php:107 +#. TRANS: %1$s is user nickname +#: actions/all.php:112 #, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "" -#: actions/all.php:115 +#. TRANS: %1$s is user nickname +#: actions/all.php:121 #, php-format msgid "Feed for friends of %s (Atom)" msgstr "" -#: actions/all.php:127 +#. TRANS: %1$s is user nickname +#: actions/all.php:134 #, php-format msgid "" "This is the timeline for %s and friends but no one has posted anything yet." msgstr "" -#: actions/all.php:132 +#: actions/all.php:139 #, php-format msgid "" "Try subscribing to more people, [join a group](%%action.groups%%) or post " "something yourself." msgstr "" -#: actions/all.php:134 +#. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@" +#: actions/all.php:142 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) from his profile or [post something to " "his or her attention](%%%%action.newnotice%%%%?status_textarea=%3$s)." msgstr "" -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211 +#: actions/all.php:145 actions/replies.php:210 actions/showstream.php:211 #, 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/all.php:165 +#. TRANS: H1 text +#: actions/all.php:174 msgid "You and friends" msgstr "" @@ -182,20 +198,20 @@ msgstr "Færslur frá %1$s og vinum á %2$s!" #: actions/apiaccountverifycredentials.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:128 actions/apigroupcreate.php:136 +#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: actions/apigroupleave.php:141 actions/apigrouplist.php:132 #: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 #: actions/apigroupshow.php:115 actions/apihelptest.php:88 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 -#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184 +#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 #: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:207 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 #, fuzzy msgid "API method not found." msgstr "Aðferð í forritsskilum fannst ekki!" @@ -229,8 +245,9 @@ msgstr "Gat ekki uppfært notanda." #: actions/apiaccountupdateprofilebackgroundimage.php:194 #: actions/apiaccountupdateprofilecolors.php:185 #: 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 +#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 +#: 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." @@ -255,7 +272,7 @@ msgstr "" #: actions/apiaccountupdateprofilebackgroundimage.php:146 #: actions/apiaccountupdateprofilecolors.php:164 #: actions/apiaccountupdateprofilecolors.php:174 -#: actions/groupdesignsettings.php:287 actions/groupdesignsettings.php:297 +#: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300 #: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 #: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 msgid "Unable to save your design settings." @@ -372,68 +389,68 @@ msgstr "" msgid "Could not find target user." msgstr "" -#: actions/apigroupcreate.php:164 actions/editgroup.php:182 +#: actions/apigroupcreate.php:166 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:215 #: 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/apigroupcreate.php:173 actions/editgroup.php:186 +#: actions/apigroupcreate.php:175 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:238 #: actions/register.php:208 msgid "Nickname already in use. Try another one." msgstr "Stuttnefni nú þegar í notkun. Prófaðu eitthvað annað." -#: actions/apigroupcreate.php:180 actions/editgroup.php:189 +#: actions/apigroupcreate.php:182 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:218 #: actions/register.php:210 msgid "Not a valid nickname." msgstr "Ekki tækt stuttnefni." -#: actions/apigroupcreate.php:196 actions/editapplication.php:215 -#: actions/editgroup.php:195 actions/newapplication.php:203 +#: actions/apigroupcreate.php:198 actions/editapplication.php:215 +#: actions/editgroup.php:199 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:217 msgid "Homepage is not a valid URL." msgstr "Heimasíða er ekki gild vefslóð." -#: actions/apigroupcreate.php:205 actions/editgroup.php:198 +#: actions/apigroupcreate.php:207 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:225 #: actions/register.php:220 msgid "Full name is too long (max 255 chars)." msgstr "Fullt nafn er of langt (í mesta lagi 255 stafir)." -#: actions/apigroupcreate.php:213 actions/editapplication.php:190 +#: actions/apigroupcreate.php:215 actions/editapplication.php:190 #: actions/newapplication.php:172 #, fuzzy, php-format msgid "Description is too long (max %d chars)." msgstr "Lýsing er of löng (í mesta lagi 140 tákn)." -#: actions/apigroupcreate.php:224 actions/editgroup.php:204 +#: actions/apigroupcreate.php:226 actions/editgroup.php:208 #: actions/newgroup.php:148 actions/profilesettings.php:232 #: actions/register.php:227 msgid "Location is too long (max 255 chars)." msgstr "Staðsetning er of löng (í mesta lagi 255 stafir)." -#: actions/apigroupcreate.php:243 actions/editgroup.php:215 +#: actions/apigroupcreate.php:245 actions/editgroup.php:219 #: actions/newgroup.php:159 #, php-format msgid "Too many aliases! Maximum %d." msgstr "" -#: actions/apigroupcreate.php:264 actions/editgroup.php:224 +#: actions/apigroupcreate.php:266 actions/editgroup.php:228 #: actions/newgroup.php:168 #, php-format msgid "Invalid alias: \"%s\"" msgstr "" -#: actions/apigroupcreate.php:273 actions/editgroup.php:228 +#: actions/apigroupcreate.php:275 actions/editgroup.php:232 #: actions/newgroup.php:172 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "" -#: actions/apigroupcreate.php:286 actions/editgroup.php:234 +#: actions/apigroupcreate.php:288 actions/editgroup.php:238 #: actions/newgroup.php:178 msgid "Alias can't be the same as nickname." msgstr "" @@ -445,16 +462,16 @@ msgstr "" msgid "Group not found!" msgstr "Aðferð í forritsskilum fannst ekki!" -#: actions/apigroupjoin.php:110 actions/joingroup.php:90 +#: actions/apigroupjoin.php:110 actions/joingroup.php:100 #, fuzzy msgid "You are already a member of that group." msgstr "Þú ert nú þegar meðlimur í þessum hópi" -#: actions/apigroupjoin.php:119 actions/joingroup.php:95 lib/command.php:221 +#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:221 msgid "You have been blocked from that group by the admin." msgstr "" -#: actions/apigroupjoin.php:138 actions/joingroup.php:124 +#: actions/apigroupjoin.php:138 actions/joingroup.php:134 #, fuzzy, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Gat ekki bætt notandanum %s í hópinn %s" @@ -464,7 +481,7 @@ msgstr "Gat ekki bætt notandanum %s í hópinn %s" msgid "You are not a member of this group." msgstr "Þú ert ekki meðlimur í þessum hópi." -#: actions/apigroupleave.php:124 actions/leavegroup.php:119 +#: actions/apigroupleave.php:124 actions/leavegroup.php:129 #, fuzzy, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "Gat ekki fjarlægt notandann %s úr hópnum %s" @@ -496,7 +513,7 @@ msgstr "Ótæk stærð." #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 #: actions/deletenotice.php:157 actions/disfavor.php:74 #: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54 -#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupblock.php:66 actions/grouplogo.php:312 #: actions/groupunblock.php:66 actions/imsettings.php:206 #: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 @@ -540,7 +557,7 @@ msgstr "" #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:103 actions/editapplication.php:139 -#: actions/emailsettings.php:256 actions/grouplogo.php:319 +#: actions/emailsettings.php:256 actions/grouplogo.php:322 #: actions/imsettings.php:220 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 #: actions/smssettings.php:248 lib/designsettings.php:304 @@ -563,13 +580,13 @@ msgid "" "give access to your %4$s account to third parties you trust." msgstr "" -#: actions/apioauthauthorize.php:310 lib/action.php:441 +#: actions/apioauthauthorize.php:310 msgid "Account" msgstr "Aðgangur" #: actions/apioauthauthorize.php:313 actions/login.php:230 #: actions/profilesettings.php:106 actions/register.php:424 -#: actions/showgroup.php:236 actions/tagother.php:94 +#: actions/showgroup.php:244 actions/tagother.php:94 #: actions/userauthorization.php:145 lib/groupeditform.php:152 #: lib/userprofile.php:131 msgid "Nickname" @@ -655,12 +672,12 @@ msgid "%1$s updates favorited by %2$s / %2$s." msgstr "%s færslur gerðar að uppáhaldsbabli af %s / %s." #: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:131 actions/userrss.php:90 +#: actions/grouprss.php:138 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "Rás %s" -#: actions/apitimelinegroup.php:114 actions/apitimelineuser.php:126 +#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 #: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" @@ -696,7 +713,7 @@ msgstr "Svör við %s" msgid "Repeats of %s" msgstr "Svör við %s" -#: actions/apitimelinetag.php:102 actions/tag.php:66 +#: actions/apitimelinetag.php:102 actions/tag.php:67 #, php-format msgid "Notices tagged with %s" msgstr "Babl merkt með %s" @@ -717,8 +734,7 @@ msgstr "" #: actions/avatarbynickname.php:59 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/leavegroup.php:76 -#: actions/showgroup.php:121 +#: actions/grouprss.php:91 actions/showgroup.php:121 msgid "No nickname." msgstr "Ekkert stuttnefni." @@ -730,7 +746,7 @@ msgstr "Engin stærð." msgid "Invalid size." msgstr "Ótæk stærð." -#: actions/avatarsettings.php:67 actions/showgroup.php:221 +#: actions/avatarsettings.php:67 actions/showgroup.php:229 #: lib/accountsettingsaction.php:112 msgid "Avatar" msgstr "Mynd" @@ -747,30 +763,30 @@ msgid "User without matching profile" msgstr "Notandi með enga persónulega síðu sem passar við" #: actions/avatarsettings.php:119 actions/avatarsettings.php:197 -#: actions/grouplogo.php:251 +#: actions/grouplogo.php:254 msgid "Avatar settings" msgstr "Stillingar fyrir mynd" #: actions/avatarsettings.php:127 actions/avatarsettings.php:205 -#: actions/grouplogo.php:199 actions/grouplogo.php:259 +#: actions/grouplogo.php:202 actions/grouplogo.php:262 msgid "Original" msgstr "Upphafleg mynd" #: actions/avatarsettings.php:142 actions/avatarsettings.php:217 -#: actions/grouplogo.php:210 actions/grouplogo.php:271 +#: actions/grouplogo.php:213 actions/grouplogo.php:274 msgid "Preview" msgstr "Forsýn" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:637 +#: lib/deleteuserform.php:66 lib/noticelist.php:655 msgid "Delete" msgstr "Eyða" -#: actions/avatarsettings.php:166 actions/grouplogo.php:233 +#: actions/avatarsettings.php:166 actions/grouplogo.php:236 msgid "Upload" msgstr "Hlaða upp" -#: actions/avatarsettings.php:231 actions/grouplogo.php:286 +#: actions/avatarsettings.php:231 actions/grouplogo.php:289 msgid "Crop" msgstr "Skera af" @@ -779,7 +795,7 @@ msgid "Pick a square area of the image to be your avatar" msgstr "" "Veldu ferningslaga svæði á upphaflegu myndinni sem einkennismyndina þína" -#: actions/avatarsettings.php:343 actions/grouplogo.php:377 +#: actions/avatarsettings.php:343 actions/grouplogo.php:380 msgid "Lost our file data." msgstr "Týndum skráargögnunum okkar" @@ -812,23 +828,23 @@ msgid "" msgstr "" #: actions/block.php:143 actions/deleteapplication.php:153 -#: actions/deletenotice.php:145 actions/deleteuser.php:147 +#: actions/deletenotice.php:145 actions/deleteuser.php:150 #: actions/groupblock.php:178 msgid "No" msgstr "Nei" -#: actions/block.php:143 actions/deleteuser.php:147 +#: actions/block.php:143 actions/deleteuser.php:150 #, fuzzy msgid "Do not block this user" msgstr "Opna á þennan notanda" #: actions/block.php:144 actions/deleteapplication.php:158 -#: actions/deletenotice.php:146 actions/deleteuser.php:148 +#: actions/deletenotice.php:146 actions/deleteuser.php:151 #: actions/groupblock.php:179 lib/repeatform.php:132 msgid "Yes" msgstr "Já" -#: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:355 lib/blockform.php:80 msgid "Block this user" msgstr "Loka á þennan notanda" @@ -836,39 +852,43 @@ msgstr "Loka á þennan notanda" msgid "Failed to save block information." msgstr "Mistókst að vista upplýsingar um notendalokun" -#: actions/blockedfromgroup.php:80 actions/editgroup.php:96 -#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/groupblock.php:86 -#: actions/groupbyid.php:83 actions/groupdesignsettings.php:97 -#: actions/grouplogo.php:99 actions/groupmembers.php:83 -#: actions/grouprss.php:98 actions/groupunblock.php:86 -#: actions/joingroup.php:83 actions/leavegroup.php:83 actions/makeadmin.php:86 -#: actions/showgroup.php:137 lib/command.php:212 lib/command.php:260 +#: actions/blockedfromgroup.php:80 actions/blockedfromgroup.php:87 +#: actions/editgroup.php:100 actions/foafgroup.php:44 actions/foafgroup.php:62 +#: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:100 actions/grouplogo.php:102 +#: actions/groupmembers.php:83 actions/groupmembers.php:90 +#: actions/grouprss.php:98 actions/grouprss.php:105 +#: actions/groupunblock.php:86 actions/joingroup.php:82 +#: actions/joingroup.php:93 actions/leavegroup.php:82 +#: actions/leavegroup.php:93 actions/makeadmin.php:86 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:212 +#: lib/command.php:260 msgid "No such group." msgstr "Enginn þannig hópur." -#: actions/blockedfromgroup.php:90 +#: actions/blockedfromgroup.php:97 #, php-format msgid "%s blocked profiles" msgstr "" -#: actions/blockedfromgroup.php:93 +#: actions/blockedfromgroup.php:100 #, fuzzy, php-format msgid "%1$s blocked profiles, page %2$d" msgstr "%s og vinirnir, síða %d" -#: actions/blockedfromgroup.php:108 +#: actions/blockedfromgroup.php:115 msgid "A list of the users blocked from joining this group." msgstr "" -#: actions/blockedfromgroup.php:281 +#: actions/blockedfromgroup.php:288 msgid "Unblock user from group" msgstr "" -#: actions/blockedfromgroup.php:313 lib/unblockform.php:69 +#: actions/blockedfromgroup.php:320 lib/unblockform.php:69 msgid "Unblock" msgstr "Opna" -#: actions/blockedfromgroup.php:313 lib/unblockform.php:80 +#: actions/blockedfromgroup.php:320 lib/unblockform.php:80 msgid "Unblock this user" msgstr "Opna á þennan notanda" @@ -949,7 +969,7 @@ msgstr "Þú ert ekki meðlimur í þessum hópi." #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1197 +#: lib/action.php:1228 msgid "There was a problem with your session token." msgstr "Það komu upp vandamál varðandi setutókann þinn." @@ -975,12 +995,13 @@ msgstr "Gat ekki uppfært hóp." msgid "Delete this application" msgstr "Eyða þessu babli" +#. TRANS: Client error message #: 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:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 -#: lib/adminpanelaction.php:72 lib/profileformaction.php:63 +#: lib/adminpanelaction.php:73 lib/profileformaction.php:63 #: lib/settingsaction.php:72 msgid "Not logged in." msgstr "Ekki innskráð(ur)." @@ -1007,7 +1028,7 @@ msgstr "Ertu viss um að þú viljir eyða þessu babli?" msgid "Do not delete this notice" msgstr "" -#: actions/deletenotice.php:146 lib/noticelist.php:637 +#: actions/deletenotice.php:146 lib/noticelist.php:655 msgid "Delete this notice" msgstr "Eyða þessu babli" @@ -1026,19 +1047,19 @@ msgstr "Þú getur ekki eytt stöðu annars notanda." msgid "Delete user" msgstr "Eyða" -#: actions/deleteuser.php:135 +#: actions/deleteuser.php:136 msgid "" "Are you sure you want to delete this user? This will clear all data about " "the user from the database, without a backup." msgstr "" -#: actions/deleteuser.php:148 lib/deleteuserform.php:77 +#: actions/deleteuser.php:151 lib/deleteuserform.php:77 #, fuzzy msgid "Delete this user" msgstr "Eyða þessu babli" #: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 -#: lib/adminpanelaction.php:316 lib/groupnav.php:119 +#: lib/groupnav.php:119 msgid "Design" msgstr "" @@ -1145,6 +1166,17 @@ msgstr "" msgid "Reset back to default" msgstr "" +#: actions/designadminpanel.php:586 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/tagother.php:154 actions/useradminpanel.php:294 +#: lib/applicationeditform.php:333 lib/applicationeditform.php:334 +#: lib/designsettings.php:256 lib/groupeditform.php:202 +msgid "Save" +msgstr "Vista" + #: actions/designadminpanel.php:587 lib/designsettings.php:257 msgid "Save design" msgstr "" @@ -1247,30 +1279,30 @@ msgstr "Breyta hópnum %s" msgid "You must be logged in to create a group." msgstr "Þú verður að hafa skráð þig inn til að búa til hóp." -#: actions/editgroup.php:103 actions/editgroup.php:168 -#: actions/groupdesignsettings.php:104 actions/grouplogo.php:106 +#: actions/editgroup.php:107 actions/editgroup.php:172 +#: actions/groupdesignsettings.php:107 actions/grouplogo.php:109 #, fuzzy msgid "You must be an admin to edit the group." msgstr "Þú verður að vera stjórnandi til að geta breytt hópnum" -#: actions/editgroup.php:154 +#: actions/editgroup.php:158 msgid "Use this form to edit the group." msgstr "Notaðu þetta eyðublað til að breyta hópnum." -#: actions/editgroup.php:201 actions/newgroup.php:145 +#: actions/editgroup.php:205 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/editgroup.php:253 +#: actions/editgroup.php:258 msgid "Could not update group." msgstr "Gat ekki uppfært hóp." -#: actions/editgroup.php:259 classes/User_group.php:433 +#: actions/editgroup.php:264 classes/User_group.php:478 msgid "Could not create aliases." msgstr "" -#: actions/editgroup.php:269 +#: actions/editgroup.php:280 msgid "Options saved." msgstr "Valmöguleikar vistaðir." @@ -1615,7 +1647,7 @@ msgstr "" msgid "User is not a member of group." msgstr "" -#: actions/groupblock.php:136 actions/groupmembers.php:316 +#: actions/groupblock.php:136 actions/groupmembers.php:323 msgid "Block user from group" msgstr "" @@ -1648,87 +1680,87 @@ msgstr "Ekkert einkenni" msgid "You must be logged in to edit a group." msgstr "" -#: actions/groupdesignsettings.php:141 +#: actions/groupdesignsettings.php:144 msgid "Group design" msgstr "" -#: actions/groupdesignsettings.php:152 +#: actions/groupdesignsettings.php:155 msgid "" "Customize the way your group looks with a background image and a colour " "palette of your choice." msgstr "" -#: actions/groupdesignsettings.php:263 actions/userdesignsettings.php:186 +#: actions/groupdesignsettings.php:266 actions/userdesignsettings.php:186 #: lib/designsettings.php:391 lib/designsettings.php:413 msgid "Couldn't update your design." msgstr "" -#: actions/groupdesignsettings.php:308 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231 msgid "Design preferences saved." msgstr "" -#: actions/grouplogo.php:139 actions/grouplogo.php:192 +#: actions/grouplogo.php:142 actions/grouplogo.php:195 msgid "Group logo" msgstr "Einkennismynd hópsins" -#: actions/grouplogo.php:150 +#: actions/grouplogo.php:153 #, php-format msgid "" "You can upload a logo image for your group. The maximum file size is %s." msgstr "" -#: actions/grouplogo.php:178 +#: actions/grouplogo.php:181 #, fuzzy msgid "User without matching profile." msgstr "Notandi með enga persónulega síðu sem passar við" -#: actions/grouplogo.php:362 +#: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." msgstr "" -#: actions/grouplogo.php:396 +#: actions/grouplogo.php:399 msgid "Logo updated." msgstr "Einkennismynd uppfærð." -#: actions/grouplogo.php:398 +#: actions/grouplogo.php:401 msgid "Failed updating logo." msgstr "Tókst ekki að uppfæra einkennismynd" -#: actions/groupmembers.php:93 lib/groupnav.php:92 +#: actions/groupmembers.php:100 lib/groupnav.php:92 #, php-format msgid "%s group members" msgstr "Hópmeðlimir %s" -#: actions/groupmembers.php:96 +#: actions/groupmembers.php:103 #, fuzzy, php-format msgid "%1$s group members, page %2$d" msgstr "Hópmeðlimir %s, síða %d" -#: actions/groupmembers.php:111 +#: actions/groupmembers.php:118 msgid "A list of the users in this group." msgstr "Listi yfir notendur í þessum hóp." -#: actions/groupmembers.php:175 lib/action.php:448 lib/groupnav.php:107 +#: actions/groupmembers.php:182 lib/groupnav.php:107 msgid "Admin" msgstr "Stjórnandi" -#: actions/groupmembers.php:348 lib/blockform.php:69 +#: actions/groupmembers.php:355 lib/blockform.php:69 msgid "Block" msgstr "Loka" -#: actions/groupmembers.php:443 +#: actions/groupmembers.php:450 msgid "Make user an admin of the group" msgstr "" -#: actions/groupmembers.php:475 +#: actions/groupmembers.php:482 msgid "Make Admin" msgstr "" -#: actions/groupmembers.php:475 +#: actions/groupmembers.php:482 msgid "Make this user an admin" msgstr "" -#: actions/grouprss.php:133 +#: actions/grouprss.php:140 #, fuzzy, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Færslur frá %1$s á %2$s!" @@ -1985,16 +2017,19 @@ msgstr "Persónuleg skilaboð" msgid "Optionally add a personal message to the invitation." msgstr "Bættu persónulegum skilaboðum við boðskortið ef þú vilt." -#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:236 +#. TRANS: Send button for inviting friends +#: actions/invite.php:198 +#, fuzzy +msgctxt "BUTTON" msgid "Send" msgstr "Senda" -#: actions/invite.php:226 +#: actions/invite.php:227 #, 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/invite.php:228 +#: actions/invite.php:229 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -2055,7 +2090,12 @@ msgstr "" msgid "You must be logged in to join a group." msgstr "Þú verður að hafa skráð þig inn til að bæta þér í hóp." -#: actions/joingroup.php:131 +#: actions/joingroup.php:88 actions/leavegroup.php:88 +#, fuzzy +msgid "No nickname or ID." +msgstr "Ekkert stuttnefni." + +#: actions/joingroup.php:141 #, fuzzy, php-format msgid "%1$s joined group %2$s" msgstr "%s bætti sér í hópinn %s" @@ -2064,11 +2104,11 @@ msgstr "%s bætti sér í hópinn %s" 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/leavegroup.php:90 lib/command.php:265 +#: actions/leavegroup.php:100 lib/command.php:265 msgid "You are not a member of that group." msgstr "Þú ert ekki meðlimur í þessum hópi." -#: actions/leavegroup.php:127 +#: actions/leavegroup.php:137 #, fuzzy, php-format msgid "%1$s left group %2$s" msgstr "%s gekk úr hópnum %s" @@ -2086,8 +2126,7 @@ msgstr "Rangt notendanafn eða lykilorð." msgid "Error setting user. You are probably not authorized." msgstr "Engin heimild." -#: actions/login.php:188 actions/login.php:241 lib/action.php:466 -#: lib/logingroupnav.php:79 +#: actions/login.php:188 actions/login.php:241 lib/logingroupnav.php:79 msgid "Login" msgstr "Innskráning" @@ -2346,8 +2385,8 @@ msgstr "" msgid "Only " msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 -#: lib/api.php:1068 lib/api.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 +#: lib/apiaction.php:1068 lib/apiaction.php:1177 msgid "Not a supported data format." msgstr "Enginn stuðningur við gagnasnið." @@ -2494,7 +2533,7 @@ msgstr "Get ekki vistað nýja lykilorðið." msgid "Password saved." msgstr "Lykilorð vistað." -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:331 +#: actions/pathsadminpanel.php:59 msgid "Paths" msgstr "" @@ -2527,7 +2566,6 @@ msgid "Invalid SSL server. The maximum length is 255 characters." msgstr "" #: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58 -#: lib/adminpanelaction.php:311 #, fuzzy msgid "Site" msgstr "Bjóða" @@ -2710,7 +2748,7 @@ 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/profilesettings.php:111 actions/register.php:448 -#: actions/showgroup.php:247 actions/tagother.php:104 +#: actions/showgroup.php:255 actions/tagother.php:104 #: lib/groupeditform.php:157 lib/userprofile.php:149 msgid "Full name" msgstr "Fullt nafn" @@ -2741,7 +2779,7 @@ msgid "Bio" msgstr "Lýsing" #: actions/profilesettings.php:132 actions/register.php:471 -#: actions/showgroup.php:256 actions/tagother.php:112 +#: actions/showgroup.php:264 actions/tagother.php:112 #: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:164 msgid "Location" @@ -2826,7 +2864,8 @@ msgstr "Gat ekki vistað persónulega síðu." msgid "Couldn't save tags." msgstr "Gat ekki vistað merki." -#: actions/profilesettings.php:391 lib/adminpanelaction.php:137 +#. TRANS: Message after successful saving of administrative settings. +#: actions/profilesettings.php:391 lib/adminpanelaction.php:141 msgid "Settings saved." msgstr "Stillingar vistaðar." @@ -2839,45 +2878,45 @@ msgstr "" msgid "Could not retrieve public stream." msgstr "Gat ekki sótt efni úr almenningsveitu." -#: actions/public.php:129 +#: actions/public.php:130 #, php-format msgid "Public timeline, page %d" msgstr "Almenningsrás, síða %d" -#: actions/public.php:131 lib/publicgroupnav.php:79 +#: actions/public.php:132 lib/publicgroupnav.php:79 msgid "Public timeline" msgstr "Almenningsrás" -#: actions/public.php:159 +#: actions/public.php:160 msgid "Public Stream Feed (RSS 1.0)" msgstr "" -#: actions/public.php:163 +#: actions/public.php:164 msgid "Public Stream Feed (RSS 2.0)" msgstr "" -#: actions/public.php:167 +#: actions/public.php:168 msgid "Public Stream Feed (Atom)" msgstr "" -#: actions/public.php:187 +#: actions/public.php:188 #, php-format msgid "" "This is the public timeline for %%site.name%% but no one has posted anything " "yet." msgstr "" -#: actions/public.php:190 +#: actions/public.php:191 msgid "Be the first to post!" msgstr "" -#: actions/public.php:194 +#: actions/public.php:195 #, php-format msgid "" "Why not [register an account](%%action.register%%) and be the first to post!" msgstr "" -#: actions/public.php:241 +#: actions/public.php:242 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2886,7 +2925,7 @@ msgid "" "friends, family, and colleagues! ([Read more](%%doc.help%%))" msgstr "" -#: actions/public.php:246 +#: actions/public.php:247 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -3059,8 +3098,7 @@ msgstr "" msgid "Registration successful" msgstr "Nýskráning tókst" -#: actions/register.php:114 actions/register.php:503 lib/action.php:463 -#: lib/logingroupnav.php:85 +#: actions/register.php:114 actions/register.php:503 lib/logingroupnav.php:85 msgid "Register" msgstr "Nýskrá" @@ -3250,7 +3288,7 @@ msgstr "Þú getur ekki nýskráð þig nema þú samþykkir leyfið." msgid "You already repeated that notice." msgstr "Þú hefur nú þegar lokað á þennan notanda." -#: actions/repeat.php:114 lib/noticelist.php:656 +#: actions/repeat.php:114 lib/noticelist.php:674 #, fuzzy msgid "Repeated" msgstr "Í sviðsljósinu" @@ -3259,47 +3297,47 @@ msgstr "Í sviðsljósinu" msgid "Repeated!" msgstr "" -#: actions/replies.php:125 actions/repliesrss.php:68 +#: actions/replies.php:126 actions/repliesrss.php:68 #: lib/personalgroupnav.php:105 #, php-format msgid "Replies to %s" msgstr "Svör við %s" -#: actions/replies.php:127 +#: actions/replies.php:128 #, fuzzy, php-format msgid "Replies to %1$s, page %2$d" msgstr "Skilaboð til %1$s á %2$s" -#: actions/replies.php:144 +#: actions/replies.php:145 #, php-format msgid "Replies feed for %s (RSS 1.0)" msgstr "" -#: actions/replies.php:151 +#: actions/replies.php:152 #, php-format msgid "Replies feed for %s (RSS 2.0)" msgstr "" -#: actions/replies.php:158 +#: actions/replies.php:159 #, fuzzy, php-format msgid "Replies feed for %s (Atom)" msgstr "Bablveita fyrir hópinn %s" -#: actions/replies.php:198 +#: actions/replies.php:199 #, php-format msgid "" "This is the timeline showing replies to %1$s but %2$s hasn't received a " "notice to his attention yet." msgstr "" -#: actions/replies.php:203 +#: actions/replies.php:204 #, php-format msgid "" "You can engage other users in a conversation, subscribe to more people or " "[join groups](%%action.groups%%)." msgstr "" -#: actions/replies.php:205 +#: actions/replies.php:206 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) or [post something to his or her " @@ -3326,7 +3364,6 @@ msgid "User is already sandboxed." msgstr "" #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:336 msgid "Sessions" msgstr "" @@ -3351,7 +3388,7 @@ msgid "Turn on debugging output for sessions." msgstr "" #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/useradminpanel.php:293 +#: actions/useradminpanel.php:294 #, fuzzy msgid "Save site settings" msgstr "Stillingar fyrir mynd" @@ -3386,7 +3423,7 @@ msgstr "Uppröðun" msgid "Description" msgstr "Lýsing" -#: actions/showapplication.php:192 actions/showgroup.php:429 +#: actions/showapplication.php:192 actions/showgroup.php:437 #: lib/profileaction.php:174 msgid "Statistics" msgstr "Tölfræði" @@ -3448,35 +3485,35 @@ msgstr "Uppáhaldsbabl %s" msgid "Could not retrieve favorite notices." msgstr "Gat ekki sótt uppáhaldsbabl." -#: actions/showfavorites.php:170 +#: actions/showfavorites.php:171 #, fuzzy, php-format msgid "Feed for favorites of %s (RSS 1.0)" msgstr "Bablveita uppáhaldsbabls %s" -#: actions/showfavorites.php:177 +#: actions/showfavorites.php:178 #, fuzzy, php-format msgid "Feed for favorites of %s (RSS 2.0)" msgstr "Bablveita uppáhaldsbabls %s" -#: actions/showfavorites.php:184 +#: actions/showfavorites.php:185 #, fuzzy, php-format msgid "Feed for favorites of %s (Atom)" msgstr "Bablveita uppáhaldsbabls %s" -#: actions/showfavorites.php:205 +#: actions/showfavorites.php:206 msgid "" "You haven't chosen any favorite notices yet. Click the fave button on " "notices you like to bookmark them for later or shed a spotlight on them." msgstr "" -#: actions/showfavorites.php:207 +#: actions/showfavorites.php:208 #, 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:211 +#: actions/showfavorites.php:212 #, php-format msgid "" "%s hasn't added any notices to his favorites yet. Why not [register an " @@ -3484,7 +3521,7 @@ msgid "" "would add to their favorites :)" msgstr "" -#: actions/showfavorites.php:242 +#: actions/showfavorites.php:243 msgid "This is a way to share what you like." msgstr "" @@ -3498,67 +3535,67 @@ msgstr "%s hópurinn" msgid "%1$s group, page %2$d" msgstr "Hópmeðlimir %s, síða %d" -#: actions/showgroup.php:218 +#: actions/showgroup.php:226 msgid "Group profile" msgstr "Hópssíðan" -#: actions/showgroup.php:263 actions/tagother.php:118 +#: actions/showgroup.php:271 actions/tagother.php:118 #: actions/userauthorization.php:175 lib/userprofile.php:177 msgid "URL" msgstr "Vefslóð" -#: actions/showgroup.php:274 actions/tagother.php:128 +#: actions/showgroup.php:282 actions/tagother.php:128 #: actions/userauthorization.php:187 lib/userprofile.php:194 msgid "Note" msgstr "Athugasemd" -#: actions/showgroup.php:284 lib/groupeditform.php:184 +#: actions/showgroup.php:292 lib/groupeditform.php:184 msgid "Aliases" msgstr "" -#: actions/showgroup.php:293 +#: actions/showgroup.php:301 msgid "Group actions" msgstr "Hópsaðgerðir" -#: actions/showgroup.php:328 +#: actions/showgroup.php:336 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "" -#: actions/showgroup.php:334 +#: actions/showgroup.php:342 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "" -#: actions/showgroup.php:340 +#: actions/showgroup.php:348 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "" -#: actions/showgroup.php:345 +#: actions/showgroup.php:353 #, fuzzy, php-format msgid "FOAF for %s group" msgstr "%s hópurinn" -#: actions/showgroup.php:381 actions/showgroup.php:438 lib/groupnav.php:91 +#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 msgid "Members" msgstr "Meðlimir" -#: actions/showgroup.php:386 lib/profileaction.php:117 +#: actions/showgroup.php:394 lib/profileaction.php:117 #: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(Ekkert)" -#: actions/showgroup.php:392 +#: actions/showgroup.php:400 msgid "All members" msgstr "Allir meðlimir" -#: actions/showgroup.php:432 +#: actions/showgroup.php:440 msgid "Created" msgstr "" -#: actions/showgroup.php:448 +#: actions/showgroup.php:456 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3568,7 +3605,7 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showgroup.php:454 +#: actions/showgroup.php:462 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3577,7 +3614,7 @@ msgid "" "their life and interests. " msgstr "" -#: actions/showgroup.php:482 +#: actions/showgroup.php:490 msgid "Admins" msgstr "" @@ -4040,22 +4077,22 @@ msgstr "Jabber snarskilaboðaþjónusta" msgid "SMS" msgstr "SMS" -#: actions/tag.php:68 +#: actions/tag.php:69 #, fuzzy, php-format msgid "Notices tagged with %1$s, page %2$d" msgstr "Notendur sjálfmerktir með %s - síða %d" -#: actions/tag.php:86 +#: actions/tag.php:87 #, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "" -#: actions/tag.php:92 +#: actions/tag.php:93 #, fuzzy, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Bablveita fyrir %s" -#: actions/tag.php:98 +#: actions/tag.php:99 #, php-format msgid "Notice feed for tag %s (Atom)" msgstr "" @@ -4112,7 +4149,7 @@ msgstr "" msgid "No such tag." msgstr "Ekkert þannig merki." -#: actions/twitapitrends.php:87 +#: actions/twitapitrends.php:85 msgid "API method under construction." msgstr "Aðferð í forritsskilum er í þróun." @@ -4145,77 +4182,79 @@ msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" -#: actions/useradminpanel.php:58 lib/adminpanelaction.php:321 -#: lib/personalgroupnav.php:115 +#. TRANS: User admin panel title +#: actions/useradminpanel.php:59 +#, fuzzy +msgctxt "TITLE" msgid "User" msgstr "Notandi" -#: actions/useradminpanel.php:69 +#: actions/useradminpanel.php:70 msgid "User settings for this StatusNet site." msgstr "" -#: actions/useradminpanel.php:148 +#: actions/useradminpanel.php:149 msgid "Invalid bio limit. Must be numeric." msgstr "" -#: actions/useradminpanel.php:154 +#: actions/useradminpanel.php:155 msgid "Invalid welcome text. Max length is 255 characters." msgstr "" -#: actions/useradminpanel.php:164 +#: actions/useradminpanel.php:165 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" -#: actions/useradminpanel.php:217 lib/accountsettingsaction.php:108 +#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Persónuleg síða" -#: actions/useradminpanel.php:221 +#: actions/useradminpanel.php:222 msgid "Bio Limit" msgstr "" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:223 msgid "Maximum length of a profile bio in characters." msgstr "" -#: actions/useradminpanel.php:230 +#: actions/useradminpanel.php:231 #, fuzzy msgid "New users" msgstr "Bjóða nýjum notendum að vera með" -#: actions/useradminpanel.php:234 +#: actions/useradminpanel.php:235 msgid "New user welcome" msgstr "" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:236 msgid "Welcome text for new users (Max 255 chars)." msgstr "" -#: actions/useradminpanel.php:240 +#: actions/useradminpanel.php:241 #, fuzzy msgid "Default subscription" msgstr "Allar áskriftir" -#: actions/useradminpanel.php:241 +#: actions/useradminpanel.php:242 #, fuzzy msgid "Automatically subscribe new users to this user." msgstr "" "Gerast sjálfkrafa áskrifandi að hverjum þeim sem gerist áskrifandi að þér " "(best fyrir ómannlega notendur)" -#: actions/useradminpanel.php:250 +#: actions/useradminpanel.php:251 #, fuzzy msgid "Invitations" msgstr "Boðskort hefur verið sent út" -#: actions/useradminpanel.php:255 +#: actions/useradminpanel.php:256 #, fuzzy msgid "Invitations enabled" msgstr "Boðskort hefur verið sent út" -#: actions/useradminpanel.php:257 +#: actions/useradminpanel.php:258 msgid "Whether to allow users to invite new users." msgstr "" @@ -4399,7 +4438,7 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:196 lib/action.php:747 +#: actions/version.php:196 lib/action.php:778 #, fuzzy msgid "Version" msgstr "Persónulegt" @@ -4440,6 +4479,11 @@ msgstr "Gat ekki uppfært hóp." msgid "Group leave failed." msgstr "Hópssíðan" +#: classes/Local_group.php:41 +#, fuzzy +msgid "Could not update local group." +msgstr "Gat ekki uppfært hóp." + #: classes/Login_token.php:76 #, fuzzy, php-format msgid "Could not create login token for %s" @@ -4458,46 +4502,46 @@ msgstr "Gat ekki skeytt skilaboðum inn í." msgid "Could not update message with new URI." msgstr "Gat ekki uppfært skilaboð með nýju veffangi." -#: classes/Notice.php:157 +#: classes/Notice.php:172 #, php-format msgid "DB error inserting hashtag: %s" msgstr "Gagnagrunnsvilla við innsetningu myllumerkis: %s" -#: classes/Notice.php:222 +#: classes/Notice.php:239 msgid "Problem saving notice. Too long." msgstr "" -#: classes/Notice.php:226 +#: classes/Notice.php:243 msgid "Problem saving notice. Unknown user." msgstr "Gat ekki vistað babl. Óþekktur notandi." -#: classes/Notice.php:231 +#: classes/Notice.php:248 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." -#: classes/Notice.php:237 +#: classes/Notice.php:254 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." msgstr "" -#: classes/Notice.php:243 +#: classes/Notice.php:260 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:309 classes/Notice.php:335 +#: classes/Notice.php:326 classes/Notice.php:352 msgid "Problem saving notice." msgstr "Vandamál komu upp við að vista babl." -#: classes/Notice.php:882 +#: classes/Notice.php:911 #, fuzzy msgid "Problem saving group inbox." msgstr "Vandamál komu upp við að vista babl." -#: classes/Notice.php:1407 +#: classes/Notice.php:1442 #, fuzzy, php-format msgid "RT @%1$s %2$s" msgstr "%1$s (%2$s)" @@ -4529,19 +4573,29 @@ msgstr "Gat ekki eytt áskrift." msgid "Couldn't delete subscription." msgstr "Gat ekki eytt áskrift." -#: classes/User.php:372 +#: classes/User.php:373 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "" -#: classes/User_group.php:423 +#: classes/User_group.php:462 msgid "Could not create group." msgstr "Gat ekki búið til hóp." -#: classes/User_group.php:452 +#: classes/User_group.php:471 +#, fuzzy +msgid "Could not set group URI." +msgstr "Gat ekki skráð hópmeðlimi." + +#: classes/User_group.php:492 msgid "Could not set group membership." msgstr "Gat ekki skráð hópmeðlimi." +#: classes/User_group.php:506 +#, fuzzy +msgid "Could not save local group info." +msgstr "Gat ekki vistað áskrift." + #: lib/accountsettingsaction.php:108 msgid "Change your profile settings" msgstr "Breyta persónulegu stillingunum þínum" @@ -4583,124 +4637,192 @@ msgstr "Ónafngreind síða" msgid "Primary site navigation" msgstr "Stikl aðalsíðu" +#. TRANS: Tooltip for main menu option "Personal" #: lib/action.php:439 -msgid "Home" -msgstr "Heim" - -#: lib/action.php:439 +#, fuzzy +msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Persónuleg síða og vinarás" -#: lib/action.php:441 +#: lib/action.php:442 +#, fuzzy +msgctxt "MENU" +msgid "Personal" +msgstr "Persónulegt" + +#. TRANS: Tooltip for main menu option "Account" +#: lib/action.php:444 +#, fuzzy +msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "" "Breyttu tölvupóstinum þínum, einkennismyndinni þinni, lykilorðinu þínu, " "persónulegu síðunni þinni" -#: lib/action.php:444 -msgid "Connect" -msgstr "Tengjast" - -#: lib/action.php:444 +#: lib/action.php:447 #, fuzzy +msgctxt "MENU" +msgid "Account" +msgstr "Aðgangur" + +#. TRANS: Tooltip for main menu option "Services" +#: lib/action.php:450 +#, fuzzy +msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Gat ekki framsent til vefþjóns: %s" -#: lib/action.php:448 +#: lib/action.php:453 #, fuzzy +msgctxt "MENU" +msgid "Connect" +msgstr "Tengjast" + +#. TRANS: Tooltip for menu option "Admin" +#: lib/action.php:457 +#, fuzzy +msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Stikl aðalsíðu" -#: lib/action.php:452 lib/subgroupnav.php:105 -msgid "Invite" -msgstr "Bjóða" +#: lib/action.php:460 +#, fuzzy +msgctxt "MENU" +msgid "Admin" +msgstr "Stjórnandi" -#: lib/action.php:453 lib/subgroupnav.php:106 -#, php-format +#. TRANS: Tooltip for main menu option "Invite" +#: lib/action.php:464 +#, fuzzy, php-format +msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Bjóða vinum og vandamönnum að slást í hópinn á %s" -#: lib/action.php:458 -msgid "Logout" -msgstr "Útskráning" +#: lib/action.php:467 +#, fuzzy +msgctxt "MENU" +msgid "Invite" +msgstr "Bjóða" -#: lib/action.php:458 +#. TRANS: Tooltip for main menu option "Logout" +#: lib/action.php:473 +#, fuzzy +msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Skrá þig út af síðunni" -#: lib/action.php:463 +#: lib/action.php:476 +#, fuzzy +msgctxt "MENU" +msgid "Logout" +msgstr "Útskráning" + +#. TRANS: Tooltip for main menu option "Register" +#: lib/action.php:481 +#, fuzzy +msgctxt "TOOLTIP" msgid "Create an account" msgstr "Búa til aðgang" -#: lib/action.php:466 +#: lib/action.php:484 +#, fuzzy +msgctxt "MENU" +msgid "Register" +msgstr "Nýskrá" + +#. TRANS: Tooltip for main menu option "Login" +#: lib/action.php:487 +#, fuzzy +msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Skrá þig inn á síðuna" -#: lib/action.php:469 lib/action.php:732 -msgid "Help" -msgstr "Hjálp" +#: lib/action.php:490 +#, fuzzy +msgctxt "MENU" +msgid "Login" +msgstr "Innskráning" -#: lib/action.php:469 +#. TRANS: Tooltip for main menu option "Help" +#: lib/action.php:493 +#, fuzzy +msgctxt "TOOLTIP" msgid "Help me!" msgstr "Hjálp!" -#: lib/action.php:472 lib/searchaction.php:127 -msgid "Search" -msgstr "Leita" +#: lib/action.php:496 +#, fuzzy +msgctxt "MENU" +msgid "Help" +msgstr "Hjálp" -#: lib/action.php:472 +#. TRANS: Tooltip for main menu option "Search" +#: lib/action.php:499 +#, fuzzy +msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Leita að fólki eða texta" -#: lib/action.php:493 +#: lib/action.php:502 +#, fuzzy +msgctxt "MENU" +msgid "Search" +msgstr "Leita" + +#. TRANS: DT element for site notice. String is hidden in default CSS. +#: lib/action.php:524 msgid "Site notice" msgstr "Babl vefsíðunnar" -#: lib/action.php:559 +#: lib/action.php:590 msgid "Local views" msgstr "Staðbundin sýn" -#: lib/action.php:625 +#: lib/action.php:656 msgid "Page notice" msgstr "Babl síðunnar" -#: lib/action.php:727 +#: lib/action.php:758 msgid "Secondary site navigation" msgstr "Stikl undirsíðu" -#: lib/action.php:734 +#: lib/action.php:763 +msgid "Help" +msgstr "Hjálp" + +#: lib/action.php:765 msgid "About" msgstr "Um" -#: lib/action.php:736 +#: lib/action.php:767 msgid "FAQ" msgstr "Spurt og svarað" -#: lib/action.php:740 +#: lib/action.php:771 msgid "TOS" msgstr "" -#: lib/action.php:743 +#: lib/action.php:774 msgid "Privacy" msgstr "Friðhelgi" -#: lib/action.php:745 +#: lib/action.php:776 msgid "Source" msgstr "Frumþula" -#: lib/action.php:749 +#: lib/action.php:780 msgid "Contact" msgstr "Tengiliður" -#: lib/action.php:751 +#: lib/action.php:782 msgid "Badge" msgstr "" -#: lib/action.php:779 +#: lib/action.php:810 msgid "StatusNet software license" msgstr "Hugbúnaðarleyfi StatusNet" -#: lib/action.php:782 +#: lib/action.php:813 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4709,12 +4831,12 @@ msgstr "" "**%%site.name%%** er örbloggsþjónusta í boði [%%site.broughtby%%](%%site." "broughtbyurl%%). " -#: lib/action.php:784 +#: lib/action.php:815 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** er örbloggsþjónusta." -#: lib/action.php:786 +#: lib/action.php:817 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4725,116 +4847,168 @@ msgstr "" "sem er gefinn út undir [GNU Affero almenningsleyfinu](http://www.fsf.org/" "licensing/licenses/agpl-3.0.html)." -#: lib/action.php:801 +#: lib/action.php:832 #, fuzzy msgid "Site content license" msgstr "Hugbúnaðarleyfi StatusNet" -#: lib/action.php:806 +#: lib/action.php:837 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:811 +#: lib/action.php:842 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:814 +#: lib/action.php:845 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" -#: lib/action.php:827 +#: lib/action.php:858 msgid "All " msgstr "Allt " -#: lib/action.php:833 +#: lib/action.php:864 msgid "license." msgstr "leyfi." -#: lib/action.php:1132 +#: lib/action.php:1163 msgid "Pagination" msgstr "Uppröðun" -#: lib/action.php:1141 +#: lib/action.php:1172 msgid "After" msgstr "Eftir" -#: lib/action.php:1149 +#: lib/action.php:1180 msgid "Before" msgstr "Áður" -#: lib/activity.php:382 +#: lib/activity.php:449 msgid "Can't handle remote content yet." msgstr "" -#: lib/activity.php:410 +#: lib/activity.php:477 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activity.php:414 +#: lib/activity.php:481 msgid "Can't handle embedded Base64 content yet." msgstr "" -#: lib/adminpanelaction.php:96 +#. TRANS: Client error message +#: lib/adminpanelaction.php:98 #, fuzzy msgid "You cannot make changes to this site." msgstr "Þú getur ekki sent þessum notanda skilaboð." -#: lib/adminpanelaction.php:107 +#. TRANS: Client error message +#: lib/adminpanelaction.php:110 #, fuzzy msgid "Changes to that panel are not allowed." msgstr "Nýskráning ekki leyfð." -#: lib/adminpanelaction.php:206 +#. TRANS: Client error message +#: lib/adminpanelaction.php:211 #, fuzzy msgid "showForm() not implemented." msgstr "Skipun hefur ekki verið fullbúin" -#: lib/adminpanelaction.php:235 +#. TRANS: Client error message +#: lib/adminpanelaction.php:241 #, fuzzy msgid "saveSettings() not implemented." msgstr "Skipun hefur ekki verið fullbúin" -#: lib/adminpanelaction.php:258 +#. TRANS: Client error message +#: lib/adminpanelaction.php:265 msgid "Unable to delete design setting." msgstr "" -#: lib/adminpanelaction.php:312 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:330 #, fuzzy msgid "Basic site configuration" msgstr "Staðfesting tölvupóstfangs" -#: lib/adminpanelaction.php:317 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:332 +#, fuzzy +msgctxt "MENU" +msgid "Site" +msgstr "Bjóða" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:338 #, fuzzy msgid "Design configuration" msgstr "SMS staðfesting" -#: lib/adminpanelaction.php:322 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:340 +#, fuzzy +msgctxt "MENU" +msgid "Design" +msgstr "Persónulegt" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:346 #, fuzzy msgid "User configuration" msgstr "SMS staðfesting" -#: lib/adminpanelaction.php:327 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:348 +#, fuzzy +msgctxt "MENU" +msgid "User" +msgstr "Notandi" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:354 #, fuzzy msgid "Access configuration" msgstr "SMS staðfesting" -#: lib/adminpanelaction.php:332 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:356 +#, fuzzy +msgctxt "MENU" +msgid "Access" +msgstr "Samþykkja" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:362 #, fuzzy msgid "Paths configuration" msgstr "SMS staðfesting" -#: lib/adminpanelaction.php:337 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:364 +msgctxt "MENU" +msgid "Paths" +msgstr "" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:370 #, fuzzy msgid "Sessions configuration" msgstr "SMS staðfesting" -#: lib/apiauth.php:95 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:372 +#, fuzzy +msgctxt "MENU" +msgid "Sessions" +msgstr "Persónulegt" + +#: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." msgstr "" -#: lib/apiauth.php:273 +#: lib/apiauth.php:272 #, php-format msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" msgstr "" @@ -4929,12 +5103,12 @@ msgstr "" msgid "Tags for this attachment" msgstr "" -#: lib/authenticationplugin.php:218 lib/authenticationplugin.php:223 +#: lib/authenticationplugin.php:220 lib/authenticationplugin.php:225 #, fuzzy msgid "Password changing failed" msgstr "Lykilorðabreyting" -#: lib/authenticationplugin.php:233 +#: lib/authenticationplugin.php:235 #, fuzzy msgid "Password changing is not allowed" msgstr "Lykilorðabreyting" @@ -5215,20 +5389,20 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:136 +#: lib/common.php:148 #, fuzzy msgid "No configuration file found. " msgstr "Enginn staðfestingarlykill." -#: lib/common.php:137 +#: lib/common.php:149 msgid "I looked for configuration files in the following places: " msgstr "" -#: lib/common.php:139 +#: lib/common.php:151 msgid "You may wish to run the installer to fix this." msgstr "" -#: lib/common.php:140 +#: lib/common.php:152 #, fuzzy msgid "Go to the installer." msgstr "Skrá þig inn á síðuna" @@ -5420,23 +5594,23 @@ msgstr "Kerfisvilla kom upp við upphal skráar." msgid "Not an image or corrupt file." msgstr "Annaðhvort ekki mynd eða þá að skráin er gölluð." -#: lib/imagefile.php:105 +#: lib/imagefile.php:109 msgid "Unsupported image file format." msgstr "Skráarsnið myndar ekki stutt." -#: lib/imagefile.php:118 +#: lib/imagefile.php:122 msgid "Lost our file." msgstr "Týndum skránni okkar" -#: lib/imagefile.php:150 lib/imagefile.php:197 +#: lib/imagefile.php:166 lib/imagefile.php:231 msgid "Unknown file type" msgstr "Óþekkt skráargerð" -#: lib/imagefile.php:217 +#: lib/imagefile.php:251 msgid "MB" msgstr "" -#: lib/imagefile.php:219 +#: lib/imagefile.php:253 msgid "kB" msgstr "" @@ -5741,6 +5915,12 @@ msgstr "Til" msgid "Available characters" msgstr "Leyfileg tákn" +#: lib/messageform.php:178 lib/noticeform.php:236 +#, fuzzy +msgctxt "Send button for sending notice" +msgid "Send" +msgstr "Senda" + #: lib/noticeform.php:160 msgid "Send a notice" msgstr "Senda babl" @@ -5800,24 +5980,24 @@ msgstr "" msgid "at" msgstr "" -#: lib/noticelist.php:558 +#: lib/noticelist.php:566 msgid "in context" msgstr "" -#: lib/noticelist.php:583 +#: lib/noticelist.php:601 #, fuzzy msgid "Repeated by" msgstr "Í sviðsljósinu" -#: lib/noticelist.php:610 +#: lib/noticelist.php:628 msgid "Reply to this notice" msgstr "Svara þessu babli" -#: lib/noticelist.php:611 +#: lib/noticelist.php:629 msgid "Reply" msgstr "Svara" -#: lib/noticelist.php:655 +#: lib/noticelist.php:673 #, fuzzy msgid "Notice repeated" msgstr "Babl sent inn" @@ -5867,6 +6047,10 @@ msgstr "Svör" msgid "Favorites" msgstr "Uppáhald" +#: lib/personalgroupnav.php:115 +msgid "User" +msgstr "Notandi" + #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "Innhólf" @@ -5960,7 +6144,7 @@ msgstr "Svara þessu babli" msgid "Repeat this notice" msgstr "Svara þessu babli" -#: lib/router.php:665 +#: lib/router.php:668 msgid "No single user defined for single-user mode." msgstr "" @@ -5982,6 +6166,10 @@ msgstr "" msgid "Keyword(s)" msgstr "" +#: lib/searchaction.php:127 +msgid "Search" +msgstr "Leita" + #: lib/searchaction.php:162 msgid "Search help" msgstr "" @@ -6035,6 +6223,15 @@ msgstr "Fólk sem eru áskrifendur að %s" msgid "Groups %s is a member of" msgstr "Hópar sem %s er meðlimur í" +#: lib/subgroupnav.php:105 +msgid "Invite" +msgstr "Bjóða" + +#: 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" + #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -6107,47 +6304,47 @@ msgstr "Skilaboð" msgid "Moderate" msgstr "" -#: lib/util.php:952 +#: lib/util.php:1013 msgid "a few seconds ago" msgstr "fyrir nokkrum sekúndum" -#: lib/util.php:954 +#: lib/util.php:1015 msgid "about a minute ago" msgstr "fyrir um einni mínútu síðan" -#: lib/util.php:956 +#: lib/util.php:1017 #, php-format msgid "about %d minutes ago" msgstr "fyrir um %d mínútum síðan" -#: lib/util.php:958 +#: lib/util.php:1019 msgid "about an hour ago" msgstr "fyrir um einum klukkutíma síðan" -#: lib/util.php:960 +#: lib/util.php:1021 #, php-format msgid "about %d hours ago" msgstr "fyrir um %d klukkutímum síðan" -#: lib/util.php:962 +#: lib/util.php:1023 msgid "about a day ago" msgstr "fyrir um einum degi síðan" -#: lib/util.php:964 +#: lib/util.php:1025 #, php-format msgid "about %d days ago" msgstr "fyrir um %d dögum síðan" -#: lib/util.php:966 +#: lib/util.php:1027 msgid "about a month ago" msgstr "fyrir um einum mánuði síðan" -#: lib/util.php:968 +#: lib/util.php:1029 #, php-format msgid "about %d months ago" msgstr "fyrir um %d mánuðum síðan" -#: lib/util.php:970 +#: lib/util.php:1031 msgid "about a year ago" msgstr "fyrir um einu ári síðan" diff --git a/locale/it/LC_MESSAGES/statusnet.po b/locale/it/LC_MESSAGES/statusnet.po index 7e3d7998a1..61d4cfaf91 100644 --- a/locale/it/LC_MESSAGES/statusnet.po +++ b/locale/it/LC_MESSAGES/statusnet.po @@ -9,77 +9,84 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-02-24 23:49+0000\n" -"PO-Revision-Date: 2010-02-24 23:51:09+0000\n" +"POT-Creation-Date: 2010-03-02 21:02+0000\n" +"PO-Revision-Date: 2010-03-02 21:03:07+0000\n" "Language-Team: Italian\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r62925); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: it\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: actions/accessadminpanel.php:54 lib/adminpanelaction.php:326 +#. TRANS: Page title +#: actions/accessadminpanel.php:55 msgid "Access" msgstr "Accesso" -#: actions/accessadminpanel.php:65 +#. TRANS: Page notice +#: actions/accessadminpanel.php:67 msgid "Site access settings" msgstr "Impostazioni di accesso al sito" -#: actions/accessadminpanel.php:158 +#. TRANS: Form legend for registration form. +#: actions/accessadminpanel.php:161 msgid "Registration" msgstr "Registrazione" -#: actions/accessadminpanel.php:161 -msgid "Private" -msgstr "Privato" - -#: actions/accessadminpanel.php:163 +#. TRANS: Checkbox instructions for admin setting "Private" +#: actions/accessadminpanel.php:165 msgid "Prohibit anonymous users (not logged in) from viewing site?" msgstr "" "Proibire agli utenti anonimi (che non hanno effettuato l'accesso) di vedere " "il sito?" +#. TRANS: Checkbox label for prohibiting anonymous users from viewing site. #: actions/accessadminpanel.php:167 -msgid "Invite only" -msgstr "Solo invito" +#, fuzzy +msgctxt "LABEL" +msgid "Private" +msgstr "Privato" -#: actions/accessadminpanel.php:169 +#. TRANS: Checkbox instructions for admin setting "Invite only" +#: actions/accessadminpanel.php:174 msgid "Make registration invitation only." msgstr "Rende la registrazione solo su invito" -#: actions/accessadminpanel.php:173 -msgid "Closed" -msgstr "Chiuso" +#. TRANS: Checkbox label for configuring site as invite only. +#: actions/accessadminpanel.php:176 +msgid "Invite only" +msgstr "Solo invito" -#: actions/accessadminpanel.php:175 +#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations) +#: actions/accessadminpanel.php:183 msgid "Disable new registrations." msgstr "Disabilita la creazione di nuovi account" -#: actions/accessadminpanel.php:189 actions/designadminpanel.php:586 -#: actions/emailsettings.php:195 actions/imsettings.php:163 -#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 -#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 -#: actions/siteadminpanel.php:336 actions/smssettings.php:181 -#: actions/subscriptions.php:208 actions/tagother.php:154 -#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 -#: lib/applicationeditform.php:334 lib/designsettings.php:256 -#: lib/groupeditform.php:202 -msgid "Save" -msgstr "Salva" +#. TRANS: Checkbox label for disabling new user registrations. +#: actions/accessadminpanel.php:185 +msgid "Closed" +msgstr "Chiuso" -#: actions/accessadminpanel.php:189 +#. TRANS: Title / tooltip for button to save access settings in site admin panel +#: actions/accessadminpanel.php:202 msgid "Save access settings" msgstr "Salva impostazioni di accesso" -#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 -#: actions/showfavorites.php:137 actions/tag.php:51 +#: actions/accessadminpanel.php:203 +#, fuzzy +msgctxt "BUTTON" +msgid "Save" +msgstr "Salva" + +#. TRANS: Server error when page not found (404) +#: actions/all.php:64 actions/public.php:98 actions/replies.php:93 +#: actions/showfavorites.php:138 actions/tag.php:52 msgid "No such page" msgstr "Pagina inesistente." -#: actions/all.php:74 actions/allrss.php:68 +#: actions/all.php:75 actions/allrss.php:68 #: actions/apiaccountupdatedeliverydevice.php:113 #: actions/apiaccountupdateprofile.php:105 #: actions/apiaccountupdateprofilebackgroundimage.php:116 @@ -93,45 +100,53 @@ msgstr "Pagina inesistente." #: actions/apitimelinehome.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/otp.php:76 -#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154 -#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 -#: actions/showfavorites.php:105 actions/userbyid.php:74 -#: actions/usergroups.php:91 actions/userrss.php:38 actions/xrds.php:71 -#: lib/command.php:163 lib/command.php:302 lib/command.php:355 -#: lib/command.php:401 lib/command.php:462 lib/command.php:518 -#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 +#: actions/hcard.php:67 actions/microsummary.php:62 actions/newmessage.php:116 +#: actions/otp.php:76 actions/remotesubscribe.php:145 +#: actions/remotesubscribe.php:154 actions/replies.php:73 +#: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/xrds.php:71 lib/command.php:163 lib/command.php:302 +#: lib/command.php:355 lib/command.php:401 lib/command.php:462 +#: lib/command.php:518 lib/galleryaction.php:59 lib/mailbox.php:82 +#: lib/profileaction.php:77 msgid "No such user." msgstr "Utente inesistente." -#: actions/all.php:84 +#. TRANS: Page title. %1$s is user nickname, %2$d is page number +#: actions/all.php:86 #, php-format msgid "%1$s and friends, page %2$d" msgstr "%1$s e amici, pagina %2$d" -#: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 +#. TRANS: Page title. %1$s is user nickname +#. TRANS: H1 text. %1$s is user nickname +#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" msgstr "%s e amici" -#: actions/all.php:99 +#. TRANS: %1$s is user nickname +#: actions/all.php:103 #, php-format msgid "Feed for friends of %s (RSS 1.0)" msgstr "Feed degli amici di %s (RSS 1.0)" -#: actions/all.php:107 +#. TRANS: %1$s is user nickname +#: actions/all.php:112 #, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "Feed degli amici di %s (RSS 2.0)" -#: actions/all.php:115 +#. TRANS: %1$s is user nickname +#: actions/all.php:121 #, php-format msgid "Feed for friends of %s (Atom)" msgstr "Feed degli amici di %s (Atom)" -#: actions/all.php:127 +#. TRANS: %1$s is user nickname +#: actions/all.php:134 #, php-format msgid "" "This is the timeline for %s and friends but no one has posted anything yet." @@ -139,7 +154,7 @@ msgstr "" "Questa è l'attività di %s e i suoi amici, ma nessuno ha ancora scritto " "qualche cosa." -#: actions/all.php:132 +#: actions/all.php:139 #, php-format msgid "" "Try subscribing to more people, [join a group](%%action.groups%%) or post " @@ -148,7 +163,8 @@ msgstr "" "Prova ad abbonarti a più persone, [entra in un gruppo](%%action.groups%%) o " "scrivi un messaggio." -#: actions/all.php:134 +#. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@" +#: actions/all.php:142 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) from his profile or [post something to " @@ -158,7 +174,7 @@ msgstr "" "qualche cosa alla sua attenzione](%%%%action.newnotice%%%%?status_textarea=%3" "$s)." -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211 +#: actions/all.php:145 actions/replies.php:210 actions/showstream.php:211 #, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " @@ -167,7 +183,8 @@ msgstr "" "Perché non [crei un account](%%%%action.register%%%%) e richiami %s o scrivi " "un messaggio alla sua attenzione." -#: actions/all.php:165 +#. TRANS: H1 text +#: actions/all.php:174 msgid "You and friends" msgstr "Tu e i tuoi amici" @@ -185,20 +202,20 @@ msgstr "Messaggi da %1$s e amici su %2$s!" #: actions/apiaccountverifycredentials.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:128 actions/apigroupcreate.php:136 +#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: actions/apigroupleave.php:141 actions/apigrouplist.php:132 #: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 #: actions/apigroupshow.php:115 actions/apihelptest.php:88 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 -#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184 +#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 #: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:207 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 msgid "API method not found." msgstr "Metodo delle API non trovato." @@ -232,8 +249,9 @@ msgstr "Impossibile aggiornare l'utente." #: actions/apiaccountupdateprofilebackgroundimage.php:194 #: actions/apiaccountupdateprofilecolors.php:185 #: 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 +#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 +#: 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." @@ -259,7 +277,7 @@ msgstr "" #: actions/apiaccountupdateprofilebackgroundimage.php:146 #: actions/apiaccountupdateprofilecolors.php:164 #: actions/apiaccountupdateprofilecolors.php:174 -#: actions/groupdesignsettings.php:287 actions/groupdesignsettings.php:297 +#: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300 #: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 #: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 msgid "Unable to save your design settings." @@ -369,7 +387,7 @@ msgstr "Impossibile determinare l'utente sorgente." msgid "Could not find target user." msgstr "Impossibile trovare l'utente destinazione." -#: actions/apigroupcreate.php:164 actions/editgroup.php:182 +#: actions/apigroupcreate.php:166 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:215 #: actions/register.php:205 msgid "Nickname must have only lowercase letters and numbers and no spaces." @@ -377,62 +395,62 @@ msgstr "" "Il soprannome deve essere composto solo da lettere minuscole e numeri, senza " "spazi." -#: actions/apigroupcreate.php:173 actions/editgroup.php:186 +#: actions/apigroupcreate.php:175 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:238 #: actions/register.php:208 msgid "Nickname already in use. Try another one." msgstr "Soprannome già in uso. Prova con un altro." -#: actions/apigroupcreate.php:180 actions/editgroup.php:189 +#: actions/apigroupcreate.php:182 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:218 #: actions/register.php:210 msgid "Not a valid nickname." msgstr "Non è un soprannome valido." -#: actions/apigroupcreate.php:196 actions/editapplication.php:215 -#: actions/editgroup.php:195 actions/newapplication.php:203 +#: actions/apigroupcreate.php:198 actions/editapplication.php:215 +#: actions/editgroup.php:199 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:217 msgid "Homepage is not a valid URL." msgstr "L'indirizzo della pagina web non è valido." -#: actions/apigroupcreate.php:205 actions/editgroup.php:198 +#: actions/apigroupcreate.php:207 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:225 #: actions/register.php:220 msgid "Full name is too long (max 255 chars)." msgstr "Nome troppo lungo (max 255 caratteri)." -#: actions/apigroupcreate.php:213 actions/editapplication.php:190 +#: actions/apigroupcreate.php:215 actions/editapplication.php:190 #: actions/newapplication.php:172 #, php-format msgid "Description is too long (max %d chars)." msgstr "La descrizione è troppo lunga (max %d caratteri)." -#: actions/apigroupcreate.php:224 actions/editgroup.php:204 +#: actions/apigroupcreate.php:226 actions/editgroup.php:208 #: actions/newgroup.php:148 actions/profilesettings.php:232 #: actions/register.php:227 msgid "Location is too long (max 255 chars)." msgstr "Ubicazione troppo lunga (max 255 caratteri)." -#: actions/apigroupcreate.php:243 actions/editgroup.php:215 +#: actions/apigroupcreate.php:245 actions/editgroup.php:219 #: actions/newgroup.php:159 #, php-format msgid "Too many aliases! Maximum %d." msgstr "Troppi alias! Massimo %d." -#: actions/apigroupcreate.php:264 actions/editgroup.php:224 +#: actions/apigroupcreate.php:266 actions/editgroup.php:228 #: actions/newgroup.php:168 #, php-format msgid "Invalid alias: \"%s\"" msgstr "Alias non valido: \"%s\"" -#: actions/apigroupcreate.php:273 actions/editgroup.php:228 +#: actions/apigroupcreate.php:275 actions/editgroup.php:232 #: actions/newgroup.php:172 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "L'alias \"%s\" è già in uso. Prova con un altro." -#: actions/apigroupcreate.php:286 actions/editgroup.php:234 +#: actions/apigroupcreate.php:288 actions/editgroup.php:238 #: actions/newgroup.php:178 msgid "Alias can't be the same as nickname." msgstr "L'alias non può essere lo stesso del soprannome." @@ -443,15 +461,15 @@ msgstr "L'alias non può essere lo stesso del soprannome." msgid "Group not found!" msgstr "Gruppo non trovato!" -#: actions/apigroupjoin.php:110 actions/joingroup.php:90 +#: actions/apigroupjoin.php:110 actions/joingroup.php:100 msgid "You are already a member of that group." msgstr "Fai già parte di quel gruppo." -#: actions/apigroupjoin.php:119 actions/joingroup.php:95 lib/command.php:221 +#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:221 msgid "You have been blocked from that group by the admin." msgstr "L'amministratore ti ha bloccato l'accesso a quel gruppo." -#: actions/apigroupjoin.php:138 actions/joingroup.php:124 +#: actions/apigroupjoin.php:138 actions/joingroup.php:134 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Impossibile iscrivere l'utente %1$s al gruppo %2$s." @@ -460,7 +478,7 @@ msgstr "Impossibile iscrivere l'utente %1$s al gruppo %2$s." msgid "You are not a member of this group." msgstr "Non fai parte di questo gruppo." -#: actions/apigroupleave.php:124 actions/leavegroup.php:119 +#: actions/apigroupleave.php:124 actions/leavegroup.php:129 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "Impossibile rimuovere l'utente %1$s dal gruppo %2$s." @@ -491,7 +509,7 @@ msgstr "Token non valido." #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 #: actions/deletenotice.php:157 actions/disfavor.php:74 #: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54 -#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupblock.php:66 actions/grouplogo.php:312 #: actions/groupunblock.php:66 actions/imsettings.php:206 #: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 @@ -535,7 +553,7 @@ msgstr "Il token di richiesta %s è stato rifiutato o revocato." #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:103 actions/editapplication.php:139 -#: actions/emailsettings.php:256 actions/grouplogo.php:319 +#: actions/emailsettings.php:256 actions/grouplogo.php:322 #: actions/imsettings.php:220 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 #: actions/smssettings.php:248 lib/designsettings.php:304 @@ -561,13 +579,13 @@ msgstr "" "%3$s ai dati del tuo account %4$s. È consigliato fornire " "accesso al proprio account %4$s solo ad applicazioni di cui ci si può fidare." -#: actions/apioauthauthorize.php:310 lib/action.php:441 +#: actions/apioauthauthorize.php:310 msgid "Account" msgstr "Account" #: actions/apioauthauthorize.php:313 actions/login.php:230 #: actions/profilesettings.php:106 actions/register.php:424 -#: actions/showgroup.php:236 actions/tagother.php:94 +#: actions/showgroup.php:244 actions/tagother.php:94 #: actions/userauthorization.php:145 lib/groupeditform.php:152 #: lib/userprofile.php:131 msgid "Nickname" @@ -650,12 +668,12 @@ msgid "%1$s updates favorited by %2$s / %2$s." msgstr "%1$s aggiornamenti preferiti da %2$s / %3$s" #: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:131 actions/userrss.php:90 +#: actions/grouprss.php:138 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "Attività di %s" -#: actions/apitimelinegroup.php:114 actions/apitimelineuser.php:126 +#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 #: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" @@ -691,7 +709,7 @@ msgstr "Ripetuto a %s" msgid "Repeats of %s" msgstr "Ripetizioni di %s" -#: actions/apitimelinetag.php:102 actions/tag.php:66 +#: actions/apitimelinetag.php:102 actions/tag.php:67 #, php-format msgid "Notices tagged with %s" msgstr "Messaggi etichettati con %s" @@ -712,8 +730,7 @@ msgstr "Nessun allegato." #: actions/avatarbynickname.php:59 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/leavegroup.php:76 -#: actions/showgroup.php:121 +#: actions/grouprss.php:91 actions/showgroup.php:121 msgid "No nickname." msgstr "Nessun soprannome." @@ -725,7 +742,7 @@ msgstr "Nessuna dimensione." msgid "Invalid size." msgstr "Dimensione non valida." -#: actions/avatarsettings.php:67 actions/showgroup.php:221 +#: actions/avatarsettings.php:67 actions/showgroup.php:229 #: lib/accountsettingsaction.php:112 msgid "Avatar" msgstr "Immagine" @@ -743,30 +760,30 @@ msgid "User without matching profile" msgstr "Utente senza profilo corrispondente" #: actions/avatarsettings.php:119 actions/avatarsettings.php:197 -#: actions/grouplogo.php:251 +#: actions/grouplogo.php:254 msgid "Avatar settings" msgstr "Impostazioni immagine" #: actions/avatarsettings.php:127 actions/avatarsettings.php:205 -#: actions/grouplogo.php:199 actions/grouplogo.php:259 +#: actions/grouplogo.php:202 actions/grouplogo.php:262 msgid "Original" msgstr "Originale" #: actions/avatarsettings.php:142 actions/avatarsettings.php:217 -#: actions/grouplogo.php:210 actions/grouplogo.php:271 +#: actions/grouplogo.php:213 actions/grouplogo.php:274 msgid "Preview" msgstr "Anteprima" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:637 +#: lib/deleteuserform.php:66 lib/noticelist.php:655 msgid "Delete" msgstr "Elimina" -#: actions/avatarsettings.php:166 actions/grouplogo.php:233 +#: actions/avatarsettings.php:166 actions/grouplogo.php:236 msgid "Upload" msgstr "Carica" -#: actions/avatarsettings.php:231 actions/grouplogo.php:286 +#: actions/avatarsettings.php:231 actions/grouplogo.php:289 msgid "Crop" msgstr "Ritaglia" @@ -774,7 +791,7 @@ msgstr "Ritaglia" 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:343 actions/grouplogo.php:377 +#: actions/avatarsettings.php:343 actions/grouplogo.php:380 msgid "Lost our file data." msgstr "Perso il nostro file di dati." @@ -809,22 +826,22 @@ msgstr "" "risposte che ti invierà." #: actions/block.php:143 actions/deleteapplication.php:153 -#: actions/deletenotice.php:145 actions/deleteuser.php:147 +#: actions/deletenotice.php:145 actions/deleteuser.php:150 #: actions/groupblock.php:178 msgid "No" msgstr "No" -#: actions/block.php:143 actions/deleteuser.php:147 +#: actions/block.php:143 actions/deleteuser.php:150 msgid "Do not block this user" msgstr "Non bloccare questo utente" #: actions/block.php:144 actions/deleteapplication.php:158 -#: actions/deletenotice.php:146 actions/deleteuser.php:148 +#: actions/deletenotice.php:146 actions/deleteuser.php:151 #: actions/groupblock.php:179 lib/repeatform.php:132 msgid "Yes" msgstr "Sì" -#: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:355 lib/blockform.php:80 msgid "Block this user" msgstr "Blocca questo utente" @@ -832,39 +849,43 @@ msgstr "Blocca questo utente" msgid "Failed to save block information." msgstr "Salvataggio delle informazioni per il blocco non riuscito." -#: actions/blockedfromgroup.php:80 actions/editgroup.php:96 -#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/groupblock.php:86 -#: actions/groupbyid.php:83 actions/groupdesignsettings.php:97 -#: actions/grouplogo.php:99 actions/groupmembers.php:83 -#: actions/grouprss.php:98 actions/groupunblock.php:86 -#: actions/joingroup.php:83 actions/leavegroup.php:83 actions/makeadmin.php:86 -#: actions/showgroup.php:137 lib/command.php:212 lib/command.php:260 +#: actions/blockedfromgroup.php:80 actions/blockedfromgroup.php:87 +#: actions/editgroup.php:100 actions/foafgroup.php:44 actions/foafgroup.php:62 +#: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:100 actions/grouplogo.php:102 +#: actions/groupmembers.php:83 actions/groupmembers.php:90 +#: actions/grouprss.php:98 actions/grouprss.php:105 +#: actions/groupunblock.php:86 actions/joingroup.php:82 +#: actions/joingroup.php:93 actions/leavegroup.php:82 +#: actions/leavegroup.php:93 actions/makeadmin.php:86 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:212 +#: lib/command.php:260 msgid "No such group." msgstr "Nessuna gruppo." -#: actions/blockedfromgroup.php:90 +#: actions/blockedfromgroup.php:97 #, php-format msgid "%s blocked profiles" msgstr "Profili bloccati di %s" -#: actions/blockedfromgroup.php:93 +#: actions/blockedfromgroup.php:100 #, php-format msgid "%1$s blocked profiles, page %2$d" msgstr "Profili bloccati di %1$s, pagina %2$d" -#: actions/blockedfromgroup.php:108 +#: actions/blockedfromgroup.php:115 msgid "A list of the users blocked from joining this group." msgstr "Un elenco degli utenti a cui è bloccato l'accesso a questo gruppo." -#: actions/blockedfromgroup.php:281 +#: actions/blockedfromgroup.php:288 msgid "Unblock user from group" msgstr "Sblocca l'utente dal gruppo" -#: actions/blockedfromgroup.php:313 lib/unblockform.php:69 +#: actions/blockedfromgroup.php:320 lib/unblockform.php:69 msgid "Unblock" msgstr "Sblocca" -#: actions/blockedfromgroup.php:313 lib/unblockform.php:80 +#: actions/blockedfromgroup.php:320 lib/unblockform.php:80 msgid "Unblock this user" msgstr "Sblocca questo utente" @@ -939,7 +960,7 @@ msgstr "Questa applicazione non è di tua proprietà." #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1197 +#: lib/action.php:1228 msgid "There was a problem with your session token." msgstr "Si è verificato un problema con il tuo token di sessione." @@ -964,12 +985,13 @@ msgstr "Non eliminare l'applicazione" msgid "Delete this application" msgstr "Elimina l'applicazione" +#. TRANS: Client error message #: 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:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 -#: lib/adminpanelaction.php:72 lib/profileformaction.php:63 +#: lib/adminpanelaction.php:73 lib/profileformaction.php:63 #: lib/settingsaction.php:72 msgid "Not logged in." msgstr "Accesso non effettuato." @@ -998,7 +1020,7 @@ msgstr "Vuoi eliminare questo messaggio?" msgid "Do not delete this notice" msgstr "Non eliminare il messaggio" -#: actions/deletenotice.php:146 lib/noticelist.php:637 +#: actions/deletenotice.php:146 lib/noticelist.php:655 msgid "Delete this notice" msgstr "Elimina questo messaggio" @@ -1014,7 +1036,7 @@ msgstr "Puoi eliminare solo gli utenti locali." msgid "Delete user" msgstr "Elimina utente" -#: actions/deleteuser.php:135 +#: actions/deleteuser.php:136 msgid "" "Are you sure you want to delete this user? This will clear all data about " "the user from the database, without a backup." @@ -1022,12 +1044,12 @@ msgstr "" "Vuoi eliminare questo utente? Questa azione eliminerà tutti i dati " "dell'utente dal database, senza una copia di sicurezza." -#: actions/deleteuser.php:148 lib/deleteuserform.php:77 +#: actions/deleteuser.php:151 lib/deleteuserform.php:77 msgid "Delete this user" msgstr "Elimina questo utente" #: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 -#: lib/adminpanelaction.php:316 lib/groupnav.php:119 +#: lib/groupnav.php:119 msgid "Design" msgstr "Aspetto" @@ -1130,6 +1152,17 @@ msgstr "Ripristina i valori predefiniti" msgid "Reset back to default" msgstr "Reimposta i valori predefiniti" +#: actions/designadminpanel.php:586 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/tagother.php:154 actions/useradminpanel.php:294 +#: lib/applicationeditform.php:333 lib/applicationeditform.php:334 +#: lib/designsettings.php:256 lib/groupeditform.php:202 +msgid "Save" +msgstr "Salva" + #: actions/designadminpanel.php:587 lib/designsettings.php:257 msgid "Save design" msgstr "Salva aspetto" @@ -1221,29 +1254,29 @@ msgstr "Modifica il gruppo %s" msgid "You must be logged in to create a group." msgstr "Devi eseguire l'accesso per creare un gruppo." -#: actions/editgroup.php:103 actions/editgroup.php:168 -#: actions/groupdesignsettings.php:104 actions/grouplogo.php:106 +#: actions/editgroup.php:107 actions/editgroup.php:172 +#: actions/groupdesignsettings.php:107 actions/grouplogo.php:109 msgid "You must be an admin to edit the group." msgstr "Devi essere amministratore per modificare il gruppo." -#: actions/editgroup.php:154 +#: actions/editgroup.php:158 msgid "Use this form to edit the group." msgstr "Usa questo modulo per modificare il gruppo." -#: actions/editgroup.php:201 actions/newgroup.php:145 +#: actions/editgroup.php:205 actions/newgroup.php:145 #, php-format msgid "description is too long (max %d chars)." msgstr "La descrizione è troppo lunga (max %d caratteri)." -#: actions/editgroup.php:253 +#: actions/editgroup.php:258 msgid "Could not update group." msgstr "Impossibile aggiornare il gruppo." -#: actions/editgroup.php:259 classes/User_group.php:433 +#: actions/editgroup.php:264 classes/User_group.php:478 msgid "Could not create aliases." msgstr "Impossibile creare gli alias." -#: actions/editgroup.php:269 +#: actions/editgroup.php:280 msgid "Options saved." msgstr "Opzioni salvate." @@ -1587,7 +1620,7 @@ msgstr "L'utente è già bloccato dal gruppo." msgid "User is not a member of group." msgstr "L'utente non fa parte del gruppo." -#: actions/groupblock.php:136 actions/groupmembers.php:316 +#: actions/groupblock.php:136 actions/groupmembers.php:323 msgid "Block user from group" msgstr "Blocca l'utente dal gruppo" @@ -1622,11 +1655,11 @@ msgstr "Nessun ID." msgid "You must be logged in to edit a group." msgstr "Devi eseguire l'accesso per modificare un gruppo." -#: actions/groupdesignsettings.php:141 +#: actions/groupdesignsettings.php:144 msgid "Group design" msgstr "Aspetto del gruppo" -#: actions/groupdesignsettings.php:152 +#: actions/groupdesignsettings.php:155 msgid "" "Customize the way your group looks with a background image and a colour " "palette of your choice." @@ -1634,20 +1667,20 @@ msgstr "" "Personalizza l'aspetto del tuo gruppo con un'immagine di sfondo e dei colori " "personalizzati." -#: actions/groupdesignsettings.php:263 actions/userdesignsettings.php:186 +#: actions/groupdesignsettings.php:266 actions/userdesignsettings.php:186 #: lib/designsettings.php:391 lib/designsettings.php:413 msgid "Couldn't update your design." msgstr "Impossibile aggiornare l'aspetto." -#: actions/groupdesignsettings.php:308 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231 msgid "Design preferences saved." msgstr "Preferenze dell'aspetto salvate." -#: actions/grouplogo.php:139 actions/grouplogo.php:192 +#: actions/grouplogo.php:142 actions/grouplogo.php:195 msgid "Group logo" msgstr "Logo del gruppo" -#: actions/grouplogo.php:150 +#: actions/grouplogo.php:153 #, php-format msgid "" "You can upload a logo image for your group. The maximum file size is %s." @@ -1655,57 +1688,57 @@ msgstr "" "Puoi caricare un'immagine per il logo del tuo gruppo. La dimensione massima " "del file è di %s." -#: actions/grouplogo.php:178 +#: actions/grouplogo.php:181 msgid "User without matching profile." msgstr "Utente senza profilo corrispondente." -#: actions/grouplogo.php:362 +#: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." msgstr "Scegli un'area quadrata dell'immagine per il logo." -#: actions/grouplogo.php:396 +#: actions/grouplogo.php:399 msgid "Logo updated." msgstr "Logo aggiornato." -#: actions/grouplogo.php:398 +#: actions/grouplogo.php:401 msgid "Failed updating logo." msgstr "Aggiornamento del logo non riuscito." -#: actions/groupmembers.php:93 lib/groupnav.php:92 +#: actions/groupmembers.php:100 lib/groupnav.php:92 #, php-format msgid "%s group members" msgstr "Membri del gruppo %s" -#: actions/groupmembers.php:96 +#: actions/groupmembers.php:103 #, php-format msgid "%1$s group members, page %2$d" msgstr "Membri del gruppo %1$s, pagina %2$d" -#: actions/groupmembers.php:111 +#: actions/groupmembers.php:118 msgid "A list of the users in this group." msgstr "Un elenco degli utenti in questo gruppo." -#: actions/groupmembers.php:175 lib/action.php:448 lib/groupnav.php:107 +#: actions/groupmembers.php:182 lib/groupnav.php:107 msgid "Admin" msgstr "Amministra" -#: actions/groupmembers.php:348 lib/blockform.php:69 +#: actions/groupmembers.php:355 lib/blockform.php:69 msgid "Block" msgstr "Blocca" -#: actions/groupmembers.php:443 +#: actions/groupmembers.php:450 msgid "Make user an admin of the group" msgstr "Rende l'utente amministratore del gruppo" -#: actions/groupmembers.php:475 +#: actions/groupmembers.php:482 msgid "Make Admin" msgstr "Rendi amm." -#: actions/groupmembers.php:475 +#: actions/groupmembers.php:482 msgid "Make this user an admin" msgstr "Rende questo utente un amministratore" -#: actions/grouprss.php:133 +#: actions/grouprss.php:140 #, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Messaggi dai membri di %1$s su %2$s!" @@ -1969,16 +2002,19 @@ msgstr "Messaggio personale" msgid "Optionally add a personal message to the invitation." msgstr "Puoi aggiungere un messaggio personale agli inviti." -#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:236 +#. TRANS: Send button for inviting friends +#: actions/invite.php:198 +#, fuzzy +msgctxt "BUTTON" msgid "Send" msgstr "Invia" -#: actions/invite.php:226 +#: actions/invite.php:227 #, 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" -#: actions/invite.php:228 +#: actions/invite.php:229 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -2039,7 +2075,11 @@ msgstr "" msgid "You must be logged in to join a group." msgstr "Devi eseguire l'accesso per iscriverti a un gruppo." -#: actions/joingroup.php:131 +#: actions/joingroup.php:88 actions/leavegroup.php:88 +msgid "No nickname or ID." +msgstr "Nessun soprannome o ID." + +#: actions/joingroup.php:141 #, php-format msgid "%1$s joined group %2$s" msgstr "%1$s fa ora parte del gruppo %2$s" @@ -2048,11 +2088,11 @@ msgstr "%1$s fa ora parte del gruppo %2$s" msgid "You must be logged in to leave a group." msgstr "Devi eseguire l'accesso per lasciare un gruppo." -#: actions/leavegroup.php:90 lib/command.php:265 +#: actions/leavegroup.php:100 lib/command.php:265 msgid "You are not a member of that group." msgstr "Non fai parte di quel gruppo." -#: actions/leavegroup.php:127 +#: actions/leavegroup.php:137 #, php-format msgid "%1$s left group %2$s" msgstr "%1$s ha lasciato il gruppo %2$s" @@ -2069,8 +2109,7 @@ msgstr "Nome utente o password non corretto." msgid "Error setting user. You are probably not authorized." msgstr "Errore nell'impostare l'utente. Forse non hai l'autorizzazione." -#: actions/login.php:188 actions/login.php:241 lib/action.php:466 -#: lib/logingroupnav.php:79 +#: actions/login.php:188 actions/login.php:241 lib/logingroupnav.php:79 msgid "Login" msgstr "Accedi" @@ -2324,8 +2363,8 @@ msgstr "tipo di contenuto " msgid "Only " msgstr "Solo " -#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 -#: lib/api.php:1068 lib/api.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 +#: lib/apiaction.php:1068 lib/apiaction.php:1177 msgid "Not a supported data format." msgstr "Non è un formato di dati supportato." @@ -2466,7 +2505,7 @@ msgstr "Impossibile salvare la nuova password." msgid "Password saved." msgstr "Password salvata." -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:331 +#: actions/pathsadminpanel.php:59 msgid "Paths" msgstr "Percorsi" @@ -2499,7 +2538,6 @@ msgid "Invalid SSL server. The maximum length is 255 characters." msgstr "Server SSL non valido. La lunghezza massima è di 255 caratteri." #: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58 -#: lib/adminpanelaction.php:311 msgid "Site" msgstr "Sito" @@ -2674,7 +2712,7 @@ msgstr "" "1-64 lettere minuscole o numeri, senza spazi o simboli di punteggiatura" #: actions/profilesettings.php:111 actions/register.php:448 -#: actions/showgroup.php:247 actions/tagother.php:104 +#: actions/showgroup.php:255 actions/tagother.php:104 #: lib/groupeditform.php:157 lib/userprofile.php:149 msgid "Full name" msgstr "Nome" @@ -2702,7 +2740,7 @@ msgid "Bio" msgstr "Biografia" #: actions/profilesettings.php:132 actions/register.php:471 -#: actions/showgroup.php:256 actions/tagother.php:112 +#: actions/showgroup.php:264 actions/tagother.php:112 #: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:164 msgid "Location" @@ -2785,7 +2823,8 @@ msgstr "Impossibile salvare il profilo." msgid "Couldn't save tags." msgstr "Impossibile salvare le etichette." -#: actions/profilesettings.php:391 lib/adminpanelaction.php:137 +#. TRANS: Message after successful saving of administrative settings. +#: actions/profilesettings.php:391 lib/adminpanelaction.php:141 msgid "Settings saved." msgstr "Impostazioni salvate." @@ -2798,28 +2837,28 @@ msgstr "Oltre il limite della pagina (%s)" msgid "Could not retrieve public stream." msgstr "Impossibile recuperare l'attività pubblica." -#: actions/public.php:129 +#: actions/public.php:130 #, php-format msgid "Public timeline, page %d" msgstr "Attività pubblica, pagina %d" -#: actions/public.php:131 lib/publicgroupnav.php:79 +#: actions/public.php:132 lib/publicgroupnav.php:79 msgid "Public timeline" msgstr "Attività pubblica" -#: actions/public.php:159 +#: actions/public.php:160 msgid "Public Stream Feed (RSS 1.0)" msgstr "Feed dell'attività pubblica (RSS 1.0)" -#: actions/public.php:163 +#: actions/public.php:164 msgid "Public Stream Feed (RSS 2.0)" msgstr "Feed dell'attività pubblica (RSS 2.0)" -#: actions/public.php:167 +#: actions/public.php:168 msgid "Public Stream Feed (Atom)" msgstr "Feed dell'attività pubblica (Atom)" -#: actions/public.php:187 +#: actions/public.php:188 #, php-format msgid "" "This is the public timeline for %%site.name%% but no one has posted anything " @@ -2828,18 +2867,18 @@ msgstr "" "Questa è l'attività pubblica di %%site.name%%, ma nessuno ha ancora scritto " "qualche cosa." -#: actions/public.php:190 +#: actions/public.php:191 msgid "Be the first to post!" msgstr "Fallo tu!" -#: actions/public.php:194 +#: actions/public.php:195 #, php-format msgid "" "Why not [register an account](%%action.register%%) and be the first to post!" msgstr "" "Perché non [crei un account](%%action.register%%) e scrivi qualche cosa!" -#: actions/public.php:241 +#: actions/public.php:242 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2852,7 +2891,7 @@ msgstr "" "net/). [Registrati](%%action.register%%) per condividere messaggi con i tuoi " "amici, i tuoi familiari e colleghi! ([Maggiori informazioni](%%doc.help%%))" -#: actions/public.php:246 +#: actions/public.php:247 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -3029,10 +3068,9 @@ msgstr "Codice di invito non valido." msgid "Registration successful" msgstr "Registrazione riuscita" -#: actions/register.php:114 actions/register.php:503 lib/action.php:463 -#: lib/logingroupnav.php:85 +#: actions/register.php:114 actions/register.php:503 lib/logingroupnav.php:85 msgid "Register" -msgstr "Registra" +msgstr "Registrati" #: actions/register.php:135 msgid "Registration not allowed." @@ -3218,7 +3256,7 @@ msgstr "Non puoi ripetere i tuoi stessi messaggi." msgid "You already repeated that notice." msgstr "Hai già ripetuto quel messaggio." -#: actions/repeat.php:114 lib/noticelist.php:656 +#: actions/repeat.php:114 lib/noticelist.php:674 msgid "Repeated" msgstr "Ripetuti" @@ -3226,33 +3264,33 @@ msgstr "Ripetuti" msgid "Repeated!" msgstr "Ripetuti!" -#: actions/replies.php:125 actions/repliesrss.php:68 +#: actions/replies.php:126 actions/repliesrss.php:68 #: lib/personalgroupnav.php:105 #, php-format msgid "Replies to %s" msgstr "Risposte a %s" -#: actions/replies.php:127 +#: actions/replies.php:128 #, php-format msgid "Replies to %1$s, page %2$d" msgstr "Risposte a %1$s, pagina %2$d" -#: actions/replies.php:144 +#: actions/replies.php:145 #, php-format msgid "Replies feed for %s (RSS 1.0)" msgstr "Feed delle risposte di %s (RSS 1.0)" -#: actions/replies.php:151 +#: actions/replies.php:152 #, php-format msgid "Replies feed for %s (RSS 2.0)" msgstr "Feed delle risposte di %s (RSS 2.0)" -#: actions/replies.php:158 +#: actions/replies.php:159 #, php-format msgid "Replies feed for %s (Atom)" msgstr "Feed delle risposte di %s (Atom)" -#: actions/replies.php:198 +#: actions/replies.php:199 #, php-format msgid "" "This is the timeline showing replies to %1$s but %2$s hasn't received a " @@ -3261,7 +3299,7 @@ msgstr "" "Questa è l'attività delle risposte a %1$s, ma %2$s non ha ricevuto ancora " "alcun messaggio." -#: actions/replies.php:203 +#: actions/replies.php:204 #, php-format msgid "" "You can engage other users in a conversation, subscribe to more people or " @@ -3270,7 +3308,7 @@ msgstr "" "Puoi avviare una discussione con altri utenti, abbonarti a più persone o " "[entrare in qualche gruppo](%%action.groups%%)." -#: actions/replies.php:205 +#: actions/replies.php:206 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) or [post something to his or her " @@ -3297,7 +3335,6 @@ msgid "User is already sandboxed." msgstr "L'utente è già nella \"sandbox\"." #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:336 msgid "Sessions" msgstr "Sessioni" @@ -3322,7 +3359,7 @@ msgid "Turn on debugging output for sessions." msgstr "Abilita il debug per le sessioni" #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/useradminpanel.php:293 +#: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "Salva impostazioni" @@ -3352,7 +3389,7 @@ msgstr "Organizzazione" msgid "Description" msgstr "Descrizione" -#: actions/showapplication.php:192 actions/showgroup.php:429 +#: actions/showapplication.php:192 actions/showgroup.php:437 #: lib/profileaction.php:174 msgid "Statistics" msgstr "Statistiche" @@ -3415,22 +3452,22 @@ msgstr "Messaggi preferiti di %1$s, pagina %2$d" msgid "Could not retrieve favorite notices." msgstr "Impossibile recuperare i messaggi preferiti." -#: actions/showfavorites.php:170 +#: actions/showfavorites.php:171 #, php-format msgid "Feed for favorites of %s (RSS 1.0)" msgstr "Feed dei preferiti di %s (RSS 1.0)" -#: actions/showfavorites.php:177 +#: actions/showfavorites.php:178 #, php-format msgid "Feed for favorites of %s (RSS 2.0)" msgstr "Feed dei preferiti di %s (RSS 2.0)" -#: actions/showfavorites.php:184 +#: actions/showfavorites.php:185 #, php-format msgid "Feed for favorites of %s (Atom)" msgstr "Feed dei preferiti di di %s (Atom)" -#: actions/showfavorites.php:205 +#: actions/showfavorites.php:206 msgid "" "You haven't chosen any favorite notices yet. Click the fave button on " "notices you like to bookmark them for later or shed a spotlight on them." @@ -3438,7 +3475,7 @@ msgstr "" "Non hai ancora scelto alcun messaggio come preferito. Fai clic sul pulsate a " "forma di cuore per salvare i messaggi e rileggerli in un altro momento." -#: actions/showfavorites.php:207 +#: actions/showfavorites.php:208 #, php-format msgid "" "%s hasn't added any notices to his favorites yet. Post something interesting " @@ -3447,7 +3484,7 @@ msgstr "" "%s non ha aggiunto alcun messaggio tra i suoi preferiti. Scrivi qualche cosa " "di interessante in modo che lo inserisca tra i suoi preferiti. :)" -#: actions/showfavorites.php:211 +#: actions/showfavorites.php:212 #, php-format msgid "" "%s hasn't added any notices to his favorites yet. Why not [register an " @@ -3458,7 +3495,7 @@ msgstr "" "account](%%%%action.register%%%%) e quindi scrivi qualche cosa di " "interessante in modo che lo inserisca tra i suoi preferiti. :)" -#: actions/showfavorites.php:242 +#: actions/showfavorites.php:243 msgid "This is a way to share what you like." msgstr "Questo è un modo per condividere ciò che ti piace." @@ -3472,67 +3509,67 @@ msgstr "Gruppo %s" msgid "%1$s group, page %2$d" msgstr "Gruppi di %1$s, pagina %2$d" -#: actions/showgroup.php:218 +#: actions/showgroup.php:226 msgid "Group profile" msgstr "Profilo del gruppo" -#: actions/showgroup.php:263 actions/tagother.php:118 +#: actions/showgroup.php:271 actions/tagother.php:118 #: actions/userauthorization.php:175 lib/userprofile.php:177 msgid "URL" msgstr "URL" -#: actions/showgroup.php:274 actions/tagother.php:128 +#: actions/showgroup.php:282 actions/tagother.php:128 #: actions/userauthorization.php:187 lib/userprofile.php:194 msgid "Note" msgstr "Nota" -#: actions/showgroup.php:284 lib/groupeditform.php:184 +#: actions/showgroup.php:292 lib/groupeditform.php:184 msgid "Aliases" msgstr "Alias" -#: actions/showgroup.php:293 +#: actions/showgroup.php:301 msgid "Group actions" msgstr "Azioni dei gruppi" -#: actions/showgroup.php:328 +#: actions/showgroup.php:336 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Feed dei messaggi per il gruppo %s (RSS 1.0)" -#: actions/showgroup.php:334 +#: actions/showgroup.php:342 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Feed dei messaggi per il gruppo %s (RSS 2.0)" -#: actions/showgroup.php:340 +#: actions/showgroup.php:348 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "Feed dei messaggi per il gruppo %s (Atom)" -#: actions/showgroup.php:345 +#: actions/showgroup.php:353 #, php-format msgid "FOAF for %s group" msgstr "FOAF per il gruppo %s" -#: actions/showgroup.php:381 actions/showgroup.php:438 lib/groupnav.php:91 +#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 msgid "Members" msgstr "Membri" -#: actions/showgroup.php:386 lib/profileaction.php:117 +#: actions/showgroup.php:394 lib/profileaction.php:117 #: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(nessuno)" -#: actions/showgroup.php:392 +#: actions/showgroup.php:400 msgid "All members" msgstr "Tutti i membri" -#: actions/showgroup.php:432 +#: actions/showgroup.php:440 msgid "Created" msgstr "Creato" -#: actions/showgroup.php:448 +#: actions/showgroup.php:456 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3548,7 +3585,7 @@ msgstr "" "stesso](%%%%action.register%%%%) per far parte di questo gruppo e di molti " "altri! ([Maggiori informazioni](%%%%doc.help%%%%))" -#: actions/showgroup.php:454 +#: actions/showgroup.php:462 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3560,7 +3597,7 @@ msgstr "" "(http://it.wikipedia.org/wiki/Microblogging) basato sul software libero " "[StatusNet](http://status.net/)." -#: actions/showgroup.php:482 +#: actions/showgroup.php:490 msgid "Admins" msgstr "Amministratori" @@ -3934,17 +3971,16 @@ msgstr "Impossibile salvare l'abbonamento." #: actions/subscribe.php:77 msgid "This action only accepts POST requests." -msgstr "" +msgstr "Quest'azione accetta solo richieste POST." #: actions/subscribe.php:107 -#, fuzzy msgid "No such profile." -msgstr "Nessun file." +msgstr "Nessun profilo." #: actions/subscribe.php:117 -#, fuzzy msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." -msgstr "Non hai una abbonamento a quel profilo." +msgstr "" +"Non è possibile abbonarsi a un profilo remoto OMB 0.1 con quest'azione." #: actions/subscribe.php:145 msgid "Subscribed" @@ -4038,22 +4074,22 @@ msgstr "Jabber" msgid "SMS" msgstr "SMS" -#: actions/tag.php:68 +#: actions/tag.php:69 #, php-format msgid "Notices tagged with %1$s, page %2$d" msgstr "Messaggi etichettati con %1$s, pagina %2$d" -#: actions/tag.php:86 +#: actions/tag.php:87 #, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Feed dei messaggi per l'etichetta %s (RSS 1.0)" -#: actions/tag.php:92 +#: actions/tag.php:93 #, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Feed dei messaggi per l'etichetta %s (RSS 2.0)" -#: actions/tag.php:98 +#: actions/tag.php:99 #, php-format msgid "Notice feed for tag %s (Atom)" msgstr "Feed dei messaggi per l'etichetta %s (Atom)" @@ -4109,7 +4145,7 @@ msgstr "" msgid "No such tag." msgstr "Nessuna etichetta." -#: actions/twitapitrends.php:87 +#: actions/twitapitrends.php:85 msgid "API method under construction." msgstr "Metodo delle API in lavorazione." @@ -4141,71 +4177,73 @@ msgstr "" "La licenza \"%1$s\" dello stream di chi ascolti non è compatibile con la " "licenza \"%2$s\" di questo sito." -#: actions/useradminpanel.php:58 lib/adminpanelaction.php:321 -#: lib/personalgroupnav.php:115 +#. TRANS: User admin panel title +#: actions/useradminpanel.php:59 +#, fuzzy +msgctxt "TITLE" msgid "User" msgstr "Utente" -#: actions/useradminpanel.php:69 +#: actions/useradminpanel.php:70 msgid "User settings for this StatusNet site." msgstr "Impostazioni utente per questo sito StatusNet." -#: actions/useradminpanel.php:148 +#: actions/useradminpanel.php:149 msgid "Invalid bio limit. Must be numeric." msgstr "Limite per la biografia non valido. Deve essere numerico." -#: actions/useradminpanel.php:154 +#: actions/useradminpanel.php:155 msgid "Invalid welcome text. Max length is 255 characters." msgstr "" "Testo di benvenuto non valido. La lunghezza massima è di 255 caratteri." -#: actions/useradminpanel.php:164 +#: actions/useradminpanel.php:165 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "Abbonamento predefinito non valido: \"%1$s\" non è un utente." -#: actions/useradminpanel.php:217 lib/accountsettingsaction.php:108 +#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Profilo" -#: actions/useradminpanel.php:221 +#: actions/useradminpanel.php:222 msgid "Bio Limit" msgstr "Limite biografia" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:223 msgid "Maximum length of a profile bio in characters." msgstr "Lunghezza massima in caratteri della biografia" -#: actions/useradminpanel.php:230 +#: actions/useradminpanel.php:231 msgid "New users" msgstr "Nuovi utenti" -#: actions/useradminpanel.php:234 +#: actions/useradminpanel.php:235 msgid "New user welcome" msgstr "Messaggio per nuovi utenti" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:236 msgid "Welcome text for new users (Max 255 chars)." msgstr "Messaggio di benvenuto per nuovi utenti (max 255 caratteri)" -#: actions/useradminpanel.php:240 +#: actions/useradminpanel.php:241 msgid "Default subscription" msgstr "Abbonamento predefinito" -#: actions/useradminpanel.php:241 +#: actions/useradminpanel.php:242 msgid "Automatically subscribe new users to this user." msgstr "Abbonare automaticamente i nuovi utenti a questo utente" -#: actions/useradminpanel.php:250 +#: actions/useradminpanel.php:251 msgid "Invitations" msgstr "Inviti" -#: actions/useradminpanel.php:255 +#: actions/useradminpanel.php:256 msgid "Invitations enabled" msgstr "Inviti abilitati" -#: actions/useradminpanel.php:257 +#: actions/useradminpanel.php:258 msgid "Whether to allow users to invite new users." msgstr "Indica se consentire agli utenti di invitarne di nuovi" @@ -4400,7 +4438,7 @@ msgstr "" msgid "Plugins" msgstr "Plugin" -#: actions/version.php:196 lib/action.php:747 +#: actions/version.php:196 lib/action.php:778 msgid "Version" msgstr "Versione" @@ -4441,6 +4479,10 @@ msgstr "Non si fa parte del gruppo." msgid "Group leave failed." msgstr "Uscita dal gruppo non riuscita." +#: classes/Local_group.php:41 +msgid "Could not update local group." +msgstr "Impossibile aggiornare il gruppo locale." + #: classes/Login_token.php:76 #, php-format msgid "Could not create login token for %s" @@ -4458,27 +4500,27 @@ msgstr "Impossibile inserire il messaggio." msgid "Could not update message with new URI." msgstr "Impossibile aggiornare il messaggio con il nuovo URI." -#: classes/Notice.php:157 +#: classes/Notice.php:172 #, php-format msgid "DB error inserting hashtag: %s" msgstr "Errore del DB nell'inserire un hashtag: %s" -#: classes/Notice.php:222 +#: classes/Notice.php:239 msgid "Problem saving notice. Too long." msgstr "Problema nel salvare il messaggio. Troppo lungo." -#: classes/Notice.php:226 +#: classes/Notice.php:243 msgid "Problem saving notice. Unknown user." msgstr "Problema nel salvare il messaggio. Utente sconosciuto." -#: classes/Notice.php:231 +#: classes/Notice.php:248 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:237 +#: classes/Notice.php:254 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." @@ -4486,19 +4528,19 @@ msgstr "" "Troppi messaggi duplicati troppo velocemente; fai una pausa e scrivi di " "nuovo tra qualche minuto." -#: classes/Notice.php:243 +#: classes/Notice.php:260 msgid "You are banned from posting notices on this site." msgstr "Ti è proibito inviare messaggi su questo sito." -#: classes/Notice.php:309 classes/Notice.php:335 +#: classes/Notice.php:326 classes/Notice.php:352 msgid "Problem saving notice." msgstr "Problema nel salvare il messaggio." -#: classes/Notice.php:882 +#: classes/Notice.php:911 msgid "Problem saving group inbox." msgstr "Problema nel salvare la casella della posta del gruppo." -#: classes/Notice.php:1407 +#: classes/Notice.php:1442 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -4527,19 +4569,27 @@ msgstr "Impossibile eliminare l'auto-abbonamento." msgid "Couldn't delete subscription." msgstr "Impossibile eliminare l'abbonamento." -#: classes/User.php:372 +#: classes/User.php:373 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "Benvenuti su %1$s, @%2$s!" -#: classes/User_group.php:423 +#: classes/User_group.php:462 msgid "Could not create group." msgstr "Impossibile creare il gruppo." -#: classes/User_group.php:452 +#: classes/User_group.php:471 +msgid "Could not set group URI." +msgstr "Impossibile impostare l'URI del gruppo." + +#: classes/User_group.php:492 msgid "Could not set group membership." msgstr "Impossibile impostare la membership al gruppo." +#: classes/User_group.php:506 +msgid "Could not save local group info." +msgstr "Impossibile salvare le informazioni del gruppo locale." + #: lib/accountsettingsaction.php:108 msgid "Change your profile settings" msgstr "Modifica le impostazioni del tuo profilo" @@ -4581,120 +4631,190 @@ msgstr "Pagina senza nome" msgid "Primary site navigation" msgstr "Esplorazione sito primaria" +#. TRANS: Tooltip for main menu option "Personal" #: lib/action.php:439 -msgid "Home" -msgstr "Home" - -#: lib/action.php:439 +#, fuzzy +msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Profilo personale e attività degli amici" -#: lib/action.php:441 +#: lib/action.php:442 +#, fuzzy +msgctxt "MENU" +msgid "Personal" +msgstr "Personale" + +#. TRANS: Tooltip for main menu option "Account" +#: lib/action.php:444 +#, fuzzy +msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Modifica la tua email, immagine, password o il tuo profilo" -#: lib/action.php:444 -msgid "Connect" -msgstr "Connetti" +#: lib/action.php:447 +#, fuzzy +msgctxt "MENU" +msgid "Account" +msgstr "Account" -#: lib/action.php:444 +#. TRANS: Tooltip for main menu option "Services" +#: lib/action.php:450 +#, fuzzy +msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Connettiti con altri servizi" -#: lib/action.php:448 +#: lib/action.php:453 +#, fuzzy +msgctxt "MENU" +msgid "Connect" +msgstr "Connetti" + +#. TRANS: Tooltip for menu option "Admin" +#: lib/action.php:457 +#, fuzzy +msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Modifica la configurazione del sito" -#: lib/action.php:452 lib/subgroupnav.php:105 -msgid "Invite" -msgstr "Invita" +#: lib/action.php:460 +#, fuzzy +msgctxt "MENU" +msgid "Admin" +msgstr "Amministra" -#: lib/action.php:453 lib/subgroupnav.php:106 -#, php-format +#. TRANS: Tooltip for main menu option "Invite" +#: lib/action.php:464 +#, fuzzy, php-format +msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Invita amici e colleghi a seguirti su %s" -#: lib/action.php:458 -msgid "Logout" -msgstr "Esci" +#: lib/action.php:467 +#, fuzzy +msgctxt "MENU" +msgid "Invite" +msgstr "Invita" -#: lib/action.php:458 +#. TRANS: Tooltip for main menu option "Logout" +#: lib/action.php:473 +#, fuzzy +msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Termina la tua sessione sul sito" -#: lib/action.php:463 +#: lib/action.php:476 +#, fuzzy +msgctxt "MENU" +msgid "Logout" +msgstr "Esci" + +#. TRANS: Tooltip for main menu option "Register" +#: lib/action.php:481 +#, fuzzy +msgctxt "TOOLTIP" msgid "Create an account" msgstr "Crea un account" -#: lib/action.php:466 +#: lib/action.php:484 +#, fuzzy +msgctxt "MENU" +msgid "Register" +msgstr "Registrati" + +#. TRANS: Tooltip for main menu option "Login" +#: lib/action.php:487 +#, fuzzy +msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Accedi al sito" -#: lib/action.php:469 lib/action.php:732 -msgid "Help" -msgstr "Aiuto" +#: lib/action.php:490 +#, fuzzy +msgctxt "MENU" +msgid "Login" +msgstr "Accedi" -#: lib/action.php:469 +#. TRANS: Tooltip for main menu option "Help" +#: lib/action.php:493 +#, fuzzy +msgctxt "TOOLTIP" msgid "Help me!" msgstr "Aiutami!" -#: lib/action.php:472 lib/searchaction.php:127 -msgid "Search" -msgstr "Cerca" +#: lib/action.php:496 +#, fuzzy +msgctxt "MENU" +msgid "Help" +msgstr "Aiuto" -#: lib/action.php:472 +#. TRANS: Tooltip for main menu option "Search" +#: lib/action.php:499 +#, fuzzy +msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Cerca persone o del testo" -#: lib/action.php:493 +#: lib/action.php:502 +#, fuzzy +msgctxt "MENU" +msgid "Search" +msgstr "Cerca" + +#. TRANS: DT element for site notice. String is hidden in default CSS. +#: lib/action.php:524 msgid "Site notice" msgstr "Messaggio del sito" -#: lib/action.php:559 +#: lib/action.php:590 msgid "Local views" msgstr "Viste locali" -#: lib/action.php:625 +#: lib/action.php:656 msgid "Page notice" msgstr "Pagina messaggio" -#: lib/action.php:727 +#: lib/action.php:758 msgid "Secondary site navigation" msgstr "Esplorazione secondaria del sito" -#: lib/action.php:734 +#: lib/action.php:763 +msgid "Help" +msgstr "Aiuto" + +#: lib/action.php:765 msgid "About" msgstr "Informazioni" -#: lib/action.php:736 +#: lib/action.php:767 msgid "FAQ" msgstr "FAQ" -#: lib/action.php:740 +#: lib/action.php:771 msgid "TOS" msgstr "TOS" -#: lib/action.php:743 +#: lib/action.php:774 msgid "Privacy" msgstr "Privacy" -#: lib/action.php:745 +#: lib/action.php:776 msgid "Source" msgstr "Sorgenti" -#: lib/action.php:749 +#: lib/action.php:780 msgid "Contact" msgstr "Contatti" -#: lib/action.php:751 +#: lib/action.php:782 msgid "Badge" msgstr "Badge" -#: lib/action.php:779 +#: lib/action.php:810 msgid "StatusNet software license" msgstr "Licenza del software StatusNet" -#: lib/action.php:782 +#: lib/action.php:813 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4703,12 +4823,12 @@ msgstr "" "**%%site.name%%** è un servizio di microblog offerto da [%%site.broughtby%%]" "(%%site.broughtbyurl%%). " -#: lib/action.php:784 +#: lib/action.php:815 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** è un servizio di microblog. " -#: lib/action.php:786 +#: lib/action.php:817 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4719,110 +4839,163 @@ msgstr "" "s, disponibile nei termini della licenza [GNU Affero General Public License]" "(http://www.fsf.org/licensing/licenses/agpl-3.0.html)." -#: lib/action.php:801 +#: lib/action.php:832 msgid "Site content license" msgstr "Licenza del contenuto del sito" -#: lib/action.php:806 +#: lib/action.php:837 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "I contenuti e i dati di %1$s sono privati e confidenziali." -#: lib/action.php:811 +#: lib/action.php:842 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" "I contenuti e i dati sono copyright di %1$s. Tutti i diritti riservati." -#: lib/action.php:814 +#: lib/action.php:845 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" "I contenuti e i dati sono forniti dai collaboratori. Tutti i diritti " "riservati." -#: lib/action.php:827 +#: lib/action.php:858 msgid "All " msgstr "Tutti " -#: lib/action.php:833 +#: lib/action.php:864 msgid "license." msgstr "licenza." -#: lib/action.php:1132 +#: lib/action.php:1163 msgid "Pagination" msgstr "Paginazione" -#: lib/action.php:1141 +#: lib/action.php:1172 msgid "After" msgstr "Successivi" -#: lib/action.php:1149 +#: lib/action.php:1180 msgid "Before" msgstr "Precedenti" -#: lib/activity.php:382 +#: lib/activity.php:449 msgid "Can't handle remote content yet." -msgstr "" +msgstr "Impossibile gestire contenuti remoti." -#: lib/activity.php:410 +#: lib/activity.php:477 msgid "Can't handle embedded XML content yet." -msgstr "" +msgstr "Impossibile gestire contenuti XML incorporati." -#: lib/activity.php:414 +#: lib/activity.php:481 msgid "Can't handle embedded Base64 content yet." -msgstr "" +msgstr "Impossibile gestire contenuti Base64." -#: lib/adminpanelaction.php:96 +#. TRANS: Client error message +#: lib/adminpanelaction.php:98 msgid "You cannot make changes to this site." msgstr "Non puoi apportare modifiche al sito." -#: lib/adminpanelaction.php:107 +#. TRANS: Client error message +#: lib/adminpanelaction.php:110 msgid "Changes to that panel are not allowed." msgstr "Le modifiche al pannello non sono consentite." -#: lib/adminpanelaction.php:206 +#. TRANS: Client error message +#: lib/adminpanelaction.php:211 msgid "showForm() not implemented." msgstr "showForm() non implementata." -#: lib/adminpanelaction.php:235 +#. TRANS: Client error message +#: lib/adminpanelaction.php:241 msgid "saveSettings() not implemented." msgstr "saveSettings() non implementata." -#: lib/adminpanelaction.php:258 +#. TRANS: Client error message +#: lib/adminpanelaction.php:265 msgid "Unable to delete design setting." msgstr "Impossibile eliminare le impostazioni dell'aspetto." -#: lib/adminpanelaction.php:312 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:330 msgid "Basic site configuration" msgstr "Configurazione di base" -#: lib/adminpanelaction.php:317 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:332 +#, fuzzy +msgctxt "MENU" +msgid "Site" +msgstr "Sito" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:338 msgid "Design configuration" msgstr "Configurazione aspetto" -#: lib/adminpanelaction.php:322 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:340 +#, fuzzy +msgctxt "MENU" +msgid "Design" +msgstr "Aspetto" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:346 msgid "User configuration" msgstr "Configurazione utente" -#: lib/adminpanelaction.php:327 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:348 +#, fuzzy +msgctxt "MENU" +msgid "User" +msgstr "Utente" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:354 msgid "Access configuration" msgstr "Configurazione di accesso" -#: lib/adminpanelaction.php:332 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:356 +#, fuzzy +msgctxt "MENU" +msgid "Access" +msgstr "Accesso" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:362 msgid "Paths configuration" msgstr "Configurazione percorsi" -#: lib/adminpanelaction.php:337 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:364 +#, fuzzy +msgctxt "MENU" +msgid "Paths" +msgstr "Percorsi" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:370 msgid "Sessions configuration" msgstr "Configurazione sessioni" -#: lib/apiauth.php:95 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:372 +#, fuzzy +msgctxt "MENU" +msgid "Sessions" +msgstr "Sessioni" + +#: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." msgstr "" "Le risorse API richiedono accesso lettura-scrittura, ma si dispone del solo " "accesso in lettura." -#: lib/apiauth.php:273 +#: lib/apiauth.php:272 #, php-format msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" msgstr "" @@ -4915,11 +5088,11 @@ msgstr "Messaggi in cui appare questo allegato" msgid "Tags for this attachment" msgstr "Etichette per questo allegato" -#: lib/authenticationplugin.php:218 lib/authenticationplugin.php:223 +#: lib/authenticationplugin.php:220 lib/authenticationplugin.php:225 msgid "Password changing failed" msgstr "Modifica della password non riuscita" -#: lib/authenticationplugin.php:233 +#: lib/authenticationplugin.php:235 msgid "Password changing is not allowed" msgstr "La modifica della password non è permessa" @@ -5120,9 +5293,9 @@ msgstr "" "minuti: %s" #: lib/command.php:692 -#, fuzzy, php-format +#, php-format msgid "Unsubscribed %s" -msgstr "Abbonamento a %s annullato" +msgstr "%s ha annullato l'abbonamento" #: lib/command.php:709 msgid "You are not subscribed to anyone." @@ -5155,7 +5328,6 @@ msgstr[0] "Non fai parte di questo gruppo:" msgstr[1] "Non fai parte di questi gruppi:" #: lib/command.php:769 -#, fuzzy msgid "" "Commands:\n" "on - turn on notifications\n" @@ -5208,6 +5380,7 @@ msgstr "" "d - invia un messaggio diretto all'utente\n" "get - recupera l'ultimo messaggio dell'utente\n" "whois - recupera le informazioni del profilo dell'utente\n" +"lose - forza un utente nel non seguirti più\n" "fav - aggiunge l'ultimo messaggio dell'utente tra i tuoi " "preferiti\n" "fav # - aggiunge un messaggio con quell'ID tra i tuoi " @@ -5236,21 +5409,21 @@ msgstr "" "tracks - non ancora implementato\n" "tracking - non ancora implementato\n" -#: lib/common.php:136 +#: lib/common.php:148 msgid "No configuration file found. " msgstr "Non è stato trovato alcun file di configurazione. " -#: lib/common.php:137 +#: lib/common.php:149 msgid "I looked for configuration files in the following places: " msgstr "I file di configurazione sono stati cercati in questi posti: " -#: lib/common.php:139 +#: lib/common.php:151 msgid "You may wish to run the installer to fix this." msgstr "" "Potrebbe essere necessario lanciare il programma d'installazione per " "correggere il problema." -#: lib/common.php:140 +#: lib/common.php:152 msgid "Go to the installer." msgstr "Vai al programma d'installazione." @@ -5439,23 +5612,23 @@ msgstr "Errore di sistema nel caricare il file." msgid "Not an image or corrupt file." msgstr "Non è un'immagine o il file è danneggiato." -#: lib/imagefile.php:105 +#: lib/imagefile.php:109 msgid "Unsupported image file format." msgstr "Formato file immagine non supportato." -#: lib/imagefile.php:118 +#: lib/imagefile.php:122 msgid "Lost our file." msgstr "Perso il nostro file." -#: lib/imagefile.php:150 lib/imagefile.php:197 +#: lib/imagefile.php:166 lib/imagefile.php:231 msgid "Unknown file type" msgstr "Tipo di file sconosciuto" -#: lib/imagefile.php:217 +#: lib/imagefile.php:251 msgid "MB" msgstr "MB" -#: lib/imagefile.php:219 +#: lib/imagefile.php:253 msgid "kB" msgstr "kB" @@ -5837,6 +6010,11 @@ msgstr "A" msgid "Available characters" msgstr "Caratteri disponibili" +#: lib/messageform.php:178 lib/noticeform.php:236 +msgctxt "Send button for sending notice" +msgid "Send" +msgstr "Invia" + #: lib/noticeform.php:160 msgid "Send a notice" msgstr "Invia un messaggio" @@ -5895,23 +6073,23 @@ msgstr "O" msgid "at" msgstr "presso" -#: lib/noticelist.php:558 +#: lib/noticelist.php:566 msgid "in context" msgstr "in una discussione" -#: lib/noticelist.php:583 +#: lib/noticelist.php:601 msgid "Repeated by" msgstr "Ripetuto da" -#: lib/noticelist.php:610 +#: lib/noticelist.php:628 msgid "Reply to this notice" msgstr "Rispondi a questo messaggio" -#: lib/noticelist.php:611 +#: lib/noticelist.php:629 msgid "Reply" msgstr "Rispondi" -#: lib/noticelist.php:655 +#: lib/noticelist.php:673 msgid "Notice repeated" msgstr "Messaggio ripetuto" @@ -5959,6 +6137,10 @@ msgstr "Risposte" msgid "Favorites" msgstr "Preferiti" +#: lib/personalgroupnav.php:115 +msgid "User" +msgstr "Utente" + #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "In arrivo" @@ -6048,7 +6230,7 @@ msgstr "Ripetere questo messaggio?" msgid "Repeat this notice" msgstr "Ripeti questo messaggio" -#: lib/router.php:665 +#: lib/router.php:668 msgid "No single user defined for single-user mode." msgstr "Nessun utente singolo definito per la modalità single-user." @@ -6068,6 +6250,10 @@ msgstr "Cerca nel sito" msgid "Keyword(s)" msgstr "Parole" +#: lib/searchaction.php:127 +msgid "Search" +msgstr "Cerca" + #: lib/searchaction.php:162 msgid "Search help" msgstr "Aiuto sulla ricerca" @@ -6119,6 +6305,15 @@ msgstr "Persone abbonate a %s" msgid "Groups %s is a member of" msgstr "Gruppi di cui %s fa parte" +#: lib/subgroupnav.php:105 +msgid "Invite" +msgstr "Invita" + +#: 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/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -6189,47 +6384,47 @@ msgstr "Messaggio" msgid "Moderate" msgstr "Modera" -#: lib/util.php:952 +#: lib/util.php:1013 msgid "a few seconds ago" msgstr "pochi secondi fa" -#: lib/util.php:954 +#: lib/util.php:1015 msgid "about a minute ago" msgstr "circa un minuto fa" -#: lib/util.php:956 +#: lib/util.php:1017 #, php-format msgid "about %d minutes ago" msgstr "circa %d minuti fa" -#: lib/util.php:958 +#: lib/util.php:1019 msgid "about an hour ago" msgstr "circa un'ora fa" -#: lib/util.php:960 +#: lib/util.php:1021 #, php-format msgid "about %d hours ago" msgstr "circa %d ore fa" -#: lib/util.php:962 +#: lib/util.php:1023 msgid "about a day ago" msgstr "circa un giorno fa" -#: lib/util.php:964 +#: lib/util.php:1025 #, php-format msgid "about %d days ago" msgstr "circa %d giorni fa" -#: lib/util.php:966 +#: lib/util.php:1027 msgid "about a month ago" msgstr "circa un mese fa" -#: lib/util.php:968 +#: lib/util.php:1029 #, php-format msgid "about %d months ago" msgstr "circa %d mesi fa" -#: lib/util.php:970 +#: lib/util.php:1031 msgid "about a year ago" msgstr "circa un anno fa" diff --git a/locale/ja/LC_MESSAGES/statusnet.po b/locale/ja/LC_MESSAGES/statusnet.po index e05ddbd153..acbcb457d3 100644 --- a/locale/ja/LC_MESSAGES/statusnet.po +++ b/locale/ja/LC_MESSAGES/statusnet.po @@ -11,75 +11,82 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-02-24 23:49+0000\n" -"PO-Revision-Date: 2010-02-24 23:51:12+0000\n" +"POT-Creation-Date: 2010-03-02 21:02+0000\n" +"PO-Revision-Date: 2010-03-02 21:03:10+0000\n" "Language-Team: Japanese\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r62925); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: actions/accessadminpanel.php:54 lib/adminpanelaction.php:326 +#. TRANS: Page title +#: actions/accessadminpanel.php:55 msgid "Access" msgstr "アクセス" -#: actions/accessadminpanel.php:65 +#. TRANS: Page notice +#: actions/accessadminpanel.php:67 msgid "Site access settings" msgstr "サイトアクセス設定" -#: actions/accessadminpanel.php:158 +#. TRANS: Form legend for registration form. +#: actions/accessadminpanel.php:161 msgid "Registration" msgstr "登録" -#: actions/accessadminpanel.php:161 -msgid "Private" -msgstr "プライベート" - -#: actions/accessadminpanel.php:163 +#. TRANS: Checkbox instructions for admin setting "Private" +#: actions/accessadminpanel.php:165 msgid "Prohibit anonymous users (not logged in) from viewing site?" msgstr "匿名ユーザー(ログインしていません)がサイトを見るのを禁止しますか?" +#. TRANS: Checkbox label for prohibiting anonymous users from viewing site. #: actions/accessadminpanel.php:167 -msgid "Invite only" -msgstr "招待のみ" +#, fuzzy +msgctxt "LABEL" +msgid "Private" +msgstr "プライベート" -#: actions/accessadminpanel.php:169 +#. TRANS: Checkbox instructions for admin setting "Invite only" +#: actions/accessadminpanel.php:174 msgid "Make registration invitation only." msgstr "招待のみ登録する" -#: actions/accessadminpanel.php:173 -msgid "Closed" -msgstr "閉じられた" +#. TRANS: Checkbox label for configuring site as invite only. +#: actions/accessadminpanel.php:176 +msgid "Invite only" +msgstr "招待のみ" -#: actions/accessadminpanel.php:175 +#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations) +#: actions/accessadminpanel.php:183 msgid "Disable new registrations." msgstr "新規登録を無効。" -#: actions/accessadminpanel.php:189 actions/designadminpanel.php:586 -#: actions/emailsettings.php:195 actions/imsettings.php:163 -#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 -#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 -#: actions/siteadminpanel.php:336 actions/smssettings.php:181 -#: actions/subscriptions.php:208 actions/tagother.php:154 -#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 -#: lib/applicationeditform.php:334 lib/designsettings.php:256 -#: lib/groupeditform.php:202 -msgid "Save" -msgstr "保存" +#. TRANS: Checkbox label for disabling new user registrations. +#: actions/accessadminpanel.php:185 +msgid "Closed" +msgstr "閉じられた" -#: actions/accessadminpanel.php:189 +#. TRANS: Title / tooltip for button to save access settings in site admin panel +#: actions/accessadminpanel.php:202 msgid "Save access settings" msgstr "アクセス設定の保存" -#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 -#: actions/showfavorites.php:137 actions/tag.php:51 +#: actions/accessadminpanel.php:203 +#, fuzzy +msgctxt "BUTTON" +msgid "Save" +msgstr "保存" + +#. TRANS: Server error when page not found (404) +#: actions/all.php:64 actions/public.php:98 actions/replies.php:93 +#: actions/showfavorites.php:138 actions/tag.php:52 msgid "No such page" msgstr "そのようなページはありません。" -#: actions/all.php:74 actions/allrss.php:68 +#: actions/all.php:75 actions/allrss.php:68 #: actions/apiaccountupdatedeliverydevice.php:113 #: actions/apiaccountupdateprofile.php:105 #: actions/apiaccountupdateprofilebackgroundimage.php:116 @@ -93,51 +100,59 @@ msgstr "そのようなページはありません。" #: actions/apitimelinehome.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/otp.php:76 -#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154 -#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 -#: actions/showfavorites.php:105 actions/userbyid.php:74 -#: actions/usergroups.php:91 actions/userrss.php:38 actions/xrds.php:71 -#: lib/command.php:163 lib/command.php:302 lib/command.php:355 -#: lib/command.php:401 lib/command.php:462 lib/command.php:518 -#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 +#: actions/hcard.php:67 actions/microsummary.php:62 actions/newmessage.php:116 +#: actions/otp.php:76 actions/remotesubscribe.php:145 +#: actions/remotesubscribe.php:154 actions/replies.php:73 +#: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/xrds.php:71 lib/command.php:163 lib/command.php:302 +#: lib/command.php:355 lib/command.php:401 lib/command.php:462 +#: lib/command.php:518 lib/galleryaction.php:59 lib/mailbox.php:82 +#: lib/profileaction.php:77 msgid "No such user." msgstr "そのようなユーザはいません。" -#: actions/all.php:84 +#. TRANS: Page title. %1$s is user nickname, %2$d is page number +#: actions/all.php:86 #, php-format msgid "%1$s and friends, page %2$d" msgstr "%1$s と友人、ページ %2$d" -#: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 +#. TRANS: Page title. %1$s is user nickname +#. TRANS: H1 text. %1$s is user nickname +#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" msgstr "%s と友人" -#: actions/all.php:99 +#. TRANS: %1$s is user nickname +#: actions/all.php:103 #, php-format msgid "Feed for friends of %s (RSS 1.0)" msgstr "%s の友人のフィード (RSS 1.0)" -#: actions/all.php:107 +#. TRANS: %1$s is user nickname +#: actions/all.php:112 #, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "%s の友人のフィード (RSS 2.0)" -#: actions/all.php:115 +#. TRANS: %1$s is user nickname +#: actions/all.php:121 #, php-format msgid "Feed for friends of %s (Atom)" msgstr "%s の友人のフィード (Atom)" -#: actions/all.php:127 +#. TRANS: %1$s is user nickname +#: actions/all.php:134 #, php-format msgid "" "This is the timeline for %s and friends but no one has posted anything yet." msgstr "これは %s と友人のタイムラインです。まだ誰も投稿していません。" -#: actions/all.php:132 +#: actions/all.php:139 #, php-format msgid "" "Try subscribing to more people, [join a group](%%action.groups%%) or post " @@ -146,7 +161,8 @@ msgstr "" "もっと多くの人をフォローしてみましょう。[グループに参加](%%action.groups%%) " "してみたり、何か投稿してみましょう。" -#: actions/all.php:134 +#. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@" +#: actions/all.php:142 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) from his profile or [post something to " @@ -155,7 +171,7 @@ msgstr "" "プロフィールから [%1$s さんに合図](../%2$s) したり、[知らせたいことについて投" "稿](%%%%action.newnotice%%%%?status_textarea=%3$s) したりできます。" -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211 +#: actions/all.php:145 actions/replies.php:210 actions/showstream.php:211 #, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " @@ -164,7 +180,8 @@ msgstr "" "[アカウントを登録](%%%%action.register%%%%) して %s さんに合図したり、お知ら" "せを送ってみませんか。" -#: actions/all.php:165 +#. TRANS: H1 text +#: actions/all.php:174 msgid "You and friends" msgstr "あなたと友人" @@ -182,20 +199,20 @@ msgstr "%2$s に %1$s と友人からの更新があります!" #: actions/apiaccountverifycredentials.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:128 actions/apigroupcreate.php:136 +#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: actions/apigroupleave.php:141 actions/apigrouplist.php:132 #: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 #: actions/apigroupshow.php:115 actions/apihelptest.php:88 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 -#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184 +#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 #: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:207 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 msgid "API method not found." msgstr "API メソッドが見つかりません。" @@ -229,8 +246,9 @@ msgstr "ユーザを更新できませんでした。" #: actions/apiaccountupdateprofilebackgroundimage.php:194 #: actions/apiaccountupdateprofilecolors.php:185 #: 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 +#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 +#: actions/replies.php:80 actions/usergroups.php:98 lib/galleryaction.php:66 +#: lib/profileaction.php:84 msgid "User has no profile." msgstr "ユーザはプロフィールをもっていません。" @@ -256,7 +274,7 @@ msgstr "" #: actions/apiaccountupdateprofilebackgroundimage.php:146 #: actions/apiaccountupdateprofilecolors.php:164 #: actions/apiaccountupdateprofilecolors.php:174 -#: actions/groupdesignsettings.php:287 actions/groupdesignsettings.php:297 +#: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300 #: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 #: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 msgid "Unable to save your design settings." @@ -367,7 +385,7 @@ msgstr "ソースユーザーを決定できません。" msgid "Could not find target user." msgstr "ターゲットユーザーを見つけられません。" -#: actions/apigroupcreate.php:164 actions/editgroup.php:182 +#: actions/apigroupcreate.php:166 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:215 #: actions/register.php:205 msgid "Nickname must have only lowercase letters and numbers and no spaces." @@ -375,62 +393,62 @@ msgstr "" "ニックネームには、小文字アルファベットと数字のみ使用できます。スペースは使用" "できません。" -#: actions/apigroupcreate.php:173 actions/editgroup.php:186 +#: actions/apigroupcreate.php:175 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:238 #: actions/register.php:208 msgid "Nickname already in use. Try another one." msgstr "そのニックネームは既に使用されています。他のものを試してみて下さい。" -#: actions/apigroupcreate.php:180 actions/editgroup.php:189 +#: actions/apigroupcreate.php:182 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:218 #: actions/register.php:210 msgid "Not a valid nickname." msgstr "有効なニックネームではありません。" -#: actions/apigroupcreate.php:196 actions/editapplication.php:215 -#: actions/editgroup.php:195 actions/newapplication.php:203 +#: actions/apigroupcreate.php:198 actions/editapplication.php:215 +#: actions/editgroup.php:199 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:217 msgid "Homepage is not a valid URL." msgstr "ホームページのURLが不適切です。" -#: actions/apigroupcreate.php:205 actions/editgroup.php:198 +#: actions/apigroupcreate.php:207 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:225 #: actions/register.php:220 msgid "Full name is too long (max 255 chars)." msgstr "フルネームが長すぎます。(255字まで)" -#: actions/apigroupcreate.php:213 actions/editapplication.php:190 +#: actions/apigroupcreate.php:215 actions/editapplication.php:190 #: actions/newapplication.php:172 #, php-format msgid "Description is too long (max %d chars)." msgstr "記述が長すぎます。(最長140字)" -#: actions/apigroupcreate.php:224 actions/editgroup.php:204 +#: actions/apigroupcreate.php:226 actions/editgroup.php:208 #: actions/newgroup.php:148 actions/profilesettings.php:232 #: actions/register.php:227 msgid "Location is too long (max 255 chars)." msgstr "場所が長すぎます。(255字まで)" -#: actions/apigroupcreate.php:243 actions/editgroup.php:215 +#: actions/apigroupcreate.php:245 actions/editgroup.php:219 #: actions/newgroup.php:159 #, php-format msgid "Too many aliases! Maximum %d." msgstr "別名が多すぎます! 最大 %d。" -#: actions/apigroupcreate.php:264 actions/editgroup.php:224 +#: actions/apigroupcreate.php:266 actions/editgroup.php:228 #: actions/newgroup.php:168 #, php-format msgid "Invalid alias: \"%s\"" msgstr "不正な別名: \"%s\"" -#: actions/apigroupcreate.php:273 actions/editgroup.php:228 +#: actions/apigroupcreate.php:275 actions/editgroup.php:232 #: actions/newgroup.php:172 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "別名 \"%s\" は既に使用されています。他のものを試してみて下さい。" -#: actions/apigroupcreate.php:286 actions/editgroup.php:234 +#: actions/apigroupcreate.php:288 actions/editgroup.php:238 #: actions/newgroup.php:178 msgid "Alias can't be the same as nickname." msgstr "別名はニックネームと同じではいけません。" @@ -441,15 +459,15 @@ msgstr "別名はニックネームと同じではいけません。" msgid "Group not found!" msgstr "グループが見つかりません!" -#: actions/apigroupjoin.php:110 actions/joingroup.php:90 +#: actions/apigroupjoin.php:110 actions/joingroup.php:100 msgid "You are already a member of that group." msgstr "すでにこのグループのメンバーです。" -#: actions/apigroupjoin.php:119 actions/joingroup.php:95 lib/command.php:221 +#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:221 msgid "You have been blocked from that group by the admin." msgstr "管理者によってこのグループからブロックされています。" -#: actions/apigroupjoin.php:138 actions/joingroup.php:124 +#: actions/apigroupjoin.php:138 actions/joingroup.php:134 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "ユーザ %1$s はグループ %2$s に参加できません。" @@ -458,7 +476,7 @@ msgstr "ユーザ %1$s はグループ %2$s に参加できません。" msgid "You are not a member of this group." msgstr "このグループのメンバーではありません。" -#: actions/apigroupleave.php:124 actions/leavegroup.php:119 +#: actions/apigroupleave.php:124 actions/leavegroup.php:129 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "ユーザ %1$s をグループ %2$s から削除できません。" @@ -489,7 +507,7 @@ msgstr "不正なトークン。" #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 #: actions/deletenotice.php:157 actions/disfavor.php:74 #: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54 -#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupblock.php:66 actions/grouplogo.php:312 #: actions/groupunblock.php:66 actions/imsettings.php:206 #: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 @@ -532,7 +550,7 @@ msgstr "リクエストトークン%sは、拒否されて、取り消されま #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:103 actions/editapplication.php:139 -#: actions/emailsettings.php:256 actions/grouplogo.php:319 +#: actions/emailsettings.php:256 actions/grouplogo.php:322 #: actions/imsettings.php:220 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 #: actions/smssettings.php:248 lib/designsettings.php:304 @@ -555,13 +573,13 @@ msgid "" "give access to your %4$s account to third parties you trust." msgstr "" -#: actions/apioauthauthorize.php:310 lib/action.php:441 +#: actions/apioauthauthorize.php:310 msgid "Account" msgstr "アカウント" #: actions/apioauthauthorize.php:313 actions/login.php:230 #: actions/profilesettings.php:106 actions/register.php:424 -#: actions/showgroup.php:236 actions/tagother.php:94 +#: actions/showgroup.php:244 actions/tagother.php:94 #: actions/userauthorization.php:145 lib/groupeditform.php:152 #: lib/userprofile.php:131 msgid "Nickname" @@ -643,12 +661,12 @@ msgid "%1$s updates favorited by %2$s / %2$s." msgstr "%1$s は %2$s でお気に入りを更新しました / %2$s。" #: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:131 actions/userrss.php:90 +#: actions/grouprss.php:138 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "%s のタイムライン" -#: actions/apitimelinegroup.php:114 actions/apitimelineuser.php:126 +#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 #: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" @@ -684,7 +702,7 @@ msgstr "%s への返信" msgid "Repeats of %s" msgstr "%s の返信" -#: actions/apitimelinetag.php:102 actions/tag.php:66 +#: actions/apitimelinetag.php:102 actions/tag.php:67 #, php-format msgid "Notices tagged with %s" msgstr "%s とタグ付けされたつぶやき" @@ -705,8 +723,7 @@ msgstr "そのような添付はありません。" #: actions/avatarbynickname.php:59 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/leavegroup.php:76 -#: actions/showgroup.php:121 +#: actions/grouprss.php:91 actions/showgroup.php:121 msgid "No nickname." msgstr "ニックネームがありません。" @@ -718,7 +735,7 @@ msgstr "サイズがありません。" msgid "Invalid size." msgstr "不正なサイズ。" -#: actions/avatarsettings.php:67 actions/showgroup.php:221 +#: actions/avatarsettings.php:67 actions/showgroup.php:229 #: lib/accountsettingsaction.php:112 msgid "Avatar" msgstr "アバター" @@ -735,30 +752,30 @@ msgid "User without matching profile" msgstr "合っているプロフィールのないユーザ" #: actions/avatarsettings.php:119 actions/avatarsettings.php:197 -#: actions/grouplogo.php:251 +#: actions/grouplogo.php:254 msgid "Avatar settings" msgstr "アバター設定" #: actions/avatarsettings.php:127 actions/avatarsettings.php:205 -#: actions/grouplogo.php:199 actions/grouplogo.php:259 +#: actions/grouplogo.php:202 actions/grouplogo.php:262 msgid "Original" msgstr "オリジナル" #: actions/avatarsettings.php:142 actions/avatarsettings.php:217 -#: actions/grouplogo.php:210 actions/grouplogo.php:271 +#: actions/grouplogo.php:213 actions/grouplogo.php:274 msgid "Preview" msgstr "プレビュー" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:637 +#: lib/deleteuserform.php:66 lib/noticelist.php:655 msgid "Delete" msgstr "削除" -#: actions/avatarsettings.php:166 actions/grouplogo.php:233 +#: actions/avatarsettings.php:166 actions/grouplogo.php:236 msgid "Upload" msgstr "アップロード" -#: actions/avatarsettings.php:231 actions/grouplogo.php:286 +#: actions/avatarsettings.php:231 actions/grouplogo.php:289 msgid "Crop" msgstr "切り取り" @@ -766,7 +783,7 @@ msgstr "切り取り" msgid "Pick a square area of the image to be your avatar" msgstr "あなたのアバターとなるイメージを正方形で指定" -#: actions/avatarsettings.php:343 actions/grouplogo.php:377 +#: actions/avatarsettings.php:343 actions/grouplogo.php:380 msgid "Lost our file data." msgstr "ファイルデータを紛失しました。" @@ -802,22 +819,22 @@ msgstr "" "どんな @-返信 についてもそれらから通知されないでしょう。" #: actions/block.php:143 actions/deleteapplication.php:153 -#: actions/deletenotice.php:145 actions/deleteuser.php:147 +#: actions/deletenotice.php:145 actions/deleteuser.php:150 #: actions/groupblock.php:178 msgid "No" msgstr "No" -#: actions/block.php:143 actions/deleteuser.php:147 +#: actions/block.php:143 actions/deleteuser.php:150 msgid "Do not block this user" msgstr "このユーザをアンブロックする" #: actions/block.php:144 actions/deleteapplication.php:158 -#: actions/deletenotice.php:146 actions/deleteuser.php:148 +#: actions/deletenotice.php:146 actions/deleteuser.php:151 #: actions/groupblock.php:179 lib/repeatform.php:132 msgid "Yes" msgstr "Yes" -#: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:355 lib/blockform.php:80 msgid "Block this user" msgstr "このユーザをブロックする" @@ -825,39 +842,43 @@ msgstr "このユーザをブロックする" msgid "Failed to save block information." msgstr "ブロック情報の保存に失敗しました。" -#: actions/blockedfromgroup.php:80 actions/editgroup.php:96 -#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/groupblock.php:86 -#: actions/groupbyid.php:83 actions/groupdesignsettings.php:97 -#: actions/grouplogo.php:99 actions/groupmembers.php:83 -#: actions/grouprss.php:98 actions/groupunblock.php:86 -#: actions/joingroup.php:83 actions/leavegroup.php:83 actions/makeadmin.php:86 -#: actions/showgroup.php:137 lib/command.php:212 lib/command.php:260 +#: actions/blockedfromgroup.php:80 actions/blockedfromgroup.php:87 +#: actions/editgroup.php:100 actions/foafgroup.php:44 actions/foafgroup.php:62 +#: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:100 actions/grouplogo.php:102 +#: actions/groupmembers.php:83 actions/groupmembers.php:90 +#: actions/grouprss.php:98 actions/grouprss.php:105 +#: actions/groupunblock.php:86 actions/joingroup.php:82 +#: actions/joingroup.php:93 actions/leavegroup.php:82 +#: actions/leavegroup.php:93 actions/makeadmin.php:86 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:212 +#: lib/command.php:260 msgid "No such group." msgstr "そのようなグループはありません。" -#: actions/blockedfromgroup.php:90 +#: actions/blockedfromgroup.php:97 #, php-format msgid "%s blocked profiles" msgstr "%s ブロックされたプロファイル" -#: actions/blockedfromgroup.php:93 +#: actions/blockedfromgroup.php:100 #, php-format msgid "%1$s blocked profiles, page %2$d" msgstr "%1$s ブロックされたプロファイル、ページ %2$d" -#: actions/blockedfromgroup.php:108 +#: actions/blockedfromgroup.php:115 msgid "A list of the users blocked from joining this group." msgstr "このグループへの参加をブロックされたユーザのリスト。" -#: actions/blockedfromgroup.php:281 +#: actions/blockedfromgroup.php:288 msgid "Unblock user from group" msgstr "グループからのアンブロックユーザ" -#: actions/blockedfromgroup.php:313 lib/unblockform.php:69 +#: actions/blockedfromgroup.php:320 lib/unblockform.php:69 msgid "Unblock" msgstr "アンブロック" -#: actions/blockedfromgroup.php:313 lib/unblockform.php:80 +#: actions/blockedfromgroup.php:320 lib/unblockform.php:80 msgid "Unblock this user" msgstr "このユーザをアンブロックする" @@ -932,7 +953,7 @@ msgstr "このアプリケーションのオーナーではありません。" #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1197 +#: lib/action.php:1228 msgid "There was a problem with your session token." msgstr "あなたのセッショントークンに関する問題がありました。" @@ -958,12 +979,13 @@ msgstr "このアプリケーションを削除しないでください" msgid "Delete this application" msgstr "このアプリケーションを削除" +#. TRANS: Client error message #: 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:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 -#: lib/adminpanelaction.php:72 lib/profileformaction.php:63 +#: lib/adminpanelaction.php:73 lib/profileformaction.php:63 #: lib/settingsaction.php:72 msgid "Not logged in." msgstr "ログインしていません。" @@ -992,7 +1014,7 @@ msgstr "本当にこのつぶやきを削除しますか?" msgid "Do not delete this notice" msgstr "このつぶやきを削除できません。" -#: actions/deletenotice.php:146 lib/noticelist.php:637 +#: actions/deletenotice.php:146 lib/noticelist.php:655 msgid "Delete this notice" msgstr "このつぶやきを削除" @@ -1008,7 +1030,7 @@ msgstr "ローカルユーザのみ削除できます。" msgid "Delete user" msgstr "ユーザ削除" -#: actions/deleteuser.php:135 +#: actions/deleteuser.php:136 msgid "" "Are you sure you want to delete this user? This will clear all data about " "the user from the database, without a backup." @@ -1016,12 +1038,12 @@ msgstr "" "あなたは本当にこのユーザを削除したいですか? これはバックアップなしでデータ" "ベースからユーザに関するすべてのデータをクリアします。" -#: actions/deleteuser.php:148 lib/deleteuserform.php:77 +#: actions/deleteuser.php:151 lib/deleteuserform.php:77 msgid "Delete this user" msgstr "このユーザを削除" #: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 -#: lib/adminpanelaction.php:316 lib/groupnav.php:119 +#: lib/groupnav.php:119 msgid "Design" msgstr "デザイン" @@ -1124,6 +1146,17 @@ msgstr "デフォルトデザインに戻す。" msgid "Reset back to default" msgstr "デフォルトへリセットする" +#: actions/designadminpanel.php:586 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/tagother.php:154 actions/useradminpanel.php:294 +#: lib/applicationeditform.php:333 lib/applicationeditform.php:334 +#: lib/designsettings.php:256 lib/groupeditform.php:202 +msgid "Save" +msgstr "保存" + #: actions/designadminpanel.php:587 lib/designsettings.php:257 msgid "Save design" msgstr "デザインの保存" @@ -1215,29 +1248,29 @@ msgstr "%s グループを編集" msgid "You must be logged in to create a group." msgstr "グループを作るにはログインしていなければなりません。" -#: actions/editgroup.php:103 actions/editgroup.php:168 -#: actions/groupdesignsettings.php:104 actions/grouplogo.php:106 +#: actions/editgroup.php:107 actions/editgroup.php:172 +#: actions/groupdesignsettings.php:107 actions/grouplogo.php:109 msgid "You must be an admin to edit the group." msgstr "グループを編集するには管理者である必要があります。" -#: actions/editgroup.php:154 +#: actions/editgroup.php:158 msgid "Use this form to edit the group." msgstr "このフォームを使ってグループを編集します。" -#: actions/editgroup.php:201 actions/newgroup.php:145 +#: actions/editgroup.php:205 actions/newgroup.php:145 #, php-format msgid "description is too long (max %d chars)." msgstr "記述が長すぎます。(最長 %d 字)" -#: actions/editgroup.php:253 +#: actions/editgroup.php:258 msgid "Could not update group." msgstr "グループを更新できません。" -#: actions/editgroup.php:259 classes/User_group.php:433 +#: actions/editgroup.php:264 classes/User_group.php:478 msgid "Could not create aliases." msgstr "別名を作成できません。" -#: actions/editgroup.php:269 +#: actions/editgroup.php:280 msgid "Options saved." msgstr "オプションが保存されました。" @@ -1581,7 +1614,7 @@ msgstr "ユーザはすでにグループからブロックされています。 msgid "User is not a member of group." msgstr "ユーザはグループのメンバーではありません。" -#: actions/groupblock.php:136 actions/groupmembers.php:316 +#: actions/groupblock.php:136 actions/groupmembers.php:323 msgid "Block user from group" msgstr "グループからユーザをブロック" @@ -1615,11 +1648,11 @@ msgstr "ID がありません。" msgid "You must be logged in to edit a group." msgstr "グループを編集するにはログインしていなければなりません。" -#: actions/groupdesignsettings.php:141 +#: actions/groupdesignsettings.php:144 msgid "Group design" msgstr "グループデザイン" -#: actions/groupdesignsettings.php:152 +#: actions/groupdesignsettings.php:155 msgid "" "Customize the way your group looks with a background image and a colour " "palette of your choice." @@ -1627,20 +1660,20 @@ msgstr "" "あなたが選んだパレットの色とバックグラウンドイメージであなたのグループをカス" "タマイズしてください。" -#: actions/groupdesignsettings.php:263 actions/userdesignsettings.php:186 +#: actions/groupdesignsettings.php:266 actions/userdesignsettings.php:186 #: lib/designsettings.php:391 lib/designsettings.php:413 msgid "Couldn't update your design." msgstr "あなたのデザインを更新できません。" -#: actions/groupdesignsettings.php:308 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231 msgid "Design preferences saved." msgstr "デザイン設定が保存されました。" -#: actions/grouplogo.php:139 actions/grouplogo.php:192 +#: actions/grouplogo.php:142 actions/grouplogo.php:195 msgid "Group logo" msgstr "グループロゴ" -#: actions/grouplogo.php:150 +#: actions/grouplogo.php:153 #, php-format msgid "" "You can upload a logo image for your group. The maximum file size is %s." @@ -1648,57 +1681,57 @@ msgstr "" "あなたのグループ用にロゴイメージをアップロードできます。最大ファイルサイズは " "%s。" -#: actions/grouplogo.php:178 +#: actions/grouplogo.php:181 msgid "User without matching profile." msgstr "合っているプロフィールのないユーザ" -#: actions/grouplogo.php:362 +#: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." msgstr "ロゴとなるイメージの正方形を選択。" -#: actions/grouplogo.php:396 +#: actions/grouplogo.php:399 msgid "Logo updated." msgstr "ロゴが更新されました。" -#: actions/grouplogo.php:398 +#: actions/grouplogo.php:401 msgid "Failed updating logo." msgstr "ロゴの更新に失敗しました。" -#: actions/groupmembers.php:93 lib/groupnav.php:92 +#: actions/groupmembers.php:100 lib/groupnav.php:92 #, php-format msgid "%s group members" msgstr "%s グループメンバー" -#: actions/groupmembers.php:96 +#: actions/groupmembers.php:103 #, php-format msgid "%1$s group members, page %2$d" msgstr "%1$s グループメンバー、ページ %2$d" -#: actions/groupmembers.php:111 +#: actions/groupmembers.php:118 msgid "A list of the users in this group." msgstr "このグループのユーザのリスト。" -#: actions/groupmembers.php:175 lib/action.php:448 lib/groupnav.php:107 +#: actions/groupmembers.php:182 lib/groupnav.php:107 msgid "Admin" msgstr "管理者" -#: actions/groupmembers.php:348 lib/blockform.php:69 +#: actions/groupmembers.php:355 lib/blockform.php:69 msgid "Block" msgstr "ブロック" -#: actions/groupmembers.php:443 +#: actions/groupmembers.php:450 msgid "Make user an admin of the group" msgstr "ユーザをグループの管理者にする" -#: actions/groupmembers.php:475 +#: actions/groupmembers.php:482 msgid "Make Admin" msgstr "管理者にする" -#: actions/groupmembers.php:475 +#: actions/groupmembers.php:482 msgid "Make this user an admin" msgstr "このユーザを管理者にする" -#: actions/grouprss.php:133 +#: actions/grouprss.php:140 #, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "%2$s 上の %1$s のメンバーから更新する" @@ -1961,16 +1994,19 @@ msgstr "パーソナルメッセージ" msgid "Optionally add a personal message to the invitation." msgstr "任意に招待にパーソナルメッセージを加えてください。" -#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:236 +#. TRANS: Send button for inviting friends +#: actions/invite.php:198 +#, fuzzy +msgctxt "BUTTON" msgid "Send" msgstr "投稿" -#: actions/invite.php:226 +#: actions/invite.php:227 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "%1$s があなたを %2$s へ招待しました" -#: actions/invite.php:228 +#: actions/invite.php:229 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -2031,7 +2067,12 @@ msgstr "" msgid "You must be logged in to join a group." msgstr "グループに入るためにはログインしなければなりません。" -#: actions/joingroup.php:131 +#: actions/joingroup.php:88 actions/leavegroup.php:88 +#, fuzzy +msgid "No nickname or ID." +msgstr "ニックネームがありません。" + +#: actions/joingroup.php:141 #, php-format msgid "%1$s joined group %2$s" msgstr "%1$s はグループ %2$s に参加しました" @@ -2040,11 +2081,11 @@ msgstr "%1$s はグループ %2$s に参加しました" msgid "You must be logged in to leave a group." msgstr "グループから離れるにはログインしていなければなりません。" -#: actions/leavegroup.php:90 lib/command.php:265 +#: actions/leavegroup.php:100 lib/command.php:265 msgid "You are not a member of that group." msgstr "あなたはそのグループのメンバーではありません。" -#: actions/leavegroup.php:127 +#: actions/leavegroup.php:137 #, php-format msgid "%1$s left group %2$s" msgstr "%1$s はグループ %2$s に残りました。" @@ -2061,8 +2102,7 @@ msgstr "ユーザ名またはパスワードが間違っています。" msgid "Error setting user. You are probably not authorized." msgstr "ユーザ設定エラー。 あなたはたぶん承認されていません。" -#: actions/login.php:188 actions/login.php:241 lib/action.php:466 -#: lib/logingroupnav.php:79 +#: actions/login.php:188 actions/login.php:241 lib/logingroupnav.php:79 msgid "Login" msgstr "ログイン" @@ -2315,8 +2355,8 @@ msgstr "内容種別 " msgid "Only " msgstr "だけ " -#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 -#: lib/api.php:1068 lib/api.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 +#: lib/apiaction.php:1068 lib/apiaction.php:1177 msgid "Not a supported data format." msgstr "サポートされていないデータ形式。" @@ -2457,7 +2497,7 @@ msgstr "新しいパスワードを保存できません。" msgid "Password saved." msgstr "パスワードが保存されました。" -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:331 +#: actions/pathsadminpanel.php:59 msgid "Paths" msgstr "パス" @@ -2490,7 +2530,6 @@ msgid "Invalid SSL server. The maximum length is 255 characters." msgstr "不正な SSL サーバー。最大 255 文字まで。" #: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58 -#: lib/adminpanelaction.php:311 msgid "Site" msgstr "サイト" @@ -2663,7 +2702,7 @@ msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1-64文字の、小文字アルファベットか数字で、スペースや句読点は除く" #: actions/profilesettings.php:111 actions/register.php:448 -#: actions/showgroup.php:247 actions/tagother.php:104 +#: actions/showgroup.php:255 actions/tagother.php:104 #: lib/groupeditform.php:157 lib/userprofile.php:149 msgid "Full name" msgstr "フルネーム" @@ -2691,7 +2730,7 @@ msgid "Bio" msgstr "自己紹介" #: actions/profilesettings.php:132 actions/register.php:471 -#: actions/showgroup.php:256 actions/tagother.php:112 +#: actions/showgroup.php:264 actions/tagother.php:112 #: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:164 msgid "Location" @@ -2773,7 +2812,8 @@ msgstr "プロファイルを保存できません" msgid "Couldn't save tags." msgstr "タグを保存できません。" -#: actions/profilesettings.php:391 lib/adminpanelaction.php:137 +#. TRANS: Message after successful saving of administrative settings. +#: actions/profilesettings.php:391 lib/adminpanelaction.php:141 msgid "Settings saved." msgstr "設定が保存されました。" @@ -2786,28 +2826,28 @@ msgstr "ページ制限を超えました (%s)" msgid "Could not retrieve public stream." msgstr "パブリックストリームを検索できません。" -#: actions/public.php:129 +#: actions/public.php:130 #, php-format msgid "Public timeline, page %d" msgstr "パブリックタイムライン、ページ %d" -#: actions/public.php:131 lib/publicgroupnav.php:79 +#: actions/public.php:132 lib/publicgroupnav.php:79 msgid "Public timeline" msgstr "パブリックタイムライン" -#: actions/public.php:159 +#: actions/public.php:160 msgid "Public Stream Feed (RSS 1.0)" msgstr "パブリックストリームフィード (RSS 1.0)" -#: actions/public.php:163 +#: actions/public.php:164 msgid "Public Stream Feed (RSS 2.0)" msgstr "パブリックストリームフィード (RSS 2.0)" -#: actions/public.php:167 +#: actions/public.php:168 msgid "Public Stream Feed (Atom)" msgstr "パブリックストリームフィード (Atom)" -#: actions/public.php:187 +#: actions/public.php:188 #, php-format msgid "" "This is the public timeline for %%site.name%% but no one has posted anything " @@ -2816,11 +2856,11 @@ msgstr "" "これは %%site.name%% のパブリックタイムラインです、しかしまだ誰も投稿していま" "せん。" -#: actions/public.php:190 +#: actions/public.php:191 msgid "Be the first to post!" msgstr "投稿する1番目になってください!" -#: actions/public.php:194 +#: actions/public.php:195 #, php-format msgid "" "Why not [register an account](%%action.register%%) and be the first to post!" @@ -2828,7 +2868,7 @@ msgstr "" "なぜ [アカウント登録](%%action.register%%) しないのですか、そして最初の投稿を" "してください!" -#: actions/public.php:241 +#: actions/public.php:242 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2842,7 +2882,7 @@ msgstr "" "族そして同僚などについてのつぶやきを共有しましょう! ([もっと読む](%%doc.help%" "%))" -#: actions/public.php:246 +#: actions/public.php:247 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -3019,8 +3059,7 @@ msgstr "すみません、不正な招待コード。" msgid "Registration successful" msgstr "登録成功" -#: actions/register.php:114 actions/register.php:503 lib/action.php:463 -#: lib/logingroupnav.php:85 +#: actions/register.php:114 actions/register.php:503 lib/logingroupnav.php:85 msgid "Register" msgstr "登録" @@ -3205,7 +3244,7 @@ msgstr "自分のつぶやきは繰り返せません。" msgid "You already repeated that notice." msgstr "すでにそのつぶやきを繰り返しています。" -#: actions/repeat.php:114 lib/noticelist.php:656 +#: actions/repeat.php:114 lib/noticelist.php:674 msgid "Repeated" msgstr "繰り返された" @@ -3213,33 +3252,33 @@ msgstr "繰り返された" msgid "Repeated!" msgstr "繰り返されました!" -#: actions/replies.php:125 actions/repliesrss.php:68 +#: actions/replies.php:126 actions/repliesrss.php:68 #: lib/personalgroupnav.php:105 #, php-format msgid "Replies to %s" msgstr "%s への返信" -#: actions/replies.php:127 +#: actions/replies.php:128 #, php-format msgid "Replies to %1$s, page %2$d" msgstr "%1$s への返信、ページ %2$s" -#: actions/replies.php:144 +#: actions/replies.php:145 #, php-format msgid "Replies feed for %s (RSS 1.0)" msgstr "%s の返信フィード (RSS 1.0)" -#: actions/replies.php:151 +#: actions/replies.php:152 #, php-format msgid "Replies feed for %s (RSS 2.0)" msgstr "%s の返信フィード (RSS 2.0)" -#: actions/replies.php:158 +#: actions/replies.php:159 #, php-format msgid "Replies feed for %s (Atom)" msgstr "%s の返信フィード (Atom)" -#: actions/replies.php:198 +#: actions/replies.php:199 #, php-format msgid "" "This is the timeline showing replies to %1$s but %2$s hasn't received a " @@ -3248,7 +3287,7 @@ msgstr "" "これは %1$s への返信を表示したタイムラインです、しかし %2$s はまだつぶやきを" "受け取っていません。" -#: actions/replies.php:203 +#: actions/replies.php:204 #, php-format msgid "" "You can engage other users in a conversation, subscribe to more people or " @@ -3257,7 +3296,7 @@ msgstr "" "あなたは、他のユーザを会話をするか、多くの人々をフォローするか、または [グ" "ループに加わる](%%action.groups%%)ことができます。" -#: actions/replies.php:205 +#: actions/replies.php:206 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) or [post something to his or her " @@ -3284,7 +3323,6 @@ msgid "User is already sandboxed." msgstr "ユーザはすでにサンドボックスです。" #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:336 msgid "Sessions" msgstr "セッション" @@ -3309,7 +3347,7 @@ msgid "Turn on debugging output for sessions." msgstr "セッションのためのデバッグ出力をオン。" #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/useradminpanel.php:293 +#: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "サイト設定の保存" @@ -3339,7 +3377,7 @@ msgstr "組織" msgid "Description" msgstr "概要" -#: actions/showapplication.php:192 actions/showgroup.php:429 +#: actions/showapplication.php:192 actions/showgroup.php:437 #: lib/profileaction.php:174 msgid "Statistics" msgstr "統計データ" @@ -3403,22 +3441,22 @@ msgstr "%1$s のお気に入りのつぶやき、ページ %2$d" msgid "Could not retrieve favorite notices." msgstr "お気に入りのつぶやきを検索できません。" -#: actions/showfavorites.php:170 +#: actions/showfavorites.php:171 #, php-format msgid "Feed for favorites of %s (RSS 1.0)" msgstr "%s のお気に入りのフィード (RSS 1.0)" -#: actions/showfavorites.php:177 +#: actions/showfavorites.php:178 #, php-format msgid "Feed for favorites of %s (RSS 2.0)" msgstr "%s のお気に入りのフィード (RSS 2.0)" -#: actions/showfavorites.php:184 +#: actions/showfavorites.php:185 #, php-format msgid "Feed for favorites of %s (Atom)" msgstr "%s のお気に入りのフィード (Atom)" -#: actions/showfavorites.php:205 +#: actions/showfavorites.php:206 msgid "" "You haven't chosen any favorite notices yet. Click the fave button on " "notices you like to bookmark them for later or shed a spotlight on them." @@ -3427,7 +3465,7 @@ msgstr "" "加するあなたがそれらがお気に入りのつぶやきのときにお気に入りボタンをクリック" "するか、またはそれらの上でスポットライトをはじいてください。" -#: actions/showfavorites.php:207 +#: actions/showfavorites.php:208 #, php-format msgid "" "%s hasn't added any notices to his favorites yet. Post something interesting " @@ -3436,7 +3474,7 @@ msgstr "" "%s はまだ彼のお気に入りに少しのつぶやきも加えていません。 彼らがお気に入りに" "加えることおもしろいものを投稿してください:)" -#: actions/showfavorites.php:211 +#: actions/showfavorites.php:212 #, php-format msgid "" "%s hasn't added any notices to his favorites yet. Why not [register an " @@ -3447,7 +3485,7 @@ msgstr "" "%%%action.register%%%%) しないのですか。そして、彼らがお気に入りに加えるおも" "しろい何かを投稿しませんか:)" -#: actions/showfavorites.php:242 +#: actions/showfavorites.php:243 msgid "This is a way to share what you like." msgstr "これは、あなたが好きなことを共有する方法です。" @@ -3461,67 +3499,67 @@ msgstr "%s グループ" msgid "%1$s group, page %2$d" msgstr "%1$s グループ、ページ %2$d" -#: actions/showgroup.php:218 +#: actions/showgroup.php:226 msgid "Group profile" msgstr "グループプロファイル" -#: actions/showgroup.php:263 actions/tagother.php:118 +#: actions/showgroup.php:271 actions/tagother.php:118 #: actions/userauthorization.php:175 lib/userprofile.php:177 msgid "URL" msgstr "URL" -#: actions/showgroup.php:274 actions/tagother.php:128 +#: actions/showgroup.php:282 actions/tagother.php:128 #: actions/userauthorization.php:187 lib/userprofile.php:194 msgid "Note" msgstr "ノート" -#: actions/showgroup.php:284 lib/groupeditform.php:184 +#: actions/showgroup.php:292 lib/groupeditform.php:184 msgid "Aliases" msgstr "別名" -#: actions/showgroup.php:293 +#: actions/showgroup.php:301 msgid "Group actions" msgstr "グループアクション" -#: actions/showgroup.php:328 +#: actions/showgroup.php:336 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "%s グループのつぶやきフィード (RSS 1.0)" -#: actions/showgroup.php:334 +#: actions/showgroup.php:342 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "%s グループのつぶやきフィード (RSS 2.0)" -#: actions/showgroup.php:340 +#: actions/showgroup.php:348 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "%s グループのつぶやきフィード (Atom)" -#: actions/showgroup.php:345 +#: actions/showgroup.php:353 #, php-format msgid "FOAF for %s group" msgstr "%s グループの FOAF" -#: actions/showgroup.php:381 actions/showgroup.php:438 lib/groupnav.php:91 +#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 msgid "Members" msgstr "メンバー" -#: actions/showgroup.php:386 lib/profileaction.php:117 +#: actions/showgroup.php:394 lib/profileaction.php:117 #: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(なし)" -#: actions/showgroup.php:392 +#: actions/showgroup.php:400 msgid "All members" msgstr "全てのメンバー" -#: actions/showgroup.php:432 +#: actions/showgroup.php:440 msgid "Created" msgstr "作成日" -#: actions/showgroup.php:448 +#: actions/showgroup.php:456 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3536,7 +3574,7 @@ msgstr "" "する短いメッセージを共有します。[今すぐ参加](%%%%action.register%%%%) してこ" "のグループの一員になりましょう! ([もっと読む](%%%%doc.help%%%%))" -#: actions/showgroup.php:454 +#: actions/showgroup.php:462 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3549,7 +3587,7 @@ msgstr "" "wikipedia.org/wiki/Micro-blogging) サービス。メンバーは彼らの暮らしと興味に関" "する短いメッセージを共有します。" -#: actions/showgroup.php:482 +#: actions/showgroup.php:490 msgid "Admins" msgstr "管理者" @@ -4032,22 +4070,22 @@ msgstr "Jabber" msgid "SMS" msgstr "SMS" -#: actions/tag.php:68 +#: actions/tag.php:69 #, php-format msgid "Notices tagged with %1$s, page %2$d" msgstr "%1$s とタグ付けされたつぶやき、ページ %2$d" -#: actions/tag.php:86 +#: actions/tag.php:87 #, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "%s とタグ付けされたつぶやきフィード (RSS 1.0)" -#: actions/tag.php:92 +#: actions/tag.php:93 #, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "%s とタグ付けされたつぶやきフィード (RSS 2.0)" -#: actions/tag.php:98 +#: actions/tag.php:99 #, php-format msgid "Notice feed for tag %s (Atom)" msgstr "%s とタグ付けされたつぶやきフィード (Atom)" @@ -4100,7 +4138,7 @@ msgstr "このフォームを使用して、フォロー者かフォローにタ msgid "No such tag." msgstr "そのようなタグはありません。" -#: actions/twitapitrends.php:87 +#: actions/twitapitrends.php:85 msgid "API method under construction." msgstr "API メソッドが工事中です。" @@ -4132,70 +4170,72 @@ msgstr "" "リスニーストリームライセンス ‘%1$s’ は、サイトライセンス ‘%2$s’ と互換性があ" "りません。" -#: actions/useradminpanel.php:58 lib/adminpanelaction.php:321 -#: lib/personalgroupnav.php:115 +#. TRANS: User admin panel title +#: actions/useradminpanel.php:59 +#, fuzzy +msgctxt "TITLE" msgid "User" msgstr "ユーザ" -#: actions/useradminpanel.php:69 +#: actions/useradminpanel.php:70 msgid "User settings for this StatusNet site." msgstr "この StatusNet サイトのユーザ設定。" -#: actions/useradminpanel.php:148 +#: actions/useradminpanel.php:149 msgid "Invalid bio limit. Must be numeric." msgstr "不正な自己紹介制限。数字である必要があります。" -#: actions/useradminpanel.php:154 +#: actions/useradminpanel.php:155 msgid "Invalid welcome text. Max length is 255 characters." msgstr "不正なウェルカムテキスト。最大長は255字です。" -#: actions/useradminpanel.php:164 +#: actions/useradminpanel.php:165 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "不正なデフォルトフォローです: '%1$s' はユーザではありません。" -#: actions/useradminpanel.php:217 lib/accountsettingsaction.php:108 +#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "プロファイル" -#: actions/useradminpanel.php:221 +#: actions/useradminpanel.php:222 msgid "Bio Limit" msgstr "自己紹介制限" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:223 msgid "Maximum length of a profile bio in characters." msgstr "プロファイル自己紹介の最大文字長。" -#: actions/useradminpanel.php:230 +#: actions/useradminpanel.php:231 msgid "New users" msgstr "新しいユーザ" -#: actions/useradminpanel.php:234 +#: actions/useradminpanel.php:235 msgid "New user welcome" msgstr "新しいユーザを歓迎" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:236 msgid "Welcome text for new users (Max 255 chars)." msgstr "新しいユーザへのウェルカムテキスト (最大255字)。" -#: actions/useradminpanel.php:240 +#: actions/useradminpanel.php:241 msgid "Default subscription" msgstr "デフォルトフォロー" -#: actions/useradminpanel.php:241 +#: actions/useradminpanel.php:242 msgid "Automatically subscribe new users to this user." msgstr "自動的にこのユーザに新しいユーザをフォローしてください。" -#: actions/useradminpanel.php:250 +#: actions/useradminpanel.php:251 msgid "Invitations" msgstr "招待" -#: actions/useradminpanel.php:255 +#: actions/useradminpanel.php:256 msgid "Invitations enabled" msgstr "招待が可能" -#: actions/useradminpanel.php:257 +#: actions/useradminpanel.php:258 msgid "Whether to allow users to invite new users." msgstr "ユーザが新しいユーザを招待するのを許容するかどうか。" @@ -4381,7 +4421,7 @@ msgstr "" msgid "Plugins" msgstr "プラグイン" -#: actions/version.php:196 lib/action.php:747 +#: actions/version.php:196 lib/action.php:778 msgid "Version" msgstr "バージョン" @@ -4423,6 +4463,11 @@ msgstr "グループの一部ではありません。" msgid "Group leave failed." msgstr "グループ脱退に失敗しました。" +#: classes/Local_group.php:41 +#, fuzzy +msgid "Could not update local group." +msgstr "グループを更新できません。" + #: classes/Login_token.php:76 #, php-format msgid "Could not create login token for %s" @@ -4440,26 +4485,26 @@ msgstr "メッセージを追加できません。" msgid "Could not update message with new URI." msgstr "新しいURIでメッセージをアップデートできませんでした。" -#: classes/Notice.php:157 +#: classes/Notice.php:172 #, php-format msgid "DB error inserting hashtag: %s" msgstr "ハッシュタグ追加 DB エラー: %s" -#: classes/Notice.php:222 +#: classes/Notice.php:239 msgid "Problem saving notice. Too long." msgstr "つぶやきを保存する際に問題が発生しました。長すぎです。" -#: classes/Notice.php:226 +#: classes/Notice.php:243 msgid "Problem saving notice. Unknown user." msgstr "つぶやきを保存する際に問題が発生しました。不明なユーザです。" -#: classes/Notice.php:231 +#: classes/Notice.php:248 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" "多すぎるつぶやきが速すぎます; 数分間の休みを取ってから再投稿してください。" -#: classes/Notice.php:237 +#: classes/Notice.php:254 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." @@ -4467,19 +4512,19 @@ msgstr "" "多すぎる重複メッセージが速すぎます; 数分間休みを取ってから再度投稿してくださ" "い。" -#: classes/Notice.php:243 +#: classes/Notice.php:260 msgid "You are banned from posting notices on this site." msgstr "あなたはこのサイトでつぶやきを投稿するのが禁止されています。" -#: classes/Notice.php:309 classes/Notice.php:335 +#: classes/Notice.php:326 classes/Notice.php:352 msgid "Problem saving notice." msgstr "つぶやきを保存する際に問題が発生しました。" -#: classes/Notice.php:882 +#: classes/Notice.php:911 msgid "Problem saving group inbox." msgstr "グループ受信箱を保存する際に問題が発生しました。" -#: classes/Notice.php:1407 +#: classes/Notice.php:1442 #, php-format msgid "RT @%1$s %2$s" msgstr "" @@ -4508,19 +4553,29 @@ msgstr "自己フォローを削除できません。" msgid "Couldn't delete subscription." msgstr "フォローを削除できません" -#: classes/User.php:372 +#: classes/User.php:373 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "ようこそ %1$s、@%2$s!" -#: classes/User_group.php:423 +#: classes/User_group.php:462 msgid "Could not create group." msgstr "グループを作成できません。" -#: classes/User_group.php:452 +#: classes/User_group.php:471 +#, fuzzy +msgid "Could not set group URI." +msgstr "グループメンバーシップをセットできません。" + +#: classes/User_group.php:492 msgid "Could not set group membership." msgstr "グループメンバーシップをセットできません。" +#: classes/User_group.php:506 +#, fuzzy +msgid "Could not save local group info." +msgstr "フォローを保存できません。" + #: lib/accountsettingsaction.php:108 msgid "Change your profile settings" msgstr "プロファイル設定の変更" @@ -4562,120 +4617,190 @@ msgstr "名称未設定ページ" msgid "Primary site navigation" msgstr "プライマリサイトナビゲーション" +#. TRANS: Tooltip for main menu option "Personal" #: lib/action.php:439 -msgid "Home" -msgstr "ホーム" - -#: lib/action.php:439 +#, fuzzy +msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "パーソナルプロファイルと友人のタイムライン" -#: lib/action.php:441 +#: lib/action.php:442 +#, fuzzy +msgctxt "MENU" +msgid "Personal" +msgstr "パーソナル" + +#. TRANS: Tooltip for main menu option "Account" +#: lib/action.php:444 +#, fuzzy +msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "メールアドレス、アバター、パスワード、プロパティの変更" -#: lib/action.php:444 -msgid "Connect" -msgstr "接続" +#: lib/action.php:447 +#, fuzzy +msgctxt "MENU" +msgid "Account" +msgstr "アカウント" -#: lib/action.php:444 +#. TRANS: Tooltip for main menu option "Services" +#: lib/action.php:450 +#, fuzzy +msgctxt "TOOLTIP" msgid "Connect to services" msgstr "サービスへ接続" -#: lib/action.php:448 +#: lib/action.php:453 +#, fuzzy +msgctxt "MENU" +msgid "Connect" +msgstr "接続" + +#. TRANS: Tooltip for menu option "Admin" +#: lib/action.php:457 +#, fuzzy +msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "サイト設定の変更" -#: lib/action.php:452 lib/subgroupnav.php:105 -msgid "Invite" -msgstr "招待" +#: lib/action.php:460 +#, fuzzy +msgctxt "MENU" +msgid "Admin" +msgstr "管理者" -#: lib/action.php:453 lib/subgroupnav.php:106 -#, php-format +#. TRANS: Tooltip for main menu option "Invite" +#: lib/action.php:464 +#, fuzzy, php-format +msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "友人や同僚が %s で加わるよう誘ってください。" -#: lib/action.php:458 -msgid "Logout" -msgstr "ログアウト" +#: lib/action.php:467 +#, fuzzy +msgctxt "MENU" +msgid "Invite" +msgstr "招待" -#: lib/action.php:458 +#. TRANS: Tooltip for main menu option "Logout" +#: lib/action.php:473 +#, fuzzy +msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "サイトからログアウト" -#: lib/action.php:463 +#: lib/action.php:476 +#, fuzzy +msgctxt "MENU" +msgid "Logout" +msgstr "ログアウト" + +#. TRANS: Tooltip for main menu option "Register" +#: lib/action.php:481 +#, fuzzy +msgctxt "TOOLTIP" msgid "Create an account" msgstr "アカウントを作成" -#: lib/action.php:466 +#: lib/action.php:484 +#, fuzzy +msgctxt "MENU" +msgid "Register" +msgstr "登録" + +#. TRANS: Tooltip for main menu option "Login" +#: lib/action.php:487 +#, fuzzy +msgctxt "TOOLTIP" msgid "Login to the site" msgstr "サイトへログイン" -#: lib/action.php:469 lib/action.php:732 -msgid "Help" -msgstr "ヘルプ" +#: lib/action.php:490 +#, fuzzy +msgctxt "MENU" +msgid "Login" +msgstr "ログイン" -#: lib/action.php:469 +#. TRANS: Tooltip for main menu option "Help" +#: lib/action.php:493 +#, fuzzy +msgctxt "TOOLTIP" msgid "Help me!" msgstr "助けて!" -#: lib/action.php:472 lib/searchaction.php:127 -msgid "Search" -msgstr "検索" +#: lib/action.php:496 +#, fuzzy +msgctxt "MENU" +msgid "Help" +msgstr "ヘルプ" -#: lib/action.php:472 +#. TRANS: Tooltip for main menu option "Search" +#: lib/action.php:499 +#, fuzzy +msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "人々かテキストを検索" -#: lib/action.php:493 +#: lib/action.php:502 +#, fuzzy +msgctxt "MENU" +msgid "Search" +msgstr "検索" + +#. TRANS: DT element for site notice. String is hidden in default CSS. +#: lib/action.php:524 msgid "Site notice" msgstr "サイトつぶやき" -#: lib/action.php:559 +#: lib/action.php:590 msgid "Local views" msgstr "ローカルビュー" -#: lib/action.php:625 +#: lib/action.php:656 msgid "Page notice" msgstr "ページつぶやき" -#: lib/action.php:727 +#: lib/action.php:758 msgid "Secondary site navigation" msgstr "セカンダリサイトナビゲーション" -#: lib/action.php:734 +#: lib/action.php:763 +msgid "Help" +msgstr "ヘルプ" + +#: lib/action.php:765 msgid "About" msgstr "About" -#: lib/action.php:736 +#: lib/action.php:767 msgid "FAQ" msgstr "よくある質問" -#: lib/action.php:740 +#: lib/action.php:771 msgid "TOS" msgstr "" -#: lib/action.php:743 +#: lib/action.php:774 msgid "Privacy" msgstr "プライバシー" -#: lib/action.php:745 +#: lib/action.php:776 msgid "Source" msgstr "ソース" -#: lib/action.php:749 +#: lib/action.php:780 msgid "Contact" msgstr "連絡先" -#: lib/action.php:751 +#: lib/action.php:782 msgid "Badge" msgstr "バッジ" -#: lib/action.php:779 +#: lib/action.php:810 msgid "StatusNet software license" msgstr "StatusNet ソフトウェアライセンス" -#: lib/action.php:782 +#: lib/action.php:813 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4684,12 +4809,12 @@ msgstr "" "**%%site.name%%** は [%%site.broughtby%%](%%site.broughtbyurl%%) が提供するマ" "イクロブログサービスです。 " -#: lib/action.php:784 +#: lib/action.php:815 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** はマイクロブログサービスです。 " -#: lib/action.php:786 +#: lib/action.php:817 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4700,107 +4825,160 @@ msgstr "" "いています。 ライセンス [GNU Affero General Public License](http://www.fsf." "org/licensing/licenses/agpl-3.0.html)。" -#: lib/action.php:801 +#: lib/action.php:832 msgid "Site content license" msgstr "サイト内容ライセンス" -#: lib/action.php:806 +#: lib/action.php:837 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:811 +#: lib/action.php:842 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:814 +#: lib/action.php:845 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" -#: lib/action.php:827 +#: lib/action.php:858 msgid "All " msgstr "全て " -#: lib/action.php:833 +#: lib/action.php:864 msgid "license." msgstr "ライセンス。" -#: lib/action.php:1132 +#: lib/action.php:1163 msgid "Pagination" msgstr "ページ化" -#: lib/action.php:1141 +#: lib/action.php:1172 msgid "After" msgstr "<<後" -#: lib/action.php:1149 +#: lib/action.php:1180 msgid "Before" msgstr "前>>" -#: lib/activity.php:382 +#: lib/activity.php:449 msgid "Can't handle remote content yet." msgstr "" -#: lib/activity.php:410 +#: lib/activity.php:477 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activity.php:414 +#: lib/activity.php:481 msgid "Can't handle embedded Base64 content yet." msgstr "" -#: lib/adminpanelaction.php:96 +#. TRANS: Client error message +#: lib/adminpanelaction.php:98 msgid "You cannot make changes to this site." msgstr "あなたはこのサイトへの変更を行うことができません。" -#: lib/adminpanelaction.php:107 +#. TRANS: Client error message +#: lib/adminpanelaction.php:110 msgid "Changes to that panel are not allowed." msgstr "そのパネルへの変更は許可されていません。" -#: lib/adminpanelaction.php:206 +#. TRANS: Client error message +#: lib/adminpanelaction.php:211 msgid "showForm() not implemented." msgstr "showForm() は実装されていません。" -#: lib/adminpanelaction.php:235 +#. TRANS: Client error message +#: lib/adminpanelaction.php:241 msgid "saveSettings() not implemented." msgstr "saveSettings() は実装されていません。" -#: lib/adminpanelaction.php:258 +#. TRANS: Client error message +#: lib/adminpanelaction.php:265 msgid "Unable to delete design setting." msgstr "デザイン設定を削除できません。" -#: lib/adminpanelaction.php:312 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:330 msgid "Basic site configuration" msgstr "基本サイト設定" -#: lib/adminpanelaction.php:317 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:332 +#, fuzzy +msgctxt "MENU" +msgid "Site" +msgstr "サイト" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:338 msgid "Design configuration" msgstr "デザイン設定" -#: lib/adminpanelaction.php:322 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:340 +#, fuzzy +msgctxt "MENU" +msgid "Design" +msgstr "デザイン" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:346 msgid "User configuration" msgstr "ユーザ設定" -#: lib/adminpanelaction.php:327 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:348 +#, fuzzy +msgctxt "MENU" +msgid "User" +msgstr "ユーザ" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:354 msgid "Access configuration" msgstr "アクセス設定" -#: lib/adminpanelaction.php:332 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:356 +#, fuzzy +msgctxt "MENU" +msgid "Access" +msgstr "アクセス" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:362 msgid "Paths configuration" msgstr "パス設定" -#: lib/adminpanelaction.php:337 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:364 +#, fuzzy +msgctxt "MENU" +msgid "Paths" +msgstr "パス" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:370 msgid "Sessions configuration" msgstr "セッション設定" -#: lib/apiauth.php:95 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:372 +#, fuzzy +msgctxt "MENU" +msgid "Sessions" +msgstr "セッション" + +#: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." msgstr "" "APIリソースは読み書きアクセスが必要です、しかしあなたは読みアクセスしか持って" "いません。" -#: lib/apiauth.php:273 +#: lib/apiauth.php:272 #, php-format msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" msgstr "" @@ -4892,11 +5070,11 @@ msgstr "この添付が現れるつぶやき" msgid "Tags for this attachment" msgstr "この添付のタグ" -#: lib/authenticationplugin.php:218 lib/authenticationplugin.php:223 +#: lib/authenticationplugin.php:220 lib/authenticationplugin.php:225 msgid "Password changing failed" msgstr "パスワード変更に失敗しました" -#: lib/authenticationplugin.php:233 +#: lib/authenticationplugin.php:235 msgid "Password changing is not allowed" msgstr "パスワード変更は許可されていません" @@ -5169,21 +5347,21 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:136 +#: lib/common.php:148 msgid "No configuration file found. " msgstr "コンフィギュレーションファイルがありません。 " -#: lib/common.php:137 +#: lib/common.php:149 msgid "I looked for configuration files in the following places: " msgstr "私は以下の場所でコンフィギュレーションファイルを探しました: " -#: lib/common.php:139 +#: lib/common.php:151 msgid "You may wish to run the installer to fix this." msgstr "" "あなたは、これを修理するためにインストーラを動かしたがっているかもしれませ" "ん。" -#: lib/common.php:140 +#: lib/common.php:152 msgid "Go to the installer." msgstr "インストーラへ。" @@ -5371,23 +5549,23 @@ msgstr "ファイルのアップロードでシステムエラー" msgid "Not an image or corrupt file." msgstr "画像ではないかファイルが破損しています。" -#: lib/imagefile.php:105 +#: lib/imagefile.php:109 msgid "Unsupported image file format." msgstr "サポート外の画像形式です。" -#: lib/imagefile.php:118 +#: lib/imagefile.php:122 msgid "Lost our file." msgstr "ファイルを紛失。" -#: lib/imagefile.php:150 lib/imagefile.php:197 +#: lib/imagefile.php:166 lib/imagefile.php:231 msgid "Unknown file type" msgstr "不明なファイルタイプ" -#: lib/imagefile.php:217 +#: lib/imagefile.php:251 msgid "MB" msgstr "MB" -#: lib/imagefile.php:219 +#: lib/imagefile.php:253 msgid "kB" msgstr "kB" @@ -5771,6 +5949,12 @@ msgstr "To" msgid "Available characters" msgstr "利用可能な文字" +#: lib/messageform.php:178 lib/noticeform.php:236 +#, fuzzy +msgctxt "Send button for sending notice" +msgid "Send" +msgstr "投稿" + #: lib/noticeform.php:160 msgid "Send a notice" msgstr "つぶやきを送る" @@ -5833,23 +6017,23 @@ msgstr "西" msgid "at" msgstr "at" -#: lib/noticelist.php:558 +#: lib/noticelist.php:566 msgid "in context" msgstr "" -#: lib/noticelist.php:583 +#: lib/noticelist.php:601 msgid "Repeated by" msgstr "" -#: lib/noticelist.php:610 +#: lib/noticelist.php:628 msgid "Reply to this notice" msgstr "このつぶやきへ返信" -#: lib/noticelist.php:611 +#: lib/noticelist.php:629 msgid "Reply" msgstr "返信" -#: lib/noticelist.php:655 +#: lib/noticelist.php:673 msgid "Notice repeated" msgstr "つぶやきを繰り返しました" @@ -5897,6 +6081,10 @@ msgstr "返信" msgid "Favorites" msgstr "お気に入り" +#: lib/personalgroupnav.php:115 +msgid "User" +msgstr "ユーザ" + #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "受信箱" @@ -5986,7 +6174,7 @@ msgstr "このつぶやきを繰り返しますか?" msgid "Repeat this notice" msgstr "このつぶやきを繰り返す" -#: lib/router.php:665 +#: lib/router.php:668 msgid "No single user defined for single-user mode." msgstr "single-user モードのためのシングルユーザが定義されていません。" @@ -6006,6 +6194,10 @@ msgstr "サイト検索" msgid "Keyword(s)" msgstr "キーワード" +#: lib/searchaction.php:127 +msgid "Search" +msgstr "検索" + #: lib/searchaction.php:162 msgid "Search help" msgstr "ヘルプ検索" @@ -6057,6 +6249,15 @@ msgstr "人々は %s をフォローしました。" msgid "Groups %s is a member of" msgstr "グループ %s はメンバー" +#: lib/subgroupnav.php:105 +msgid "Invite" +msgstr "招待" + +#: lib/subgroupnav.php:106 +#, 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" @@ -6128,47 +6329,47 @@ msgstr "メッセージ" msgid "Moderate" msgstr "管理" -#: lib/util.php:952 +#: lib/util.php:1013 msgid "a few seconds ago" msgstr "数秒前" -#: lib/util.php:954 +#: lib/util.php:1015 msgid "about a minute ago" msgstr "約 1 分前" -#: lib/util.php:956 +#: lib/util.php:1017 #, php-format msgid "about %d minutes ago" msgstr "約 %d 分前" -#: lib/util.php:958 +#: lib/util.php:1019 msgid "about an hour ago" msgstr "約 1 時間前" -#: lib/util.php:960 +#: lib/util.php:1021 #, php-format msgid "about %d hours ago" msgstr "約 %d 時間前" -#: lib/util.php:962 +#: lib/util.php:1023 msgid "about a day ago" msgstr "約 1 日前" -#: lib/util.php:964 +#: lib/util.php:1025 #, php-format msgid "about %d days ago" msgstr "約 %d 日前" -#: lib/util.php:966 +#: lib/util.php:1027 msgid "about a month ago" msgstr "約 1 ヵ月前" -#: lib/util.php:968 +#: lib/util.php:1029 #, php-format msgid "about %d months ago" msgstr "約 %d ヵ月前" -#: lib/util.php:970 +#: lib/util.php:1031 msgid "about a year ago" msgstr "約 1 年前" diff --git a/locale/ko/LC_MESSAGES/statusnet.po b/locale/ko/LC_MESSAGES/statusnet.po index 1653bf31bc..aca8a093ad 100644 --- a/locale/ko/LC_MESSAGES/statusnet.po +++ b/locale/ko/LC_MESSAGES/statusnet.po @@ -7,83 +7,89 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-02-24 23:49+0000\n" -"PO-Revision-Date: 2010-02-24 23:51:15+0000\n" +"POT-Creation-Date: 2010-03-02 21:02+0000\n" +"PO-Revision-Date: 2010-03-02 21:03:13+0000\n" "Language-Team: Korean\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r62925); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ko\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: actions/accessadminpanel.php:54 lib/adminpanelaction.php:326 +#. TRANS: Page title +#: actions/accessadminpanel.php:55 #, fuzzy msgid "Access" msgstr "수락" -#: actions/accessadminpanel.php:65 +#. TRANS: Page notice +#: actions/accessadminpanel.php:67 #, fuzzy msgid "Site access settings" msgstr "아바타 설정" -#: actions/accessadminpanel.php:158 +#. TRANS: Form legend for registration form. +#: actions/accessadminpanel.php:161 #, fuzzy msgid "Registration" msgstr "회원가입" -#: actions/accessadminpanel.php:161 -#, fuzzy -msgid "Private" -msgstr "개인정보 취급방침" - -#: actions/accessadminpanel.php:163 +#. TRANS: Checkbox instructions for admin setting "Private" +#: actions/accessadminpanel.php:165 msgid "Prohibit anonymous users (not logged in) from viewing site?" msgstr "" +#. TRANS: Checkbox label for prohibiting anonymous users from viewing site. #: actions/accessadminpanel.php:167 #, fuzzy +msgctxt "LABEL" +msgid "Private" +msgstr "개인정보 취급방침" + +#. TRANS: Checkbox instructions for admin setting "Invite only" +#: actions/accessadminpanel.php:174 +msgid "Make registration invitation only." +msgstr "" + +#. TRANS: Checkbox label for configuring site as invite only. +#: actions/accessadminpanel.php:176 +#, fuzzy msgid "Invite only" msgstr "초대" -#: actions/accessadminpanel.php:169 -msgid "Make registration invitation only." +#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations) +#: actions/accessadminpanel.php:183 +msgid "Disable new registrations." msgstr "" -#: actions/accessadminpanel.php:173 +#. TRANS: Checkbox label for disabling new user registrations. +#: actions/accessadminpanel.php:185 #, fuzzy msgid "Closed" msgstr "차단하기" -#: actions/accessadminpanel.php:175 -msgid "Disable new registrations." -msgstr "" - -#: actions/accessadminpanel.php:189 actions/designadminpanel.php:586 -#: actions/emailsettings.php:195 actions/imsettings.php:163 -#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 -#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 -#: actions/siteadminpanel.php:336 actions/smssettings.php:181 -#: actions/subscriptions.php:208 actions/tagother.php:154 -#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 -#: lib/applicationeditform.php:334 lib/designsettings.php:256 -#: lib/groupeditform.php:202 -msgid "Save" -msgstr "저장" - -#: actions/accessadminpanel.php:189 +#. TRANS: Title / tooltip for button to save access settings in site admin panel +#: actions/accessadminpanel.php:202 #, fuzzy msgid "Save access settings" msgstr "아바타 설정" -#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 -#: actions/showfavorites.php:137 actions/tag.php:51 +#: actions/accessadminpanel.php:203 +#, fuzzy +msgctxt "BUTTON" +msgid "Save" +msgstr "저장" + +#. TRANS: Server error when page not found (404) +#: actions/all.php:64 actions/public.php:98 actions/replies.php:93 +#: actions/showfavorites.php:138 actions/tag.php:52 #, fuzzy msgid "No such page" msgstr "그러한 태그가 없습니다." -#: actions/all.php:74 actions/allrss.php:68 +#: actions/all.php:75 actions/allrss.php:68 #: actions/apiaccountupdatedeliverydevice.php:113 #: actions/apiaccountupdateprofile.php:105 #: actions/apiaccountupdateprofilebackgroundimage.php:116 @@ -97,72 +103,82 @@ msgstr "그러한 태그가 없습니다." #: actions/apitimelinehome.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/otp.php:76 -#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154 -#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 -#: actions/showfavorites.php:105 actions/userbyid.php:74 -#: actions/usergroups.php:91 actions/userrss.php:38 actions/xrds.php:71 -#: lib/command.php:163 lib/command.php:302 lib/command.php:355 -#: lib/command.php:401 lib/command.php:462 lib/command.php:518 -#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 +#: actions/hcard.php:67 actions/microsummary.php:62 actions/newmessage.php:116 +#: actions/otp.php:76 actions/remotesubscribe.php:145 +#: actions/remotesubscribe.php:154 actions/replies.php:73 +#: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/xrds.php:71 lib/command.php:163 lib/command.php:302 +#: lib/command.php:355 lib/command.php:401 lib/command.php:462 +#: lib/command.php:518 lib/galleryaction.php:59 lib/mailbox.php:82 +#: lib/profileaction.php:77 msgid "No such user." msgstr "그러한 사용자는 없습니다." -#: actions/all.php:84 +#. TRANS: Page title. %1$s is user nickname, %2$d is page number +#: actions/all.php:86 #, fuzzy, php-format msgid "%1$s and friends, page %2$d" msgstr "%s 와 친구들, %d 페이지" -#: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 +#. TRANS: Page title. %1$s is user nickname +#. TRANS: H1 text. %1$s is user nickname +#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" msgstr "%s 및 친구들" -#: actions/all.php:99 +#. TRANS: %1$s is user nickname +#: actions/all.php:103 #, fuzzy, php-format msgid "Feed for friends of %s (RSS 1.0)" msgstr "%s의 친구들을 위한 피드" -#: actions/all.php:107 +#. TRANS: %1$s is user nickname +#: actions/all.php:112 #, fuzzy, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "%s의 친구들을 위한 피드" -#: actions/all.php:115 +#. TRANS: %1$s is user nickname +#: actions/all.php:121 #, fuzzy, php-format msgid "Feed for friends of %s (Atom)" msgstr "%s의 친구들을 위한 피드" -#: actions/all.php:127 +#. TRANS: %1$s is user nickname +#: actions/all.php:134 #, php-format msgid "" "This is the timeline for %s and friends but no one has posted anything yet." msgstr "" -#: actions/all.php:132 +#: actions/all.php:139 #, php-format msgid "" "Try subscribing to more people, [join a group](%%action.groups%%) or post " "something yourself." msgstr "" -#: actions/all.php:134 +#. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@" +#: actions/all.php:142 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) from his profile or [post something to " "his or her attention](%%%%action.newnotice%%%%?status_textarea=%3$s)." msgstr "" -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211 +#: actions/all.php:145 actions/replies.php:210 actions/showstream.php:211 #, 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/all.php:165 +#. TRANS: H1 text +#: actions/all.php:174 #, fuzzy msgid "You and friends" msgstr "%s 및 친구들" @@ -181,20 +197,20 @@ msgstr "%1$s 및 %2$s에 있는 친구들의 업데이트!" #: actions/apiaccountverifycredentials.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:128 actions/apigroupcreate.php:136 +#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: actions/apigroupleave.php:141 actions/apigrouplist.php:132 #: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 #: actions/apigroupshow.php:115 actions/apihelptest.php:88 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 -#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184 +#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 #: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:207 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 #, fuzzy msgid "API method not found." msgstr "API 메서드를 찾을 수 없습니다." @@ -228,8 +244,9 @@ msgstr "사용자를 업데이트 할 수 없습니다." #: actions/apiaccountupdateprofilebackgroundimage.php:194 #: actions/apiaccountupdateprofilecolors.php:185 #: 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 +#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 +#: actions/replies.php:80 actions/usergroups.php:98 lib/galleryaction.php:66 +#: lib/profileaction.php:84 msgid "User has no profile." msgstr "이용자가 프로필을 가지고 있지 않습니다." @@ -254,7 +271,7 @@ msgstr "" #: actions/apiaccountupdateprofilebackgroundimage.php:146 #: actions/apiaccountupdateprofilecolors.php:164 #: actions/apiaccountupdateprofilecolors.php:174 -#: actions/groupdesignsettings.php:287 actions/groupdesignsettings.php:297 +#: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300 #: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 #: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 #, fuzzy @@ -373,7 +390,7 @@ msgstr "공개 stream을 불러올 수 없습니다." msgid "Could not find target user." msgstr "어떠한 상태도 찾을 수 없습니다." -#: actions/apigroupcreate.php:164 actions/editgroup.php:182 +#: actions/apigroupcreate.php:166 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:215 #: actions/register.php:205 msgid "Nickname must have only lowercase letters and numbers and no spaces." @@ -381,62 +398,62 @@ msgstr "" "별명은 반드시 영소문자와 숫자로만 이루어져야 하며 스페이스의 사용이 불가 합니" "다." -#: actions/apigroupcreate.php:173 actions/editgroup.php:186 +#: actions/apigroupcreate.php:175 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:238 #: actions/register.php:208 msgid "Nickname already in use. Try another one." msgstr "별명이 이미 사용중 입니다. 다른 별명을 시도해 보십시오." -#: actions/apigroupcreate.php:180 actions/editgroup.php:189 +#: actions/apigroupcreate.php:182 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:218 #: actions/register.php:210 msgid "Not a valid nickname." msgstr "유효한 별명이 아닙니다" -#: actions/apigroupcreate.php:196 actions/editapplication.php:215 -#: actions/editgroup.php:195 actions/newapplication.php:203 +#: actions/apigroupcreate.php:198 actions/editapplication.php:215 +#: actions/editgroup.php:199 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:217 msgid "Homepage is not a valid URL." msgstr "홈페이지 주소형식이 올바르지 않습니다." -#: actions/apigroupcreate.php:205 actions/editgroup.php:198 +#: actions/apigroupcreate.php:207 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:225 #: actions/register.php:220 msgid "Full name is too long (max 255 chars)." msgstr "실명이 너무 깁니다. (최대 255글자)" -#: actions/apigroupcreate.php:213 actions/editapplication.php:190 +#: actions/apigroupcreate.php:215 actions/editapplication.php:190 #: actions/newapplication.php:172 #, fuzzy, php-format msgid "Description is too long (max %d chars)." msgstr "설명이 너무 길어요. (최대 140글자)" -#: actions/apigroupcreate.php:224 actions/editgroup.php:204 +#: actions/apigroupcreate.php:226 actions/editgroup.php:208 #: actions/newgroup.php:148 actions/profilesettings.php:232 #: actions/register.php:227 msgid "Location is too long (max 255 chars)." msgstr "위치가 너무 깁니다. (최대 255글자)" -#: actions/apigroupcreate.php:243 actions/editgroup.php:215 +#: actions/apigroupcreate.php:245 actions/editgroup.php:219 #: actions/newgroup.php:159 #, php-format msgid "Too many aliases! Maximum %d." msgstr "" -#: actions/apigroupcreate.php:264 actions/editgroup.php:224 +#: actions/apigroupcreate.php:266 actions/editgroup.php:228 #: actions/newgroup.php:168 #, fuzzy, php-format msgid "Invalid alias: \"%s\"" msgstr "유효하지 않은태그: \"%s\"" -#: actions/apigroupcreate.php:273 actions/editgroup.php:228 +#: actions/apigroupcreate.php:275 actions/editgroup.php:232 #: actions/newgroup.php:172 #, fuzzy, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "별명이 이미 사용중 입니다. 다른 별명을 시도해 보십시오." -#: actions/apigroupcreate.php:286 actions/editgroup.php:234 +#: actions/apigroupcreate.php:288 actions/editgroup.php:238 #: actions/newgroup.php:178 msgid "Alias can't be the same as nickname." msgstr "" @@ -448,16 +465,16 @@ msgstr "" msgid "Group not found!" msgstr "API 메서드를 찾을 수 없습니다." -#: actions/apigroupjoin.php:110 actions/joingroup.php:90 +#: actions/apigroupjoin.php:110 actions/joingroup.php:100 #, fuzzy msgid "You are already a member of that group." msgstr "당신은 이미 이 그룹의 멤버입니다." -#: actions/apigroupjoin.php:119 actions/joingroup.php:95 lib/command.php:221 +#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:221 msgid "You have been blocked from that group by the admin." msgstr "" -#: actions/apigroupjoin.php:138 actions/joingroup.php:124 +#: actions/apigroupjoin.php:138 actions/joingroup.php:134 #, fuzzy, php-format msgid "Could not join user %1$s to group %2$s." msgstr "그룹 %s에 %s는 가입할 수 없습니다." @@ -467,7 +484,7 @@ msgstr "그룹 %s에 %s는 가입할 수 없습니다." msgid "You are not a member of this group." msgstr "당신은 해당 그룹의 멤버가 아닙니다." -#: actions/apigroupleave.php:124 actions/leavegroup.php:119 +#: actions/apigroupleave.php:124 actions/leavegroup.php:129 #, fuzzy, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "그룹 %s에서 %s 사용자를 제거할 수 없습니다." @@ -499,7 +516,7 @@ msgstr "옳지 않은 크기" #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 #: actions/deletenotice.php:157 actions/disfavor.php:74 #: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54 -#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupblock.php:66 actions/grouplogo.php:312 #: actions/groupunblock.php:66 actions/imsettings.php:206 #: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 @@ -543,7 +560,7 @@ msgstr "" #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:103 actions/editapplication.php:139 -#: actions/emailsettings.php:256 actions/grouplogo.php:319 +#: actions/emailsettings.php:256 actions/grouplogo.php:322 #: actions/imsettings.php:220 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 #: actions/smssettings.php:248 lib/designsettings.php:304 @@ -566,13 +583,13 @@ msgid "" "give access to your %4$s account to third parties you trust." msgstr "" -#: actions/apioauthauthorize.php:310 lib/action.php:441 +#: actions/apioauthauthorize.php:310 msgid "Account" msgstr "계정" #: actions/apioauthauthorize.php:313 actions/login.php:230 #: actions/profilesettings.php:106 actions/register.php:424 -#: actions/showgroup.php:236 actions/tagother.php:94 +#: actions/showgroup.php:244 actions/tagother.php:94 #: actions/userauthorization.php:145 lib/groupeditform.php:152 #: lib/userprofile.php:131 msgid "Nickname" @@ -659,12 +676,12 @@ msgid "%1$s updates favorited by %2$s / %2$s." msgstr "%s 좋아하는 글이 업데이트 됐습니다. %S에 의해 / %s." #: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:131 actions/userrss.php:90 +#: actions/grouprss.php:138 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "%s 타임라인" -#: actions/apitimelinegroup.php:114 actions/apitimelineuser.php:126 +#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 #: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" @@ -700,7 +717,7 @@ msgstr "%s에 답신" msgid "Repeats of %s" msgstr "%s에 답신" -#: actions/apitimelinetag.php:102 actions/tag.php:66 +#: actions/apitimelinetag.php:102 actions/tag.php:67 #, php-format msgid "Notices tagged with %s" msgstr "%s 태그된 통지" @@ -722,8 +739,7 @@ msgstr "그러한 문서는 없습니다." #: actions/avatarbynickname.php:59 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/leavegroup.php:76 -#: actions/showgroup.php:121 +#: actions/grouprss.php:91 actions/showgroup.php:121 msgid "No nickname." msgstr "별명이 없습니다." @@ -735,7 +751,7 @@ msgstr "사이즈가 없습니다." msgid "Invalid size." msgstr "옳지 않은 크기" -#: actions/avatarsettings.php:67 actions/showgroup.php:221 +#: actions/avatarsettings.php:67 actions/showgroup.php:229 #: lib/accountsettingsaction.php:112 msgid "Avatar" msgstr "아바타" @@ -752,30 +768,30 @@ msgid "User without matching profile" msgstr "프로필 매칭이 없는 사용자" #: actions/avatarsettings.php:119 actions/avatarsettings.php:197 -#: actions/grouplogo.php:251 +#: actions/grouplogo.php:254 msgid "Avatar settings" msgstr "아바타 설정" #: actions/avatarsettings.php:127 actions/avatarsettings.php:205 -#: actions/grouplogo.php:199 actions/grouplogo.php:259 +#: actions/grouplogo.php:202 actions/grouplogo.php:262 msgid "Original" msgstr "원래 설정" #: actions/avatarsettings.php:142 actions/avatarsettings.php:217 -#: actions/grouplogo.php:210 actions/grouplogo.php:271 +#: actions/grouplogo.php:213 actions/grouplogo.php:274 msgid "Preview" msgstr "미리보기" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:637 +#: lib/deleteuserform.php:66 lib/noticelist.php:655 msgid "Delete" msgstr "삭제" -#: actions/avatarsettings.php:166 actions/grouplogo.php:233 +#: actions/avatarsettings.php:166 actions/grouplogo.php:236 msgid "Upload" msgstr "올리기" -#: actions/avatarsettings.php:231 actions/grouplogo.php:286 +#: actions/avatarsettings.php:231 actions/grouplogo.php:289 msgid "Crop" msgstr "자르기" @@ -783,7 +799,7 @@ msgstr "자르기" msgid "Pick a square area of the image to be your avatar" msgstr "당신의 아바타가 될 이미지영역을 지정하세요." -#: actions/avatarsettings.php:343 actions/grouplogo.php:377 +#: actions/avatarsettings.php:343 actions/grouplogo.php:380 msgid "Lost our file data." msgstr "파일 데이터를 잃어버렸습니다." @@ -817,23 +833,23 @@ msgid "" msgstr "" #: actions/block.php:143 actions/deleteapplication.php:153 -#: actions/deletenotice.php:145 actions/deleteuser.php:147 +#: actions/deletenotice.php:145 actions/deleteuser.php:150 #: actions/groupblock.php:178 msgid "No" msgstr "아니오" -#: actions/block.php:143 actions/deleteuser.php:147 +#: actions/block.php:143 actions/deleteuser.php:150 #, fuzzy msgid "Do not block this user" msgstr "이 사용자를 차단해제합니다." #: actions/block.php:144 actions/deleteapplication.php:158 -#: actions/deletenotice.php:146 actions/deleteuser.php:148 +#: actions/deletenotice.php:146 actions/deleteuser.php:151 #: actions/groupblock.php:179 lib/repeatform.php:132 msgid "Yes" msgstr "네, 맞습니다." -#: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:355 lib/blockform.php:80 msgid "Block this user" msgstr "이 사용자 차단하기" @@ -841,41 +857,45 @@ msgstr "이 사용자 차단하기" msgid "Failed to save block information." msgstr "정보차단을 저장하는데 실패했습니다." -#: actions/blockedfromgroup.php:80 actions/editgroup.php:96 -#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/groupblock.php:86 -#: actions/groupbyid.php:83 actions/groupdesignsettings.php:97 -#: actions/grouplogo.php:99 actions/groupmembers.php:83 -#: actions/grouprss.php:98 actions/groupunblock.php:86 -#: actions/joingroup.php:83 actions/leavegroup.php:83 actions/makeadmin.php:86 -#: actions/showgroup.php:137 lib/command.php:212 lib/command.php:260 +#: actions/blockedfromgroup.php:80 actions/blockedfromgroup.php:87 +#: actions/editgroup.php:100 actions/foafgroup.php:44 actions/foafgroup.php:62 +#: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:100 actions/grouplogo.php:102 +#: actions/groupmembers.php:83 actions/groupmembers.php:90 +#: actions/grouprss.php:98 actions/grouprss.php:105 +#: actions/groupunblock.php:86 actions/joingroup.php:82 +#: actions/joingroup.php:93 actions/leavegroup.php:82 +#: actions/leavegroup.php:93 actions/makeadmin.php:86 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:212 +#: lib/command.php:260 msgid "No such group." msgstr "그러한 그룹이 없습니다." -#: actions/blockedfromgroup.php:90 +#: actions/blockedfromgroup.php:97 #, fuzzy, php-format msgid "%s blocked profiles" msgstr "이용자 프로필" -#: actions/blockedfromgroup.php:93 +#: actions/blockedfromgroup.php:100 #, fuzzy, php-format msgid "%1$s blocked profiles, page %2$d" msgstr "%s 와 친구들, %d 페이지" -#: actions/blockedfromgroup.php:108 +#: actions/blockedfromgroup.php:115 #, fuzzy msgid "A list of the users blocked from joining this group." msgstr "이 그룹의 회원리스트" -#: actions/blockedfromgroup.php:281 +#: actions/blockedfromgroup.php:288 #, fuzzy msgid "Unblock user from group" msgstr "사용자 차단 해제에 실패했습니다." -#: actions/blockedfromgroup.php:313 lib/unblockform.php:69 +#: actions/blockedfromgroup.php:320 lib/unblockform.php:69 msgid "Unblock" msgstr "차단해제" -#: actions/blockedfromgroup.php:313 lib/unblockform.php:80 +#: actions/blockedfromgroup.php:320 lib/unblockform.php:80 msgid "Unblock this user" msgstr "이 사용자를 차단해제합니다." @@ -956,7 +976,7 @@ msgstr "당신은 해당 그룹의 멤버가 아닙니다." #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1197 +#: lib/action.php:1228 msgid "There was a problem with your session token." msgstr "당신의 세션토큰관련 문제가 있습니다." @@ -982,12 +1002,13 @@ msgstr "이 통지를 지울 수 없습니다." msgid "Delete this application" msgstr "이 게시글 삭제하기" +#. TRANS: Client error message #: 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:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 -#: lib/adminpanelaction.php:72 lib/profileformaction.php:63 +#: lib/adminpanelaction.php:73 lib/profileformaction.php:63 #: lib/settingsaction.php:72 msgid "Not logged in." msgstr "로그인하고 있지 않습니다." @@ -1017,7 +1038,7 @@ msgstr "정말로 통지를 삭제하시겠습니까?" msgid "Do not delete this notice" msgstr "이 통지를 지울 수 없습니다." -#: actions/deletenotice.php:146 lib/noticelist.php:637 +#: actions/deletenotice.php:146 lib/noticelist.php:655 msgid "Delete this notice" msgstr "이 게시글 삭제하기" @@ -1036,19 +1057,19 @@ msgstr "당신은 다른 사용자의 상태를 삭제하지 않아도 된다." msgid "Delete user" msgstr "삭제" -#: actions/deleteuser.php:135 +#: actions/deleteuser.php:136 msgid "" "Are you sure you want to delete this user? This will clear all data about " "the user from the database, without a backup." msgstr "" -#: actions/deleteuser.php:148 lib/deleteuserform.php:77 +#: actions/deleteuser.php:151 lib/deleteuserform.php:77 #, fuzzy msgid "Delete this user" msgstr "이 게시글 삭제하기" #: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 -#: lib/adminpanelaction.php:316 lib/groupnav.php:119 +#: lib/groupnav.php:119 msgid "Design" msgstr "" @@ -1159,6 +1180,17 @@ msgstr "" msgid "Reset back to default" msgstr "" +#: actions/designadminpanel.php:586 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/tagother.php:154 actions/useradminpanel.php:294 +#: lib/applicationeditform.php:333 lib/applicationeditform.php:334 +#: lib/designsettings.php:256 lib/groupeditform.php:202 +msgid "Save" +msgstr "저장" + #: actions/designadminpanel.php:587 lib/designsettings.php:257 msgid "Save design" msgstr "" @@ -1261,31 +1293,31 @@ msgstr "%s 그룹 편집" msgid "You must be logged in to create a group." msgstr "그룹을 만들기 위해서는 로그인해야 합니다." -#: actions/editgroup.php:103 actions/editgroup.php:168 -#: actions/groupdesignsettings.php:104 actions/grouplogo.php:106 +#: actions/editgroup.php:107 actions/editgroup.php:172 +#: actions/groupdesignsettings.php:107 actions/grouplogo.php:109 #, fuzzy msgid "You must be an admin to edit the group." msgstr "관리자만 그룹을 편집할 수 있습니다." -#: actions/editgroup.php:154 +#: actions/editgroup.php:158 msgid "Use this form to edit the group." msgstr "다음 양식을 이용해 그룹을 편집하십시오." -#: actions/editgroup.php:201 actions/newgroup.php:145 +#: actions/editgroup.php:205 actions/newgroup.php:145 #, fuzzy, php-format msgid "description is too long (max %d chars)." msgstr "설명이 너무 길어요. (최대 140글자)" -#: actions/editgroup.php:253 +#: actions/editgroup.php:258 msgid "Could not update group." msgstr "그룹을 업데이트 할 수 없습니다." -#: actions/editgroup.php:259 classes/User_group.php:433 +#: actions/editgroup.php:264 classes/User_group.php:478 #, fuzzy msgid "Could not create aliases." msgstr "좋아하는 게시글을 생성할 수 없습니다." -#: actions/editgroup.php:269 +#: actions/editgroup.php:280 msgid "Options saved." msgstr "옵션들이 저장되었습니다." @@ -1634,7 +1666,7 @@ msgstr "회원이 당신을 차단해왔습니다." msgid "User is not a member of group." msgstr "당신은 해당 그룹의 멤버가 아닙니다." -#: actions/groupblock.php:136 actions/groupmembers.php:316 +#: actions/groupblock.php:136 actions/groupmembers.php:323 #, fuzzy msgid "Block user from group" msgstr "사용자를 차단합니다." @@ -1671,93 +1703,93 @@ msgstr "ID가 없습니다." msgid "You must be logged in to edit a group." msgstr "그룹을 만들기 위해서는 로그인해야 합니다." -#: actions/groupdesignsettings.php:141 +#: actions/groupdesignsettings.php:144 #, fuzzy msgid "Group design" msgstr "그룹" -#: actions/groupdesignsettings.php:152 +#: actions/groupdesignsettings.php:155 msgid "" "Customize the way your group looks with a background image and a colour " "palette of your choice." msgstr "" -#: actions/groupdesignsettings.php:263 actions/userdesignsettings.php:186 +#: actions/groupdesignsettings.php:266 actions/userdesignsettings.php:186 #: lib/designsettings.php:391 lib/designsettings.php:413 #, fuzzy msgid "Couldn't update your design." msgstr "사용자를 업데이트 할 수 없습니다." -#: actions/groupdesignsettings.php:308 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231 #, fuzzy msgid "Design preferences saved." msgstr "싱크설정이 저장되었습니다." -#: actions/grouplogo.php:139 actions/grouplogo.php:192 +#: actions/grouplogo.php:142 actions/grouplogo.php:195 msgid "Group logo" msgstr "그룹 로고" -#: actions/grouplogo.php:150 +#: actions/grouplogo.php:153 #, fuzzy, php-format msgid "" "You can upload a logo image for your group. The maximum file size is %s." msgstr "당신그룹의 로고 이미지를 업로드할 수 있습니다." -#: actions/grouplogo.php:178 +#: actions/grouplogo.php:181 #, fuzzy msgid "User without matching profile." msgstr "프로필 매칭이 없는 사용자" -#: actions/grouplogo.php:362 +#: actions/grouplogo.php:365 #, fuzzy msgid "Pick a square area of the image to be the logo." msgstr "당신의 아바타가 될 이미지영역을 지정하세요." -#: actions/grouplogo.php:396 +#: actions/grouplogo.php:399 msgid "Logo updated." msgstr "로고를 업데이트했습니다." -#: actions/grouplogo.php:398 +#: actions/grouplogo.php:401 msgid "Failed updating logo." msgstr "로고 업데이트에 실패했습니다." -#: actions/groupmembers.php:93 lib/groupnav.php:92 +#: actions/groupmembers.php:100 lib/groupnav.php:92 #, php-format msgid "%s group members" msgstr "%s 그룹 회원" -#: actions/groupmembers.php:96 +#: actions/groupmembers.php:103 #, fuzzy, php-format msgid "%1$s group members, page %2$d" msgstr "%s 그룹 회원, %d페이지" -#: actions/groupmembers.php:111 +#: actions/groupmembers.php:118 msgid "A list of the users in this group." msgstr "이 그룹의 회원리스트" -#: actions/groupmembers.php:175 lib/action.php:448 lib/groupnav.php:107 +#: actions/groupmembers.php:182 lib/groupnav.php:107 msgid "Admin" msgstr "관리자" -#: actions/groupmembers.php:348 lib/blockform.php:69 +#: actions/groupmembers.php:355 lib/blockform.php:69 msgid "Block" msgstr "차단하기" -#: actions/groupmembers.php:443 +#: actions/groupmembers.php:450 #, fuzzy msgid "Make user an admin of the group" msgstr "관리자만 그룹을 편집할 수 있습니다." -#: actions/groupmembers.php:475 +#: actions/groupmembers.php:482 #, fuzzy msgid "Make Admin" msgstr "관리자" -#: actions/groupmembers.php:475 +#: actions/groupmembers.php:482 msgid "Make this user an admin" msgstr "" -#: actions/grouprss.php:133 +#: actions/grouprss.php:140 #, fuzzy, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "%2$s에 있는 %1$s의 업데이트!" @@ -2011,16 +2043,19 @@ msgstr "개인적인 메시지" msgid "Optionally add a personal message to the invitation." msgstr "초대장에 메시지 첨부하기." -#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:236 +#. TRANS: Send button for inviting friends +#: actions/invite.php:198 +#, fuzzy +msgctxt "BUTTON" msgid "Send" msgstr "보내기" -#: actions/invite.php:226 +#: actions/invite.php:227 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "%1$s님이 귀하를 %2$s에 초대하였습니다." -#: actions/invite.php:228 +#: actions/invite.php:229 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -2076,7 +2111,12 @@ msgstr "" msgid "You must be logged in to join a group." msgstr "그룹가입을 위해서는 로그인이 필요합니다." -#: actions/joingroup.php:131 +#: actions/joingroup.php:88 actions/leavegroup.php:88 +#, fuzzy +msgid "No nickname or ID." +msgstr "별명이 없습니다." + +#: actions/joingroup.php:141 #, fuzzy, php-format msgid "%1$s joined group %2$s" msgstr "%s 는 그룹 %s에 가입했습니다." @@ -2085,11 +2125,11 @@ msgstr "%s 는 그룹 %s에 가입했습니다." msgid "You must be logged in to leave a group." msgstr "그룹을 떠나기 위해서는 로그인해야 합니다." -#: actions/leavegroup.php:90 lib/command.php:265 +#: actions/leavegroup.php:100 lib/command.php:265 msgid "You are not a member of that group." msgstr "당신은 해당 그룹의 멤버가 아닙니다." -#: actions/leavegroup.php:127 +#: actions/leavegroup.php:137 #, fuzzy, php-format msgid "%1$s left group %2$s" msgstr "%s가 그룹%s를 떠났습니다." @@ -2107,8 +2147,7 @@ msgstr "틀린 계정 또는 비밀 번호" msgid "Error setting user. You are probably not authorized." msgstr "인증이 되지 않았습니다." -#: actions/login.php:188 actions/login.php:241 lib/action.php:466 -#: lib/logingroupnav.php:79 +#: actions/login.php:188 actions/login.php:241 lib/logingroupnav.php:79 msgid "Login" msgstr "로그인" @@ -2364,8 +2403,8 @@ msgstr "연결" msgid "Only " msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 -#: lib/api.php:1068 lib/api.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 +#: lib/apiaction.php:1068 lib/apiaction.php:1177 msgid "Not a supported data format." msgstr "지원하는 형식의 데이터가 아닙니다." @@ -2511,7 +2550,7 @@ msgstr "새 비밀번호를 저장 할 수 없습니다." msgid "Password saved." msgstr "비밀 번호 저장" -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:331 +#: actions/pathsadminpanel.php:59 msgid "Paths" msgstr "" @@ -2544,7 +2583,6 @@ msgid "Invalid SSL server. The maximum length is 255 characters." msgstr "" #: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58 -#: lib/adminpanelaction.php:311 #, fuzzy msgid "Site" msgstr "초대" @@ -2728,7 +2766,7 @@ msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1-64자 사이에 영소문자, 숫자로만 씁니다. 기호나 공백을 쓰면 안 됩니다." #: actions/profilesettings.php:111 actions/register.php:448 -#: actions/showgroup.php:247 actions/tagother.php:104 +#: actions/showgroup.php:255 actions/tagother.php:104 #: lib/groupeditform.php:157 lib/userprofile.php:149 msgid "Full name" msgstr "실명" @@ -2757,7 +2795,7 @@ msgid "Bio" msgstr "자기소개" #: actions/profilesettings.php:132 actions/register.php:471 -#: actions/showgroup.php:256 actions/tagother.php:112 +#: actions/showgroup.php:264 actions/tagother.php:112 #: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:164 msgid "Location" @@ -2838,7 +2876,8 @@ msgstr "프로필을 저장 할 수 없습니다." msgid "Couldn't save tags." msgstr "태그를 저장할 수 없습니다." -#: actions/profilesettings.php:391 lib/adminpanelaction.php:137 +#. TRANS: Message after successful saving of administrative settings. +#: actions/profilesettings.php:391 lib/adminpanelaction.php:141 msgid "Settings saved." msgstr "설정 저장" @@ -2851,48 +2890,48 @@ msgstr "" msgid "Could not retrieve public stream." msgstr "공개 stream을 불러올 수 없습니다." -#: actions/public.php:129 +#: actions/public.php:130 #, php-format msgid "Public timeline, page %d" msgstr "공개 타임라인, %d 페이지" -#: actions/public.php:131 lib/publicgroupnav.php:79 +#: actions/public.php:132 lib/publicgroupnav.php:79 msgid "Public timeline" msgstr "퍼블릭 타임라인" -#: actions/public.php:159 +#: actions/public.php:160 #, fuzzy msgid "Public Stream Feed (RSS 1.0)" msgstr "퍼블릭 스트림 피드" -#: actions/public.php:163 +#: actions/public.php:164 #, fuzzy msgid "Public Stream Feed (RSS 2.0)" msgstr "퍼블릭 스트림 피드" -#: actions/public.php:167 +#: actions/public.php:168 #, fuzzy msgid "Public Stream Feed (Atom)" msgstr "퍼블릭 스트림 피드" -#: actions/public.php:187 +#: actions/public.php:188 #, php-format msgid "" "This is the public timeline for %%site.name%% but no one has posted anything " "yet." msgstr "" -#: actions/public.php:190 +#: actions/public.php:191 msgid "Be the first to post!" msgstr "" -#: actions/public.php:194 +#: actions/public.php:195 #, php-format msgid "" "Why not [register an account](%%action.register%%) and be the first to post!" msgstr "" -#: actions/public.php:241 +#: actions/public.php:242 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2901,7 +2940,7 @@ msgid "" "friends, family, and colleagues! ([Read more](%%doc.help%%))" msgstr "" -#: actions/public.php:246 +#: actions/public.php:247 #, fuzzy, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -3074,8 +3113,7 @@ msgstr "확인 코드 오류" msgid "Registration successful" msgstr "회원 가입이 성공적입니다." -#: actions/register.php:114 actions/register.php:503 lib/action.php:463 -#: lib/logingroupnav.php:85 +#: actions/register.php:114 actions/register.php:503 lib/logingroupnav.php:85 msgid "Register" msgstr "회원가입" @@ -3264,7 +3302,7 @@ msgstr "라이선스에 동의하지 않는다면 등록할 수 없습니다." msgid "You already repeated that notice." msgstr "당신은 이미 이 사용자를 차단하고 있습니다." -#: actions/repeat.php:114 lib/noticelist.php:656 +#: actions/repeat.php:114 lib/noticelist.php:674 #, fuzzy msgid "Repeated" msgstr "생성" @@ -3274,47 +3312,47 @@ msgstr "생성" msgid "Repeated!" msgstr "생성" -#: actions/replies.php:125 actions/repliesrss.php:68 +#: actions/replies.php:126 actions/repliesrss.php:68 #: lib/personalgroupnav.php:105 #, php-format msgid "Replies to %s" msgstr "%s에 답신" -#: actions/replies.php:127 +#: actions/replies.php:128 #, fuzzy, php-format msgid "Replies to %1$s, page %2$d" msgstr "%2$s에서 %1$s까지 메시지" -#: actions/replies.php:144 +#: actions/replies.php:145 #, fuzzy, php-format msgid "Replies feed for %s (RSS 1.0)" msgstr "%s의 통지 피드" -#: actions/replies.php:151 +#: actions/replies.php:152 #, fuzzy, php-format msgid "Replies feed for %s (RSS 2.0)" msgstr "%s의 통지 피드" -#: actions/replies.php:158 +#: actions/replies.php:159 #, php-format msgid "Replies feed for %s (Atom)" msgstr "%s의 통지 피드" -#: actions/replies.php:198 +#: actions/replies.php:199 #, php-format msgid "" "This is the timeline showing replies to %1$s but %2$s hasn't received a " "notice to his attention yet." msgstr "" -#: actions/replies.php:203 +#: actions/replies.php:204 #, php-format msgid "" "You can engage other users in a conversation, subscribe to more people or " "[join groups](%%action.groups%%)." msgstr "" -#: actions/replies.php:205 +#: actions/replies.php:206 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) or [post something to his or her " @@ -3342,7 +3380,6 @@ msgid "User is already sandboxed." msgstr "회원이 당신을 차단해왔습니다." #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:336 msgid "Sessions" msgstr "" @@ -3367,7 +3404,7 @@ msgid "Turn on debugging output for sessions." msgstr "" #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/useradminpanel.php:293 +#: actions/useradminpanel.php:294 #, fuzzy msgid "Save site settings" msgstr "아바타 설정" @@ -3402,7 +3439,7 @@ msgstr "페이지수" msgid "Description" msgstr "설명" -#: actions/showapplication.php:192 actions/showgroup.php:429 +#: actions/showapplication.php:192 actions/showgroup.php:437 #: lib/profileaction.php:174 msgid "Statistics" msgstr "통계" @@ -3464,35 +3501,35 @@ msgstr "%s 님의 좋아하는 글들" msgid "Could not retrieve favorite notices." msgstr "좋아하는 게시글을 복구할 수 없습니다." -#: actions/showfavorites.php:170 +#: actions/showfavorites.php:171 #, php-format msgid "Feed for favorites of %s (RSS 1.0)" msgstr "%s의 친구들을 위한 피드" -#: actions/showfavorites.php:177 +#: actions/showfavorites.php:178 #, php-format msgid "Feed for favorites of %s (RSS 2.0)" msgstr "%s의 친구들을 위한 피드" -#: actions/showfavorites.php:184 +#: actions/showfavorites.php:185 #, php-format msgid "Feed for favorites of %s (Atom)" msgstr "%s의 친구들을 위한 피드" -#: actions/showfavorites.php:205 +#: actions/showfavorites.php:206 msgid "" "You haven't chosen any favorite notices yet. Click the fave button on " "notices you like to bookmark them for later or shed a spotlight on them." msgstr "" -#: actions/showfavorites.php:207 +#: actions/showfavorites.php:208 #, 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:211 +#: actions/showfavorites.php:212 #, php-format msgid "" "%s hasn't added any notices to his favorites yet. Why not [register an " @@ -3500,7 +3537,7 @@ msgid "" "would add to their favorites :)" msgstr "" -#: actions/showfavorites.php:242 +#: actions/showfavorites.php:243 msgid "This is a way to share what you like." msgstr "" @@ -3514,68 +3551,68 @@ msgstr "%s 그룹" msgid "%1$s group, page %2$d" msgstr "%s 그룹 회원, %d페이지" -#: actions/showgroup.php:218 +#: actions/showgroup.php:226 msgid "Group profile" msgstr "그룹 프로필" -#: actions/showgroup.php:263 actions/tagother.php:118 +#: actions/showgroup.php:271 actions/tagother.php:118 #: actions/userauthorization.php:175 lib/userprofile.php:177 msgid "URL" msgstr "URL" -#: actions/showgroup.php:274 actions/tagother.php:128 +#: actions/showgroup.php:282 actions/tagother.php:128 #: actions/userauthorization.php:187 lib/userprofile.php:194 msgid "Note" msgstr "설명" -#: actions/showgroup.php:284 lib/groupeditform.php:184 +#: actions/showgroup.php:292 lib/groupeditform.php:184 msgid "Aliases" msgstr "" -#: actions/showgroup.php:293 +#: actions/showgroup.php:301 msgid "Group actions" msgstr "그룹 행동" -#: actions/showgroup.php:328 +#: actions/showgroup.php:336 #, fuzzy, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "%s 그룹을 위한 공지피드" -#: actions/showgroup.php:334 +#: actions/showgroup.php:342 #, fuzzy, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "%s 그룹을 위한 공지피드" -#: actions/showgroup.php:340 +#: actions/showgroup.php:348 #, fuzzy, php-format msgid "Notice feed for %s group (Atom)" msgstr "%s 그룹을 위한 공지피드" -#: actions/showgroup.php:345 +#: actions/showgroup.php:353 #, php-format msgid "FOAF for %s group" msgstr "%s의 보낸쪽지함" -#: actions/showgroup.php:381 actions/showgroup.php:438 lib/groupnav.php:91 +#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 msgid "Members" msgstr "회원" -#: actions/showgroup.php:386 lib/profileaction.php:117 +#: actions/showgroup.php:394 lib/profileaction.php:117 #: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(없습니다.)" -#: actions/showgroup.php:392 +#: actions/showgroup.php:400 msgid "All members" msgstr "모든 회원" -#: actions/showgroup.php:432 +#: actions/showgroup.php:440 #, fuzzy msgid "Created" msgstr "생성" -#: actions/showgroup.php:448 +#: actions/showgroup.php:456 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3585,7 +3622,7 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showgroup.php:454 +#: actions/showgroup.php:462 #, fuzzy, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3596,7 +3633,7 @@ msgstr "" "**%s** 는 %%%%site.name%%%% [마이크로블로깅)(http://en.wikipedia.org/wiki/" "Micro-blogging)의 사용자 그룹입니다. " -#: actions/showgroup.php:482 +#: actions/showgroup.php:490 #, fuzzy msgid "Admins" msgstr "관리자" @@ -4064,22 +4101,22 @@ msgstr "Jabber" msgid "SMS" msgstr "SMS" -#: actions/tag.php:68 +#: actions/tag.php:69 #, fuzzy, php-format msgid "Notices tagged with %1$s, page %2$d" msgstr "이용자 셀프 테크 %s - %d 페이지" -#: actions/tag.php:86 +#: actions/tag.php:87 #, fuzzy, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "%s의 통지 피드" -#: actions/tag.php:92 +#: actions/tag.php:93 #, fuzzy, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "%s의 통지 피드" -#: actions/tag.php:98 +#: actions/tag.php:99 #, fuzzy, php-format msgid "Notice feed for tag %s (Atom)" msgstr "%s의 통지 피드" @@ -4133,7 +4170,7 @@ msgstr "당신의 구독자나 구독하는 사람에 태깅을 위해 이 양 msgid "No such tag." msgstr "그러한 태그가 없습니다." -#: actions/twitapitrends.php:87 +#: actions/twitapitrends.php:85 msgid "API method under construction." msgstr "API 메서드를 구성중 입니다." @@ -4166,75 +4203,77 @@ msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" -#: actions/useradminpanel.php:58 lib/adminpanelaction.php:321 -#: lib/personalgroupnav.php:115 +#. TRANS: User admin panel title +#: actions/useradminpanel.php:59 +#, fuzzy +msgctxt "TITLE" msgid "User" msgstr "이용자" -#: actions/useradminpanel.php:69 +#: actions/useradminpanel.php:70 msgid "User settings for this StatusNet site." msgstr "" -#: actions/useradminpanel.php:148 +#: actions/useradminpanel.php:149 msgid "Invalid bio limit. Must be numeric." msgstr "" -#: actions/useradminpanel.php:154 +#: actions/useradminpanel.php:155 msgid "Invalid welcome text. Max length is 255 characters." msgstr "" -#: actions/useradminpanel.php:164 +#: actions/useradminpanel.php:165 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" -#: actions/useradminpanel.php:217 lib/accountsettingsaction.php:108 +#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "프로필" -#: actions/useradminpanel.php:221 +#: actions/useradminpanel.php:222 msgid "Bio Limit" msgstr "" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:223 msgid "Maximum length of a profile bio in characters." msgstr "" -#: actions/useradminpanel.php:230 +#: actions/useradminpanel.php:231 #, fuzzy msgid "New users" msgstr "새 사용자를 초대" -#: actions/useradminpanel.php:234 +#: actions/useradminpanel.php:235 msgid "New user welcome" msgstr "" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:236 msgid "Welcome text for new users (Max 255 chars)." msgstr "" -#: actions/useradminpanel.php:240 +#: actions/useradminpanel.php:241 #, fuzzy msgid "Default subscription" msgstr "모든 예약 구독" -#: actions/useradminpanel.php:241 +#: actions/useradminpanel.php:242 #, fuzzy msgid "Automatically subscribe new users to this user." msgstr "나에게 구독하는 사람에게 자동 구독 신청" -#: actions/useradminpanel.php:250 +#: actions/useradminpanel.php:251 #, fuzzy msgid "Invitations" msgstr "초대권을 보냈습니다" -#: actions/useradminpanel.php:255 +#: actions/useradminpanel.php:256 #, fuzzy msgid "Invitations enabled" msgstr "초대권을 보냈습니다" -#: actions/useradminpanel.php:257 +#: actions/useradminpanel.php:258 msgid "Whether to allow users to invite new users." msgstr "" @@ -4420,7 +4459,7 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:196 lib/action.php:747 +#: actions/version.php:196 lib/action.php:778 #, fuzzy msgid "Version" msgstr "개인적인" @@ -4461,6 +4500,11 @@ msgstr "그룹을 업데이트 할 수 없습니다." msgid "Group leave failed." msgstr "그룹 프로필" +#: classes/Local_group.php:41 +#, fuzzy +msgid "Could not update local group." +msgstr "그룹을 업데이트 할 수 없습니다." + #: classes/Login_token.php:76 #, fuzzy, php-format msgid "Could not create login token for %s" @@ -4479,28 +4523,28 @@ msgstr "메시지를 삽입할 수 없습니다." msgid "Could not update message with new URI." msgstr "새 URI와 함께 메시지를 업데이트할 수 없습니다." -#: classes/Notice.php:157 +#: classes/Notice.php:172 #, php-format msgid "DB error inserting hashtag: %s" msgstr "해쉬테그를 추가 할 때에 데이타베이스 에러 : %s" -#: classes/Notice.php:222 +#: classes/Notice.php:239 #, fuzzy msgid "Problem saving notice. Too long." msgstr "통지를 저장하는데 문제가 발생했습니다." -#: classes/Notice.php:226 +#: classes/Notice.php:243 msgid "Problem saving notice. Unknown user." msgstr "게시글 저장문제. 알려지지않은 회원" -#: classes/Notice.php:231 +#: classes/Notice.php:248 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" "너무 많은 게시글이 너무 빠르게 올라옵니다. 한숨고르고 몇분후에 다시 포스트를 " "해보세요." -#: classes/Notice.php:237 +#: classes/Notice.php:254 #, fuzzy msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " @@ -4509,20 +4553,20 @@ msgstr "" "너무 많은 게시글이 너무 빠르게 올라옵니다. 한숨고르고 몇분후에 다시 포스트를 " "해보세요." -#: classes/Notice.php:243 +#: classes/Notice.php:260 msgid "You are banned from posting notices on this site." msgstr "이 사이트에 게시글 포스팅으로부터 당신은 금지되었습니다." -#: classes/Notice.php:309 classes/Notice.php:335 +#: classes/Notice.php:326 classes/Notice.php:352 msgid "Problem saving notice." msgstr "통지를 저장하는데 문제가 발생했습니다." -#: classes/Notice.php:882 +#: classes/Notice.php:911 #, fuzzy msgid "Problem saving group inbox." msgstr "통지를 저장하는데 문제가 발생했습니다." -#: classes/Notice.php:1407 +#: classes/Notice.php:1442 #, fuzzy, php-format msgid "RT @%1$s %2$s" msgstr "%1$s (%2$s)" @@ -4554,19 +4598,29 @@ msgstr "예약 구독을 삭제 할 수 없습니다." msgid "Couldn't delete subscription." msgstr "예약 구독을 삭제 할 수 없습니다." -#: classes/User.php:372 +#: classes/User.php:373 #, fuzzy, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "%2$s에서 %1$s까지 메시지" -#: classes/User_group.php:423 +#: classes/User_group.php:462 msgid "Could not create group." msgstr "새 그룹을 만들 수 없습니다." -#: classes/User_group.php:452 +#: classes/User_group.php:471 +#, fuzzy +msgid "Could not set group URI." +msgstr "그룹 맴버십을 세팅할 수 없습니다." + +#: classes/User_group.php:492 msgid "Could not set group membership." msgstr "그룹 맴버십을 세팅할 수 없습니다." +#: classes/User_group.php:506 +#, fuzzy +msgid "Could not save local group info." +msgstr "구독을 저장할 수 없습니다." + #: lib/accountsettingsaction.php:108 msgid "Change your profile settings" msgstr "프로필 세팅 바꾸기" @@ -4609,123 +4663,191 @@ msgstr "제목없는 페이지" msgid "Primary site navigation" msgstr "주 사이트 네비게이션" +#. TRANS: Tooltip for main menu option "Personal" #: lib/action.php:439 -msgid "Home" -msgstr "홈" - -#: lib/action.php:439 +#, fuzzy +msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "개인 프로필과 친구 타임라인" -#: lib/action.php:441 +#: lib/action.php:442 +#, fuzzy +msgctxt "MENU" +msgid "Personal" +msgstr "개인적인" + +#. TRANS: Tooltip for main menu option "Account" +#: lib/action.php:444 +#, fuzzy +msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "당신의 이메일, 아바타, 비밀 번호, 프로필을 변경하세요." -#: lib/action.php:444 -msgid "Connect" -msgstr "연결" - -#: lib/action.php:444 +#: lib/action.php:447 #, fuzzy +msgctxt "MENU" +msgid "Account" +msgstr "계정" + +#. TRANS: Tooltip for main menu option "Services" +#: lib/action.php:450 +#, fuzzy +msgctxt "TOOLTIP" msgid "Connect to services" msgstr "서버에 재접속 할 수 없습니다 : %s" -#: lib/action.php:448 +#: lib/action.php:453 #, fuzzy +msgctxt "MENU" +msgid "Connect" +msgstr "연결" + +#. TRANS: Tooltip for menu option "Admin" +#: lib/action.php:457 +#, fuzzy +msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "주 사이트 네비게이션" -#: lib/action.php:452 lib/subgroupnav.php:105 -msgid "Invite" -msgstr "초대" +#: lib/action.php:460 +#, fuzzy +msgctxt "MENU" +msgid "Admin" +msgstr "관리자" -#: lib/action.php:453 lib/subgroupnav.php:106 -#, php-format +#. TRANS: Tooltip for main menu option "Invite" +#: lib/action.php:464 +#, fuzzy, php-format +msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "%s에 친구를 가입시키기 위해 친구와 동료를 초대합니다." -#: lib/action.php:458 -msgid "Logout" -msgstr "로그아웃" +#: lib/action.php:467 +#, fuzzy +msgctxt "MENU" +msgid "Invite" +msgstr "초대" -#: lib/action.php:458 +#. TRANS: Tooltip for main menu option "Logout" +#: lib/action.php:473 +#, fuzzy +msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "이 사이트로부터 로그아웃" -#: lib/action.php:463 +#: lib/action.php:476 +#, fuzzy +msgctxt "MENU" +msgid "Logout" +msgstr "로그아웃" + +#. TRANS: Tooltip for main menu option "Register" +#: lib/action.php:481 +#, fuzzy +msgctxt "TOOLTIP" msgid "Create an account" msgstr "계정 만들기" -#: lib/action.php:466 +#: lib/action.php:484 +#, fuzzy +msgctxt "MENU" +msgid "Register" +msgstr "회원가입" + +#. TRANS: Tooltip for main menu option "Login" +#: lib/action.php:487 +#, fuzzy +msgctxt "TOOLTIP" msgid "Login to the site" msgstr "이 사이트 로그인" -#: lib/action.php:469 lib/action.php:732 -msgid "Help" -msgstr "도움말" +#: lib/action.php:490 +#, fuzzy +msgctxt "MENU" +msgid "Login" +msgstr "로그인" -#: lib/action.php:469 +#. TRANS: Tooltip for main menu option "Help" +#: lib/action.php:493 +#, fuzzy +msgctxt "TOOLTIP" msgid "Help me!" msgstr "도움이 필요해!" -#: lib/action.php:472 lib/searchaction.php:127 -msgid "Search" -msgstr "검색" +#: lib/action.php:496 +#, fuzzy +msgctxt "MENU" +msgid "Help" +msgstr "도움말" -#: lib/action.php:472 +#. TRANS: Tooltip for main menu option "Search" +#: lib/action.php:499 +#, fuzzy +msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "프로필이나 텍스트 검색" -#: lib/action.php:493 +#: lib/action.php:502 +#, fuzzy +msgctxt "MENU" +msgid "Search" +msgstr "검색" + +#. TRANS: DT element for site notice. String is hidden in default CSS. +#: lib/action.php:524 msgid "Site notice" msgstr "사이트 공지" -#: lib/action.php:559 +#: lib/action.php:590 msgid "Local views" msgstr "로컬 뷰" -#: lib/action.php:625 +#: lib/action.php:656 msgid "Page notice" msgstr "페이지 공지" -#: lib/action.php:727 +#: lib/action.php:758 msgid "Secondary site navigation" msgstr "보조 사이트 네비게이션" -#: lib/action.php:734 +#: lib/action.php:763 +msgid "Help" +msgstr "도움말" + +#: lib/action.php:765 msgid "About" msgstr "정보" -#: lib/action.php:736 +#: lib/action.php:767 msgid "FAQ" msgstr "자주 묻는 질문" -#: lib/action.php:740 +#: lib/action.php:771 msgid "TOS" msgstr "" -#: lib/action.php:743 +#: lib/action.php:774 msgid "Privacy" msgstr "개인정보 취급방침" -#: lib/action.php:745 +#: lib/action.php:776 msgid "Source" msgstr "소스 코드" -#: lib/action.php:749 +#: lib/action.php:780 msgid "Contact" msgstr "연락하기" -#: lib/action.php:751 +#: lib/action.php:782 #, fuzzy msgid "Badge" msgstr "찔러 보기" -#: lib/action.php:779 +#: lib/action.php:810 msgid "StatusNet software license" msgstr "라코니카 소프트웨어 라이선스" -#: lib/action.php:782 +#: lib/action.php:813 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4734,12 +4856,12 @@ msgstr "" "**%%site.name%%** 는 [%%site.broughtby%%](%%site.broughtbyurl%%)가 제공하는 " "마이크로블로깅서비스입니다." -#: lib/action.php:784 +#: lib/action.php:815 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** 는 마이크로블로깅서비스입니다." -#: lib/action.php:786 +#: lib/action.php:817 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4750,117 +4872,169 @@ msgstr "" "을 사용합니다. StatusNet는 [GNU Affero General Public License](http://www." "fsf.org/licensing/licenses/agpl-3.0.html) 라이선스에 따라 사용할 수 있습니다." -#: lib/action.php:801 +#: lib/action.php:832 #, fuzzy msgid "Site content license" msgstr "라코니카 소프트웨어 라이선스" -#: lib/action.php:806 +#: lib/action.php:837 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:811 +#: lib/action.php:842 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:814 +#: lib/action.php:845 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" -#: lib/action.php:827 +#: lib/action.php:858 msgid "All " msgstr "모든 것" -#: lib/action.php:833 +#: lib/action.php:864 msgid "license." msgstr "라이선스" -#: lib/action.php:1132 +#: lib/action.php:1163 msgid "Pagination" msgstr "페이지수" -#: lib/action.php:1141 +#: lib/action.php:1172 msgid "After" msgstr "뒷 페이지" -#: lib/action.php:1149 +#: lib/action.php:1180 msgid "Before" msgstr "앞 페이지" -#: lib/activity.php:382 +#: lib/activity.php:449 msgid "Can't handle remote content yet." msgstr "" -#: lib/activity.php:410 +#: lib/activity.php:477 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activity.php:414 +#: lib/activity.php:481 msgid "Can't handle embedded Base64 content yet." msgstr "" -#: lib/adminpanelaction.php:96 +#. TRANS: Client error message +#: lib/adminpanelaction.php:98 #, fuzzy msgid "You cannot make changes to this site." msgstr "당신은 이 사용자에게 메시지를 보낼 수 없습니다." -#: lib/adminpanelaction.php:107 +#. TRANS: Client error message +#: lib/adminpanelaction.php:110 #, fuzzy msgid "Changes to that panel are not allowed." msgstr "가입이 허용되지 않습니다." -#: lib/adminpanelaction.php:206 +#. TRANS: Client error message +#: lib/adminpanelaction.php:211 #, fuzzy msgid "showForm() not implemented." msgstr "명령이 아직 실행되지 않았습니다." -#: lib/adminpanelaction.php:235 +#. TRANS: Client error message +#: lib/adminpanelaction.php:241 #, fuzzy msgid "saveSettings() not implemented." msgstr "명령이 아직 실행되지 않았습니다." -#: lib/adminpanelaction.php:258 +#. TRANS: Client error message +#: lib/adminpanelaction.php:265 #, fuzzy msgid "Unable to delete design setting." msgstr "트위터 환경설정을 저장할 수 없습니다." -#: lib/adminpanelaction.php:312 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:330 #, fuzzy msgid "Basic site configuration" msgstr "이메일 주소 확인서" -#: lib/adminpanelaction.php:317 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:332 +#, fuzzy +msgctxt "MENU" +msgid "Site" +msgstr "초대" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:338 #, fuzzy msgid "Design configuration" msgstr "SMS 인증" -#: lib/adminpanelaction.php:322 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:340 +#, fuzzy +msgctxt "MENU" +msgid "Design" +msgstr "개인적인" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:346 #, fuzzy msgid "User configuration" msgstr "SMS 인증" -#: lib/adminpanelaction.php:327 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:348 +#, fuzzy +msgctxt "MENU" +msgid "User" +msgstr "이용자" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:354 #, fuzzy msgid "Access configuration" msgstr "SMS 인증" -#: lib/adminpanelaction.php:332 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:356 +#, fuzzy +msgctxt "MENU" +msgid "Access" +msgstr "수락" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:362 #, fuzzy msgid "Paths configuration" msgstr "SMS 인증" -#: lib/adminpanelaction.php:337 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:364 +msgctxt "MENU" +msgid "Paths" +msgstr "" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:370 #, fuzzy msgid "Sessions configuration" msgstr "SMS 인증" -#: lib/apiauth.php:95 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:372 +#, fuzzy +msgctxt "MENU" +msgid "Sessions" +msgstr "개인적인" + +#: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." msgstr "" -#: lib/apiauth.php:273 +#: lib/apiauth.php:272 #, php-format msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" msgstr "" @@ -4956,12 +5130,12 @@ msgstr "" msgid "Tags for this attachment" msgstr "" -#: lib/authenticationplugin.php:218 lib/authenticationplugin.php:223 +#: lib/authenticationplugin.php:220 lib/authenticationplugin.php:225 #, fuzzy msgid "Password changing failed" msgstr "비밀번호 변경" -#: lib/authenticationplugin.php:233 +#: lib/authenticationplugin.php:235 #, fuzzy msgid "Password changing is not allowed" msgstr "비밀번호 변경" @@ -5239,20 +5413,20 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:136 +#: lib/common.php:148 #, fuzzy msgid "No configuration file found. " msgstr "확인 코드가 없습니다." -#: lib/common.php:137 +#: lib/common.php:149 msgid "I looked for configuration files in the following places: " msgstr "" -#: lib/common.php:139 +#: lib/common.php:151 msgid "You may wish to run the installer to fix this." msgstr "" -#: lib/common.php:140 +#: lib/common.php:152 #, fuzzy msgid "Go to the installer." msgstr "이 사이트 로그인" @@ -5445,23 +5619,23 @@ msgstr "파일을 올리는데 시스템 오류 발생" msgid "Not an image or corrupt file." msgstr "그림 파일이 아니거나 손상된 파일 입니다." -#: lib/imagefile.php:105 +#: lib/imagefile.php:109 msgid "Unsupported image file format." msgstr "지원하지 않는 그림 파일 형식입니다." -#: lib/imagefile.php:118 +#: lib/imagefile.php:122 msgid "Lost our file." msgstr "파일을 잃어버렸습니다." -#: lib/imagefile.php:150 lib/imagefile.php:197 +#: lib/imagefile.php:166 lib/imagefile.php:231 msgid "Unknown file type" msgstr "알 수 없는 종류의 파일입니다" -#: lib/imagefile.php:217 +#: lib/imagefile.php:251 msgid "MB" msgstr "" -#: lib/imagefile.php:219 +#: lib/imagefile.php:253 msgid "kB" msgstr "" @@ -5764,6 +5938,12 @@ msgstr "에게" msgid "Available characters" msgstr "사용 가능한 글자" +#: lib/messageform.php:178 lib/noticeform.php:236 +#, fuzzy +msgctxt "Send button for sending notice" +msgid "Send" +msgstr "보내기" + #: lib/noticeform.php:160 msgid "Send a notice" msgstr "게시글 보내기" @@ -5823,25 +6003,25 @@ msgstr "" msgid "at" msgstr "" -#: lib/noticelist.php:558 +#: lib/noticelist.php:566 #, fuzzy msgid "in context" msgstr "내용이 없습니다!" -#: lib/noticelist.php:583 +#: lib/noticelist.php:601 #, fuzzy msgid "Repeated by" msgstr "생성" -#: lib/noticelist.php:610 +#: lib/noticelist.php:628 msgid "Reply to this notice" msgstr "이 게시글에 대해 답장하기" -#: lib/noticelist.php:611 +#: lib/noticelist.php:629 msgid "Reply" msgstr "답장하기" -#: lib/noticelist.php:655 +#: lib/noticelist.php:673 #, fuzzy msgid "Notice repeated" msgstr "게시글이 등록되었습니다." @@ -5891,6 +6071,10 @@ msgstr "답신" msgid "Favorites" msgstr "좋아하는 글들" +#: lib/personalgroupnav.php:115 +msgid "User" +msgstr "이용자" + #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "받은 쪽지함" @@ -5985,7 +6169,7 @@ msgstr "이 게시글에 대해 답장하기" msgid "Repeat this notice" msgstr "이 게시글에 대해 답장하기" -#: lib/router.php:665 +#: lib/router.php:668 msgid "No single user defined for single-user mode." msgstr "" @@ -6008,6 +6192,10 @@ msgstr "검색" msgid "Keyword(s)" msgstr "" +#: lib/searchaction.php:127 +msgid "Search" +msgstr "검색" + #: lib/searchaction.php:162 #, fuzzy msgid "Search help" @@ -6062,6 +6250,15 @@ msgstr "%s에 의해 구독되는 사람들" msgid "Groups %s is a member of" msgstr "%s 그룹들은 의 멤버입니다." +#: lib/subgroupnav.php:105 +msgid "Invite" +msgstr "초대" + +#: lib/subgroupnav.php:106 +#, 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" @@ -6136,47 +6333,47 @@ msgstr "메시지" msgid "Moderate" msgstr "" -#: lib/util.php:952 +#: lib/util.php:1013 msgid "a few seconds ago" msgstr "몇 초 전" -#: lib/util.php:954 +#: lib/util.php:1015 msgid "about a minute ago" msgstr "1분 전" -#: lib/util.php:956 +#: lib/util.php:1017 #, php-format msgid "about %d minutes ago" msgstr "%d분 전" -#: lib/util.php:958 +#: lib/util.php:1019 msgid "about an hour ago" msgstr "1시간 전" -#: lib/util.php:960 +#: lib/util.php:1021 #, php-format msgid "about %d hours ago" msgstr "%d시간 전" -#: lib/util.php:962 +#: lib/util.php:1023 msgid "about a day ago" msgstr "하루 전" -#: lib/util.php:964 +#: lib/util.php:1025 #, php-format msgid "about %d days ago" msgstr "%d일 전" -#: lib/util.php:966 +#: lib/util.php:1027 msgid "about a month ago" msgstr "1달 전" -#: lib/util.php:968 +#: lib/util.php:1029 #, php-format msgid "about %d months ago" msgstr "%d달 전" -#: lib/util.php:970 +#: lib/util.php:1031 msgid "about a year ago" msgstr "1년 전" diff --git a/locale/mk/LC_MESSAGES/statusnet.po b/locale/mk/LC_MESSAGES/statusnet.po index 14efaf620d..b80b0c905e 100644 --- a/locale/mk/LC_MESSAGES/statusnet.po +++ b/locale/mk/LC_MESSAGES/statusnet.po @@ -9,77 +9,84 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-02-24 23:49+0000\n" -"PO-Revision-Date: 2010-02-24 23:51:18+0000\n" +"POT-Creation-Date: 2010-03-02 21:02+0000\n" +"PO-Revision-Date: 2010-03-02 21:03:16+0000\n" "Language-Team: Macedonian\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r62925); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=2; plural= n==1 || n%10==1 ? 0 : 1;\n" -#: actions/accessadminpanel.php:54 lib/adminpanelaction.php:326 +#. TRANS: Page title +#: actions/accessadminpanel.php:55 msgid "Access" msgstr "Пристап" -#: actions/accessadminpanel.php:65 +#. TRANS: Page notice +#: actions/accessadminpanel.php:67 msgid "Site access settings" msgstr "Нагодувања за пристап на веб-страницата" -#: actions/accessadminpanel.php:158 +#. TRANS: Form legend for registration form. +#: actions/accessadminpanel.php:161 msgid "Registration" msgstr "Регистрација" -#: actions/accessadminpanel.php:161 -msgid "Private" -msgstr "Приватен" - -#: actions/accessadminpanel.php:163 +#. TRANS: Checkbox instructions for admin setting "Private" +#: actions/accessadminpanel.php:165 msgid "Prohibit anonymous users (not logged in) from viewing site?" msgstr "" "Да им забранам на анонимните (ненајавени) корисници да ја гледаат веб-" "страницата?" +#. TRANS: Checkbox label for prohibiting anonymous users from viewing site. #: actions/accessadminpanel.php:167 -msgid "Invite only" -msgstr "Само со покана" +#, fuzzy +msgctxt "LABEL" +msgid "Private" +msgstr "Приватен" -#: actions/accessadminpanel.php:169 +#. TRANS: Checkbox instructions for admin setting "Invite only" +#: actions/accessadminpanel.php:174 msgid "Make registration invitation only." msgstr "Регистрирање само со покана." -#: actions/accessadminpanel.php:173 -msgid "Closed" -msgstr "Затворен" +#. TRANS: Checkbox label for configuring site as invite only. +#: actions/accessadminpanel.php:176 +msgid "Invite only" +msgstr "Само со покана" -#: actions/accessadminpanel.php:175 +#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations) +#: actions/accessadminpanel.php:183 msgid "Disable new registrations." msgstr "Оневозможи нови регистрации." -#: actions/accessadminpanel.php:189 actions/designadminpanel.php:586 -#: actions/emailsettings.php:195 actions/imsettings.php:163 -#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 -#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 -#: actions/siteadminpanel.php:336 actions/smssettings.php:181 -#: actions/subscriptions.php:208 actions/tagother.php:154 -#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 -#: lib/applicationeditform.php:334 lib/designsettings.php:256 -#: lib/groupeditform.php:202 -msgid "Save" -msgstr "Зачувај" +#. TRANS: Checkbox label for disabling new user registrations. +#: actions/accessadminpanel.php:185 +msgid "Closed" +msgstr "Затворен" -#: actions/accessadminpanel.php:189 +#. TRANS: Title / tooltip for button to save access settings in site admin panel +#: actions/accessadminpanel.php:202 msgid "Save access settings" msgstr "Зачувај нагодувања на пристап" -#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 -#: actions/showfavorites.php:137 actions/tag.php:51 +#: actions/accessadminpanel.php:203 +#, fuzzy +msgctxt "BUTTON" +msgid "Save" +msgstr "Зачувај" + +#. TRANS: Server error when page not found (404) +#: actions/all.php:64 actions/public.php:98 actions/replies.php:93 +#: actions/showfavorites.php:138 actions/tag.php:52 msgid "No such page" msgstr "Нема таква страница" -#: actions/all.php:74 actions/allrss.php:68 +#: actions/all.php:75 actions/allrss.php:68 #: actions/apiaccountupdatedeliverydevice.php:113 #: actions/apiaccountupdateprofile.php:105 #: actions/apiaccountupdateprofilebackgroundimage.php:116 @@ -93,52 +100,60 @@ msgstr "Нема таква страница" #: actions/apitimelinehome.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/otp.php:76 -#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154 -#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 -#: actions/showfavorites.php:105 actions/userbyid.php:74 -#: actions/usergroups.php:91 actions/userrss.php:38 actions/xrds.php:71 -#: lib/command.php:163 lib/command.php:302 lib/command.php:355 -#: lib/command.php:401 lib/command.php:462 lib/command.php:518 -#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 +#: actions/hcard.php:67 actions/microsummary.php:62 actions/newmessage.php:116 +#: actions/otp.php:76 actions/remotesubscribe.php:145 +#: actions/remotesubscribe.php:154 actions/replies.php:73 +#: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/xrds.php:71 lib/command.php:163 lib/command.php:302 +#: lib/command.php:355 lib/command.php:401 lib/command.php:462 +#: lib/command.php:518 lib/galleryaction.php:59 lib/mailbox.php:82 +#: lib/profileaction.php:77 msgid "No such user." msgstr "Нема таков корисник." -#: actions/all.php:84 +#. TRANS: Page title. %1$s is user nickname, %2$d is page number +#: actions/all.php:86 #, php-format msgid "%1$s and friends, page %2$d" msgstr "%1$s и пријателите, стр. %2$d" -#: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 +#. TRANS: Page title. %1$s is user nickname +#. TRANS: H1 text. %1$s is user nickname +#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" msgstr "%s и пријатели" -#: actions/all.php:99 +#. TRANS: %1$s is user nickname +#: actions/all.php:103 #, php-format msgid "Feed for friends of %s (RSS 1.0)" msgstr "Канал со пријатели на %s (RSS 1.0)" -#: actions/all.php:107 +#. TRANS: %1$s is user nickname +#: actions/all.php:112 #, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "Канал со пријатели на %s (RSS 2.0)" -#: actions/all.php:115 +#. TRANS: %1$s is user nickname +#: actions/all.php:121 #, php-format msgid "Feed for friends of %s (Atom)" msgstr "Канал за пријатели на %S (Atom)" -#: actions/all.php:127 +#. TRANS: %1$s is user nickname +#: actions/all.php:134 #, php-format msgid "" "This is the timeline for %s and friends but no one has posted anything yet." msgstr "" "Ова е историјата за %s и пријателите, но досега никој нема објавено ништо." -#: actions/all.php:132 +#: actions/all.php:139 #, php-format msgid "" "Try subscribing to more people, [join a group](%%action.groups%%) or post " @@ -147,7 +162,8 @@ msgstr "" "Пробајте да се претплатите на повеќе луѓе, [зачленете се во група](%%action." "groups%%) или објавете нешто самите." -#: actions/all.php:134 +#. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@" +#: actions/all.php:142 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) from his profile or [post something to " @@ -157,7 +173,7 @@ msgstr "" "на корисникот или да [објавите нешто што сакате тој да го прочита](%%%%" "action.newnotice%%%%?status_textarea=%3$s)." -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211 +#: actions/all.php:145 actions/replies.php:210 actions/showstream.php:211 #, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " @@ -167,7 +183,8 @@ msgstr "" "го подбуцнете корисникот %s или да објавите забелешка што сакате тој да ја " "прочита." -#: actions/all.php:165 +#. TRANS: H1 text +#: actions/all.php:174 msgid "You and friends" msgstr "Вие и пријателите" @@ -185,20 +202,20 @@ msgstr "Подновувања од %1$s и пријатели на %2$s!" #: actions/apiaccountverifycredentials.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:128 actions/apigroupcreate.php:136 +#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: actions/apigroupleave.php:141 actions/apigrouplist.php:132 #: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 #: actions/apigroupshow.php:115 actions/apihelptest.php:88 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 -#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184 +#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 #: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:207 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 msgid "API method not found." msgstr "API методот не е пронајден." @@ -232,8 +249,9 @@ msgstr "Не можев да го подновам корисникот." #: actions/apiaccountupdateprofilebackgroundimage.php:194 #: actions/apiaccountupdateprofilecolors.php:185 #: 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 +#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 +#: actions/replies.php:80 actions/usergroups.php:98 lib/galleryaction.php:66 +#: lib/profileaction.php:84 msgid "User has no profile." msgstr "Корисникот нема профил." @@ -259,7 +277,7 @@ msgstr "" #: actions/apiaccountupdateprofilebackgroundimage.php:146 #: actions/apiaccountupdateprofilecolors.php:164 #: actions/apiaccountupdateprofilecolors.php:174 -#: actions/groupdesignsettings.php:287 actions/groupdesignsettings.php:297 +#: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300 #: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 #: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 msgid "Unable to save your design settings." @@ -372,68 +390,68 @@ msgstr "Не можев да го утврдам целниот корисник msgid "Could not find target user." msgstr "Не можев да го пронајдам целниот корисник." -#: actions/apigroupcreate.php:164 actions/editgroup.php:182 +#: actions/apigroupcreate.php:166 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:215 #: actions/register.php:205 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "Прекарот мора да има само мали букви и бројки и да нема празни места." -#: actions/apigroupcreate.php:173 actions/editgroup.php:186 +#: actions/apigroupcreate.php:175 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:238 #: actions/register.php:208 msgid "Nickname already in use. Try another one." msgstr "Тој прекар е во употреба. Одберете друг." -#: actions/apigroupcreate.php:180 actions/editgroup.php:189 +#: actions/apigroupcreate.php:182 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:218 #: actions/register.php:210 msgid "Not a valid nickname." msgstr "Неправилен прекар." -#: actions/apigroupcreate.php:196 actions/editapplication.php:215 -#: actions/editgroup.php:195 actions/newapplication.php:203 +#: actions/apigroupcreate.php:198 actions/editapplication.php:215 +#: actions/editgroup.php:199 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:217 msgid "Homepage is not a valid URL." msgstr "Главната страница не е важечка URL-адреса." -#: actions/apigroupcreate.php:205 actions/editgroup.php:198 +#: actions/apigroupcreate.php:207 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:225 #: actions/register.php:220 msgid "Full name is too long (max 255 chars)." msgstr "Целото име е предолго (максимум 255 знаци)" -#: actions/apigroupcreate.php:213 actions/editapplication.php:190 +#: actions/apigroupcreate.php:215 actions/editapplication.php:190 #: actions/newapplication.php:172 #, php-format msgid "Description is too long (max %d chars)." msgstr "Описот е предолг (дозволено е највеќе %d знаци)." -#: actions/apigroupcreate.php:224 actions/editgroup.php:204 +#: actions/apigroupcreate.php:226 actions/editgroup.php:208 #: actions/newgroup.php:148 actions/profilesettings.php:232 #: actions/register.php:227 msgid "Location is too long (max 255 chars)." msgstr "Локацијата е предолга (максимумот е 255 знаци)." -#: actions/apigroupcreate.php:243 actions/editgroup.php:215 +#: actions/apigroupcreate.php:245 actions/editgroup.php:219 #: actions/newgroup.php:159 #, php-format msgid "Too many aliases! Maximum %d." msgstr "Премногу алијаси! Дозволено е највеќе %d." -#: actions/apigroupcreate.php:264 actions/editgroup.php:224 +#: actions/apigroupcreate.php:266 actions/editgroup.php:228 #: actions/newgroup.php:168 #, php-format msgid "Invalid alias: \"%s\"" msgstr "Неважечки алијас: „%s“" -#: actions/apigroupcreate.php:273 actions/editgroup.php:228 +#: actions/apigroupcreate.php:275 actions/editgroup.php:232 #: actions/newgroup.php:172 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "Алијасот „%s“ е зафатен. Одберете друг." -#: actions/apigroupcreate.php:286 actions/editgroup.php:234 +#: actions/apigroupcreate.php:288 actions/editgroup.php:238 #: actions/newgroup.php:178 msgid "Alias can't be the same as nickname." msgstr "Алијасот не може да биде ист како прекарот." @@ -444,15 +462,15 @@ msgstr "Алијасот не може да биде ист како прека msgid "Group not found!" msgstr "Групата не е пронајдена!" -#: actions/apigroupjoin.php:110 actions/joingroup.php:90 +#: actions/apigroupjoin.php:110 actions/joingroup.php:100 msgid "You are already a member of that group." msgstr "Веќе членувате во таа група." -#: actions/apigroupjoin.php:119 actions/joingroup.php:95 lib/command.php:221 +#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:221 msgid "You have been blocked from that group by the admin." msgstr "Блокирани сте од таа група од администраторот." -#: actions/apigroupjoin.php:138 actions/joingroup.php:124 +#: actions/apigroupjoin.php:138 actions/joingroup.php:134 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Не можам да го зачленам корисникот %1$s во групата 2$s." @@ -461,7 +479,7 @@ msgstr "Не можам да го зачленам корисникот %1$s в msgid "You are not a member of this group." msgstr "Не членувате во оваа група." -#: actions/apigroupleave.php:124 actions/leavegroup.php:119 +#: actions/apigroupleave.php:124 actions/leavegroup.php:129 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "Не можев да го отстранам корисникот %1$s од групата %2$s." @@ -492,7 +510,7 @@ msgstr "Погрешен жетон." #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 #: actions/deletenotice.php:157 actions/disfavor.php:74 #: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54 -#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupblock.php:66 actions/grouplogo.php:312 #: actions/groupunblock.php:66 actions/imsettings.php:206 #: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 @@ -535,7 +553,7 @@ msgstr "Жетонот на барањето %s е одбиен и поништ #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:103 actions/editapplication.php:139 -#: actions/emailsettings.php:256 actions/grouplogo.php:319 +#: actions/emailsettings.php:256 actions/grouplogo.php:322 #: actions/imsettings.php:220 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 #: actions/smssettings.php:248 lib/designsettings.php:304 @@ -561,13 +579,13 @@ msgstr "" "%3$s податоците за Вашата %4$s сметка. Треба да дозволувате " "пристап до Вашата %4$s сметка само на трети страни на кои им верувате." -#: actions/apioauthauthorize.php:310 lib/action.php:441 +#: actions/apioauthauthorize.php:310 msgid "Account" msgstr "Сметка" #: actions/apioauthauthorize.php:313 actions/login.php:230 #: actions/profilesettings.php:106 actions/register.php:424 -#: actions/showgroup.php:236 actions/tagother.php:94 +#: actions/showgroup.php:244 actions/tagother.php:94 #: actions/userauthorization.php:145 lib/groupeditform.php:152 #: lib/userprofile.php:131 msgid "Nickname" @@ -651,12 +669,12 @@ msgid "%1$s updates favorited by %2$s / %2$s." msgstr "Подновувања на %1$s омилени на %2$s / %2$s." #: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:131 actions/userrss.php:90 +#: actions/grouprss.php:138 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "Историја на %s" -#: actions/apitimelinegroup.php:114 actions/apitimelineuser.php:126 +#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 #: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" @@ -692,7 +710,7 @@ msgstr "Повторено за %s" msgid "Repeats of %s" msgstr "Повторувања на %s" -#: actions/apitimelinetag.php:102 actions/tag.php:66 +#: actions/apitimelinetag.php:102 actions/tag.php:67 #, php-format msgid "Notices tagged with %s" msgstr "Забелешки означени со %s" @@ -713,8 +731,7 @@ msgstr "Нема таков прилог." #: actions/avatarbynickname.php:59 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/leavegroup.php:76 -#: actions/showgroup.php:121 +#: actions/grouprss.php:91 actions/showgroup.php:121 msgid "No nickname." msgstr "Нема прекар." @@ -726,7 +743,7 @@ msgstr "Нема големина." msgid "Invalid size." msgstr "Погрешна големина." -#: actions/avatarsettings.php:67 actions/showgroup.php:221 +#: actions/avatarsettings.php:67 actions/showgroup.php:229 #: lib/accountsettingsaction.php:112 msgid "Avatar" msgstr "Аватар" @@ -745,30 +762,30 @@ msgid "User without matching profile" msgstr "Корисник без соодветен профил" #: actions/avatarsettings.php:119 actions/avatarsettings.php:197 -#: actions/grouplogo.php:251 +#: actions/grouplogo.php:254 msgid "Avatar settings" msgstr "Нагодувања на аватарот" #: actions/avatarsettings.php:127 actions/avatarsettings.php:205 -#: actions/grouplogo.php:199 actions/grouplogo.php:259 +#: actions/grouplogo.php:202 actions/grouplogo.php:262 msgid "Original" msgstr "Оригинал" #: actions/avatarsettings.php:142 actions/avatarsettings.php:217 -#: actions/grouplogo.php:210 actions/grouplogo.php:271 +#: actions/grouplogo.php:213 actions/grouplogo.php:274 msgid "Preview" msgstr "Преглед" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:637 +#: lib/deleteuserform.php:66 lib/noticelist.php:655 msgid "Delete" msgstr "Бриши" -#: actions/avatarsettings.php:166 actions/grouplogo.php:233 +#: actions/avatarsettings.php:166 actions/grouplogo.php:236 msgid "Upload" msgstr "Подигни" -#: actions/avatarsettings.php:231 actions/grouplogo.php:286 +#: actions/avatarsettings.php:231 actions/grouplogo.php:289 msgid "Crop" msgstr "Отсечи" @@ -776,7 +793,7 @@ msgstr "Отсечи" msgid "Pick a square area of the image to be your avatar" msgstr "Одберете квадратна површина од сликата за аватар" -#: actions/avatarsettings.php:343 actions/grouplogo.php:377 +#: actions/avatarsettings.php:343 actions/grouplogo.php:380 msgid "Lost our file data." msgstr "Податоците за податотеката се изгубени." @@ -812,22 +829,22 @@ msgstr "" "од корисникот." #: actions/block.php:143 actions/deleteapplication.php:153 -#: actions/deletenotice.php:145 actions/deleteuser.php:147 +#: actions/deletenotice.php:145 actions/deleteuser.php:150 #: actions/groupblock.php:178 msgid "No" msgstr "Не" -#: actions/block.php:143 actions/deleteuser.php:147 +#: actions/block.php:143 actions/deleteuser.php:150 msgid "Do not block this user" msgstr "Не го блокирај корисников" #: actions/block.php:144 actions/deleteapplication.php:158 -#: actions/deletenotice.php:146 actions/deleteuser.php:148 +#: actions/deletenotice.php:146 actions/deleteuser.php:151 #: actions/groupblock.php:179 lib/repeatform.php:132 msgid "Yes" msgstr "Да" -#: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:355 lib/blockform.php:80 msgid "Block this user" msgstr "Блокирај го корисников" @@ -835,39 +852,43 @@ msgstr "Блокирај го корисников" msgid "Failed to save block information." msgstr "Не можев да ги снимам инофрмациите за блокот." -#: actions/blockedfromgroup.php:80 actions/editgroup.php:96 -#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/groupblock.php:86 -#: actions/groupbyid.php:83 actions/groupdesignsettings.php:97 -#: actions/grouplogo.php:99 actions/groupmembers.php:83 -#: actions/grouprss.php:98 actions/groupunblock.php:86 -#: actions/joingroup.php:83 actions/leavegroup.php:83 actions/makeadmin.php:86 -#: actions/showgroup.php:137 lib/command.php:212 lib/command.php:260 +#: actions/blockedfromgroup.php:80 actions/blockedfromgroup.php:87 +#: actions/editgroup.php:100 actions/foafgroup.php:44 actions/foafgroup.php:62 +#: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:100 actions/grouplogo.php:102 +#: actions/groupmembers.php:83 actions/groupmembers.php:90 +#: actions/grouprss.php:98 actions/grouprss.php:105 +#: actions/groupunblock.php:86 actions/joingroup.php:82 +#: actions/joingroup.php:93 actions/leavegroup.php:82 +#: actions/leavegroup.php:93 actions/makeadmin.php:86 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:212 +#: lib/command.php:260 msgid "No such group." msgstr "Нема таква група." -#: actions/blockedfromgroup.php:90 +#: actions/blockedfromgroup.php:97 #, php-format msgid "%s blocked profiles" msgstr "%s блокирани профили" -#: actions/blockedfromgroup.php:93 +#: actions/blockedfromgroup.php:100 #, php-format msgid "%1$s blocked profiles, page %2$d" msgstr "%1$s блокирани профили, стр. %2$d" -#: actions/blockedfromgroup.php:108 +#: actions/blockedfromgroup.php:115 msgid "A list of the users blocked from joining this group." msgstr "Листана корисниците блокирани од придружување во оваа група." -#: actions/blockedfromgroup.php:281 +#: actions/blockedfromgroup.php:288 msgid "Unblock user from group" msgstr "Одблокирај корисник од група" -#: actions/blockedfromgroup.php:313 lib/unblockform.php:69 +#: actions/blockedfromgroup.php:320 lib/unblockform.php:69 msgid "Unblock" msgstr "Одблокирај" -#: actions/blockedfromgroup.php:313 lib/unblockform.php:80 +#: actions/blockedfromgroup.php:320 lib/unblockform.php:80 msgid "Unblock this user" msgstr "Одблокирај го овој корсник" @@ -942,7 +963,7 @@ msgstr "Не сте сопственик на овој програм." #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1197 +#: lib/action.php:1228 msgid "There was a problem with your session token." msgstr "Се појави проблем со Вашиот сесиски жетон." @@ -968,12 +989,13 @@ msgstr "Не го бриши овој програм" msgid "Delete this application" msgstr "Избриши го програмов" +#. TRANS: Client error message #: 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:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 -#: lib/adminpanelaction.php:72 lib/profileformaction.php:63 +#: lib/adminpanelaction.php:73 lib/profileformaction.php:63 #: lib/settingsaction.php:72 msgid "Not logged in." msgstr "Не сте најавени." @@ -1002,7 +1024,7 @@ msgstr "Дали сте сигурни дека сакате да ја избр msgid "Do not delete this notice" msgstr "Не ја бриши оваа забелешка" -#: actions/deletenotice.php:146 lib/noticelist.php:637 +#: actions/deletenotice.php:146 lib/noticelist.php:655 msgid "Delete this notice" msgstr "Бриши ја оваа забелешка" @@ -1018,7 +1040,7 @@ msgstr "Може да бришете само локални корисници. msgid "Delete user" msgstr "Бриши корисник" -#: actions/deleteuser.php:135 +#: actions/deleteuser.php:136 msgid "" "Are you sure you want to delete this user? This will clear all data about " "the user from the database, without a backup." @@ -1026,12 +1048,12 @@ msgstr "" "Дали се сигурни дека сакате да го избришете овој корисник? Ова воедно ќе ги " "избрише сите податоци за корисникот од базата, без да може да се вратат." -#: actions/deleteuser.php:148 lib/deleteuserform.php:77 +#: actions/deleteuser.php:151 lib/deleteuserform.php:77 msgid "Delete this user" msgstr "Избриши овој корисник" #: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 -#: lib/adminpanelaction.php:316 lib/groupnav.php:119 +#: lib/groupnav.php:119 msgid "Design" msgstr "Изглед" @@ -1134,6 +1156,17 @@ msgstr "Врати основно-зададени нагодувања" msgid "Reset back to default" msgstr "Врати по основно" +#: actions/designadminpanel.php:586 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/tagother.php:154 actions/useradminpanel.php:294 +#: lib/applicationeditform.php:333 lib/applicationeditform.php:334 +#: lib/designsettings.php:256 lib/groupeditform.php:202 +msgid "Save" +msgstr "Зачувај" + #: actions/designadminpanel.php:587 lib/designsettings.php:257 msgid "Save design" msgstr "Зачувај изглед" @@ -1225,29 +1258,29 @@ msgstr "Уреди ја групата %s" msgid "You must be logged in to create a group." msgstr "Мора да сте најавени за да можете да создавате групи." -#: actions/editgroup.php:103 actions/editgroup.php:168 -#: actions/groupdesignsettings.php:104 actions/grouplogo.php:106 +#: actions/editgroup.php:107 actions/editgroup.php:172 +#: actions/groupdesignsettings.php:107 actions/grouplogo.php:109 msgid "You must be an admin to edit the group." msgstr "Мора да сте администратор за да можете да ја уредите групата." -#: actions/editgroup.php:154 +#: actions/editgroup.php:158 msgid "Use this form to edit the group." msgstr "ОБразецов служи за уредување на групата." -#: actions/editgroup.php:201 actions/newgroup.php:145 +#: actions/editgroup.php:205 actions/newgroup.php:145 #, php-format msgid "description is too long (max %d chars)." msgstr "описот е предолг (максимум %d знаци)" -#: actions/editgroup.php:253 +#: actions/editgroup.php:258 msgid "Could not update group." msgstr "Не можев да ја подновам групата." -#: actions/editgroup.php:259 classes/User_group.php:433 +#: actions/editgroup.php:264 classes/User_group.php:478 msgid "Could not create aliases." msgstr "Не можеше да се создадат алијаси." -#: actions/editgroup.php:269 +#: actions/editgroup.php:280 msgid "Options saved." msgstr "Нагодувањата се зачувани." @@ -1590,7 +1623,7 @@ msgstr "Корисникот е веќе блокиран од оваа груп msgid "User is not a member of group." msgstr "Корисникот не членува во групата." -#: actions/groupblock.php:136 actions/groupmembers.php:316 +#: actions/groupblock.php:136 actions/groupmembers.php:323 msgid "Block user from group" msgstr "Блокирај корисник од група" @@ -1627,11 +1660,11 @@ msgstr "Нема ID." msgid "You must be logged in to edit a group." msgstr "Мора да сте најавени за да можете да уредувате група." -#: actions/groupdesignsettings.php:141 +#: actions/groupdesignsettings.php:144 msgid "Group design" msgstr "Изглед на групата" -#: actions/groupdesignsettings.php:152 +#: actions/groupdesignsettings.php:155 msgid "" "Customize the way your group looks with a background image and a colour " "palette of your choice." @@ -1639,20 +1672,20 @@ msgstr "" "Прилагодете го изгледот на Вашата група со позадинска слика и палета од бои " "по Ваш избор." -#: actions/groupdesignsettings.php:263 actions/userdesignsettings.php:186 +#: actions/groupdesignsettings.php:266 actions/userdesignsettings.php:186 #: lib/designsettings.php:391 lib/designsettings.php:413 msgid "Couldn't update your design." msgstr "Не можев да го подновам Вашиот изглед." -#: actions/groupdesignsettings.php:308 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231 msgid "Design preferences saved." msgstr "Нагодувањата се зачувани." -#: actions/grouplogo.php:139 actions/grouplogo.php:192 +#: actions/grouplogo.php:142 actions/grouplogo.php:195 msgid "Group logo" msgstr "Лого на групата" -#: actions/grouplogo.php:150 +#: actions/grouplogo.php:153 #, php-format msgid "" "You can upload a logo image for your group. The maximum file size is %s." @@ -1660,57 +1693,57 @@ msgstr "" "Можете да подигнете слика за логото на Вашата група. Максималната дозволена " "големина на податотеката е %s." -#: actions/grouplogo.php:178 +#: actions/grouplogo.php:181 msgid "User without matching profile." msgstr "Корисник без соодветен профил." -#: actions/grouplogo.php:362 +#: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." msgstr "Одберете квадратен простор на сликата за лого." -#: actions/grouplogo.php:396 +#: actions/grouplogo.php:399 msgid "Logo updated." msgstr "Логото е подновено." -#: actions/grouplogo.php:398 +#: actions/grouplogo.php:401 msgid "Failed updating logo." msgstr "Подновата на логото не успеа." -#: actions/groupmembers.php:93 lib/groupnav.php:92 +#: actions/groupmembers.php:100 lib/groupnav.php:92 #, php-format msgid "%s group members" msgstr "Членови на групата %s" -#: actions/groupmembers.php:96 +#: actions/groupmembers.php:103 #, php-format msgid "%1$s group members, page %2$d" msgstr "Членови на групата %1$s, стр. %2$d" -#: actions/groupmembers.php:111 +#: actions/groupmembers.php:118 msgid "A list of the users in this group." msgstr "Листа на корисниците на овааг група." -#: actions/groupmembers.php:175 lib/action.php:448 lib/groupnav.php:107 +#: actions/groupmembers.php:182 lib/groupnav.php:107 msgid "Admin" msgstr "Администратор" -#: actions/groupmembers.php:348 lib/blockform.php:69 +#: actions/groupmembers.php:355 lib/blockform.php:69 msgid "Block" msgstr "Блокирај" -#: actions/groupmembers.php:443 +#: actions/groupmembers.php:450 msgid "Make user an admin of the group" msgstr "Направи го корисникот администратор на групата" -#: actions/groupmembers.php:475 +#: actions/groupmembers.php:482 msgid "Make Admin" msgstr "Направи го/ја администратор" -#: actions/groupmembers.php:475 +#: actions/groupmembers.php:482 msgid "Make this user an admin" msgstr "Направи го корисникот администратор" -#: actions/grouprss.php:133 +#: actions/grouprss.php:140 #, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Подновувања од членови на %1$s на %2$s!" @@ -1976,16 +2009,19 @@ msgstr "Лична порака" msgid "Optionally add a personal message to the invitation." msgstr "Можете да додадете и лична порака во поканата." -#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:236 +#. TRANS: Send button for inviting friends +#: actions/invite.php:198 +#, fuzzy +msgctxt "BUTTON" msgid "Send" msgstr "Испрати" -#: actions/invite.php:226 +#: actions/invite.php:227 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "%1$s ве покани да се придружите на %2$s" -#: actions/invite.php:228 +#: actions/invite.php:229 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -2046,7 +2082,11 @@ msgstr "" msgid "You must be logged in to join a group." msgstr "Мора да сте најавени за да можете да се зачлените во група." -#: actions/joingroup.php:131 +#: actions/joingroup.php:88 actions/leavegroup.php:88 +msgid "No nickname or ID." +msgstr "Нема прекар или ID." + +#: actions/joingroup.php:141 #, php-format msgid "%1$s joined group %2$s" msgstr "%1$s се зачлени во групата %2$s" @@ -2055,11 +2095,11 @@ msgstr "%1$s се зачлени во групата %2$s" msgid "You must be logged in to leave a group." msgstr "Мора да сте најавени за да можете да ја напуштите групата." -#: actions/leavegroup.php:90 lib/command.php:265 +#: actions/leavegroup.php:100 lib/command.php:265 msgid "You are not a member of that group." msgstr "Не членувате во таа група." -#: actions/leavegroup.php:127 +#: actions/leavegroup.php:137 #, php-format msgid "%1$s left group %2$s" msgstr "%1$s ја напушти групата %2$s" @@ -2076,8 +2116,7 @@ msgstr "Неточно корисничко име или лозинка" msgid "Error setting user. You are probably not authorized." msgstr "Грешка при поставувањето на корисникот. Веројатно не се заверени." -#: actions/login.php:188 actions/login.php:241 lib/action.php:466 -#: lib/logingroupnav.php:79 +#: actions/login.php:188 actions/login.php:241 lib/logingroupnav.php:79 msgid "Login" msgstr "Најава" @@ -2334,8 +2373,8 @@ msgstr "тип на содржини " msgid "Only " msgstr "Само " -#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 -#: lib/api.php:1068 lib/api.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 +#: lib/apiaction.php:1068 lib/apiaction.php:1177 msgid "Not a supported data format." msgstr "Ова не е поддржан формат на податотека." @@ -2476,7 +2515,7 @@ msgstr "Не можам да ја зачувам новата лозинка." msgid "Password saved." msgstr "Лозинката е зачувана." -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:331 +#: actions/pathsadminpanel.php:59 msgid "Paths" msgstr "Патеки" @@ -2509,7 +2548,6 @@ msgid "Invalid SSL server. The maximum length is 255 characters." msgstr "Неважечки SSL-сервер. Дозволени се најмногу 255 знаци" #: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58 -#: lib/adminpanelaction.php:311 msgid "Site" msgstr "Веб-страница" @@ -2684,7 +2722,7 @@ msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1-64 мали букви или бројки. Без интерпукциски знаци и празни места." #: actions/profilesettings.php:111 actions/register.php:448 -#: actions/showgroup.php:247 actions/tagother.php:104 +#: actions/showgroup.php:255 actions/tagother.php:104 #: lib/groupeditform.php:157 lib/userprofile.php:149 msgid "Full name" msgstr "Цело име" @@ -2712,7 +2750,7 @@ msgid "Bio" msgstr "Биографија" #: actions/profilesettings.php:132 actions/register.php:471 -#: actions/showgroup.php:256 actions/tagother.php:112 +#: actions/showgroup.php:264 actions/tagother.php:112 #: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:164 msgid "Location" @@ -2796,7 +2834,8 @@ msgstr "Не можам да го зачувам профилот." msgid "Couldn't save tags." msgstr "Не можев да ги зачувам ознаките." -#: actions/profilesettings.php:391 lib/adminpanelaction.php:137 +#. TRANS: Message after successful saving of administrative settings. +#: actions/profilesettings.php:391 lib/adminpanelaction.php:141 msgid "Settings saved." msgstr "Нагодувањата се зачувани" @@ -2809,28 +2848,28 @@ msgstr "Надминато е ограничувањето на страница msgid "Could not retrieve public stream." msgstr "Не можам да го вратам јавниот поток." -#: actions/public.php:129 +#: actions/public.php:130 #, php-format msgid "Public timeline, page %d" msgstr "Јавна историја, стр. %d" -#: actions/public.php:131 lib/publicgroupnav.php:79 +#: actions/public.php:132 lib/publicgroupnav.php:79 msgid "Public timeline" msgstr "Јавна историја" -#: actions/public.php:159 +#: actions/public.php:160 msgid "Public Stream Feed (RSS 1.0)" msgstr "Канал на јавниот поток (RSS 1.0)" -#: actions/public.php:163 +#: actions/public.php:164 msgid "Public Stream Feed (RSS 2.0)" msgstr "Канал на јавниот поток (RSS 2.0)" -#: actions/public.php:167 +#: actions/public.php:168 msgid "Public Stream Feed (Atom)" msgstr "Канал на јавниот поток (Atom)" -#: actions/public.php:187 +#: actions/public.php:188 #, php-format msgid "" "This is the public timeline for %%site.name%% but no one has posted anything " @@ -2838,11 +2877,11 @@ msgid "" msgstr "" "Ова е јавната историја за %%site.name%%, но досега никој ништо нема објавено." -#: actions/public.php:190 +#: actions/public.php:191 msgid "Be the first to post!" msgstr "Создајте ја првата забелешка!" -#: actions/public.php:194 +#: actions/public.php:195 #, php-format msgid "" "Why not [register an account](%%action.register%%) and be the first to post!" @@ -2850,7 +2889,7 @@ msgstr "" "Зошто не [регистрирате сметка](%%action.register%%) и станете првиот " "објавувач!" -#: actions/public.php:241 +#: actions/public.php:242 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2864,7 +2903,7 @@ msgstr "" "споделувате забелешки за себе со приајтелите, семејството и колегите! " "([Прочитајте повеќе](%%doc.help%%))" -#: actions/public.php:246 +#: actions/public.php:247 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -3044,8 +3083,7 @@ msgstr "Жалиме, неважечки код за поканата." msgid "Registration successful" msgstr "Регистрацијата е успешна" -#: actions/register.php:114 actions/register.php:503 lib/action.php:463 -#: lib/logingroupnav.php:85 +#: actions/register.php:114 actions/register.php:503 lib/logingroupnav.php:85 msgid "Register" msgstr "Регистрирај се" @@ -3233,7 +3271,7 @@ msgstr "Не можете да повторувате сопствена заб msgid "You already repeated that notice." msgstr "Веќе ја имате повторено таа забелешка." -#: actions/repeat.php:114 lib/noticelist.php:656 +#: actions/repeat.php:114 lib/noticelist.php:674 msgid "Repeated" msgstr "Повторено" @@ -3241,33 +3279,33 @@ msgstr "Повторено" msgid "Repeated!" msgstr "Повторено!" -#: actions/replies.php:125 actions/repliesrss.php:68 +#: actions/replies.php:126 actions/repliesrss.php:68 #: lib/personalgroupnav.php:105 #, php-format msgid "Replies to %s" msgstr "Одговори испратени до %s" -#: actions/replies.php:127 +#: actions/replies.php:128 #, php-format msgid "Replies to %1$s, page %2$d" msgstr "Одговори на %1$s, стр. %2$d" -#: actions/replies.php:144 +#: actions/replies.php:145 #, php-format msgid "Replies feed for %s (RSS 1.0)" msgstr "Канал со одговори за %s (RSS 1.0)" -#: actions/replies.php:151 +#: actions/replies.php:152 #, php-format msgid "Replies feed for %s (RSS 2.0)" msgstr "Канал со одговори за %s (RSS 2.0)" -#: actions/replies.php:158 +#: actions/replies.php:159 #, php-format msgid "Replies feed for %s (Atom)" msgstr "Канал со одговори за %s (Atom)" -#: actions/replies.php:198 +#: actions/replies.php:199 #, php-format msgid "" "This is the timeline showing replies to %1$s but %2$s hasn't received a " @@ -3276,7 +3314,7 @@ msgstr "" "Ова е историјата на која се прикажани одговорите на %1$s, но %2$s сè уште " "нема добиено порака од некој што сака да ја прочита." -#: actions/replies.php:203 +#: actions/replies.php:204 #, php-format msgid "" "You can engage other users in a conversation, subscribe to more people or " @@ -3285,7 +3323,7 @@ msgstr "" "Можете да започнувате разговори со други корисници, да се претплаќате на " "други луѓе или да [се зачленувате во групи](%%action.groups%%)." -#: actions/replies.php:205 +#: actions/replies.php:206 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) or [post something to his or her " @@ -3312,7 +3350,6 @@ msgid "User is already sandboxed." msgstr "Корисникот е веќе во песочен режим." #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:336 msgid "Sessions" msgstr "Сесии" @@ -3337,7 +3374,7 @@ msgid "Turn on debugging output for sessions." msgstr "Вклучи извод од поправка на грешки за сесии." #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/useradminpanel.php:293 +#: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "Зачувај нагодувања на веб-страницата" @@ -3367,7 +3404,7 @@ msgstr "Организација" msgid "Description" msgstr "Опис" -#: actions/showapplication.php:192 actions/showgroup.php:429 +#: actions/showapplication.php:192 actions/showgroup.php:437 #: lib/profileaction.php:174 msgid "Statistics" msgstr "Статистики" @@ -3432,22 +3469,22 @@ msgstr "Омилени забелешки на %1$s, стр. %2$d" msgid "Could not retrieve favorite notices." msgstr "Не можев да ги вратам омилените забелешки." -#: actions/showfavorites.php:170 +#: actions/showfavorites.php:171 #, php-format msgid "Feed for favorites of %s (RSS 1.0)" msgstr "Канал за омилени забелешки на %s (RSS 1.0)" -#: actions/showfavorites.php:177 +#: actions/showfavorites.php:178 #, php-format msgid "Feed for favorites of %s (RSS 2.0)" msgstr "Канал за омилени забелешки на %s (RSS 2.0)" -#: actions/showfavorites.php:184 +#: actions/showfavorites.php:185 #, php-format msgid "Feed for favorites of %s (Atom)" msgstr "Канал за омилени забелешки на %s (Atom)" -#: actions/showfavorites.php:205 +#: actions/showfavorites.php:206 msgid "" "You haven't chosen any favorite notices yet. Click the fave button on " "notices you like to bookmark them for later or shed a spotlight on them." @@ -3456,7 +3493,7 @@ msgstr "" "омилена забелешка веднаш до самата забелешката што Ви се допаѓа за да ја " "обележите за подоцна, или за да ѝ дадете на важност." -#: actions/showfavorites.php:207 +#: actions/showfavorites.php:208 #, php-format msgid "" "%s hasn't added any notices to his favorites yet. Post something interesting " @@ -3465,7 +3502,7 @@ msgstr "" "%s сè уште нема додадено забелешки како омилени. Објавете нешто интересно, " "што корисникот би го обележал како омилено :)" -#: actions/showfavorites.php:211 +#: actions/showfavorites.php:212 #, php-format msgid "" "%s hasn't added any notices to his favorites yet. Why not [register an " @@ -3476,7 +3513,7 @@ msgstr "" "%%action.register%%%%) и потоа објавите нешто интересно што корисникот би го " "додал како омилено :)" -#: actions/showfavorites.php:242 +#: actions/showfavorites.php:243 msgid "This is a way to share what you like." msgstr "Ова е начин да го споделите она што Ви се допаѓа." @@ -3490,67 +3527,67 @@ msgstr "Група %s" msgid "%1$s group, page %2$d" msgstr "Група %1$s, стр. %2$d" -#: actions/showgroup.php:218 +#: actions/showgroup.php:226 msgid "Group profile" msgstr "Профил на група" -#: actions/showgroup.php:263 actions/tagother.php:118 +#: actions/showgroup.php:271 actions/tagother.php:118 #: actions/userauthorization.php:175 lib/userprofile.php:177 msgid "URL" msgstr "URL" -#: actions/showgroup.php:274 actions/tagother.php:128 +#: actions/showgroup.php:282 actions/tagother.php:128 #: actions/userauthorization.php:187 lib/userprofile.php:194 msgid "Note" msgstr "Забелешка" -#: actions/showgroup.php:284 lib/groupeditform.php:184 +#: actions/showgroup.php:292 lib/groupeditform.php:184 msgid "Aliases" msgstr "Алијаси" -#: actions/showgroup.php:293 +#: actions/showgroup.php:301 msgid "Group actions" msgstr "Групни дејства" -#: actions/showgroup.php:328 +#: actions/showgroup.php:336 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Канал со забелешки за групата %s (RSS 1.0)" -#: actions/showgroup.php:334 +#: actions/showgroup.php:342 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Канал со забелешки за групата %s (RSS 2.0)" -#: actions/showgroup.php:340 +#: actions/showgroup.php:348 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "Канал со забелешки за групата%s (Atom)" -#: actions/showgroup.php:345 +#: actions/showgroup.php:353 #, php-format msgid "FOAF for %s group" msgstr "FOAF за групата %s" -#: actions/showgroup.php:381 actions/showgroup.php:438 lib/groupnav.php:91 +#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 msgid "Members" msgstr "Членови" -#: actions/showgroup.php:386 lib/profileaction.php:117 +#: actions/showgroup.php:394 lib/profileaction.php:117 #: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(Нема)" -#: actions/showgroup.php:392 +#: actions/showgroup.php:400 msgid "All members" msgstr "Сите членови" -#: actions/showgroup.php:432 +#: actions/showgroup.php:440 msgid "Created" msgstr "Создадено" -#: actions/showgroup.php:448 +#: actions/showgroup.php:456 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3566,7 +3603,7 @@ msgstr "" "се](%%%%action.register%%%%) за да станете дел од оваа група и многу повеќе! " "([Прочитајте повеќе](%%%%doc.help%%%%))" -#: actions/showgroup.php:454 +#: actions/showgroup.php:462 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3579,7 +3616,7 @@ msgstr "" "слободната програмска алатка [StatusNet](http://status.net/). Нејзините " "членови си разменуваат кратки пораки за нивниот живот и интереси. " -#: actions/showgroup.php:482 +#: actions/showgroup.php:490 msgid "Admins" msgstr "Администратори" @@ -3957,17 +3994,16 @@ msgstr "Не можев да ја зачувам претплатата." #: actions/subscribe.php:77 msgid "This action only accepts POST requests." -msgstr "" +msgstr "Ова дејство прифаќа само POST-барања" #: actions/subscribe.php:107 -#, fuzzy msgid "No such profile." -msgstr "Нема таква податотека." +msgstr "Нема таков профил." #: actions/subscribe.php:117 -#, fuzzy msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." -msgstr "Не сте претплатени на тој профил." +msgstr "" +"Не можете да се претплатите на OMB 0.1 оддалечен профил со ова дејство." #: actions/subscribe.php:145 msgid "Subscribed" @@ -4061,22 +4097,22 @@ msgstr "Jabber" msgid "SMS" msgstr "СМС" -#: actions/tag.php:68 +#: actions/tag.php:69 #, php-format msgid "Notices tagged with %1$s, page %2$d" msgstr "Забелешки означени со %1$s, стр. %2$d" -#: actions/tag.php:86 +#: actions/tag.php:87 #, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Канал со забелешки за ознаката %s (RSS 1.0)" -#: actions/tag.php:92 +#: actions/tag.php:93 #, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Канал со забелешки за ознаката %s (RSS 2.0)" -#: actions/tag.php:98 +#: actions/tag.php:99 #, php-format msgid "Notice feed for tag %s (Atom)" msgstr "Канал со забелешки за ознаката %s (Atom)" @@ -4130,7 +4166,7 @@ msgstr "Со овој образец додавајте ознаки во Ваш msgid "No such tag." msgstr "Нема таква ознака." -#: actions/twitapitrends.php:87 +#: actions/twitapitrends.php:85 msgid "API method under construction." msgstr "API-методот е во изработка." @@ -4162,70 +4198,72 @@ msgstr "" "Лиценцата на потокот на следачот „%1$s“ не е компатибилна со лиценцата на " "веб-страницата „%2$s“." -#: actions/useradminpanel.php:58 lib/adminpanelaction.php:321 -#: lib/personalgroupnav.php:115 +#. TRANS: User admin panel title +#: actions/useradminpanel.php:59 +#, fuzzy +msgctxt "TITLE" msgid "User" msgstr "Корисник" -#: actions/useradminpanel.php:69 +#: actions/useradminpanel.php:70 msgid "User settings for this StatusNet site." msgstr "Кориснички нагодувања за оваа StatusNet веб-страница." -#: actions/useradminpanel.php:148 +#: actions/useradminpanel.php:149 msgid "Invalid bio limit. Must be numeric." msgstr "Неважечко ограничување за биографијата. Мора да е бројчено." -#: actions/useradminpanel.php:154 +#: actions/useradminpanel.php:155 msgid "Invalid welcome text. Max length is 255 characters." msgstr "НЕважечки текст за добредојде. Дозволени се највеќе 255 знаци." -#: actions/useradminpanel.php:164 +#: actions/useradminpanel.php:165 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "Неважечки опис по основно: „%1$s“ не е корисник." -#: actions/useradminpanel.php:217 lib/accountsettingsaction.php:108 +#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Профил" -#: actions/useradminpanel.php:221 +#: actions/useradminpanel.php:222 msgid "Bio Limit" msgstr "Ограничување за биографијата" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:223 msgid "Maximum length of a profile bio in characters." msgstr "Максимална големина на профилната биографија во знаци." -#: actions/useradminpanel.php:230 +#: actions/useradminpanel.php:231 msgid "New users" msgstr "Нови корисници" -#: actions/useradminpanel.php:234 +#: actions/useradminpanel.php:235 msgid "New user welcome" msgstr "Добредојде за нов корисник" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:236 msgid "Welcome text for new users (Max 255 chars)." msgstr "Текст за добредојде на нови корисници (највеќе до 255 знаци)." -#: actions/useradminpanel.php:240 +#: actions/useradminpanel.php:241 msgid "Default subscription" msgstr "Основно-зададена претплата" -#: actions/useradminpanel.php:241 +#: actions/useradminpanel.php:242 msgid "Automatically subscribe new users to this user." msgstr "Автоматски претплатувај нови корисници на овој корисник." -#: actions/useradminpanel.php:250 +#: actions/useradminpanel.php:251 msgid "Invitations" msgstr "Покани" -#: actions/useradminpanel.php:255 +#: actions/useradminpanel.php:256 msgid "Invitations enabled" msgstr "Поканите се овозможени" -#: actions/useradminpanel.php:257 +#: actions/useradminpanel.php:258 msgid "Whether to allow users to invite new users." msgstr "Дали да им е дозволено на корисниците да канат други корисници." @@ -4423,7 +4461,7 @@ msgstr "" msgid "Plugins" msgstr "Приклучоци" -#: actions/version.php:196 lib/action.php:747 +#: actions/version.php:196 lib/action.php:778 msgid "Version" msgstr "Верзија" @@ -4463,6 +4501,10 @@ msgstr "Не е дел од групата." msgid "Group leave failed." msgstr "Напуштањето на групата не успеа." +#: classes/Local_group.php:41 +msgid "Could not update local group." +msgstr "Не можев да ја подновам локалната група." + #: classes/Login_token.php:76 #, php-format msgid "Could not create login token for %s" @@ -4480,27 +4522,27 @@ msgstr "Не можев да ја испратам пораката." msgid "Could not update message with new URI." msgstr "Не можев да ја подновам пораката со нов URI." -#: classes/Notice.php:157 +#: classes/Notice.php:172 #, php-format msgid "DB error inserting hashtag: %s" msgstr "Грешка во базата на податоци при вметнувањето на хеш-ознака: %s" -#: classes/Notice.php:222 +#: classes/Notice.php:239 msgid "Problem saving notice. Too long." msgstr "Проблем со зачувувањето на белешката. Премногу долго." -#: classes/Notice.php:226 +#: classes/Notice.php:243 msgid "Problem saving notice. Unknown user." msgstr "Проблем со зачувувањето на белешката. Непознат корисник." -#: classes/Notice.php:231 +#: classes/Notice.php:248 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" "Премногу забелњшки за прекратко време; здивнете малку и продолжете за " "неколку минути." -#: classes/Notice.php:237 +#: classes/Notice.php:254 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." @@ -4508,19 +4550,19 @@ msgstr "" "Премногу дуплирани пораки во прекратко време; здивнете малку и продолжете за " "неколку минути." -#: classes/Notice.php:243 +#: classes/Notice.php:260 msgid "You are banned from posting notices on this site." msgstr "Забрането Ви е да објавувате забелешки на оваа веб-страница." -#: classes/Notice.php:309 classes/Notice.php:335 +#: classes/Notice.php:326 classes/Notice.php:352 msgid "Problem saving notice." msgstr "Проблем во зачувувањето на белешката." -#: classes/Notice.php:882 +#: classes/Notice.php:911 msgid "Problem saving group inbox." msgstr "Проблем при зачувувањето на групното приемно сандаче." -#: classes/Notice.php:1407 +#: classes/Notice.php:1442 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -4550,19 +4592,27 @@ msgstr "Не можам да ја избришам самопретплатат msgid "Couldn't delete subscription." msgstr "Претплата не може да се избрише." -#: classes/User.php:372 +#: classes/User.php:373 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "Добредојдовте на %1$s, @%2$s!" -#: classes/User_group.php:423 +#: classes/User_group.php:462 msgid "Could not create group." msgstr "Не можев да ја создадам групата." -#: classes/User_group.php:452 +#: classes/User_group.php:471 +msgid "Could not set group URI." +msgstr "Не можев да поставам URI на групата." + +#: classes/User_group.php:492 msgid "Could not set group membership." msgstr "Не можев да назначам членство во групата." +#: classes/User_group.php:506 +msgid "Could not save local group info." +msgstr "Не можев да ги зачувам информациите за локалните групи." + #: lib/accountsettingsaction.php:108 msgid "Change your profile settings" msgstr "Смени профилни нагодувања" @@ -4604,120 +4654,190 @@ msgstr "Страница без наслов" msgid "Primary site navigation" msgstr "Главна навигација" +#. TRANS: Tooltip for main menu option "Personal" #: lib/action.php:439 -msgid "Home" -msgstr "Дома" - -#: lib/action.php:439 +#, fuzzy +msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Личен профил и историја на пријатели" -#: lib/action.php:441 +#: lib/action.php:442 +#, fuzzy +msgctxt "MENU" +msgid "Personal" +msgstr "Личен" + +#. TRANS: Tooltip for main menu option "Account" +#: lib/action.php:444 +#, fuzzy +msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Промена на е-пошта, аватар, лозинка, профил" -#: lib/action.php:444 -msgid "Connect" -msgstr "Поврзи се" +#: lib/action.php:447 +#, fuzzy +msgctxt "MENU" +msgid "Account" +msgstr "Сметка" -#: lib/action.php:444 +#. TRANS: Tooltip for main menu option "Services" +#: lib/action.php:450 +#, fuzzy +msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Поврзи се со услуги" -#: lib/action.php:448 +#: lib/action.php:453 +#, fuzzy +msgctxt "MENU" +msgid "Connect" +msgstr "Поврзи се" + +#. TRANS: Tooltip for menu option "Admin" +#: lib/action.php:457 +#, fuzzy +msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Промена на конфигурацијата на веб-страницата" -#: lib/action.php:452 lib/subgroupnav.php:105 -msgid "Invite" -msgstr "Покани" +#: lib/action.php:460 +#, fuzzy +msgctxt "MENU" +msgid "Admin" +msgstr "Администратор" -#: lib/action.php:453 lib/subgroupnav.php:106 -#, php-format +#. TRANS: Tooltip for main menu option "Invite" +#: lib/action.php:464 +#, fuzzy, php-format +msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Поканете пријатели и колеги да Ви се придружат на %s" -#: lib/action.php:458 -msgid "Logout" -msgstr "Одјави се" +#: lib/action.php:467 +#, fuzzy +msgctxt "MENU" +msgid "Invite" +msgstr "Покани" -#: lib/action.php:458 +#. TRANS: Tooltip for main menu option "Logout" +#: lib/action.php:473 +#, fuzzy +msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Одјава" -#: lib/action.php:463 +#: lib/action.php:476 +#, fuzzy +msgctxt "MENU" +msgid "Logout" +msgstr "Одјави се" + +#. TRANS: Tooltip for main menu option "Register" +#: lib/action.php:481 +#, fuzzy +msgctxt "TOOLTIP" msgid "Create an account" msgstr "Создај сметка" -#: lib/action.php:466 +#: lib/action.php:484 +#, fuzzy +msgctxt "MENU" +msgid "Register" +msgstr "Регистрирај се" + +#. TRANS: Tooltip for main menu option "Login" +#: lib/action.php:487 +#, fuzzy +msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Најава" -#: lib/action.php:469 lib/action.php:732 -msgid "Help" -msgstr "Помош" +#: lib/action.php:490 +#, fuzzy +msgctxt "MENU" +msgid "Login" +msgstr "Најава" -#: lib/action.php:469 +#. TRANS: Tooltip for main menu option "Help" +#: lib/action.php:493 +#, fuzzy +msgctxt "TOOLTIP" msgid "Help me!" msgstr "Напомош!" -#: lib/action.php:472 lib/searchaction.php:127 -msgid "Search" -msgstr "Барај" +#: lib/action.php:496 +#, fuzzy +msgctxt "MENU" +msgid "Help" +msgstr "Помош" -#: lib/action.php:472 +#. TRANS: Tooltip for main menu option "Search" +#: lib/action.php:499 +#, fuzzy +msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Пребарајте луѓе или текст" -#: lib/action.php:493 +#: lib/action.php:502 +#, fuzzy +msgctxt "MENU" +msgid "Search" +msgstr "Барај" + +#. TRANS: DT element for site notice. String is hidden in default CSS. +#: lib/action.php:524 msgid "Site notice" msgstr "Напомена за веб-страницата" -#: lib/action.php:559 +#: lib/action.php:590 msgid "Local views" msgstr "Локални прегледи" -#: lib/action.php:625 +#: lib/action.php:656 msgid "Page notice" msgstr "Напомена за страницата" -#: lib/action.php:727 +#: lib/action.php:758 msgid "Secondary site navigation" msgstr "Споредна навигација" -#: lib/action.php:734 +#: lib/action.php:763 +msgid "Help" +msgstr "Помош" + +#: lib/action.php:765 msgid "About" msgstr "За" -#: lib/action.php:736 +#: lib/action.php:767 msgid "FAQ" msgstr "ЧПП" -#: lib/action.php:740 +#: lib/action.php:771 msgid "TOS" msgstr "Услови" -#: lib/action.php:743 +#: lib/action.php:774 msgid "Privacy" msgstr "Приватност" -#: lib/action.php:745 +#: lib/action.php:776 msgid "Source" msgstr "Изворен код" -#: lib/action.php:749 +#: lib/action.php:780 msgid "Contact" msgstr "Контакт" -#: lib/action.php:751 +#: lib/action.php:782 msgid "Badge" msgstr "Значка" -#: lib/action.php:779 +#: lib/action.php:810 msgid "StatusNet software license" msgstr "Лиценца на програмот StatusNet" -#: lib/action.php:782 +#: lib/action.php:813 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4726,12 +4846,12 @@ msgstr "" "**%%site.name%%** е сервис за микроблогирање што ви го овозможува [%%site." "broughtby%%](%%site.broughtbyurl%%). " -#: lib/action.php:784 +#: lib/action.php:815 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** е сервис за микроблогирање." -#: lib/action.php:786 +#: lib/action.php:817 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4742,111 +4862,164 @@ msgstr "" "верзија %s, достапен пд [GNU Affero General Public License](http://www.fsf." "org/licensing/licenses/agpl-3.0.html)." -#: lib/action.php:801 +#: lib/action.php:832 msgid "Site content license" msgstr "Лиценца на содржините на веб-страницата" -#: lib/action.php:806 +#: lib/action.php:837 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "Содржината и податоците на %1$s се лични и доверливи." -#: lib/action.php:811 +#: lib/action.php:842 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" "Авторските права на содржината и податоците се во сопственост на %1$s. Сите " "права задржани." -#: lib/action.php:814 +#: lib/action.php:845 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" "Авторските права на содржината и податоците им припаѓаат на учесниците. Сите " "права задржани." -#: lib/action.php:827 +#: lib/action.php:858 msgid "All " msgstr "Сите " -#: lib/action.php:833 +#: lib/action.php:864 msgid "license." msgstr "лиценца." -#: lib/action.php:1132 +#: lib/action.php:1163 msgid "Pagination" msgstr "Прелом на страници" -#: lib/action.php:1141 +#: lib/action.php:1172 msgid "After" msgstr "По" -#: lib/action.php:1149 +#: lib/action.php:1180 msgid "Before" msgstr "Пред" -#: lib/activity.php:382 +#: lib/activity.php:449 msgid "Can't handle remote content yet." -msgstr "" +msgstr "Сè уште не е поддржана обработката на оддалечена содржина." -#: lib/activity.php:410 +#: lib/activity.php:477 msgid "Can't handle embedded XML content yet." -msgstr "" +msgstr "Сè уште не е поддржана обработката на XML содржина." -#: lib/activity.php:414 +#: lib/activity.php:481 msgid "Can't handle embedded Base64 content yet." -msgstr "" +msgstr "Сè уште не е достапна обработката на вметната Base64 содржина." -#: lib/adminpanelaction.php:96 +#. TRANS: Client error message +#: lib/adminpanelaction.php:98 msgid "You cannot make changes to this site." msgstr "Не можете да ја менувате оваа веб-страница." -#: lib/adminpanelaction.php:107 +#. TRANS: Client error message +#: lib/adminpanelaction.php:110 msgid "Changes to that panel are not allowed." msgstr "Менувањето на тој алатник не е дозволено." -#: lib/adminpanelaction.php:206 +#. TRANS: Client error message +#: lib/adminpanelaction.php:211 msgid "showForm() not implemented." msgstr "showForm() не е имплементирано." -#: lib/adminpanelaction.php:235 +#. TRANS: Client error message +#: lib/adminpanelaction.php:241 msgid "saveSettings() not implemented." msgstr "saveSettings() не е имплементирано." -#: lib/adminpanelaction.php:258 +#. TRANS: Client error message +#: lib/adminpanelaction.php:265 msgid "Unable to delete design setting." msgstr "Не можам да ги избришам нагодувањата за изглед." -#: lib/adminpanelaction.php:312 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:330 msgid "Basic site configuration" msgstr "Основни нагодувања на веб-страницата" -#: lib/adminpanelaction.php:317 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:332 +#, fuzzy +msgctxt "MENU" +msgid "Site" +msgstr "Веб-страница" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:338 msgid "Design configuration" msgstr "Конфигурација на изгледот" -#: lib/adminpanelaction.php:322 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:340 +#, fuzzy +msgctxt "MENU" +msgid "Design" +msgstr "Изглед" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:346 msgid "User configuration" msgstr "Конфигурација на корисник" -#: lib/adminpanelaction.php:327 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:348 +#, fuzzy +msgctxt "MENU" +msgid "User" +msgstr "Корисник" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:354 msgid "Access configuration" msgstr "Конфигурација на пристапот" -#: lib/adminpanelaction.php:332 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:356 +#, fuzzy +msgctxt "MENU" +msgid "Access" +msgstr "Пристап" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:362 msgid "Paths configuration" msgstr "Конфигурација на патеки" -#: lib/adminpanelaction.php:337 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:364 +#, fuzzy +msgctxt "MENU" +msgid "Paths" +msgstr "Патеки" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:370 msgid "Sessions configuration" msgstr "Конфигурација на сесиите" -#: lib/apiauth.php:95 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:372 +#, fuzzy +msgctxt "MENU" +msgid "Sessions" +msgstr "Сесии" + +#: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." msgstr "" "API-ресурсот бара да може и да чита и да запишува, а вие можете само да " "читате." -#: lib/apiauth.php:273 +#: lib/apiauth.php:272 #, php-format msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" msgstr "Неуспешен обид за API-заверка, прекар = %1$s, прокси = %2$s, IP = %3$s" @@ -4937,11 +5110,11 @@ msgstr "Забелешки кадешто се јавува овој прило msgid "Tags for this attachment" msgstr "Ознаки за овој прилог" -#: lib/authenticationplugin.php:218 lib/authenticationplugin.php:223 +#: lib/authenticationplugin.php:220 lib/authenticationplugin.php:225 msgid "Password changing failed" msgstr "Менувањето на лозинката не успеа" -#: lib/authenticationplugin.php:233 +#: lib/authenticationplugin.php:235 msgid "Password changing is not allowed" msgstr "Менувањето на лозинка не е дозволено" @@ -5143,9 +5316,9 @@ msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "Оваа врска може да се употреби само еднаш, и трае само 2 минути: %s" #: lib/command.php:692 -#, fuzzy, php-format +#, php-format msgid "Unsubscribed %s" -msgstr "Претплатата на %s е откажана" +msgstr "Откажана претплата на %s" #: lib/command.php:709 msgid "You are not subscribed to anyone." @@ -5178,7 +5351,6 @@ msgstr[0] "Не ни го испративте тој профил." msgstr[1] "Не ни го испративте тој профил." #: lib/command.php:769 -#, fuzzy msgid "" "Commands:\n" "on - turn on notifications\n" @@ -5257,19 +5429,19 @@ msgstr "" "tracks - сè уште не е имплементирано.\n" "tracking - сè уште не е имплементирано.\n" -#: lib/common.php:136 +#: lib/common.php:148 msgid "No configuration file found. " msgstr "Нема пронајдено конфигурациска податотека. " -#: lib/common.php:137 +#: lib/common.php:149 msgid "I looked for configuration files in the following places: " msgstr "Побарав конфигурациони податотеки на следниве места: " -#: lib/common.php:139 +#: lib/common.php:151 msgid "You may wish to run the installer to fix this." msgstr "Препорачуваме да го пуштите инсталатерот за да го поправите ова." -#: lib/common.php:140 +#: lib/common.php:152 msgid "Go to the installer." msgstr "Оди на инсталаторот." @@ -5459,23 +5631,23 @@ msgstr "Системска грешка при подигањето на под msgid "Not an image or corrupt file." msgstr "Не е слика или податотеката е пореметена." -#: lib/imagefile.php:105 +#: lib/imagefile.php:109 msgid "Unsupported image file format." msgstr "Неподдржан фомрат на слики." -#: lib/imagefile.php:118 +#: lib/imagefile.php:122 msgid "Lost our file." msgstr "Податотеката е изгубена." -#: lib/imagefile.php:150 lib/imagefile.php:197 +#: lib/imagefile.php:166 lib/imagefile.php:231 msgid "Unknown file type" msgstr "Непознат тип на податотека" -#: lib/imagefile.php:217 +#: lib/imagefile.php:251 msgid "MB" msgstr "МБ" -#: lib/imagefile.php:219 +#: lib/imagefile.php:253 msgid "kB" msgstr "кб" @@ -5862,6 +6034,11 @@ msgstr "За" msgid "Available characters" msgstr "Расположиви знаци" +#: lib/messageform.php:178 lib/noticeform.php:236 +msgctxt "Send button for sending notice" +msgid "Send" +msgstr "Испрати" + #: lib/noticeform.php:160 msgid "Send a notice" msgstr "Испрати забелешка" @@ -5920,23 +6097,23 @@ msgstr "З" msgid "at" msgstr "во" -#: lib/noticelist.php:558 +#: lib/noticelist.php:566 msgid "in context" msgstr "во контекст" -#: lib/noticelist.php:583 +#: lib/noticelist.php:601 msgid "Repeated by" msgstr "Повторено од" -#: lib/noticelist.php:610 +#: lib/noticelist.php:628 msgid "Reply to this notice" msgstr "Одговори на забелешкава" -#: lib/noticelist.php:611 +#: lib/noticelist.php:629 msgid "Reply" msgstr "Одговор" -#: lib/noticelist.php:655 +#: lib/noticelist.php:673 msgid "Notice repeated" msgstr "Забелешката е повторена" @@ -5984,6 +6161,10 @@ msgstr "Одговори" msgid "Favorites" msgstr "Омилени" +#: lib/personalgroupnav.php:115 +msgid "User" +msgstr "Корисник" + #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "Примени" @@ -6073,7 +6254,7 @@ msgstr "Да ја повторам белешкава?" msgid "Repeat this notice" msgstr "Повтори ја забелешкава" -#: lib/router.php:665 +#: lib/router.php:668 msgid "No single user defined for single-user mode." msgstr "Не е зададен корисник за еднокорисничкиот режим." @@ -6093,6 +6274,10 @@ msgstr "Пребарај по веб-страницата" msgid "Keyword(s)" msgstr "Клучен збор" +#: lib/searchaction.php:127 +msgid "Search" +msgstr "Барај" + #: lib/searchaction.php:162 msgid "Search help" msgstr "Помош со пребарување" @@ -6144,6 +6329,15 @@ msgstr "Луѓе претплатени на %s" msgid "Groups %s is a member of" msgstr "Групи кадешто членува %s" +#: lib/subgroupnav.php:105 +msgid "Invite" +msgstr "Покани" + +#: lib/subgroupnav.php:106 +#, 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" @@ -6214,47 +6408,47 @@ msgstr "Порака" msgid "Moderate" msgstr "Модерирај" -#: lib/util.php:952 +#: lib/util.php:1013 msgid "a few seconds ago" msgstr "пред неколку секунди" -#: lib/util.php:954 +#: lib/util.php:1015 msgid "about a minute ago" msgstr "пред една минута" -#: lib/util.php:956 +#: lib/util.php:1017 #, php-format msgid "about %d minutes ago" msgstr "пред %d минути" -#: lib/util.php:958 +#: lib/util.php:1019 msgid "about an hour ago" msgstr "пред еден час" -#: lib/util.php:960 +#: lib/util.php:1021 #, php-format msgid "about %d hours ago" msgstr "пред %d часа" -#: lib/util.php:962 +#: lib/util.php:1023 msgid "about a day ago" msgstr "пред еден ден" -#: lib/util.php:964 +#: lib/util.php:1025 #, php-format msgid "about %d days ago" msgstr "пред %d денови" -#: lib/util.php:966 +#: lib/util.php:1027 msgid "about a month ago" msgstr "пред еден месец" -#: lib/util.php:968 +#: lib/util.php:1029 #, php-format msgid "about %d months ago" msgstr "пред %d месеца" -#: lib/util.php:970 +#: lib/util.php:1031 msgid "about a year ago" msgstr "пред една година" diff --git a/locale/nb/LC_MESSAGES/statusnet.po b/locale/nb/LC_MESSAGES/statusnet.po index cf3daf0935..a3e64e0cb7 100644 --- a/locale/nb/LC_MESSAGES/statusnet.po +++ b/locale/nb/LC_MESSAGES/statusnet.po @@ -1,5 +1,6 @@ # Translation of StatusNet to Norwegian (bokmål)‬ # +# Author@translatewiki.net: Laaknor # Author@translatewiki.net: Nghtwlkr # -- # This file is distributed under the same license as the StatusNet package. @@ -8,75 +9,82 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-02-24 23:49+0000\n" -"PO-Revision-Date: 2010-02-24 23:51:22+0000\n" +"POT-Creation-Date: 2010-03-02 21:02+0000\n" +"PO-Revision-Date: 2010-03-02 21:03:19+0000\n" "Language-Team: Norwegian (bokmål)‬\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r62925); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: actions/accessadminpanel.php:54 lib/adminpanelaction.php:326 +#. TRANS: Page title +#: actions/accessadminpanel.php:55 msgid "Access" msgstr "Tilgang" -#: actions/accessadminpanel.php:65 +#. TRANS: Page notice +#: actions/accessadminpanel.php:67 msgid "Site access settings" msgstr "Innstillinger for nettstedstilgang" -#: actions/accessadminpanel.php:158 +#. TRANS: Form legend for registration form. +#: actions/accessadminpanel.php:161 msgid "Registration" msgstr "Registrering" -#: actions/accessadminpanel.php:161 -msgid "Private" -msgstr "Privat" - -#: actions/accessadminpanel.php:163 +#. TRANS: Checkbox instructions for admin setting "Private" +#: actions/accessadminpanel.php:165 msgid "Prohibit anonymous users (not logged in) from viewing site?" msgstr "Forhindre anonyme brukere (ikke innlogget) å se nettsted?" +#. TRANS: Checkbox label for prohibiting anonymous users from viewing site. #: actions/accessadminpanel.php:167 -msgid "Invite only" -msgstr "Kun invitasjon" +#, fuzzy +msgctxt "LABEL" +msgid "Private" +msgstr "Privat" -#: actions/accessadminpanel.php:169 +#. TRANS: Checkbox instructions for admin setting "Invite only" +#: actions/accessadminpanel.php:174 msgid "Make registration invitation only." msgstr "Gjør at registrering kun kan skje gjennom invitasjon." -#: actions/accessadminpanel.php:173 -msgid "Closed" -msgstr "Lukket" +#. TRANS: Checkbox label for configuring site as invite only. +#: actions/accessadminpanel.php:176 +msgid "Invite only" +msgstr "Kun invitasjon" -#: actions/accessadminpanel.php:175 +#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations) +#: actions/accessadminpanel.php:183 msgid "Disable new registrations." msgstr "Deaktiver nye registreringer." -#: actions/accessadminpanel.php:189 actions/designadminpanel.php:586 -#: actions/emailsettings.php:195 actions/imsettings.php:163 -#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 -#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 -#: actions/siteadminpanel.php:336 actions/smssettings.php:181 -#: actions/subscriptions.php:208 actions/tagother.php:154 -#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 -#: lib/applicationeditform.php:334 lib/designsettings.php:256 -#: lib/groupeditform.php:202 -msgid "Save" -msgstr "Lagre" +#. TRANS: Checkbox label for disabling new user registrations. +#: actions/accessadminpanel.php:185 +msgid "Closed" +msgstr "Lukket" -#: actions/accessadminpanel.php:189 +#. TRANS: Title / tooltip for button to save access settings in site admin panel +#: actions/accessadminpanel.php:202 msgid "Save access settings" msgstr "Lagre tilgangsinnstillinger" -#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 -#: actions/showfavorites.php:137 actions/tag.php:51 +#: actions/accessadminpanel.php:203 +#, fuzzy +msgctxt "BUTTON" +msgid "Save" +msgstr "Lagre" + +#. TRANS: Server error when page not found (404) +#: actions/all.php:64 actions/public.php:98 actions/replies.php:93 +#: actions/showfavorites.php:138 actions/tag.php:52 msgid "No such page" msgstr "Ingen slik side" -#: actions/all.php:74 actions/allrss.php:68 +#: actions/all.php:75 actions/allrss.php:68 #: actions/apiaccountupdatedeliverydevice.php:113 #: actions/apiaccountupdateprofile.php:105 #: actions/apiaccountupdateprofilebackgroundimage.php:116 @@ -90,51 +98,59 @@ msgstr "Ingen slik side" #: actions/apitimelinehome.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/otp.php:76 -#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154 -#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 -#: actions/showfavorites.php:105 actions/userbyid.php:74 -#: actions/usergroups.php:91 actions/userrss.php:38 actions/xrds.php:71 -#: lib/command.php:163 lib/command.php:302 lib/command.php:355 -#: lib/command.php:401 lib/command.php:462 lib/command.php:518 -#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 +#: actions/hcard.php:67 actions/microsummary.php:62 actions/newmessage.php:116 +#: actions/otp.php:76 actions/remotesubscribe.php:145 +#: actions/remotesubscribe.php:154 actions/replies.php:73 +#: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/xrds.php:71 lib/command.php:163 lib/command.php:302 +#: lib/command.php:355 lib/command.php:401 lib/command.php:462 +#: lib/command.php:518 lib/galleryaction.php:59 lib/mailbox.php:82 +#: lib/profileaction.php:77 msgid "No such user." msgstr "Ingen slik bruker" -#: actions/all.php:84 +#. TRANS: Page title. %1$s is user nickname, %2$d is page number +#: actions/all.php:86 #, php-format msgid "%1$s and friends, page %2$d" msgstr "%1$s og venner, side %2$d" -#: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 +#. TRANS: Page title. %1$s is user nickname +#. TRANS: H1 text. %1$s is user nickname +#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" msgstr "%s og venner" -#: actions/all.php:99 +#. TRANS: %1$s is user nickname +#: actions/all.php:103 #, php-format msgid "Feed for friends of %s (RSS 1.0)" msgstr "Mating for venner av %s (RSS 1.0)" -#: actions/all.php:107 +#. TRANS: %1$s is user nickname +#: actions/all.php:112 #, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "Mating for venner av %s (RSS 2.0)" -#: actions/all.php:115 +#. TRANS: %1$s is user nickname +#: actions/all.php:121 #, php-format msgid "Feed for friends of %s (Atom)" msgstr "Mating for venner av %s (Atom)" -#: actions/all.php:127 +#. TRANS: %1$s is user nickname +#: actions/all.php:134 #, php-format msgid "" "This is the timeline for %s and friends but no one has posted anything yet." msgstr "Dette er tidslinjen for %s og venner, men ingen har postet noe enda." -#: actions/all.php:132 +#: actions/all.php:139 #, php-format msgid "" "Try subscribing to more people, [join a group](%%action.groups%%) or post " @@ -143,7 +159,8 @@ msgstr "" "Prøv å abbonere på flere personer, [bli med i en gruppe](%%action.groups%%) " "eller post noe selv." -#: actions/all.php:134 +#. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@" +#: actions/all.php:142 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) from his profile or [post something to " @@ -153,7 +170,7 @@ msgstr "" "å få hans eller hennes oppmerksomhet](%%%%action.newnotice%%%%?" "status_textarea=%3$s)." -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211 +#: actions/all.php:145 actions/replies.php:210 actions/showstream.php:211 #, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " @@ -162,7 +179,8 @@ msgstr "" "Hvorfor ikke [opprette en konto](%%%%action.register%%%%) og så knuff %s " "eller post en notis for å få hans eller hennes oppmerksomhet." -#: actions/all.php:165 +#. TRANS: H1 text +#: actions/all.php:174 msgid "You and friends" msgstr "Du og venner" @@ -180,20 +198,20 @@ msgstr "Oppdateringer fra %1$s og venner på %2$s!" #: actions/apiaccountverifycredentials.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:128 actions/apigroupcreate.php:136 +#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: actions/apigroupleave.php:141 actions/apigrouplist.php:132 #: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 #: actions/apigroupshow.php:115 actions/apihelptest.php:88 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 -#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184 +#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 #: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:207 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 #, fuzzy msgid "API method not found." msgstr "API-metode ikke funnet!" @@ -227,8 +245,9 @@ msgstr "Klarte ikke å oppdatere bruker." #: actions/apiaccountupdateprofilebackgroundimage.php:194 #: actions/apiaccountupdateprofilecolors.php:185 #: 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 +#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 +#: actions/replies.php:80 actions/usergroups.php:98 lib/galleryaction.php:66 +#: lib/profileaction.php:84 msgid "User has no profile." msgstr "Brukeren har ingen profil." @@ -255,7 +274,7 @@ msgstr "" #: actions/apiaccountupdateprofilebackgroundimage.php:146 #: actions/apiaccountupdateprofilecolors.php:164 #: actions/apiaccountupdateprofilecolors.php:174 -#: actions/groupdesignsettings.php:287 actions/groupdesignsettings.php:297 +#: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300 #: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 #: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 msgid "Unable to save your design settings." @@ -366,68 +385,68 @@ msgstr "Kunne ikke bestemme kildebruker." msgid "Could not find target user." msgstr "Kunne ikke finne målbruker." -#: actions/apigroupcreate.php:164 actions/editgroup.php:182 +#: actions/apigroupcreate.php:166 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:215 #: actions/register.php:205 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "Kallenavn kan kun ha små bokstaver og tall og ingen mellomrom." -#: actions/apigroupcreate.php:173 actions/editgroup.php:186 +#: actions/apigroupcreate.php:175 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:238 #: actions/register.php:208 msgid "Nickname already in use. Try another one." msgstr "Det nicket er allerede i bruk. Prøv et annet." -#: actions/apigroupcreate.php:180 actions/editgroup.php:189 +#: actions/apigroupcreate.php:182 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:218 #: actions/register.php:210 msgid "Not a valid nickname." msgstr "Ugyldig nick." -#: actions/apigroupcreate.php:196 actions/editapplication.php:215 -#: actions/editgroup.php:195 actions/newapplication.php:203 +#: actions/apigroupcreate.php:198 actions/editapplication.php:215 +#: actions/editgroup.php:199 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:217 msgid "Homepage is not a valid URL." msgstr "Hjemmesiden er ikke en gyldig URL." -#: actions/apigroupcreate.php:205 actions/editgroup.php:198 +#: actions/apigroupcreate.php:207 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:225 #: 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:213 actions/editapplication.php:190 +#: actions/apigroupcreate.php:215 actions/editapplication.php:190 #: actions/newapplication.php:172 #, php-format msgid "Description is too long (max %d chars)." msgstr "Beskrivelsen er for lang (maks %d tegn)." -#: actions/apigroupcreate.php:224 actions/editgroup.php:204 +#: actions/apigroupcreate.php:226 actions/editgroup.php:208 #: actions/newgroup.php:148 actions/profilesettings.php:232 #: actions/register.php:227 msgid "Location is too long (max 255 chars)." -msgstr "" +msgstr "Plassering er for lang (maks 255 tegn)." -#: actions/apigroupcreate.php:243 actions/editgroup.php:215 +#: actions/apigroupcreate.php:245 actions/editgroup.php:219 #: actions/newgroup.php:159 #, php-format msgid "Too many aliases! Maximum %d." msgstr "For mange alias! Maksimum %d." -#: actions/apigroupcreate.php:264 actions/editgroup.php:224 +#: actions/apigroupcreate.php:266 actions/editgroup.php:228 #: actions/newgroup.php:168 #, php-format msgid "Invalid alias: \"%s\"" msgstr "Ugyldig alias: «%s»" -#: actions/apigroupcreate.php:273 actions/editgroup.php:228 +#: actions/apigroupcreate.php:275 actions/editgroup.php:232 #: actions/newgroup.php:172 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "Aliaset «%s» er allerede i bruk. Prøv et annet." -#: actions/apigroupcreate.php:286 actions/editgroup.php:234 +#: actions/apigroupcreate.php:288 actions/editgroup.php:238 #: actions/newgroup.php:178 msgid "Alias can't be the same as nickname." msgstr "Alias kan ikke være det samme som kallenavn." @@ -438,15 +457,15 @@ msgstr "Alias kan ikke være det samme som kallenavn." msgid "Group not found!" msgstr "Gruppe ikke funnet!" -#: actions/apigroupjoin.php:110 actions/joingroup.php:90 +#: actions/apigroupjoin.php:110 actions/joingroup.php:100 msgid "You are already a member of that group." msgstr "Du er allerede medlem av den gruppen." -#: actions/apigroupjoin.php:119 actions/joingroup.php:95 lib/command.php:221 +#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:221 msgid "You have been blocked from that group by the admin." msgstr "Du har blitt blokkert fra den gruppen av administratoren." -#: actions/apigroupjoin.php:138 actions/joingroup.php:124 +#: actions/apigroupjoin.php:138 actions/joingroup.php:134 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Kunne ikke legge bruker %1$s til gruppe %2$s." @@ -455,7 +474,7 @@ msgstr "Kunne ikke legge bruker %1$s til gruppe %2$s." msgid "You are not a member of this group." msgstr "Du er ikke et medlem av denne gruppen." -#: actions/apigroupleave.php:124 actions/leavegroup.php:119 +#: actions/apigroupleave.php:124 actions/leavegroup.php:129 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "Kunne ikke fjerne bruker %1$s fra gruppe %2$s." @@ -480,14 +499,13 @@ msgid "No oauth_token parameter provided." msgstr "Ingen verdi for oauth_token er oppgitt." #: actions/apioauthauthorize.php:106 -#, fuzzy msgid "Invalid token." -msgstr "Ugyldig størrelse" +msgstr "Ugyldig symbol." #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 #: actions/deletenotice.php:157 actions/disfavor.php:74 #: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54 -#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupblock.php:66 actions/grouplogo.php:312 #: actions/groupunblock.php:66 actions/imsettings.php:206 #: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 @@ -500,7 +518,7 @@ msgstr "Ugyldig størrelse" #: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: lib/designsettings.php:294 msgid "There was a problem with your session token. Try again, please." -msgstr "" +msgstr "Det var et problem med din sesjons-autentisering. Prøv igjen." #: actions/apioauthauthorize.php:135 msgid "Invalid nickname / password!" @@ -508,11 +526,11 @@ msgstr "Ugyldig kallenavn / passord!" #: actions/apioauthauthorize.php:159 msgid "Database error deleting OAuth application user." -msgstr "" +msgstr "Databasefeil ved sletting av bruker fra programmet OAuth." #: actions/apioauthauthorize.php:185 msgid "Database error inserting OAuth application user." -msgstr "" +msgstr "Databasefeil ved innsetting av bruker i programmet OAuth." #: actions/apioauthauthorize.php:214 #, php-format @@ -528,16 +546,16 @@ msgstr "" #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:103 actions/editapplication.php:139 -#: actions/emailsettings.php:256 actions/grouplogo.php:319 +#: actions/emailsettings.php:256 actions/grouplogo.php:322 #: actions/imsettings.php:220 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 #: actions/smssettings.php:248 lib/designsettings.php:304 msgid "Unexpected form submission." -msgstr "" +msgstr "Uventet skjemainnsending." #: actions/apioauthauthorize.php:259 msgid "An application would like to connect to your account" -msgstr "" +msgstr "Et program ønsker å koble til kontoen din" #: actions/apioauthauthorize.php:276 msgid "Allow or deny access" @@ -550,14 +568,17 @@ msgid "" "the ability to %3$s your %4$s account data. You should only " "give access to your %4$s account to third parties you trust." msgstr "" +"Programmet %1$s av %2$s ønsker å kunne " +"%3$s dine %4$s-kontodata. Du bør bare gi tilgang til din %4" +"$s-konto til tredjeparter du stoler på." -#: actions/apioauthauthorize.php:310 lib/action.php:441 +#: actions/apioauthauthorize.php:310 msgid "Account" msgstr "Konto" #: actions/apioauthauthorize.php:313 actions/login.php:230 #: actions/profilesettings.php:106 actions/register.php:424 -#: actions/showgroup.php:236 actions/tagother.php:94 +#: actions/showgroup.php:244 actions/tagother.php:94 #: actions/userauthorization.php:145 lib/groupeditform.php:152 #: lib/userprofile.php:131 msgid "Nickname" @@ -582,7 +603,7 @@ msgstr "Tillat eller nekt tilgang til din kontoinformasjon." #: actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." -msgstr "" +msgstr "Denne metoden krever en POST eller DELETE." #: actions/apistatusesdestroy.php:130 msgid "You may not delete another user's status." @@ -613,7 +634,7 @@ msgstr "Ingen status med den ID-en funnet." #: lib/mailhandler.php:60 #, php-format msgid "That's too long. Max notice size is %d chars." -msgstr "" +msgstr "Det er for langt. Maks notisstørrelse er %d tegn." #: actions/apistatusesupdate.php:202 msgid "Not found" @@ -622,7 +643,7 @@ msgstr "Ikke funnet" #: actions/apistatusesupdate.php:225 actions/newnotice.php:178 #, php-format msgid "Max notice size is %d chars, including attachment URL." -msgstr "" +msgstr "Maks notisstørrelse er %d tegn, inklusive vedleggs-URL." #: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 msgid "Unsupported format." @@ -639,12 +660,12 @@ msgid "%1$s updates favorited by %2$s / %2$s." msgstr "%1$s oppdateringer markert som favoritt av %2$s / %2$s." #: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:131 actions/userrss.php:90 +#: actions/grouprss.php:138 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "%s tidslinje" -#: actions/apitimelinegroup.php:114 actions/apitimelineuser.php:126 +#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 #: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" @@ -680,7 +701,7 @@ msgstr "Gjentatt til %s" msgid "Repeats of %s" msgstr "Repetisjoner av %s" -#: actions/apitimelinetag.php:102 actions/tag.php:66 +#: actions/apitimelinetag.php:102 actions/tag.php:67 #, php-format msgid "Notices tagged with %s" msgstr "Notiser merket med %s" @@ -701,8 +722,7 @@ msgstr "Ingen slike vedlegg." #: actions/avatarbynickname.php:59 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/leavegroup.php:76 -#: actions/showgroup.php:121 +#: actions/grouprss.php:91 actions/showgroup.php:121 msgid "No nickname." msgstr "Ingen kallenavn." @@ -714,7 +734,7 @@ msgstr "Ingen størrelse." msgid "Invalid size." msgstr "Ugyldig størrelse" -#: actions/avatarsettings.php:67 actions/showgroup.php:221 +#: actions/avatarsettings.php:67 actions/showgroup.php:229 #: lib/accountsettingsaction.php:112 msgid "Avatar" msgstr "Brukerbilde" @@ -722,49 +742,49 @@ msgstr "Brukerbilde" #: actions/avatarsettings.php:78 #, php-format msgid "You can upload your personal avatar. The maximum file size is %s." -msgstr "" +msgstr "Du kan laste opp en personlig avatar. Maks filstørrelse er %s." #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 #: actions/remotesubscribe.php:191 actions/userauthorization.php:72 #: actions/userrss.php:103 msgid "User without matching profile" -msgstr "" +msgstr "Bruker uten samsvarende profil" #: actions/avatarsettings.php:119 actions/avatarsettings.php:197 -#: actions/grouplogo.php:251 +#: actions/grouplogo.php:254 msgid "Avatar settings" msgstr "Avatarinnstillinger" #: actions/avatarsettings.php:127 actions/avatarsettings.php:205 -#: actions/grouplogo.php:199 actions/grouplogo.php:259 +#: actions/grouplogo.php:202 actions/grouplogo.php:262 msgid "Original" msgstr "Original" #: actions/avatarsettings.php:142 actions/avatarsettings.php:217 -#: actions/grouplogo.php:210 actions/grouplogo.php:271 +#: actions/grouplogo.php:213 actions/grouplogo.php:274 msgid "Preview" msgstr "Forhåndsvis" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:637 +#: lib/deleteuserform.php:66 lib/noticelist.php:655 msgid "Delete" msgstr "Slett" -#: actions/avatarsettings.php:166 actions/grouplogo.php:233 +#: actions/avatarsettings.php:166 actions/grouplogo.php:236 msgid "Upload" msgstr "Last opp" -#: actions/avatarsettings.php:231 actions/grouplogo.php:286 +#: actions/avatarsettings.php:231 actions/grouplogo.php:289 msgid "Crop" msgstr "Beskjær" #: actions/avatarsettings.php:328 msgid "Pick a square area of the image to be your avatar" -msgstr "" +msgstr "Velg et kvadratisk utsnitt av bildet som din avatar." -#: actions/avatarsettings.php:343 actions/grouplogo.php:377 +#: actions/avatarsettings.php:343 actions/grouplogo.php:380 msgid "Lost our file data." -msgstr "" +msgstr "Mistet våre fildata." #: actions/avatarsettings.php:366 msgid "Avatar updated." @@ -792,66 +812,73 @@ msgid "" "unsubscribed from you, unable to subscribe to you in the future, and you " "will not be notified of any @-replies from them." msgstr "" +"Er du sikker på at du vil blokkere denne brukeren? Etter dette vil de ikke " +"lenger abbonere på deg, vil ikke kunne abbonere på deg i fremtiden og du vil " +"ikke bli varslet om @-svar fra dem." #: actions/block.php:143 actions/deleteapplication.php:153 -#: actions/deletenotice.php:145 actions/deleteuser.php:147 +#: actions/deletenotice.php:145 actions/deleteuser.php:150 #: actions/groupblock.php:178 msgid "No" msgstr "Nei" -#: actions/block.php:143 actions/deleteuser.php:147 +#: actions/block.php:143 actions/deleteuser.php:150 msgid "Do not block this user" msgstr "Ikke blokker denne brukeren" #: actions/block.php:144 actions/deleteapplication.php:158 -#: actions/deletenotice.php:146 actions/deleteuser.php:148 +#: actions/deletenotice.php:146 actions/deleteuser.php:151 #: actions/groupblock.php:179 lib/repeatform.php:132 msgid "Yes" msgstr "Ja" -#: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:355 lib/blockform.php:80 msgid "Block this user" msgstr "Blokker denne brukeren" #: actions/block.php:167 msgid "Failed to save block information." -msgstr "" +msgstr "Kunne ikke lagre blokkeringsinformasjon." -#: actions/blockedfromgroup.php:80 actions/editgroup.php:96 -#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/groupblock.php:86 -#: actions/groupbyid.php:83 actions/groupdesignsettings.php:97 -#: actions/grouplogo.php:99 actions/groupmembers.php:83 -#: actions/grouprss.php:98 actions/groupunblock.php:86 -#: actions/joingroup.php:83 actions/leavegroup.php:83 actions/makeadmin.php:86 -#: actions/showgroup.php:137 lib/command.php:212 lib/command.php:260 +#: actions/blockedfromgroup.php:80 actions/blockedfromgroup.php:87 +#: actions/editgroup.php:100 actions/foafgroup.php:44 actions/foafgroup.php:62 +#: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:100 actions/grouplogo.php:102 +#: actions/groupmembers.php:83 actions/groupmembers.php:90 +#: actions/grouprss.php:98 actions/grouprss.php:105 +#: actions/groupunblock.php:86 actions/joingroup.php:82 +#: actions/joingroup.php:93 actions/leavegroup.php:82 +#: actions/leavegroup.php:93 actions/makeadmin.php:86 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:212 +#: lib/command.php:260 msgid "No such group." msgstr "Ingen slik gruppe." -#: actions/blockedfromgroup.php:90 +#: actions/blockedfromgroup.php:97 #, php-format msgid "%s blocked profiles" msgstr "%s blokkerte profiler" -#: actions/blockedfromgroup.php:93 +#: actions/blockedfromgroup.php:100 #, php-format msgid "%1$s blocked profiles, page %2$d" msgstr "%1$s blokkerte profiler, side %2$d" -#: actions/blockedfromgroup.php:108 +#: actions/blockedfromgroup.php:115 msgid "A list of the users blocked from joining this group." -msgstr "" +msgstr "En liste over brukere som er blokkert fra å delta i denne gruppen." -#: actions/blockedfromgroup.php:281 +#: actions/blockedfromgroup.php:288 msgid "Unblock user from group" -msgstr "" +msgstr "Opphev blokkering av bruker fra gruppe" -#: actions/blockedfromgroup.php:313 lib/unblockform.php:69 +#: actions/blockedfromgroup.php:320 lib/unblockform.php:69 msgid "Unblock" -msgstr "" +msgstr "Opphev blokkering" -#: actions/blockedfromgroup.php:313 lib/unblockform.php:80 +#: actions/blockedfromgroup.php:320 lib/unblockform.php:80 msgid "Unblock this user" -msgstr "" +msgstr "Opphev blokkering av denne brukeren" #: actions/bookmarklet.php:50 msgid "Post to " @@ -867,12 +894,12 @@ msgstr "Fant ikke bekreftelseskode." #: actions/confirmaddress.php:85 msgid "That confirmation code is not for you!" -msgstr "" +msgstr "Den bekreftelseskoden er ikke til deg." #: actions/confirmaddress.php:90 #, php-format msgid "Unrecognized address type %s" -msgstr "" +msgstr "Ukjent adressetype %s" #: actions/confirmaddress.php:94 msgid "That address has already been confirmed." @@ -907,7 +934,7 @@ msgstr "Samtale" #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 #: lib/profileaction.php:216 lib/searchgroupnav.php:82 msgid "Notices" -msgstr "" +msgstr "Notiser" #: actions/deleteapplication.php:63 msgid "You must be logged in to delete an application." @@ -924,7 +951,7 @@ msgstr "Du er ikke eieren av dette programmet." #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1197 +#: lib/action.php:1228 msgid "There was a problem with your session token." msgstr "" @@ -950,12 +977,13 @@ msgstr "Ikke slett dette programmet" msgid "Delete this application" msgstr "Slett dette programmet" +#. TRANS: Client error message #: 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:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 -#: lib/adminpanelaction.php:72 lib/profileformaction.php:63 +#: lib/adminpanelaction.php:73 lib/profileformaction.php:63 #: lib/settingsaction.php:72 msgid "Not logged in." msgstr "Ikke logget inn." @@ -984,7 +1012,7 @@ msgstr "Er du sikker på at du vil slette denne notisen?" msgid "Do not delete this notice" msgstr "Ikke slett denne notisen" -#: actions/deletenotice.php:146 lib/noticelist.php:637 +#: actions/deletenotice.php:146 lib/noticelist.php:655 msgid "Delete this notice" msgstr "Slett denne notisen" @@ -1000,7 +1028,7 @@ msgstr "Du kan bare slette lokale brukere." msgid "Delete user" msgstr "Slett bruker" -#: actions/deleteuser.php:135 +#: actions/deleteuser.php:136 msgid "" "Are you sure you want to delete this user? This will clear all data about " "the user from the database, without a backup." @@ -1008,12 +1036,12 @@ msgstr "" "Er du sikker på at du vil slette denne brukeren? Dette vil slette alle data " "om brukeren fra databasen, uten sikkerhetskopi." -#: actions/deleteuser.php:148 lib/deleteuserform.php:77 +#: actions/deleteuser.php:151 lib/deleteuserform.php:77 msgid "Delete this user" msgstr "Slett denne brukeren" #: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 -#: lib/adminpanelaction.php:316 lib/groupnav.php:119 +#: lib/groupnav.php:119 msgid "Design" msgstr "" @@ -1028,7 +1056,7 @@ msgstr "Ugyldig logo-URL." #: actions/designadminpanel.php:279 #, php-format msgid "Theme not available: %s" -msgstr "" +msgstr "Tema ikke tilgjengelig: %s" #: actions/designadminpanel.php:375 msgid "Change logo" @@ -1039,18 +1067,16 @@ msgid "Site logo" msgstr "Nettstedslogo" #: actions/designadminpanel.php:387 -#, fuzzy msgid "Change theme" -msgstr "Endre" +msgstr "Endre tema" #: actions/designadminpanel.php:404 -#, fuzzy msgid "Site theme" -msgstr "Endre" +msgstr "Nettstedstema" #: actions/designadminpanel.php:405 msgid "Theme for the site." -msgstr "" +msgstr "Tema for nettstedet." #: actions/designadminpanel.php:417 lib/designsettings.php:101 msgid "Change background image" @@ -1067,6 +1093,7 @@ msgid "" "You can upload a background image for the site. The maximum file size is %1" "$s." msgstr "" +"Du kan laste opp et bakgrunnsbilde for nettstedet. Maks filstørrelse er %1$s." #: actions/designadminpanel.php:457 lib/designsettings.php:139 msgid "On" @@ -1115,7 +1142,18 @@ msgstr "" #: actions/designadminpanel.php:584 lib/designsettings.php:254 msgid "Reset back to default" -msgstr "" +msgstr "Tilbakestill til standardverdier" + +#: actions/designadminpanel.php:586 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/tagother.php:154 actions/useradminpanel.php:294 +#: lib/applicationeditform.php:333 lib/applicationeditform.php:334 +#: lib/designsettings.php:256 lib/groupeditform.php:202 +msgid "Save" +msgstr "Lagre" #: actions/designadminpanel.php:587 lib/designsettings.php:257 msgid "Save design" @@ -1203,38 +1241,37 @@ msgstr "Klarte ikke å oppdatere bruker." #: actions/editgroup.php:56 #, php-format msgid "Edit %s group" -msgstr "" +msgstr "Rediger %s gruppe" #: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." msgstr "Du må være innlogget for å opprette en gruppe." -#: actions/editgroup.php:103 actions/editgroup.php:168 -#: actions/groupdesignsettings.php:104 actions/grouplogo.php:106 -#, fuzzy +#: actions/editgroup.php:107 actions/editgroup.php:172 +#: actions/groupdesignsettings.php:107 actions/grouplogo.php:109 msgid "You must be an admin to edit the group." -msgstr "Gjør brukeren til en administrator for gruppen" +msgstr "Du må være en administrator for å redigere gruppen." -#: actions/editgroup.php:154 +#: actions/editgroup.php:158 msgid "Use this form to edit the group." -msgstr "" +msgstr "Bruk dette skjemaet for å redigere gruppen." -#: actions/editgroup.php:201 actions/newgroup.php:145 +#: actions/editgroup.php:205 actions/newgroup.php:145 #, php-format msgid "description is too long (max %d chars)." msgstr "beskrivelse er for lang (maks %d tegn)" -#: actions/editgroup.php:253 +#: actions/editgroup.php:258 msgid "Could not update group." msgstr "Kunne ikke oppdatere gruppe." -#: actions/editgroup.php:259 classes/User_group.php:433 +#: actions/editgroup.php:264 classes/User_group.php:478 msgid "Could not create aliases." msgstr "Kunne ikke opprette alias." -#: actions/editgroup.php:269 +#: actions/editgroup.php:280 msgid "Options saved." -msgstr "" +msgstr "Lagret valg." #: actions/emailsettings.php:60 msgid "Email settings" @@ -1243,7 +1280,7 @@ msgstr "E-postinnstillinger" #: actions/emailsettings.php:71 #, php-format msgid "Manage how you get email from %%site.name%%." -msgstr "" +msgstr "Velg hvordan du mottar e-post fra %%site.name%%." #: actions/emailsettings.php:100 actions/imsettings.php:100 #: actions/smssettings.php:104 @@ -1306,7 +1343,7 @@ msgstr "Ny" #: actions/emailsettings.php:153 actions/imsettings.php:139 #: actions/smssettings.php:169 msgid "Preferences" -msgstr "" +msgstr "Innstillinger" #: actions/emailsettings.php:158 msgid "Send me notices of new subscriptions through email." @@ -1339,7 +1376,7 @@ msgstr "Publiser en MicroID for min e-postadresse." #: actions/emailsettings.php:302 actions/imsettings.php:264 #: actions/othersettings.php:180 actions/smssettings.php:284 msgid "Preferences saved." -msgstr "" +msgstr "Innstillinger lagret." #: actions/emailsettings.php:320 msgid "No email address." @@ -1492,11 +1529,11 @@ msgstr "Nytt nick" #: actions/file.php:42 msgid "No attachments." -msgstr "" +msgstr "Ingen vedlegg." #: actions/file.php:51 msgid "No uploaded attachments." -msgstr "" +msgstr "Ingen opplastede vedlegg." #: actions/finishremotesubscribe.php:69 msgid "Not expecting this response!" @@ -1515,9 +1552,8 @@ msgid "That user has blocked you from subscribing." msgstr "" #: actions/finishremotesubscribe.php:110 -#, fuzzy msgid "You are not authorized." -msgstr "Ikke autorisert." +msgstr "Du er ikke autorisert." #: actions/finishremotesubscribe.php:113 msgid "Could not convert request token to access token." @@ -1569,7 +1605,7 @@ msgstr "Du er allerede logget inn!" msgid "User is not a member of group." msgstr "" -#: actions/groupblock.php:136 actions/groupmembers.php:316 +#: actions/groupblock.php:136 actions/groupmembers.php:323 msgid "Block user from group" msgstr "" @@ -1601,88 +1637,88 @@ msgstr "Ingen ID." msgid "You must be logged in to edit a group." msgstr "" -#: actions/groupdesignsettings.php:141 +#: actions/groupdesignsettings.php:144 msgid "Group design" msgstr "" -#: actions/groupdesignsettings.php:152 +#: actions/groupdesignsettings.php:155 msgid "" "Customize the way your group looks with a background image and a colour " "palette of your choice." msgstr "" -#: actions/groupdesignsettings.php:263 actions/userdesignsettings.php:186 +#: actions/groupdesignsettings.php:266 actions/userdesignsettings.php:186 #: lib/designsettings.php:391 lib/designsettings.php:413 #, fuzzy msgid "Couldn't update your design." msgstr "Klarte ikke å oppdatere bruker." -#: actions/groupdesignsettings.php:308 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231 msgid "Design preferences saved." msgstr "" -#: actions/grouplogo.php:139 actions/grouplogo.php:192 +#: actions/grouplogo.php:142 actions/grouplogo.php:195 msgid "Group logo" msgstr "Gruppelogo" -#: actions/grouplogo.php:150 +#: actions/grouplogo.php:153 #, php-format msgid "" "You can upload a logo image for your group. The maximum file size is %s." msgstr "" -#: actions/grouplogo.php:178 +#: actions/grouplogo.php:181 #, fuzzy msgid "User without matching profile." msgstr "Brukeren har ingen profil." -#: actions/grouplogo.php:362 +#: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." msgstr "" -#: actions/grouplogo.php:396 +#: actions/grouplogo.php:399 msgid "Logo updated." msgstr "Logo oppdatert." -#: actions/grouplogo.php:398 +#: actions/grouplogo.php:401 msgid "Failed updating logo." -msgstr "" +msgstr "Kunne ikke oppdatere logo." -#: actions/groupmembers.php:93 lib/groupnav.php:92 +#: actions/groupmembers.php:100 lib/groupnav.php:92 #, php-format msgid "%s group members" msgstr "%s gruppemedlemmer" -#: actions/groupmembers.php:96 +#: actions/groupmembers.php:103 #, php-format msgid "%1$s group members, page %2$d" -msgstr "" +msgstr "%1$s gruppemedlemmer, side %2$d" -#: actions/groupmembers.php:111 +#: actions/groupmembers.php:118 msgid "A list of the users in this group." msgstr "En liste over brukerne i denne gruppen." -#: actions/groupmembers.php:175 lib/action.php:448 lib/groupnav.php:107 +#: actions/groupmembers.php:182 lib/groupnav.php:107 msgid "Admin" msgstr "Administrator" -#: actions/groupmembers.php:348 lib/blockform.php:69 +#: actions/groupmembers.php:355 lib/blockform.php:69 msgid "Block" msgstr "Blokkér" -#: actions/groupmembers.php:443 +#: actions/groupmembers.php:450 msgid "Make user an admin of the group" msgstr "Gjør brukeren til en administrator for gruppen" -#: actions/groupmembers.php:475 +#: actions/groupmembers.php:482 msgid "Make Admin" msgstr "Gjør til administrator" -#: actions/groupmembers.php:475 +#: actions/groupmembers.php:482 msgid "Make this user an admin" msgstr "Gjør denne brukeren til administrator" -#: actions/grouprss.php:133 +#: actions/grouprss.php:140 #, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Oppdateringer fra medlemmer av %1$s på %2$s!" @@ -1695,7 +1731,7 @@ msgstr "Grupper" #: actions/groups.php:64 #, php-format msgid "Groups, page %d" -msgstr "" +msgstr "Grupper, side %d" #: actions/groups.php:90 #, php-format @@ -1751,7 +1787,7 @@ msgstr "" #: actions/groupunblock.php:128 actions/unblock.php:86 msgid "Error removing the block." -msgstr "" +msgstr "Feil under oppheving av blokkering." #: actions/imsettings.php:59 #, fuzzy @@ -1895,7 +1931,7 @@ msgstr "" #: actions/invite.php:144 msgid "Invitation(s) sent to the following people:" -msgstr "" +msgstr "Invitasjon(er) sendt til følgende personer:" #: actions/invite.php:150 msgid "" @@ -1924,16 +1960,19 @@ msgstr "Personlig melding" msgid "Optionally add a personal message to the invitation." msgstr "" -#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:236 +#. TRANS: Send button for inviting friends +#: actions/invite.php:198 +#, fuzzy +msgctxt "BUTTON" msgid "Send" msgstr "Send" -#: actions/invite.php:226 +#: actions/invite.php:227 #, 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 +#: actions/invite.php:229 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -1989,7 +2028,12 @@ msgstr "" msgid "You must be logged in to join a group." msgstr "Du må være innlogget for å bli med i en gruppe." -#: actions/joingroup.php:131 +#: actions/joingroup.php:88 actions/leavegroup.php:88 +#, fuzzy +msgid "No nickname or ID." +msgstr "Ingen kallenavn." + +#: actions/joingroup.php:141 #, php-format msgid "%1$s joined group %2$s" msgstr "" @@ -1998,11 +2042,11 @@ msgstr "" msgid "You must be logged in to leave a group." msgstr "" -#: actions/leavegroup.php:90 lib/command.php:265 +#: actions/leavegroup.php:100 lib/command.php:265 msgid "You are not a member of that group." msgstr "" -#: actions/leavegroup.php:127 +#: actions/leavegroup.php:137 #, php-format msgid "%1$s left group %2$s" msgstr "%1$s forlot gruppe %2$s" @@ -2020,8 +2064,7 @@ msgstr "Feil brukernavn eller passord" msgid "Error setting user. You are probably not authorized." msgstr "Ikke autorisert." -#: actions/login.php:188 actions/login.php:241 lib/action.php:466 -#: lib/logingroupnav.php:79 +#: actions/login.php:188 actions/login.php:241 lib/logingroupnav.php:79 msgid "Login" msgstr "Logg inn" @@ -2264,8 +2307,8 @@ msgstr "innholdstype " msgid "Only " msgstr "Bare " -#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 -#: lib/api.php:1068 lib/api.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 +#: lib/apiaction.php:1068 lib/apiaction.php:1177 msgid "Not a supported data format." msgstr "" @@ -2408,7 +2451,7 @@ msgstr "Klarer ikke å lagre nytt passord." msgid "Password saved." msgstr "Passordet ble lagret" -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:331 +#: actions/pathsadminpanel.php:59 msgid "Paths" msgstr "" @@ -2441,7 +2484,6 @@ msgid "Invalid SSL server. The maximum length is 255 characters." msgstr "" #: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58 -#: lib/adminpanelaction.php:311 msgid "Site" msgstr "" @@ -2614,7 +2656,7 @@ msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1-64 små bokstaver eller nummer, ingen punktum eller mellomrom" #: actions/profilesettings.php:111 actions/register.php:448 -#: actions/showgroup.php:247 actions/tagother.php:104 +#: actions/showgroup.php:255 actions/tagother.php:104 #: lib/groupeditform.php:157 lib/userprofile.php:149 msgid "Full name" msgstr "Fullt navn" @@ -2643,7 +2685,7 @@ msgid "Bio" msgstr "Om meg" #: actions/profilesettings.php:132 actions/register.php:471 -#: actions/showgroup.php:256 actions/tagother.php:112 +#: actions/showgroup.php:264 actions/tagother.php:112 #: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:164 msgid "Location" @@ -2726,7 +2768,8 @@ msgstr "Klarte ikke å lagre profil." msgid "Couldn't save tags." msgstr "Klarte ikke å lagre profil." -#: actions/profilesettings.php:391 lib/adminpanelaction.php:137 +#. TRANS: Message after successful saving of administrative settings. +#: actions/profilesettings.php:391 lib/adminpanelaction.php:141 msgid "Settings saved." msgstr "" @@ -2739,46 +2782,46 @@ msgstr "" msgid "Could not retrieve public stream." msgstr "" -#: actions/public.php:129 +#: actions/public.php:130 #, php-format msgid "Public timeline, page %d" msgstr "" -#: actions/public.php:131 lib/publicgroupnav.php:79 +#: actions/public.php:132 lib/publicgroupnav.php:79 msgid "Public timeline" msgstr "" -#: actions/public.php:159 +#: actions/public.php:160 msgid "Public Stream Feed (RSS 1.0)" msgstr "" -#: actions/public.php:163 +#: actions/public.php:164 msgid "Public Stream Feed (RSS 2.0)" msgstr "" -#: actions/public.php:167 +#: actions/public.php:168 #, fuzzy msgid "Public Stream Feed (Atom)" msgstr "%s offentlig strøm" -#: actions/public.php:187 +#: actions/public.php:188 #, php-format msgid "" "This is the public timeline for %%site.name%% but no one has posted anything " "yet." msgstr "" -#: actions/public.php:190 +#: actions/public.php:191 msgid "Be the first to post!" msgstr "" -#: actions/public.php:194 +#: actions/public.php:195 #, php-format msgid "" "Why not [register an account](%%action.register%%) and be the first to post!" msgstr "" -#: actions/public.php:241 +#: actions/public.php:242 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2787,7 +2830,7 @@ msgid "" "friends, family, and colleagues! ([Read more](%%doc.help%%))" msgstr "" -#: actions/public.php:246 +#: actions/public.php:247 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2958,8 +3001,7 @@ msgstr "" msgid "Registration successful" msgstr "" -#: actions/register.php:114 actions/register.php:503 lib/action.php:463 -#: lib/logingroupnav.php:85 +#: actions/register.php:114 actions/register.php:503 lib/logingroupnav.php:85 msgid "Register" msgstr "" @@ -3139,7 +3181,7 @@ msgstr "" msgid "You already repeated that notice." msgstr "Du er allerede logget inn!" -#: actions/repeat.php:114 lib/noticelist.php:656 +#: actions/repeat.php:114 lib/noticelist.php:674 msgid "Repeated" msgstr "Gjentatt" @@ -3147,47 +3189,47 @@ msgstr "Gjentatt" msgid "Repeated!" msgstr "Gjentatt!" -#: actions/replies.php:125 actions/repliesrss.php:68 +#: actions/replies.php:126 actions/repliesrss.php:68 #: lib/personalgroupnav.php:105 #, php-format msgid "Replies to %s" msgstr "Svar til %s" -#: actions/replies.php:127 +#: actions/replies.php:128 #, php-format msgid "Replies to %1$s, page %2$d" msgstr "Svar til %1$s, side %2$d" -#: actions/replies.php:144 +#: actions/replies.php:145 #, php-format msgid "Replies feed for %s (RSS 1.0)" msgstr "Svarstrøm for %s (RSS 1.0)" -#: actions/replies.php:151 +#: actions/replies.php:152 #, php-format msgid "Replies feed for %s (RSS 2.0)" msgstr "Svarstrøm for %s (RSS 2.0)" -#: actions/replies.php:158 +#: actions/replies.php:159 #, php-format msgid "Replies feed for %s (Atom)" msgstr "Svarstrøm for %s (Atom)" -#: actions/replies.php:198 +#: actions/replies.php:199 #, fuzzy, php-format msgid "" "This is the timeline showing replies to %1$s but %2$s hasn't received a " "notice to his attention yet." msgstr "Dette er tidslinjen for %s og venner, men ingen har postet noe enda." -#: actions/replies.php:203 +#: actions/replies.php:204 #, php-format msgid "" "You can engage other users in a conversation, subscribe to more people or " "[join groups](%%action.groups%%)." msgstr "" -#: actions/replies.php:205 +#: actions/replies.php:206 #, fuzzy, php-format msgid "" "You can try to [nudge %1$s](../%2$s) or [post something to his or her " @@ -3217,7 +3259,6 @@ msgid "User is already sandboxed." msgstr "Du er allerede logget inn!" #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:336 msgid "Sessions" msgstr "" @@ -3242,7 +3283,7 @@ msgid "Turn on debugging output for sessions." msgstr "" #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/useradminpanel.php:293 +#: actions/useradminpanel.php:294 #, fuzzy msgid "Save site settings" msgstr "Innstillinger for IM" @@ -3273,7 +3314,7 @@ msgstr "Organisasjon" msgid "Description" msgstr "Beskrivelse" -#: actions/showapplication.php:192 actions/showgroup.php:429 +#: actions/showapplication.php:192 actions/showgroup.php:437 #: lib/profileaction.php:174 msgid "Statistics" msgstr "Statistikk" @@ -3335,35 +3376,35 @@ msgstr "%s og venner" msgid "Could not retrieve favorite notices." msgstr "" -#: actions/showfavorites.php:170 +#: actions/showfavorites.php:171 #, fuzzy, php-format msgid "Feed for favorites of %s (RSS 1.0)" msgstr "Feed for %s sine venner" -#: actions/showfavorites.php:177 +#: actions/showfavorites.php:178 #, fuzzy, php-format msgid "Feed for favorites of %s (RSS 2.0)" msgstr "Feed for %s sine venner" -#: actions/showfavorites.php:184 +#: actions/showfavorites.php:185 #, fuzzy, php-format msgid "Feed for favorites of %s (Atom)" msgstr "Feed for %s sine venner" -#: actions/showfavorites.php:205 +#: actions/showfavorites.php:206 msgid "" "You haven't chosen any favorite notices yet. Click the fave button on " "notices you like to bookmark them for later or shed a spotlight on them." msgstr "" -#: actions/showfavorites.php:207 +#: actions/showfavorites.php:208 #, 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:211 +#: actions/showfavorites.php:212 #, php-format msgid "" "%s hasn't added any notices to his favorites yet. Why not [register an " @@ -3371,7 +3412,7 @@ msgid "" "would add to their favorites :)" msgstr "" -#: actions/showfavorites.php:242 +#: actions/showfavorites.php:243 msgid "This is a way to share what you like." msgstr "" @@ -3385,70 +3426,70 @@ msgstr "" msgid "%1$s group, page %2$d" msgstr "Alle abonnementer" -#: actions/showgroup.php:218 +#: actions/showgroup.php:226 #, fuzzy msgid "Group profile" msgstr "Klarte ikke å lagre profil." -#: actions/showgroup.php:263 actions/tagother.php:118 +#: actions/showgroup.php:271 actions/tagother.php:118 #: actions/userauthorization.php:175 lib/userprofile.php:177 msgid "URL" msgstr "" -#: actions/showgroup.php:274 actions/tagother.php:128 +#: actions/showgroup.php:282 actions/tagother.php:128 #: actions/userauthorization.php:187 lib/userprofile.php:194 msgid "Note" msgstr "" -#: actions/showgroup.php:284 lib/groupeditform.php:184 +#: actions/showgroup.php:292 lib/groupeditform.php:184 msgid "Aliases" msgstr "" -#: actions/showgroup.php:293 +#: actions/showgroup.php:301 msgid "Group actions" msgstr "" -#: actions/showgroup.php:328 +#: actions/showgroup.php:336 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "" -#: actions/showgroup.php:334 +#: actions/showgroup.php:342 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "" -#: actions/showgroup.php:340 +#: actions/showgroup.php:348 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "" -#: actions/showgroup.php:345 +#: actions/showgroup.php:353 #, fuzzy, php-format msgid "FOAF for %s group" msgstr "Klarte ikke å lagre profil." -#: actions/showgroup.php:381 actions/showgroup.php:438 lib/groupnav.php:91 +#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 #, fuzzy msgid "Members" msgstr "Medlem siden" -#: actions/showgroup.php:386 lib/profileaction.php:117 +#: actions/showgroup.php:394 lib/profileaction.php:117 #: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "" -#: actions/showgroup.php:392 +#: actions/showgroup.php:400 msgid "All members" msgstr "" -#: actions/showgroup.php:432 +#: actions/showgroup.php:440 #, fuzzy msgid "Created" msgstr "Opprett" -#: actions/showgroup.php:448 +#: actions/showgroup.php:456 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3458,7 +3499,7 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showgroup.php:454 +#: actions/showgroup.php:462 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3467,7 +3508,7 @@ msgid "" "their life and interests. " msgstr "" -#: actions/showgroup.php:482 +#: actions/showgroup.php:490 msgid "Admins" msgstr "" @@ -3926,22 +3967,22 @@ msgstr "Ingen Jabber ID." msgid "SMS" msgstr "" -#: actions/tag.php:68 +#: actions/tag.php:69 #, fuzzy, php-format msgid "Notices tagged with %1$s, page %2$d" msgstr "Mikroblogg av %s" -#: actions/tag.php:86 +#: actions/tag.php:87 #, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "" -#: actions/tag.php:92 +#: actions/tag.php:93 #, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "" -#: actions/tag.php:98 +#: actions/tag.php:99 #, fuzzy, php-format msgid "Notice feed for tag %s (Atom)" msgstr "Feed for taggen %s" @@ -3994,7 +4035,7 @@ msgstr "" msgid "No such tag." msgstr "" -#: actions/twitapitrends.php:87 +#: actions/twitapitrends.php:85 msgid "API method under construction." msgstr "API-metode under utvikling." @@ -4025,75 +4066,76 @@ msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" -#: actions/useradminpanel.php:58 lib/adminpanelaction.php:321 -#: lib/personalgroupnav.php:115 +#. TRANS: User admin panel title +#: actions/useradminpanel.php:59 +msgctxt "TITLE" msgid "User" msgstr "" -#: actions/useradminpanel.php:69 +#: actions/useradminpanel.php:70 msgid "User settings for this StatusNet site." msgstr "" -#: actions/useradminpanel.php:148 +#: actions/useradminpanel.php:149 msgid "Invalid bio limit. Must be numeric." msgstr "" -#: actions/useradminpanel.php:154 +#: actions/useradminpanel.php:155 msgid "Invalid welcome text. Max length is 255 characters." msgstr "" -#: actions/useradminpanel.php:164 +#: actions/useradminpanel.php:165 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" -#: actions/useradminpanel.php:217 lib/accountsettingsaction.php:108 +#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Profil" -#: actions/useradminpanel.php:221 +#: actions/useradminpanel.php:222 msgid "Bio Limit" msgstr "" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:223 msgid "Maximum length of a profile bio in characters." msgstr "" -#: actions/useradminpanel.php:230 +#: actions/useradminpanel.php:231 #, fuzzy msgid "New users" msgstr "slett" -#: actions/useradminpanel.php:234 +#: actions/useradminpanel.php:235 msgid "New user welcome" msgstr "" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:236 msgid "Welcome text for new users (Max 255 chars)." msgstr "" -#: actions/useradminpanel.php:240 +#: actions/useradminpanel.php:241 #, fuzzy msgid "Default subscription" msgstr "Alle abonnementer" -#: actions/useradminpanel.php:241 +#: actions/useradminpanel.php:242 #, fuzzy msgid "Automatically subscribe new users to this user." msgstr "" "Abonner automatisk på de som abonnerer på meg (best for ikke-mennesker)" -#: actions/useradminpanel.php:250 +#: actions/useradminpanel.php:251 #, fuzzy msgid "Invitations" msgstr "Bekreftelseskode" -#: actions/useradminpanel.php:255 +#: actions/useradminpanel.php:256 msgid "Invitations enabled" msgstr "" -#: actions/useradminpanel.php:257 +#: actions/useradminpanel.php:258 msgid "Whether to allow users to invite new users." msgstr "" @@ -4268,7 +4310,7 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:196 lib/action.php:747 +#: actions/version.php:196 lib/action.php:778 #, fuzzy msgid "Version" msgstr "Personlig" @@ -4309,6 +4351,11 @@ msgstr "Klarte ikke å oppdatere bruker." msgid "Group leave failed." msgstr "Klarte ikke å lagre profil." +#: classes/Local_group.php:41 +#, fuzzy +msgid "Could not update local group." +msgstr "Kunne ikke oppdatere gruppe." + #: classes/Login_token.php:76 #, fuzzy, php-format msgid "Could not create login token for %s" @@ -4326,43 +4373,43 @@ msgstr "" msgid "Could not update message with new URI." msgstr "" -#: classes/Notice.php:157 +#: classes/Notice.php:172 #, php-format msgid "DB error inserting hashtag: %s" msgstr "" -#: classes/Notice.php:222 +#: classes/Notice.php:239 msgid "Problem saving notice. Too long." msgstr "" -#: classes/Notice.php:226 +#: classes/Notice.php:243 msgid "Problem saving notice. Unknown user." msgstr "" -#: classes/Notice.php:231 +#: classes/Notice.php:248 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: classes/Notice.php:237 +#: classes/Notice.php:254 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." msgstr "" -#: classes/Notice.php:243 +#: classes/Notice.php:260 msgid "You are banned from posting notices on this site." msgstr "" -#: classes/Notice.php:309 classes/Notice.php:335 +#: classes/Notice.php:326 classes/Notice.php:352 msgid "Problem saving notice." msgstr "" -#: classes/Notice.php:882 +#: classes/Notice.php:911 msgid "Problem saving group inbox." msgstr "" -#: classes/Notice.php:1407 +#: classes/Notice.php:1442 #, php-format msgid "RT @%1$s %2$s" msgstr "" @@ -4393,21 +4440,31 @@ msgstr "Klarte ikke å lagre avatar-informasjonen" msgid "Couldn't delete subscription." msgstr "" -#: classes/User.php:372 +#: classes/User.php:373 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "" -#: classes/User_group.php:423 +#: classes/User_group.php:462 #, fuzzy msgid "Could not create group." msgstr "Klarte ikke å lagre avatar-informasjonen" -#: classes/User_group.php:452 +#: classes/User_group.php:471 +#, fuzzy +msgid "Could not set group URI." +msgstr "Klarte ikke å lagre avatar-informasjonen" + +#: classes/User_group.php:492 #, fuzzy msgid "Could not set group membership." msgstr "Klarte ikke å lagre avatar-informasjonen" +#: classes/User_group.php:506 +#, fuzzy +msgid "Could not save local group info." +msgstr "Klarte ikke å lagre avatar-informasjonen" + #: lib/accountsettingsaction.php:108 msgid "Change your profile settings" msgstr "Endre profilinnstillingene dine" @@ -4450,122 +4507,187 @@ msgstr "" msgid "Primary site navigation" msgstr "" +#. TRANS: Tooltip for main menu option "Personal" #: lib/action.php:439 -msgid "Home" -msgstr "Hjem" - -#: lib/action.php:439 +msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:441 -msgid "Change your email, avatar, password, profile" -msgstr "" +#: lib/action.php:442 +#, fuzzy +msgctxt "MENU" +msgid "Personal" +msgstr "Personlig" +#. TRANS: Tooltip for main menu option "Account" #: lib/action.php:444 +#, fuzzy +msgctxt "TOOLTIP" +msgid "Change your email, avatar, password, profile" +msgstr "Endre passordet ditt" + +#: lib/action.php:447 +#, fuzzy +msgctxt "MENU" +msgid "Account" +msgstr "Konto" + +#. TRANS: Tooltip for main menu option "Services" +#: lib/action.php:450 +#, fuzzy +msgctxt "TOOLTIP" +msgid "Connect to services" +msgstr "Koble til" + +#: lib/action.php:453 +#, fuzzy +msgctxt "MENU" msgid "Connect" msgstr "Koble til" -#: lib/action.php:444 -msgid "Connect to services" -msgstr "" - -#: lib/action.php:448 +#. TRANS: Tooltip for menu option "Admin" +#: lib/action.php:457 +msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "" -#: lib/action.php:452 lib/subgroupnav.php:105 -msgid "Invite" -msgstr "" +#: lib/action.php:460 +#, fuzzy +msgctxt "MENU" +msgid "Admin" +msgstr "Administrator" -#: lib/action.php:453 lib/subgroupnav.php:106 +#. TRANS: Tooltip for main menu option "Invite" +#: lib/action.php:464 #, php-format +msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "" -#: lib/action.php:458 +#: lib/action.php:467 +#, fuzzy +msgctxt "MENU" +msgid "Invite" +msgstr "Kun invitasjon" + +#. TRANS: Tooltip for main menu option "Logout" +#: lib/action.php:473 +#, fuzzy +msgctxt "TOOLTIP" +msgid "Logout from the site" +msgstr "Tema for nettstedet." + +#: lib/action.php:476 +#, fuzzy +msgctxt "MENU" msgid "Logout" msgstr "Logg ut" -#: lib/action.php:458 -msgid "Logout from the site" -msgstr "" - -#: lib/action.php:463 +#. TRANS: Tooltip for main menu option "Register" +#: lib/action.php:481 #, fuzzy +msgctxt "TOOLTIP" msgid "Create an account" msgstr "Opprett en ny konto" -#: lib/action.php:466 -msgid "Login to the site" -msgstr "" - -#: lib/action.php:469 lib/action.php:732 -msgid "Help" -msgstr "Hjelp" - -#: lib/action.php:469 +#: lib/action.php:484 #, fuzzy +msgctxt "MENU" +msgid "Register" +msgstr "Registrering" + +#. TRANS: Tooltip for main menu option "Login" +#: lib/action.php:487 +#, fuzzy +msgctxt "TOOLTIP" +msgid "Login to the site" +msgstr "Tema for nettstedet." + +#: lib/action.php:490 +#, fuzzy +msgctxt "MENU" +msgid "Login" +msgstr "Logg inn" + +#. TRANS: Tooltip for main menu option "Help" +#: lib/action.php:493 +#, fuzzy +msgctxt "TOOLTIP" msgid "Help me!" msgstr "Hjelp" -#: lib/action.php:472 lib/searchaction.php:127 -msgid "Search" -msgstr "Søk" +#: lib/action.php:496 +#, fuzzy +msgctxt "MENU" +msgid "Help" +msgstr "Hjelp" -#: lib/action.php:472 +#. TRANS: Tooltip for main menu option "Search" +#: lib/action.php:499 +msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "" -#: lib/action.php:493 +#: lib/action.php:502 +#, fuzzy +msgctxt "MENU" +msgid "Search" +msgstr "Søk" + +#. TRANS: DT element for site notice. String is hidden in default CSS. +#: lib/action.php:524 msgid "Site notice" msgstr "" -#: lib/action.php:559 +#: lib/action.php:590 msgid "Local views" msgstr "" -#: lib/action.php:625 +#: lib/action.php:656 msgid "Page notice" msgstr "" -#: lib/action.php:727 +#: lib/action.php:758 msgid "Secondary site navigation" msgstr "" -#: lib/action.php:734 +#: lib/action.php:763 +msgid "Help" +msgstr "Hjelp" + +#: lib/action.php:765 msgid "About" msgstr "Om" -#: lib/action.php:736 +#: lib/action.php:767 msgid "FAQ" msgstr "OSS/FAQ" -#: lib/action.php:740 +#: lib/action.php:771 msgid "TOS" msgstr "" -#: lib/action.php:743 +#: lib/action.php:774 msgid "Privacy" msgstr "" -#: lib/action.php:745 +#: lib/action.php:776 msgid "Source" msgstr "Kilde" -#: lib/action.php:749 +#: lib/action.php:780 msgid "Contact" msgstr "Kontakt" -#: lib/action.php:751 +#: lib/action.php:782 msgid "Badge" msgstr "" -#: lib/action.php:779 +#: lib/action.php:810 msgid "StatusNet software license" msgstr "" -#: lib/action.php:782 +#: lib/action.php:813 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4574,12 +4696,12 @@ msgstr "" "**%%site.name%%** er en mikrobloggingtjeneste av [%%site.broughtby%%](%%site." "broughtbyurl%%). " -#: lib/action.php:784 +#: lib/action.php:815 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** er en mikrobloggingtjeneste. " -#: lib/action.php:786 +#: lib/action.php:817 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4587,106 +4709,157 @@ msgid "" "org/licensing/licenses/agpl-3.0.html)." msgstr "" -#: lib/action.php:801 +#: lib/action.php:832 msgid "Site content license" msgstr "" -#: lib/action.php:806 +#: lib/action.php:837 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:811 +#: lib/action.php:842 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:814 +#: lib/action.php:845 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" -#: lib/action.php:827 +#: lib/action.php:858 msgid "All " msgstr "" -#: lib/action.php:833 +#: lib/action.php:864 msgid "license." msgstr "" -#: lib/action.php:1132 +#: lib/action.php:1163 msgid "Pagination" msgstr "" -#: lib/action.php:1141 +#: lib/action.php:1172 msgid "After" msgstr "" -#: lib/action.php:1149 +#: lib/action.php:1180 #, fuzzy msgid "Before" msgstr "Tidligere »" -#: lib/activity.php:382 +#: lib/activity.php:449 msgid "Can't handle remote content yet." msgstr "" -#: lib/activity.php:410 +#: lib/activity.php:477 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activity.php:414 +#: lib/activity.php:481 msgid "Can't handle embedded Base64 content yet." msgstr "" -#: lib/adminpanelaction.php:96 +#. TRANS: Client error message +#: lib/adminpanelaction.php:98 msgid "You cannot make changes to this site." msgstr "" -#: lib/adminpanelaction.php:107 +#. TRANS: Client error message +#: lib/adminpanelaction.php:110 msgid "Changes to that panel are not allowed." msgstr "" -#: lib/adminpanelaction.php:206 +#. TRANS: Client error message +#: lib/adminpanelaction.php:211 msgid "showForm() not implemented." msgstr "" -#: lib/adminpanelaction.php:235 +#. TRANS: Client error message +#: lib/adminpanelaction.php:241 msgid "saveSettings() not implemented." msgstr "" -#: lib/adminpanelaction.php:258 +#. TRANS: Client error message +#: lib/adminpanelaction.php:265 msgid "Unable to delete design setting." msgstr "" -#: lib/adminpanelaction.php:312 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:330 msgid "Basic site configuration" msgstr "" -#: lib/adminpanelaction.php:317 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:332 +#, fuzzy +msgctxt "MENU" +msgid "Site" +msgstr "Nettstedslogo" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:338 msgid "Design configuration" msgstr "" -#: lib/adminpanelaction.php:322 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:340 +#, fuzzy +msgctxt "MENU" +msgid "Design" +msgstr "Personlig" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:346 msgid "User configuration" msgstr "" -#: lib/adminpanelaction.php:327 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:348 +msgctxt "MENU" +msgid "User" +msgstr "" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:354 msgid "Access configuration" msgstr "" -#: lib/adminpanelaction.php:332 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:356 +#, fuzzy +msgctxt "MENU" +msgid "Access" +msgstr "Tilgang" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:362 msgid "Paths configuration" msgstr "" -#: lib/adminpanelaction.php:337 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:364 +msgctxt "MENU" +msgid "Paths" +msgstr "" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:370 msgid "Sessions configuration" msgstr "" -#: lib/apiauth.php:95 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:372 +#, fuzzy +msgctxt "MENU" +msgid "Sessions" +msgstr "Personlig" + +#: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." msgstr "" -#: lib/apiauth.php:273 +#: lib/apiauth.php:272 #, php-format msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" msgstr "" @@ -4782,12 +4955,12 @@ msgstr "" msgid "Tags for this attachment" msgstr "" -#: lib/authenticationplugin.php:218 lib/authenticationplugin.php:223 +#: lib/authenticationplugin.php:220 lib/authenticationplugin.php:225 #, fuzzy msgid "Password changing failed" msgstr "Passordet ble lagret" -#: lib/authenticationplugin.php:233 +#: lib/authenticationplugin.php:235 #, fuzzy msgid "Password changing is not allowed" msgstr "Passordet ble lagret" @@ -5067,20 +5240,20 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:136 +#: lib/common.php:148 #, fuzzy msgid "No configuration file found. " msgstr "Fant ikke bekreftelseskode." -#: lib/common.php:137 +#: lib/common.php:149 msgid "I looked for configuration files in the following places: " msgstr "" -#: lib/common.php:139 +#: lib/common.php:151 msgid "You may wish to run the installer to fix this." msgstr "" -#: lib/common.php:140 +#: lib/common.php:152 msgid "Go to the installer." msgstr "" @@ -5273,24 +5446,24 @@ msgstr "" msgid "Not an image or corrupt file." msgstr "" -#: lib/imagefile.php:105 +#: lib/imagefile.php:109 msgid "Unsupported image file format." msgstr "" -#: lib/imagefile.php:118 +#: lib/imagefile.php:122 #, fuzzy msgid "Lost our file." msgstr "Klarte ikke å lagre profil." -#: lib/imagefile.php:150 lib/imagefile.php:197 +#: lib/imagefile.php:166 lib/imagefile.php:231 msgid "Unknown file type" msgstr "" -#: lib/imagefile.php:217 +#: lib/imagefile.php:251 msgid "MB" msgstr "" -#: lib/imagefile.php:219 +#: lib/imagefile.php:253 msgid "kB" msgstr "" @@ -5596,6 +5769,12 @@ msgstr "" msgid "Available characters" msgstr "6 eller flere tegn" +#: lib/messageform.php:178 lib/noticeform.php:236 +#, fuzzy +msgctxt "Send button for sending notice" +msgid "Send" +msgstr "Send" + #: lib/noticeform.php:160 msgid "Send a notice" msgstr "" @@ -5654,25 +5833,25 @@ msgstr "" msgid "at" msgstr "" -#: lib/noticelist.php:558 +#: lib/noticelist.php:566 msgid "in context" msgstr "" -#: lib/noticelist.php:583 +#: lib/noticelist.php:601 #, fuzzy msgid "Repeated by" msgstr "Opprett" -#: lib/noticelist.php:610 +#: lib/noticelist.php:628 msgid "Reply to this notice" msgstr "" -#: lib/noticelist.php:611 +#: lib/noticelist.php:629 #, fuzzy msgid "Reply" msgstr "svar" -#: lib/noticelist.php:655 +#: lib/noticelist.php:673 #, fuzzy msgid "Notice repeated" msgstr "Nytt nick" @@ -5721,6 +5900,10 @@ msgstr "Svar" msgid "Favorites" msgstr "" +#: lib/personalgroupnav.php:115 +msgid "User" +msgstr "" + #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "" @@ -5815,7 +5998,7 @@ msgstr "Kan ikke slette notisen." msgid "Repeat this notice" msgstr "Kan ikke slette notisen." -#: lib/router.php:665 +#: lib/router.php:668 msgid "No single user defined for single-user mode." msgstr "" @@ -5837,6 +6020,10 @@ msgstr "Søk" msgid "Keyword(s)" msgstr "" +#: lib/searchaction.php:127 +msgid "Search" +msgstr "Søk" + #: lib/searchaction.php:162 #, fuzzy msgid "Search help" @@ -5890,6 +6077,15 @@ msgstr "Svar til %s" msgid "Groups %s is a member of" msgstr "" +#: lib/subgroupnav.php:105 +msgid "Invite" +msgstr "" + +#: lib/subgroupnav.php:106 +#, php-format +msgid "Invite friends and colleagues to join you on %s" +msgstr "" + #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -5964,47 +6160,47 @@ msgstr "" msgid "Moderate" msgstr "" -#: lib/util.php:952 +#: lib/util.php:1013 msgid "a few seconds ago" msgstr "noen få sekunder siden" -#: lib/util.php:954 +#: lib/util.php:1015 msgid "about a minute ago" msgstr "omtrent ett minutt siden" -#: lib/util.php:956 +#: lib/util.php:1017 #, php-format msgid "about %d minutes ago" msgstr "omtrent %d minutter siden" -#: lib/util.php:958 +#: lib/util.php:1019 msgid "about an hour ago" msgstr "omtrent én time siden" -#: lib/util.php:960 +#: lib/util.php:1021 #, php-format msgid "about %d hours ago" msgstr "omtrent %d timer siden" -#: lib/util.php:962 +#: lib/util.php:1023 msgid "about a day ago" msgstr "omtrent én dag siden" -#: lib/util.php:964 +#: lib/util.php:1025 #, php-format msgid "about %d days ago" msgstr "omtrent %d dager siden" -#: lib/util.php:966 +#: lib/util.php:1027 msgid "about a month ago" msgstr "omtrent én måned siden" -#: lib/util.php:968 +#: lib/util.php:1029 #, php-format msgid "about %d months ago" msgstr "omtrent %d måneder siden" -#: lib/util.php:970 +#: lib/util.php:1031 msgid "about a year ago" msgstr "omtrent ett år siden" diff --git a/locale/nl/LC_MESSAGES/statusnet.po b/locale/nl/LC_MESSAGES/statusnet.po index 1cd71ad868..a9e7579564 100644 --- a/locale/nl/LC_MESSAGES/statusnet.po +++ b/locale/nl/LC_MESSAGES/statusnet.po @@ -10,75 +10,82 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-02-24 23:49+0000\n" -"PO-Revision-Date: 2010-02-24 23:51:28+0000\n" +"POT-Creation-Date: 2010-03-02 21:02+0000\n" +"PO-Revision-Date: 2010-03-02 21:03:32+0000\n" "Language-Team: Dutch\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r62925); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: actions/accessadminpanel.php:54 lib/adminpanelaction.php:326 +#. TRANS: Page title +#: actions/accessadminpanel.php:55 msgid "Access" msgstr "Toegang" -#: actions/accessadminpanel.php:65 +#. TRANS: Page notice +#: actions/accessadminpanel.php:67 msgid "Site access settings" msgstr "Instellingen voor sitetoegang" -#: actions/accessadminpanel.php:158 +#. TRANS: Form legend for registration form. +#: actions/accessadminpanel.php:161 msgid "Registration" msgstr "Registratie" -#: actions/accessadminpanel.php:161 -msgid "Private" -msgstr "Privé" - -#: actions/accessadminpanel.php:163 +#. TRANS: Checkbox instructions for admin setting "Private" +#: actions/accessadminpanel.php:165 msgid "Prohibit anonymous users (not logged in) from viewing site?" msgstr "Mogen anonieme gebruikers (niet aangemeld) de website bekijken?" +#. TRANS: Checkbox label for prohibiting anonymous users from viewing site. #: actions/accessadminpanel.php:167 -msgid "Invite only" -msgstr "Alleen op uitnodiging" +#, fuzzy +msgctxt "LABEL" +msgid "Private" +msgstr "Privé" -#: actions/accessadminpanel.php:169 +#. TRANS: Checkbox instructions for admin setting "Invite only" +#: actions/accessadminpanel.php:174 msgid "Make registration invitation only." msgstr "Registratie alleen op uitnodiging." -#: actions/accessadminpanel.php:173 -msgid "Closed" -msgstr "Gesloten" +#. TRANS: Checkbox label for configuring site as invite only. +#: actions/accessadminpanel.php:176 +msgid "Invite only" +msgstr "Alleen op uitnodiging" -#: actions/accessadminpanel.php:175 +#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations) +#: actions/accessadminpanel.php:183 msgid "Disable new registrations." msgstr "Nieuwe registraties uitschakelen." -#: actions/accessadminpanel.php:189 actions/designadminpanel.php:586 -#: actions/emailsettings.php:195 actions/imsettings.php:163 -#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 -#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 -#: actions/siteadminpanel.php:336 actions/smssettings.php:181 -#: actions/subscriptions.php:208 actions/tagother.php:154 -#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 -#: lib/applicationeditform.php:334 lib/designsettings.php:256 -#: lib/groupeditform.php:202 -msgid "Save" -msgstr "Opslaan" +#. TRANS: Checkbox label for disabling new user registrations. +#: actions/accessadminpanel.php:185 +msgid "Closed" +msgstr "Gesloten" -#: actions/accessadminpanel.php:189 +#. TRANS: Title / tooltip for button to save access settings in site admin panel +#: actions/accessadminpanel.php:202 msgid "Save access settings" msgstr "Toegangsinstellingen opslaan" -#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 -#: actions/showfavorites.php:137 actions/tag.php:51 +#: actions/accessadminpanel.php:203 +#, fuzzy +msgctxt "BUTTON" +msgid "Save" +msgstr "Opslaan" + +#. TRANS: Server error when page not found (404) +#: actions/all.php:64 actions/public.php:98 actions/replies.php:93 +#: actions/showfavorites.php:138 actions/tag.php:52 msgid "No such page" msgstr "Deze pagina bestaat niet" -#: actions/all.php:74 actions/allrss.php:68 +#: actions/all.php:75 actions/allrss.php:68 #: actions/apiaccountupdatedeliverydevice.php:113 #: actions/apiaccountupdateprofile.php:105 #: actions/apiaccountupdateprofilebackgroundimage.php:116 @@ -92,45 +99,53 @@ msgstr "Deze pagina bestaat niet" #: actions/apitimelinehome.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/otp.php:76 -#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154 -#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 -#: actions/showfavorites.php:105 actions/userbyid.php:74 -#: actions/usergroups.php:91 actions/userrss.php:38 actions/xrds.php:71 -#: lib/command.php:163 lib/command.php:302 lib/command.php:355 -#: lib/command.php:401 lib/command.php:462 lib/command.php:518 -#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 +#: actions/hcard.php:67 actions/microsummary.php:62 actions/newmessage.php:116 +#: actions/otp.php:76 actions/remotesubscribe.php:145 +#: actions/remotesubscribe.php:154 actions/replies.php:73 +#: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/xrds.php:71 lib/command.php:163 lib/command.php:302 +#: lib/command.php:355 lib/command.php:401 lib/command.php:462 +#: lib/command.php:518 lib/galleryaction.php:59 lib/mailbox.php:82 +#: lib/profileaction.php:77 msgid "No such user." msgstr "Onbekende gebruiker." -#: actions/all.php:84 +#. TRANS: Page title. %1$s is user nickname, %2$d is page number +#: actions/all.php:86 #, php-format msgid "%1$s and friends, page %2$d" msgstr "%1$s en vrienden, pagina %2$d" -#: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 +#. TRANS: Page title. %1$s is user nickname +#. TRANS: H1 text. %1$s is user nickname +#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" msgstr "%s en vrienden" -#: actions/all.php:99 +#. TRANS: %1$s is user nickname +#: actions/all.php:103 #, php-format msgid "Feed for friends of %s (RSS 1.0)" msgstr "Feed voor vrienden van %s (RSS 1.0)" -#: actions/all.php:107 +#. TRANS: %1$s is user nickname +#: actions/all.php:112 #, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "Feed voor vrienden van %s (RSS 2.0)" -#: actions/all.php:115 +#. TRANS: %1$s is user nickname +#: actions/all.php:121 #, php-format msgid "Feed for friends of %s (Atom)" msgstr "Feed voor vrienden van %s (Atom)" -#: actions/all.php:127 +#. TRANS: %1$s is user nickname +#: actions/all.php:134 #, php-format msgid "" "This is the timeline for %s and friends but no one has posted anything yet." @@ -138,7 +153,7 @@ msgstr "" "Dit is de tijdlijn voor %s en vrienden, maar niemand heeft nog mededelingen " "geplaatst." -#: actions/all.php:132 +#: actions/all.php:139 #, php-format msgid "" "Try subscribing to more people, [join a group](%%action.groups%%) or post " @@ -147,7 +162,8 @@ msgstr "" "Probeer te abonneren op meer gebruikers, [word lid van een groep](%%action." "groups%%) of plaats zelf berichten." -#: actions/all.php:134 +#. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@" +#: actions/all.php:142 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) from his profile or [post something to " @@ -157,7 +173,7 @@ msgstr "" "bericht voor die gebruiker plaatsen](%%%%action.newnotice%%%%?" "status_textarea=%3$s)." -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211 +#: actions/all.php:145 actions/replies.php:210 actions/showstream.php:211 #, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " @@ -166,7 +182,8 @@ msgstr "" "U kunt een [gebruiker aanmaken](%%%%action.register%%%%) en %s dan porren of " "een bericht sturen." -#: actions/all.php:165 +#. TRANS: H1 text +#: actions/all.php:174 msgid "You and friends" msgstr "U en vrienden" @@ -184,20 +201,20 @@ msgstr "Updates van %1$s en vrienden op %2$s." #: actions/apiaccountverifycredentials.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:128 actions/apigroupcreate.php:136 +#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: actions/apigroupleave.php:141 actions/apigrouplist.php:132 #: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 #: actions/apigroupshow.php:115 actions/apihelptest.php:88 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 -#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184 +#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 #: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:207 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 msgid "API method not found." msgstr "De API-functie is niet aangetroffen." @@ -231,8 +248,9 @@ msgstr "Het was niet mogelijk de gebruiker bij te werken." #: actions/apiaccountupdateprofilebackgroundimage.php:194 #: actions/apiaccountupdateprofilecolors.php:185 #: 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 +#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 +#: 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." @@ -258,7 +276,7 @@ msgstr "" #: actions/apiaccountupdateprofilebackgroundimage.php:146 #: actions/apiaccountupdateprofilecolors.php:164 #: actions/apiaccountupdateprofilecolors.php:174 -#: actions/groupdesignsettings.php:287 actions/groupdesignsettings.php:297 +#: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300 #: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 #: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 msgid "Unable to save your design settings." @@ -373,7 +391,7 @@ msgstr "Het was niet mogelijk de brongebruiker te bepalen." msgid "Could not find target user." msgstr "Het was niet mogelijk de doelgebruiker te vinden." -#: actions/apigroupcreate.php:164 actions/editgroup.php:182 +#: actions/apigroupcreate.php:166 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:215 #: actions/register.php:205 msgid "Nickname must have only lowercase letters and numbers and no spaces." @@ -381,63 +399,63 @@ msgstr "" "De gebruikersnaam mag alleen kleine letters en cijfers bevatten. Spaties " "zijn niet toegestaan." -#: actions/apigroupcreate.php:173 actions/editgroup.php:186 +#: actions/apigroupcreate.php:175 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:238 #: 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/apigroupcreate.php:180 actions/editgroup.php:189 +#: actions/apigroupcreate.php:182 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:218 #: actions/register.php:210 msgid "Not a valid nickname." msgstr "Ongeldige gebruikersnaam!" -#: actions/apigroupcreate.php:196 actions/editapplication.php:215 -#: actions/editgroup.php:195 actions/newapplication.php:203 +#: actions/apigroupcreate.php:198 actions/editapplication.php:215 +#: actions/editgroup.php:199 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:217 msgid "Homepage is not a valid URL." msgstr "De thuispagina is geen geldige URL." -#: actions/apigroupcreate.php:205 actions/editgroup.php:198 +#: actions/apigroupcreate.php:207 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:225 #: actions/register.php:220 msgid "Full name is too long (max 255 chars)." msgstr "De volledige naam is te lang (maximaal 255 tekens)." -#: actions/apigroupcreate.php:213 actions/editapplication.php:190 +#: actions/apigroupcreate.php:215 actions/editapplication.php:190 #: actions/newapplication.php:172 #, php-format msgid "Description is too long (max %d chars)." msgstr "De beschrijving is te lang (maximaal %d tekens)." -#: actions/apigroupcreate.php:224 actions/editgroup.php:204 +#: actions/apigroupcreate.php:226 actions/editgroup.php:208 #: actions/newgroup.php:148 actions/profilesettings.php:232 #: actions/register.php:227 msgid "Location is too long (max 255 chars)." msgstr "Locatie is te lang (maximaal 255 tekens)." -#: actions/apigroupcreate.php:243 actions/editgroup.php:215 +#: actions/apigroupcreate.php:245 actions/editgroup.php:219 #: actions/newgroup.php:159 #, php-format msgid "Too many aliases! Maximum %d." msgstr "Te veel aliassen! Het maximale aantal is %d." -#: actions/apigroupcreate.php:264 actions/editgroup.php:224 +#: actions/apigroupcreate.php:266 actions/editgroup.php:228 #: actions/newgroup.php:168 #, php-format msgid "Invalid alias: \"%s\"" msgstr "Ongeldige alias: \"%s\"" -#: actions/apigroupcreate.php:273 actions/editgroup.php:228 +#: actions/apigroupcreate.php:275 actions/editgroup.php:232 #: actions/newgroup.php:172 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "De alias \"%s\" wordt al gebruikt. Geef een andere alias op." -#: actions/apigroupcreate.php:286 actions/editgroup.php:234 +#: actions/apigroupcreate.php:288 actions/editgroup.php:238 #: actions/newgroup.php:178 msgid "Alias can't be the same as nickname." msgstr "Een alias kan niet hetzelfde zijn als de gebruikersnaam." @@ -448,15 +466,15 @@ msgstr "Een alias kan niet hetzelfde zijn als de gebruikersnaam." msgid "Group not found!" msgstr "De groep is niet aangetroffen!" -#: actions/apigroupjoin.php:110 actions/joingroup.php:90 +#: actions/apigroupjoin.php:110 actions/joingroup.php:100 msgid "You are already a member of that group." msgstr "U bent al lid van die groep." -#: actions/apigroupjoin.php:119 actions/joingroup.php:95 lib/command.php:221 +#: actions/apigroupjoin.php:119 actions/joingroup.php:105 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 van die groep." -#: actions/apigroupjoin.php:138 actions/joingroup.php:124 +#: actions/apigroupjoin.php:138 actions/joingroup.php:134 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Het was niet mogelijk gebruiker %1$s toe te voegen aan de groep %2$s." @@ -465,7 +483,7 @@ msgstr "Het was niet mogelijk gebruiker %1$s toe te voegen aan de groep %2$s." msgid "You are not a member of this group." msgstr "U bent geen lid van deze groep." -#: actions/apigroupleave.php:124 actions/leavegroup.php:119 +#: actions/apigroupleave.php:124 actions/leavegroup.php:129 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "Het was niet mogelijk gebruiker %1$s uit de group %2$s te verwijderen." @@ -496,7 +514,7 @@ msgstr "Ongeldig token." #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 #: actions/deletenotice.php:157 actions/disfavor.php:74 #: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54 -#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupblock.php:66 actions/grouplogo.php:312 #: actions/groupunblock.php:66 actions/imsettings.php:206 #: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 @@ -545,7 +563,7 @@ msgstr "Het verzoektoken %s is geweigerd en ingetrokken." #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:103 actions/editapplication.php:139 -#: actions/emailsettings.php:256 actions/grouplogo.php:319 +#: actions/emailsettings.php:256 actions/grouplogo.php:322 #: actions/imsettings.php:220 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 #: actions/smssettings.php:248 lib/designsettings.php:304 @@ -571,13 +589,13 @@ msgstr "" "van het type \"%3$s tot uw gebruikersgegevens. Geef alleen " "toegang tot uw gebruiker bij %4$s aan derde partijen die u vertrouwt." -#: actions/apioauthauthorize.php:310 lib/action.php:441 +#: actions/apioauthauthorize.php:310 msgid "Account" msgstr "Gebruiker" #: actions/apioauthauthorize.php:313 actions/login.php:230 #: actions/profilesettings.php:106 actions/register.php:424 -#: actions/showgroup.php:236 actions/tagother.php:94 +#: actions/showgroup.php:244 actions/tagother.php:94 #: actions/userauthorization.php:145 lib/groupeditform.php:152 #: lib/userprofile.php:131 msgid "Nickname" @@ -661,12 +679,12 @@ msgid "%1$s updates favorited by %2$s / %2$s." msgstr "%1$s updates op de favorietenlijst geplaatst door %2$s / %3$s" #: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:131 actions/userrss.php:90 +#: actions/grouprss.php:138 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "%s tijdlijn" -#: actions/apitimelinegroup.php:114 actions/apitimelineuser.php:126 +#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 #: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" @@ -702,7 +720,7 @@ msgstr "Herhaald naar %s" msgid "Repeats of %s" msgstr "Herhaald van %s" -#: actions/apitimelinetag.php:102 actions/tag.php:66 +#: actions/apitimelinetag.php:102 actions/tag.php:67 #, php-format msgid "Notices tagged with %s" msgstr "Mededelingen met het label %s" @@ -723,8 +741,7 @@ msgstr "Deze bijlage bestaat niet." #: actions/avatarbynickname.php:59 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/leavegroup.php:76 -#: actions/showgroup.php:121 +#: actions/grouprss.php:91 actions/showgroup.php:121 msgid "No nickname." msgstr "Geen gebruikersnaam." @@ -736,7 +753,7 @@ msgstr "Geen afmeting." msgid "Invalid size." msgstr "Ongeldige afmetingen." -#: actions/avatarsettings.php:67 actions/showgroup.php:221 +#: actions/avatarsettings.php:67 actions/showgroup.php:229 #: lib/accountsettingsaction.php:112 msgid "Avatar" msgstr "Avatar" @@ -754,30 +771,30 @@ msgid "User without matching profile" msgstr "Gebruiker zonder bijbehorend profiel" #: actions/avatarsettings.php:119 actions/avatarsettings.php:197 -#: actions/grouplogo.php:251 +#: actions/grouplogo.php:254 msgid "Avatar settings" msgstr "Avatarinstellingen" #: actions/avatarsettings.php:127 actions/avatarsettings.php:205 -#: actions/grouplogo.php:199 actions/grouplogo.php:259 +#: actions/grouplogo.php:202 actions/grouplogo.php:262 msgid "Original" msgstr "Origineel" #: actions/avatarsettings.php:142 actions/avatarsettings.php:217 -#: actions/grouplogo.php:210 actions/grouplogo.php:271 +#: actions/grouplogo.php:213 actions/grouplogo.php:274 msgid "Preview" msgstr "Voorvertoning" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:637 +#: lib/deleteuserform.php:66 lib/noticelist.php:655 msgid "Delete" msgstr "Verwijderen" -#: actions/avatarsettings.php:166 actions/grouplogo.php:233 +#: actions/avatarsettings.php:166 actions/grouplogo.php:236 msgid "Upload" msgstr "Uploaden" -#: actions/avatarsettings.php:231 actions/grouplogo.php:286 +#: actions/avatarsettings.php:231 actions/grouplogo.php:289 msgid "Crop" msgstr "Uitsnijden" @@ -786,7 +803,7 @@ msgid "Pick a square area of the image to be your avatar" msgstr "" "Selecteer een vierkant in de afbeelding om deze als uw avatar in te stellen" -#: actions/avatarsettings.php:343 actions/grouplogo.php:377 +#: actions/avatarsettings.php:343 actions/grouplogo.php:380 msgid "Lost our file data." msgstr "Ons bestand is verloren gegaan." @@ -821,22 +838,22 @@ msgstr "" "van deze gebruiker." #: actions/block.php:143 actions/deleteapplication.php:153 -#: actions/deletenotice.php:145 actions/deleteuser.php:147 +#: actions/deletenotice.php:145 actions/deleteuser.php:150 #: actions/groupblock.php:178 msgid "No" msgstr "Nee" -#: actions/block.php:143 actions/deleteuser.php:147 +#: actions/block.php:143 actions/deleteuser.php:150 msgid "Do not block this user" msgstr "Gebruiker niet blokkeren" #: actions/block.php:144 actions/deleteapplication.php:158 -#: actions/deletenotice.php:146 actions/deleteuser.php:148 +#: actions/deletenotice.php:146 actions/deleteuser.php:151 #: actions/groupblock.php:179 lib/repeatform.php:132 msgid "Yes" msgstr "Ja" -#: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:355 lib/blockform.php:80 msgid "Block this user" msgstr "Deze gebruiker blokkeren" @@ -844,39 +861,43 @@ msgstr "Deze gebruiker blokkeren" msgid "Failed to save block information." msgstr "Het was niet mogelijk om de blokkadeinformatie op te slaan." -#: actions/blockedfromgroup.php:80 actions/editgroup.php:96 -#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/groupblock.php:86 -#: actions/groupbyid.php:83 actions/groupdesignsettings.php:97 -#: actions/grouplogo.php:99 actions/groupmembers.php:83 -#: actions/grouprss.php:98 actions/groupunblock.php:86 -#: actions/joingroup.php:83 actions/leavegroup.php:83 actions/makeadmin.php:86 -#: actions/showgroup.php:137 lib/command.php:212 lib/command.php:260 +#: actions/blockedfromgroup.php:80 actions/blockedfromgroup.php:87 +#: actions/editgroup.php:100 actions/foafgroup.php:44 actions/foafgroup.php:62 +#: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:100 actions/grouplogo.php:102 +#: actions/groupmembers.php:83 actions/groupmembers.php:90 +#: actions/grouprss.php:98 actions/grouprss.php:105 +#: actions/groupunblock.php:86 actions/joingroup.php:82 +#: actions/joingroup.php:93 actions/leavegroup.php:82 +#: actions/leavegroup.php:93 actions/makeadmin.php:86 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:212 +#: lib/command.php:260 msgid "No such group." msgstr "De opgegeven groep bestaat niet." -#: actions/blockedfromgroup.php:90 +#: actions/blockedfromgroup.php:97 #, php-format msgid "%s blocked profiles" msgstr "%s geblokkeerde profielen" -#: actions/blockedfromgroup.php:93 +#: actions/blockedfromgroup.php:100 #, php-format msgid "%1$s blocked profiles, page %2$d" msgstr "%1$s geblokkeerde profielen, pagina %2$d" -#: actions/blockedfromgroup.php:108 +#: actions/blockedfromgroup.php:115 msgid "A list of the users blocked from joining this group." msgstr "Een lijst met voor deze groep geblokkeerde gebruikers." -#: actions/blockedfromgroup.php:281 +#: actions/blockedfromgroup.php:288 msgid "Unblock user from group" msgstr "Deze gebruiker weer toegang geven tot de groep" -#: actions/blockedfromgroup.php:313 lib/unblockform.php:69 +#: actions/blockedfromgroup.php:320 lib/unblockform.php:69 msgid "Unblock" msgstr "Deblokkeer" -#: actions/blockedfromgroup.php:313 lib/unblockform.php:80 +#: actions/blockedfromgroup.php:320 lib/unblockform.php:80 msgid "Unblock this user" msgstr "Deblokkeer deze gebruiker." @@ -951,7 +972,7 @@ msgstr "U bent niet de eigenaar van deze applicatie." #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1197 +#: lib/action.php:1228 msgid "There was a problem with your session token." msgstr "Er is een probleem met uw sessietoken." @@ -977,12 +998,13 @@ msgstr "Deze applicatie niet verwijderen" msgid "Delete this application" msgstr "Deze applicatie verwijderen" +#. TRANS: Client error message #: 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:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 -#: lib/adminpanelaction.php:72 lib/profileformaction.php:63 +#: lib/adminpanelaction.php:73 lib/profileformaction.php:63 #: lib/settingsaction.php:72 msgid "Not logged in." msgstr "Niet aangemeld." @@ -1011,7 +1033,7 @@ msgstr "Weet u zeker dat u deze aankondiging wilt verwijderen?" msgid "Do not delete this notice" msgstr "Deze mededeling niet verwijderen" -#: actions/deletenotice.php:146 lib/noticelist.php:637 +#: actions/deletenotice.php:146 lib/noticelist.php:655 msgid "Delete this notice" msgstr "Deze mededeling verwijderen" @@ -1027,7 +1049,7 @@ msgstr "U kunt alleen lokale gebruikers verwijderen." msgid "Delete user" msgstr "Gebruiker verwijderen" -#: actions/deleteuser.php:135 +#: actions/deleteuser.php:136 msgid "" "Are you sure you want to delete this user? This will clear all data about " "the user from the database, without a backup." @@ -1036,12 +1058,12 @@ msgstr "" "worden alle gegevens van deze gebruiker uit de database verwijderd. Het is " "niet mogelijk ze terug te zetten." -#: actions/deleteuser.php:148 lib/deleteuserform.php:77 +#: actions/deleteuser.php:151 lib/deleteuserform.php:77 msgid "Delete this user" msgstr "Gebruiker verwijderen" #: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 -#: lib/adminpanelaction.php:316 lib/groupnav.php:119 +#: lib/groupnav.php:119 msgid "Design" msgstr "Uiterlijk" @@ -1144,6 +1166,17 @@ msgstr "Standaardontwerp toepassen" msgid "Reset back to default" msgstr "Standaardinstellingen toepassen" +#: actions/designadminpanel.php:586 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/tagother.php:154 actions/useradminpanel.php:294 +#: lib/applicationeditform.php:333 lib/applicationeditform.php:334 +#: lib/designsettings.php:256 lib/groupeditform.php:202 +msgid "Save" +msgstr "Opslaan" + #: actions/designadminpanel.php:587 lib/designsettings.php:257 msgid "Save design" msgstr "Ontwerp opslaan" @@ -1235,29 +1268,29 @@ msgstr "Groep %s bewerken" msgid "You must be logged in to create a group." msgstr "U moet aangemeld zijn om een groep aan te kunnen maken." -#: actions/editgroup.php:103 actions/editgroup.php:168 -#: actions/groupdesignsettings.php:104 actions/grouplogo.php:106 +#: actions/editgroup.php:107 actions/editgroup.php:172 +#: actions/groupdesignsettings.php:107 actions/grouplogo.php:109 msgid "You must be an admin to edit the group." msgstr "U moet beheerder zijn om de groep te kunnen bewerken." -#: actions/editgroup.php:154 +#: actions/editgroup.php:158 msgid "Use this form to edit the group." msgstr "Gebruik dit formulier om de groep te bewerken." -#: actions/editgroup.php:201 actions/newgroup.php:145 +#: actions/editgroup.php:205 actions/newgroup.php:145 #, php-format msgid "description is too long (max %d chars)." msgstr "de beschrijving is te lang (maximaal %d tekens)" -#: actions/editgroup.php:253 +#: actions/editgroup.php:258 msgid "Could not update group." msgstr "Het was niet mogelijk de groep bij te werken." -#: actions/editgroup.php:259 classes/User_group.php:433 +#: actions/editgroup.php:264 classes/User_group.php:478 msgid "Could not create aliases." msgstr "Het was niet mogelijk de aliassen aan te maken." -#: actions/editgroup.php:269 +#: actions/editgroup.php:280 msgid "Options saved." msgstr "De instellingen zijn opgeslagen." @@ -1604,7 +1637,7 @@ msgstr "Deze gebruiker is al de toegang tot de groep ontzegd." msgid "User is not a member of group." msgstr "De gebruiker is geen lid van de groep." -#: actions/groupblock.php:136 actions/groupmembers.php:316 +#: actions/groupblock.php:136 actions/groupmembers.php:323 msgid "Block user from group" msgstr "Gebruiker toegang tot de groep blokkeren" @@ -1641,11 +1674,11 @@ msgstr "Geen ID." msgid "You must be logged in to edit a group." msgstr "U moet aangemeld zijn om een groep te kunnen bewerken." -#: actions/groupdesignsettings.php:141 +#: actions/groupdesignsettings.php:144 msgid "Group design" msgstr "Groepsontwerp" -#: actions/groupdesignsettings.php:152 +#: actions/groupdesignsettings.php:155 msgid "" "Customize the way your group looks with a background image and a colour " "palette of your choice." @@ -1653,20 +1686,20 @@ msgstr "" "De vormgeving van uw groep aanpassen met een achtergrondafbeelding en een " "kleurenpalet van uw keuze." -#: actions/groupdesignsettings.php:263 actions/userdesignsettings.php:186 +#: actions/groupdesignsettings.php:266 actions/userdesignsettings.php:186 #: lib/designsettings.php:391 lib/designsettings.php:413 msgid "Couldn't update your design." msgstr "Het was niet mogelijk uw ontwerp bij te werken." -#: actions/groupdesignsettings.php:308 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231 msgid "Design preferences saved." msgstr "De ontwerpvoorkeuren zijn opgeslagen." -#: actions/grouplogo.php:139 actions/grouplogo.php:192 +#: actions/grouplogo.php:142 actions/grouplogo.php:195 msgid "Group logo" msgstr "Groepslogo" -#: actions/grouplogo.php:150 +#: actions/grouplogo.php:153 #, php-format msgid "" "You can upload a logo image for your group. The maximum file size is %s." @@ -1674,57 +1707,57 @@ msgstr "" "Hier kunt u een logo voor uw groep uploaden. De maximale bestandsgrootte is %" "s." -#: actions/grouplogo.php:178 +#: actions/grouplogo.php:181 msgid "User without matching profile." msgstr "Gebruiker zonder bijbehorend profiel." -#: actions/grouplogo.php:362 +#: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." msgstr "Selecteer een vierkant uit de afbeelding die het logo wordt." -#: actions/grouplogo.php:396 +#: actions/grouplogo.php:399 msgid "Logo updated." msgstr "Logo geactualiseerd." -#: actions/grouplogo.php:398 +#: actions/grouplogo.php:401 msgid "Failed updating logo." msgstr "Het bijwerken van het logo is mislukt." -#: actions/groupmembers.php:93 lib/groupnav.php:92 +#: actions/groupmembers.php:100 lib/groupnav.php:92 #, php-format msgid "%s group members" msgstr "leden van de groep %s" -#: actions/groupmembers.php:96 +#: actions/groupmembers.php:103 #, php-format msgid "%1$s group members, page %2$d" msgstr "%1$s groeps leden, pagina %2$d" -#: actions/groupmembers.php:111 +#: actions/groupmembers.php:118 msgid "A list of the users in this group." msgstr "Ledenlijst van deze groep" -#: actions/groupmembers.php:175 lib/action.php:448 lib/groupnav.php:107 +#: actions/groupmembers.php:182 lib/groupnav.php:107 msgid "Admin" msgstr "Beheerder" -#: actions/groupmembers.php:348 lib/blockform.php:69 +#: actions/groupmembers.php:355 lib/blockform.php:69 msgid "Block" msgstr "Blokkeren" -#: actions/groupmembers.php:443 +#: actions/groupmembers.php:450 msgid "Make user an admin of the group" msgstr "Deze gebruiker groepsbeheerder maken" -#: actions/groupmembers.php:475 +#: actions/groupmembers.php:482 msgid "Make Admin" msgstr "Beheerder maken" -#: actions/groupmembers.php:475 +#: actions/groupmembers.php:482 msgid "Make this user an admin" msgstr "Deze gebruiker beheerder maken" -#: actions/grouprss.php:133 +#: actions/grouprss.php:140 #, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Updates voor leden van %1$s op %2$s." @@ -1992,16 +2025,19 @@ msgstr "Persoonlijk bericht" msgid "Optionally add a personal message to the invitation." msgstr "Persoonlijk bericht bij de uitnodiging (optioneel)." -#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:236 +#. TRANS: Send button for inviting friends +#: actions/invite.php:198 +#, fuzzy +msgctxt "BUTTON" msgid "Send" msgstr "Verzenden" -#: actions/invite.php:226 +#: actions/invite.php:227 #, 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:228 +#: actions/invite.php:229 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -2062,7 +2098,11 @@ msgstr "" msgid "You must be logged in to join a group." msgstr "U moet aangemeld zijn om lid te worden van een groep." -#: actions/joingroup.php:131 +#: actions/joingroup.php:88 actions/leavegroup.php:88 +msgid "No nickname or ID." +msgstr "Geen gebruikersnaam of ID." + +#: actions/joingroup.php:141 #, php-format msgid "%1$s joined group %2$s" msgstr "%1$s is lid geworden van de groep %2$s" @@ -2071,11 +2111,11 @@ msgstr "%1$s is lid geworden van de groep %2$s" msgid "You must be logged in to leave a group." msgstr "U moet aangemeld zijn om een groep te kunnen verlaten." -#: actions/leavegroup.php:90 lib/command.php:265 +#: actions/leavegroup.php:100 lib/command.php:265 msgid "You are not a member of that group." msgstr "U bent geen lid van deze groep" -#: actions/leavegroup.php:127 +#: actions/leavegroup.php:137 #, php-format msgid "%1$s left group %2$s" msgstr "%1$s heeft de groep %2$s verlaten" @@ -2094,8 +2134,7 @@ msgstr "" "Er is een fout opgetreden bij het maken van de instellingen. U hebt " "waarschijnlijk niet de juiste rechten." -#: actions/login.php:188 actions/login.php:241 lib/action.php:466 -#: lib/logingroupnav.php:79 +#: actions/login.php:188 actions/login.php:241 lib/logingroupnav.php:79 msgid "Login" msgstr "Aanmelden" @@ -2353,8 +2392,8 @@ msgstr "inhoudstype " msgid "Only " msgstr "Alleen " -#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 -#: lib/api.php:1068 lib/api.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 +#: lib/apiaction.php:1068 lib/apiaction.php:1177 msgid "Not a supported data format." msgstr "Geen ondersteund gegevensformaat." @@ -2493,7 +2532,7 @@ msgstr "Het was niet mogelijk het nieuwe wachtwoord op te slaan." msgid "Password saved." msgstr "Het wachtwoord is opgeslagen." -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:331 +#: actions/pathsadminpanel.php:59 msgid "Paths" msgstr "Paden" @@ -2526,7 +2565,6 @@ msgid "Invalid SSL server. The maximum length is 255 characters." msgstr "De SSL-server is ongeldig. De maximale lengte is 255 tekens." #: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58 -#: lib/adminpanelaction.php:311 msgid "Site" msgstr "Website" @@ -2701,7 +2739,7 @@ msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1-64 kleine letters of cijfers, geen leestekens of spaties" #: actions/profilesettings.php:111 actions/register.php:448 -#: actions/showgroup.php:247 actions/tagother.php:104 +#: actions/showgroup.php:255 actions/tagother.php:104 #: lib/groupeditform.php:157 lib/userprofile.php:149 msgid "Full name" msgstr "Volledige naam" @@ -2729,7 +2767,7 @@ msgid "Bio" msgstr "Beschrijving" #: actions/profilesettings.php:132 actions/register.php:471 -#: actions/showgroup.php:256 actions/tagother.php:112 +#: actions/showgroup.php:264 actions/tagother.php:112 #: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:164 msgid "Location" @@ -2815,7 +2853,8 @@ msgstr "Het profiel kon niet opgeslagen worden." msgid "Couldn't save tags." msgstr "Het was niet mogelijk de labels op te slaan." -#: actions/profilesettings.php:391 lib/adminpanelaction.php:137 +#. TRANS: Message after successful saving of administrative settings. +#: actions/profilesettings.php:391 lib/adminpanelaction.php:141 msgid "Settings saved." msgstr "De instellingen zijn opgeslagen." @@ -2828,28 +2867,28 @@ msgstr "Meer dan de paginalimiet (%s)" msgid "Could not retrieve public stream." msgstr "Het was niet mogelijk de publieke stream op te halen." -#: actions/public.php:129 +#: actions/public.php:130 #, php-format msgid "Public timeline, page %d" msgstr "Openbare tijdlijn, pagina %d" -#: actions/public.php:131 lib/publicgroupnav.php:79 +#: actions/public.php:132 lib/publicgroupnav.php:79 msgid "Public timeline" msgstr "Openbare tijdlijn" -#: actions/public.php:159 +#: actions/public.php:160 msgid "Public Stream Feed (RSS 1.0)" msgstr "Publieke streamfeed (RSS 1.0)" -#: actions/public.php:163 +#: actions/public.php:164 msgid "Public Stream Feed (RSS 2.0)" msgstr "Publieke streamfeed (RSS 1.0)" -#: actions/public.php:167 +#: actions/public.php:168 msgid "Public Stream Feed (Atom)" msgstr "Publieke streamfeed (Atom)" -#: actions/public.php:187 +#: actions/public.php:188 #, php-format msgid "" "This is the public timeline for %%site.name%% but no one has posted anything " @@ -2858,11 +2897,11 @@ msgstr "" "Dit is de publieke tijdlijn voor %%site.name%%, maar niemand heeft nog " "berichten geplaatst." -#: actions/public.php:190 +#: actions/public.php:191 msgid "Be the first to post!" msgstr "U kunt de eerste zijn die een bericht plaatst!" -#: actions/public.php:194 +#: actions/public.php:195 #, php-format msgid "" "Why not [register an account](%%action.register%%) and be the first to post!" @@ -2870,7 +2909,7 @@ msgstr "" "Waarom [registreert u geen gebruiker](%%action.register%%) en plaatst u als " "eerste een bericht?" -#: actions/public.php:241 +#: actions/public.php:242 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2883,7 +2922,7 @@ msgstr "" "net/). [Registreer nu](%%action.register%%) om mededelingen over uzelf te " "delen met vrienden, familie en collega's! [Meer lezen...](%%doc.help%%)" -#: actions/public.php:246 +#: actions/public.php:247 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -3067,8 +3106,7 @@ msgstr "Sorry. De uitnodigingscode is ongeldig." msgid "Registration successful" msgstr "De registratie is voltooid" -#: actions/register.php:114 actions/register.php:503 lib/action.php:463 -#: lib/logingroupnav.php:85 +#: actions/register.php:114 actions/register.php:503 lib/logingroupnav.php:85 msgid "Register" msgstr "Registreren" @@ -3254,7 +3292,7 @@ msgstr "U kunt uw eigen mededeling niet herhalen." msgid "You already repeated that notice." msgstr "U hent die mededeling al herhaald." -#: actions/repeat.php:114 lib/noticelist.php:656 +#: actions/repeat.php:114 lib/noticelist.php:674 msgid "Repeated" msgstr "Herhaald" @@ -3262,33 +3300,33 @@ msgstr "Herhaald" msgid "Repeated!" msgstr "Herhaald!" -#: actions/replies.php:125 actions/repliesrss.php:68 +#: actions/replies.php:126 actions/repliesrss.php:68 #: lib/personalgroupnav.php:105 #, php-format msgid "Replies to %s" msgstr "Antwoorden aan %s" -#: actions/replies.php:127 +#: actions/replies.php:128 #, php-format msgid "Replies to %1$s, page %2$d" msgstr "Antwoorden aan %1$s, pagina %2$d" -#: actions/replies.php:144 +#: actions/replies.php:145 #, php-format msgid "Replies feed for %s (RSS 1.0)" msgstr "Antwoordenfeed voor %s (RSS 1.0)" -#: actions/replies.php:151 +#: actions/replies.php:152 #, php-format msgid "Replies feed for %s (RSS 2.0)" msgstr "Antwoordenfeed voor %s (RSS 2.0)" -#: actions/replies.php:158 +#: actions/replies.php:159 #, php-format msgid "Replies feed for %s (Atom)" msgstr "Antwoordenfeed voor %s (Atom)" -#: actions/replies.php:198 +#: actions/replies.php:199 #, php-format msgid "" "This is the timeline showing replies to %1$s but %2$s hasn't received a " @@ -3297,7 +3335,7 @@ msgstr "" "Dit is de tijdlijn met de antwoorden aan %1$s, maar %2$s heeft nog geen " "antwoorden ontvangen." -#: actions/replies.php:203 +#: actions/replies.php:204 #, php-format msgid "" "You can engage other users in a conversation, subscribe to more people or " @@ -3306,7 +3344,7 @@ msgstr "" "U kunt gesprekken aanknopen met andere gebruikers, op meer gebruikers " "abonneren of [lid worden van groepen](%%action.groups%%)." -#: actions/replies.php:205 +#: actions/replies.php:206 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) or [post something to his or her " @@ -3333,7 +3371,6 @@ msgid "User is already sandboxed." msgstr "Deze gebruiker is al in de zandbak geplaatst." #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:336 msgid "Sessions" msgstr "Sessies" @@ -3358,7 +3395,7 @@ msgid "Turn on debugging output for sessions." msgstr "Debuguitvoer voor sessies inschakelen." #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/useradminpanel.php:293 +#: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "Websiteinstellingen opslaan" @@ -3388,7 +3425,7 @@ msgstr "Organisatie" msgid "Description" msgstr "Beschrijving" -#: actions/showapplication.php:192 actions/showgroup.php:429 +#: actions/showapplication.php:192 actions/showgroup.php:437 #: lib/profileaction.php:174 msgid "Statistics" msgstr "Statistieken" @@ -3452,22 +3489,22 @@ msgstr "Favoriete mededelingen van %1$s, pagina %2$d" msgid "Could not retrieve favorite notices." msgstr "Het was niet mogelijk de favoriete mededelingen op te halen." -#: actions/showfavorites.php:170 +#: actions/showfavorites.php:171 #, php-format msgid "Feed for favorites of %s (RSS 1.0)" msgstr "Favorietenfeed van %s (RSS 1.0)" -#: actions/showfavorites.php:177 +#: actions/showfavorites.php:178 #, php-format msgid "Feed for favorites of %s (RSS 2.0)" msgstr "Favorietenfeed van %s (RSS 2.0)" -#: actions/showfavorites.php:184 +#: actions/showfavorites.php:185 #, php-format msgid "Feed for favorites of %s (Atom)" msgstr "Favorietenfeed van %s (Atom)" -#: actions/showfavorites.php:205 +#: actions/showfavorites.php:206 msgid "" "You haven't chosen any favorite notices yet. Click the fave button on " "notices you like to bookmark them for later or shed a spotlight on them." @@ -3476,7 +3513,7 @@ msgstr "" "toevoegen\" bij mededelingen die u aanstaan om ze op een lijst te bewaren en " "ze uit te lichten." -#: actions/showfavorites.php:207 +#: actions/showfavorites.php:208 #, php-format msgid "" "%s hasn't added any notices to his favorites yet. Post something interesting " @@ -3486,7 +3523,7 @@ msgstr "" "een interessant bericht, en dan komt u misschien wel op de " "favorietenlijst. :)" -#: actions/showfavorites.php:211 +#: actions/showfavorites.php:212 #, php-format msgid "" "%s hasn't added any notices to his favorites yet. Why not [register an " @@ -3497,7 +3534,7 @@ msgstr "" "action.register%%%%) en dan interessante mededelingen plaatsten die " "misschien aan favorietenlijsten zijn toe te voegen. :)" -#: actions/showfavorites.php:242 +#: actions/showfavorites.php:243 msgid "This is a way to share what you like." msgstr "Dit is de manier om dat te delen wat u wilt." @@ -3511,67 +3548,67 @@ msgstr "%s groep" msgid "%1$s group, page %2$d" msgstr "Groep %1$s, pagina %2$d" -#: actions/showgroup.php:218 +#: actions/showgroup.php:226 msgid "Group profile" msgstr "Groepsprofiel" -#: actions/showgroup.php:263 actions/tagother.php:118 +#: actions/showgroup.php:271 actions/tagother.php:118 #: actions/userauthorization.php:175 lib/userprofile.php:177 msgid "URL" msgstr "URL" -#: actions/showgroup.php:274 actions/tagother.php:128 +#: actions/showgroup.php:282 actions/tagother.php:128 #: actions/userauthorization.php:187 lib/userprofile.php:194 msgid "Note" msgstr "Opmerking" -#: actions/showgroup.php:284 lib/groupeditform.php:184 +#: actions/showgroup.php:292 lib/groupeditform.php:184 msgid "Aliases" msgstr "Aliassen" -#: actions/showgroup.php:293 +#: actions/showgroup.php:301 msgid "Group actions" msgstr "Groepshandelingen" -#: actions/showgroup.php:328 +#: actions/showgroup.php:336 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Mededelingenfeed voor groep %s (RSS 1.0)" -#: actions/showgroup.php:334 +#: actions/showgroup.php:342 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Mededelingenfeed voor groep %s (RSS 2.0)" -#: actions/showgroup.php:340 +#: actions/showgroup.php:348 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "Mededelingenfeed voor groep %s (Atom)" -#: actions/showgroup.php:345 +#: actions/showgroup.php:353 #, php-format msgid "FOAF for %s group" msgstr "Vriend van een vriend voor de groep %s" -#: actions/showgroup.php:381 actions/showgroup.php:438 lib/groupnav.php:91 +#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 msgid "Members" msgstr "Leden" -#: actions/showgroup.php:386 lib/profileaction.php:117 +#: actions/showgroup.php:394 lib/profileaction.php:117 #: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(geen)" -#: actions/showgroup.php:392 +#: actions/showgroup.php:400 msgid "All members" msgstr "Alle leden" -#: actions/showgroup.php:432 +#: actions/showgroup.php:440 msgid "Created" msgstr "Aangemaakt" -#: actions/showgroup.php:448 +#: actions/showgroup.php:456 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3587,7 +3624,7 @@ msgstr "" "lid te worden van deze groep en nog veel meer! [Meer lezen...](%%%%doc.help%%" "%%)" -#: actions/showgroup.php:454 +#: actions/showgroup.php:462 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3600,7 +3637,7 @@ msgstr "" "[StatusNet](http://status.net/). De leden wisselen korte mededelingen uit " "over hun ervaringen en interesses. " -#: actions/showgroup.php:482 +#: actions/showgroup.php:490 msgid "Admins" msgstr "Beheerders" @@ -3981,17 +4018,17 @@ msgstr "Het was niet mogelijk het abonnement op te slaan." #: actions/subscribe.php:77 msgid "This action only accepts POST requests." -msgstr "" +msgstr "Deze handeling accepteert alleen POST-verzoeken." #: actions/subscribe.php:107 -#, fuzzy msgid "No such profile." -msgstr "Het bestand bestaat niet." +msgstr "Het profiel bestaat niet." #: actions/subscribe.php:117 -#, fuzzy msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." -msgstr "U bent niet geabonneerd op dat profiel." +msgstr "" +"U kunt niet abonneren op een OMB 1.0 profiel van een andere omgeving via " +"deze handeling." #: actions/subscribe.php:145 msgid "Subscribed" @@ -4086,22 +4123,22 @@ msgstr "Jabber" msgid "SMS" msgstr "SMS" -#: actions/tag.php:68 +#: actions/tag.php:69 #, php-format msgid "Notices tagged with %1$s, page %2$d" msgstr "Mededelingen met het label %1$s, pagina %2$d" -#: actions/tag.php:86 +#: actions/tag.php:87 #, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Mededelingenfeed voor label %s (RSS 1.0)" -#: actions/tag.php:92 +#: actions/tag.php:93 #, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Mededelingenfeed voor label %s (RSS 2.0)" -#: actions/tag.php:98 +#: actions/tag.php:99 #, php-format msgid "Notice feed for tag %s (Atom)" msgstr "Mededelingenfeed voor label %s (Atom)" @@ -4157,7 +4194,7 @@ msgstr "" msgid "No such tag." msgstr "Onbekend label." -#: actions/twitapitrends.php:87 +#: actions/twitapitrends.php:85 msgid "API method under construction." msgstr "De API-functie is in bewerking." @@ -4189,70 +4226,72 @@ msgstr "" "De licentie \"%1$s\" voor de stream die u wilt volgen is niet compatibel met " "de sitelicentie \"%2$s\"." -#: actions/useradminpanel.php:58 lib/adminpanelaction.php:321 -#: lib/personalgroupnav.php:115 +#. TRANS: User admin panel title +#: actions/useradminpanel.php:59 +#, fuzzy +msgctxt "TITLE" msgid "User" msgstr "Gebruiker" -#: actions/useradminpanel.php:69 +#: actions/useradminpanel.php:70 msgid "User settings for this StatusNet site." msgstr "Gebruikersinstellingen voor deze StatusNet-website." -#: actions/useradminpanel.php:148 +#: actions/useradminpanel.php:149 msgid "Invalid bio limit. Must be numeric." msgstr "Ongeldige beschrijvingslimiet. Het moet een getal zijn." -#: actions/useradminpanel.php:154 +#: actions/useradminpanel.php:155 msgid "Invalid welcome text. Max length is 255 characters." msgstr "Ongeldige welkomsttekst. De maximale lengte is 255 tekens." -#: actions/useradminpanel.php:164 +#: actions/useradminpanel.php:165 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "Ongeldig standaardabonnement: \"%1$s\" is geen gebruiker." -#: actions/useradminpanel.php:217 lib/accountsettingsaction.php:108 +#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Profiel" -#: actions/useradminpanel.php:221 +#: actions/useradminpanel.php:222 msgid "Bio Limit" msgstr "Profiellimiet" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:223 msgid "Maximum length of a profile bio in characters." msgstr "De maximale lengte van de profieltekst in tekens." -#: actions/useradminpanel.php:230 +#: actions/useradminpanel.php:231 msgid "New users" msgstr "Nieuwe gebruikers" -#: actions/useradminpanel.php:234 +#: actions/useradminpanel.php:235 msgid "New user welcome" msgstr "Welkom voor nieuwe gebruikers" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:236 msgid "Welcome text for new users (Max 255 chars)." msgstr "Welkomsttekst voor nieuwe gebruikers. Maximaal 255 tekens." -#: actions/useradminpanel.php:240 +#: actions/useradminpanel.php:241 msgid "Default subscription" msgstr "Standaardabonnement" -#: actions/useradminpanel.php:241 +#: actions/useradminpanel.php:242 msgid "Automatically subscribe new users to this user." msgstr "Nieuwe gebruikers automatisch op deze gebruiker abonneren" -#: actions/useradminpanel.php:250 +#: actions/useradminpanel.php:251 msgid "Invitations" msgstr "Uitnodigingen" -#: actions/useradminpanel.php:255 +#: actions/useradminpanel.php:256 msgid "Invitations enabled" msgstr "Uitnodigingen ingeschakeld" -#: actions/useradminpanel.php:257 +#: actions/useradminpanel.php:258 msgid "Whether to allow users to invite new users." msgstr "Of gebruikers nieuwe gebruikers kunnen uitnodigen." @@ -4450,7 +4489,7 @@ msgstr "" msgid "Plugins" msgstr "Plug-ins" -#: actions/version.php:196 lib/action.php:747 +#: actions/version.php:196 lib/action.php:778 msgid "Version" msgstr "Versie" @@ -4491,6 +4530,10 @@ msgstr "Geen lid van groep." msgid "Group leave failed." msgstr "Groepslidmaatschap opzeggen is mislukt." +#: classes/Local_group.php:41 +msgid "Could not update local group." +msgstr "Het was niet mogelijk de lokale groep bij te werken." + #: classes/Login_token.php:76 #, php-format msgid "Could not create login token for %s" @@ -4508,31 +4551,31 @@ msgstr "Het was niet mogelijk het bericht in te voegen." msgid "Could not update message with new URI." msgstr "Het was niet mogelijk het bericht bij te werken met de nieuwe URI." -#: classes/Notice.php:157 +#: classes/Notice.php:172 #, php-format msgid "DB error inserting hashtag: %s" msgstr "Er is een databasefout opgetreden bij de invoer van de hashtag: %s" -#: classes/Notice.php:222 +#: classes/Notice.php:239 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:226 +#: classes/Notice.php:243 msgid "Problem saving notice. Unknown user." msgstr "" "Er was een probleem bij het opslaan van de mededeling. De gebruiker is " "onbekend." -#: classes/Notice.php:231 +#: classes/Notice.php:248 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" "U hebt te snel te veel mededelingen verstuurd. Kom even op adem en probeer " "het over enige tijd weer." -#: classes/Notice.php:237 +#: classes/Notice.php:254 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." @@ -4540,22 +4583,22 @@ msgstr "" "Te veel duplicaatberichten te snel achter elkaar. Neem een adempauze en " "plaats over een aantal minuten pas weer een bericht." -#: classes/Notice.php:243 +#: classes/Notice.php:260 msgid "You are banned from posting notices on this site." msgstr "" "U bent geblokkeerd en mag geen mededelingen meer achterlaten op deze site." -#: classes/Notice.php:309 classes/Notice.php:335 +#: classes/Notice.php:326 classes/Notice.php:352 msgid "Problem saving notice." msgstr "Er is een probleem opgetreden bij het opslaan van de mededeling." -#: classes/Notice.php:882 +#: classes/Notice.php:911 msgid "Problem saving group inbox." msgstr "" "Er is een probleem opgetreden bij het opslaan van het Postvak IN van de " "groep." -#: classes/Notice.php:1407 +#: classes/Notice.php:1442 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -4584,19 +4627,27 @@ msgstr "Het was niet mogelijk het abonnement op uzelf te verwijderen." msgid "Couldn't delete subscription." msgstr "Kon abonnement niet verwijderen." -#: classes/User.php:372 +#: classes/User.php:373 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "Welkom bij %1$s, @%2$s!" -#: classes/User_group.php:423 +#: classes/User_group.php:462 msgid "Could not create group." msgstr "Het was niet mogelijk de groep aan te maken." -#: classes/User_group.php:452 +#: classes/User_group.php:471 +msgid "Could not set group URI." +msgstr "Het was niet mogelijk de groeps-URI in te stellen." + +#: classes/User_group.php:492 msgid "Could not set group membership." msgstr "Het was niet mogelijk het groepslidmaatschap in te stellen." +#: classes/User_group.php:506 +msgid "Could not save local group info." +msgstr "Het was niet mogelijk de lokale groepsinformatie op te slaan." + #: lib/accountsettingsaction.php:108 msgid "Change your profile settings" msgstr "Uw profielgegevens wijzigen" @@ -4638,120 +4689,190 @@ msgstr "Naamloze pagina" msgid "Primary site navigation" msgstr "Primaire sitenavigatie" +#. TRANS: Tooltip for main menu option "Personal" #: lib/action.php:439 -msgid "Home" -msgstr "Start" - -#: lib/action.php:439 +#, fuzzy +msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Persoonlijk profiel en tijdlijn van vrienden" -#: lib/action.php:441 +#: lib/action.php:442 +#, fuzzy +msgctxt "MENU" +msgid "Personal" +msgstr "Persoonlijk" + +#. TRANS: Tooltip for main menu option "Account" +#: lib/action.php:444 +#, fuzzy +msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Uw e-mailadres, avatar, wachtwoord of profiel wijzigen" -#: lib/action.php:444 -msgid "Connect" -msgstr "Koppelen" +#: lib/action.php:447 +#, fuzzy +msgctxt "MENU" +msgid "Account" +msgstr "Gebruiker" -#: lib/action.php:444 +#. TRANS: Tooltip for main menu option "Services" +#: lib/action.php:450 +#, fuzzy +msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Met diensten verbinden" -#: lib/action.php:448 +#: lib/action.php:453 +#, fuzzy +msgctxt "MENU" +msgid "Connect" +msgstr "Koppelen" + +#. TRANS: Tooltip for menu option "Admin" +#: lib/action.php:457 +#, fuzzy +msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Websiteinstellingen wijzigen" -#: lib/action.php:452 lib/subgroupnav.php:105 -msgid "Invite" -msgstr "Uitnodigen" +#: lib/action.php:460 +#, fuzzy +msgctxt "MENU" +msgid "Admin" +msgstr "Beheerder" -#: lib/action.php:453 lib/subgroupnav.php:106 -#, php-format +#. TRANS: Tooltip for main menu option "Invite" +#: lib/action.php:464 +#, fuzzy, php-format +msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Vrienden en collega's uitnodigen om u te vergezellen op %s" -#: lib/action.php:458 -msgid "Logout" -msgstr "Afmelden" +#: lib/action.php:467 +#, fuzzy +msgctxt "MENU" +msgid "Invite" +msgstr "Uitnodigen" -#: lib/action.php:458 +#. TRANS: Tooltip for main menu option "Logout" +#: lib/action.php:473 +#, fuzzy +msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Van de site afmelden" -#: lib/action.php:463 +#: lib/action.php:476 +#, fuzzy +msgctxt "MENU" +msgid "Logout" +msgstr "Afmelden" + +#. TRANS: Tooltip for main menu option "Register" +#: lib/action.php:481 +#, fuzzy +msgctxt "TOOLTIP" msgid "Create an account" msgstr "Gebruiker aanmaken" -#: lib/action.php:466 +#: lib/action.php:484 +#, fuzzy +msgctxt "MENU" +msgid "Register" +msgstr "Registreren" + +#. TRANS: Tooltip for main menu option "Login" +#: lib/action.php:487 +#, fuzzy +msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Bij de site aanmelden" -#: lib/action.php:469 lib/action.php:732 -msgid "Help" -msgstr "Help" +#: lib/action.php:490 +#, fuzzy +msgctxt "MENU" +msgid "Login" +msgstr "Aanmelden" -#: lib/action.php:469 +#. TRANS: Tooltip for main menu option "Help" +#: lib/action.php:493 +#, fuzzy +msgctxt "TOOLTIP" msgid "Help me!" msgstr "Help me!" -#: lib/action.php:472 lib/searchaction.php:127 -msgid "Search" -msgstr "Zoeken" +#: lib/action.php:496 +#, fuzzy +msgctxt "MENU" +msgid "Help" +msgstr "Help" -#: lib/action.php:472 +#. TRANS: Tooltip for main menu option "Search" +#: lib/action.php:499 +#, fuzzy +msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Naar gebruikers of tekst zoeken" -#: lib/action.php:493 +#: lib/action.php:502 +#, fuzzy +msgctxt "MENU" +msgid "Search" +msgstr "Zoeken" + +#. TRANS: DT element for site notice. String is hidden in default CSS. +#: lib/action.php:524 msgid "Site notice" msgstr "Mededeling van de website" -#: lib/action.php:559 +#: lib/action.php:590 msgid "Local views" msgstr "Lokale weergaven" -#: lib/action.php:625 +#: lib/action.php:656 msgid "Page notice" msgstr "Mededeling van de pagina" -#: lib/action.php:727 +#: lib/action.php:758 msgid "Secondary site navigation" msgstr "Secundaire sitenavigatie" -#: lib/action.php:734 +#: lib/action.php:763 +msgid "Help" +msgstr "Help" + +#: lib/action.php:765 msgid "About" msgstr "Over" -#: lib/action.php:736 +#: lib/action.php:767 msgid "FAQ" msgstr "Veel gestelde vragen" -#: lib/action.php:740 +#: lib/action.php:771 msgid "TOS" msgstr "Gebruiksvoorwaarden" -#: lib/action.php:743 +#: lib/action.php:774 msgid "Privacy" msgstr "Privacy" -#: lib/action.php:745 +#: lib/action.php:776 msgid "Source" msgstr "Broncode" -#: lib/action.php:749 +#: lib/action.php:780 msgid "Contact" msgstr "Contact" -#: lib/action.php:751 +#: lib/action.php:782 msgid "Badge" msgstr "Widget" -#: lib/action.php:779 +#: lib/action.php:810 msgid "StatusNet software license" msgstr "Licentie van de StatusNet-software" -#: lib/action.php:782 +#: lib/action.php:813 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4760,12 +4881,12 @@ msgstr "" "**%%site.name%%** is een microblogdienst van [%%site.broughtby%%](%%site." "broughtbyurl%%). " -#: lib/action.php:784 +#: lib/action.php:815 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** is een microblogdienst. " -#: lib/action.php:786 +#: lib/action.php:817 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4776,111 +4897,164 @@ msgstr "" "versie %s, beschikbaar onder de [GNU Affero General Public License](http://" "www.fsf.org/licensing/licenses/agpl-3.0.html)." -#: lib/action.php:801 +#: lib/action.php:832 msgid "Site content license" msgstr "Licentie voor siteinhoud" -#: lib/action.php:806 +#: lib/action.php:837 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "Inhoud en gegevens van %1$s zijn persoonlijk en vertrouwelijk." -#: lib/action.php:811 +#: lib/action.php:842 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" "Auteursrechten op inhoud en gegevens rusten bij %1$s. Alle rechten " "voorbehouden." -#: lib/action.php:814 +#: lib/action.php:845 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" "Auteursrechten op inhoud en gegevens rusten bij de respectievelijke " "gebruikers. Alle rechten voorbehouden." -#: lib/action.php:827 +#: lib/action.php:858 msgid "All " msgstr "Alle " -#: lib/action.php:833 +#: lib/action.php:864 msgid "license." msgstr "licentie." -#: lib/action.php:1132 +#: lib/action.php:1163 msgid "Pagination" msgstr "Paginering" -#: lib/action.php:1141 +#: lib/action.php:1172 msgid "After" msgstr "Later" -#: lib/action.php:1149 +#: lib/action.php:1180 msgid "Before" msgstr "Eerder" -#: lib/activity.php:382 +#: lib/activity.php:449 msgid "Can't handle remote content yet." -msgstr "" +msgstr "Het is nog niet mogelijk inhoud uit andere omgevingen te verwerken." -#: lib/activity.php:410 +#: lib/activity.php:477 msgid "Can't handle embedded XML content yet." -msgstr "" +msgstr "Het is nog niet mogelijk ingebedde XML-inhoud te verwerken" -#: lib/activity.php:414 +#: lib/activity.php:481 msgid "Can't handle embedded Base64 content yet." -msgstr "" +msgstr "Het is nog niet mogelijk ingebedde Base64-inhoud te verwerken" -#: lib/adminpanelaction.php:96 +#. TRANS: Client error message +#: lib/adminpanelaction.php:98 msgid "You cannot make changes to this site." msgstr "U mag geen wijzigingen maken aan deze website." -#: lib/adminpanelaction.php:107 +#. TRANS: Client error message +#: lib/adminpanelaction.php:110 msgid "Changes to that panel are not allowed." msgstr "Wijzigingen aan dat venster zijn niet toegestaan." -#: lib/adminpanelaction.php:206 +#. TRANS: Client error message +#: lib/adminpanelaction.php:211 msgid "showForm() not implemented." msgstr "showForm() is niet geïmplementeerd." -#: lib/adminpanelaction.php:235 +#. TRANS: Client error message +#: lib/adminpanelaction.php:241 msgid "saveSettings() not implemented." msgstr "saveSettings() is nog niet geïmplementeerd." -#: lib/adminpanelaction.php:258 +#. TRANS: Client error message +#: lib/adminpanelaction.php:265 msgid "Unable to delete design setting." msgstr "Het was niet mogelijk om de ontwerpinstellingen te verwijderen." -#: lib/adminpanelaction.php:312 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:330 msgid "Basic site configuration" msgstr "Basisinstellingen voor de website" -#: lib/adminpanelaction.php:317 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:332 +#, fuzzy +msgctxt "MENU" +msgid "Site" +msgstr "Website" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:338 msgid "Design configuration" msgstr "Instellingen vormgeving" -#: lib/adminpanelaction.php:322 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:340 +#, fuzzy +msgctxt "MENU" +msgid "Design" +msgstr "Uiterlijk" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:346 msgid "User configuration" msgstr "Gebruikersinstellingen" -#: lib/adminpanelaction.php:327 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:348 +#, fuzzy +msgctxt "MENU" +msgid "User" +msgstr "Gebruiker" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:354 msgid "Access configuration" msgstr "Toegangsinstellingen" -#: lib/adminpanelaction.php:332 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:356 +#, fuzzy +msgctxt "MENU" +msgid "Access" +msgstr "Toegang" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:362 msgid "Paths configuration" msgstr "Padinstellingen" -#: lib/adminpanelaction.php:337 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:364 +#, fuzzy +msgctxt "MENU" +msgid "Paths" +msgstr "Paden" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:370 msgid "Sessions configuration" msgstr "Sessieinstellingen" -#: lib/apiauth.php:95 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:372 +#, fuzzy +msgctxt "MENU" +msgid "Sessions" +msgstr "Sessies" + +#: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." msgstr "" "Het API-programma heeft lezen-en-schrijventoegang nodig, maar u hebt alleen " "maar leestoegang." -#: lib/apiauth.php:273 +#: lib/apiauth.php:272 #, php-format msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" msgstr "" @@ -4972,11 +5146,11 @@ msgstr "Mededelingen die deze bijlage bevatten" msgid "Tags for this attachment" msgstr "Labels voor deze bijlage" -#: lib/authenticationplugin.php:218 lib/authenticationplugin.php:223 +#: lib/authenticationplugin.php:220 lib/authenticationplugin.php:225 msgid "Password changing failed" msgstr "Wachtwoord wijzigen is mislukt" -#: lib/authenticationplugin.php:233 +#: lib/authenticationplugin.php:235 msgid "Password changing is not allowed" msgstr "Wachtwoord wijzigen is niet toegestaan" @@ -5182,9 +5356,9 @@ msgstr "" "geldig: %s" #: lib/command.php:692 -#, fuzzy, php-format +#, php-format msgid "Unsubscribed %s" -msgstr "Uw abonnement op %s is opgezegd" +msgstr "Het abonnement van %s is opgeheven" #: lib/command.php:709 msgid "You are not subscribed to anyone." @@ -5217,7 +5391,6 @@ msgstr[0] "U bent lid van deze groep:" msgstr[1] "U bent lid van deze groepen:" #: lib/command.php:769 -#, fuzzy msgid "" "Commands:\n" "on - turn on notifications\n" @@ -5270,6 +5443,7 @@ msgstr "" "d - direct bericht aan gebruiker\n" "get - laatste mededeling van gebruiker opvragen\n" "whois - profielinformatie van gebruiker opvragen\n" +"lose - zorgt ervoor dat de gebruiker u niet meer volgt\n" "fav - laatste mededeling van gebruiker op favorietenlijst " "zetten\n" "fav # - mededelingen met aangegeven ID op favorietenlijst " @@ -5298,20 +5472,20 @@ msgstr "" "tracks - nog niet beschikbaar\n" "tracking - nog niet beschikbaar\n" -#: lib/common.php:136 +#: lib/common.php:148 msgid "No configuration file found. " msgstr "Er is geen instellingenbestand aangetroffen. " -#: lib/common.php:137 +#: lib/common.php:149 msgid "I looked for configuration files in the following places: " msgstr "Er is gezocht naar instellingenbestanden op de volgende plaatsen: " -#: lib/common.php:139 +#: lib/common.php:151 msgid "You may wish to run the installer to fix this." msgstr "" "U kunt proberen de installer uit te voeren om dit probleem op te lossen." -#: lib/common.php:140 +#: lib/common.php:152 msgid "Go to the installer." msgstr "Naar het installatieprogramma gaan." @@ -5501,23 +5675,23 @@ msgstr "Er is een systeemfout opgetreden tijdens het uploaden van het bestand." msgid "Not an image or corrupt file." msgstr "Het bestand is geen afbeelding of het bestand is beschadigd." -#: lib/imagefile.php:105 +#: lib/imagefile.php:109 msgid "Unsupported image file format." msgstr "Niet ondersteund beeldbestandsformaat." -#: lib/imagefile.php:118 +#: lib/imagefile.php:122 msgid "Lost our file." msgstr "Het bestand is zoekgeraakt." -#: lib/imagefile.php:150 lib/imagefile.php:197 +#: lib/imagefile.php:166 lib/imagefile.php:231 msgid "Unknown file type" msgstr "Onbekend bestandstype" -#: lib/imagefile.php:217 +#: lib/imagefile.php:251 msgid "MB" msgstr "MB" -#: lib/imagefile.php:219 +#: lib/imagefile.php:253 msgid "kB" msgstr "kB" @@ -5903,6 +6077,11 @@ msgstr "Aan" msgid "Available characters" msgstr "Beschikbare tekens" +#: lib/messageform.php:178 lib/noticeform.php:236 +msgctxt "Send button for sending notice" +msgid "Send" +msgstr "OK" + #: lib/noticeform.php:160 msgid "Send a notice" msgstr "Mededeling verzenden" @@ -5961,23 +6140,23 @@ msgstr "W" msgid "at" msgstr "op" -#: lib/noticelist.php:558 +#: lib/noticelist.php:566 msgid "in context" msgstr "in context" -#: lib/noticelist.php:583 +#: lib/noticelist.php:601 msgid "Repeated by" msgstr "Herhaald door" -#: lib/noticelist.php:610 +#: lib/noticelist.php:628 msgid "Reply to this notice" msgstr "Op deze mededeling antwoorden" -#: lib/noticelist.php:611 +#: lib/noticelist.php:629 msgid "Reply" msgstr "Antwoorden" -#: lib/noticelist.php:655 +#: lib/noticelist.php:673 msgid "Notice repeated" msgstr "Mededeling herhaald" @@ -6026,6 +6205,10 @@ msgstr "Antwoorden" msgid "Favorites" msgstr "Favorieten" +#: lib/personalgroupnav.php:115 +msgid "User" +msgstr "Gebruiker" + #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "Postvak IN" @@ -6115,7 +6298,7 @@ msgstr "Deze mededeling herhalen?" msgid "Repeat this notice" msgstr "Deze mededeling herhalen" -#: lib/router.php:665 +#: lib/router.php:668 msgid "No single user defined for single-user mode." msgstr "Er is geen gebruiker gedefinieerd voor single-usermodus." @@ -6135,6 +6318,10 @@ msgstr "Site doorzoeken" msgid "Keyword(s)" msgstr "Term(en)" +#: lib/searchaction.php:127 +msgid "Search" +msgstr "Zoeken" + #: lib/searchaction.php:162 msgid "Search help" msgstr "Hulp bij zoeken" @@ -6186,6 +6373,15 @@ msgstr "Gebruikers met een abonnement op %s" msgid "Groups %s is a member of" msgstr "Groepen waar %s lid van is" +#: lib/subgroupnav.php:105 +msgid "Invite" +msgstr "Uitnodigen" + +#: 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/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -6256,47 +6452,47 @@ msgstr "Bericht" msgid "Moderate" msgstr "Modereren" -#: lib/util.php:952 +#: lib/util.php:1013 msgid "a few seconds ago" msgstr "een paar seconden geleden" -#: lib/util.php:954 +#: lib/util.php:1015 msgid "about a minute ago" msgstr "ongeveer een minuut geleden" -#: lib/util.php:956 +#: lib/util.php:1017 #, php-format msgid "about %d minutes ago" msgstr "ongeveer %d minuten geleden" -#: lib/util.php:958 +#: lib/util.php:1019 msgid "about an hour ago" msgstr "ongeveer een uur geleden" -#: lib/util.php:960 +#: lib/util.php:1021 #, php-format msgid "about %d hours ago" msgstr "ongeveer %d uur geleden" -#: lib/util.php:962 +#: lib/util.php:1023 msgid "about a day ago" msgstr "ongeveer een dag geleden" -#: lib/util.php:964 +#: lib/util.php:1025 #, php-format msgid "about %d days ago" msgstr "ongeveer %d dagen geleden" -#: lib/util.php:966 +#: lib/util.php:1027 msgid "about a month ago" msgstr "ongeveer een maand geleden" -#: lib/util.php:968 +#: lib/util.php:1029 #, php-format msgid "about %d months ago" msgstr "ongeveer %d maanden geleden" -#: lib/util.php:970 +#: lib/util.php:1031 msgid "about a year ago" msgstr "ongeveer een jaar geleden" diff --git a/locale/nn/LC_MESSAGES/statusnet.po b/locale/nn/LC_MESSAGES/statusnet.po index 55918d8802..ddd183e870 100644 --- a/locale/nn/LC_MESSAGES/statusnet.po +++ b/locale/nn/LC_MESSAGES/statusnet.po @@ -7,83 +7,89 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-02-24 23:49+0000\n" -"PO-Revision-Date: 2010-02-24 23:51:25+0000\n" +"POT-Creation-Date: 2010-03-02 21:02+0000\n" +"PO-Revision-Date: 2010-03-02 21:03:22+0000\n" "Language-Team: Norwegian Nynorsk\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r62925); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nn\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: actions/accessadminpanel.php:54 lib/adminpanelaction.php:326 +#. TRANS: Page title +#: actions/accessadminpanel.php:55 #, fuzzy msgid "Access" msgstr "Godta" -#: actions/accessadminpanel.php:65 +#. TRANS: Page notice +#: actions/accessadminpanel.php:67 #, fuzzy msgid "Site access settings" msgstr "Avatar-innstillingar" -#: actions/accessadminpanel.php:158 +#. TRANS: Form legend for registration form. +#: actions/accessadminpanel.php:161 #, fuzzy msgid "Registration" msgstr "Registrér" -#: actions/accessadminpanel.php:161 -#, fuzzy -msgid "Private" -msgstr "Personvern" - -#: actions/accessadminpanel.php:163 +#. TRANS: Checkbox instructions for admin setting "Private" +#: actions/accessadminpanel.php:165 msgid "Prohibit anonymous users (not logged in) from viewing site?" msgstr "" +#. TRANS: Checkbox label for prohibiting anonymous users from viewing site. #: actions/accessadminpanel.php:167 #, fuzzy +msgctxt "LABEL" +msgid "Private" +msgstr "Personvern" + +#. TRANS: Checkbox instructions for admin setting "Invite only" +#: actions/accessadminpanel.php:174 +msgid "Make registration invitation only." +msgstr "" + +#. TRANS: Checkbox label for configuring site as invite only. +#: actions/accessadminpanel.php:176 +#, fuzzy msgid "Invite only" msgstr "Invitér" -#: actions/accessadminpanel.php:169 -msgid "Make registration invitation only." +#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations) +#: actions/accessadminpanel.php:183 +msgid "Disable new registrations." msgstr "" -#: actions/accessadminpanel.php:173 +#. TRANS: Checkbox label for disabling new user registrations. +#: actions/accessadminpanel.php:185 #, fuzzy msgid "Closed" msgstr "Blokkér" -#: actions/accessadminpanel.php:175 -msgid "Disable new registrations." -msgstr "" - -#: actions/accessadminpanel.php:189 actions/designadminpanel.php:586 -#: actions/emailsettings.php:195 actions/imsettings.php:163 -#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 -#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 -#: actions/siteadminpanel.php:336 actions/smssettings.php:181 -#: actions/subscriptions.php:208 actions/tagother.php:154 -#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 -#: lib/applicationeditform.php:334 lib/designsettings.php:256 -#: lib/groupeditform.php:202 -msgid "Save" -msgstr "Lagra" - -#: actions/accessadminpanel.php:189 +#. TRANS: Title / tooltip for button to save access settings in site admin panel +#: actions/accessadminpanel.php:202 #, fuzzy msgid "Save access settings" msgstr "Avatar-innstillingar" -#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 -#: actions/showfavorites.php:137 actions/tag.php:51 +#: actions/accessadminpanel.php:203 +#, fuzzy +msgctxt "BUTTON" +msgid "Save" +msgstr "Lagra" + +#. TRANS: Server error when page not found (404) +#: actions/all.php:64 actions/public.php:98 actions/replies.php:93 +#: actions/showfavorites.php:138 actions/tag.php:52 #, fuzzy msgid "No such page" msgstr "Dette emneord finst ikkje." -#: actions/all.php:74 actions/allrss.php:68 +#: actions/all.php:75 actions/allrss.php:68 #: actions/apiaccountupdatedeliverydevice.php:113 #: actions/apiaccountupdateprofile.php:105 #: actions/apiaccountupdateprofilebackgroundimage.php:116 @@ -97,72 +103,82 @@ msgstr "Dette emneord finst ikkje." #: actions/apitimelinehome.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/otp.php:76 -#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154 -#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 -#: actions/showfavorites.php:105 actions/userbyid.php:74 -#: actions/usergroups.php:91 actions/userrss.php:38 actions/xrds.php:71 -#: lib/command.php:163 lib/command.php:302 lib/command.php:355 -#: lib/command.php:401 lib/command.php:462 lib/command.php:518 -#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 +#: actions/hcard.php:67 actions/microsummary.php:62 actions/newmessage.php:116 +#: actions/otp.php:76 actions/remotesubscribe.php:145 +#: actions/remotesubscribe.php:154 actions/replies.php:73 +#: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/xrds.php:71 lib/command.php:163 lib/command.php:302 +#: lib/command.php:355 lib/command.php:401 lib/command.php:462 +#: lib/command.php:518 lib/galleryaction.php:59 lib/mailbox.php:82 +#: lib/profileaction.php:77 msgid "No such user." msgstr "Brukaren finst ikkje." -#: actions/all.php:84 +#. TRANS: Page title. %1$s is user nickname, %2$d is page number +#: actions/all.php:86 #, fuzzy, php-format msgid "%1$s and friends, page %2$d" msgstr "%s med vener, side %d" -#: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 +#. TRANS: Page title. %1$s is user nickname +#. TRANS: H1 text. %1$s is user nickname +#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" msgstr "%s med vener" -#: actions/all.php:99 +#. TRANS: %1$s is user nickname +#: actions/all.php:103 #, fuzzy, php-format msgid "Feed for friends of %s (RSS 1.0)" msgstr "Straum for vener av %s" -#: actions/all.php:107 +#. TRANS: %1$s is user nickname +#: actions/all.php:112 #, fuzzy, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "Straum for vener av %s" -#: actions/all.php:115 +#. TRANS: %1$s is user nickname +#: actions/all.php:121 #, fuzzy, php-format msgid "Feed for friends of %s (Atom)" msgstr "Straum for vener av %s" -#: actions/all.php:127 +#. TRANS: %1$s is user nickname +#: actions/all.php:134 #, php-format msgid "" "This is the timeline for %s and friends but no one has posted anything yet." msgstr "" -#: actions/all.php:132 +#: actions/all.php:139 #, php-format msgid "" "Try subscribing to more people, [join a group](%%action.groups%%) or post " "something yourself." msgstr "" -#: actions/all.php:134 +#. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@" +#: actions/all.php:142 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) from his profile or [post something to " "his or her attention](%%%%action.newnotice%%%%?status_textarea=%3$s)." msgstr "" -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211 +#: actions/all.php:145 actions/replies.php:210 actions/showstream.php:211 #, 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/all.php:165 +#. TRANS: H1 text +#: actions/all.php:174 #, fuzzy msgid "You and friends" msgstr "%s med vener" @@ -181,20 +197,20 @@ msgstr "Oppdateringar frå %1$s og vener på %2$s!" #: actions/apiaccountverifycredentials.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:128 actions/apigroupcreate.php:136 +#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: actions/apigroupleave.php:141 actions/apigrouplist.php:132 #: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 #: actions/apigroupshow.php:115 actions/apihelptest.php:88 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 -#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184 +#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 #: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:207 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 #, fuzzy msgid "API method not found." msgstr "Fann ikkje API-metode." @@ -228,8 +244,9 @@ msgstr "Kan ikkje oppdatera brukar." #: actions/apiaccountupdateprofilebackgroundimage.php:194 #: actions/apiaccountupdateprofilecolors.php:185 #: 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 +#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 +#: 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." @@ -254,7 +271,7 @@ msgstr "" #: actions/apiaccountupdateprofilebackgroundimage.php:146 #: actions/apiaccountupdateprofilecolors.php:164 #: actions/apiaccountupdateprofilecolors.php:174 -#: actions/groupdesignsettings.php:287 actions/groupdesignsettings.php:297 +#: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300 #: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 #: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 #, fuzzy @@ -373,68 +390,68 @@ msgstr "Kan ikkje hente offentleg straum." msgid "Could not find target user." msgstr "Kan ikkje finna einkvan status." -#: actions/apigroupcreate.php:164 actions/editgroup.php:182 +#: actions/apigroupcreate.php:166 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:215 #: 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/apigroupcreate.php:173 actions/editgroup.php:186 +#: actions/apigroupcreate.php:175 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:238 #: actions/register.php:208 msgid "Nickname already in use. Try another one." msgstr "Kallenamnet er allereie i bruk. Prøv eit anna." -#: actions/apigroupcreate.php:180 actions/editgroup.php:189 +#: actions/apigroupcreate.php:182 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:218 #: actions/register.php:210 msgid "Not a valid nickname." msgstr "Ikkje eit gyldig brukarnamn." -#: actions/apigroupcreate.php:196 actions/editapplication.php:215 -#: actions/editgroup.php:195 actions/newapplication.php:203 +#: actions/apigroupcreate.php:198 actions/editapplication.php:215 +#: actions/editgroup.php:199 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:217 msgid "Homepage is not a valid URL." msgstr "Heimesida er ikkje ei gyldig internettadresse." -#: actions/apigroupcreate.php:205 actions/editgroup.php:198 +#: actions/apigroupcreate.php:207 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:225 #: 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:213 actions/editapplication.php:190 +#: actions/apigroupcreate.php:215 actions/editapplication.php:190 #: actions/newapplication.php:172 #, fuzzy, php-format msgid "Description is too long (max %d chars)." msgstr "skildringa er for lang (maks 140 teikn)." -#: actions/apigroupcreate.php:224 actions/editgroup.php:204 +#: actions/apigroupcreate.php:226 actions/editgroup.php:208 #: actions/newgroup.php:148 actions/profilesettings.php:232 #: actions/register.php:227 msgid "Location is too long (max 255 chars)." msgstr "Plassering er for lang (maksimalt 255 teikn)." -#: actions/apigroupcreate.php:243 actions/editgroup.php:215 +#: actions/apigroupcreate.php:245 actions/editgroup.php:219 #: actions/newgroup.php:159 #, php-format msgid "Too many aliases! Maximum %d." msgstr "" -#: actions/apigroupcreate.php:264 actions/editgroup.php:224 +#: actions/apigroupcreate.php:266 actions/editgroup.php:228 #: actions/newgroup.php:168 #, fuzzy, php-format msgid "Invalid alias: \"%s\"" msgstr "Ugyldig merkelapp: %s" -#: actions/apigroupcreate.php:273 actions/editgroup.php:228 +#: actions/apigroupcreate.php:275 actions/editgroup.php:232 #: 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:286 actions/editgroup.php:234 +#: actions/apigroupcreate.php:288 actions/editgroup.php:238 #: actions/newgroup.php:178 msgid "Alias can't be the same as nickname." msgstr "" @@ -446,16 +463,16 @@ msgstr "" msgid "Group not found!" msgstr "Fann ikkje API-metode." -#: actions/apigroupjoin.php:110 actions/joingroup.php:90 +#: actions/apigroupjoin.php:110 actions/joingroup.php:100 #, fuzzy msgid "You are already a member of that group." msgstr "Du er allereie medlem av den gruppa" -#: actions/apigroupjoin.php:119 actions/joingroup.php:95 lib/command.php:221 +#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:221 msgid "You have been blocked from that group by the admin." msgstr "" -#: actions/apigroupjoin.php:138 actions/joingroup.php:124 +#: actions/apigroupjoin.php:138 actions/joingroup.php:134 #, fuzzy, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Kunne ikkje melde brukaren %s inn i gruppa %s" @@ -465,7 +482,7 @@ msgstr "Kunne ikkje melde brukaren %s inn i gruppa %s" msgid "You are not a member of this group." msgstr "Du er ikkje medlem av den gruppa." -#: actions/apigroupleave.php:124 actions/leavegroup.php:119 +#: actions/apigroupleave.php:124 actions/leavegroup.php:129 #, fuzzy, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "Kunne ikkje fjerne %s fra %s gruppa " @@ -497,7 +514,7 @@ msgstr "Ugyldig storleik." #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 #: actions/deletenotice.php:157 actions/disfavor.php:74 #: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54 -#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupblock.php:66 actions/grouplogo.php:312 #: actions/groupunblock.php:66 actions/imsettings.php:206 #: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 @@ -541,7 +558,7 @@ msgstr "" #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:103 actions/editapplication.php:139 -#: actions/emailsettings.php:256 actions/grouplogo.php:319 +#: actions/emailsettings.php:256 actions/grouplogo.php:322 #: actions/imsettings.php:220 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 #: actions/smssettings.php:248 lib/designsettings.php:304 @@ -564,13 +581,13 @@ msgid "" "give access to your %4$s account to third parties you trust." msgstr "" -#: actions/apioauthauthorize.php:310 lib/action.php:441 +#: actions/apioauthauthorize.php:310 msgid "Account" msgstr "Konto" #: actions/apioauthauthorize.php:313 actions/login.php:230 #: actions/profilesettings.php:106 actions/register.php:424 -#: actions/showgroup.php:236 actions/tagother.php:94 +#: actions/showgroup.php:244 actions/tagother.php:94 #: actions/userauthorization.php:145 lib/groupeditform.php:152 #: lib/userprofile.php:131 msgid "Nickname" @@ -657,12 +674,12 @@ msgid "%1$s updates favorited by %2$s / %2$s." msgstr "%s oppdateringar favorisert av %s / %s." #: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:131 actions/userrss.php:90 +#: actions/grouprss.php:138 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "%s tidsline" -#: actions/apitimelinegroup.php:114 actions/apitimelineuser.php:126 +#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 #: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" @@ -698,7 +715,7 @@ msgstr "Svar til %s" msgid "Repeats of %s" msgstr "Svar til %s" -#: actions/apitimelinetag.php:102 actions/tag.php:66 +#: actions/apitimelinetag.php:102 actions/tag.php:67 #, php-format msgid "Notices tagged with %s" msgstr "Notisar merka med %s" @@ -720,8 +737,7 @@ msgstr "Slikt dokument finst ikkje." #: actions/avatarbynickname.php:59 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/leavegroup.php:76 -#: actions/showgroup.php:121 +#: actions/grouprss.php:91 actions/showgroup.php:121 msgid "No nickname." msgstr "Ingen kallenamn." @@ -733,7 +749,7 @@ msgstr "Ingen storleik." msgid "Invalid size." msgstr "Ugyldig storleik." -#: actions/avatarsettings.php:67 actions/showgroup.php:221 +#: actions/avatarsettings.php:67 actions/showgroup.php:229 #: lib/accountsettingsaction.php:112 msgid "Avatar" msgstr "Brukarbilete" @@ -750,30 +766,30 @@ msgid "User without matching profile" msgstr "Kan ikkje finne brukar" #: actions/avatarsettings.php:119 actions/avatarsettings.php:197 -#: actions/grouplogo.php:251 +#: actions/grouplogo.php:254 msgid "Avatar settings" msgstr "Avatar-innstillingar" #: actions/avatarsettings.php:127 actions/avatarsettings.php:205 -#: actions/grouplogo.php:199 actions/grouplogo.php:259 +#: actions/grouplogo.php:202 actions/grouplogo.php:262 msgid "Original" msgstr "Original" #: actions/avatarsettings.php:142 actions/avatarsettings.php:217 -#: actions/grouplogo.php:210 actions/grouplogo.php:271 +#: actions/grouplogo.php:213 actions/grouplogo.php:274 msgid "Preview" msgstr "Forhandsvis" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:637 +#: lib/deleteuserform.php:66 lib/noticelist.php:655 msgid "Delete" msgstr "Slett" -#: actions/avatarsettings.php:166 actions/grouplogo.php:233 +#: actions/avatarsettings.php:166 actions/grouplogo.php:236 msgid "Upload" msgstr "Last opp" -#: actions/avatarsettings.php:231 actions/grouplogo.php:286 +#: actions/avatarsettings.php:231 actions/grouplogo.php:289 msgid "Crop" msgstr "Skaler" @@ -781,7 +797,7 @@ msgstr "Skaler" msgid "Pick a square area of the image to be your avatar" msgstr "Velg eit utvalg av bildet som vil blir din avatar." -#: actions/avatarsettings.php:343 actions/grouplogo.php:377 +#: actions/avatarsettings.php:343 actions/grouplogo.php:380 msgid "Lost our file data." msgstr "Fant ikkje igjen fil data." @@ -815,23 +831,23 @@ msgid "" msgstr "" #: actions/block.php:143 actions/deleteapplication.php:153 -#: actions/deletenotice.php:145 actions/deleteuser.php:147 +#: actions/deletenotice.php:145 actions/deleteuser.php:150 #: actions/groupblock.php:178 msgid "No" msgstr "Nei" -#: actions/block.php:143 actions/deleteuser.php:147 +#: actions/block.php:143 actions/deleteuser.php:150 #, fuzzy msgid "Do not block this user" msgstr "Lås opp brukaren" #: actions/block.php:144 actions/deleteapplication.php:158 -#: actions/deletenotice.php:146 actions/deleteuser.php:148 +#: actions/deletenotice.php:146 actions/deleteuser.php:151 #: actions/groupblock.php:179 lib/repeatform.php:132 msgid "Yes" msgstr "Jau" -#: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:355 lib/blockform.php:80 msgid "Block this user" msgstr "Blokkér denne brukaren" @@ -839,41 +855,45 @@ msgstr "Blokkér denne brukaren" msgid "Failed to save block information." msgstr "Lagring av informasjon feila." -#: actions/blockedfromgroup.php:80 actions/editgroup.php:96 -#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/groupblock.php:86 -#: actions/groupbyid.php:83 actions/groupdesignsettings.php:97 -#: actions/grouplogo.php:99 actions/groupmembers.php:83 -#: actions/grouprss.php:98 actions/groupunblock.php:86 -#: actions/joingroup.php:83 actions/leavegroup.php:83 actions/makeadmin.php:86 -#: actions/showgroup.php:137 lib/command.php:212 lib/command.php:260 +#: actions/blockedfromgroup.php:80 actions/blockedfromgroup.php:87 +#: actions/editgroup.php:100 actions/foafgroup.php:44 actions/foafgroup.php:62 +#: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:100 actions/grouplogo.php:102 +#: actions/groupmembers.php:83 actions/groupmembers.php:90 +#: actions/grouprss.php:98 actions/grouprss.php:105 +#: actions/groupunblock.php:86 actions/joingroup.php:82 +#: actions/joingroup.php:93 actions/leavegroup.php:82 +#: actions/leavegroup.php:93 actions/makeadmin.php:86 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:212 +#: lib/command.php:260 msgid "No such group." msgstr "Denne gruppa finst ikkje." -#: actions/blockedfromgroup.php:90 +#: actions/blockedfromgroup.php:97 #, fuzzy, php-format msgid "%s blocked profiles" msgstr "Brukarprofil" -#: actions/blockedfromgroup.php:93 +#: actions/blockedfromgroup.php:100 #, fuzzy, php-format msgid "%1$s blocked profiles, page %2$d" msgstr "%s med vener, side %d" -#: actions/blockedfromgroup.php:108 +#: actions/blockedfromgroup.php:115 #, fuzzy msgid "A list of the users blocked from joining this group." msgstr "Ei liste over brukarane i denne gruppa." -#: actions/blockedfromgroup.php:281 +#: actions/blockedfromgroup.php:288 #, fuzzy msgid "Unblock user from group" msgstr "De-blokkering av brukar feila." -#: actions/blockedfromgroup.php:313 lib/unblockform.php:69 +#: actions/blockedfromgroup.php:320 lib/unblockform.php:69 msgid "Unblock" msgstr "Lås opp" -#: actions/blockedfromgroup.php:313 lib/unblockform.php:80 +#: actions/blockedfromgroup.php:320 lib/unblockform.php:80 msgid "Unblock this user" msgstr "Lås opp brukaren" @@ -954,7 +974,7 @@ msgstr "Du er ikkje medlem av den gruppa." #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1197 +#: lib/action.php:1228 msgid "There was a problem with your session token." msgstr "Det var eit problem med sesjons billetten din." @@ -980,12 +1000,13 @@ msgstr "Kan ikkje sletta notisen." msgid "Delete this application" msgstr "Slett denne notisen" +#. TRANS: Client error message #: 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:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 -#: lib/adminpanelaction.php:72 lib/profileformaction.php:63 +#: lib/adminpanelaction.php:73 lib/profileformaction.php:63 #: lib/settingsaction.php:72 msgid "Not logged in." msgstr "Ikkje logga inn" @@ -1016,7 +1037,7 @@ msgstr "Sikker på at du vil sletta notisen?" msgid "Do not delete this notice" msgstr "Kan ikkje sletta notisen." -#: actions/deletenotice.php:146 lib/noticelist.php:637 +#: actions/deletenotice.php:146 lib/noticelist.php:655 msgid "Delete this notice" msgstr "Slett denne notisen" @@ -1035,19 +1056,19 @@ msgstr "Du kan ikkje sletta statusen til ein annan brukar." msgid "Delete user" msgstr "Slett" -#: actions/deleteuser.php:135 +#: actions/deleteuser.php:136 msgid "" "Are you sure you want to delete this user? This will clear all data about " "the user from the database, without a backup." msgstr "" -#: actions/deleteuser.php:148 lib/deleteuserform.php:77 +#: actions/deleteuser.php:151 lib/deleteuserform.php:77 #, fuzzy msgid "Delete this user" msgstr "Slett denne notisen" #: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 -#: lib/adminpanelaction.php:316 lib/groupnav.php:119 +#: lib/groupnav.php:119 msgid "Design" msgstr "" @@ -1158,6 +1179,17 @@ msgstr "" msgid "Reset back to default" msgstr "" +#: actions/designadminpanel.php:586 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/tagother.php:154 actions/useradminpanel.php:294 +#: lib/applicationeditform.php:333 lib/applicationeditform.php:334 +#: lib/designsettings.php:256 lib/groupeditform.php:202 +msgid "Save" +msgstr "Lagra" + #: actions/designadminpanel.php:587 lib/designsettings.php:257 msgid "Save design" msgstr "" @@ -1260,31 +1292,31 @@ msgstr "Rediger %s gruppa" msgid "You must be logged in to create a group." msgstr "Du må være logga inn for å lage ei gruppe." -#: actions/editgroup.php:103 actions/editgroup.php:168 -#: actions/groupdesignsettings.php:104 actions/grouplogo.php:106 +#: actions/editgroup.php:107 actions/editgroup.php:172 +#: actions/groupdesignsettings.php:107 actions/grouplogo.php:109 #, fuzzy msgid "You must be an admin to edit the group." msgstr "Du må være administrator for å redigere gruppa" -#: actions/editgroup.php:154 +#: actions/editgroup.php:158 msgid "Use this form to edit the group." msgstr "Bruk dette skjemaet for å redigere gruppa" -#: actions/editgroup.php:201 actions/newgroup.php:145 +#: actions/editgroup.php:205 actions/newgroup.php:145 #, fuzzy, php-format msgid "description is too long (max %d chars)." msgstr "skildringa er for lang (maks 140 teikn)." -#: actions/editgroup.php:253 +#: actions/editgroup.php:258 msgid "Could not update group." msgstr "Kann ikkje oppdatera gruppa." -#: actions/editgroup.php:259 classes/User_group.php:433 +#: actions/editgroup.php:264 classes/User_group.php:478 #, fuzzy msgid "Could not create aliases." msgstr "Kunne ikkje lagre favoritt." -#: actions/editgroup.php:269 +#: actions/editgroup.php:280 msgid "Options saved." msgstr "Lagra innstillingar." @@ -1634,7 +1666,7 @@ msgstr "Brukar har blokkert deg." msgid "User is not a member of group." msgstr "Du er ikkje medlem av den gruppa." -#: actions/groupblock.php:136 actions/groupmembers.php:316 +#: actions/groupblock.php:136 actions/groupmembers.php:323 #, fuzzy msgid "Block user from group" msgstr "Blokker brukaren" @@ -1671,93 +1703,93 @@ msgstr "Ingen ID" msgid "You must be logged in to edit a group." msgstr "Du må være logga inn for å lage ei gruppe." -#: actions/groupdesignsettings.php:141 +#: actions/groupdesignsettings.php:144 #, fuzzy msgid "Group design" msgstr "Grupper" -#: actions/groupdesignsettings.php:152 +#: actions/groupdesignsettings.php:155 msgid "" "Customize the way your group looks with a background image and a colour " "palette of your choice." msgstr "" -#: actions/groupdesignsettings.php:263 actions/userdesignsettings.php:186 +#: actions/groupdesignsettings.php:266 actions/userdesignsettings.php:186 #: lib/designsettings.php:391 lib/designsettings.php:413 #, fuzzy msgid "Couldn't update your design." msgstr "Kan ikkje oppdatera brukar." -#: actions/groupdesignsettings.php:308 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231 #, fuzzy msgid "Design preferences saved." msgstr "Synkroniserings innstillingar blei lagra." -#: actions/grouplogo.php:139 actions/grouplogo.php:192 +#: actions/grouplogo.php:142 actions/grouplogo.php:195 msgid "Group logo" msgstr "Logo åt gruppa" -#: actions/grouplogo.php:150 +#: actions/grouplogo.php:153 #, 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:178 +#: actions/grouplogo.php:181 #, fuzzy msgid "User without matching profile." msgstr "Kan ikkje finne brukar" -#: actions/grouplogo.php:362 +#: actions/grouplogo.php:365 #, 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/grouplogo.php:396 +#: actions/grouplogo.php:399 msgid "Logo updated." msgstr "Logo oppdatert." -#: actions/grouplogo.php:398 +#: actions/grouplogo.php:401 msgid "Failed updating logo." msgstr "Feil ved oppdatering av logo." -#: actions/groupmembers.php:93 lib/groupnav.php:92 +#: actions/groupmembers.php:100 lib/groupnav.php:92 #, php-format msgid "%s group members" msgstr "%s medlemmar i gruppa" -#: actions/groupmembers.php:96 +#: actions/groupmembers.php:103 #, fuzzy, php-format msgid "%1$s group members, page %2$d" msgstr "%s medlemmar i gruppa, side %d" -#: actions/groupmembers.php:111 +#: actions/groupmembers.php:118 msgid "A list of the users in this group." msgstr "Ei liste over brukarane i denne gruppa." -#: actions/groupmembers.php:175 lib/action.php:448 lib/groupnav.php:107 +#: actions/groupmembers.php:182 lib/groupnav.php:107 msgid "Admin" msgstr "Administrator" -#: actions/groupmembers.php:348 lib/blockform.php:69 +#: actions/groupmembers.php:355 lib/blockform.php:69 msgid "Block" msgstr "Blokkér" -#: actions/groupmembers.php:443 +#: actions/groupmembers.php:450 #, fuzzy msgid "Make user an admin of the group" msgstr "Du må være administrator for å redigere gruppa" -#: actions/groupmembers.php:475 +#: actions/groupmembers.php:482 #, fuzzy msgid "Make Admin" msgstr "Administrator" -#: actions/groupmembers.php:475 +#: actions/groupmembers.php:482 msgid "Make this user an admin" msgstr "" -#: actions/grouprss.php:133 +#: actions/grouprss.php:140 #, fuzzy, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Oppdateringar frå %1$s på %2$s!" @@ -2013,16 +2045,19 @@ msgstr "Personleg melding" msgid "Optionally add a personal message to the invitation." msgstr "Eventuelt legg til ei personleg melding til invitasjonen." -#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:236 +#. TRANS: Send button for inviting friends +#: actions/invite.php:198 +#, fuzzy +msgctxt "BUTTON" msgid "Send" msgstr "Send" -#: actions/invite.php:226 +#: actions/invite.php:227 #, 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 +#: actions/invite.php:229 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -2078,7 +2113,12 @@ msgstr "" msgid "You must be logged in to join a group." msgstr "Du må være logga inn for å bli med i ei gruppe." -#: actions/joingroup.php:131 +#: actions/joingroup.php:88 actions/leavegroup.php:88 +#, fuzzy +msgid "No nickname or ID." +msgstr "Ingen kallenamn." + +#: actions/joingroup.php:141 #, fuzzy, php-format msgid "%1$s joined group %2$s" msgstr "%s blei medlem av gruppe %s" @@ -2087,11 +2127,11 @@ msgstr "%s blei medlem av gruppe %s" msgid "You must be logged in to leave a group." msgstr "Du må være innlogga for å melde deg ut av ei gruppe." -#: actions/leavegroup.php:90 lib/command.php:265 +#: actions/leavegroup.php:100 lib/command.php:265 msgid "You are not a member of that group." msgstr "Du er ikkje medlem av den gruppa." -#: actions/leavegroup.php:127 +#: actions/leavegroup.php:137 #, fuzzy, php-format msgid "%1$s left group %2$s" msgstr "%s forlot %s gruppa" @@ -2109,8 +2149,7 @@ msgstr "Feil brukarnamn eller passord" msgid "Error setting user. You are probably not authorized." msgstr "Ikkje autorisert." -#: actions/login.php:188 actions/login.php:241 lib/action.php:466 -#: lib/logingroupnav.php:79 +#: actions/login.php:188 actions/login.php:241 lib/logingroupnav.php:79 msgid "Login" msgstr "Logg inn" @@ -2369,8 +2408,8 @@ msgstr "Kopla til" msgid "Only " msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 -#: lib/api.php:1068 lib/api.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 +#: lib/apiaction.php:1068 lib/apiaction.php:1177 msgid "Not a supported data format." msgstr "Ikkje eit støtta dataformat." @@ -2516,7 +2555,7 @@ msgstr "Klarar ikkje lagra nytt passord." msgid "Password saved." msgstr "Lagra passord." -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:331 +#: actions/pathsadminpanel.php:59 msgid "Paths" msgstr "" @@ -2549,7 +2588,6 @@ msgid "Invalid SSL server. The maximum length is 255 characters." msgstr "" #: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58 -#: lib/adminpanelaction.php:311 #, fuzzy msgid "Site" msgstr "Invitér" @@ -2734,7 +2772,7 @@ msgstr "" "1-64 små bokstavar eller tal, ingen punktum (og liknande) eller mellomrom" #: actions/profilesettings.php:111 actions/register.php:448 -#: actions/showgroup.php:247 actions/tagother.php:104 +#: actions/showgroup.php:255 actions/tagother.php:104 #: lib/groupeditform.php:157 lib/userprofile.php:149 msgid "Full name" msgstr "Fullt namn" @@ -2763,7 +2801,7 @@ msgid "Bio" msgstr "Om meg" #: actions/profilesettings.php:132 actions/register.php:471 -#: actions/showgroup.php:256 actions/tagother.php:112 +#: actions/showgroup.php:264 actions/tagother.php:112 #: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:164 msgid "Location" @@ -2847,7 +2885,8 @@ msgstr "Kan ikkje lagra profil." msgid "Couldn't save tags." msgstr "Kan ikkje lagra merkelapp." -#: actions/profilesettings.php:391 lib/adminpanelaction.php:137 +#. TRANS: Message after successful saving of administrative settings. +#: actions/profilesettings.php:391 lib/adminpanelaction.php:141 msgid "Settings saved." msgstr "Lagra innstillingar." @@ -2860,48 +2899,48 @@ msgstr "" msgid "Could not retrieve public stream." msgstr "Kan ikkje hente offentleg straum." -#: actions/public.php:129 +#: actions/public.php:130 #, php-format msgid "Public timeline, page %d" msgstr "Offentleg tidsline, side %d" -#: actions/public.php:131 lib/publicgroupnav.php:79 +#: actions/public.php:132 lib/publicgroupnav.php:79 msgid "Public timeline" msgstr "Offentleg tidsline" -#: actions/public.php:159 +#: actions/public.php:160 #, fuzzy msgid "Public Stream Feed (RSS 1.0)" msgstr "Offentleg straum" -#: actions/public.php:163 +#: actions/public.php:164 #, fuzzy msgid "Public Stream Feed (RSS 2.0)" msgstr "Offentleg straum" -#: actions/public.php:167 +#: actions/public.php:168 #, fuzzy msgid "Public Stream Feed (Atom)" msgstr "Offentleg straum" -#: actions/public.php:187 +#: actions/public.php:188 #, php-format msgid "" "This is the public timeline for %%site.name%% but no one has posted anything " "yet." msgstr "" -#: actions/public.php:190 +#: actions/public.php:191 msgid "Be the first to post!" msgstr "" -#: actions/public.php:194 +#: actions/public.php:195 #, php-format msgid "" "Why not [register an account](%%action.register%%) and be the first to post!" msgstr "" -#: actions/public.php:241 +#: actions/public.php:242 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2910,7 +2949,7 @@ msgid "" "friends, family, and colleagues! ([Read more](%%doc.help%%))" msgstr "" -#: actions/public.php:246 +#: actions/public.php:247 #, fuzzy, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -3084,8 +3123,7 @@ msgstr "Feil med stadfestingskode." msgid "Registration successful" msgstr "Registreringa gikk bra" -#: actions/register.php:114 actions/register.php:503 lib/action.php:463 -#: lib/logingroupnav.php:85 +#: actions/register.php:114 actions/register.php:503 lib/logingroupnav.php:85 msgid "Register" msgstr "Registrér" @@ -3277,7 +3315,7 @@ msgstr "Du kan ikkje registrera deg om du ikkje godtek vilkåra i lisensen." msgid "You already repeated that notice." msgstr "Du har allereie blokkert denne brukaren." -#: actions/repeat.php:114 lib/noticelist.php:656 +#: actions/repeat.php:114 lib/noticelist.php:674 #, fuzzy msgid "Repeated" msgstr "Lag" @@ -3287,47 +3325,47 @@ msgstr "Lag" msgid "Repeated!" msgstr "Lag" -#: actions/replies.php:125 actions/repliesrss.php:68 +#: actions/replies.php:126 actions/repliesrss.php:68 #: lib/personalgroupnav.php:105 #, php-format msgid "Replies to %s" msgstr "Svar til %s" -#: actions/replies.php:127 +#: actions/replies.php:128 #, fuzzy, php-format msgid "Replies to %1$s, page %2$d" msgstr "Melding til %1$s på %2$s" -#: actions/replies.php:144 +#: actions/replies.php:145 #, fuzzy, php-format msgid "Replies feed for %s (RSS 1.0)" msgstr "Notisstraum for %s" -#: actions/replies.php:151 +#: actions/replies.php:152 #, fuzzy, php-format msgid "Replies feed for %s (RSS 2.0)" msgstr "Notisstraum for %s" -#: actions/replies.php:158 +#: actions/replies.php:159 #, php-format msgid "Replies feed for %s (Atom)" msgstr "Notisstraum for %s" -#: actions/replies.php:198 +#: actions/replies.php:199 #, php-format msgid "" "This is the timeline showing replies to %1$s but %2$s hasn't received a " "notice to his attention yet." msgstr "" -#: actions/replies.php:203 +#: actions/replies.php:204 #, php-format msgid "" "You can engage other users in a conversation, subscribe to more people or " "[join groups](%%action.groups%%)." msgstr "" -#: actions/replies.php:205 +#: actions/replies.php:206 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) or [post something to his or her " @@ -3355,7 +3393,6 @@ msgid "User is already sandboxed." msgstr "Brukar har blokkert deg." #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:336 msgid "Sessions" msgstr "" @@ -3380,7 +3417,7 @@ msgid "Turn on debugging output for sessions." msgstr "" #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/useradminpanel.php:293 +#: actions/useradminpanel.php:294 #, fuzzy msgid "Save site settings" msgstr "Avatar-innstillingar" @@ -3415,7 +3452,7 @@ msgstr "Paginering" msgid "Description" msgstr "Beskriving" -#: actions/showapplication.php:192 actions/showgroup.php:429 +#: actions/showapplication.php:192 actions/showgroup.php:437 #: lib/profileaction.php:174 msgid "Statistics" msgstr "Statistikk" @@ -3477,35 +3514,35 @@ msgstr "%s's favoritt meldingar" msgid "Could not retrieve favorite notices." msgstr "Kunne ikkje hente fram favorittane." -#: actions/showfavorites.php:170 +#: actions/showfavorites.php:171 #, php-format msgid "Feed for favorites of %s (RSS 1.0)" msgstr "Straum for vener av %s" -#: actions/showfavorites.php:177 +#: actions/showfavorites.php:178 #, php-format msgid "Feed for favorites of %s (RSS 2.0)" msgstr "Straum for vener av %s" -#: actions/showfavorites.php:184 +#: actions/showfavorites.php:185 #, php-format msgid "Feed for favorites of %s (Atom)" msgstr "Straum for vener av %s" -#: actions/showfavorites.php:205 +#: actions/showfavorites.php:206 msgid "" "You haven't chosen any favorite notices yet. Click the fave button on " "notices you like to bookmark them for later or shed a spotlight on them." msgstr "" -#: actions/showfavorites.php:207 +#: actions/showfavorites.php:208 #, 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:211 +#: actions/showfavorites.php:212 #, php-format msgid "" "%s hasn't added any notices to his favorites yet. Why not [register an " @@ -3513,7 +3550,7 @@ msgid "" "would add to their favorites :)" msgstr "" -#: actions/showfavorites.php:242 +#: actions/showfavorites.php:243 msgid "This is a way to share what you like." msgstr "" @@ -3527,68 +3564,68 @@ msgstr "%s gruppe" msgid "%1$s group, page %2$d" msgstr "%s medlemmar i gruppa, side %d" -#: actions/showgroup.php:218 +#: actions/showgroup.php:226 msgid "Group profile" msgstr "Gruppe profil" -#: actions/showgroup.php:263 actions/tagother.php:118 +#: actions/showgroup.php:271 actions/tagother.php:118 #: actions/userauthorization.php:175 lib/userprofile.php:177 msgid "URL" msgstr "URL" -#: actions/showgroup.php:274 actions/tagother.php:128 +#: actions/showgroup.php:282 actions/tagother.php:128 #: actions/userauthorization.php:187 lib/userprofile.php:194 msgid "Note" msgstr "Merknad" -#: actions/showgroup.php:284 lib/groupeditform.php:184 +#: actions/showgroup.php:292 lib/groupeditform.php:184 msgid "Aliases" msgstr "" -#: actions/showgroup.php:293 +#: actions/showgroup.php:301 msgid "Group actions" msgstr "Gruppe handlingar" -#: actions/showgroup.php:328 +#: actions/showgroup.php:336 #, fuzzy, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Notisstraum for %s gruppa" -#: actions/showgroup.php:334 +#: actions/showgroup.php:342 #, fuzzy, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Notisstraum for %s gruppa" -#: actions/showgroup.php:340 +#: actions/showgroup.php:348 #, fuzzy, php-format msgid "Notice feed for %s group (Atom)" msgstr "Notisstraum for %s gruppa" -#: actions/showgroup.php:345 +#: actions/showgroup.php:353 #, php-format msgid "FOAF for %s group" msgstr "Utboks for %s" -#: actions/showgroup.php:381 actions/showgroup.php:438 lib/groupnav.php:91 +#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 msgid "Members" msgstr "Medlemmar" -#: actions/showgroup.php:386 lib/profileaction.php:117 +#: actions/showgroup.php:394 lib/profileaction.php:117 #: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(Ingen)" -#: actions/showgroup.php:392 +#: actions/showgroup.php:400 msgid "All members" msgstr "Alle medlemmar" -#: actions/showgroup.php:432 +#: actions/showgroup.php:440 #, fuzzy msgid "Created" msgstr "Lag" -#: actions/showgroup.php:448 +#: actions/showgroup.php:456 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3598,7 +3635,7 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showgroup.php:454 +#: actions/showgroup.php:462 #, fuzzy, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3609,7 +3646,7 @@ msgstr "" "**%s** er ei brukargruppe på %%%%site.name%%%%, ei [mikroblogging](http://en." "wikipedia.org/wiki/Micro-blogging)-teneste" -#: actions/showgroup.php:482 +#: actions/showgroup.php:490 #, fuzzy msgid "Admins" msgstr "Administrator" @@ -4078,22 +4115,22 @@ msgstr "Jabber" msgid "SMS" msgstr "SMS" -#: actions/tag.php:68 +#: actions/tag.php:69 #, fuzzy, php-format msgid "Notices tagged with %1$s, page %2$d" msgstr "Brukarar sjølv-merka med %s, side %d" -#: actions/tag.php:86 +#: actions/tag.php:87 #, fuzzy, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Notisstraum for %s" -#: actions/tag.php:92 +#: actions/tag.php:93 #, fuzzy, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Notisstraum for %s" -#: actions/tag.php:98 +#: actions/tag.php:99 #, fuzzy, php-format msgid "Notice feed for tag %s (Atom)" msgstr "Notisstraum for %s" @@ -4150,7 +4187,7 @@ msgstr "" msgid "No such tag." msgstr "Dette emneord finst ikkje." -#: actions/twitapitrends.php:87 +#: actions/twitapitrends.php:85 msgid "API method under construction." msgstr "API-metoden er ikkje ferdig enno." @@ -4183,76 +4220,78 @@ msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" -#: actions/useradminpanel.php:58 lib/adminpanelaction.php:321 -#: lib/personalgroupnav.php:115 +#. TRANS: User admin panel title +#: actions/useradminpanel.php:59 +#, fuzzy +msgctxt "TITLE" msgid "User" msgstr "Brukar" -#: actions/useradminpanel.php:69 +#: actions/useradminpanel.php:70 msgid "User settings for this StatusNet site." msgstr "" -#: actions/useradminpanel.php:148 +#: actions/useradminpanel.php:149 msgid "Invalid bio limit. Must be numeric." msgstr "" -#: actions/useradminpanel.php:154 +#: actions/useradminpanel.php:155 msgid "Invalid welcome text. Max length is 255 characters." msgstr "" -#: actions/useradminpanel.php:164 +#: actions/useradminpanel.php:165 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" -#: actions/useradminpanel.php:217 lib/accountsettingsaction.php:108 +#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Profil" -#: actions/useradminpanel.php:221 +#: actions/useradminpanel.php:222 msgid "Bio Limit" msgstr "" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:223 msgid "Maximum length of a profile bio in characters." msgstr "" -#: actions/useradminpanel.php:230 +#: actions/useradminpanel.php:231 #, fuzzy msgid "New users" msgstr "Invitér nye brukarar" -#: actions/useradminpanel.php:234 +#: actions/useradminpanel.php:235 msgid "New user welcome" msgstr "" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:236 msgid "Welcome text for new users (Max 255 chars)." msgstr "" -#: actions/useradminpanel.php:240 +#: actions/useradminpanel.php:241 #, fuzzy msgid "Default subscription" msgstr "Alle tingingar" -#: actions/useradminpanel.php:241 +#: actions/useradminpanel.php:242 #, fuzzy msgid "Automatically subscribe new users to this user." msgstr "" "Automatisk ting notisane til dei som tingar mine (best for ikkje-menneskje)" -#: actions/useradminpanel.php:250 +#: actions/useradminpanel.php:251 #, fuzzy msgid "Invitations" msgstr "Invitasjon(er) sendt" -#: actions/useradminpanel.php:255 +#: actions/useradminpanel.php:256 #, fuzzy msgid "Invitations enabled" msgstr "Invitasjon(er) sendt" -#: actions/useradminpanel.php:257 +#: actions/useradminpanel.php:258 msgid "Whether to allow users to invite new users." msgstr "" @@ -4439,7 +4478,7 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:196 lib/action.php:747 +#: actions/version.php:196 lib/action.php:778 #, fuzzy msgid "Version" msgstr "Personleg" @@ -4480,6 +4519,11 @@ msgstr "Kann ikkje oppdatera gruppa." msgid "Group leave failed." msgstr "Gruppe profil" +#: classes/Local_group.php:41 +#, fuzzy +msgid "Could not update local group." +msgstr "Kann ikkje oppdatera gruppa." + #: classes/Login_token.php:76 #, fuzzy, php-format msgid "Could not create login token for %s" @@ -4498,27 +4542,27 @@ msgstr "Kunne ikkje lagre melding." msgid "Could not update message with new URI." msgstr "Kunne ikkje oppdatere melding med ny URI." -#: classes/Notice.php:157 +#: classes/Notice.php:172 #, php-format msgid "DB error inserting hashtag: %s" msgstr "databasefeil ved innsetjing av skigardmerkelapp (#merkelapp): %s" -#: classes/Notice.php:222 +#: classes/Notice.php:239 #, fuzzy msgid "Problem saving notice. Too long." msgstr "Eit problem oppstod ved lagring av notis." -#: classes/Notice.php:226 +#: classes/Notice.php:243 msgid "Problem saving notice. Unknown user." msgstr "Feil ved lagring av notis. Ukjend brukar." -#: classes/Notice.php:231 +#: classes/Notice.php:248 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." -#: classes/Notice.php:237 +#: classes/Notice.php:254 #, fuzzy msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " @@ -4526,20 +4570,20 @@ msgid "" msgstr "" "For mange notisar for raskt; tek ei pause, og prøv igjen om eit par minutt." -#: classes/Notice.php:243 +#: classes/Notice.php:260 msgid "You are banned from posting notices on this site." msgstr "Du kan ikkje lengre legge inn notisar på denne sida." -#: classes/Notice.php:309 classes/Notice.php:335 +#: classes/Notice.php:326 classes/Notice.php:352 msgid "Problem saving notice." msgstr "Eit problem oppstod ved lagring av notis." -#: classes/Notice.php:882 +#: classes/Notice.php:911 #, fuzzy msgid "Problem saving group inbox." msgstr "Eit problem oppstod ved lagring av notis." -#: classes/Notice.php:1407 +#: classes/Notice.php:1442 #, fuzzy, php-format msgid "RT @%1$s %2$s" msgstr "%1$s (%2$s)" @@ -4571,19 +4615,29 @@ msgstr "Kan ikkje sletta tinging." msgid "Couldn't delete subscription." msgstr "Kan ikkje sletta tinging." -#: classes/User.php:372 +#: classes/User.php:373 #, fuzzy, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "Melding til %1$s på %2$s" -#: classes/User_group.php:423 +#: classes/User_group.php:462 msgid "Could not create group." msgstr "Kunne ikkje laga gruppa." -#: classes/User_group.php:452 +#: classes/User_group.php:471 +#, fuzzy +msgid "Could not set group URI." +msgstr "Kunne ikkje bli med i gruppa." + +#: classes/User_group.php:492 msgid "Could not set group membership." msgstr "Kunne ikkje bli med i gruppa." +#: classes/User_group.php:506 +#, fuzzy +msgid "Could not save local group info." +msgstr "Kunne ikkje lagra abonnement." + #: lib/accountsettingsaction.php:108 msgid "Change your profile settings" msgstr "Endra profilinnstillingane dine" @@ -4626,123 +4680,191 @@ msgstr "Ingen tittel" msgid "Primary site navigation" msgstr "Navigasjon for hovudsida" +#. TRANS: Tooltip for main menu option "Personal" #: lib/action.php:439 -msgid "Home" -msgstr "Heim" - -#: lib/action.php:439 +#, fuzzy +msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Personleg profil og oversyn over vener" -#: lib/action.php:441 +#: lib/action.php:442 +#, fuzzy +msgctxt "MENU" +msgid "Personal" +msgstr "Personleg" + +#. TRANS: Tooltip for main menu option "Account" +#: lib/action.php:444 +#, fuzzy +msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Endra e-posten, avataren, passordet eller profilen" -#: lib/action.php:444 -msgid "Connect" -msgstr "Kopla til" - -#: lib/action.php:444 +#: lib/action.php:447 #, fuzzy +msgctxt "MENU" +msgid "Account" +msgstr "Konto" + +#. TRANS: Tooltip for main menu option "Services" +#: lib/action.php:450 +#, fuzzy +msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Klarte ikkje å omdirigera til tenaren: %s" -#: lib/action.php:448 +#: lib/action.php:453 #, fuzzy +msgctxt "MENU" +msgid "Connect" +msgstr "Kopla til" + +#. TRANS: Tooltip for menu option "Admin" +#: lib/action.php:457 +#, fuzzy +msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Navigasjon for hovudsida" -#: lib/action.php:452 lib/subgroupnav.php:105 -msgid "Invite" -msgstr "Invitér" +#: lib/action.php:460 +#, fuzzy +msgctxt "MENU" +msgid "Admin" +msgstr "Administrator" -#: lib/action.php:453 lib/subgroupnav.php:106 -#, php-format +#. TRANS: Tooltip for main menu option "Invite" +#: lib/action.php:464 +#, fuzzy, php-format +msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Inviter vennar og kollega til å bli med deg på %s" -#: lib/action.php:458 -msgid "Logout" -msgstr "Logg ut" +#: lib/action.php:467 +#, fuzzy +msgctxt "MENU" +msgid "Invite" +msgstr "Invitér" -#: lib/action.php:458 +#. TRANS: Tooltip for main menu option "Logout" +#: lib/action.php:473 +#, fuzzy +msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Logg ut or sida" -#: lib/action.php:463 +#: lib/action.php:476 +#, fuzzy +msgctxt "MENU" +msgid "Logout" +msgstr "Logg ut" + +#. TRANS: Tooltip for main menu option "Register" +#: lib/action.php:481 +#, fuzzy +msgctxt "TOOLTIP" msgid "Create an account" msgstr "Opprett ny konto" -#: lib/action.php:466 +#: lib/action.php:484 +#, fuzzy +msgctxt "MENU" +msgid "Register" +msgstr "Registrér" + +#. TRANS: Tooltip for main menu option "Login" +#: lib/action.php:487 +#, fuzzy +msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Logg inn or sida" -#: lib/action.php:469 lib/action.php:732 -msgid "Help" -msgstr "Hjelp" +#: lib/action.php:490 +#, fuzzy +msgctxt "MENU" +msgid "Login" +msgstr "Logg inn" -#: lib/action.php:469 +#. TRANS: Tooltip for main menu option "Help" +#: lib/action.php:493 +#, fuzzy +msgctxt "TOOLTIP" msgid "Help me!" msgstr "Hjelp meg!" -#: lib/action.php:472 lib/searchaction.php:127 -msgid "Search" -msgstr "Søk" +#: lib/action.php:496 +#, fuzzy +msgctxt "MENU" +msgid "Help" +msgstr "Hjelp" -#: lib/action.php:472 +#. TRANS: Tooltip for main menu option "Search" +#: lib/action.php:499 +#, fuzzy +msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Søk etter folk eller innhald" -#: lib/action.php:493 +#: lib/action.php:502 +#, fuzzy +msgctxt "MENU" +msgid "Search" +msgstr "Søk" + +#. TRANS: DT element for site notice. String is hidden in default CSS. +#: lib/action.php:524 msgid "Site notice" msgstr "Statusmelding" -#: lib/action.php:559 +#: lib/action.php:590 msgid "Local views" msgstr "Lokale syningar" -#: lib/action.php:625 +#: lib/action.php:656 msgid "Page notice" msgstr "Sidenotis" -#: lib/action.php:727 +#: lib/action.php:758 msgid "Secondary site navigation" msgstr "Andrenivås side navigasjon" -#: lib/action.php:734 +#: lib/action.php:763 +msgid "Help" +msgstr "Hjelp" + +#: lib/action.php:765 msgid "About" msgstr "Om" -#: lib/action.php:736 +#: lib/action.php:767 msgid "FAQ" msgstr "OSS" -#: lib/action.php:740 +#: lib/action.php:771 msgid "TOS" msgstr "" -#: lib/action.php:743 +#: lib/action.php:774 msgid "Privacy" msgstr "Personvern" -#: lib/action.php:745 +#: lib/action.php:776 msgid "Source" msgstr "Kjeldekode" -#: lib/action.php:749 +#: lib/action.php:780 msgid "Contact" msgstr "Kontakt" -#: lib/action.php:751 +#: lib/action.php:782 #, fuzzy msgid "Badge" msgstr "Dult" -#: lib/action.php:779 +#: lib/action.php:810 msgid "StatusNet software license" msgstr "StatusNets programvarelisens" -#: lib/action.php:782 +#: lib/action.php:813 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4751,12 +4873,12 @@ msgstr "" "**%%site.name%%** er ei mikrobloggingteneste av [%%site.broughtby%%](%%site." "broughtbyurl%%). " -#: lib/action.php:784 +#: lib/action.php:815 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** er ei mikrobloggingteneste. " -#: lib/action.php:786 +#: lib/action.php:817 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4767,117 +4889,169 @@ msgstr "" "%s, tilgjengeleg under [GNU Affero General Public License](http://www.fsf." "org/licensing/licenses/agpl-3.0.html)." -#: lib/action.php:801 +#: lib/action.php:832 #, fuzzy msgid "Site content license" msgstr "StatusNets programvarelisens" -#: lib/action.php:806 +#: lib/action.php:837 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:811 +#: lib/action.php:842 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:814 +#: lib/action.php:845 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" -#: lib/action.php:827 +#: lib/action.php:858 msgid "All " msgstr "Alle" -#: lib/action.php:833 +#: lib/action.php:864 msgid "license." msgstr "lisens." -#: lib/action.php:1132 +#: lib/action.php:1163 msgid "Pagination" msgstr "Paginering" -#: lib/action.php:1141 +#: lib/action.php:1172 msgid "After" msgstr "« Etter" -#: lib/action.php:1149 +#: lib/action.php:1180 msgid "Before" msgstr "Før »" -#: lib/activity.php:382 +#: lib/activity.php:449 msgid "Can't handle remote content yet." msgstr "" -#: lib/activity.php:410 +#: lib/activity.php:477 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activity.php:414 +#: lib/activity.php:481 msgid "Can't handle embedded Base64 content yet." msgstr "" -#: lib/adminpanelaction.php:96 +#. TRANS: Client error message +#: lib/adminpanelaction.php:98 #, fuzzy msgid "You cannot make changes to this site." msgstr "Du kan ikkje sende melding til denne brukaren." -#: lib/adminpanelaction.php:107 +#. TRANS: Client error message +#: lib/adminpanelaction.php:110 #, fuzzy msgid "Changes to that panel are not allowed." msgstr "Registrering ikkje tillatt." -#: lib/adminpanelaction.php:206 +#. TRANS: Client error message +#: lib/adminpanelaction.php:211 #, fuzzy msgid "showForm() not implemented." msgstr "Kommando ikkje implementert." -#: lib/adminpanelaction.php:235 +#. TRANS: Client error message +#: lib/adminpanelaction.php:241 #, fuzzy msgid "saveSettings() not implemented." msgstr "Kommando ikkje implementert." -#: lib/adminpanelaction.php:258 +#. TRANS: Client error message +#: lib/adminpanelaction.php:265 #, fuzzy msgid "Unable to delete design setting." msgstr "Klarte ikkje å lagra Twitter-innstillingane dine!" -#: lib/adminpanelaction.php:312 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:330 #, fuzzy msgid "Basic site configuration" msgstr "Stadfesting av epostadresse" -#: lib/adminpanelaction.php:317 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:332 +#, fuzzy +msgctxt "MENU" +msgid "Site" +msgstr "Invitér" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:338 #, fuzzy msgid "Design configuration" msgstr "SMS bekreftelse" -#: lib/adminpanelaction.php:322 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:340 +#, fuzzy +msgctxt "MENU" +msgid "Design" +msgstr "Personleg" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:346 #, fuzzy msgid "User configuration" msgstr "SMS bekreftelse" -#: lib/adminpanelaction.php:327 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:348 +#, fuzzy +msgctxt "MENU" +msgid "User" +msgstr "Brukar" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:354 #, fuzzy msgid "Access configuration" msgstr "SMS bekreftelse" -#: lib/adminpanelaction.php:332 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:356 +#, fuzzy +msgctxt "MENU" +msgid "Access" +msgstr "Godta" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:362 #, fuzzy msgid "Paths configuration" msgstr "SMS bekreftelse" -#: lib/adminpanelaction.php:337 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:364 +msgctxt "MENU" +msgid "Paths" +msgstr "" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:370 #, fuzzy msgid "Sessions configuration" msgstr "SMS bekreftelse" -#: lib/apiauth.php:95 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:372 +#, fuzzy +msgctxt "MENU" +msgid "Sessions" +msgstr "Personleg" + +#: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." msgstr "" -#: lib/apiauth.php:273 +#: lib/apiauth.php:272 #, php-format msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" msgstr "" @@ -4973,12 +5147,12 @@ msgstr "" msgid "Tags for this attachment" msgstr "" -#: lib/authenticationplugin.php:218 lib/authenticationplugin.php:223 +#: lib/authenticationplugin.php:220 lib/authenticationplugin.php:225 #, fuzzy msgid "Password changing failed" msgstr "Endra passord" -#: lib/authenticationplugin.php:233 +#: lib/authenticationplugin.php:235 #, fuzzy msgid "Password changing is not allowed" msgstr "Endra passord" @@ -5259,20 +5433,20 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:136 +#: lib/common.php:148 #, fuzzy msgid "No configuration file found. " msgstr "Ingen stadfestingskode." -#: lib/common.php:137 +#: lib/common.php:149 msgid "I looked for configuration files in the following places: " msgstr "" -#: lib/common.php:139 +#: lib/common.php:151 msgid "You may wish to run the installer to fix this." msgstr "" -#: lib/common.php:140 +#: lib/common.php:152 #, fuzzy msgid "Go to the installer." msgstr "Logg inn or sida" @@ -5465,23 +5639,23 @@ msgstr "Systemfeil ved opplasting av fil." msgid "Not an image or corrupt file." msgstr "Korrupt bilete." -#: lib/imagefile.php:105 +#: lib/imagefile.php:109 msgid "Unsupported image file format." msgstr "Støttar ikkje bileteformatet." -#: lib/imagefile.php:118 +#: lib/imagefile.php:122 msgid "Lost our file." msgstr "Mista fila vår." -#: lib/imagefile.php:150 lib/imagefile.php:197 +#: lib/imagefile.php:166 lib/imagefile.php:231 msgid "Unknown file type" msgstr "Ukjend fil type" -#: lib/imagefile.php:217 +#: lib/imagefile.php:251 msgid "MB" msgstr "" -#: lib/imagefile.php:219 +#: lib/imagefile.php:253 msgid "kB" msgstr "" @@ -5791,6 +5965,12 @@ msgstr "Til" msgid "Available characters" msgstr "Tilgjenglege teikn" +#: lib/messageform.php:178 lib/noticeform.php:236 +#, fuzzy +msgctxt "Send button for sending notice" +msgid "Send" +msgstr "Send" + #: lib/noticeform.php:160 msgid "Send a notice" msgstr "Send ei melding" @@ -5850,25 +6030,25 @@ msgstr "" msgid "at" msgstr "" -#: lib/noticelist.php:558 +#: lib/noticelist.php:566 #, fuzzy msgid "in context" msgstr "Ingen innhald." -#: lib/noticelist.php:583 +#: lib/noticelist.php:601 #, fuzzy msgid "Repeated by" msgstr "Lag" -#: lib/noticelist.php:610 +#: lib/noticelist.php:628 msgid "Reply to this notice" msgstr "Svar på denne notisen" -#: lib/noticelist.php:611 +#: lib/noticelist.php:629 msgid "Reply" msgstr "Svar" -#: lib/noticelist.php:655 +#: lib/noticelist.php:673 #, fuzzy msgid "Notice repeated" msgstr "Melding lagra" @@ -5918,6 +6098,10 @@ msgstr "Svar" msgid "Favorites" msgstr "Favorittar" +#: lib/personalgroupnav.php:115 +msgid "User" +msgstr "Brukar" + #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "Innboks" @@ -6012,7 +6196,7 @@ msgstr "Svar på denne notisen" msgid "Repeat this notice" msgstr "Svar på denne notisen" -#: lib/router.php:665 +#: lib/router.php:668 msgid "No single user defined for single-user mode." msgstr "" @@ -6035,6 +6219,10 @@ msgstr "Søk" msgid "Keyword(s)" msgstr "" +#: lib/searchaction.php:127 +msgid "Search" +msgstr "Søk" + #: lib/searchaction.php:162 #, fuzzy msgid "Search help" @@ -6089,6 +6277,15 @@ msgstr "Mennesker som tingar %s" msgid "Groups %s is a member of" msgstr "Grupper %s er medlem av" +#: lib/subgroupnav.php:105 +msgid "Invite" +msgstr "Invitér" + +#: 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/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -6163,47 +6360,47 @@ msgstr "Melding" msgid "Moderate" msgstr "" -#: lib/util.php:952 +#: lib/util.php:1013 msgid "a few seconds ago" msgstr "eit par sekund sidan" -#: lib/util.php:954 +#: lib/util.php:1015 msgid "about a minute ago" msgstr "omtrent eitt minutt sidan" -#: lib/util.php:956 +#: lib/util.php:1017 #, php-format msgid "about %d minutes ago" msgstr "~%d minutt sidan" -#: lib/util.php:958 +#: lib/util.php:1019 msgid "about an hour ago" msgstr "omtrent ein time sidan" -#: lib/util.php:960 +#: lib/util.php:1021 #, php-format msgid "about %d hours ago" msgstr "~%d timar sidan" -#: lib/util.php:962 +#: lib/util.php:1023 msgid "about a day ago" msgstr "omtrent ein dag sidan" -#: lib/util.php:964 +#: lib/util.php:1025 #, php-format msgid "about %d days ago" msgstr "~%d dagar sidan" -#: lib/util.php:966 +#: lib/util.php:1027 msgid "about a month ago" msgstr "omtrent ein månad sidan" -#: lib/util.php:968 +#: lib/util.php:1029 #, php-format msgid "about %d months ago" msgstr "~%d månadar sidan" -#: lib/util.php:970 +#: lib/util.php:1031 msgid "about a year ago" msgstr "omtrent eitt år sidan" diff --git a/locale/pl/LC_MESSAGES/statusnet.po b/locale/pl/LC_MESSAGES/statusnet.po index 79b37a5e4c..a8cef8d36c 100644 --- a/locale/pl/LC_MESSAGES/statusnet.po +++ b/locale/pl/LC_MESSAGES/statusnet.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-02-24 23:49+0000\n" -"PO-Revision-Date: 2010-02-24 23:51:31+0000\n" +"POT-Creation-Date: 2010-03-02 21:02+0000\n" +"PO-Revision-Date: 2010-03-02 21:03:35+0000\n" "Last-Translator: Piotr Drąg \n" "Language-Team: Polish \n" "MIME-Version: 1.0\n" @@ -19,69 +19,76 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2);\n" -"X-Generator: MediaWiki 1.17alpha (r62925); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pl\n" "X-Message-Group: out-statusnet\n" -#: actions/accessadminpanel.php:54 lib/adminpanelaction.php:326 +#. TRANS: Page title +#: actions/accessadminpanel.php:55 msgid "Access" msgstr "Dostęp" -#: actions/accessadminpanel.php:65 +#. TRANS: Page notice +#: actions/accessadminpanel.php:67 msgid "Site access settings" msgstr "Ustawienia dostępu witryny" -#: actions/accessadminpanel.php:158 +#. TRANS: Form legend for registration form. +#: actions/accessadminpanel.php:161 msgid "Registration" msgstr "Rejestracja" -#: actions/accessadminpanel.php:161 -msgid "Private" -msgstr "Prywatna" - -#: actions/accessadminpanel.php:163 +#. TRANS: Checkbox instructions for admin setting "Private" +#: actions/accessadminpanel.php:165 msgid "Prohibit anonymous users (not logged in) from viewing site?" msgstr "Zabronić anonimowym użytkownikom (niezalogowanym) przeglądać witrynę?" +#. TRANS: Checkbox label for prohibiting anonymous users from viewing site. #: actions/accessadminpanel.php:167 -msgid "Invite only" -msgstr "Tylko zaproszeni" +#, fuzzy +msgctxt "LABEL" +msgid "Private" +msgstr "Prywatna" -#: actions/accessadminpanel.php:169 +#. TRANS: Checkbox instructions for admin setting "Invite only" +#: actions/accessadminpanel.php:174 msgid "Make registration invitation only." msgstr "Rejestracja tylko za zaproszeniem." -#: actions/accessadminpanel.php:173 -msgid "Closed" -msgstr "Zamknięte" +#. TRANS: Checkbox label for configuring site as invite only. +#: actions/accessadminpanel.php:176 +msgid "Invite only" +msgstr "Tylko zaproszeni" -#: actions/accessadminpanel.php:175 +#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations) +#: actions/accessadminpanel.php:183 msgid "Disable new registrations." msgstr "Wyłączenie nowych rejestracji." -#: actions/accessadminpanel.php:189 actions/designadminpanel.php:586 -#: actions/emailsettings.php:195 actions/imsettings.php:163 -#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 -#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 -#: actions/siteadminpanel.php:336 actions/smssettings.php:181 -#: actions/subscriptions.php:208 actions/tagother.php:154 -#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 -#: lib/applicationeditform.php:334 lib/designsettings.php:256 -#: lib/groupeditform.php:202 -msgid "Save" -msgstr "Zapisz" +#. TRANS: Checkbox label for disabling new user registrations. +#: actions/accessadminpanel.php:185 +msgid "Closed" +msgstr "Zamknięte" -#: actions/accessadminpanel.php:189 +#. TRANS: Title / tooltip for button to save access settings in site admin panel +#: actions/accessadminpanel.php:202 msgid "Save access settings" msgstr "Zapisz ustawienia dostępu" -#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 -#: actions/showfavorites.php:137 actions/tag.php:51 +#: actions/accessadminpanel.php:203 +#, fuzzy +msgctxt "BUTTON" +msgid "Save" +msgstr "Zapisz" + +#. TRANS: Server error when page not found (404) +#: actions/all.php:64 actions/public.php:98 actions/replies.php:93 +#: actions/showfavorites.php:138 actions/tag.php:52 msgid "No such page" msgstr "Nie ma takiej strony" -#: actions/all.php:74 actions/allrss.php:68 +#: actions/all.php:75 actions/allrss.php:68 #: actions/apiaccountupdatedeliverydevice.php:113 #: actions/apiaccountupdateprofile.php:105 #: actions/apiaccountupdateprofilebackgroundimage.php:116 @@ -95,45 +102,53 @@ msgstr "Nie ma takiej strony" #: actions/apitimelinehome.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/otp.php:76 -#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154 -#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 -#: actions/showfavorites.php:105 actions/userbyid.php:74 -#: actions/usergroups.php:91 actions/userrss.php:38 actions/xrds.php:71 -#: lib/command.php:163 lib/command.php:302 lib/command.php:355 -#: lib/command.php:401 lib/command.php:462 lib/command.php:518 -#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 +#: actions/hcard.php:67 actions/microsummary.php:62 actions/newmessage.php:116 +#: actions/otp.php:76 actions/remotesubscribe.php:145 +#: actions/remotesubscribe.php:154 actions/replies.php:73 +#: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/xrds.php:71 lib/command.php:163 lib/command.php:302 +#: lib/command.php:355 lib/command.php:401 lib/command.php:462 +#: lib/command.php:518 lib/galleryaction.php:59 lib/mailbox.php:82 +#: lib/profileaction.php:77 msgid "No such user." msgstr "Brak takiego użytkownika." -#: actions/all.php:84 +#. TRANS: Page title. %1$s is user nickname, %2$d is page number +#: actions/all.php:86 #, php-format msgid "%1$s and friends, page %2$d" msgstr "%1$s i przyjaciele, strona %2$d" -#: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 +#. TRANS: Page title. %1$s is user nickname +#. TRANS: H1 text. %1$s is user nickname +#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" msgstr "Użytkownik %s i przyjaciele" -#: actions/all.php:99 +#. TRANS: %1$s is user nickname +#: actions/all.php:103 #, php-format msgid "Feed for friends of %s (RSS 1.0)" msgstr "Kanał dla znajomych użytkownika %s (RSS 1.0)" -#: actions/all.php:107 +#. TRANS: %1$s is user nickname +#: actions/all.php:112 #, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "Kanał dla znajomych użytkownika %s (RSS 2.0)" -#: actions/all.php:115 +#. TRANS: %1$s is user nickname +#: actions/all.php:121 #, php-format msgid "Feed for friends of %s (Atom)" msgstr "Kanał dla znajomych użytkownika %s (Atom)" -#: actions/all.php:127 +#. TRANS: %1$s is user nickname +#: actions/all.php:134 #, php-format msgid "" "This is the timeline for %s and friends but no one has posted anything yet." @@ -141,7 +156,7 @@ msgstr "" "To jest oś czasu użytkownika %s i przyjaciół, ale nikt jeszcze nic nie " "wysłał." -#: actions/all.php:132 +#: actions/all.php:139 #, php-format msgid "" "Try subscribing to more people, [join a group](%%action.groups%%) or post " @@ -150,7 +165,8 @@ msgstr "" "Spróbuj subskrybować więcej osób, [dołączyć do grupy](%%action.groups%%) lub " "wysłać coś samemu." -#: actions/all.php:134 +#. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@" +#: actions/all.php:142 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) from his profile or [post something to " @@ -160,7 +176,7 @@ msgstr "" "[wysłać coś wymagającego jego uwagi](%%%%action.newnotice%%%%?" "status_textarea=%3$s)." -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211 +#: actions/all.php:145 actions/replies.php:210 actions/showstream.php:211 #, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " @@ -169,7 +185,8 @@ msgstr "" "Dlaczego nie [zarejestrujesz konta](%%%%action.register%%%%) i wtedy " "szturchniesz użytkownika %s lub wyślesz wpis wymagającego jego uwagi." -#: actions/all.php:165 +#. TRANS: H1 text +#: actions/all.php:174 msgid "You and friends" msgstr "Ty i przyjaciele" @@ -187,20 +204,20 @@ msgstr "Aktualizacje z %1$s i przyjaciół na %2$s." #: actions/apiaccountverifycredentials.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:128 actions/apigroupcreate.php:136 +#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: actions/apigroupleave.php:141 actions/apigrouplist.php:132 #: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 #: actions/apigroupshow.php:115 actions/apihelptest.php:88 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 -#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184 +#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 #: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:207 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 msgid "API method not found." msgstr "Nie odnaleziono metody API." @@ -233,8 +250,9 @@ msgstr "Nie można zaktualizować użytkownika." #: actions/apiaccountupdateprofilebackgroundimage.php:194 #: actions/apiaccountupdateprofilecolors.php:185 #: 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 +#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 +#: 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." @@ -260,7 +278,7 @@ msgstr "" #: actions/apiaccountupdateprofilebackgroundimage.php:146 #: actions/apiaccountupdateprofilecolors.php:164 #: actions/apiaccountupdateprofilecolors.php:174 -#: actions/groupdesignsettings.php:287 actions/groupdesignsettings.php:297 +#: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300 #: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 #: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 msgid "Unable to save your design settings." @@ -373,68 +391,68 @@ msgstr "Nie można określić użytkownika źródłowego." msgid "Could not find target user." msgstr "Nie można odnaleźć użytkownika docelowego." -#: actions/apigroupcreate.php:164 actions/editgroup.php:182 +#: actions/apigroupcreate.php:166 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:215 #: 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/apigroupcreate.php:173 actions/editgroup.php:186 +#: actions/apigroupcreate.php:175 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:238 #: actions/register.php:208 msgid "Nickname already in use. Try another one." msgstr "Pseudonim jest już używany. Spróbuj innego." -#: actions/apigroupcreate.php:180 actions/editgroup.php:189 +#: actions/apigroupcreate.php:182 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:218 #: actions/register.php:210 msgid "Not a valid nickname." msgstr "To nie jest prawidłowy pseudonim." -#: actions/apigroupcreate.php:196 actions/editapplication.php:215 -#: actions/editgroup.php:195 actions/newapplication.php:203 +#: actions/apigroupcreate.php:198 actions/editapplication.php:215 +#: actions/editgroup.php:199 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:217 msgid "Homepage is not a valid URL." msgstr "Strona domowa nie jest prawidłowym adresem URL." -#: actions/apigroupcreate.php:205 actions/editgroup.php:198 +#: actions/apigroupcreate.php:207 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:225 #: 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:213 actions/editapplication.php:190 +#: actions/apigroupcreate.php:215 actions/editapplication.php:190 #: actions/newapplication.php:172 #, php-format msgid "Description is too long (max %d chars)." msgstr "Opis jest za długi (maksymalnie %d znaków)." -#: actions/apigroupcreate.php:224 actions/editgroup.php:204 +#: actions/apigroupcreate.php:226 actions/editgroup.php:208 #: actions/newgroup.php:148 actions/profilesettings.php:232 #: 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/apigroupcreate.php:243 actions/editgroup.php:215 +#: actions/apigroupcreate.php:245 actions/editgroup.php:219 #: actions/newgroup.php:159 #, php-format msgid "Too many aliases! Maximum %d." msgstr "Za dużo aliasów. Maksymalnie %d." -#: actions/apigroupcreate.php:264 actions/editgroup.php:224 +#: actions/apigroupcreate.php:266 actions/editgroup.php:228 #: actions/newgroup.php:168 #, php-format msgid "Invalid alias: \"%s\"" msgstr "Nieprawidłowy alias: \"%s\"" -#: actions/apigroupcreate.php:273 actions/editgroup.php:228 +#: actions/apigroupcreate.php:275 actions/editgroup.php:232 #: 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/apigroupcreate.php:286 actions/editgroup.php:234 +#: actions/apigroupcreate.php:288 actions/editgroup.php:238 #: actions/newgroup.php:178 msgid "Alias can't be the same as nickname." msgstr "Alias nie może być taki sam jak pseudonim." @@ -445,15 +463,15 @@ msgstr "Alias nie może być taki sam jak pseudonim." msgid "Group not found!" msgstr "Nie odnaleziono grupy." -#: actions/apigroupjoin.php:110 actions/joingroup.php:90 +#: actions/apigroupjoin.php:110 actions/joingroup.php:100 msgid "You are already a member of that group." msgstr "Jesteś już członkiem tej grupy." -#: actions/apigroupjoin.php:119 actions/joingroup.php:95 lib/command.php:221 +#: actions/apigroupjoin.php:119 actions/joingroup.php:105 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/apigroupjoin.php:138 actions/joingroup.php:124 +#: actions/apigroupjoin.php:138 actions/joingroup.php:134 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Nie można dołączyć użytkownika %1$s do grupy %2$s." @@ -462,7 +480,7 @@ msgstr "Nie można dołączyć użytkownika %1$s do grupy %2$s." msgid "You are not a member of this group." msgstr "Nie jesteś członkiem tej grupy." -#: actions/apigroupleave.php:124 actions/leavegroup.php:119 +#: actions/apigroupleave.php:124 actions/leavegroup.php:129 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "Nie można usunąć użytkownika %1$s z grupy %2$s." @@ -493,7 +511,7 @@ msgstr "Nieprawidłowy token." #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 #: actions/deletenotice.php:157 actions/disfavor.php:74 #: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54 -#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupblock.php:66 actions/grouplogo.php:312 #: actions/groupunblock.php:66 actions/imsettings.php:206 #: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 @@ -535,7 +553,7 @@ msgstr "Token żądania %s został odrzucony lub unieważniony." #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:103 actions/editapplication.php:139 -#: actions/emailsettings.php:256 actions/grouplogo.php:319 +#: actions/emailsettings.php:256 actions/grouplogo.php:322 #: actions/imsettings.php:220 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 #: actions/smssettings.php:248 lib/designsettings.php:304 @@ -561,13 +579,13 @@ msgstr "" "uzyskać możliwość %3$s danych konta %4$s. Dostęp do konta %4" "$s powinien być udostępniany tylko zaufanym osobom trzecim." -#: actions/apioauthauthorize.php:310 lib/action.php:441 +#: actions/apioauthauthorize.php:310 msgid "Account" msgstr "Konto" #: actions/apioauthauthorize.php:313 actions/login.php:230 #: actions/profilesettings.php:106 actions/register.php:424 -#: actions/showgroup.php:236 actions/tagother.php:94 +#: actions/showgroup.php:244 actions/tagother.php:94 #: actions/userauthorization.php:145 lib/groupeditform.php:152 #: lib/userprofile.php:131 msgid "Nickname" @@ -649,12 +667,12 @@ msgid "%1$s updates favorited by %2$s / %2$s." msgstr "Użytkownik %1$s aktualizuje ulubione według %2$s/%2$s." #: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:131 actions/userrss.php:90 +#: actions/grouprss.php:138 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "Oś czasu użytkownika %s" -#: actions/apitimelinegroup.php:114 actions/apitimelineuser.php:126 +#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 #: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" @@ -690,7 +708,7 @@ msgstr "Powtórzone dla %s" msgid "Repeats of %s" msgstr "Powtórzenia %s" -#: actions/apitimelinetag.php:102 actions/tag.php:66 +#: actions/apitimelinetag.php:102 actions/tag.php:67 #, php-format msgid "Notices tagged with %s" msgstr "Wpisy ze znacznikiem %s" @@ -711,8 +729,7 @@ msgstr "Nie ma takiego załącznika." #: actions/avatarbynickname.php:59 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/leavegroup.php:76 -#: actions/showgroup.php:121 +#: actions/grouprss.php:91 actions/showgroup.php:121 msgid "No nickname." msgstr "Brak pseudonimu." @@ -724,7 +741,7 @@ msgstr "Brak rozmiaru." msgid "Invalid size." msgstr "Nieprawidłowy rozmiar." -#: actions/avatarsettings.php:67 actions/showgroup.php:221 +#: actions/avatarsettings.php:67 actions/showgroup.php:229 #: lib/accountsettingsaction.php:112 msgid "Avatar" msgstr "Awatar" @@ -741,30 +758,30 @@ msgid "User without matching profile" msgstr "Użytkownik bez odpowiadającego profilu" #: actions/avatarsettings.php:119 actions/avatarsettings.php:197 -#: actions/grouplogo.php:251 +#: actions/grouplogo.php:254 msgid "Avatar settings" msgstr "Ustawienia awatara" #: actions/avatarsettings.php:127 actions/avatarsettings.php:205 -#: actions/grouplogo.php:199 actions/grouplogo.php:259 +#: actions/grouplogo.php:202 actions/grouplogo.php:262 msgid "Original" msgstr "Oryginał" #: actions/avatarsettings.php:142 actions/avatarsettings.php:217 -#: actions/grouplogo.php:210 actions/grouplogo.php:271 +#: actions/grouplogo.php:213 actions/grouplogo.php:274 msgid "Preview" msgstr "Podgląd" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:637 +#: lib/deleteuserform.php:66 lib/noticelist.php:655 msgid "Delete" msgstr "Usuń" -#: actions/avatarsettings.php:166 actions/grouplogo.php:233 +#: actions/avatarsettings.php:166 actions/grouplogo.php:236 msgid "Upload" msgstr "Wyślij" -#: actions/avatarsettings.php:231 actions/grouplogo.php:286 +#: actions/avatarsettings.php:231 actions/grouplogo.php:289 msgid "Crop" msgstr "Przytnij" @@ -772,7 +789,7 @@ msgstr "Przytnij" msgid "Pick a square area of the image to be your avatar" msgstr "Wybierz kwadratowy obszar obrazu do awatara" -#: actions/avatarsettings.php:343 actions/grouplogo.php:377 +#: actions/avatarsettings.php:343 actions/grouplogo.php:380 msgid "Lost our file data." msgstr "Utracono dane pliku." @@ -807,22 +824,22 @@ msgstr "" "i nie będziesz powiadamiany o żadnych odpowiedziach @ od niego." #: actions/block.php:143 actions/deleteapplication.php:153 -#: actions/deletenotice.php:145 actions/deleteuser.php:147 +#: actions/deletenotice.php:145 actions/deleteuser.php:150 #: actions/groupblock.php:178 msgid "No" msgstr "Nie" -#: actions/block.php:143 actions/deleteuser.php:147 +#: actions/block.php:143 actions/deleteuser.php:150 msgid "Do not block this user" msgstr "Nie blokuj tego użytkownika" #: actions/block.php:144 actions/deleteapplication.php:158 -#: actions/deletenotice.php:146 actions/deleteuser.php:148 +#: actions/deletenotice.php:146 actions/deleteuser.php:151 #: actions/groupblock.php:179 lib/repeatform.php:132 msgid "Yes" msgstr "Tak" -#: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:355 lib/blockform.php:80 msgid "Block this user" msgstr "Zablokuj tego użytkownika" @@ -830,39 +847,43 @@ msgstr "Zablokuj tego użytkownika" msgid "Failed to save block information." msgstr "Zapisanie informacji o blokadzie nie powiodło się." -#: actions/blockedfromgroup.php:80 actions/editgroup.php:96 -#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/groupblock.php:86 -#: actions/groupbyid.php:83 actions/groupdesignsettings.php:97 -#: actions/grouplogo.php:99 actions/groupmembers.php:83 -#: actions/grouprss.php:98 actions/groupunblock.php:86 -#: actions/joingroup.php:83 actions/leavegroup.php:83 actions/makeadmin.php:86 -#: actions/showgroup.php:137 lib/command.php:212 lib/command.php:260 +#: actions/blockedfromgroup.php:80 actions/blockedfromgroup.php:87 +#: actions/editgroup.php:100 actions/foafgroup.php:44 actions/foafgroup.php:62 +#: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:100 actions/grouplogo.php:102 +#: actions/groupmembers.php:83 actions/groupmembers.php:90 +#: actions/grouprss.php:98 actions/grouprss.php:105 +#: actions/groupunblock.php:86 actions/joingroup.php:82 +#: actions/joingroup.php:93 actions/leavegroup.php:82 +#: actions/leavegroup.php:93 actions/makeadmin.php:86 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:212 +#: lib/command.php:260 msgid "No such group." msgstr "Nie ma takiej grupy." -#: actions/blockedfromgroup.php:90 +#: actions/blockedfromgroup.php:97 #, php-format msgid "%s blocked profiles" msgstr "%s zablokowane profile" -#: actions/blockedfromgroup.php:93 +#: actions/blockedfromgroup.php:100 #, php-format msgid "%1$s blocked profiles, page %2$d" msgstr "%1$s zablokowane profile, strona %2$d" -#: actions/blockedfromgroup.php:108 +#: actions/blockedfromgroup.php:115 msgid "A list of the users blocked from joining this group." msgstr "Lista użytkowników zablokowanych w tej grupie." -#: actions/blockedfromgroup.php:281 +#: actions/blockedfromgroup.php:288 msgid "Unblock user from group" msgstr "Odblokuj użytkownika w tej grupie" -#: actions/blockedfromgroup.php:313 lib/unblockform.php:69 +#: actions/blockedfromgroup.php:320 lib/unblockform.php:69 msgid "Unblock" msgstr "Odblokuj" -#: actions/blockedfromgroup.php:313 lib/unblockform.php:80 +#: actions/blockedfromgroup.php:320 lib/unblockform.php:80 msgid "Unblock this user" msgstr "Odblokuj tego użytkownika" @@ -937,7 +958,7 @@ msgstr "Nie jesteś właścicielem tej aplikacji." #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1197 +#: lib/action.php:1228 msgid "There was a problem with your session token." msgstr "Wystąpił problem z tokenem sesji." @@ -962,12 +983,13 @@ msgstr "Nie usuwaj tej aplikacji" msgid "Delete this application" msgstr "Usuń tę aplikację" +#. TRANS: Client error message #: 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:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 -#: lib/adminpanelaction.php:72 lib/profileformaction.php:63 +#: lib/adminpanelaction.php:73 lib/profileformaction.php:63 #: lib/settingsaction.php:72 msgid "Not logged in." msgstr "Niezalogowany." @@ -996,7 +1018,7 @@ msgstr "Jesteś pewien, że chcesz usunąć ten wpis?" msgid "Do not delete this notice" msgstr "Nie usuwaj tego wpisu" -#: actions/deletenotice.php:146 lib/noticelist.php:637 +#: actions/deletenotice.php:146 lib/noticelist.php:655 msgid "Delete this notice" msgstr "Usuń ten wpis" @@ -1012,7 +1034,7 @@ msgstr "Nie można usuwać lokalnych użytkowników." msgid "Delete user" msgstr "Usuń użytkownika" -#: actions/deleteuser.php:135 +#: actions/deleteuser.php:136 msgid "" "Are you sure you want to delete this user? This will clear all data about " "the user from the database, without a backup." @@ -1020,12 +1042,12 @@ msgstr "" "Na pewno usunąć tego użytkownika? Wyczyści to wszystkie dane o użytkowniku z " "bazy danych, bez utworzenia kopii zapasowej." -#: actions/deleteuser.php:148 lib/deleteuserform.php:77 +#: actions/deleteuser.php:151 lib/deleteuserform.php:77 msgid "Delete this user" msgstr "Usuń tego użytkownika" #: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 -#: lib/adminpanelaction.php:316 lib/groupnav.php:119 +#: lib/groupnav.php:119 msgid "Design" msgstr "Wygląd" @@ -1100,7 +1122,7 @@ msgstr "Zmień kolory" #: actions/designadminpanel.php:510 lib/designsettings.php:191 msgid "Content" -msgstr "Zawartość" +msgstr "Treść" #: actions/designadminpanel.php:523 lib/designsettings.php:204 msgid "Sidebar" @@ -1126,6 +1148,17 @@ msgstr "Przywróć domyślny wygląd" msgid "Reset back to default" msgstr "Przywróć domyślne ustawienia" +#: actions/designadminpanel.php:586 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/tagother.php:154 actions/useradminpanel.php:294 +#: lib/applicationeditform.php:333 lib/applicationeditform.php:334 +#: lib/designsettings.php:256 lib/groupeditform.php:202 +msgid "Save" +msgstr "Zapisz" + #: actions/designadminpanel.php:587 lib/designsettings.php:257 msgid "Save design" msgstr "Zapisz wygląd" @@ -1217,29 +1250,29 @@ msgstr "Zmodyfikuj grupę %s" msgid "You must be logged in to create a group." msgstr "Musisz być zalogowany, aby utworzyć grupę." -#: actions/editgroup.php:103 actions/editgroup.php:168 -#: actions/groupdesignsettings.php:104 actions/grouplogo.php:106 +#: actions/editgroup.php:107 actions/editgroup.php:172 +#: actions/groupdesignsettings.php:107 actions/grouplogo.php:109 msgid "You must be an admin to edit the group." msgstr "Musisz być administratorem, aby zmodyfikować grupę." -#: actions/editgroup.php:154 +#: actions/editgroup.php:158 msgid "Use this form to edit the group." msgstr "Użyj tego formularza, aby zmodyfikować grupę." -#: actions/editgroup.php:201 actions/newgroup.php:145 +#: actions/editgroup.php:205 actions/newgroup.php:145 #, php-format msgid "description is too long (max %d chars)." msgstr "opis jest za długi (maksymalnie %d znaków)." -#: actions/editgroup.php:253 +#: actions/editgroup.php:258 msgid "Could not update group." msgstr "Nie można zaktualizować grupy." -#: actions/editgroup.php:259 classes/User_group.php:433 +#: actions/editgroup.php:264 classes/User_group.php:478 msgid "Could not create aliases." msgstr "Nie można utworzyć aliasów." -#: actions/editgroup.php:269 +#: actions/editgroup.php:280 msgid "Options saved." msgstr "Zapisano opcje." @@ -1580,7 +1613,7 @@ msgstr "Użytkownik został już zablokował w grupie." msgid "User is not a member of group." msgstr "Użytkownik nie jest członkiem grupy." -#: actions/groupblock.php:136 actions/groupmembers.php:316 +#: actions/groupblock.php:136 actions/groupmembers.php:323 msgid "Block user from group" msgstr "Zablokuj użytkownika w grupie" @@ -1615,86 +1648,86 @@ msgstr "Brak identyfikatora." msgid "You must be logged in to edit a group." msgstr "Musisz być zalogowany, aby zmodyfikować grupę." -#: actions/groupdesignsettings.php:141 +#: actions/groupdesignsettings.php:144 msgid "Group design" msgstr "Wygląd grupy" -#: actions/groupdesignsettings.php:152 +#: actions/groupdesignsettings.php:155 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:263 actions/userdesignsettings.php:186 +#: actions/groupdesignsettings.php:266 actions/userdesignsettings.php:186 #: lib/designsettings.php:391 lib/designsettings.php:413 msgid "Couldn't update your design." msgstr "Nie można zaktualizować wyglądu." -#: actions/groupdesignsettings.php:308 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231 msgid "Design preferences saved." msgstr "Zapisano preferencje wyglądu." -#: actions/grouplogo.php:139 actions/grouplogo.php:192 +#: actions/grouplogo.php:142 actions/grouplogo.php:195 msgid "Group logo" msgstr "Logo grupy" -#: actions/grouplogo.php:150 +#: actions/grouplogo.php:153 #, 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/grouplogo.php:178 +#: actions/grouplogo.php:181 msgid "User without matching profile." msgstr "Użytkownik bez odpowiadającego profilu." -#: actions/grouplogo.php:362 +#: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." msgstr "Wybierz kwadratowy obszar obrazu, który będzie logo." -#: actions/grouplogo.php:396 +#: actions/grouplogo.php:399 msgid "Logo updated." msgstr "Zaktualizowano logo." -#: actions/grouplogo.php:398 +#: actions/grouplogo.php:401 msgid "Failed updating logo." msgstr "Zaktualizowanie logo nie powiodło się." -#: actions/groupmembers.php:93 lib/groupnav.php:92 +#: actions/groupmembers.php:100 lib/groupnav.php:92 #, php-format msgid "%s group members" msgstr "Członkowie grupy %s" -#: actions/groupmembers.php:96 +#: actions/groupmembers.php:103 #, php-format msgid "%1$s group members, page %2$d" msgstr "Członkowie grupy %1$s, strona %2$d" -#: actions/groupmembers.php:111 +#: actions/groupmembers.php:118 msgid "A list of the users in this group." msgstr "Lista użytkowników znajdujących się w tej grupie." -#: actions/groupmembers.php:175 lib/action.php:448 lib/groupnav.php:107 +#: actions/groupmembers.php:182 lib/groupnav.php:107 msgid "Admin" msgstr "Administrator" -#: actions/groupmembers.php:348 lib/blockform.php:69 +#: actions/groupmembers.php:355 lib/blockform.php:69 msgid "Block" msgstr "Zablokuj" -#: actions/groupmembers.php:443 +#: actions/groupmembers.php:450 msgid "Make user an admin of the group" msgstr "Uczyń użytkownika administratorem grupy" -#: actions/groupmembers.php:475 +#: actions/groupmembers.php:482 msgid "Make Admin" msgstr "Uczyń administratorem" -#: actions/groupmembers.php:475 +#: actions/groupmembers.php:482 msgid "Make this user an admin" msgstr "Uczyń tego użytkownika administratorem" -#: actions/grouprss.php:133 +#: actions/grouprss.php:140 #, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Aktualizacje od członków %1$s na %2$s." @@ -1958,16 +1991,19 @@ msgstr "Osobista wiadomość" msgid "Optionally add a personal message to the invitation." msgstr "Opcjonalnie dodaj osobistą wiadomość do zaproszenia." -#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:236 +#. TRANS: Send button for inviting friends +#: actions/invite.php:198 +#, fuzzy +msgctxt "BUTTON" msgid "Send" msgstr "Wyślij" -#: actions/invite.php:226 +#: actions/invite.php:227 #, 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/invite.php:228 +#: actions/invite.php:229 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -2028,7 +2064,11 @@ msgstr "" msgid "You must be logged in to join a group." msgstr "Musisz być zalogowany, aby dołączyć do grupy." -#: actions/joingroup.php:131 +#: actions/joingroup.php:88 actions/leavegroup.php:88 +msgid "No nickname or ID." +msgstr "Brak pseudonimu lub identyfikatora." + +#: actions/joingroup.php:141 #, php-format msgid "%1$s joined group %2$s" msgstr "Użytkownik %1$s dołączył do grupy %2$s" @@ -2037,11 +2077,11 @@ msgstr "Użytkownik %1$s dołączył do grupy %2$s" msgid "You must be logged in to leave a group." msgstr "Musisz być zalogowany, aby opuścić grupę." -#: actions/leavegroup.php:90 lib/command.php:265 +#: actions/leavegroup.php:100 lib/command.php:265 msgid "You are not a member of that group." msgstr "Nie jesteś członkiem tej grupy." -#: actions/leavegroup.php:127 +#: actions/leavegroup.php:137 #, php-format msgid "%1$s left group %2$s" msgstr "Użytkownik %1$s opuścił grupę %2$s" @@ -2058,8 +2098,7 @@ msgstr "Niepoprawna nazwa użytkownika lub hasło." msgid "Error setting user. You are probably not authorized." msgstr "Błąd podczas ustawiania użytkownika. Prawdopodobnie brak upoważnienia." -#: actions/login.php:188 actions/login.php:241 lib/action.php:466 -#: lib/logingroupnav.php:79 +#: actions/login.php:188 actions/login.php:241 lib/logingroupnav.php:79 msgid "Login" msgstr "Zaloguj się" @@ -2160,7 +2199,7 @@ msgstr "Nie można wysłać wiadomości do tego użytkownika." #: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:342 #: lib/command.php:475 msgid "No content!" -msgstr "Brak zawartości." +msgstr "Brak treści." #: actions/newmessage.php:158 msgid "No recipient specified." @@ -2198,7 +2237,7 @@ msgid "" "Search for notices on %%site.name%% by their contents. Separate search terms " "by spaces; they must be 3 characters or more." msgstr "" -"Wyszukaj wpisy na %%site.name%% według ich zawartości. Oddziel wyszukiwane " +"Wyszukaj wpisy na %%site.name%% według ich treści. Oddziel wyszukiwane " "terminy spacjami. Terminy muszą mieć trzy znaki lub więcej." #: actions/noticesearch.php:78 @@ -2313,8 +2352,8 @@ msgstr "typ zawartości " msgid "Only " msgstr "Tylko " -#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 -#: lib/api.php:1068 lib/api.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 +#: lib/apiaction.php:1068 lib/apiaction.php:1177 msgid "Not a supported data format." msgstr "To nie jest obsługiwany format danych." @@ -2453,7 +2492,7 @@ msgstr "Nie można zapisać nowego hasła." msgid "Password saved." msgstr "Zapisano hasło." -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:331 +#: actions/pathsadminpanel.php:59 msgid "Paths" msgstr "Ścieżki" @@ -2486,7 +2525,6 @@ msgid "Invalid SSL server. The maximum length is 255 characters." msgstr "Nieprawidłowy serwer SSL. Maksymalna długość to 255 znaków." #: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58 -#: lib/adminpanelaction.php:311 msgid "Site" msgstr "Witryny" @@ -2661,7 +2699,7 @@ 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/profilesettings.php:111 actions/register.php:448 -#: actions/showgroup.php:247 actions/tagother.php:104 +#: actions/showgroup.php:255 actions/tagother.php:104 #: lib/groupeditform.php:157 lib/userprofile.php:149 msgid "Full name" msgstr "Imię i nazwisko" @@ -2689,7 +2727,7 @@ msgid "Bio" msgstr "O mnie" #: actions/profilesettings.php:132 actions/register.php:471 -#: actions/showgroup.php:256 actions/tagother.php:112 +#: actions/showgroup.php:264 actions/tagother.php:112 #: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:164 msgid "Location" @@ -2772,7 +2810,8 @@ msgstr "Nie można zapisać profilu." msgid "Couldn't save tags." msgstr "Nie można zapisać znaczników." -#: actions/profilesettings.php:391 lib/adminpanelaction.php:137 +#. TRANS: Message after successful saving of administrative settings. +#: actions/profilesettings.php:391 lib/adminpanelaction.php:141 msgid "Settings saved." msgstr "Zapisano ustawienia." @@ -2785,28 +2824,28 @@ msgstr "Poza ograniczeniem strony (%s)" msgid "Could not retrieve public stream." msgstr "Nie można pobrać publicznego strumienia." -#: actions/public.php:129 +#: actions/public.php:130 #, php-format msgid "Public timeline, page %d" msgstr "Publiczna oś czasu, strona %d" -#: actions/public.php:131 lib/publicgroupnav.php:79 +#: actions/public.php:132 lib/publicgroupnav.php:79 msgid "Public timeline" msgstr "Publiczna oś czasu" -#: actions/public.php:159 +#: actions/public.php:160 msgid "Public Stream Feed (RSS 1.0)" msgstr "Kanał publicznego strumienia (RSS 1.0)" -#: actions/public.php:163 +#: actions/public.php:164 msgid "Public Stream Feed (RSS 2.0)" msgstr "Kanał publicznego strumienia (RSS 2.0)" -#: actions/public.php:167 +#: actions/public.php:168 msgid "Public Stream Feed (Atom)" msgstr "Kanał publicznego strumienia (Atom)" -#: actions/public.php:187 +#: actions/public.php:188 #, php-format msgid "" "This is the public timeline for %%site.name%% but no one has posted anything " @@ -2815,11 +2854,11 @@ msgstr "" "To jest publiczna oś czasu dla %%site.name%%, ale nikt jeszcze nic nie " "wysłał." -#: actions/public.php:190 +#: actions/public.php:191 msgid "Be the first to post!" msgstr "Zostań pierwszym, który coś wyśle." -#: actions/public.php:194 +#: actions/public.php:195 #, php-format msgid "" "Why not [register an account](%%action.register%%) and be the first to post!" @@ -2827,7 +2866,7 @@ msgstr "" "Dlaczego nie [zarejestrujesz konta](%%action.register%%) i zostaniesz " "pierwszym, który coś wyśle." -#: actions/public.php:241 +#: actions/public.php:242 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2840,7 +2879,7 @@ msgstr "" "[Dołącz teraz](%%action.register%%), aby dzielić się wpisami o sobie z " "przyjaciółmi, rodziną i kolegami. ([Przeczytaj więcej](%%doc.help%%))" -#: actions/public.php:246 +#: actions/public.php:247 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -3018,8 +3057,7 @@ msgstr "Nieprawidłowy kod zaproszenia." msgid "Registration successful" msgstr "Rejestracja powiodła się" -#: actions/register.php:114 actions/register.php:503 lib/action.php:463 -#: lib/logingroupnav.php:85 +#: actions/register.php:114 actions/register.php:503 lib/logingroupnav.php:85 msgid "Register" msgstr "Zarejestruj się" @@ -3206,7 +3244,7 @@ msgstr "Nie można powtórzyć własnego wpisu." msgid "You already repeated that notice." msgstr "Już powtórzono ten wpis." -#: actions/repeat.php:114 lib/noticelist.php:656 +#: actions/repeat.php:114 lib/noticelist.php:674 msgid "Repeated" msgstr "Powtórzono" @@ -3214,33 +3252,33 @@ msgstr "Powtórzono" msgid "Repeated!" msgstr "Powtórzono." -#: actions/replies.php:125 actions/repliesrss.php:68 +#: actions/replies.php:126 actions/repliesrss.php:68 #: lib/personalgroupnav.php:105 #, php-format msgid "Replies to %s" msgstr "Odpowiedzi na %s" -#: actions/replies.php:127 +#: actions/replies.php:128 #, php-format msgid "Replies to %1$s, page %2$d" msgstr "odpowiedzi dla użytkownika %1$s, strona %2$s" -#: actions/replies.php:144 +#: actions/replies.php:145 #, php-format msgid "Replies feed for %s (RSS 1.0)" msgstr "Kanał odpowiedzi dla użytkownika %s (RSS 1.0)" -#: actions/replies.php:151 +#: actions/replies.php:152 #, php-format msgid "Replies feed for %s (RSS 2.0)" msgstr "Kanał odpowiedzi dla użytkownika %s (RSS 2.0)" -#: actions/replies.php:158 +#: actions/replies.php:159 #, php-format msgid "Replies feed for %s (Atom)" msgstr "Kanał odpowiedzi dla użytkownika %s (Atom)" -#: actions/replies.php:198 +#: actions/replies.php:199 #, php-format msgid "" "This is the timeline showing replies to %1$s but %2$s hasn't received a " @@ -3249,7 +3287,7 @@ msgstr "" "To jest oś czasu wyświetlająca odpowiedzi na wpisy użytkownika %1$s, ale %2" "$s nie otrzymał jeszcze wpisów wymagających jego uwagi." -#: actions/replies.php:203 +#: actions/replies.php:204 #, php-format msgid "" "You can engage other users in a conversation, subscribe to more people or " @@ -3258,7 +3296,7 @@ msgstr "" "Można nawiązać rozmowę z innymi użytkownikami, subskrybować więcej osób lub " "[dołączyć do grup](%%action.groups%%)." -#: actions/replies.php:205 +#: actions/replies.php:206 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) or [post something to his or her " @@ -3285,7 +3323,6 @@ msgid "User is already sandboxed." msgstr "Użytkownik jest już ograniczony." #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:336 msgid "Sessions" msgstr "Sesje" @@ -3310,7 +3347,7 @@ msgid "Turn on debugging output for sessions." msgstr "Włącza wyjście debugowania dla sesji." #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/useradminpanel.php:293 +#: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "Zapisz ustawienia witryny" @@ -3340,7 +3377,7 @@ msgstr "Organizacja" msgid "Description" msgstr "Opis" -#: actions/showapplication.php:192 actions/showgroup.php:429 +#: actions/showapplication.php:192 actions/showgroup.php:437 #: lib/profileaction.php:174 msgid "Statistics" msgstr "Statystyki" @@ -3403,22 +3440,22 @@ msgstr "Ulubione wpisy użytkownika %1$s, strona %2$d" msgid "Could not retrieve favorite notices." msgstr "Nie można odebrać ulubionych wpisów." -#: actions/showfavorites.php:170 +#: actions/showfavorites.php:171 #, php-format msgid "Feed for favorites of %s (RSS 1.0)" msgstr "Kanał dla ulubionych wpisów użytkownika %s (RSS 1.0)" -#: actions/showfavorites.php:177 +#: actions/showfavorites.php:178 #, php-format msgid "Feed for favorites of %s (RSS 2.0)" msgstr "Kanał dla ulubionych wpisów użytkownika %s (RSS 2.0)" -#: actions/showfavorites.php:184 +#: actions/showfavorites.php:185 #, php-format msgid "Feed for favorites of %s (Atom)" msgstr "Kanał dla ulubionych wpisów użytkownika %s (Atom)" -#: actions/showfavorites.php:205 +#: actions/showfavorites.php:206 msgid "" "You haven't chosen any favorite notices yet. Click the fave button on " "notices you like to bookmark them for later or shed a spotlight on them." @@ -3427,7 +3464,7 @@ msgstr "" "na wpisach, które chciałbyś dodać do zakładek na później lub rzucić na nie " "trochę światła." -#: actions/showfavorites.php:207 +#: actions/showfavorites.php:208 #, php-format msgid "" "%s hasn't added any notices to his favorites yet. Post something interesting " @@ -3436,7 +3473,7 @@ 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:211 +#: actions/showfavorites.php:212 #, php-format msgid "" "%s hasn't added any notices to his favorites yet. Why not [register an " @@ -3447,7 +3484,7 @@ msgstr "" "[zarejestrujesz konta](%%%%action.register%%%%) i wyślesz coś " "interesującego, aby chcieli dodać to do swoich ulubionych. :)" -#: actions/showfavorites.php:242 +#: actions/showfavorites.php:243 msgid "This is a way to share what you like." msgstr "To jest sposób na współdzielenie tego, co chcesz." @@ -3461,67 +3498,67 @@ msgstr "Grupa %s" msgid "%1$s group, page %2$d" msgstr "Grupa %1$s, strona %2$d" -#: actions/showgroup.php:218 +#: actions/showgroup.php:226 msgid "Group profile" msgstr "Profil grupy" -#: actions/showgroup.php:263 actions/tagother.php:118 +#: actions/showgroup.php:271 actions/tagother.php:118 #: actions/userauthorization.php:175 lib/userprofile.php:177 msgid "URL" msgstr "Adres URL" -#: actions/showgroup.php:274 actions/tagother.php:128 +#: actions/showgroup.php:282 actions/tagother.php:128 #: actions/userauthorization.php:187 lib/userprofile.php:194 msgid "Note" msgstr "Wpis" -#: actions/showgroup.php:284 lib/groupeditform.php:184 +#: actions/showgroup.php:292 lib/groupeditform.php:184 msgid "Aliases" msgstr "Aliasy" -#: actions/showgroup.php:293 +#: actions/showgroup.php:301 msgid "Group actions" msgstr "Działania grupy" -#: actions/showgroup.php:328 +#: actions/showgroup.php:336 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Kanał wpisów dla grupy %s (RSS 1.0)" -#: actions/showgroup.php:334 +#: actions/showgroup.php:342 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Kanał wpisów dla grupy %s (RSS 2.0)" -#: actions/showgroup.php:340 +#: actions/showgroup.php:348 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "Kanał wpisów dla grupy %s (Atom)" -#: actions/showgroup.php:345 +#: actions/showgroup.php:353 #, php-format msgid "FOAF for %s group" msgstr "FOAF dla grupy %s" -#: actions/showgroup.php:381 actions/showgroup.php:438 lib/groupnav.php:91 +#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 msgid "Members" msgstr "Członkowie" -#: actions/showgroup.php:386 lib/profileaction.php:117 +#: actions/showgroup.php:394 lib/profileaction.php:117 #: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(Brak)" -#: actions/showgroup.php:392 +#: actions/showgroup.php:400 msgid "All members" msgstr "Wszyscy członkowie" -#: actions/showgroup.php:432 +#: actions/showgroup.php:440 msgid "Created" msgstr "Utworzono" -#: actions/showgroup.php:448 +#: actions/showgroup.php:456 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3537,7 +3574,7 @@ msgstr "" "action.register%%%%), aby stać się częścią tej grupy i wiele więcej. " "([Przeczytaj więcej](%%%%doc.help%%%%))" -#: actions/showgroup.php:454 +#: actions/showgroup.php:462 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3550,7 +3587,7 @@ msgstr "" "narzędziu [StatusNet](http://status.net/). Jej członkowie dzielą się " "krótkimi wiadomościami o swoim życiu i zainteresowaniach. " -#: actions/showgroup.php:482 +#: actions/showgroup.php:490 msgid "Admins" msgstr "Administratorzy" @@ -3925,17 +3962,17 @@ msgstr "Nie można zapisać subskrypcji." #: actions/subscribe.php:77 msgid "This action only accepts POST requests." -msgstr "" +msgstr "Ta czynność przyjmuje tylko żądania POST." #: actions/subscribe.php:107 -#, fuzzy msgid "No such profile." -msgstr "Nie ma takiego pliku." +msgstr "Nie ma takiego profilu." #: actions/subscribe.php:117 -#, fuzzy msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." -msgstr "Nie jesteś subskrybowany do tego profilu." +msgstr "" +"Nie można subskrybować zdalnego profilu profilu OMB 0.1 za pomocą tej " +"czynności." #: actions/subscribe.php:145 msgid "Subscribed" @@ -4030,22 +4067,22 @@ msgstr "Jabber" msgid "SMS" msgstr "SMS" -#: actions/tag.php:68 +#: actions/tag.php:69 #, php-format msgid "Notices tagged with %1$s, page %2$d" msgstr "Wpisy ze znacznikiem %1$s, strona %2$d" -#: actions/tag.php:86 +#: actions/tag.php:87 #, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Kanał wpisów dla znacznika %s (RSS 1.0)" -#: actions/tag.php:92 +#: actions/tag.php:93 #, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Kanał wpisów dla znacznika %s (RSS 2.0)" -#: actions/tag.php:98 +#: actions/tag.php:99 #, php-format msgid "Notice feed for tag %s (Atom)" msgstr "Kanał wpisów dla znacznika %s (Atom)" @@ -4100,7 +4137,7 @@ msgstr "" msgid "No such tag." msgstr "Nie ma takiego znacznika." -#: actions/twitapitrends.php:87 +#: actions/twitapitrends.php:85 msgid "API method under construction." msgstr "Metoda API jest w trakcie tworzenia." @@ -4132,70 +4169,72 @@ msgstr "" "Licencja nasłuchiwanego strumienia \"%1$s\" nie jest zgodna z licencją " "witryny \"%2$s\"." -#: actions/useradminpanel.php:58 lib/adminpanelaction.php:321 -#: lib/personalgroupnav.php:115 +#. TRANS: User admin panel title +#: actions/useradminpanel.php:59 +#, fuzzy +msgctxt "TITLE" msgid "User" msgstr "Użytkownik" -#: actions/useradminpanel.php:69 +#: actions/useradminpanel.php:70 msgid "User settings for this StatusNet site." msgstr "Ustawienia użytkownika dla tej witryny StatusNet." -#: actions/useradminpanel.php:148 +#: actions/useradminpanel.php:149 msgid "Invalid bio limit. Must be numeric." msgstr "Nieprawidłowe ograniczenie informacji o sobie. Musi być liczbowa." -#: actions/useradminpanel.php:154 +#: actions/useradminpanel.php:155 msgid "Invalid welcome text. Max length is 255 characters." msgstr "Nieprawidłowy tekst powitania. Maksymalna długość to 255 znaków." -#: actions/useradminpanel.php:164 +#: actions/useradminpanel.php:165 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "Nieprawidłowa domyślna subskrypcja: \"%1$s\" nie jest użytkownikiem." -#: actions/useradminpanel.php:217 lib/accountsettingsaction.php:108 +#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Profil" -#: actions/useradminpanel.php:221 +#: actions/useradminpanel.php:222 msgid "Bio Limit" msgstr "Ograniczenie informacji o sobie" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:223 msgid "Maximum length of a profile bio in characters." msgstr "Maksymalna długość informacji o sobie jako liczba znaków." -#: actions/useradminpanel.php:230 +#: actions/useradminpanel.php:231 msgid "New users" msgstr "Nowi użytkownicy" -#: actions/useradminpanel.php:234 +#: actions/useradminpanel.php:235 msgid "New user welcome" msgstr "Powitanie nowego użytkownika" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:236 msgid "Welcome text for new users (Max 255 chars)." msgstr "Tekst powitania nowych użytkowników (maksymalnie 255 znaków)." -#: actions/useradminpanel.php:240 +#: actions/useradminpanel.php:241 msgid "Default subscription" msgstr "Domyślna subskrypcja" -#: actions/useradminpanel.php:241 +#: actions/useradminpanel.php:242 msgid "Automatically subscribe new users to this user." msgstr "Automatyczne subskrybowanie nowych użytkowników do tego użytkownika." -#: actions/useradminpanel.php:250 +#: actions/useradminpanel.php:251 msgid "Invitations" msgstr "Zaproszenia" -#: actions/useradminpanel.php:255 +#: actions/useradminpanel.php:256 msgid "Invitations enabled" msgstr "Zaproszenia są włączone" -#: actions/useradminpanel.php:257 +#: actions/useradminpanel.php:258 msgid "Whether to allow users to invite new users." msgstr "Czy zezwolić użytkownikom zapraszanie nowych użytkowników." @@ -4390,7 +4429,7 @@ msgstr "" msgid "Plugins" msgstr "Wtyczki" -#: actions/version.php:196 lib/action.php:747 +#: actions/version.php:196 lib/action.php:778 msgid "Version" msgstr "Wersja" @@ -4432,6 +4471,10 @@ msgstr "Nie jest częścią grupy." msgid "Group leave failed." msgstr "Opuszczenie grupy nie powiodło się." +#: classes/Local_group.php:41 +msgid "Could not update local group." +msgstr "Nie można zaktualizować lokalnej grupy." + #: classes/Login_token.php:76 #, php-format msgid "Could not create login token for %s" @@ -4449,27 +4492,27 @@ msgstr "Nie można wprowadzić wiadomości." msgid "Could not update message with new URI." msgstr "Nie można zaktualizować wiadomości za pomocą nowego adresu URL." -#: classes/Notice.php:157 +#: classes/Notice.php:172 #, php-format msgid "DB error inserting hashtag: %s" msgstr "Błąd bazy danych podczas wprowadzania znacznika mieszania: %s" -#: classes/Notice.php:222 +#: classes/Notice.php:239 msgid "Problem saving notice. Too long." msgstr "Problem podczas zapisywania wpisu. Za długi." -#: classes/Notice.php:226 +#: classes/Notice.php:243 msgid "Problem saving notice. Unknown user." msgstr "Problem podczas zapisywania wpisu. Nieznany użytkownik." -#: classes/Notice.php:231 +#: classes/Notice.php:248 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." -#: classes/Notice.php:237 +#: classes/Notice.php:254 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." @@ -4477,19 +4520,19 @@ msgstr "" "Za dużo takich samych wiadomości w za krótkim czasie, weź głęboki oddech i " "wyślij ponownie za kilka minut." -#: classes/Notice.php:243 +#: classes/Notice.php:260 msgid "You are banned from posting notices on this site." msgstr "Zabroniono ci wysyłania wpisów na tej witrynie." -#: classes/Notice.php:309 classes/Notice.php:335 +#: classes/Notice.php:326 classes/Notice.php:352 msgid "Problem saving notice." msgstr "Problem podczas zapisywania wpisu." -#: classes/Notice.php:882 +#: classes/Notice.php:911 msgid "Problem saving group inbox." msgstr "Problem podczas zapisywania skrzynki odbiorczej grupy." -#: classes/Notice.php:1407 +#: classes/Notice.php:1442 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -4518,19 +4561,27 @@ msgstr "Nie można usunąć autosubskrypcji." msgid "Couldn't delete subscription." msgstr "Nie można usunąć subskrypcji." -#: classes/User.php:372 +#: classes/User.php:373 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "Witaj w %1$s, @%2$s." -#: classes/User_group.php:423 +#: classes/User_group.php:462 msgid "Could not create group." msgstr "Nie można utworzyć grupy." -#: classes/User_group.php:452 +#: classes/User_group.php:471 +msgid "Could not set group URI." +msgstr "Nie można ustawić adresu URI grupy." + +#: classes/User_group.php:492 msgid "Could not set group membership." msgstr "Nie można ustawić członkostwa w grupie." +#: classes/User_group.php:506 +msgid "Could not save local group info." +msgstr "Nie można zapisać informacji o lokalnej grupie." + #: lib/accountsettingsaction.php:108 msgid "Change your profile settings" msgstr "Zmień ustawienia profilu" @@ -4572,120 +4623,190 @@ msgstr "Strona bez nazwy" msgid "Primary site navigation" msgstr "Główna nawigacja witryny" +#. TRANS: Tooltip for main menu option "Personal" #: lib/action.php:439 -msgid "Home" -msgstr "Strona domowa" - -#: lib/action.php:439 +#, fuzzy +msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Profil osobisty i oś czasu przyjaciół" -#: lib/action.php:441 +#: lib/action.php:442 +#, fuzzy +msgctxt "MENU" +msgid "Personal" +msgstr "Osobiste" + +#. TRANS: Tooltip for main menu option "Account" +#: lib/action.php:444 +#, fuzzy +msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Zmień adres e-mail, awatar, hasło, profil" -#: lib/action.php:444 -msgid "Connect" -msgstr "Połącz" +#: lib/action.php:447 +#, fuzzy +msgctxt "MENU" +msgid "Account" +msgstr "Konto" -#: lib/action.php:444 +#. TRANS: Tooltip for main menu option "Services" +#: lib/action.php:450 +#, fuzzy +msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Połącz z serwisami" -#: lib/action.php:448 +#: lib/action.php:453 +#, fuzzy +msgctxt "MENU" +msgid "Connect" +msgstr "Połącz" + +#. TRANS: Tooltip for menu option "Admin" +#: lib/action.php:457 +#, fuzzy +msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Zmień konfigurację witryny" -#: lib/action.php:452 lib/subgroupnav.php:105 -msgid "Invite" -msgstr "Zaproś" +#: lib/action.php:460 +#, fuzzy +msgctxt "MENU" +msgid "Admin" +msgstr "Administrator" -#: lib/action.php:453 lib/subgroupnav.php:106 -#, php-format +#. TRANS: Tooltip for main menu option "Invite" +#: lib/action.php:464 +#, fuzzy, php-format +msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Zaproś przyjaciół i kolegów do dołączenia do ciebie na %s" -#: lib/action.php:458 -msgid "Logout" -msgstr "Wyloguj się" +#: lib/action.php:467 +#, fuzzy +msgctxt "MENU" +msgid "Invite" +msgstr "Zaproś" -#: lib/action.php:458 +#. TRANS: Tooltip for main menu option "Logout" +#: lib/action.php:473 +#, fuzzy +msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Wyloguj się z witryny" -#: lib/action.php:463 +#: lib/action.php:476 +#, fuzzy +msgctxt "MENU" +msgid "Logout" +msgstr "Wyloguj się" + +#. TRANS: Tooltip for main menu option "Register" +#: lib/action.php:481 +#, fuzzy +msgctxt "TOOLTIP" msgid "Create an account" msgstr "Utwórz konto" -#: lib/action.php:466 +#: lib/action.php:484 +#, fuzzy +msgctxt "MENU" +msgid "Register" +msgstr "Zarejestruj się" + +#. TRANS: Tooltip for main menu option "Login" +#: lib/action.php:487 +#, fuzzy +msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Zaloguj się na witrynie" -#: lib/action.php:469 lib/action.php:732 -msgid "Help" -msgstr "Pomoc" +#: lib/action.php:490 +#, fuzzy +msgctxt "MENU" +msgid "Login" +msgstr "Zaloguj się" -#: lib/action.php:469 +#. TRANS: Tooltip for main menu option "Help" +#: lib/action.php:493 +#, fuzzy +msgctxt "TOOLTIP" msgid "Help me!" msgstr "Pomóż mi." -#: lib/action.php:472 lib/searchaction.php:127 -msgid "Search" -msgstr "Wyszukaj" +#: lib/action.php:496 +#, fuzzy +msgctxt "MENU" +msgid "Help" +msgstr "Pomoc" -#: lib/action.php:472 +#. TRANS: Tooltip for main menu option "Search" +#: lib/action.php:499 +#, fuzzy +msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Wyszukaj osoby lub tekst" -#: lib/action.php:493 +#: lib/action.php:502 +#, fuzzy +msgctxt "MENU" +msgid "Search" +msgstr "Wyszukaj" + +#. TRANS: DT element for site notice. String is hidden in default CSS. +#: lib/action.php:524 msgid "Site notice" msgstr "Wpis witryny" -#: lib/action.php:559 +#: lib/action.php:590 msgid "Local views" msgstr "Lokalne widoki" -#: lib/action.php:625 +#: lib/action.php:656 msgid "Page notice" msgstr "Wpis strony" -#: lib/action.php:727 +#: lib/action.php:758 msgid "Secondary site navigation" msgstr "Druga nawigacja witryny" -#: lib/action.php:734 +#: lib/action.php:763 +msgid "Help" +msgstr "Pomoc" + +#: lib/action.php:765 msgid "About" msgstr "O usłudze" -#: lib/action.php:736 +#: lib/action.php:767 msgid "FAQ" msgstr "FAQ" -#: lib/action.php:740 +#: lib/action.php:771 msgid "TOS" msgstr "TOS" -#: lib/action.php:743 +#: lib/action.php:774 msgid "Privacy" msgstr "Prywatność" -#: lib/action.php:745 +#: lib/action.php:776 msgid "Source" msgstr "Kod źródłowy" -#: lib/action.php:749 +#: lib/action.php:780 msgid "Contact" msgstr "Kontakt" -#: lib/action.php:751 +#: lib/action.php:782 msgid "Badge" msgstr "Odznaka" -#: lib/action.php:779 +#: lib/action.php:810 msgid "StatusNet software license" msgstr "Licencja oprogramowania StatusNet" -#: lib/action.php:782 +#: lib/action.php:813 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4694,12 +4815,12 @@ msgstr "" "**%%site.name%%** jest usługą mikroblogowania prowadzoną przez [%%site." "broughtby%%](%%site.broughtbyurl%%). " -#: lib/action.php:784 +#: lib/action.php:815 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** jest usługą mikroblogowania. " -#: lib/action.php:786 +#: lib/action.php:817 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4710,111 +4831,164 @@ msgstr "" "status.net/) w wersji %s, dostępnego na [Powszechnej Licencji Publicznej GNU " "Affero](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." -#: lib/action.php:801 +#: lib/action.php:832 msgid "Site content license" msgstr "Licencja zawartości witryny" -#: lib/action.php:806 +#: lib/action.php:837 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "Treść i dane %1$s są prywatne i poufne." -#: lib/action.php:811 +#: lib/action.php:842 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" "Prawa autorskie do treści i danych są własnością %1$s. Wszystkie prawa " "zastrzeżone." -#: lib/action.php:814 +#: lib/action.php:845 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" "Prawa autorskie do treści i danych są własnością współtwórców. Wszystkie " "prawa zastrzeżone." -#: lib/action.php:827 +#: lib/action.php:858 msgid "All " msgstr "Wszystko " -#: lib/action.php:833 +#: lib/action.php:864 msgid "license." msgstr "licencja." -#: lib/action.php:1132 +#: lib/action.php:1163 msgid "Pagination" msgstr "Paginacja" -#: lib/action.php:1141 +#: lib/action.php:1172 msgid "After" msgstr "Później" -#: lib/action.php:1149 +#: lib/action.php:1180 msgid "Before" msgstr "Wcześniej" -#: lib/activity.php:382 +#: lib/activity.php:449 msgid "Can't handle remote content yet." -msgstr "" +msgstr "Nie można jeszcze obsługiwać zdalnej treści." -#: lib/activity.php:410 +#: lib/activity.php:477 msgid "Can't handle embedded XML content yet." -msgstr "" +msgstr "Nie można jeszcze obsługiwać zagnieżdżonej treści XML." -#: lib/activity.php:414 +#: lib/activity.php:481 msgid "Can't handle embedded Base64 content yet." -msgstr "" +msgstr "Nie można jeszcze obsługiwać zagnieżdżonej treści Base64." -#: lib/adminpanelaction.php:96 +#. TRANS: Client error message +#: lib/adminpanelaction.php:98 msgid "You cannot make changes to this site." msgstr "Nie można wprowadzić zmian witryny." -#: lib/adminpanelaction.php:107 +#. TRANS: Client error message +#: lib/adminpanelaction.php:110 msgid "Changes to that panel are not allowed." msgstr "Zmiany w tym panelu nie są dozwolone." -#: lib/adminpanelaction.php:206 +#. TRANS: Client error message +#: lib/adminpanelaction.php:211 msgid "showForm() not implemented." msgstr "showForm() nie jest zaimplementowane." -#: lib/adminpanelaction.php:235 +#. TRANS: Client error message +#: lib/adminpanelaction.php:241 msgid "saveSettings() not implemented." msgstr "saveSettings() nie jest zaimplementowane." -#: lib/adminpanelaction.php:258 +#. TRANS: Client error message +#: lib/adminpanelaction.php:265 msgid "Unable to delete design setting." msgstr "Nie można usunąć ustawienia wyglądu." -#: lib/adminpanelaction.php:312 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:330 msgid "Basic site configuration" msgstr "Podstawowa konfiguracja witryny" -#: lib/adminpanelaction.php:317 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:332 +#, fuzzy +msgctxt "MENU" +msgid "Site" +msgstr "Witryny" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:338 msgid "Design configuration" msgstr "Konfiguracja wyglądu" -#: lib/adminpanelaction.php:322 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:340 +#, fuzzy +msgctxt "MENU" +msgid "Design" +msgstr "Wygląd" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:346 msgid "User configuration" msgstr "Konfiguracja użytkownika" -#: lib/adminpanelaction.php:327 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:348 +#, fuzzy +msgctxt "MENU" +msgid "User" +msgstr "Użytkownik" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:354 msgid "Access configuration" msgstr "Konfiguracja dostępu" -#: lib/adminpanelaction.php:332 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:356 +#, fuzzy +msgctxt "MENU" +msgid "Access" +msgstr "Dostęp" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:362 msgid "Paths configuration" msgstr "Konfiguracja ścieżek" -#: lib/adminpanelaction.php:337 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:364 +#, fuzzy +msgctxt "MENU" +msgid "Paths" +msgstr "Ścieżki" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:370 msgid "Sessions configuration" msgstr "Konfiguracja sesji" -#: lib/apiauth.php:95 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:372 +#, fuzzy +msgctxt "MENU" +msgid "Sessions" +msgstr "Sesje" + +#: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." msgstr "" "Zasób API wymaga dostępu do zapisu i do odczytu, ale powiadasz dostęp tylko " "do odczytu." -#: lib/apiauth.php:273 +#: lib/apiauth.php:272 #, php-format msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" msgstr "" @@ -4907,11 +5081,11 @@ msgstr "Powiadamia, kiedy pojawia się ten załącznik" msgid "Tags for this attachment" msgstr "Znaczniki dla tego załącznika" -#: lib/authenticationplugin.php:218 lib/authenticationplugin.php:223 +#: lib/authenticationplugin.php:220 lib/authenticationplugin.php:225 msgid "Password changing failed" msgstr "Zmiana hasła nie powiodła się" -#: lib/authenticationplugin.php:233 +#: lib/authenticationplugin.php:235 msgid "Password changing is not allowed" msgstr "Zmiana hasła nie jest dozwolona" @@ -5112,7 +5286,7 @@ msgstr "" "minuty: %s." #: lib/command.php:692 -#, fuzzy, php-format +#, php-format msgid "Unsubscribed %s" msgstr "Usunięto subskrypcję użytkownika %s" @@ -5150,7 +5324,6 @@ msgstr[1] "Jesteś członkiem tych grup:" msgstr[2] "Jesteś członkiem tych grup:" #: lib/command.php:769 -#, fuzzy msgid "" "Commands:\n" "on - turn on notifications\n" @@ -5195,14 +5368,15 @@ msgstr "" "on - włącza powiadomienia\n" "off - wyłącza powiadomienia\n" "help - wyświetla tę pomoc\n" -"follow - włącza obserwowanie użytkownika\n" +"follow - subskrybuje użytkownika\n" "groups - wyświetla listę grup, do których dołączyłeś\n" "subscriptions - wyświetla listę obserwowanych osób\n" "subscribers - wyświetla listę osób, które cię obserwują\n" -"leave - rezygnuje z obserwowania użytkownika\n" +"leave - usuwa subskrypcję użytkownika\n" "d - bezpośrednia wiadomość do użytkownika\n" "get - zwraca ostatni wpis użytkownika\n" "whois - zwraca informacje o profilu użytkownika\n" +"lose - wymusza użytkownika do zatrzymania obserwowania cię\n" "fav - dodaje ostatni wpis użytkownika jako \"ulubiony\"\n" "fav # - dodaje wpis z podanym identyfikatorem jako " "\"ulubiony\"\n" @@ -5231,19 +5405,19 @@ msgstr "" "tracks - jeszcze nie zaimplementowano\n" "tracking - jeszcze nie zaimplementowano\n" -#: lib/common.php:136 +#: lib/common.php:148 msgid "No configuration file found. " msgstr "Nie odnaleziono pliku konfiguracji." -#: lib/common.php:137 +#: lib/common.php:149 msgid "I looked for configuration files in the following places: " msgstr "Szukano plików konfiguracji w następujących miejscach: " -#: lib/common.php:139 +#: lib/common.php:151 msgid "You may wish to run the installer to fix this." msgstr "Należy uruchomić instalator, aby to naprawić." -#: lib/common.php:140 +#: lib/common.php:152 msgid "Go to the installer." msgstr "Przejdź do instalatora." @@ -5433,23 +5607,23 @@ msgstr "Błąd systemu podczas wysyłania pliku." msgid "Not an image or corrupt file." msgstr "To nie jest obraz lub lub plik jest uszkodzony." -#: lib/imagefile.php:105 +#: lib/imagefile.php:109 msgid "Unsupported image file format." msgstr "Nieobsługiwany format pliku obrazu." -#: lib/imagefile.php:118 +#: lib/imagefile.php:122 msgid "Lost our file." msgstr "Utracono plik." -#: lib/imagefile.php:150 lib/imagefile.php:197 +#: lib/imagefile.php:166 lib/imagefile.php:231 msgid "Unknown file type" msgstr "Nieznany typ pliku" -#: lib/imagefile.php:217 +#: lib/imagefile.php:251 msgid "MB" msgstr "MB" -#: lib/imagefile.php:219 +#: lib/imagefile.php:253 msgid "kB" msgstr "KB" @@ -5830,6 +6004,11 @@ msgstr "Do" msgid "Available characters" msgstr "Dostępne znaki" +#: lib/messageform.php:178 lib/noticeform.php:236 +msgctxt "Send button for sending notice" +msgid "Send" +msgstr "Wyślij" + #: lib/noticeform.php:160 msgid "Send a notice" msgstr "Wyślij wpis" @@ -5888,23 +6067,23 @@ msgstr "Zachód" msgid "at" msgstr "w" -#: lib/noticelist.php:558 +#: lib/noticelist.php:566 msgid "in context" msgstr "w rozmowie" -#: lib/noticelist.php:583 +#: lib/noticelist.php:601 msgid "Repeated by" msgstr "Powtórzone przez" -#: lib/noticelist.php:610 +#: lib/noticelist.php:628 msgid "Reply to this notice" msgstr "Odpowiedz na ten wpis" -#: lib/noticelist.php:611 +#: lib/noticelist.php:629 msgid "Reply" msgstr "Odpowiedz" -#: lib/noticelist.php:655 +#: lib/noticelist.php:673 msgid "Notice repeated" msgstr "Powtórzono wpis" @@ -5952,6 +6131,10 @@ msgstr "Odpowiedzi" msgid "Favorites" msgstr "Ulubione" +#: lib/personalgroupnav.php:115 +msgid "User" +msgstr "Użytkownik" + #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "Odebrane" @@ -6041,7 +6224,7 @@ msgstr "Powtórzyć ten wpis?" msgid "Repeat this notice" msgstr "Powtórz ten wpis" -#: lib/router.php:665 +#: lib/router.php:668 msgid "No single user defined for single-user mode." msgstr "" "Nie określono pojedynczego użytkownika dla trybu pojedynczego użytkownika." @@ -6062,6 +6245,10 @@ msgstr "Przeszukaj witrynę" msgid "Keyword(s)" msgstr "Słowa kluczowe" +#: lib/searchaction.php:127 +msgid "Search" +msgstr "Wyszukaj" + #: lib/searchaction.php:162 msgid "Search help" msgstr "Przeszukaj pomoc" @@ -6113,6 +6300,15 @@ msgstr "Osoby subskrybowane do %s" msgid "Groups %s is a member of" msgstr "Grupy %s są członkiem" +#: lib/subgroupnav.php:105 +msgid "Invite" +msgstr "Zaproś" + +#: lib/subgroupnav.php:106 +#, 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" @@ -6183,47 +6379,47 @@ msgstr "Wiadomość" msgid "Moderate" msgstr "Moderuj" -#: lib/util.php:952 +#: lib/util.php:1013 msgid "a few seconds ago" msgstr "kilka sekund temu" -#: lib/util.php:954 +#: lib/util.php:1015 msgid "about a minute ago" msgstr "około minutę temu" -#: lib/util.php:956 +#: lib/util.php:1017 #, php-format msgid "about %d minutes ago" msgstr "około %d minut temu" -#: lib/util.php:958 +#: lib/util.php:1019 msgid "about an hour ago" msgstr "około godzinę temu" -#: lib/util.php:960 +#: lib/util.php:1021 #, php-format msgid "about %d hours ago" msgstr "około %d godzin temu" -#: lib/util.php:962 +#: lib/util.php:1023 msgid "about a day ago" msgstr "blisko dzień temu" -#: lib/util.php:964 +#: lib/util.php:1025 #, php-format msgid "about %d days ago" msgstr "około %d dni temu" -#: lib/util.php:966 +#: lib/util.php:1027 msgid "about a month ago" msgstr "około miesiąc temu" -#: lib/util.php:968 +#: lib/util.php:1029 #, php-format msgid "about %d months ago" msgstr "około %d miesięcy temu" -#: lib/util.php:970 +#: lib/util.php:1031 msgid "about a year ago" msgstr "około rok temu" diff --git a/locale/pt/LC_MESSAGES/statusnet.po b/locale/pt/LC_MESSAGES/statusnet.po index e742dda197..2598008d9b 100644 --- a/locale/pt/LC_MESSAGES/statusnet.po +++ b/locale/pt/LC_MESSAGES/statusnet.po @@ -9,78 +9,85 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-02-24 23:49+0000\n" -"PO-Revision-Date: 2010-02-24 23:51:34+0000\n" +"POT-Creation-Date: 2010-03-02 21:02+0000\n" +"PO-Revision-Date: 2010-03-02 21:03:38+0000\n" "Language-Team: Portuguese\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r62925); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: actions/accessadminpanel.php:54 lib/adminpanelaction.php:326 +#. TRANS: Page title +#: actions/accessadminpanel.php:55 msgid "Access" msgstr "Acesso" -#: actions/accessadminpanel.php:65 +#. TRANS: Page notice +#: actions/accessadminpanel.php:67 #, fuzzy msgid "Site access settings" msgstr "Gravar configurações do site" -#: actions/accessadminpanel.php:158 +#. TRANS: Form legend for registration form. +#: actions/accessadminpanel.php:161 #, fuzzy msgid "Registration" msgstr "Registar" -#: actions/accessadminpanel.php:161 -msgid "Private" -msgstr "Privado" - -#: actions/accessadminpanel.php:163 +#. TRANS: Checkbox instructions for admin setting "Private" +#: actions/accessadminpanel.php:165 msgid "Prohibit anonymous users (not logged in) from viewing site?" msgstr "Proibir utilizadores anónimos (sem sessão iniciada) de ver o site?" +#. TRANS: Checkbox label for prohibiting anonymous users from viewing site. #: actions/accessadminpanel.php:167 -msgid "Invite only" -msgstr "Só por convite" +#, fuzzy +msgctxt "LABEL" +msgid "Private" +msgstr "Privado" -#: actions/accessadminpanel.php:169 +#. TRANS: Checkbox instructions for admin setting "Invite only" +#: actions/accessadminpanel.php:174 msgid "Make registration invitation only." msgstr "Permitir o registo só a convidados." -#: actions/accessadminpanel.php:173 -msgid "Closed" -msgstr "Fechado" +#. TRANS: Checkbox label for configuring site as invite only. +#: actions/accessadminpanel.php:176 +msgid "Invite only" +msgstr "Só por convite" -#: actions/accessadminpanel.php:175 +#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations) +#: actions/accessadminpanel.php:183 msgid "Disable new registrations." msgstr "Impossibilitar registos novos." -#: actions/accessadminpanel.php:189 actions/designadminpanel.php:586 -#: actions/emailsettings.php:195 actions/imsettings.php:163 -#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 -#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 -#: actions/siteadminpanel.php:336 actions/smssettings.php:181 -#: actions/subscriptions.php:208 actions/tagother.php:154 -#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 -#: lib/applicationeditform.php:334 lib/designsettings.php:256 -#: lib/groupeditform.php:202 -msgid "Save" -msgstr "Gravar" +#. TRANS: Checkbox label for disabling new user registrations. +#: actions/accessadminpanel.php:185 +msgid "Closed" +msgstr "Fechado" -#: actions/accessadminpanel.php:189 +#. TRANS: Title / tooltip for button to save access settings in site admin panel +#: actions/accessadminpanel.php:202 #, fuzzy msgid "Save access settings" msgstr "Gravar configurações do site" -#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 -#: actions/showfavorites.php:137 actions/tag.php:51 +#: actions/accessadminpanel.php:203 +#, fuzzy +msgctxt "BUTTON" +msgid "Save" +msgstr "Gravar" + +#. TRANS: Server error when page not found (404) +#: actions/all.php:64 actions/public.php:98 actions/replies.php:93 +#: actions/showfavorites.php:138 actions/tag.php:52 msgid "No such page" msgstr "Página não encontrada." -#: actions/all.php:74 actions/allrss.php:68 +#: actions/all.php:75 actions/allrss.php:68 #: actions/apiaccountupdatedeliverydevice.php:113 #: actions/apiaccountupdateprofile.php:105 #: actions/apiaccountupdateprofilebackgroundimage.php:116 @@ -94,52 +101,60 @@ msgstr "Página não encontrada." #: actions/apitimelinehome.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/otp.php:76 -#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154 -#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 -#: actions/showfavorites.php:105 actions/userbyid.php:74 -#: actions/usergroups.php:91 actions/userrss.php:38 actions/xrds.php:71 -#: lib/command.php:163 lib/command.php:302 lib/command.php:355 -#: lib/command.php:401 lib/command.php:462 lib/command.php:518 -#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 +#: actions/hcard.php:67 actions/microsummary.php:62 actions/newmessage.php:116 +#: actions/otp.php:76 actions/remotesubscribe.php:145 +#: actions/remotesubscribe.php:154 actions/replies.php:73 +#: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/xrds.php:71 lib/command.php:163 lib/command.php:302 +#: lib/command.php:355 lib/command.php:401 lib/command.php:462 +#: lib/command.php:518 lib/galleryaction.php:59 lib/mailbox.php:82 +#: lib/profileaction.php:77 msgid "No such user." msgstr "Utilizador não encontrado." -#: actions/all.php:84 +#. TRANS: Page title. %1$s is user nickname, %2$d is page number +#: actions/all.php:86 #, fuzzy, php-format msgid "%1$s and friends, page %2$d" msgstr "Perfis bloqueados de %1$s, página %2$d" -#: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 +#. TRANS: Page title. %1$s is user nickname +#. TRANS: H1 text. %1$s is user nickname +#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" msgstr "%s e amigos" -#: actions/all.php:99 +#. TRANS: %1$s is user nickname +#: actions/all.php:103 #, php-format msgid "Feed for friends of %s (RSS 1.0)" msgstr "Fonte para os amigos de %s (RSS 1.0)" -#: actions/all.php:107 +#. TRANS: %1$s is user nickname +#: actions/all.php:112 #, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "Fonte para os amigos de %s (RSS 2.0)" -#: actions/all.php:115 +#. TRANS: %1$s is user nickname +#: actions/all.php:121 #, php-format msgid "Feed for friends of %s (Atom)" msgstr "Fonte para os amigos de %s (Atom)" -#: actions/all.php:127 +#. TRANS: %1$s is user nickname +#: actions/all.php:134 #, php-format msgid "" "This is the timeline for %s and friends but no one has posted anything yet." msgstr "" "Estas são as notas de %s e dos amigos, mas ainda não publicaram nenhuma." -#: actions/all.php:132 +#: actions/all.php:139 #, php-format msgid "" "Try subscribing to more people, [join a group](%%action.groups%%) or post " @@ -148,7 +163,8 @@ msgstr "" "Tente subscrever mais pessoas, [juntar-se a um grupo] (%%action.groups%%) ou " "publicar qualquer coisa." -#: actions/all.php:134 +#. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@" +#: actions/all.php:142 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) from his profile or [post something to " @@ -157,7 +173,7 @@ msgstr "" "Pode tentar [dar um toque em %1$s](../%2$s) a partir do perfil ou [publicar " "qualquer coisa à sua atenção](%%%%action.newnotice%%%%?status_textarea=%3$s)." -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211 +#: actions/all.php:145 actions/replies.php:210 actions/showstream.php:211 #, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " @@ -166,7 +182,8 @@ msgstr "" "Podia [registar uma conta](%%action.register%%) e depois tocar %s ou " "publicar uma nota à sua atenção." -#: actions/all.php:165 +#. TRANS: H1 text +#: actions/all.php:174 msgid "You and friends" msgstr "Você e seus amigos" @@ -184,20 +201,20 @@ msgstr "Actualizações de %1$s e amigos no %2$s!" #: actions/apiaccountverifycredentials.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:128 actions/apigroupcreate.php:136 +#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: actions/apigroupleave.php:141 actions/apigrouplist.php:132 #: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 #: actions/apigroupshow.php:115 actions/apihelptest.php:88 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 -#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184 +#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 #: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:207 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 msgid "API method not found." msgstr "Método da API não encontrado." @@ -230,8 +247,9 @@ msgstr "Não foi possível actualizar o utilizador." #: actions/apiaccountupdateprofilebackgroundimage.php:194 #: actions/apiaccountupdateprofilecolors.php:185 #: 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 +#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 +#: actions/replies.php:80 actions/usergroups.php:98 lib/galleryaction.php:66 +#: lib/profileaction.php:84 msgid "User has no profile." msgstr "Utilizador não tem perfil." @@ -257,7 +275,7 @@ msgstr "" #: actions/apiaccountupdateprofilebackgroundimage.php:146 #: actions/apiaccountupdateprofilecolors.php:164 #: actions/apiaccountupdateprofilecolors.php:174 -#: actions/groupdesignsettings.php:287 actions/groupdesignsettings.php:297 +#: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300 #: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 #: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 msgid "Unable to save your design settings." @@ -369,68 +387,68 @@ msgstr "Não foi possível determinar o utilizador de origem." msgid "Could not find target user." msgstr "Não foi possível encontrar o utilizador de destino." -#: actions/apigroupcreate.php:164 actions/editgroup.php:182 +#: actions/apigroupcreate.php:166 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:215 #: actions/register.php:205 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "Utilizador só deve conter letras minúsculas e números. Sem espaços." -#: actions/apigroupcreate.php:173 actions/editgroup.php:186 +#: actions/apigroupcreate.php:175 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:238 #: actions/register.php:208 msgid "Nickname already in use. Try another one." msgstr "Utilizador já é usado. Tente outro." -#: actions/apigroupcreate.php:180 actions/editgroup.php:189 +#: actions/apigroupcreate.php:182 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:218 #: actions/register.php:210 msgid "Not a valid nickname." msgstr "Utilizador não é válido." -#: actions/apigroupcreate.php:196 actions/editapplication.php:215 -#: actions/editgroup.php:195 actions/newapplication.php:203 +#: actions/apigroupcreate.php:198 actions/editapplication.php:215 +#: actions/editgroup.php:199 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:217 msgid "Homepage is not a valid URL." msgstr "Página de ínicio não é uma URL válida." -#: actions/apigroupcreate.php:205 actions/editgroup.php:198 +#: actions/apigroupcreate.php:207 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:225 #: actions/register.php:220 msgid "Full name is too long (max 255 chars)." msgstr "Nome completo demasiado longo (máx. 255 caracteres)." -#: actions/apigroupcreate.php:213 actions/editapplication.php:190 +#: actions/apigroupcreate.php:215 actions/editapplication.php:190 #: actions/newapplication.php:172 #, php-format msgid "Description is too long (max %d chars)." msgstr "Descrição demasiado longa (máx. 140 caracteres)." -#: actions/apigroupcreate.php:224 actions/editgroup.php:204 +#: actions/apigroupcreate.php:226 actions/editgroup.php:208 #: actions/newgroup.php:148 actions/profilesettings.php:232 #: actions/register.php:227 msgid "Location is too long (max 255 chars)." msgstr "Localidade demasiado longa (máx. 255 caracteres)." -#: actions/apigroupcreate.php:243 actions/editgroup.php:215 +#: actions/apigroupcreate.php:245 actions/editgroup.php:219 #: actions/newgroup.php:159 #, php-format msgid "Too many aliases! Maximum %d." msgstr "Demasiados sinónimos (máx. %d)." -#: actions/apigroupcreate.php:264 actions/editgroup.php:224 +#: actions/apigroupcreate.php:266 actions/editgroup.php:228 #: actions/newgroup.php:168 #, php-format msgid "Invalid alias: \"%s\"" msgstr "Sinónimo inválido: \"%s\"" -#: actions/apigroupcreate.php:273 actions/editgroup.php:228 +#: actions/apigroupcreate.php:275 actions/editgroup.php:232 #: actions/newgroup.php:172 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "Sinónimo \"%s\" já em uso. Tente outro." -#: actions/apigroupcreate.php:286 actions/editgroup.php:234 +#: actions/apigroupcreate.php:288 actions/editgroup.php:238 #: actions/newgroup.php:178 msgid "Alias can't be the same as nickname." msgstr "Os sinónimos não podem ser iguais ao nome do utilizador." @@ -441,15 +459,15 @@ msgstr "Os sinónimos não podem ser iguais ao nome do utilizador." msgid "Group not found!" msgstr "Grupo não foi encontrado!" -#: actions/apigroupjoin.php:110 actions/joingroup.php:90 +#: actions/apigroupjoin.php:110 actions/joingroup.php:100 msgid "You are already a member of that group." msgstr "Já é membro desse grupo." -#: actions/apigroupjoin.php:119 actions/joingroup.php:95 lib/command.php:221 +#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:221 msgid "You have been blocked from that group by the admin." msgstr "Foi bloqueado desse grupo pelo gestor." -#: actions/apigroupjoin.php:138 actions/joingroup.php:124 +#: actions/apigroupjoin.php:138 actions/joingroup.php:134 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Não foi possível adicionar %1$s ao grupo %2$s." @@ -458,7 +476,7 @@ msgstr "Não foi possível adicionar %1$s ao grupo %2$s." msgid "You are not a member of this group." msgstr "Não é membro deste grupo." -#: actions/apigroupleave.php:124 actions/leavegroup.php:119 +#: actions/apigroupleave.php:124 actions/leavegroup.php:129 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "Não foi possível remover %1$s do grupo %2$s." @@ -490,7 +508,7 @@ msgstr "Tamanho inválido." #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 #: actions/deletenotice.php:157 actions/disfavor.php:74 #: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54 -#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupblock.php:66 actions/grouplogo.php:312 #: actions/groupunblock.php:66 actions/imsettings.php:206 #: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 @@ -534,7 +552,7 @@ msgstr "" #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:103 actions/editapplication.php:139 -#: actions/emailsettings.php:256 actions/grouplogo.php:319 +#: actions/emailsettings.php:256 actions/grouplogo.php:322 #: actions/imsettings.php:220 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 #: actions/smssettings.php:248 lib/designsettings.php:304 @@ -557,13 +575,13 @@ msgid "" "give access to your %4$s account to third parties you trust." msgstr "" -#: actions/apioauthauthorize.php:310 lib/action.php:441 +#: actions/apioauthauthorize.php:310 msgid "Account" msgstr "Conta" #: actions/apioauthauthorize.php:313 actions/login.php:230 #: actions/profilesettings.php:106 actions/register.php:424 -#: actions/showgroup.php:236 actions/tagother.php:94 +#: actions/showgroup.php:244 actions/tagother.php:94 #: actions/userauthorization.php:145 lib/groupeditform.php:152 #: lib/userprofile.php:131 msgid "Nickname" @@ -647,12 +665,12 @@ msgid "%1$s updates favorited by %2$s / %2$s." msgstr "%1$s actualizações preferidas por %2$s / %2$s." #: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:131 actions/userrss.php:90 +#: actions/grouprss.php:138 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "Notas de %s" -#: actions/apitimelinegroup.php:114 actions/apitimelineuser.php:126 +#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 #: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" @@ -688,7 +706,7 @@ msgstr "Repetida para %s" msgid "Repeats of %s" msgstr "Repetências de %s" -#: actions/apitimelinetag.php:102 actions/tag.php:66 +#: actions/apitimelinetag.php:102 actions/tag.php:67 #, php-format msgid "Notices tagged with %s" msgstr "Notas categorizadas com %s" @@ -709,8 +727,7 @@ msgstr "Anexo não encontrado." #: actions/avatarbynickname.php:59 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/leavegroup.php:76 -#: actions/showgroup.php:121 +#: actions/grouprss.php:91 actions/showgroup.php:121 msgid "No nickname." msgstr "Nenhuma utilizador." @@ -722,7 +739,7 @@ msgstr "Tamanho não definido." msgid "Invalid size." msgstr "Tamanho inválido." -#: actions/avatarsettings.php:67 actions/showgroup.php:221 +#: actions/avatarsettings.php:67 actions/showgroup.php:229 #: lib/accountsettingsaction.php:112 msgid "Avatar" msgstr "Avatar" @@ -739,30 +756,30 @@ msgid "User without matching profile" msgstr "Utilizador sem perfil correspondente" #: actions/avatarsettings.php:119 actions/avatarsettings.php:197 -#: actions/grouplogo.php:251 +#: actions/grouplogo.php:254 msgid "Avatar settings" msgstr "Configurações do avatar" #: actions/avatarsettings.php:127 actions/avatarsettings.php:205 -#: actions/grouplogo.php:199 actions/grouplogo.php:259 +#: actions/grouplogo.php:202 actions/grouplogo.php:262 msgid "Original" msgstr "Original" #: actions/avatarsettings.php:142 actions/avatarsettings.php:217 -#: actions/grouplogo.php:210 actions/grouplogo.php:271 +#: actions/grouplogo.php:213 actions/grouplogo.php:274 msgid "Preview" msgstr "Antevisão" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:637 +#: lib/deleteuserform.php:66 lib/noticelist.php:655 msgid "Delete" msgstr "Apagar" -#: actions/avatarsettings.php:166 actions/grouplogo.php:233 +#: actions/avatarsettings.php:166 actions/grouplogo.php:236 msgid "Upload" msgstr "Carregar" -#: actions/avatarsettings.php:231 actions/grouplogo.php:286 +#: actions/avatarsettings.php:231 actions/grouplogo.php:289 msgid "Crop" msgstr "Cortar" @@ -770,7 +787,7 @@ msgstr "Cortar" msgid "Pick a square area of the image to be your avatar" msgstr "Escolha uma área quadrada da imagem para ser o seu avatar" -#: actions/avatarsettings.php:343 actions/grouplogo.php:377 +#: actions/avatarsettings.php:343 actions/grouplogo.php:380 msgid "Lost our file data." msgstr "Perdi os dados do nosso ficheiro." @@ -805,22 +822,22 @@ msgstr "" "de futuro e você não receberá notificações das @-respostas dele." #: actions/block.php:143 actions/deleteapplication.php:153 -#: actions/deletenotice.php:145 actions/deleteuser.php:147 +#: actions/deletenotice.php:145 actions/deleteuser.php:150 #: actions/groupblock.php:178 msgid "No" msgstr "Não" -#: actions/block.php:143 actions/deleteuser.php:147 +#: actions/block.php:143 actions/deleteuser.php:150 msgid "Do not block this user" msgstr "Não bloquear este utilizador" #: actions/block.php:144 actions/deleteapplication.php:158 -#: actions/deletenotice.php:146 actions/deleteuser.php:148 +#: actions/deletenotice.php:146 actions/deleteuser.php:151 #: actions/groupblock.php:179 lib/repeatform.php:132 msgid "Yes" msgstr "Sim" -#: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:355 lib/blockform.php:80 msgid "Block this user" msgstr "Bloquear este utilizador" @@ -828,39 +845,43 @@ msgstr "Bloquear este utilizador" msgid "Failed to save block information." msgstr "Não foi possível gravar informação do bloqueio." -#: actions/blockedfromgroup.php:80 actions/editgroup.php:96 -#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/groupblock.php:86 -#: actions/groupbyid.php:83 actions/groupdesignsettings.php:97 -#: actions/grouplogo.php:99 actions/groupmembers.php:83 -#: actions/grouprss.php:98 actions/groupunblock.php:86 -#: actions/joingroup.php:83 actions/leavegroup.php:83 actions/makeadmin.php:86 -#: actions/showgroup.php:137 lib/command.php:212 lib/command.php:260 +#: actions/blockedfromgroup.php:80 actions/blockedfromgroup.php:87 +#: actions/editgroup.php:100 actions/foafgroup.php:44 actions/foafgroup.php:62 +#: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:100 actions/grouplogo.php:102 +#: actions/groupmembers.php:83 actions/groupmembers.php:90 +#: actions/grouprss.php:98 actions/grouprss.php:105 +#: actions/groupunblock.php:86 actions/joingroup.php:82 +#: actions/joingroup.php:93 actions/leavegroup.php:82 +#: actions/leavegroup.php:93 actions/makeadmin.php:86 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:212 +#: lib/command.php:260 msgid "No such group." msgstr "Grupo não foi encontrado." -#: actions/blockedfromgroup.php:90 +#: actions/blockedfromgroup.php:97 #, php-format msgid "%s blocked profiles" msgstr "%s perfis bloqueados" -#: actions/blockedfromgroup.php:93 +#: actions/blockedfromgroup.php:100 #, php-format msgid "%1$s blocked profiles, page %2$d" msgstr "Perfis bloqueados de %1$s, página %2$d" -#: actions/blockedfromgroup.php:108 +#: actions/blockedfromgroup.php:115 msgid "A list of the users blocked from joining this group." msgstr "Uma lista dos utilizadores com entrada bloqueada neste grupo." -#: actions/blockedfromgroup.php:281 +#: actions/blockedfromgroup.php:288 msgid "Unblock user from group" msgstr "Desbloquear utilizador do grupo" -#: actions/blockedfromgroup.php:313 lib/unblockform.php:69 +#: actions/blockedfromgroup.php:320 lib/unblockform.php:69 msgid "Unblock" msgstr "Desbloquear" -#: actions/blockedfromgroup.php:313 lib/unblockform.php:80 +#: actions/blockedfromgroup.php:320 lib/unblockform.php:80 msgid "Unblock this user" msgstr "Desbloquear este utilizador" @@ -939,7 +960,7 @@ msgstr "Não é membro deste grupo." #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1197 +#: lib/action.php:1228 msgid "There was a problem with your session token." msgstr "Ocorreu um problema com a sua sessão." @@ -968,12 +989,13 @@ msgstr "Não apagar esta nota" msgid "Delete this application" msgstr "Apagar esta nota" +#. TRANS: Client error message #: 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:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 -#: lib/adminpanelaction.php:72 lib/profileformaction.php:63 +#: lib/adminpanelaction.php:73 lib/profileformaction.php:63 #: lib/settingsaction.php:72 msgid "Not logged in." msgstr "Não iniciou sessão." @@ -1002,7 +1024,7 @@ msgstr "Tem a certeza de que quer apagar esta nota?" msgid "Do not delete this notice" msgstr "Não apagar esta nota" -#: actions/deletenotice.php:146 lib/noticelist.php:637 +#: actions/deletenotice.php:146 lib/noticelist.php:655 msgid "Delete this notice" msgstr "Apagar esta nota" @@ -1018,7 +1040,7 @@ msgstr "Só pode apagar utilizadores locais." msgid "Delete user" msgstr "Apagar utilizador" -#: actions/deleteuser.php:135 +#: actions/deleteuser.php:136 msgid "" "Are you sure you want to delete this user? This will clear all data about " "the user from the database, without a backup." @@ -1026,12 +1048,12 @@ msgstr "" "Tem a certeza de que quer apagar este utilizador? Todos os dados do " "utilizador serão eliminados da base de dados, sem haver cópias." -#: actions/deleteuser.php:148 lib/deleteuserform.php:77 +#: actions/deleteuser.php:151 lib/deleteuserform.php:77 msgid "Delete this user" msgstr "Apagar este utilizador" #: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 -#: lib/adminpanelaction.php:316 lib/groupnav.php:119 +#: lib/groupnav.php:119 msgid "Design" msgstr "Estilo" @@ -1134,6 +1156,17 @@ msgstr "Repor estilos predefinidos" msgid "Reset back to default" msgstr "Repor predefinição" +#: actions/designadminpanel.php:586 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/tagother.php:154 actions/useradminpanel.php:294 +#: lib/applicationeditform.php:333 lib/applicationeditform.php:334 +#: lib/designsettings.php:256 lib/groupeditform.php:202 +msgid "Save" +msgstr "Gravar" + #: actions/designadminpanel.php:587 lib/designsettings.php:257 msgid "Save design" msgstr "Gravar o estilo" @@ -1237,29 +1270,29 @@ msgstr "Editar grupo %s" msgid "You must be logged in to create a group." msgstr "Tem de iniciar uma sessão para criar o grupo." -#: actions/editgroup.php:103 actions/editgroup.php:168 -#: actions/groupdesignsettings.php:104 actions/grouplogo.php:106 +#: actions/editgroup.php:107 actions/editgroup.php:172 +#: actions/groupdesignsettings.php:107 actions/grouplogo.php:109 msgid "You must be an admin to edit the group." msgstr "Tem de ser administrador para editar o grupo." -#: actions/editgroup.php:154 +#: actions/editgroup.php:158 msgid "Use this form to edit the group." msgstr "Use este formulário para editar o grupo." -#: actions/editgroup.php:201 actions/newgroup.php:145 +#: actions/editgroup.php:205 actions/newgroup.php:145 #, php-format msgid "description is too long (max %d chars)." msgstr "descrição é demasiada extensa (máx. %d caracteres)." -#: actions/editgroup.php:253 +#: actions/editgroup.php:258 msgid "Could not update group." msgstr "Não foi possível actualizar o grupo." -#: actions/editgroup.php:259 classes/User_group.php:433 +#: actions/editgroup.php:264 classes/User_group.php:478 msgid "Could not create aliases." msgstr "Não foi possível criar sinónimos." -#: actions/editgroup.php:269 +#: actions/editgroup.php:280 msgid "Options saved." msgstr "Opções gravadas." @@ -1603,7 +1636,7 @@ msgstr "Acesso do utilizador ao grupo já foi bloqueado." msgid "User is not a member of group." msgstr "Utilizador não é membro do grupo." -#: actions/groupblock.php:136 actions/groupmembers.php:316 +#: actions/groupblock.php:136 actions/groupmembers.php:323 msgid "Block user from group" msgstr "Bloquear acesso do utilizador ao grupo" @@ -1638,11 +1671,11 @@ msgstr "Sem ID." msgid "You must be logged in to edit a group." msgstr "Precisa de iniciar sessão para editar um grupo." -#: actions/groupdesignsettings.php:141 +#: actions/groupdesignsettings.php:144 msgid "Group design" msgstr "Estilo do grupo" -#: actions/groupdesignsettings.php:152 +#: actions/groupdesignsettings.php:155 msgid "" "Customize the way your group looks with a background image and a colour " "palette of your choice." @@ -1650,20 +1683,20 @@ msgstr "" "Personalize o aspecto do seu grupo com uma imagem de fundo e uma paleta de " "cores à sua escolha." -#: actions/groupdesignsettings.php:263 actions/userdesignsettings.php:186 +#: actions/groupdesignsettings.php:266 actions/userdesignsettings.php:186 #: lib/designsettings.php:391 lib/designsettings.php:413 msgid "Couldn't update your design." msgstr "Não foi possível actualizar o estilo." -#: actions/groupdesignsettings.php:308 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231 msgid "Design preferences saved." msgstr "Preferências de estilo foram gravadas." -#: actions/grouplogo.php:139 actions/grouplogo.php:192 +#: actions/grouplogo.php:142 actions/grouplogo.php:195 msgid "Group logo" msgstr "Logotipo do grupo" -#: actions/grouplogo.php:150 +#: actions/grouplogo.php:153 #, php-format msgid "" "You can upload a logo image for your group. The maximum file size is %s." @@ -1671,57 +1704,57 @@ msgstr "" "Pode carregar uma imagem para logotipo do seu grupo. O tamanho máximo do " "ficheiro é %s." -#: actions/grouplogo.php:178 +#: actions/grouplogo.php:181 msgid "User without matching profile." msgstr "Utilizador sem perfil correspondente." -#: actions/grouplogo.php:362 +#: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." msgstr "Escolha uma área quadrada da imagem para ser o logotipo." -#: actions/grouplogo.php:396 +#: actions/grouplogo.php:399 msgid "Logo updated." msgstr "Logotipo actualizado." -#: actions/grouplogo.php:398 +#: actions/grouplogo.php:401 msgid "Failed updating logo." msgstr "Não foi possível actualizar o logotipo." -#: actions/groupmembers.php:93 lib/groupnav.php:92 +#: actions/groupmembers.php:100 lib/groupnav.php:92 #, php-format msgid "%s group members" msgstr "Membros do grupo %s" -#: actions/groupmembers.php:96 +#: actions/groupmembers.php:103 #, php-format msgid "%1$s group members, page %2$d" msgstr "Membros do grupo %1$s, página %2$d" -#: actions/groupmembers.php:111 +#: actions/groupmembers.php:118 msgid "A list of the users in this group." msgstr "Uma lista dos utilizadores neste grupo." -#: actions/groupmembers.php:175 lib/action.php:448 lib/groupnav.php:107 +#: actions/groupmembers.php:182 lib/groupnav.php:107 msgid "Admin" msgstr "Gestor" -#: actions/groupmembers.php:348 lib/blockform.php:69 +#: actions/groupmembers.php:355 lib/blockform.php:69 msgid "Block" msgstr "Bloquear" -#: actions/groupmembers.php:443 +#: actions/groupmembers.php:450 msgid "Make user an admin of the group" msgstr "Tornar utilizador o gestor do grupo" -#: actions/groupmembers.php:475 +#: actions/groupmembers.php:482 msgid "Make Admin" msgstr "Tornar Gestor" -#: actions/groupmembers.php:475 +#: actions/groupmembers.php:482 msgid "Make this user an admin" msgstr "Tornar este utilizador um gestor" -#: actions/grouprss.php:133 +#: actions/grouprss.php:140 #, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Actualizações dos membros de %1$s em %2$s!" @@ -1986,16 +2019,19 @@ msgstr "Mensagem pessoal" msgid "Optionally add a personal message to the invitation." msgstr "Pode optar por acrescentar uma mensagem pessoal ao convite" -#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:236 +#. TRANS: Send button for inviting friends +#: actions/invite.php:198 +#, fuzzy +msgctxt "BUTTON" msgid "Send" msgstr "Enviar" -#: actions/invite.php:226 +#: actions/invite.php:227 #, 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 +#: actions/invite.php:229 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -2055,7 +2091,12 @@ msgstr "" msgid "You must be logged in to join a group." msgstr "Precisa de iniciar uma sessão para se juntar a um grupo." -#: actions/joingroup.php:131 +#: actions/joingroup.php:88 actions/leavegroup.php:88 +#, fuzzy +msgid "No nickname or ID." +msgstr "Nenhuma utilizador." + +#: actions/joingroup.php:141 #, php-format msgid "%1$s joined group %2$s" msgstr "%1$s juntou-se ao grupo %2$s" @@ -2064,11 +2105,11 @@ msgstr "%1$s juntou-se ao grupo %2$s" msgid "You must be logged in to leave a group." msgstr "Precisa de iniciar uma sessão para deixar um grupo." -#: actions/leavegroup.php:90 lib/command.php:265 +#: actions/leavegroup.php:100 lib/command.php:265 msgid "You are not a member of that group." msgstr "Não é um membro desse grupo." -#: actions/leavegroup.php:127 +#: actions/leavegroup.php:137 #, php-format msgid "%1$s left group %2$s" msgstr "%1$s deixou o grupo %2$s" @@ -2085,8 +2126,7 @@ msgstr "Nome de utilizador ou senha incorrectos." msgid "Error setting user. You are probably not authorized." msgstr "Erro ao preparar o utilizador. Provavelmente não está autorizado." -#: actions/login.php:188 actions/login.php:241 lib/action.php:466 -#: lib/logingroupnav.php:79 +#: actions/login.php:188 actions/login.php:241 lib/logingroupnav.php:79 msgid "Login" msgstr "Entrar" @@ -2346,8 +2386,8 @@ msgstr "tipo de conteúdo " msgid "Only " msgstr "Apenas " -#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 -#: lib/api.php:1068 lib/api.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 +#: lib/apiaction.php:1068 lib/apiaction.php:1177 msgid "Not a supported data format." msgstr "Formato de dados não suportado." @@ -2493,7 +2533,7 @@ msgstr "Não é possível guardar a nova senha." msgid "Password saved." msgstr "Senha gravada." -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:331 +#: actions/pathsadminpanel.php:59 msgid "Paths" msgstr "Localizações" @@ -2526,7 +2566,6 @@ msgid "Invalid SSL server. The maximum length is 255 characters." msgstr "Servidor SSL inválido. O tamanho máximo é 255 caracteres." #: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58 -#: lib/adminpanelaction.php:311 msgid "Site" msgstr "Site" @@ -2700,7 +2739,7 @@ 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:111 actions/register.php:448 -#: actions/showgroup.php:247 actions/tagother.php:104 +#: actions/showgroup.php:255 actions/tagother.php:104 #: lib/groupeditform.php:157 lib/userprofile.php:149 msgid "Full name" msgstr "Nome completo" @@ -2728,7 +2767,7 @@ msgid "Bio" msgstr "Biografia" #: actions/profilesettings.php:132 actions/register.php:471 -#: actions/showgroup.php:256 actions/tagother.php:112 +#: actions/showgroup.php:264 actions/tagother.php:112 #: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:164 msgid "Location" @@ -2810,7 +2849,8 @@ msgstr "Não foi possível gravar o perfil." msgid "Couldn't save tags." msgstr "Não foi possível gravar as categorias." -#: actions/profilesettings.php:391 lib/adminpanelaction.php:137 +#. TRANS: Message after successful saving of administrative settings. +#: actions/profilesettings.php:391 lib/adminpanelaction.php:141 msgid "Settings saved." msgstr "Configurações gravadas." @@ -2823,28 +2863,28 @@ msgstr "Além do limite de página (%s)" msgid "Could not retrieve public stream." msgstr "Não foi possível importar as notas públicas." -#: actions/public.php:129 +#: actions/public.php:130 #, php-format msgid "Public timeline, page %d" msgstr "Notas públicas, página %d" -#: actions/public.php:131 lib/publicgroupnav.php:79 +#: actions/public.php:132 lib/publicgroupnav.php:79 msgid "Public timeline" msgstr "Notas públicas" -#: actions/public.php:159 +#: actions/public.php:160 msgid "Public Stream Feed (RSS 1.0)" msgstr "Fonte de Notas Públicas (RSS 1.0)" -#: actions/public.php:163 +#: actions/public.php:164 msgid "Public Stream Feed (RSS 2.0)" msgstr "Fonte de Notas Públicas (RSS 2.0)" -#: actions/public.php:167 +#: actions/public.php:168 msgid "Public Stream Feed (Atom)" msgstr "Fonte de Notas Públicas (Atom)" -#: actions/public.php:187 +#: actions/public.php:188 #, php-format msgid "" "This is the public timeline for %%site.name%% but no one has posted anything " @@ -2853,11 +2893,11 @@ msgstr "" "Estas são as notas públicas do site %%site.name%% mas ninguém publicou nada " "ainda." -#: actions/public.php:190 +#: actions/public.php:191 msgid "Be the first to post!" msgstr "Seja a primeira pessoa a publicar!" -#: actions/public.php:194 +#: actions/public.php:195 #, php-format msgid "" "Why not [register an account](%%action.register%%) and be the first to post!" @@ -2865,7 +2905,7 @@ msgstr "" "Podia [registar uma conta](%%action.register%%) e ser a primeira pessoa a " "publicar!" -#: actions/public.php:241 +#: actions/public.php:242 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2878,7 +2918,7 @@ msgstr "" "[StatusNet](http://status.net/). [Registe-se agora](%%action.register%%) " "para partilhar notas sobre si, família e amigos! ([Saber mais](%%doc.help%%))" -#: actions/public.php:246 +#: actions/public.php:247 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -3060,8 +3100,7 @@ msgstr "Desculpe, código de convite inválido." msgid "Registration successful" msgstr "Registo efectuado" -#: actions/register.php:114 actions/register.php:503 lib/action.php:463 -#: lib/logingroupnav.php:85 +#: actions/register.php:114 actions/register.php:503 lib/logingroupnav.php:85 msgid "Register" msgstr "Registar" @@ -3247,7 +3286,7 @@ msgstr "Não pode repetir a sua própria nota." msgid "You already repeated that notice." msgstr "Já repetiu essa nota." -#: actions/repeat.php:114 lib/noticelist.php:656 +#: actions/repeat.php:114 lib/noticelist.php:674 msgid "Repeated" msgstr "Repetida" @@ -3255,33 +3294,33 @@ msgstr "Repetida" msgid "Repeated!" msgstr "Repetida!" -#: actions/replies.php:125 actions/repliesrss.php:68 +#: actions/replies.php:126 actions/repliesrss.php:68 #: lib/personalgroupnav.php:105 #, php-format msgid "Replies to %s" msgstr "Respostas a %s" -#: actions/replies.php:127 +#: actions/replies.php:128 #, fuzzy, php-format msgid "Replies to %1$s, page %2$d" msgstr "Respostas a %1$s em %2$s!" -#: actions/replies.php:144 +#: actions/replies.php:145 #, php-format msgid "Replies feed for %s (RSS 1.0)" msgstr "Fonte de respostas a %s (RSS 1.0)" -#: actions/replies.php:151 +#: actions/replies.php:152 #, php-format msgid "Replies feed for %s (RSS 2.0)" msgstr "Fonte de respostas a %s (RSS 2.0)" -#: actions/replies.php:158 +#: actions/replies.php:159 #, php-format msgid "Replies feed for %s (Atom)" msgstr "Fonte de respostas a %s (Atom)" -#: actions/replies.php:198 +#: actions/replies.php:199 #, php-format msgid "" "This is the timeline showing replies to %1$s but %2$s hasn't received a " @@ -3290,7 +3329,7 @@ msgstr "" "Estas são as notas de resposta a %1$s, mas %2$s ainda não recebeu nenhuma " "resposta." -#: actions/replies.php:203 +#: actions/replies.php:204 #, php-format msgid "" "You can engage other users in a conversation, subscribe to more people or " @@ -3299,7 +3338,7 @@ msgstr "" "Pode meter conversa com outros utilizadores, subscrever mais pessoas ou " "[juntar-se a grupos](%%action.groups%%)." -#: actions/replies.php:205 +#: actions/replies.php:206 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) or [post something to his or her " @@ -3326,7 +3365,6 @@ msgid "User is already sandboxed." msgstr "Utilizador já está impedido de criar notas públicas." #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:336 msgid "Sessions" msgstr "Sessões" @@ -3352,7 +3390,7 @@ msgid "Turn on debugging output for sessions." msgstr "Ligar a impressão de dados de depuração, para sessões." #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/useradminpanel.php:293 +#: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "Gravar configurações do site" @@ -3385,7 +3423,7 @@ msgstr "Paginação" msgid "Description" msgstr "Descrição" -#: actions/showapplication.php:192 actions/showgroup.php:429 +#: actions/showapplication.php:192 actions/showgroup.php:437 #: lib/profileaction.php:174 msgid "Statistics" msgstr "Estatísticas" @@ -3448,22 +3486,22 @@ msgstr "Notas favoritas de %s" msgid "Could not retrieve favorite notices." msgstr "Não foi possível importar notas favoritas." -#: actions/showfavorites.php:170 +#: actions/showfavorites.php:171 #, php-format msgid "Feed for favorites of %s (RSS 1.0)" msgstr "Fonte dos favoritos de %s (RSS 1.0)" -#: actions/showfavorites.php:177 +#: actions/showfavorites.php:178 #, php-format msgid "Feed for favorites of %s (RSS 2.0)" msgstr "Fonte dos favoritos de %s (RSS 2.0)" -#: actions/showfavorites.php:184 +#: actions/showfavorites.php:185 #, php-format msgid "Feed for favorites of %s (Atom)" msgstr "Fonte dos favoritos de %s (Atom)" -#: actions/showfavorites.php:205 +#: actions/showfavorites.php:206 msgid "" "You haven't chosen any favorite notices yet. Click the fave button on " "notices you like to bookmark them for later or shed a spotlight on them." @@ -3472,7 +3510,7 @@ msgstr "" "notas de que goste, para marcá-las para mais tarde ou para lhes dar " "relevância." -#: actions/showfavorites.php:207 +#: actions/showfavorites.php:208 #, php-format msgid "" "%s hasn't added any notices to his favorites yet. Post something interesting " @@ -3481,7 +3519,7 @@ msgstr "" "%s ainda não adicionou nenhuma nota às favoritas. Publique algo interessante " "que mude este estado de coisas :)" -#: actions/showfavorites.php:211 +#: actions/showfavorites.php:212 #, php-format msgid "" "%s hasn't added any notices to his favorites yet. Why not [register an " @@ -3492,7 +3530,7 @@ msgstr "" "conta](%%action.register%%) e publicar algo interessante que mude este " "estado de coisas :)" -#: actions/showfavorites.php:242 +#: actions/showfavorites.php:243 msgid "This is a way to share what you like." msgstr "Esta é uma forma de partilhar aquilo de que gosta." @@ -3506,67 +3544,67 @@ msgstr "Grupo %s" msgid "%1$s group, page %2$d" msgstr "Membros do grupo %1$s, página %2$d" -#: actions/showgroup.php:218 +#: actions/showgroup.php:226 msgid "Group profile" msgstr "Perfil do grupo" -#: actions/showgroup.php:263 actions/tagother.php:118 +#: actions/showgroup.php:271 actions/tagother.php:118 #: actions/userauthorization.php:175 lib/userprofile.php:177 msgid "URL" msgstr "URL" -#: actions/showgroup.php:274 actions/tagother.php:128 +#: actions/showgroup.php:282 actions/tagother.php:128 #: actions/userauthorization.php:187 lib/userprofile.php:194 msgid "Note" msgstr "Anotação" -#: actions/showgroup.php:284 lib/groupeditform.php:184 +#: actions/showgroup.php:292 lib/groupeditform.php:184 msgid "Aliases" msgstr "Sinónimos" -#: actions/showgroup.php:293 +#: actions/showgroup.php:301 msgid "Group actions" msgstr "Acções do grupo" -#: actions/showgroup.php:328 +#: actions/showgroup.php:336 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Fonte de notas do grupo %s (RSS 1.0)" -#: actions/showgroup.php:334 +#: actions/showgroup.php:342 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Fonte de notas do grupo %s (RSS 2.0)" -#: actions/showgroup.php:340 +#: actions/showgroup.php:348 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "Fonte de notas do grupo %s (Atom)" -#: actions/showgroup.php:345 +#: actions/showgroup.php:353 #, php-format msgid "FOAF for %s group" msgstr "FOAF do grupo %s" -#: actions/showgroup.php:381 actions/showgroup.php:438 lib/groupnav.php:91 +#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 msgid "Members" msgstr "Membros" -#: actions/showgroup.php:386 lib/profileaction.php:117 +#: actions/showgroup.php:394 lib/profileaction.php:117 #: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(Nenhum)" -#: actions/showgroup.php:392 +#: actions/showgroup.php:400 msgid "All members" msgstr "Todos os membros" -#: actions/showgroup.php:432 +#: actions/showgroup.php:440 msgid "Created" msgstr "Criado" -#: actions/showgroup.php:448 +#: actions/showgroup.php:456 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3582,7 +3620,7 @@ msgstr "" "[Registe-se agora](%%action.register%%) para se juntar a este grupo e a " "muitos mais! ([Saber mais](%%doc.help%%))" -#: actions/showgroup.php:454 +#: actions/showgroup.php:462 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3595,7 +3633,7 @@ msgstr "" "programa de Software Livre [StatusNet](http://status.net/). Os membros deste " "grupo partilham mensagens curtas acerca das suas vidas e interesses. " -#: actions/showgroup.php:482 +#: actions/showgroup.php:490 msgid "Admins" msgstr "Gestores" @@ -4075,22 +4113,22 @@ msgstr "Jabber" msgid "SMS" msgstr "SMS" -#: actions/tag.php:68 +#: actions/tag.php:69 #, fuzzy, php-format msgid "Notices tagged with %1$s, page %2$d" msgstr "Utilizadores auto-categorizados com %1$s - página %2$d" -#: actions/tag.php:86 +#: actions/tag.php:87 #, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Fonte de notas para a categoria %s (RSS 1.0)" -#: actions/tag.php:92 +#: actions/tag.php:93 #, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Fonte de notas para a categoria %s (RSS 2.0)" -#: actions/tag.php:98 +#: actions/tag.php:99 #, php-format msgid "Notice feed for tag %s (Atom)" msgstr "Fonte de notas para a categoria %s (Atom)" @@ -4144,7 +4182,7 @@ msgstr "" msgid "No such tag." msgstr "Categoria não existe." -#: actions/twitapitrends.php:87 +#: actions/twitapitrends.php:85 msgid "API method under construction." msgstr "Método da API em desenvolvimento." @@ -4176,70 +4214,72 @@ msgstr "" "Licença ‘%1$s’ da listenee stream não é compatível com a licença ‘%2$s’ do " "site." -#: actions/useradminpanel.php:58 lib/adminpanelaction.php:321 -#: lib/personalgroupnav.php:115 +#. TRANS: User admin panel title +#: actions/useradminpanel.php:59 +#, fuzzy +msgctxt "TITLE" msgid "User" msgstr "Utilizador" -#: actions/useradminpanel.php:69 +#: actions/useradminpanel.php:70 msgid "User settings for this StatusNet site." msgstr "Configurações do utilizador para este site StatusNet." -#: actions/useradminpanel.php:148 +#: actions/useradminpanel.php:149 msgid "Invalid bio limit. Must be numeric." msgstr "Limite da biografia inválido. Tem de ser numérico." -#: actions/useradminpanel.php:154 +#: actions/useradminpanel.php:155 msgid "Invalid welcome text. Max length is 255 characters." msgstr "Texto de boas-vindas inválido. Tamanho máx. é 255 caracteres." -#: actions/useradminpanel.php:164 +#: actions/useradminpanel.php:165 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "Subscrição predefinida é inválida: '%1$s' não é utilizador." -#: actions/useradminpanel.php:217 lib/accountsettingsaction.php:108 +#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Perfil" -#: actions/useradminpanel.php:221 +#: actions/useradminpanel.php:222 msgid "Bio Limit" msgstr "Limite da Biografia" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:223 msgid "Maximum length of a profile bio in characters." msgstr "Tamanho máximo de uma biografia em caracteres." -#: actions/useradminpanel.php:230 +#: actions/useradminpanel.php:231 msgid "New users" msgstr "Utilizadores novos" -#: actions/useradminpanel.php:234 +#: actions/useradminpanel.php:235 msgid "New user welcome" msgstr "Boas-vindas a utilizadores novos" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:236 msgid "Welcome text for new users (Max 255 chars)." msgstr "Texto de boas-vindas a utilizadores novos (máx. 255 caracteres)." -#: actions/useradminpanel.php:240 +#: actions/useradminpanel.php:241 msgid "Default subscription" msgstr "Subscrição predefinida" -#: actions/useradminpanel.php:241 +#: actions/useradminpanel.php:242 msgid "Automatically subscribe new users to this user." msgstr "Novos utilizadores subscrevem automaticamente este utilizador." -#: actions/useradminpanel.php:250 +#: actions/useradminpanel.php:251 msgid "Invitations" msgstr "Convites" -#: actions/useradminpanel.php:255 +#: actions/useradminpanel.php:256 msgid "Invitations enabled" msgstr "Convites habilitados" -#: actions/useradminpanel.php:257 +#: actions/useradminpanel.php:258 msgid "Whether to allow users to invite new users." msgstr "Permitir, ou não, que utilizadores convidem utilizadores novos." @@ -4434,7 +4474,7 @@ msgstr "" msgid "Plugins" msgstr "Plugins" -#: actions/version.php:196 lib/action.php:747 +#: actions/version.php:196 lib/action.php:778 msgid "Version" msgstr "Versão" @@ -4477,6 +4517,11 @@ msgstr "Não foi possível actualizar o grupo." msgid "Group leave failed." msgstr "Perfil do grupo" +#: classes/Local_group.php:41 +#, fuzzy +msgid "Could not update local group." +msgstr "Não foi possível actualizar o grupo." + #: classes/Login_token.php:76 #, php-format msgid "Could not create login token for %s" @@ -4494,27 +4539,27 @@ msgstr "Não foi possível inserir a mensagem." msgid "Could not update message with new URI." msgstr "Não foi possível actualizar a mensagem com a nova URI." -#: classes/Notice.php:157 +#: classes/Notice.php:172 #, php-format msgid "DB error inserting hashtag: %s" msgstr "Erro na base de dados ao inserir a marca: %s" -#: classes/Notice.php:222 +#: classes/Notice.php:239 msgid "Problem saving notice. Too long." msgstr "Problema na gravação da nota. Demasiado longa." -#: classes/Notice.php:226 +#: classes/Notice.php:243 msgid "Problem saving notice. Unknown user." msgstr "Problema na gravação da nota. Utilizador desconhecido." -#: classes/Notice.php:231 +#: classes/Notice.php:248 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" "Demasiadas notas, demasiado rápido; descanse e volte a publicar daqui a " "alguns minutos." -#: classes/Notice.php:237 +#: classes/Notice.php:254 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." @@ -4522,20 +4567,20 @@ msgstr "" "Demasiadas mensagens duplicadas, demasiado rápido; descanse e volte a " "publicar daqui a alguns minutos." -#: classes/Notice.php:243 +#: classes/Notice.php:260 msgid "You are banned from posting notices on this site." msgstr "Está proibido de publicar notas neste site." -#: classes/Notice.php:309 classes/Notice.php:335 +#: classes/Notice.php:326 classes/Notice.php:352 msgid "Problem saving notice." msgstr "Problema na gravação da nota." -#: classes/Notice.php:882 +#: classes/Notice.php:911 #, fuzzy msgid "Problem saving group inbox." msgstr "Problema na gravação da nota." -#: classes/Notice.php:1407 +#: classes/Notice.php:1442 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -4564,19 +4609,29 @@ msgstr "Não foi possível apagar a auto-subscrição." msgid "Couldn't delete subscription." msgstr "Não foi possível apagar a subscrição." -#: classes/User.php:372 +#: classes/User.php:373 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "%1$s dá-lhe as boas-vindas, @%2$s!" -#: classes/User_group.php:423 +#: classes/User_group.php:462 msgid "Could not create group." msgstr "Não foi possível criar o grupo." -#: classes/User_group.php:452 +#: classes/User_group.php:471 +#, fuzzy +msgid "Could not set group URI." +msgstr "Não foi possível configurar membros do grupo." + +#: classes/User_group.php:492 msgid "Could not set group membership." msgstr "Não foi possível configurar membros do grupo." +#: classes/User_group.php:506 +#, fuzzy +msgid "Could not save local group info." +msgstr "Não foi possível gravar a subscrição." + #: lib/accountsettingsaction.php:108 msgid "Change your profile settings" msgstr "Modificar as suas definições de perfil" @@ -4618,120 +4673,190 @@ msgstr "Página sem título" msgid "Primary site navigation" msgstr "Navegação primária deste site" +#. TRANS: Tooltip for main menu option "Personal" #: lib/action.php:439 -msgid "Home" -msgstr "Início" - -#: lib/action.php:439 +#, fuzzy +msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Perfil pessoal e notas dos amigos" -#: lib/action.php:441 +#: lib/action.php:442 +#, fuzzy +msgctxt "MENU" +msgid "Personal" +msgstr "Pessoal" + +#. TRANS: Tooltip for main menu option "Account" +#: lib/action.php:444 +#, fuzzy +msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Altere o seu endereço electrónico, avatar, senha, perfil" -#: lib/action.php:444 -msgid "Connect" -msgstr "Ligar" +#: lib/action.php:447 +#, fuzzy +msgctxt "MENU" +msgid "Account" +msgstr "Conta" -#: lib/action.php:444 +#. TRANS: Tooltip for main menu option "Services" +#: lib/action.php:450 +#, fuzzy +msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Ligar aos serviços" -#: lib/action.php:448 +#: lib/action.php:453 +#, fuzzy +msgctxt "MENU" +msgid "Connect" +msgstr "Ligar" + +#. TRANS: Tooltip for menu option "Admin" +#: lib/action.php:457 +#, fuzzy +msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Alterar a configuração do site" -#: lib/action.php:452 lib/subgroupnav.php:105 -msgid "Invite" -msgstr "Convidar" +#: lib/action.php:460 +#, fuzzy +msgctxt "MENU" +msgid "Admin" +msgstr "Gestor" -#: lib/action.php:453 lib/subgroupnav.php:106 -#, php-format +#. TRANS: Tooltip for main menu option "Invite" +#: lib/action.php:464 +#, fuzzy, php-format +msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Convidar amigos e colegas para se juntarem a si em %s" -#: lib/action.php:458 -msgid "Logout" -msgstr "Sair" +#: lib/action.php:467 +#, fuzzy +msgctxt "MENU" +msgid "Invite" +msgstr "Convidar" -#: lib/action.php:458 +#. TRANS: Tooltip for main menu option "Logout" +#: lib/action.php:473 +#, fuzzy +msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Terminar esta sessão" -#: lib/action.php:463 +#: lib/action.php:476 +#, fuzzy +msgctxt "MENU" +msgid "Logout" +msgstr "Sair" + +#. TRANS: Tooltip for main menu option "Register" +#: lib/action.php:481 +#, fuzzy +msgctxt "TOOLTIP" msgid "Create an account" msgstr "Criar uma conta" -#: lib/action.php:466 +#: lib/action.php:484 +#, fuzzy +msgctxt "MENU" +msgid "Register" +msgstr "Registar" + +#. TRANS: Tooltip for main menu option "Login" +#: lib/action.php:487 +#, fuzzy +msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Iniciar uma sessão" -#: lib/action.php:469 lib/action.php:732 -msgid "Help" -msgstr "Ajuda" +#: lib/action.php:490 +#, fuzzy +msgctxt "MENU" +msgid "Login" +msgstr "Entrar" -#: lib/action.php:469 +#. TRANS: Tooltip for main menu option "Help" +#: lib/action.php:493 +#, fuzzy +msgctxt "TOOLTIP" msgid "Help me!" msgstr "Ajudem-me!" -#: lib/action.php:472 lib/searchaction.php:127 -msgid "Search" -msgstr "Pesquisa" +#: lib/action.php:496 +#, fuzzy +msgctxt "MENU" +msgid "Help" +msgstr "Ajuda" -#: lib/action.php:472 +#. TRANS: Tooltip for main menu option "Search" +#: lib/action.php:499 +#, fuzzy +msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Procurar pessoas ou pesquisar texto" -#: lib/action.php:493 +#: lib/action.php:502 +#, fuzzy +msgctxt "MENU" +msgid "Search" +msgstr "Pesquisa" + +#. TRANS: DT element for site notice. String is hidden in default CSS. +#: lib/action.php:524 msgid "Site notice" msgstr "Aviso do site" -#: lib/action.php:559 +#: lib/action.php:590 msgid "Local views" msgstr "Vistas locais" -#: lib/action.php:625 +#: lib/action.php:656 msgid "Page notice" msgstr "Aviso da página" -#: lib/action.php:727 +#: lib/action.php:758 msgid "Secondary site navigation" msgstr "Navegação secundária deste site" -#: lib/action.php:734 +#: lib/action.php:763 +msgid "Help" +msgstr "Ajuda" + +#: lib/action.php:765 msgid "About" msgstr "Sobre" -#: lib/action.php:736 +#: lib/action.php:767 msgid "FAQ" msgstr "FAQ" -#: lib/action.php:740 +#: lib/action.php:771 msgid "TOS" msgstr "Termos" -#: lib/action.php:743 +#: lib/action.php:774 msgid "Privacy" msgstr "Privacidade" -#: lib/action.php:745 +#: lib/action.php:776 msgid "Source" msgstr "Código" -#: lib/action.php:749 +#: lib/action.php:780 msgid "Contact" msgstr "Contacto" -#: lib/action.php:751 +#: lib/action.php:782 msgid "Badge" msgstr "Emblema" -#: lib/action.php:779 +#: lib/action.php:810 msgid "StatusNet software license" msgstr "Licença de software do StatusNet" -#: lib/action.php:782 +#: lib/action.php:813 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4740,12 +4865,12 @@ msgstr "" "**%%site.name%%** é um serviço de microblogues disponibilizado por [%%site." "broughtby%%](%%site.broughtbyurl%%). " -#: lib/action.php:784 +#: lib/action.php:815 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** é um serviço de microblogues. " -#: lib/action.php:786 +#: lib/action.php:817 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4756,108 +4881,161 @@ msgstr "" "disponibilizado nos termos da [GNU Affero General Public License](http://www." "fsf.org/licensing/licenses/agpl-3.0.html)." -#: lib/action.php:801 +#: lib/action.php:832 msgid "Site content license" msgstr "Licença de conteúdos do site" -#: lib/action.php:806 +#: lib/action.php:837 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:811 +#: lib/action.php:842 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:814 +#: lib/action.php:845 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" -#: lib/action.php:827 +#: lib/action.php:858 msgid "All " msgstr "Tudo " -#: lib/action.php:833 +#: lib/action.php:864 msgid "license." msgstr "licença." -#: lib/action.php:1132 +#: lib/action.php:1163 msgid "Pagination" msgstr "Paginação" -#: lib/action.php:1141 +#: lib/action.php:1172 msgid "After" msgstr "Posteriores" -#: lib/action.php:1149 +#: lib/action.php:1180 msgid "Before" msgstr "Anteriores" -#: lib/activity.php:382 +#: lib/activity.php:449 msgid "Can't handle remote content yet." msgstr "" -#: lib/activity.php:410 +#: lib/activity.php:477 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activity.php:414 +#: lib/activity.php:481 msgid "Can't handle embedded Base64 content yet." msgstr "" -#: lib/adminpanelaction.php:96 +#. TRANS: Client error message +#: lib/adminpanelaction.php:98 msgid "You cannot make changes to this site." msgstr "Não pode fazer alterações a este site." -#: lib/adminpanelaction.php:107 +#. TRANS: Client error message +#: lib/adminpanelaction.php:110 msgid "Changes to that panel are not allowed." msgstr "Não são permitidas alterações a esse painel." -#: lib/adminpanelaction.php:206 +#. TRANS: Client error message +#: lib/adminpanelaction.php:211 msgid "showForm() not implemented." msgstr "showForm() não implementado." -#: lib/adminpanelaction.php:235 +#. TRANS: Client error message +#: lib/adminpanelaction.php:241 msgid "saveSettings() not implemented." msgstr "saveSettings() não implementado." -#: lib/adminpanelaction.php:258 +#. TRANS: Client error message +#: lib/adminpanelaction.php:265 msgid "Unable to delete design setting." msgstr "Não foi possível apagar a configuração do estilo." -#: lib/adminpanelaction.php:312 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:330 msgid "Basic site configuration" msgstr "Configuração básica do site" -#: lib/adminpanelaction.php:317 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:332 +#, fuzzy +msgctxt "MENU" +msgid "Site" +msgstr "Site" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:338 msgid "Design configuration" msgstr "Configuração do estilo" -#: lib/adminpanelaction.php:322 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:340 +#, fuzzy +msgctxt "MENU" +msgid "Design" +msgstr "Estilo" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:346 #, fuzzy msgid "User configuration" msgstr "Configuração das localizações" -#: lib/adminpanelaction.php:327 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:348 +#, fuzzy +msgctxt "MENU" +msgid "User" +msgstr "Utilizador" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:354 #, fuzzy msgid "Access configuration" msgstr "Configuração do estilo" -#: lib/adminpanelaction.php:332 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:356 +#, fuzzy +msgctxt "MENU" +msgid "Access" +msgstr "Acesso" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:362 msgid "Paths configuration" msgstr "Configuração das localizações" -#: lib/adminpanelaction.php:337 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:364 +#, fuzzy +msgctxt "MENU" +msgid "Paths" +msgstr "Localizações" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:370 #, fuzzy msgid "Sessions configuration" msgstr "Configuração do estilo" -#: lib/apiauth.php:95 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:372 +#, fuzzy +msgctxt "MENU" +msgid "Sessions" +msgstr "Sessões" + +#: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." msgstr "" -#: lib/apiauth.php:273 +#: lib/apiauth.php:272 #, php-format msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" msgstr "" @@ -4952,11 +5130,11 @@ msgstr "Notas em que este anexo aparece" msgid "Tags for this attachment" msgstr "Categorias para este anexo" -#: lib/authenticationplugin.php:218 lib/authenticationplugin.php:223 +#: lib/authenticationplugin.php:220 lib/authenticationplugin.php:225 msgid "Password changing failed" msgstr "Não foi possível mudar a palavra-chave" -#: lib/authenticationplugin.php:233 +#: lib/authenticationplugin.php:235 msgid "Password changing is not allowed" msgstr "Não é permitido mudar a palavra-chave" @@ -5272,19 +5450,19 @@ msgstr "" "tracks - ainda não implementado.\n" "tracking - ainda não implementado.\n" -#: lib/common.php:136 +#: lib/common.php:148 msgid "No configuration file found. " msgstr "Ficheiro de configuração não encontrado. " -#: lib/common.php:137 +#: lib/common.php:149 msgid "I looked for configuration files in the following places: " msgstr "Procurei ficheiros de configuração nos seguintes sítios: " -#: lib/common.php:139 +#: lib/common.php:151 msgid "You may wish to run the installer to fix this." msgstr "Talvez queira correr o instalador para resolver esta questão." -#: lib/common.php:140 +#: lib/common.php:152 msgid "Go to the installer." msgstr "Ir para o instalador." @@ -5474,23 +5652,23 @@ msgstr "Ocorreu um erro de sistema ao transferir o ficheiro." msgid "Not an image or corrupt file." msgstr "Ficheiro não é uma imagem ou está corrompido." -#: lib/imagefile.php:105 +#: lib/imagefile.php:109 msgid "Unsupported image file format." msgstr "Formato do ficheiro da imagem não é suportado." -#: lib/imagefile.php:118 +#: lib/imagefile.php:122 msgid "Lost our file." msgstr "Perdi o nosso ficheiro." -#: lib/imagefile.php:150 lib/imagefile.php:197 +#: lib/imagefile.php:166 lib/imagefile.php:231 msgid "Unknown file type" msgstr "Tipo do ficheiro é desconhecido" -#: lib/imagefile.php:217 +#: lib/imagefile.php:251 msgid "MB" msgstr "MB" -#: lib/imagefile.php:219 +#: lib/imagefile.php:253 msgid "kB" msgstr "kB" @@ -5873,6 +6051,12 @@ msgstr "Para" msgid "Available characters" msgstr "Caracteres disponíveis" +#: lib/messageform.php:178 lib/noticeform.php:236 +#, fuzzy +msgctxt "Send button for sending notice" +msgid "Send" +msgstr "Enviar" + #: lib/noticeform.php:160 msgid "Send a notice" msgstr "Enviar uma nota" @@ -5930,23 +6114,23 @@ msgstr "O" msgid "at" msgstr "coords." -#: lib/noticelist.php:558 +#: lib/noticelist.php:566 msgid "in context" msgstr "no contexto" -#: lib/noticelist.php:583 +#: lib/noticelist.php:601 msgid "Repeated by" msgstr "Repetida por" -#: lib/noticelist.php:610 +#: lib/noticelist.php:628 msgid "Reply to this notice" msgstr "Responder a esta nota" -#: lib/noticelist.php:611 +#: lib/noticelist.php:629 msgid "Reply" msgstr "Responder" -#: lib/noticelist.php:655 +#: lib/noticelist.php:673 msgid "Notice repeated" msgstr "Nota repetida" @@ -5994,6 +6178,10 @@ msgstr "Respostas" msgid "Favorites" msgstr "Favoritas" +#: lib/personalgroupnav.php:115 +msgid "User" +msgstr "Utilizador" + #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "Recebidas" @@ -6083,7 +6271,7 @@ msgstr "Repetir esta nota?" msgid "Repeat this notice" msgstr "Repetir esta nota" -#: lib/router.php:665 +#: lib/router.php:668 msgid "No single user defined for single-user mode." msgstr "" @@ -6103,6 +6291,10 @@ msgstr "Pesquisar site" msgid "Keyword(s)" msgstr "Categorias" +#: lib/searchaction.php:127 +msgid "Search" +msgstr "Pesquisa" + #: lib/searchaction.php:162 msgid "Search help" msgstr "Pesquisar ajuda" @@ -6154,6 +6346,15 @@ msgstr "Pessoas que subscrevem %s" msgid "Groups %s is a member of" msgstr "Grupos de que %s é membro" +#: lib/subgroupnav.php:105 +msgid "Invite" +msgstr "Convidar" + +#: lib/subgroupnav.php:106 +#, php-format +msgid "Invite friends and colleagues to join you on %s" +msgstr "Convidar amigos e colegas para se juntarem a si em %s" + #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -6224,47 +6425,47 @@ msgstr "Mensagem" msgid "Moderate" msgstr "Moderar" -#: lib/util.php:952 +#: lib/util.php:1013 msgid "a few seconds ago" msgstr "há alguns segundos" -#: lib/util.php:954 +#: lib/util.php:1015 msgid "about a minute ago" msgstr "há cerca de um minuto" -#: lib/util.php:956 +#: lib/util.php:1017 #, php-format msgid "about %d minutes ago" msgstr "há cerca de %d minutos" -#: lib/util.php:958 +#: lib/util.php:1019 msgid "about an hour ago" msgstr "há cerca de uma hora" -#: lib/util.php:960 +#: lib/util.php:1021 #, php-format msgid "about %d hours ago" msgstr "há cerca de %d horas" -#: lib/util.php:962 +#: lib/util.php:1023 msgid "about a day ago" msgstr "há cerca de um dia" -#: lib/util.php:964 +#: lib/util.php:1025 #, php-format msgid "about %d days ago" msgstr "há cerca de %d dias" -#: lib/util.php:966 +#: lib/util.php:1027 msgid "about a month ago" msgstr "há cerca de um mês" -#: lib/util.php:968 +#: lib/util.php:1029 #, php-format msgid "about %d months ago" msgstr "há cerca de %d meses" -#: lib/util.php:970 +#: lib/util.php:1031 msgid "about a year ago" msgstr "há cerca de um ano" diff --git a/locale/pt_BR/LC_MESSAGES/statusnet.po b/locale/pt_BR/LC_MESSAGES/statusnet.po index 18659cecf5..041a2d4a3f 100644 --- a/locale/pt_BR/LC_MESSAGES/statusnet.po +++ b/locale/pt_BR/LC_MESSAGES/statusnet.po @@ -11,75 +11,82 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-02-24 23:49+0000\n" -"PO-Revision-Date: 2010-02-24 23:51:37+0000\n" +"POT-Creation-Date: 2010-03-02 21:02+0000\n" +"PO-Revision-Date: 2010-03-02 21:03:41+0000\n" "Language-Team: Brazilian Portuguese\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r62925); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: actions/accessadminpanel.php:54 lib/adminpanelaction.php:326 +#. TRANS: Page title +#: actions/accessadminpanel.php:55 msgid "Access" msgstr "Acesso" -#: actions/accessadminpanel.php:65 +#. TRANS: Page notice +#: actions/accessadminpanel.php:67 msgid "Site access settings" msgstr "Configurações de acesso ao site" -#: actions/accessadminpanel.php:158 +#. TRANS: Form legend for registration form. +#: actions/accessadminpanel.php:161 msgid "Registration" msgstr "Registro" -#: actions/accessadminpanel.php:161 -msgid "Private" -msgstr "Particular" - -#: actions/accessadminpanel.php:163 +#. TRANS: Checkbox instructions for admin setting "Private" +#: actions/accessadminpanel.php:165 msgid "Prohibit anonymous users (not logged in) from viewing site?" msgstr "Impedir usuários anônimos (não autenticados) de visualizar o site?" +#. TRANS: Checkbox label for prohibiting anonymous users from viewing site. #: actions/accessadminpanel.php:167 -msgid "Invite only" -msgstr "Somente convidados" +#, fuzzy +msgctxt "LABEL" +msgid "Private" +msgstr "Particular" -#: actions/accessadminpanel.php:169 +#. TRANS: Checkbox instructions for admin setting "Invite only" +#: actions/accessadminpanel.php:174 msgid "Make registration invitation only." msgstr "Cadastro liberado somente para convidados." -#: actions/accessadminpanel.php:173 -msgid "Closed" -msgstr "Fechado" +#. TRANS: Checkbox label for configuring site as invite only. +#: actions/accessadminpanel.php:176 +msgid "Invite only" +msgstr "Somente convidados" -#: actions/accessadminpanel.php:175 +#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations) +#: actions/accessadminpanel.php:183 msgid "Disable new registrations." msgstr "Desabilita novos registros." -#: actions/accessadminpanel.php:189 actions/designadminpanel.php:586 -#: actions/emailsettings.php:195 actions/imsettings.php:163 -#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 -#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 -#: actions/siteadminpanel.php:336 actions/smssettings.php:181 -#: actions/subscriptions.php:208 actions/tagother.php:154 -#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 -#: lib/applicationeditform.php:334 lib/designsettings.php:256 -#: lib/groupeditform.php:202 -msgid "Save" -msgstr "Salvar" +#. TRANS: Checkbox label for disabling new user registrations. +#: actions/accessadminpanel.php:185 +msgid "Closed" +msgstr "Fechado" -#: actions/accessadminpanel.php:189 +#. TRANS: Title / tooltip for button to save access settings in site admin panel +#: actions/accessadminpanel.php:202 msgid "Save access settings" msgstr "Salvar as configurações de acesso" -#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 -#: actions/showfavorites.php:137 actions/tag.php:51 +#: actions/accessadminpanel.php:203 +#, fuzzy +msgctxt "BUTTON" +msgid "Save" +msgstr "Salvar" + +#. TRANS: Server error when page not found (404) +#: actions/all.php:64 actions/public.php:98 actions/replies.php:93 +#: actions/showfavorites.php:138 actions/tag.php:52 msgid "No such page" msgstr "Esta página não existe." -#: actions/all.php:74 actions/allrss.php:68 +#: actions/all.php:75 actions/allrss.php:68 #: actions/apiaccountupdatedeliverydevice.php:113 #: actions/apiaccountupdateprofile.php:105 #: actions/apiaccountupdateprofilebackgroundimage.php:116 @@ -93,45 +100,53 @@ msgstr "Esta página não existe." #: actions/apitimelinehome.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/otp.php:76 -#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154 -#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 -#: actions/showfavorites.php:105 actions/userbyid.php:74 -#: actions/usergroups.php:91 actions/userrss.php:38 actions/xrds.php:71 -#: lib/command.php:163 lib/command.php:302 lib/command.php:355 -#: lib/command.php:401 lib/command.php:462 lib/command.php:518 -#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 +#: actions/hcard.php:67 actions/microsummary.php:62 actions/newmessage.php:116 +#: actions/otp.php:76 actions/remotesubscribe.php:145 +#: actions/remotesubscribe.php:154 actions/replies.php:73 +#: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/xrds.php:71 lib/command.php:163 lib/command.php:302 +#: lib/command.php:355 lib/command.php:401 lib/command.php:462 +#: lib/command.php:518 lib/galleryaction.php:59 lib/mailbox.php:82 +#: lib/profileaction.php:77 msgid "No such user." msgstr "Este usuário não existe." -#: actions/all.php:84 +#. TRANS: Page title. %1$s is user nickname, %2$d is page number +#: actions/all.php:86 #, php-format msgid "%1$s and friends, page %2$d" msgstr "%1$s e amigos, pág. %2$d" -#: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 +#. TRANS: Page title. %1$s is user nickname +#. TRANS: H1 text. %1$s is user nickname +#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" msgstr "%s e amigos" -#: actions/all.php:99 +#. TRANS: %1$s is user nickname +#: actions/all.php:103 #, php-format msgid "Feed for friends of %s (RSS 1.0)" msgstr "Fonte de mensagens dos amigos de %s (RSS 1.0)" -#: actions/all.php:107 +#. TRANS: %1$s is user nickname +#: actions/all.php:112 #, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "Fonte de mensagens dos amigos de %s (RSS 2.0)" -#: actions/all.php:115 +#. TRANS: %1$s is user nickname +#: actions/all.php:121 #, php-format msgid "Feed for friends of %s (Atom)" msgstr "Fonte de mensagens dos amigos de %s (Atom)" -#: actions/all.php:127 +#. TRANS: %1$s is user nickname +#: actions/all.php:134 #, php-format msgid "" "This is the timeline for %s and friends but no one has posted anything yet." @@ -139,7 +154,7 @@ msgstr "" "Esse é o fluxo de mensagens de %s e seus amigos, mas ninguém publicou nada " "ainda." -#: actions/all.php:132 +#: actions/all.php:139 #, php-format msgid "" "Try subscribing to more people, [join a group](%%action.groups%%) or post " @@ -148,7 +163,8 @@ msgstr "" "Tente assinar mais pessoas, [unir-ser a um grupo](%%action.groups%%) ou " "publicar algo." -#: actions/all.php:134 +#. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@" +#: actions/all.php:142 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) from his profile or [post something to " @@ -158,7 +174,7 @@ msgstr "" "[publicar alguma coisa que desperte seu interesse](%%%%action.newnotice%%%%?" "status_textarea=%3$s)." -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211 +#: actions/all.php:145 actions/replies.php:210 actions/showstream.php:211 #, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " @@ -167,7 +183,8 @@ msgstr "" "Por que não [registrar uma conta](%%%%action.register%%%%) e então chamar a " "atenção de %s ou publicar uma mensagem para sua atenção." -#: actions/all.php:165 +#. TRANS: H1 text +#: actions/all.php:174 msgid "You and friends" msgstr "Você e amigos" @@ -185,20 +202,20 @@ msgstr "Atualizações de %1$s e amigos no %2$s!" #: actions/apiaccountverifycredentials.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:128 actions/apigroupcreate.php:136 +#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: actions/apigroupleave.php:141 actions/apigrouplist.php:132 #: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 #: actions/apigroupshow.php:115 actions/apihelptest.php:88 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 -#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184 +#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 #: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:207 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 msgid "API method not found." msgstr "O método da API não foi encontrado!" @@ -232,8 +249,9 @@ msgstr "Não foi possível atualizar o usuário." #: actions/apiaccountupdateprofilebackgroundimage.php:194 #: actions/apiaccountupdateprofilecolors.php:185 #: 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 +#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 +#: 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." @@ -259,7 +277,7 @@ msgstr "" #: actions/apiaccountupdateprofilebackgroundimage.php:146 #: actions/apiaccountupdateprofilecolors.php:164 #: actions/apiaccountupdateprofilecolors.php:174 -#: actions/groupdesignsettings.php:287 actions/groupdesignsettings.php:297 +#: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300 #: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 #: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 msgid "Unable to save your design settings." @@ -371,7 +389,7 @@ msgstr "Não foi possível determinar o usuário de origem." msgid "Could not find target user." msgstr "Não foi possível encontrar usuário de destino." -#: actions/apigroupcreate.php:164 actions/editgroup.php:182 +#: actions/apigroupcreate.php:166 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:215 #: actions/register.php:205 msgid "Nickname must have only lowercase letters and numbers and no spaces." @@ -379,62 +397,62 @@ msgstr "" "A identificação deve conter apenas letras minúsculas e números e não pode " "ter e espaços." -#: actions/apigroupcreate.php:173 actions/editgroup.php:186 +#: actions/apigroupcreate.php:175 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:238 #: actions/register.php:208 msgid "Nickname already in use. Try another one." msgstr "Esta identificação já está em uso. Tente outro." -#: actions/apigroupcreate.php:180 actions/editgroup.php:189 +#: actions/apigroupcreate.php:182 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:218 #: actions/register.php:210 msgid "Not a valid nickname." msgstr "Não é uma identificação válida." -#: actions/apigroupcreate.php:196 actions/editapplication.php:215 -#: actions/editgroup.php:195 actions/newapplication.php:203 +#: actions/apigroupcreate.php:198 actions/editapplication.php:215 +#: actions/editgroup.php:199 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:217 msgid "Homepage is not a valid URL." msgstr "A URL informada não é válida." -#: actions/apigroupcreate.php:205 actions/editgroup.php:198 +#: actions/apigroupcreate.php:207 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:225 #: actions/register.php:220 msgid "Full name is too long (max 255 chars)." msgstr "Nome completo muito extenso (máx. 255 caracteres)" -#: actions/apigroupcreate.php:213 actions/editapplication.php:190 +#: actions/apigroupcreate.php:215 actions/editapplication.php:190 #: actions/newapplication.php:172 #, php-format msgid "Description is too long (max %d chars)." msgstr "Descrição muito extensa (máximo %d caracteres)." -#: actions/apigroupcreate.php:224 actions/editgroup.php:204 +#: actions/apigroupcreate.php:226 actions/editgroup.php:208 #: actions/newgroup.php:148 actions/profilesettings.php:232 #: actions/register.php:227 msgid "Location is too long (max 255 chars)." msgstr "Localização muito extensa (máx. 255 caracteres)." -#: actions/apigroupcreate.php:243 actions/editgroup.php:215 +#: actions/apigroupcreate.php:245 actions/editgroup.php:219 #: actions/newgroup.php:159 #, php-format msgid "Too many aliases! Maximum %d." msgstr "Muitos apelidos! O máximo são %d." -#: actions/apigroupcreate.php:264 actions/editgroup.php:224 +#: actions/apigroupcreate.php:266 actions/editgroup.php:228 #: actions/newgroup.php:168 #, php-format msgid "Invalid alias: \"%s\"" msgstr "Apelido inválido: \"%s\"" -#: actions/apigroupcreate.php:273 actions/editgroup.php:228 +#: actions/apigroupcreate.php:275 actions/editgroup.php:232 #: actions/newgroup.php:172 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "O apelido \"%s\" já está em uso. Tente outro." -#: actions/apigroupcreate.php:286 actions/editgroup.php:234 +#: actions/apigroupcreate.php:288 actions/editgroup.php:238 #: actions/newgroup.php:178 msgid "Alias can't be the same as nickname." msgstr "O apelido não pode ser igual à identificação." @@ -445,15 +463,15 @@ msgstr "O apelido não pode ser igual à identificação." msgid "Group not found!" msgstr "O grupo não foi encontrado!" -#: actions/apigroupjoin.php:110 actions/joingroup.php:90 +#: actions/apigroupjoin.php:110 actions/joingroup.php:100 msgid "You are already a member of that group." msgstr "Você já é membro desse grupo." -#: actions/apigroupjoin.php:119 actions/joingroup.php:95 lib/command.php:221 +#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:221 msgid "You have been blocked from that group by the admin." msgstr "O administrador desse grupo bloqueou sua inscrição." -#: actions/apigroupjoin.php:138 actions/joingroup.php:124 +#: actions/apigroupjoin.php:138 actions/joingroup.php:134 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Não foi possível associar o usuário %1$s ao grupo %2$s." @@ -462,7 +480,7 @@ msgstr "Não foi possível associar o usuário %1$s ao grupo %2$s." msgid "You are not a member of this group." msgstr "Você não é membro deste grupo." -#: actions/apigroupleave.php:124 actions/leavegroup.php:119 +#: actions/apigroupleave.php:124 actions/leavegroup.php:129 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "Não foi possível remover o usuário %1$s do grupo %2$s." @@ -493,7 +511,7 @@ msgstr "Token inválido." #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 #: actions/deletenotice.php:157 actions/disfavor.php:74 #: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54 -#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupblock.php:66 actions/grouplogo.php:312 #: actions/groupunblock.php:66 actions/imsettings.php:206 #: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 @@ -539,7 +557,7 @@ msgstr "O token %s solicitado foi negado e revogado." #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:103 actions/editapplication.php:139 -#: actions/emailsettings.php:256 actions/grouplogo.php:319 +#: actions/emailsettings.php:256 actions/grouplogo.php:322 #: actions/imsettings.php:220 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 #: actions/smssettings.php:248 lib/designsettings.php:304 @@ -566,13 +584,13 @@ msgstr "" "fornecer acesso à sua conta %4$s somente para terceiros nos quais você " "confia." -#: actions/apioauthauthorize.php:310 lib/action.php:441 +#: actions/apioauthauthorize.php:310 msgid "Account" msgstr "Conta" #: actions/apioauthauthorize.php:313 actions/login.php:230 #: actions/profilesettings.php:106 actions/register.php:424 -#: actions/showgroup.php:236 actions/tagother.php:94 +#: actions/showgroup.php:244 actions/tagother.php:94 #: actions/userauthorization.php:145 lib/groupeditform.php:152 #: lib/userprofile.php:131 msgid "Nickname" @@ -654,12 +672,12 @@ msgid "%1$s updates favorited by %2$s / %2$s." msgstr "%1$s marcadas como favoritas por %2$s / %2$s." #: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:131 actions/userrss.php:90 +#: actions/grouprss.php:138 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "Mensagens de %s" -#: actions/apitimelinegroup.php:114 actions/apitimelineuser.php:126 +#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 #: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" @@ -695,7 +713,7 @@ msgstr "Repetida para %s" msgid "Repeats of %s" msgstr "Repetições de %s" -#: actions/apitimelinetag.php:102 actions/tag.php:66 +#: actions/apitimelinetag.php:102 actions/tag.php:67 #, php-format msgid "Notices tagged with %s" msgstr "Mensagens etiquetadas como %s" @@ -716,8 +734,7 @@ msgstr "Este anexo não existe." #: actions/avatarbynickname.php:59 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/leavegroup.php:76 -#: actions/showgroup.php:121 +#: actions/grouprss.php:91 actions/showgroup.php:121 msgid "No nickname." msgstr "Nenhuma identificação." @@ -729,7 +746,7 @@ msgstr "Sem tamanho definido." msgid "Invalid size." msgstr "Tamanho inválido." -#: actions/avatarsettings.php:67 actions/showgroup.php:221 +#: actions/avatarsettings.php:67 actions/showgroup.php:229 #: lib/accountsettingsaction.php:112 msgid "Avatar" msgstr "Avatar" @@ -747,30 +764,30 @@ msgid "User without matching profile" msgstr "Usuário sem um perfil correspondente" #: actions/avatarsettings.php:119 actions/avatarsettings.php:197 -#: actions/grouplogo.php:251 +#: actions/grouplogo.php:254 msgid "Avatar settings" msgstr "Configurações do avatar" #: actions/avatarsettings.php:127 actions/avatarsettings.php:205 -#: actions/grouplogo.php:199 actions/grouplogo.php:259 +#: actions/grouplogo.php:202 actions/grouplogo.php:262 msgid "Original" msgstr "Original" #: actions/avatarsettings.php:142 actions/avatarsettings.php:217 -#: actions/grouplogo.php:210 actions/grouplogo.php:271 +#: actions/grouplogo.php:213 actions/grouplogo.php:274 msgid "Preview" msgstr "Visualização" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:637 +#: lib/deleteuserform.php:66 lib/noticelist.php:655 msgid "Delete" msgstr "Excluir" -#: actions/avatarsettings.php:166 actions/grouplogo.php:233 +#: actions/avatarsettings.php:166 actions/grouplogo.php:236 msgid "Upload" msgstr "Enviar" -#: actions/avatarsettings.php:231 actions/grouplogo.php:286 +#: actions/avatarsettings.php:231 actions/grouplogo.php:289 msgid "Crop" msgstr "Cortar" @@ -778,7 +795,7 @@ msgstr "Cortar" msgid "Pick a square area of the image to be your avatar" msgstr "Selecione uma área quadrada da imagem para ser seu avatar" -#: actions/avatarsettings.php:343 actions/grouplogo.php:377 +#: actions/avatarsettings.php:343 actions/grouplogo.php:380 msgid "Lost our file data." msgstr "Os dados do nosso arquivo foram perdidos." @@ -814,22 +831,22 @@ msgstr "" "você." #: actions/block.php:143 actions/deleteapplication.php:153 -#: actions/deletenotice.php:145 actions/deleteuser.php:147 +#: actions/deletenotice.php:145 actions/deleteuser.php:150 #: actions/groupblock.php:178 msgid "No" msgstr "Não" -#: actions/block.php:143 actions/deleteuser.php:147 +#: actions/block.php:143 actions/deleteuser.php:150 msgid "Do not block this user" msgstr "Não bloquear este usuário" #: actions/block.php:144 actions/deleteapplication.php:158 -#: actions/deletenotice.php:146 actions/deleteuser.php:148 +#: actions/deletenotice.php:146 actions/deleteuser.php:151 #: actions/groupblock.php:179 lib/repeatform.php:132 msgid "Yes" msgstr "Sim" -#: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:355 lib/blockform.php:80 msgid "Block this user" msgstr "Bloquear este usuário" @@ -837,39 +854,43 @@ msgstr "Bloquear este usuário" msgid "Failed to save block information." msgstr "Não foi possível salvar a informação de bloqueio." -#: actions/blockedfromgroup.php:80 actions/editgroup.php:96 -#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/groupblock.php:86 -#: actions/groupbyid.php:83 actions/groupdesignsettings.php:97 -#: actions/grouplogo.php:99 actions/groupmembers.php:83 -#: actions/grouprss.php:98 actions/groupunblock.php:86 -#: actions/joingroup.php:83 actions/leavegroup.php:83 actions/makeadmin.php:86 -#: actions/showgroup.php:137 lib/command.php:212 lib/command.php:260 +#: actions/blockedfromgroup.php:80 actions/blockedfromgroup.php:87 +#: actions/editgroup.php:100 actions/foafgroup.php:44 actions/foafgroup.php:62 +#: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:100 actions/grouplogo.php:102 +#: actions/groupmembers.php:83 actions/groupmembers.php:90 +#: actions/grouprss.php:98 actions/grouprss.php:105 +#: actions/groupunblock.php:86 actions/joingroup.php:82 +#: actions/joingroup.php:93 actions/leavegroup.php:82 +#: actions/leavegroup.php:93 actions/makeadmin.php:86 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:212 +#: lib/command.php:260 msgid "No such group." msgstr "Esse grupo não existe." -#: actions/blockedfromgroup.php:90 +#: actions/blockedfromgroup.php:97 #, php-format msgid "%s blocked profiles" msgstr "Perfis bloqueados no %s" -#: actions/blockedfromgroup.php:93 +#: actions/blockedfromgroup.php:100 #, php-format msgid "%1$s blocked profiles, page %2$d" msgstr "Perfis bloqueados no %1$s, pág. %2$d" -#: actions/blockedfromgroup.php:108 +#: actions/blockedfromgroup.php:115 msgid "A list of the users blocked from joining this group." msgstr "Uma lista dos usuários proibidos de se associarem a este grupo." -#: actions/blockedfromgroup.php:281 +#: actions/blockedfromgroup.php:288 msgid "Unblock user from group" msgstr "Desbloquear o usuário do grupo" -#: actions/blockedfromgroup.php:313 lib/unblockform.php:69 +#: actions/blockedfromgroup.php:320 lib/unblockform.php:69 msgid "Unblock" msgstr "Desbloquear" -#: actions/blockedfromgroup.php:313 lib/unblockform.php:80 +#: actions/blockedfromgroup.php:320 lib/unblockform.php:80 msgid "Unblock this user" msgstr "Desbloquear este usuário" @@ -944,7 +965,7 @@ msgstr "Você não é o dono desta aplicação." #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1197 +#: lib/action.php:1228 msgid "There was a problem with your session token." msgstr "Ocorreu um problema com o seu token de sessão." @@ -970,12 +991,13 @@ msgstr "Não excluir esta aplicação" msgid "Delete this application" msgstr "Excluir esta aplicação" +#. TRANS: Client error message #: 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:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 -#: lib/adminpanelaction.php:72 lib/profileformaction.php:63 +#: lib/adminpanelaction.php:73 lib/profileformaction.php:63 #: lib/settingsaction.php:72 msgid "Not logged in." msgstr "Você não está autenticado." @@ -1004,7 +1026,7 @@ msgstr "Tem certeza que deseja excluir esta mensagem?" msgid "Do not delete this notice" msgstr "Não excluir esta mensagem." -#: actions/deletenotice.php:146 lib/noticelist.php:637 +#: actions/deletenotice.php:146 lib/noticelist.php:655 msgid "Delete this notice" msgstr "Excluir esta mensagem" @@ -1020,7 +1042,7 @@ msgstr "Você só pode excluir usuários locais." msgid "Delete user" msgstr "Excluir usuário" -#: actions/deleteuser.php:135 +#: actions/deleteuser.php:136 msgid "" "Are you sure you want to delete this user? This will clear all data about " "the user from the database, without a backup." @@ -1028,12 +1050,12 @@ msgstr "" "Tem certeza que deseja excluir este usuário? Isso eliminará todos os dados " "deste usuário do banco de dados, sem cópia de segurança." -#: actions/deleteuser.php:148 lib/deleteuserform.php:77 +#: actions/deleteuser.php:151 lib/deleteuserform.php:77 msgid "Delete this user" msgstr "Excluir este usuário" #: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 -#: lib/adminpanelaction.php:316 lib/groupnav.php:119 +#: lib/groupnav.php:119 msgid "Design" msgstr "Aparência" @@ -1136,6 +1158,17 @@ msgstr "Restaura a aparência padrão" msgid "Reset back to default" msgstr "Restaura de volta ao padrão" +#: actions/designadminpanel.php:586 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/tagother.php:154 actions/useradminpanel.php:294 +#: lib/applicationeditform.php:333 lib/applicationeditform.php:334 +#: lib/designsettings.php:256 lib/groupeditform.php:202 +msgid "Save" +msgstr "Salvar" + #: actions/designadminpanel.php:587 lib/designsettings.php:257 msgid "Save design" msgstr "Salvar a aparência" @@ -1227,29 +1260,29 @@ msgstr "Editar o grupo %s" msgid "You must be logged in to create a group." msgstr "Você deve estar autenticado para criar um grupo." -#: actions/editgroup.php:103 actions/editgroup.php:168 -#: actions/groupdesignsettings.php:104 actions/grouplogo.php:106 +#: actions/editgroup.php:107 actions/editgroup.php:172 +#: actions/groupdesignsettings.php:107 actions/grouplogo.php:109 msgid "You must be an admin to edit the group." msgstr "Você deve ser um administrador para editar o grupo." -#: actions/editgroup.php:154 +#: actions/editgroup.php:158 msgid "Use this form to edit the group." msgstr "Use esse formulário para editar o grupo." -#: actions/editgroup.php:201 actions/newgroup.php:145 +#: actions/editgroup.php:205 actions/newgroup.php:145 #, php-format msgid "description is too long (max %d chars)." msgstr "descrição muito extensa (máximo %d caracteres)." -#: actions/editgroup.php:253 +#: actions/editgroup.php:258 msgid "Could not update group." msgstr "Não foi possível atualizar o grupo." -#: actions/editgroup.php:259 classes/User_group.php:433 +#: actions/editgroup.php:264 classes/User_group.php:478 msgid "Could not create aliases." msgstr "Não foi possível criar os apelidos." -#: actions/editgroup.php:269 +#: actions/editgroup.php:280 msgid "Options saved." msgstr "As configurações foram salvas." @@ -1594,7 +1627,7 @@ msgstr "O usuário já está bloqueado no grupo." msgid "User is not a member of group." msgstr "O usuário não é um membro do grupo" -#: actions/groupblock.php:136 actions/groupmembers.php:316 +#: actions/groupblock.php:136 actions/groupmembers.php:323 msgid "Block user from group" msgstr "Bloquear o usuário no grupo" @@ -1630,11 +1663,11 @@ msgstr "Nenhuma ID." msgid "You must be logged in to edit a group." msgstr "Você precisa estar autenticado para editar um grupo." -#: actions/groupdesignsettings.php:141 +#: actions/groupdesignsettings.php:144 msgid "Group design" msgstr "Aparência do grupo" -#: actions/groupdesignsettings.php:152 +#: actions/groupdesignsettings.php:155 msgid "" "Customize the way your group looks with a background image and a colour " "palette of your choice." @@ -1642,20 +1675,20 @@ msgstr "" "Personalize a aparência do grupo com uma imagem de fundo e uma paleta de " "cores à sua escolha." -#: actions/groupdesignsettings.php:263 actions/userdesignsettings.php:186 +#: actions/groupdesignsettings.php:266 actions/userdesignsettings.php:186 #: lib/designsettings.php:391 lib/designsettings.php:413 msgid "Couldn't update your design." msgstr "Não foi possível atualizar a aparência." -#: actions/groupdesignsettings.php:308 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231 msgid "Design preferences saved." msgstr "As configurações da aparência foram salvas." -#: actions/grouplogo.php:139 actions/grouplogo.php:192 +#: actions/grouplogo.php:142 actions/grouplogo.php:195 msgid "Group logo" msgstr "Logo do grupo" -#: actions/grouplogo.php:150 +#: actions/grouplogo.php:153 #, php-format msgid "" "You can upload a logo image for your group. The maximum file size is %s." @@ -1663,57 +1696,57 @@ msgstr "" "Você pode enviar uma imagem de logo para o seu grupo. O tamanho máximo do " "arquivo é %s." -#: actions/grouplogo.php:178 +#: actions/grouplogo.php:181 msgid "User without matching profile." msgstr "Usuário sem um perfil correspondente" -#: actions/grouplogo.php:362 +#: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." msgstr "Selecione uma área quadrada da imagem para definir a logo" -#: actions/grouplogo.php:396 +#: actions/grouplogo.php:399 msgid "Logo updated." msgstr "A logo foi atualizada." -#: actions/grouplogo.php:398 +#: actions/grouplogo.php:401 msgid "Failed updating logo." msgstr "Não foi possível atualizar a logo." -#: actions/groupmembers.php:93 lib/groupnav.php:92 +#: actions/groupmembers.php:100 lib/groupnav.php:92 #, php-format msgid "%s group members" msgstr "Membros do grupo %s" -#: actions/groupmembers.php:96 +#: actions/groupmembers.php:103 #, php-format msgid "%1$s group members, page %2$d" msgstr "Membros do grupo %1$s, pág. %2$d" -#: actions/groupmembers.php:111 +#: actions/groupmembers.php:118 msgid "A list of the users in this group." msgstr "Uma lista dos usuários deste grupo." -#: actions/groupmembers.php:175 lib/action.php:448 lib/groupnav.php:107 +#: actions/groupmembers.php:182 lib/groupnav.php:107 msgid "Admin" msgstr "Admin" -#: actions/groupmembers.php:348 lib/blockform.php:69 +#: actions/groupmembers.php:355 lib/blockform.php:69 msgid "Block" msgstr "Bloquear" -#: actions/groupmembers.php:443 +#: actions/groupmembers.php:450 msgid "Make user an admin of the group" msgstr "Tornar o usuário um administrador do grupo" -#: actions/groupmembers.php:475 +#: actions/groupmembers.php:482 msgid "Make Admin" msgstr "Tornar administrador" -#: actions/groupmembers.php:475 +#: actions/groupmembers.php:482 msgid "Make this user an admin" msgstr "Torna este usuário um administrador" -#: actions/grouprss.php:133 +#: actions/grouprss.php:140 #, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Atualizações dos membros de %1$s no %2$s!" @@ -1979,16 +2012,19 @@ msgstr "Mensagem pessoal" msgid "Optionally add a personal message to the invitation." msgstr "Você pode, opcionalmente, adicionar uma mensagem pessoal ao convite." -#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:236 +#. TRANS: Send button for inviting friends +#: actions/invite.php:198 +#, fuzzy +msgctxt "BUTTON" msgid "Send" msgstr "Enviar" -#: actions/invite.php:226 +#: actions/invite.php:227 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "%1$s convidou você para se juntar a %2$s" -#: actions/invite.php:228 +#: actions/invite.php:229 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -2049,7 +2085,12 @@ msgstr "" msgid "You must be logged in to join a group." msgstr "Você deve estar autenticado para se associar a um grupo." -#: actions/joingroup.php:131 +#: actions/joingroup.php:88 actions/leavegroup.php:88 +#, fuzzy +msgid "No nickname or ID." +msgstr "Nenhuma identificação." + +#: actions/joingroup.php:141 #, php-format msgid "%1$s joined group %2$s" msgstr "%1$s associou-se ao grupo %2$s" @@ -2058,11 +2099,11 @@ msgstr "%1$s associou-se ao grupo %2$s" msgid "You must be logged in to leave a group." msgstr "Você deve estar autenticado para sair de um grupo." -#: actions/leavegroup.php:90 lib/command.php:265 +#: actions/leavegroup.php:100 lib/command.php:265 msgid "You are not a member of that group." msgstr "Você não é um membro desse grupo." -#: actions/leavegroup.php:127 +#: actions/leavegroup.php:137 #, php-format msgid "%1$s left group %2$s" msgstr "%1$s deixou o grupo %2$s" @@ -2080,8 +2121,7 @@ msgid "Error setting user. You are probably not authorized." msgstr "" "Erro na configuração do usuário. Você provavelmente não tem autorização." -#: actions/login.php:188 actions/login.php:241 lib/action.php:466 -#: lib/logingroupnav.php:79 +#: actions/login.php:188 actions/login.php:241 lib/logingroupnav.php:79 msgid "Login" msgstr "Entrar" @@ -2341,8 +2381,8 @@ msgstr "tipo de conteúdo " msgid "Only " msgstr "Apenas " -#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 -#: lib/api.php:1068 lib/api.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 +#: lib/apiaction.php:1068 lib/apiaction.php:1177 msgid "Not a supported data format." msgstr "Não é um formato de dados suportado." @@ -2483,7 +2523,7 @@ msgstr "Não é possível salvar a nova senha." msgid "Password saved." msgstr "A senha foi salva." -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:331 +#: actions/pathsadminpanel.php:59 msgid "Paths" msgstr "Caminhos" @@ -2517,7 +2557,6 @@ msgstr "" "Servidor SSL inválido. O comprimento máximo deve ser de 255 caracteres." #: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58 -#: lib/adminpanelaction.php:311 msgid "Site" msgstr "Site" @@ -2690,7 +2729,7 @@ 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/profilesettings.php:111 actions/register.php:448 -#: actions/showgroup.php:247 actions/tagother.php:104 +#: actions/showgroup.php:255 actions/tagother.php:104 #: lib/groupeditform.php:157 lib/userprofile.php:149 msgid "Full name" msgstr "Nome completo" @@ -2718,7 +2757,7 @@ msgid "Bio" msgstr "Descrição" #: actions/profilesettings.php:132 actions/register.php:471 -#: actions/showgroup.php:256 actions/tagother.php:112 +#: actions/showgroup.php:264 actions/tagother.php:112 #: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:164 msgid "Location" @@ -2801,7 +2840,8 @@ msgstr "Não foi possível salvar o perfil." msgid "Couldn't save tags." msgstr "Não foi possível salvar as etiquetas." -#: actions/profilesettings.php:391 lib/adminpanelaction.php:137 +#. TRANS: Message after successful saving of administrative settings. +#: actions/profilesettings.php:391 lib/adminpanelaction.php:141 msgid "Settings saved." msgstr "As configurações foram salvas." @@ -2814,28 +2854,28 @@ msgstr "Além do limite da página (%s)" msgid "Could not retrieve public stream." msgstr "Não foi possível recuperar o fluxo público." -#: actions/public.php:129 +#: actions/public.php:130 #, php-format msgid "Public timeline, page %d" msgstr "Mensagens públicas, pág. %d" -#: actions/public.php:131 lib/publicgroupnav.php:79 +#: actions/public.php:132 lib/publicgroupnav.php:79 msgid "Public timeline" msgstr "Mensagens públicas" -#: actions/public.php:159 +#: actions/public.php:160 msgid "Public Stream Feed (RSS 1.0)" msgstr "Fonte de mensagens públicas (RSS 1.0)" -#: actions/public.php:163 +#: actions/public.php:164 msgid "Public Stream Feed (RSS 2.0)" msgstr "Fonte de mensagens públicas (RSS 2.0)" -#: actions/public.php:167 +#: actions/public.php:168 msgid "Public Stream Feed (Atom)" msgstr "Fonte de mensagens públicas (Atom)" -#: actions/public.php:187 +#: actions/public.php:188 #, php-format msgid "" "This is the public timeline for %%site.name%% but no one has posted anything " @@ -2844,11 +2884,11 @@ msgstr "" "Esse é o fluxo de mensagens públicas de %%site.name%%, mas ninguém publicou " "nada ainda." -#: actions/public.php:190 +#: actions/public.php:191 msgid "Be the first to post!" msgstr "Seja o primeiro a publicar!" -#: actions/public.php:194 +#: actions/public.php:195 #, php-format msgid "" "Why not [register an account](%%action.register%%) and be the first to post!" @@ -2856,7 +2896,7 @@ msgstr "" "Por que você não [registra uma conta](%%action.register%%) pra ser o " "primeiro a publicar?" -#: actions/public.php:241 +#: actions/public.php:242 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2869,7 +2909,7 @@ msgstr "" "[Cadastre-se agora](%%action.register%%) para compartilhar notícias sobre " "você com seus amigos, família e colegas! ([Saiba mais](%%doc.help%%))" -#: actions/public.php:246 +#: actions/public.php:247 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -3052,8 +3092,7 @@ msgstr "Desculpe, mas o código do convite é inválido." msgid "Registration successful" msgstr "Registro realizado com sucesso" -#: actions/register.php:114 actions/register.php:503 lib/action.php:463 -#: lib/logingroupnav.php:85 +#: actions/register.php:114 actions/register.php:503 lib/logingroupnav.php:85 msgid "Register" msgstr "Registrar-se" @@ -3238,7 +3277,7 @@ msgstr "Você não pode repetir sua própria mensagem." msgid "You already repeated that notice." msgstr "Você já repetiu essa mensagem." -#: actions/repeat.php:114 lib/noticelist.php:656 +#: actions/repeat.php:114 lib/noticelist.php:674 msgid "Repeated" msgstr "Repetida" @@ -3246,33 +3285,33 @@ msgstr "Repetida" msgid "Repeated!" msgstr "Repetida!" -#: actions/replies.php:125 actions/repliesrss.php:68 +#: actions/replies.php:126 actions/repliesrss.php:68 #: lib/personalgroupnav.php:105 #, php-format msgid "Replies to %s" msgstr "Respostas para %s" -#: actions/replies.php:127 +#: actions/replies.php:128 #, php-format msgid "Replies to %1$s, page %2$d" msgstr "Respostas para %1$s, pág. %2$d" -#: actions/replies.php:144 +#: actions/replies.php:145 #, php-format msgid "Replies feed for %s (RSS 1.0)" msgstr "Fonte de respostas para %s (RSS 1.0)" -#: actions/replies.php:151 +#: actions/replies.php:152 #, php-format msgid "Replies feed for %s (RSS 2.0)" msgstr "Fonte de respostas para %s (RSS 2.0)" -#: actions/replies.php:158 +#: actions/replies.php:159 #, php-format msgid "Replies feed for %s (Atom)" msgstr "Fonte de respostas para %s (Atom)" -#: actions/replies.php:198 +#: actions/replies.php:199 #, php-format msgid "" "This is the timeline showing replies to %1$s but %2$s hasn't received a " @@ -3281,7 +3320,7 @@ msgstr "" "Esse é o fluxo de mensagens de resposta para %1$s, mas %2$s ainda não " "recebeu nenhuma mensagem direcionada a ele(a)." -#: actions/replies.php:203 +#: actions/replies.php:204 #, php-format msgid "" "You can engage other users in a conversation, subscribe to more people or " @@ -3290,7 +3329,7 @@ msgstr "" "Você pode envolver outros usuários na conversa. Pra isso, assine mais " "pessoas ou [associe-se a grupos](%%action.groups%%)." -#: actions/replies.php:205 +#: actions/replies.php:206 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) or [post something to his or her " @@ -3318,7 +3357,6 @@ msgid "User is already sandboxed." msgstr "O usuário já está em isolamento." #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:336 msgid "Sessions" msgstr "Sessões" @@ -3343,7 +3381,7 @@ msgid "Turn on debugging output for sessions." msgstr "Ativa a saída de depuração para as sessões." #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/useradminpanel.php:293 +#: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "Salvar as configurações do site" @@ -3373,7 +3411,7 @@ msgstr "Organização" msgid "Description" msgstr "Descrição" -#: actions/showapplication.php:192 actions/showgroup.php:429 +#: actions/showapplication.php:192 actions/showgroup.php:437 #: lib/profileaction.php:174 msgid "Statistics" msgstr "Estatísticas" @@ -3436,22 +3474,22 @@ msgstr "Mensagens favoritas de %1$s, pág. %2$d" msgid "Could not retrieve favorite notices." msgstr "Não foi possível recuperar as mensagens favoritas." -#: actions/showfavorites.php:170 +#: actions/showfavorites.php:171 #, php-format msgid "Feed for favorites of %s (RSS 1.0)" msgstr "Fonte para favoritas de %s (RSS 1.0)" -#: actions/showfavorites.php:177 +#: actions/showfavorites.php:178 #, php-format msgid "Feed for favorites of %s (RSS 2.0)" msgstr "Fonte para favoritas de %s (RSS 2.0)" -#: actions/showfavorites.php:184 +#: actions/showfavorites.php:185 #, php-format msgid "Feed for favorites of %s (Atom)" msgstr "Fonte para favoritas de %s (Atom)" -#: actions/showfavorites.php:205 +#: actions/showfavorites.php:206 msgid "" "You haven't chosen any favorite notices yet. Click the fave button on " "notices you like to bookmark them for later or shed a spotlight on them." @@ -3460,7 +3498,7 @@ msgstr "" "\"Favorita\" nas mensagens que você quer guardar para referência futura ou " "para destacar." -#: actions/showfavorites.php:207 +#: actions/showfavorites.php:208 #, php-format msgid "" "%s hasn't added any notices to his favorites yet. Post something interesting " @@ -3469,7 +3507,7 @@ msgstr "" "%s não adicionou nenhuma mensagem às suas favoritas. Publique alguma coisa " "interessante para para as pessoas marcarem como favorita. :)" -#: actions/showfavorites.php:211 +#: actions/showfavorites.php:212 #, php-format msgid "" "%s hasn't added any notices to his favorites yet. Why not [register an " @@ -3480,7 +3518,7 @@ msgstr "" "[registra uma conta](%%%%action.register%%%%) e publica alguma coisa " "interessante para as pessoas marcarem como favorita? :)" -#: actions/showfavorites.php:242 +#: actions/showfavorites.php:243 msgid "This is a way to share what you like." msgstr "Esta é uma forma de compartilhar o que você gosta." @@ -3494,67 +3532,67 @@ msgstr "Grupo %s" msgid "%1$s group, page %2$d" msgstr "Grupo %1$s, pág. %2$d" -#: actions/showgroup.php:218 +#: actions/showgroup.php:226 msgid "Group profile" msgstr "Perfil do grupo" -#: actions/showgroup.php:263 actions/tagother.php:118 +#: actions/showgroup.php:271 actions/tagother.php:118 #: actions/userauthorization.php:175 lib/userprofile.php:177 msgid "URL" msgstr "Site" -#: actions/showgroup.php:274 actions/tagother.php:128 +#: actions/showgroup.php:282 actions/tagother.php:128 #: actions/userauthorization.php:187 lib/userprofile.php:194 msgid "Note" msgstr "Mensagem" -#: actions/showgroup.php:284 lib/groupeditform.php:184 +#: actions/showgroup.php:292 lib/groupeditform.php:184 msgid "Aliases" msgstr "Apelidos" -#: actions/showgroup.php:293 +#: actions/showgroup.php:301 msgid "Group actions" msgstr "Ações do grupo" -#: actions/showgroup.php:328 +#: actions/showgroup.php:336 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Fonte de mensagens do grupo %s (RSS 1.0)" -#: actions/showgroup.php:334 +#: actions/showgroup.php:342 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Fonte de mensagens do grupo %s (RSS 2.0)" -#: actions/showgroup.php:340 +#: actions/showgroup.php:348 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "Fonte de mensagens do grupo %s (Atom)" -#: actions/showgroup.php:345 +#: actions/showgroup.php:353 #, php-format msgid "FOAF for %s group" msgstr "FOAF para o grupo %s" -#: actions/showgroup.php:381 actions/showgroup.php:438 lib/groupnav.php:91 +#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 msgid "Members" msgstr "Membros" -#: actions/showgroup.php:386 lib/profileaction.php:117 +#: actions/showgroup.php:394 lib/profileaction.php:117 #: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(Nenhum)" -#: actions/showgroup.php:392 +#: actions/showgroup.php:400 msgid "All members" msgstr "Todos os membros" -#: actions/showgroup.php:432 +#: actions/showgroup.php:440 msgid "Created" msgstr "Criado" -#: actions/showgroup.php:448 +#: actions/showgroup.php:456 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3570,7 +3608,7 @@ msgstr "" "para se tornar parte deste grupo e muito mais! ([Saiba mais](%%%%doc.help%%%" "%))" -#: actions/showgroup.php:454 +#: actions/showgroup.php:462 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3583,7 +3621,7 @@ msgstr "" "[StatusNet](http://status.net/). Seus membros compartilham mensagens curtas " "sobre suas vidas e interesses. " -#: actions/showgroup.php:482 +#: actions/showgroup.php:490 msgid "Admins" msgstr "Administradores" @@ -4063,22 +4101,22 @@ msgstr "Jabber" msgid "SMS" msgstr "SMS" -#: actions/tag.php:68 +#: actions/tag.php:69 #, php-format msgid "Notices tagged with %1$s, page %2$d" msgstr "Mensagens etiquetadas com %1$s, pág. %2$d" -#: actions/tag.php:86 +#: actions/tag.php:87 #, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Fonte de mensagens de %s (RSS 1.0)" -#: actions/tag.php:92 +#: actions/tag.php:93 #, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Fonte de mensagens de %s (RSS 2.0)" -#: actions/tag.php:98 +#: actions/tag.php:99 #, php-format msgid "Notice feed for tag %s (Atom)" msgstr "Fonte de mensagens de %s (Atom)" @@ -4132,7 +4170,7 @@ msgstr "" msgid "No such tag." msgstr "Esta etiqueta não existe." -#: actions/twitapitrends.php:87 +#: actions/twitapitrends.php:85 msgid "API method under construction." msgstr "O método da API está em construção." @@ -4164,71 +4202,73 @@ msgstr "" "A licença '%1$s' do fluxo do usuário não é compatível com a licença '%2$s' " "do site." -#: actions/useradminpanel.php:58 lib/adminpanelaction.php:321 -#: lib/personalgroupnav.php:115 +#. TRANS: User admin panel title +#: actions/useradminpanel.php:59 +#, fuzzy +msgctxt "TITLE" msgid "User" msgstr "Usuário" -#: actions/useradminpanel.php:69 +#: actions/useradminpanel.php:70 msgid "User settings for this StatusNet site." msgstr "Configurações de usuário para este site StatusNet." -#: actions/useradminpanel.php:148 +#: actions/useradminpanel.php:149 msgid "Invalid bio limit. Must be numeric." msgstr "Limite da descrição inválido. Seu valor deve ser numérico." -#: actions/useradminpanel.php:154 +#: actions/useradminpanel.php:155 msgid "Invalid welcome text. Max length is 255 characters." msgstr "" "Mensagem de boas vindas inválida. O comprimento máximo é de 255 caracteres." -#: actions/useradminpanel.php:164 +#: actions/useradminpanel.php:165 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "Assinatura padrão inválida: '%1$s' não é um usuário." -#: actions/useradminpanel.php:217 lib/accountsettingsaction.php:108 +#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Perfil" -#: actions/useradminpanel.php:221 +#: actions/useradminpanel.php:222 msgid "Bio Limit" msgstr "Limite da descrição" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:223 msgid "Maximum length of a profile bio in characters." msgstr "Comprimento máximo da descrição do perfil, em caracteres." -#: actions/useradminpanel.php:230 +#: actions/useradminpanel.php:231 msgid "New users" msgstr "Novos usuários" -#: actions/useradminpanel.php:234 +#: actions/useradminpanel.php:235 msgid "New user welcome" msgstr "Boas vindas aos novos usuários" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:236 msgid "Welcome text for new users (Max 255 chars)." msgstr "Texto de boas vindas para os novos usuários (máx. 255 caracteres)." -#: actions/useradminpanel.php:240 +#: actions/useradminpanel.php:241 msgid "Default subscription" msgstr "Assinatura padrão" -#: actions/useradminpanel.php:241 +#: actions/useradminpanel.php:242 msgid "Automatically subscribe new users to this user." msgstr "Os novos usuários assinam esse usuário automaticamente." -#: actions/useradminpanel.php:250 +#: actions/useradminpanel.php:251 msgid "Invitations" msgstr "Convites" -#: actions/useradminpanel.php:255 +#: actions/useradminpanel.php:256 msgid "Invitations enabled" msgstr "Convites habilitados" -#: actions/useradminpanel.php:257 +#: actions/useradminpanel.php:258 msgid "Whether to allow users to invite new users." msgstr "Define se os usuários podem ou não convidar novos usuários." @@ -4426,7 +4466,7 @@ msgstr "" msgid "Plugins" msgstr "Plugins" -#: actions/version.php:196 lib/action.php:747 +#: actions/version.php:196 lib/action.php:778 msgid "Version" msgstr "Versão" @@ -4465,6 +4505,11 @@ msgstr "Não é parte de um grupo." msgid "Group leave failed." msgstr "Não foi possível deixar o grupo." +#: classes/Local_group.php:41 +#, fuzzy +msgid "Could not update local group." +msgstr "Não foi possível atualizar o grupo." + #: classes/Login_token.php:76 #, php-format msgid "Could not create login token for %s" @@ -4482,27 +4527,27 @@ msgstr "Não foi possível inserir a mensagem." msgid "Could not update message with new URI." msgstr "Não foi possível atualizar a mensagem com a nova URI." -#: classes/Notice.php:157 +#: classes/Notice.php:172 #, php-format msgid "DB error inserting hashtag: %s" msgstr "Erro no banco de dados durante a inserção da hashtag: %s" -#: classes/Notice.php:222 +#: classes/Notice.php:239 msgid "Problem saving notice. Too long." msgstr "Problema no salvamento da mensagem. Ela é muito extensa." -#: classes/Notice.php:226 +#: classes/Notice.php:243 msgid "Problem saving notice. Unknown user." msgstr "Problema no salvamento da mensagem. Usuário desconhecido." -#: classes/Notice.php:231 +#: classes/Notice.php:248 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." -#: classes/Notice.php:237 +#: classes/Notice.php:254 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." @@ -4510,19 +4555,19 @@ msgstr "" "Muitas mensagens duplicadas em um período curto de tempo; dê uma respirada e " "publique novamente daqui a alguns minutos." -#: classes/Notice.php:243 +#: classes/Notice.php:260 msgid "You are banned from posting notices on this site." msgstr "Você está proibido de publicar mensagens neste site." -#: classes/Notice.php:309 classes/Notice.php:335 +#: classes/Notice.php:326 classes/Notice.php:352 msgid "Problem saving notice." msgstr "Problema no salvamento da mensagem." -#: classes/Notice.php:882 +#: classes/Notice.php:911 msgid "Problem saving group inbox." msgstr "Problema no salvamento das mensagens recebidas do grupo." -#: classes/Notice.php:1407 +#: classes/Notice.php:1442 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -4551,19 +4596,29 @@ msgstr "Não foi possível excluir a auto-assinatura." msgid "Couldn't delete subscription." msgstr "Não foi possível excluir a assinatura." -#: classes/User.php:372 +#: classes/User.php:373 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "Bem vindo(a) a %1$s, @%2$s!" -#: classes/User_group.php:423 +#: classes/User_group.php:462 msgid "Could not create group." msgstr "Não foi possível criar o grupo." -#: classes/User_group.php:452 +#: classes/User_group.php:471 +#, fuzzy +msgid "Could not set group URI." +msgstr "Não foi possível configurar a associação ao grupo." + +#: classes/User_group.php:492 msgid "Could not set group membership." msgstr "Não foi possível configurar a associação ao grupo." +#: classes/User_group.php:506 +#, fuzzy +msgid "Could not save local group info." +msgstr "Não foi possível salvar a assinatura." + #: lib/accountsettingsaction.php:108 msgid "Change your profile settings" msgstr "Alterar as suas configurações de perfil" @@ -4605,120 +4660,190 @@ msgstr "Página sem título" msgid "Primary site navigation" msgstr "Navegação primária no site" +#. TRANS: Tooltip for main menu option "Personal" #: lib/action.php:439 -msgid "Home" -msgstr "Início" - -#: lib/action.php:439 +#, fuzzy +msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Perfil pessoal e fluxo de mensagens dos amigos" -#: lib/action.php:441 +#: lib/action.php:442 +#, fuzzy +msgctxt "MENU" +msgid "Personal" +msgstr "Pessoal" + +#. TRANS: Tooltip for main menu option "Account" +#: lib/action.php:444 +#, fuzzy +msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Mude seu e-mail, avatar, senha, perfil" -#: lib/action.php:444 -msgid "Connect" -msgstr "Conectar" +#: lib/action.php:447 +#, fuzzy +msgctxt "MENU" +msgid "Account" +msgstr "Conta" -#: lib/action.php:444 +#. TRANS: Tooltip for main menu option "Services" +#: lib/action.php:450 +#, fuzzy +msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Conecte-se a outros serviços" -#: lib/action.php:448 +#: lib/action.php:453 +#, fuzzy +msgctxt "MENU" +msgid "Connect" +msgstr "Conectar" + +#. TRANS: Tooltip for menu option "Admin" +#: lib/action.php:457 +#, fuzzy +msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Mude as configurações do site" -#: lib/action.php:452 lib/subgroupnav.php:105 -msgid "Invite" -msgstr "Convidar" +#: lib/action.php:460 +#, fuzzy +msgctxt "MENU" +msgid "Admin" +msgstr "Admin" -#: lib/action.php:453 lib/subgroupnav.php:106 -#, php-format +#. TRANS: Tooltip for main menu option "Invite" +#: lib/action.php:464 +#, fuzzy, php-format +msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Convide seus amigos e colegas para unir-se a você no %s" -#: lib/action.php:458 -msgid "Logout" -msgstr "Sair" +#: lib/action.php:467 +#, fuzzy +msgctxt "MENU" +msgid "Invite" +msgstr "Convidar" -#: lib/action.php:458 +#. TRANS: Tooltip for main menu option "Logout" +#: lib/action.php:473 +#, fuzzy +msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Sai do site" -#: lib/action.php:463 +#: lib/action.php:476 +#, fuzzy +msgctxt "MENU" +msgid "Logout" +msgstr "Sair" + +#. TRANS: Tooltip for main menu option "Register" +#: lib/action.php:481 +#, fuzzy +msgctxt "TOOLTIP" msgid "Create an account" msgstr "Cria uma conta" -#: lib/action.php:466 +#: lib/action.php:484 +#, fuzzy +msgctxt "MENU" +msgid "Register" +msgstr "Registrar-se" + +#. TRANS: Tooltip for main menu option "Login" +#: lib/action.php:487 +#, fuzzy +msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Autentique-se no site" -#: lib/action.php:469 lib/action.php:732 -msgid "Help" -msgstr "Ajuda" +#: lib/action.php:490 +#, fuzzy +msgctxt "MENU" +msgid "Login" +msgstr "Entrar" -#: lib/action.php:469 +#. TRANS: Tooltip for main menu option "Help" +#: lib/action.php:493 +#, fuzzy +msgctxt "TOOLTIP" msgid "Help me!" msgstr "Ajudem-me!" -#: lib/action.php:472 lib/searchaction.php:127 -msgid "Search" -msgstr "Procurar" +#: lib/action.php:496 +#, fuzzy +msgctxt "MENU" +msgid "Help" +msgstr "Ajuda" -#: lib/action.php:472 +#. TRANS: Tooltip for main menu option "Search" +#: lib/action.php:499 +#, fuzzy +msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Procura por pessoas ou textos" -#: lib/action.php:493 +#: lib/action.php:502 +#, fuzzy +msgctxt "MENU" +msgid "Search" +msgstr "Procurar" + +#. TRANS: DT element for site notice. String is hidden in default CSS. +#: lib/action.php:524 msgid "Site notice" msgstr "Mensagem do site" -#: lib/action.php:559 +#: lib/action.php:590 msgid "Local views" msgstr "Visualizações locais" -#: lib/action.php:625 +#: lib/action.php:656 msgid "Page notice" msgstr "Notícia da página" -#: lib/action.php:727 +#: lib/action.php:758 msgid "Secondary site navigation" msgstr "Navegação secundária no site" -#: lib/action.php:734 +#: lib/action.php:763 +msgid "Help" +msgstr "Ajuda" + +#: lib/action.php:765 msgid "About" msgstr "Sobre" -#: lib/action.php:736 +#: lib/action.php:767 msgid "FAQ" msgstr "FAQ" -#: lib/action.php:740 +#: lib/action.php:771 msgid "TOS" msgstr "Termos de uso" -#: lib/action.php:743 +#: lib/action.php:774 msgid "Privacy" msgstr "Privacidade" -#: lib/action.php:745 +#: lib/action.php:776 msgid "Source" msgstr "Fonte" -#: lib/action.php:749 +#: lib/action.php:780 msgid "Contact" msgstr "Contato" -#: lib/action.php:751 +#: lib/action.php:782 msgid "Badge" msgstr "Mini-aplicativo" -#: lib/action.php:779 +#: lib/action.php:810 msgid "StatusNet software license" msgstr "Licença do software StatusNet" -#: lib/action.php:782 +#: lib/action.php:813 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4727,12 +4852,12 @@ msgstr "" "**%%site.name%%** é um serviço de microblog disponibilizado por [%%site." "broughtby%%](%%site.broughtbyurl%%). " -#: lib/action.php:784 +#: lib/action.php:815 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** é um serviço de microblog. " -#: lib/action.php:786 +#: lib/action.php:817 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4743,109 +4868,162 @@ msgstr "" "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:801 +#: lib/action.php:832 msgid "Site content license" msgstr "Licença do conteúdo do site" -#: lib/action.php:806 +#: lib/action.php:837 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "O conteúdo e os dados de %1$s são privados e confidenciais." -#: lib/action.php:811 +#: lib/action.php:842 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "Conteúdo e dados licenciados sob %1$s. Todos os direitos reservados." -#: lib/action.php:814 +#: lib/action.php:845 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" "Conteúdo e dados licenciados pelos colaboradores. Todos os direitos " "reservados." -#: lib/action.php:827 +#: lib/action.php:858 msgid "All " msgstr "Todas " -#: lib/action.php:833 +#: lib/action.php:864 msgid "license." msgstr "licença." -#: lib/action.php:1132 +#: lib/action.php:1163 msgid "Pagination" msgstr "Paginação" -#: lib/action.php:1141 +#: lib/action.php:1172 msgid "After" msgstr "Próximo" -#: lib/action.php:1149 +#: lib/action.php:1180 msgid "Before" msgstr "Anterior" -#: lib/activity.php:382 +#: lib/activity.php:449 msgid "Can't handle remote content yet." msgstr "" -#: lib/activity.php:410 +#: lib/activity.php:477 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activity.php:414 +#: lib/activity.php:481 msgid "Can't handle embedded Base64 content yet." msgstr "" -#: lib/adminpanelaction.php:96 +#. TRANS: Client error message +#: lib/adminpanelaction.php:98 msgid "You cannot make changes to this site." msgstr "Você não pode fazer alterações neste site." -#: lib/adminpanelaction.php:107 +#. TRANS: Client error message +#: lib/adminpanelaction.php:110 msgid "Changes to that panel are not allowed." msgstr "Não são permitidas alterações a esse painel." -#: lib/adminpanelaction.php:206 +#. TRANS: Client error message +#: lib/adminpanelaction.php:211 msgid "showForm() not implemented." msgstr "showForm() não implementado." -#: lib/adminpanelaction.php:235 +#. TRANS: Client error message +#: lib/adminpanelaction.php:241 msgid "saveSettings() not implemented." msgstr "saveSettings() não implementado." -#: lib/adminpanelaction.php:258 +#. TRANS: Client error message +#: lib/adminpanelaction.php:265 msgid "Unable to delete design setting." msgstr "Não foi possível excluir as configurações da aparência." -#: lib/adminpanelaction.php:312 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:330 msgid "Basic site configuration" msgstr "Configuração básica do site" -#: lib/adminpanelaction.php:317 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:332 +#, fuzzy +msgctxt "MENU" +msgid "Site" +msgstr "Site" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:338 msgid "Design configuration" msgstr "Configuração da aparência" -#: lib/adminpanelaction.php:322 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:340 +#, fuzzy +msgctxt "MENU" +msgid "Design" +msgstr "Aparência" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:346 msgid "User configuration" msgstr "Configuração do usuário" -#: lib/adminpanelaction.php:327 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:348 +#, fuzzy +msgctxt "MENU" +msgid "User" +msgstr "Usuário" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:354 msgid "Access configuration" msgstr "Configuração do acesso" -#: lib/adminpanelaction.php:332 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:356 +#, fuzzy +msgctxt "MENU" +msgid "Access" +msgstr "Acesso" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:362 msgid "Paths configuration" msgstr "Configuração dos caminhos" -#: lib/adminpanelaction.php:337 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:364 +#, fuzzy +msgctxt "MENU" +msgid "Paths" +msgstr "Caminhos" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:370 msgid "Sessions configuration" msgstr "Configuração das sessões" -#: lib/apiauth.php:95 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:372 +#, fuzzy +msgctxt "MENU" +msgid "Sessions" +msgstr "Sessões" + +#: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." msgstr "" "Os recursos de API exigem acesso de leitura e escrita, mas você possui " "somente acesso de leitura." -#: lib/apiauth.php:273 +#: lib/apiauth.php:272 #, php-format msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" msgstr "" @@ -4938,11 +5116,11 @@ msgstr "Mensagens onde este anexo aparece" msgid "Tags for this attachment" msgstr "Etiquetas para este anexo" -#: lib/authenticationplugin.php:218 lib/authenticationplugin.php:223 +#: lib/authenticationplugin.php:220 lib/authenticationplugin.php:225 msgid "Password changing failed" msgstr "Não foi possível alterar a senha" -#: lib/authenticationplugin.php:233 +#: lib/authenticationplugin.php:235 msgid "Password changing is not allowed" msgstr "Não é permitido alterar a senha" @@ -5260,19 +5438,19 @@ msgstr "" "tracks - não implementado ainda\n" "tracking - não implementado ainda\n" -#: lib/common.php:136 +#: lib/common.php:148 msgid "No configuration file found. " msgstr "Não foi encontrado nenhum arquivo de configuração. " -#: lib/common.php:137 +#: lib/common.php:149 msgid "I looked for configuration files in the following places: " msgstr "Eu procurei pelos arquivos de configuração nos seguintes lugares: " -#: lib/common.php:139 +#: lib/common.php:151 msgid "You may wish to run the installer to fix this." msgstr "Você pode querer executar o instalador para corrigir isto." -#: lib/common.php:140 +#: lib/common.php:152 msgid "Go to the installer." msgstr "Ir para o instalador." @@ -5462,23 +5640,23 @@ msgstr "Erro no sistema durante o envio do arquivo." msgid "Not an image or corrupt file." msgstr "Imagem inválida ou arquivo corrompido." -#: lib/imagefile.php:105 +#: lib/imagefile.php:109 msgid "Unsupported image file format." msgstr "Formato de imagem não suportado." -#: lib/imagefile.php:118 +#: lib/imagefile.php:122 msgid "Lost our file." msgstr "Nosso arquivo foi perdido." -#: lib/imagefile.php:150 lib/imagefile.php:197 +#: lib/imagefile.php:166 lib/imagefile.php:231 msgid "Unknown file type" msgstr "Tipo de arquivo desconhecido" -#: lib/imagefile.php:217 +#: lib/imagefile.php:251 msgid "MB" msgstr "Mb" -#: lib/imagefile.php:219 +#: lib/imagefile.php:253 msgid "kB" msgstr "Kb" @@ -5862,6 +6040,12 @@ msgstr "Para" msgid "Available characters" msgstr "Caracteres disponíveis" +#: lib/messageform.php:178 lib/noticeform.php:236 +#, fuzzy +msgctxt "Send button for sending notice" +msgid "Send" +msgstr "Enviar" + #: lib/noticeform.php:160 msgid "Send a notice" msgstr "Enviar uma mensagem" @@ -5920,23 +6104,23 @@ msgstr "O" msgid "at" msgstr "em" -#: lib/noticelist.php:558 +#: lib/noticelist.php:566 msgid "in context" msgstr "no contexto" -#: lib/noticelist.php:583 +#: lib/noticelist.php:601 msgid "Repeated by" msgstr "Repetida por" -#: lib/noticelist.php:610 +#: lib/noticelist.php:628 msgid "Reply to this notice" msgstr "Responder a esta mensagem" -#: lib/noticelist.php:611 +#: lib/noticelist.php:629 msgid "Reply" msgstr "Responder" -#: lib/noticelist.php:655 +#: lib/noticelist.php:673 msgid "Notice repeated" msgstr "Mensagem repetida" @@ -5984,6 +6168,10 @@ msgstr "Respostas" msgid "Favorites" msgstr "Favoritas" +#: lib/personalgroupnav.php:115 +msgid "User" +msgstr "Usuário" + #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "Recebidas" @@ -6073,7 +6261,7 @@ msgstr "Repetir esta mensagem?" msgid "Repeat this notice" msgstr "Repetir esta mensagem" -#: lib/router.php:665 +#: lib/router.php:668 msgid "No single user defined for single-user mode." msgstr "Nenhum usuário definido para o modo de usuário único." @@ -6093,6 +6281,10 @@ msgstr "Procurar no site" msgid "Keyword(s)" msgstr "Palavra(s)-chave" +#: lib/searchaction.php:127 +msgid "Search" +msgstr "Procurar" + #: lib/searchaction.php:162 msgid "Search help" msgstr "Ajuda da procura" @@ -6144,6 +6336,15 @@ msgstr "Assinantes de %s" msgid "Groups %s is a member of" msgstr "Grupos dos quais %s é membro" +#: lib/subgroupnav.php:105 +msgid "Invite" +msgstr "Convidar" + +#: 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" + #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -6214,47 +6415,47 @@ msgstr "Mensagem" msgid "Moderate" msgstr "Moderar" -#: lib/util.php:952 +#: lib/util.php:1013 msgid "a few seconds ago" msgstr "alguns segundos atrás" -#: lib/util.php:954 +#: lib/util.php:1015 msgid "about a minute ago" msgstr "cerca de 1 minuto atrás" -#: lib/util.php:956 +#: lib/util.php:1017 #, php-format msgid "about %d minutes ago" msgstr "cerca de %d minutos atrás" -#: lib/util.php:958 +#: lib/util.php:1019 msgid "about an hour ago" msgstr "cerca de 1 hora atrás" -#: lib/util.php:960 +#: lib/util.php:1021 #, php-format msgid "about %d hours ago" msgstr "cerca de %d horas atrás" -#: lib/util.php:962 +#: lib/util.php:1023 msgid "about a day ago" msgstr "cerca de 1 dia atrás" -#: lib/util.php:964 +#: lib/util.php:1025 #, php-format msgid "about %d days ago" msgstr "cerca de %d dias atrás" -#: lib/util.php:966 +#: lib/util.php:1027 msgid "about a month ago" msgstr "cerca de 1 mês atrás" -#: lib/util.php:968 +#: lib/util.php:1029 #, php-format msgid "about %d months ago" msgstr "cerca de %d meses atrás" -#: lib/util.php:970 +#: lib/util.php:1031 msgid "about a year ago" msgstr "cerca de 1 ano atrás" diff --git a/locale/ru/LC_MESSAGES/statusnet.po b/locale/ru/LC_MESSAGES/statusnet.po index d4df1a6548..4db3b06846 100644 --- a/locale/ru/LC_MESSAGES/statusnet.po +++ b/locale/ru/LC_MESSAGES/statusnet.po @@ -12,77 +12,84 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-02-24 23:49+0000\n" -"PO-Revision-Date: 2010-02-24 23:51:41+0000\n" +"POT-Creation-Date: 2010-03-02 21:02+0000\n" +"PO-Revision-Date: 2010-03-02 21:03:44+0000\n" "Language-Team: Russian\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r62925); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" "10< =4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: actions/accessadminpanel.php:54 lib/adminpanelaction.php:326 +#. TRANS: Page title +#: actions/accessadminpanel.php:55 msgid "Access" msgstr "Принять" -#: actions/accessadminpanel.php:65 +#. TRANS: Page notice +#: actions/accessadminpanel.php:67 msgid "Site access settings" msgstr "Настройки доступа к сайту" -#: actions/accessadminpanel.php:158 +#. TRANS: Form legend for registration form. +#: actions/accessadminpanel.php:161 msgid "Registration" msgstr "Регистрация" -#: actions/accessadminpanel.php:161 -msgid "Private" -msgstr "Личное" - -#: actions/accessadminpanel.php:163 +#. TRANS: Checkbox instructions for admin setting "Private" +#: actions/accessadminpanel.php:165 msgid "Prohibit anonymous users (not logged in) from viewing site?" msgstr "" "Запретить анонимным (не авторизовавшимся) пользователям просматривать сайт?" +#. TRANS: Checkbox label for prohibiting anonymous users from viewing site. #: actions/accessadminpanel.php:167 -msgid "Invite only" -msgstr "Только по приглашениям" +#, fuzzy +msgctxt "LABEL" +msgid "Private" +msgstr "Личное" -#: actions/accessadminpanel.php:169 +#. TRANS: Checkbox instructions for admin setting "Invite only" +#: actions/accessadminpanel.php:174 msgid "Make registration invitation only." msgstr "Разрешить регистрацию только по приглашениям." -#: actions/accessadminpanel.php:173 -msgid "Closed" -msgstr "Закрыта" +#. TRANS: Checkbox label for configuring site as invite only. +#: actions/accessadminpanel.php:176 +msgid "Invite only" +msgstr "Только по приглашениям" -#: actions/accessadminpanel.php:175 +#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations) +#: actions/accessadminpanel.php:183 msgid "Disable new registrations." msgstr "Отключить новые регистрации." -#: actions/accessadminpanel.php:189 actions/designadminpanel.php:586 -#: actions/emailsettings.php:195 actions/imsettings.php:163 -#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 -#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 -#: actions/siteadminpanel.php:336 actions/smssettings.php:181 -#: actions/subscriptions.php:208 actions/tagother.php:154 -#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 -#: lib/applicationeditform.php:334 lib/designsettings.php:256 -#: lib/groupeditform.php:202 -msgid "Save" -msgstr "Сохранить" +#. TRANS: Checkbox label for disabling new user registrations. +#: actions/accessadminpanel.php:185 +msgid "Closed" +msgstr "Закрыта" -#: actions/accessadminpanel.php:189 +#. TRANS: Title / tooltip for button to save access settings in site admin panel +#: actions/accessadminpanel.php:202 msgid "Save access settings" msgstr "Сохранить настройки доступа" -#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 -#: actions/showfavorites.php:137 actions/tag.php:51 +#: actions/accessadminpanel.php:203 +#, fuzzy +msgctxt "BUTTON" +msgid "Save" +msgstr "Сохранить" + +#. TRANS: Server error when page not found (404) +#: actions/all.php:64 actions/public.php:98 actions/replies.php:93 +#: actions/showfavorites.php:138 actions/tag.php:52 msgid "No such page" msgstr "Нет такой страницы" -#: actions/all.php:74 actions/allrss.php:68 +#: actions/all.php:75 actions/allrss.php:68 #: actions/apiaccountupdatedeliverydevice.php:113 #: actions/apiaccountupdateprofile.php:105 #: actions/apiaccountupdateprofilebackgroundimage.php:116 @@ -96,51 +103,59 @@ msgstr "Нет такой страницы" #: actions/apitimelinehome.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/otp.php:76 -#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154 -#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 -#: actions/showfavorites.php:105 actions/userbyid.php:74 -#: actions/usergroups.php:91 actions/userrss.php:38 actions/xrds.php:71 -#: lib/command.php:163 lib/command.php:302 lib/command.php:355 -#: lib/command.php:401 lib/command.php:462 lib/command.php:518 -#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 +#: actions/hcard.php:67 actions/microsummary.php:62 actions/newmessage.php:116 +#: actions/otp.php:76 actions/remotesubscribe.php:145 +#: actions/remotesubscribe.php:154 actions/replies.php:73 +#: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/xrds.php:71 lib/command.php:163 lib/command.php:302 +#: lib/command.php:355 lib/command.php:401 lib/command.php:462 +#: lib/command.php:518 lib/galleryaction.php:59 lib/mailbox.php:82 +#: lib/profileaction.php:77 msgid "No such user." msgstr "Нет такого пользователя." -#: actions/all.php:84 +#. TRANS: Page title. %1$s is user nickname, %2$d is page number +#: actions/all.php:86 #, php-format msgid "%1$s and friends, page %2$d" msgstr "%1$s и друзья, страница %2$d" -#: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 +#. TRANS: Page title. %1$s is user nickname +#. TRANS: H1 text. %1$s is user nickname +#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" msgstr "%s и друзья" -#: actions/all.php:99 +#. TRANS: %1$s is user nickname +#: actions/all.php:103 #, php-format msgid "Feed for friends of %s (RSS 1.0)" msgstr "Лента друзей %s (RSS 1.0)" -#: actions/all.php:107 +#. TRANS: %1$s is user nickname +#: actions/all.php:112 #, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "Лента друзей %s (RSS 2.0)" -#: actions/all.php:115 +#. TRANS: %1$s is user nickname +#: actions/all.php:121 #, php-format msgid "Feed for friends of %s (Atom)" msgstr "Лента друзей %s (Atom)" -#: actions/all.php:127 +#. TRANS: %1$s is user nickname +#: actions/all.php:134 #, php-format msgid "" "This is the timeline for %s and friends but no one has posted anything yet." msgstr "Это лента %s и друзей, однако пока никто ничего не отправил." -#: actions/all.php:132 +#: actions/all.php:139 #, php-format msgid "" "Try subscribing to more people, [join a group](%%action.groups%%) or post " @@ -149,7 +164,8 @@ msgstr "" "Попробуйте подписаться на большее число людей, [присоединитесь к группе](%%" "action.groups%%) или отправьте что-нибудь сами." -#: actions/all.php:134 +#. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@" +#: actions/all.php:142 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) from his profile or [post something to " @@ -159,7 +175,7 @@ msgstr "" "что-нибудь для привлечения его или её внимания](%%%%action.newnotice%%%%?" "status_textarea=%3$s)." -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211 +#: actions/all.php:145 actions/replies.php:210 actions/showstream.php:211 #, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " @@ -168,7 +184,8 @@ msgstr "" "Почему бы не [зарегистрироваться](%%action.register%%), чтобы «подтолкнуть» %" "s или отправить запись для привлечения его или её внимания?" -#: actions/all.php:165 +#. TRANS: H1 text +#: actions/all.php:174 msgid "You and friends" msgstr "Вы и друзья" @@ -186,20 +203,20 @@ msgstr "Обновлено от %1$s и его друзей на %2$s!" #: actions/apiaccountverifycredentials.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:128 actions/apigroupcreate.php:136 +#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: actions/apigroupleave.php:141 actions/apigrouplist.php:132 #: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 #: actions/apigroupshow.php:115 actions/apihelptest.php:88 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 -#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184 +#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 #: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:207 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 msgid "API method not found." msgstr "Метод API не найден." @@ -231,8 +248,9 @@ msgstr "Не удаётся обновить пользователя." #: actions/apiaccountupdateprofilebackgroundimage.php:194 #: actions/apiaccountupdateprofilecolors.php:185 #: 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 +#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 +#: actions/replies.php:80 actions/usergroups.php:98 lib/galleryaction.php:66 +#: lib/profileaction.php:84 msgid "User has no profile." msgstr "У пользователя нет профиля." @@ -258,7 +276,7 @@ msgstr "" #: actions/apiaccountupdateprofilebackgroundimage.php:146 #: actions/apiaccountupdateprofilecolors.php:164 #: actions/apiaccountupdateprofilecolors.php:174 -#: actions/groupdesignsettings.php:287 actions/groupdesignsettings.php:297 +#: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300 #: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 #: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 msgid "Unable to save your design settings." @@ -374,69 +392,69 @@ msgstr "Не удаётся определить исходного пользо msgid "Could not find target user." msgstr "Не удаётся найти целевого пользователя." -#: actions/apigroupcreate.php:164 actions/editgroup.php:182 +#: actions/apigroupcreate.php:166 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:215 #: actions/register.php:205 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" "Имя должно состоять только из прописных букв и цифр и не иметь пробелов." -#: actions/apigroupcreate.php:173 actions/editgroup.php:186 +#: actions/apigroupcreate.php:175 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:238 #: actions/register.php:208 msgid "Nickname already in use. Try another one." msgstr "Такое имя уже используется. Попробуйте какое-нибудь другое." -#: actions/apigroupcreate.php:180 actions/editgroup.php:189 +#: actions/apigroupcreate.php:182 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:218 #: actions/register.php:210 msgid "Not a valid nickname." msgstr "Неверное имя." -#: actions/apigroupcreate.php:196 actions/editapplication.php:215 -#: actions/editgroup.php:195 actions/newapplication.php:203 +#: actions/apigroupcreate.php:198 actions/editapplication.php:215 +#: actions/editgroup.php:199 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:217 msgid "Homepage is not a valid URL." msgstr "URL Главной страницы неверен." -#: actions/apigroupcreate.php:205 actions/editgroup.php:198 +#: actions/apigroupcreate.php:207 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:225 #: actions/register.php:220 msgid "Full name is too long (max 255 chars)." msgstr "Полное имя слишком длинное (не больше 255 знаков)." -#: actions/apigroupcreate.php:213 actions/editapplication.php:190 +#: actions/apigroupcreate.php:215 actions/editapplication.php:190 #: actions/newapplication.php:172 #, php-format msgid "Description is too long (max %d chars)." msgstr "Слишком длинное описание (максимум %d символов)" -#: actions/apigroupcreate.php:224 actions/editgroup.php:204 +#: actions/apigroupcreate.php:226 actions/editgroup.php:208 #: actions/newgroup.php:148 actions/profilesettings.php:232 #: actions/register.php:227 msgid "Location is too long (max 255 chars)." msgstr "Слишком длинное месторасположение (максимум 255 знаков)." -#: actions/apigroupcreate.php:243 actions/editgroup.php:215 +#: actions/apigroupcreate.php:245 actions/editgroup.php:219 #: actions/newgroup.php:159 #, php-format msgid "Too many aliases! Maximum %d." msgstr "Слишком много алиасов! Максимальное число — %d." -#: actions/apigroupcreate.php:264 actions/editgroup.php:224 +#: actions/apigroupcreate.php:266 actions/editgroup.php:228 #: actions/newgroup.php:168 #, php-format msgid "Invalid alias: \"%s\"" msgstr "Неверный алиас: «%s»" -#: actions/apigroupcreate.php:273 actions/editgroup.php:228 +#: actions/apigroupcreate.php:275 actions/editgroup.php:232 #: actions/newgroup.php:172 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "Алиас «%s» уже используется. Попробуйте какой-нибудь другой." -#: actions/apigroupcreate.php:286 actions/editgroup.php:234 +#: actions/apigroupcreate.php:288 actions/editgroup.php:238 #: actions/newgroup.php:178 msgid "Alias can't be the same as nickname." msgstr "Алиас не может совпадать с именем." @@ -447,15 +465,15 @@ msgstr "Алиас не может совпадать с именем." msgid "Group not found!" msgstr "Группа не найдена!" -#: actions/apigroupjoin.php:110 actions/joingroup.php:90 +#: actions/apigroupjoin.php:110 actions/joingroup.php:100 msgid "You are already a member of that group." msgstr "Вы уже являетесь членом этой группы." -#: actions/apigroupjoin.php:119 actions/joingroup.php:95 lib/command.php:221 +#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:221 msgid "You have been blocked from that group by the admin." msgstr "Вы заблокированы из этой группы администратором." -#: actions/apigroupjoin.php:138 actions/joingroup.php:124 +#: actions/apigroupjoin.php:138 actions/joingroup.php:134 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Не удаётся присоединить пользователя %1$s к группе %2$s." @@ -464,7 +482,7 @@ msgstr "Не удаётся присоединить пользователя %1 msgid "You are not a member of this group." msgstr "Вы не являетесь членом этой группы." -#: actions/apigroupleave.php:124 actions/leavegroup.php:119 +#: actions/apigroupleave.php:124 actions/leavegroup.php:129 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "Не удаётся удалить пользователя %1$s из группы %2$s." @@ -495,7 +513,7 @@ msgstr "Неправильный токен" #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 #: actions/deletenotice.php:157 actions/disfavor.php:74 #: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54 -#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupblock.php:66 actions/grouplogo.php:312 #: actions/groupunblock.php:66 actions/imsettings.php:206 #: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 @@ -537,7 +555,7 @@ msgstr "Запрос токена %s был запрещен и аннулиро #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:103 actions/editapplication.php:139 -#: actions/emailsettings.php:256 actions/grouplogo.php:319 +#: actions/emailsettings.php:256 actions/grouplogo.php:322 #: actions/imsettings.php:220 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 #: actions/smssettings.php:248 lib/designsettings.php:304 @@ -564,13 +582,13 @@ msgstr "" "предоставлять разрешение на доступ к вашей учётной записи %4$s только тем " "сторонним приложениям, которым вы доверяете." -#: actions/apioauthauthorize.php:310 lib/action.php:441 +#: actions/apioauthauthorize.php:310 msgid "Account" msgstr "Настройки" #: actions/apioauthauthorize.php:313 actions/login.php:230 #: actions/profilesettings.php:106 actions/register.php:424 -#: actions/showgroup.php:236 actions/tagother.php:94 +#: actions/showgroup.php:244 actions/tagother.php:94 #: actions/userauthorization.php:145 lib/groupeditform.php:152 #: lib/userprofile.php:131 msgid "Nickname" @@ -652,12 +670,12 @@ msgid "%1$s updates favorited by %2$s / %2$s." msgstr "Обновления %1$s, отмеченные как любимые %2$s / %2$s." #: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:131 actions/userrss.php:90 +#: actions/grouprss.php:138 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "Лента %s" -#: actions/apitimelinegroup.php:114 actions/apitimelineuser.php:126 +#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 #: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" @@ -693,7 +711,7 @@ msgstr "Повторено для %s" msgid "Repeats of %s" msgstr "Повторы за %s" -#: actions/apitimelinetag.php:102 actions/tag.php:66 +#: actions/apitimelinetag.php:102 actions/tag.php:67 #, php-format msgid "Notices tagged with %s" msgstr "Записи с тегом %s" @@ -714,8 +732,7 @@ msgstr "Нет такого вложения." #: actions/avatarbynickname.php:59 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/leavegroup.php:76 -#: actions/showgroup.php:121 +#: actions/grouprss.php:91 actions/showgroup.php:121 msgid "No nickname." msgstr "Нет имени." @@ -727,7 +744,7 @@ msgstr "Нет размера." msgid "Invalid size." msgstr "Неверный размер." -#: actions/avatarsettings.php:67 actions/showgroup.php:221 +#: actions/avatarsettings.php:67 actions/showgroup.php:229 #: lib/accountsettingsaction.php:112 msgid "Avatar" msgstr "Аватара" @@ -745,30 +762,30 @@ msgid "User without matching profile" msgstr "Пользователь без соответствующего профиля" #: actions/avatarsettings.php:119 actions/avatarsettings.php:197 -#: actions/grouplogo.php:251 +#: actions/grouplogo.php:254 msgid "Avatar settings" msgstr "Настройки аватары" #: actions/avatarsettings.php:127 actions/avatarsettings.php:205 -#: actions/grouplogo.php:199 actions/grouplogo.php:259 +#: actions/grouplogo.php:202 actions/grouplogo.php:262 msgid "Original" msgstr "Оригинал" #: actions/avatarsettings.php:142 actions/avatarsettings.php:217 -#: actions/grouplogo.php:210 actions/grouplogo.php:271 +#: actions/grouplogo.php:213 actions/grouplogo.php:274 msgid "Preview" msgstr "Просмотр" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:637 +#: lib/deleteuserform.php:66 lib/noticelist.php:655 msgid "Delete" msgstr "Удалить" -#: actions/avatarsettings.php:166 actions/grouplogo.php:233 +#: actions/avatarsettings.php:166 actions/grouplogo.php:236 msgid "Upload" msgstr "Загрузить" -#: actions/avatarsettings.php:231 actions/grouplogo.php:286 +#: actions/avatarsettings.php:231 actions/grouplogo.php:289 msgid "Crop" msgstr "Обрезать" @@ -776,7 +793,7 @@ msgstr "Обрезать" msgid "Pick a square area of the image to be your avatar" msgstr "Подберите нужный квадратный участок для вашей аватары" -#: actions/avatarsettings.php:343 actions/grouplogo.php:377 +#: actions/avatarsettings.php:343 actions/grouplogo.php:380 msgid "Lost our file data." msgstr "Потеряна информация о файле." @@ -811,22 +828,22 @@ msgstr "" "приходить уведомления об @-ответах от него." #: actions/block.php:143 actions/deleteapplication.php:153 -#: actions/deletenotice.php:145 actions/deleteuser.php:147 +#: actions/deletenotice.php:145 actions/deleteuser.php:150 #: actions/groupblock.php:178 msgid "No" msgstr "Нет" -#: actions/block.php:143 actions/deleteuser.php:147 +#: actions/block.php:143 actions/deleteuser.php:150 msgid "Do not block this user" msgstr "Не блокировать этого пользователя" #: actions/block.php:144 actions/deleteapplication.php:158 -#: actions/deletenotice.php:146 actions/deleteuser.php:148 +#: actions/deletenotice.php:146 actions/deleteuser.php:151 #: actions/groupblock.php:179 lib/repeatform.php:132 msgid "Yes" msgstr "Да" -#: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:355 lib/blockform.php:80 msgid "Block this user" msgstr "Заблокировать пользователя." @@ -834,39 +851,43 @@ msgstr "Заблокировать пользователя." msgid "Failed to save block information." msgstr "Не удаётся сохранить информацию о блокировании." -#: actions/blockedfromgroup.php:80 actions/editgroup.php:96 -#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/groupblock.php:86 -#: actions/groupbyid.php:83 actions/groupdesignsettings.php:97 -#: actions/grouplogo.php:99 actions/groupmembers.php:83 -#: actions/grouprss.php:98 actions/groupunblock.php:86 -#: actions/joingroup.php:83 actions/leavegroup.php:83 actions/makeadmin.php:86 -#: actions/showgroup.php:137 lib/command.php:212 lib/command.php:260 +#: actions/blockedfromgroup.php:80 actions/blockedfromgroup.php:87 +#: actions/editgroup.php:100 actions/foafgroup.php:44 actions/foafgroup.php:62 +#: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:100 actions/grouplogo.php:102 +#: actions/groupmembers.php:83 actions/groupmembers.php:90 +#: actions/grouprss.php:98 actions/grouprss.php:105 +#: actions/groupunblock.php:86 actions/joingroup.php:82 +#: actions/joingroup.php:93 actions/leavegroup.php:82 +#: actions/leavegroup.php:93 actions/makeadmin.php:86 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:212 +#: lib/command.php:260 msgid "No such group." msgstr "Нет такой группы." -#: actions/blockedfromgroup.php:90 +#: actions/blockedfromgroup.php:97 #, php-format msgid "%s blocked profiles" msgstr "Заблокированные профили %s" -#: actions/blockedfromgroup.php:93 +#: actions/blockedfromgroup.php:100 #, php-format msgid "%1$s blocked profiles, page %2$d" msgstr "Заблокированные профили %1$s, страница %2$d" -#: actions/blockedfromgroup.php:108 +#: actions/blockedfromgroup.php:115 msgid "A list of the users blocked from joining this group." msgstr "Список пользователей, заблокированных от присоединения к этой группе." -#: actions/blockedfromgroup.php:281 +#: actions/blockedfromgroup.php:288 msgid "Unblock user from group" msgstr "Разблокировать пользователя в группе." -#: actions/blockedfromgroup.php:313 lib/unblockform.php:69 +#: actions/blockedfromgroup.php:320 lib/unblockform.php:69 msgid "Unblock" msgstr "Разблокировать" -#: actions/blockedfromgroup.php:313 lib/unblockform.php:80 +#: actions/blockedfromgroup.php:320 lib/unblockform.php:80 msgid "Unblock this user" msgstr "Разблокировать пользователя." @@ -941,7 +962,7 @@ msgstr "Вы не являетесь владельцем этого прило #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1197 +#: lib/action.php:1228 msgid "There was a problem with your session token." msgstr "Проблема с Вашей сессией. Попробуйте ещё раз, пожалуйста." @@ -967,12 +988,13 @@ msgstr "Не удаляйте это приложение" msgid "Delete this application" msgstr "Удалить это приложение" +#. TRANS: Client error message #: 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:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 -#: lib/adminpanelaction.php:72 lib/profileformaction.php:63 +#: lib/adminpanelaction.php:73 lib/profileformaction.php:63 #: lib/settingsaction.php:72 msgid "Not logged in." msgstr "Не авторизован." @@ -1001,7 +1023,7 @@ msgstr "Вы уверены, что хотите удалить эту запи msgid "Do not delete this notice" msgstr "Не удалять эту запись" -#: actions/deletenotice.php:146 lib/noticelist.php:637 +#: actions/deletenotice.php:146 lib/noticelist.php:655 msgid "Delete this notice" msgstr "Удалить эту запись" @@ -1017,7 +1039,7 @@ msgstr "Вы можете удалять только внутренних по msgid "Delete user" msgstr "Удалить пользователя" -#: actions/deleteuser.php:135 +#: actions/deleteuser.php:136 msgid "" "Are you sure you want to delete this user? This will clear all data about " "the user from the database, without a backup." @@ -1025,12 +1047,12 @@ msgstr "" "Вы действительно хотите удалить этого пользователя? Это повлечёт удаление " "всех данных о пользователе из базы данных без возможности восстановления." -#: actions/deleteuser.php:148 lib/deleteuserform.php:77 +#: actions/deleteuser.php:151 lib/deleteuserform.php:77 msgid "Delete this user" msgstr "Удалить этого пользователя" #: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 -#: lib/adminpanelaction.php:316 lib/groupnav.php:119 +#: lib/groupnav.php:119 msgid "Design" msgstr "Оформление" @@ -1133,6 +1155,17 @@ msgstr "Восстановить оформление по умолчанию" msgid "Reset back to default" msgstr "Восстановить значения по умолчанию" +#: actions/designadminpanel.php:586 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/tagother.php:154 actions/useradminpanel.php:294 +#: lib/applicationeditform.php:333 lib/applicationeditform.php:334 +#: lib/designsettings.php:256 lib/groupeditform.php:202 +msgid "Save" +msgstr "Сохранить" + #: actions/designadminpanel.php:587 lib/designsettings.php:257 msgid "Save design" msgstr "Сохранить оформление" @@ -1224,29 +1257,29 @@ msgstr "Изменить информацию о группе %s" msgid "You must be logged in to create a group." msgstr "Вы должны авторизоваться, чтобы создать новую группу." -#: actions/editgroup.php:103 actions/editgroup.php:168 -#: actions/groupdesignsettings.php:104 actions/grouplogo.php:106 +#: actions/editgroup.php:107 actions/editgroup.php:172 +#: actions/groupdesignsettings.php:107 actions/grouplogo.php:109 msgid "You must be an admin to edit the group." msgstr "Вы должны быть администратором, чтобы изменять информацию о группе." -#: actions/editgroup.php:154 +#: actions/editgroup.php:158 msgid "Use this form to edit the group." msgstr "Заполните информацию о группе в следующие поля" -#: actions/editgroup.php:201 actions/newgroup.php:145 +#: actions/editgroup.php:205 actions/newgroup.php:145 #, php-format msgid "description is too long (max %d chars)." msgstr "Слишком длинное описание (максимум %d символов)" -#: actions/editgroup.php:253 +#: actions/editgroup.php:258 msgid "Could not update group." msgstr "Не удаётся обновить информацию о группе." -#: actions/editgroup.php:259 classes/User_group.php:433 +#: actions/editgroup.php:264 classes/User_group.php:478 msgid "Could not create aliases." msgstr "Не удаётся создать алиасы." -#: actions/editgroup.php:269 +#: actions/editgroup.php:280 msgid "Options saved." msgstr "Настройки сохранены." @@ -1596,7 +1629,7 @@ msgstr "Пользователь уже заблокирован из групп msgid "User is not a member of group." msgstr "Пользователь не является членом этой группы." -#: actions/groupblock.php:136 actions/groupmembers.php:316 +#: actions/groupblock.php:136 actions/groupmembers.php:323 msgid "Block user from group" msgstr "Заблокировать пользователя из группы." @@ -1631,11 +1664,11 @@ msgstr "Нет ID." msgid "You must be logged in to edit a group." msgstr "Вы должны авторизоваться, чтобы изменить группу." -#: actions/groupdesignsettings.php:141 +#: actions/groupdesignsettings.php:144 msgid "Group design" msgstr "Оформление группы" -#: actions/groupdesignsettings.php:152 +#: actions/groupdesignsettings.php:155 msgid "" "Customize the way your group looks with a background image and a colour " "palette of your choice." @@ -1643,20 +1676,20 @@ msgstr "" "Настройте внешний вид группы, установив фоновое изображение и цветовую гамму " "на ваш выбор." -#: actions/groupdesignsettings.php:263 actions/userdesignsettings.php:186 +#: actions/groupdesignsettings.php:266 actions/userdesignsettings.php:186 #: lib/designsettings.php:391 lib/designsettings.php:413 msgid "Couldn't update your design." msgstr "Не удаётся обновить ваше оформление." -#: actions/groupdesignsettings.php:308 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231 msgid "Design preferences saved." msgstr "Настройки оформления сохранены." -#: actions/grouplogo.php:139 actions/grouplogo.php:192 +#: actions/grouplogo.php:142 actions/grouplogo.php:195 msgid "Group logo" msgstr "Логотип группы" -#: actions/grouplogo.php:150 +#: actions/grouplogo.php:153 #, php-format msgid "" "You can upload a logo image for your group. The maximum file size is %s." @@ -1664,57 +1697,57 @@ msgstr "" "Здесь вы можете загрузить логотип для группы. Максимальный размер файла " "составляет %s." -#: actions/grouplogo.php:178 +#: actions/grouplogo.php:181 msgid "User without matching profile." msgstr "Пользователь без соответствующего профиля." -#: actions/grouplogo.php:362 +#: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." msgstr "Подберите нужный квадратный участок для вашего логотипа." -#: actions/grouplogo.php:396 +#: actions/grouplogo.php:399 msgid "Logo updated." msgstr "Логотип обновлён." -#: actions/grouplogo.php:398 +#: actions/grouplogo.php:401 msgid "Failed updating logo." msgstr "Неудача при обновлении логотипа." -#: actions/groupmembers.php:93 lib/groupnav.php:92 +#: actions/groupmembers.php:100 lib/groupnav.php:92 #, php-format msgid "%s group members" msgstr "Участники группы %s" -#: actions/groupmembers.php:96 +#: actions/groupmembers.php:103 #, php-format msgid "%1$s group members, page %2$d" msgstr "Участники группы %1$s, страница %2$d" -#: actions/groupmembers.php:111 +#: actions/groupmembers.php:118 msgid "A list of the users in this group." msgstr "Список пользователей, являющихся членами этой группы." -#: actions/groupmembers.php:175 lib/action.php:448 lib/groupnav.php:107 +#: actions/groupmembers.php:182 lib/groupnav.php:107 msgid "Admin" msgstr "Настройки" -#: actions/groupmembers.php:348 lib/blockform.php:69 +#: actions/groupmembers.php:355 lib/blockform.php:69 msgid "Block" msgstr "Блокировать" -#: actions/groupmembers.php:443 +#: actions/groupmembers.php:450 msgid "Make user an admin of the group" msgstr "Сделать пользователя администратором группы" -#: actions/groupmembers.php:475 +#: actions/groupmembers.php:482 msgid "Make Admin" msgstr "Сделать администратором" -#: actions/groupmembers.php:475 +#: actions/groupmembers.php:482 msgid "Make this user an admin" msgstr "Сделать этого пользователя администратором" -#: actions/grouprss.php:133 +#: actions/grouprss.php:140 #, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Обновления участников %1$s на %2$s!" @@ -1980,16 +2013,19 @@ msgstr "Личное сообщение" msgid "Optionally add a personal message to the invitation." msgstr "Можно добавить к приглашению личное сообщение." -#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:236 +#. TRANS: Send button for inviting friends +#: actions/invite.php:198 +#, fuzzy +msgctxt "BUTTON" msgid "Send" -msgstr "ОК" +msgstr "Отправить" -#: actions/invite.php:226 +#: actions/invite.php:227 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "%1$s пригласил вас присоединиться к нему на %2$s" -#: actions/invite.php:228 +#: actions/invite.php:229 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -2050,7 +2086,11 @@ msgstr "" msgid "You must be logged in to join a group." msgstr "Вы должны авторизоваться для вступления в группу." -#: actions/joingroup.php:131 +#: actions/joingroup.php:88 actions/leavegroup.php:88 +msgid "No nickname or ID." +msgstr "Нет имени или ID." + +#: actions/joingroup.php:141 #, php-format msgid "%1$s joined group %2$s" msgstr "%1$s вступил в группу %2$s" @@ -2059,11 +2099,11 @@ msgstr "%1$s вступил в группу %2$s" msgid "You must be logged in to leave a group." msgstr "Вы должны авторизоваться, чтобы покинуть группу." -#: actions/leavegroup.php:90 lib/command.php:265 +#: actions/leavegroup.php:100 lib/command.php:265 msgid "You are not a member of that group." msgstr "Вы не являетесь членом этой группы." -#: actions/leavegroup.php:127 +#: actions/leavegroup.php:137 #, php-format msgid "%1$s left group %2$s" msgstr "%1$s покинул группу %2$s" @@ -2080,8 +2120,7 @@ msgstr "Некорректное имя или пароль." msgid "Error setting user. You are probably not authorized." msgstr "Ошибка установки пользователя. Вы, вероятно, не авторизованы." -#: actions/login.php:188 actions/login.php:241 lib/action.php:466 -#: lib/logingroupnav.php:79 +#: actions/login.php:188 actions/login.php:241 lib/logingroupnav.php:79 msgid "Login" msgstr "Вход" @@ -2333,8 +2372,8 @@ msgstr "тип содержимого " msgid "Only " msgstr "Только " -#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 -#: lib/api.php:1068 lib/api.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 +#: lib/apiaction.php:1068 lib/apiaction.php:1177 msgid "Not a supported data format." msgstr "Неподдерживаемый формат данных." @@ -2475,7 +2514,7 @@ msgstr "Не удаётся сохранить новый пароль." msgid "Password saved." msgstr "Пароль сохранён." -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:331 +#: actions/pathsadminpanel.php:59 msgid "Paths" msgstr "Пути" @@ -2508,7 +2547,6 @@ msgid "Invalid SSL server. The maximum length is 255 characters." msgstr "Неверный SSL-сервер. Максимальная длина составляет 255 символов." #: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58 -#: lib/adminpanelaction.php:311 msgid "Site" msgstr "Сайт" @@ -2680,7 +2718,7 @@ msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1-64 латинских строчных буквы или цифры, без пробелов" #: actions/profilesettings.php:111 actions/register.php:448 -#: actions/showgroup.php:247 actions/tagother.php:104 +#: actions/showgroup.php:255 actions/tagother.php:104 #: lib/groupeditform.php:157 lib/userprofile.php:149 msgid "Full name" msgstr "Полное имя" @@ -2708,7 +2746,7 @@ msgid "Bio" msgstr "Биография" #: actions/profilesettings.php:132 actions/register.php:471 -#: actions/showgroup.php:256 actions/tagother.php:112 +#: actions/showgroup.php:264 actions/tagother.php:112 #: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:164 msgid "Location" @@ -2790,7 +2828,8 @@ msgstr "Не удаётся сохранить профиль." msgid "Couldn't save tags." msgstr "Не удаётся сохранить теги." -#: actions/profilesettings.php:391 lib/adminpanelaction.php:137 +#. TRANS: Message after successful saving of administrative settings. +#: actions/profilesettings.php:391 lib/adminpanelaction.php:141 msgid "Settings saved." msgstr "Настройки сохранены." @@ -2803,39 +2842,39 @@ msgstr "Превышен предел страницы (%s)" msgid "Could not retrieve public stream." msgstr "Не удаётся вернуть публичный поток." -#: actions/public.php:129 +#: actions/public.php:130 #, php-format msgid "Public timeline, page %d" msgstr "Общая лента, страница %d" -#: actions/public.php:131 lib/publicgroupnav.php:79 +#: actions/public.php:132 lib/publicgroupnav.php:79 msgid "Public timeline" msgstr "Общая лента" -#: actions/public.php:159 +#: actions/public.php:160 msgid "Public Stream Feed (RSS 1.0)" msgstr "Лента публичного потока (RSS 1.0)" -#: actions/public.php:163 +#: actions/public.php:164 msgid "Public Stream Feed (RSS 2.0)" msgstr "Лента публичного потока (RSS 2.0)" -#: actions/public.php:167 +#: actions/public.php:168 msgid "Public Stream Feed (Atom)" msgstr "Лента публичного потока (Atom)" -#: actions/public.php:187 +#: actions/public.php:188 #, php-format msgid "" "This is the public timeline for %%site.name%% but no one has posted anything " "yet." msgstr "Это общая лента %%site.name%%, однако пока никто ничего не отправил." -#: actions/public.php:190 +#: actions/public.php:191 msgid "Be the first to post!" msgstr "Создайте первую запись!" -#: actions/public.php:194 +#: actions/public.php:195 #, php-format msgid "" "Why not [register an account](%%action.register%%) and be the first to post!" @@ -2843,7 +2882,7 @@ msgstr "" "Почему бы не [зарегистрироваться](%%action.register%%), чтобы стать первым " "отправителем?" -#: actions/public.php:241 +#: actions/public.php:242 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2857,7 +2896,7 @@ msgstr "" "register%%), чтобы держать в курсе своих событий поклонников, друзей, " "родственников и коллег! ([Читать далее](%%doc.help%%))" -#: actions/public.php:246 +#: actions/public.php:247 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -3035,8 +3074,7 @@ msgstr "Извините, неверный пригласительный код msgid "Registration successful" msgstr "Регистрация успешна!" -#: actions/register.php:114 actions/register.php:503 lib/action.php:463 -#: lib/logingroupnav.php:85 +#: actions/register.php:114 actions/register.php:503 lib/logingroupnav.php:85 msgid "Register" msgstr "Регистрация" @@ -3223,7 +3261,7 @@ msgstr "Вы не можете повторить собственную зап msgid "You already repeated that notice." msgstr "Вы уже повторили эту запись." -#: actions/repeat.php:114 lib/noticelist.php:656 +#: actions/repeat.php:114 lib/noticelist.php:674 msgid "Repeated" msgstr "Повторено" @@ -3231,33 +3269,33 @@ msgstr "Повторено" msgid "Repeated!" msgstr "Повторено!" -#: actions/replies.php:125 actions/repliesrss.php:68 +#: actions/replies.php:126 actions/repliesrss.php:68 #: lib/personalgroupnav.php:105 #, php-format msgid "Replies to %s" msgstr "Ответы для %s" -#: actions/replies.php:127 +#: actions/replies.php:128 #, php-format msgid "Replies to %1$s, page %2$d" msgstr "Ответы для %1$s, страница %2$d" -#: actions/replies.php:144 +#: actions/replies.php:145 #, php-format msgid "Replies feed for %s (RSS 1.0)" msgstr "Лента записей для %s (RSS 1.0)" -#: actions/replies.php:151 +#: actions/replies.php:152 #, php-format msgid "Replies feed for %s (RSS 2.0)" msgstr "Лента записей для %s (RSS 2.0)" -#: actions/replies.php:158 +#: actions/replies.php:159 #, php-format msgid "Replies feed for %s (Atom)" msgstr "Лента записей для %s (Atom)" -#: actions/replies.php:198 +#: actions/replies.php:199 #, php-format msgid "" "This is the timeline showing replies to %1$s but %2$s hasn't received a " @@ -3265,7 +3303,7 @@ msgid "" msgstr "" "Эта лента содержит ответы на записи %1$s, однако %2$s пока не получал их." -#: actions/replies.php:203 +#: actions/replies.php:204 #, php-format msgid "" "You can engage other users in a conversation, subscribe to more people or " @@ -3274,7 +3312,7 @@ msgstr "" "Вы можете вовлечь других пользователей в разговор, подписавшись на большее " "число людей или [присоединившись к группам](%%action.groups%%)." -#: actions/replies.php:205 +#: actions/replies.php:206 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) or [post something to his or her " @@ -3303,7 +3341,6 @@ msgid "User is already sandboxed." msgstr "Пользователь уже в режиме песочницы." #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:336 msgid "Sessions" msgstr "Сессии" @@ -3328,7 +3365,7 @@ msgid "Turn on debugging output for sessions." msgstr "Включить отладочный вывод для сессий." #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/useradminpanel.php:293 +#: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "Сохранить настройки сайта" @@ -3358,7 +3395,7 @@ msgstr "Организация" msgid "Description" msgstr "Описание" -#: actions/showapplication.php:192 actions/showgroup.php:429 +#: actions/showapplication.php:192 actions/showgroup.php:437 #: lib/profileaction.php:174 msgid "Statistics" msgstr "Статистика" @@ -3422,22 +3459,22 @@ msgstr "Любимые записи %1$s, страница %2$d" msgid "Could not retrieve favorite notices." msgstr "Не удаётся восстановить любимые записи." -#: actions/showfavorites.php:170 +#: actions/showfavorites.php:171 #, php-format msgid "Feed for favorites of %s (RSS 1.0)" msgstr "Лента друзей %s (RSS 1.0)" -#: actions/showfavorites.php:177 +#: actions/showfavorites.php:178 #, php-format msgid "Feed for favorites of %s (RSS 2.0)" msgstr "Лента друзей %s (RSS 2.0)" -#: actions/showfavorites.php:184 +#: actions/showfavorites.php:185 #, php-format msgid "Feed for favorites of %s (Atom)" msgstr "Лента друзей %s (Atom)" -#: actions/showfavorites.php:205 +#: actions/showfavorites.php:206 msgid "" "You haven't chosen any favorite notices yet. Click the fave button on " "notices you like to bookmark them for later or shed a spotlight on them." @@ -3445,7 +3482,7 @@ msgstr "" "Вы пока не выбрали ни одной любимой записи. Нажмите на кнопку добавления в " "любимые рядом с понравившейся записью, чтобы позже уделить ей внимание." -#: actions/showfavorites.php:207 +#: actions/showfavorites.php:208 #, php-format msgid "" "%s hasn't added any notices to his favorites yet. Post something interesting " @@ -3454,7 +3491,7 @@ msgstr "" "%s пока не выбрал ни одной любимой записи. Напишите такую интересную запись, " "которую он добавит её в число любимых :)" -#: actions/showfavorites.php:211 +#: actions/showfavorites.php:212 #, php-format msgid "" "%s hasn't added any notices to his favorites yet. Why not [register an " @@ -3465,7 +3502,7 @@ msgstr "" "[зарегистрироваться](%%%%action.register%%%%) и не написать что-нибудь " "интересное, что понравилось бы этому пользователю? :)" -#: actions/showfavorites.php:242 +#: actions/showfavorites.php:243 msgid "This is a way to share what you like." msgstr "Это способ разделить то, что вам нравится." @@ -3479,67 +3516,67 @@ msgstr "Группа %s" msgid "%1$s group, page %2$d" msgstr "Группа %1$s, страница %2$d" -#: actions/showgroup.php:218 +#: actions/showgroup.php:226 msgid "Group profile" msgstr "Профиль группы" -#: actions/showgroup.php:263 actions/tagother.php:118 +#: actions/showgroup.php:271 actions/tagother.php:118 #: actions/userauthorization.php:175 lib/userprofile.php:177 msgid "URL" msgstr "URL" -#: actions/showgroup.php:274 actions/tagother.php:128 +#: actions/showgroup.php:282 actions/tagother.php:128 #: actions/userauthorization.php:187 lib/userprofile.php:194 msgid "Note" msgstr "Запись" -#: actions/showgroup.php:284 lib/groupeditform.php:184 +#: actions/showgroup.php:292 lib/groupeditform.php:184 msgid "Aliases" msgstr "Алиасы" -#: actions/showgroup.php:293 +#: actions/showgroup.php:301 msgid "Group actions" msgstr "Действия группы" -#: actions/showgroup.php:328 +#: actions/showgroup.php:336 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Лента записей группы %s (RSS 1.0)" -#: actions/showgroup.php:334 +#: actions/showgroup.php:342 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Лента записей группы %s (RSS 2.0)" -#: actions/showgroup.php:340 +#: actions/showgroup.php:348 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "Лента записей группы %s (Atom)" -#: actions/showgroup.php:345 +#: actions/showgroup.php:353 #, php-format msgid "FOAF for %s group" msgstr "FOAF для группы %s" -#: actions/showgroup.php:381 actions/showgroup.php:438 lib/groupnav.php:91 +#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 msgid "Members" msgstr "Участники" -#: actions/showgroup.php:386 lib/profileaction.php:117 +#: actions/showgroup.php:394 lib/profileaction.php:117 #: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(пока ничего нет)" -#: actions/showgroup.php:392 +#: actions/showgroup.php:400 msgid "All members" msgstr "Все участники" -#: actions/showgroup.php:432 +#: actions/showgroup.php:440 msgid "Created" msgstr "Создано" -#: actions/showgroup.php:448 +#: actions/showgroup.php:456 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3555,7 +3592,7 @@ msgstr "" "action.register%%%%), чтобы стать участником группы и получить множество " "других возможностей! ([Читать далее](%%%%doc.help%%%%))" -#: actions/showgroup.php:454 +#: actions/showgroup.php:462 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3568,7 +3605,7 @@ msgstr "" "обеспечении [StatusNet](http://status.net/). Участники обмениваются " "короткими сообщениями о своей жизни и интересах. " -#: actions/showgroup.php:482 +#: actions/showgroup.php:490 msgid "Admins" msgstr "Администраторы" @@ -3948,17 +3985,17 @@ msgstr "Не удаётся сохранить подписку." #: actions/subscribe.php:77 msgid "This action only accepts POST requests." -msgstr "" +msgstr "Это действие принимает только POST-запросы." #: actions/subscribe.php:107 -#, fuzzy msgid "No such profile." -msgstr "Нет такого файла." +msgstr "Нет такого профиля." #: actions/subscribe.php:117 -#, fuzzy msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." -msgstr "Вы не подписаны на этот профиль." +msgstr "" +"Вы не можете подписаться на удалённый профиль OMB 0.1 с помощью этого " +"действия." #: actions/subscribe.php:145 msgid "Subscribed" @@ -4053,22 +4090,22 @@ msgstr "Jabber" msgid "SMS" msgstr "СМС" -#: actions/tag.php:68 +#: actions/tag.php:69 #, php-format msgid "Notices tagged with %1$s, page %2$d" msgstr "Записи с тегом %1$s, страница %2$d" -#: actions/tag.php:86 +#: actions/tag.php:87 #, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Лента записей для тега %s (RSS 1.0)" -#: actions/tag.php:92 +#: actions/tag.php:93 #, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Лента записей для тега %s (RSS 2.0)" -#: actions/tag.php:98 +#: actions/tag.php:99 #, php-format msgid "Notice feed for tag %s (Atom)" msgstr "Лента записей для тега %s (Atom)" @@ -4123,7 +4160,7 @@ msgstr "" msgid "No such tag." msgstr "Нет такого тега." -#: actions/twitapitrends.php:87 +#: actions/twitapitrends.php:85 msgid "API method under construction." msgstr "Метод API реконструируется." @@ -4154,71 +4191,73 @@ msgid "" msgstr "" "Лицензия просматриваемого потока «%1$s» несовместима с лицензией сайта «%2$s»." -#: actions/useradminpanel.php:58 lib/adminpanelaction.php:321 -#: lib/personalgroupnav.php:115 +#. TRANS: User admin panel title +#: actions/useradminpanel.php:59 +#, fuzzy +msgctxt "TITLE" msgid "User" msgstr "Пользователь" -#: actions/useradminpanel.php:69 +#: actions/useradminpanel.php:70 msgid "User settings for this StatusNet site." msgstr "Пользовательские настройки для этого сайта StatusNet." -#: actions/useradminpanel.php:148 +#: actions/useradminpanel.php:149 msgid "Invalid bio limit. Must be numeric." msgstr "Неверное ограничение биографии. Должно быть числом." -#: actions/useradminpanel.php:154 +#: actions/useradminpanel.php:155 msgid "Invalid welcome text. Max length is 255 characters." msgstr "" "Неверный текст приветствия. Максимальная длина составляет 255 символов." -#: actions/useradminpanel.php:164 +#: actions/useradminpanel.php:165 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "Неверная подписка по умолчанию: «%1$s» не является пользователем." -#: actions/useradminpanel.php:217 lib/accountsettingsaction.php:108 +#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Профиль" -#: actions/useradminpanel.php:221 +#: actions/useradminpanel.php:222 msgid "Bio Limit" msgstr "Ограничение биографии" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:223 msgid "Maximum length of a profile bio in characters." msgstr "Максимальная длина биографии профиля в символах." -#: actions/useradminpanel.php:230 +#: actions/useradminpanel.php:231 msgid "New users" msgstr "Новые пользователи" -#: actions/useradminpanel.php:234 +#: actions/useradminpanel.php:235 msgid "New user welcome" msgstr "Приветствие новым пользователям" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:236 msgid "Welcome text for new users (Max 255 chars)." msgstr "Текст приветствия для новых пользователей (максимум 255 символов)." -#: actions/useradminpanel.php:240 +#: actions/useradminpanel.php:241 msgid "Default subscription" msgstr "Подписка по умолчанию" -#: actions/useradminpanel.php:241 +#: actions/useradminpanel.php:242 msgid "Automatically subscribe new users to this user." msgstr "Автоматически подписывать новых пользователей на этого пользователя." -#: actions/useradminpanel.php:250 +#: actions/useradminpanel.php:251 msgid "Invitations" msgstr "Приглашения" -#: actions/useradminpanel.php:255 +#: actions/useradminpanel.php:256 msgid "Invitations enabled" msgstr "Приглашения включены" -#: actions/useradminpanel.php:257 +#: actions/useradminpanel.php:258 msgid "Whether to allow users to invite new users." msgstr "Разрешать ли пользователям приглашать новых пользователей." @@ -4413,7 +4452,7 @@ msgstr "" msgid "Plugins" msgstr "Плагины" -#: actions/version.php:196 lib/action.php:747 +#: actions/version.php:196 lib/action.php:778 msgid "Version" msgstr "Версия" @@ -4452,6 +4491,10 @@ msgstr "Не является частью группы." msgid "Group leave failed." msgstr "Не удаётся покинуть группу." +#: classes/Local_group.php:41 +msgid "Could not update local group." +msgstr "Не удаётся обновить локальную группу." + #: classes/Login_token.php:76 #, php-format msgid "Could not create login token for %s" @@ -4469,27 +4512,27 @@ msgstr "Не удаётся вставить сообщение." msgid "Could not update message with new URI." msgstr "Не удаётся обновить сообщение с новым URI." -#: classes/Notice.php:157 +#: classes/Notice.php:172 #, php-format msgid "DB error inserting hashtag: %s" msgstr "Ошибка баз данных при вставке хеш-тегов для %s" -#: classes/Notice.php:222 +#: classes/Notice.php:239 msgid "Problem saving notice. Too long." msgstr "Проблемы с сохранением записи. Слишком длинно." -#: classes/Notice.php:226 +#: classes/Notice.php:243 msgid "Problem saving notice. Unknown user." msgstr "Проблема при сохранении записи. Неизвестный пользователь." -#: classes/Notice.php:231 +#: classes/Notice.php:248 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" "Слишком много записей за столь короткий срок; передохните немного и " "попробуйте вновь через пару минут." -#: classes/Notice.php:237 +#: classes/Notice.php:254 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." @@ -4497,19 +4540,19 @@ msgstr "" "Слишком много одинаковых записей за столь короткий срок; передохните немного " "и попробуйте вновь через пару минут." -#: classes/Notice.php:243 +#: classes/Notice.php:260 msgid "You are banned from posting notices on this site." msgstr "Вам запрещено поститься на этом сайте (бан)" -#: classes/Notice.php:309 classes/Notice.php:335 +#: classes/Notice.php:326 classes/Notice.php:352 msgid "Problem saving notice." msgstr "Проблемы с сохранением записи." -#: classes/Notice.php:882 +#: classes/Notice.php:911 msgid "Problem saving group inbox." msgstr "Проблемы с сохранением входящих сообщений группы." -#: classes/Notice.php:1407 +#: classes/Notice.php:1442 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -4538,19 +4581,27 @@ msgstr "Невозможно удалить самоподписку." msgid "Couldn't delete subscription." msgstr "Не удаётся удалить подписку." -#: classes/User.php:372 +#: classes/User.php:373 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "Добро пожаловать на %1$s, @%2$s!" -#: classes/User_group.php:423 +#: classes/User_group.php:462 msgid "Could not create group." msgstr "Не удаётся создать группу." -#: classes/User_group.php:452 +#: classes/User_group.php:471 +msgid "Could not set group URI." +msgstr "Не удаётся назначить URI группы." + +#: classes/User_group.php:492 msgid "Could not set group membership." msgstr "Не удаётся назначить членство в группе." +#: classes/User_group.php:506 +msgid "Could not save local group info." +msgstr "Не удаётся сохранить информацию о локальной группе." + #: lib/accountsettingsaction.php:108 msgid "Change your profile settings" msgstr "Изменить ваши настройки профиля" @@ -4592,120 +4643,190 @@ msgstr "Страница без названия" msgid "Primary site navigation" msgstr "Главная навигация" +#. TRANS: Tooltip for main menu option "Personal" #: lib/action.php:439 -msgid "Home" -msgstr "Моё" - -#: lib/action.php:439 +#, fuzzy +msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Личный профиль и лента друзей" -#: lib/action.php:441 +#: lib/action.php:442 +#, fuzzy +msgctxt "MENU" +msgid "Personal" +msgstr "Личное" + +#. TRANS: Tooltip for main menu option "Account" +#: lib/action.php:444 +#, fuzzy +msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Изменить ваш email, аватару, пароль, профиль" -#: lib/action.php:444 -msgid "Connect" -msgstr "Соединить" +#: lib/action.php:447 +#, fuzzy +msgctxt "MENU" +msgid "Account" +msgstr "Настройки" -#: lib/action.php:444 +#. TRANS: Tooltip for main menu option "Services" +#: lib/action.php:450 +#, fuzzy +msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Соединить с сервисами" -#: lib/action.php:448 +#: lib/action.php:453 +#, fuzzy +msgctxt "MENU" +msgid "Connect" +msgstr "Соединить" + +#. TRANS: Tooltip for menu option "Admin" +#: lib/action.php:457 +#, fuzzy +msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Изменить конфигурацию сайта" -#: lib/action.php:452 lib/subgroupnav.php:105 -msgid "Invite" -msgstr "Пригласить" +#: lib/action.php:460 +#, fuzzy +msgctxt "MENU" +msgid "Admin" +msgstr "Настройки" -#: lib/action.php:453 lib/subgroupnav.php:106 -#, php-format +#. TRANS: Tooltip for main menu option "Invite" +#: lib/action.php:464 +#, fuzzy, php-format +msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Пригласите друзей и коллег стать такими же как вы участниками %s" -#: lib/action.php:458 -msgid "Logout" -msgstr "Выход" +#: lib/action.php:467 +#, fuzzy +msgctxt "MENU" +msgid "Invite" +msgstr "Пригласить" -#: lib/action.php:458 +#. TRANS: Tooltip for main menu option "Logout" +#: lib/action.php:473 +#, fuzzy +msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Выйти" -#: lib/action.php:463 +#: lib/action.php:476 +#, fuzzy +msgctxt "MENU" +msgid "Logout" +msgstr "Выход" + +#. TRANS: Tooltip for main menu option "Register" +#: lib/action.php:481 +#, fuzzy +msgctxt "TOOLTIP" msgid "Create an account" msgstr "Создать новый аккаунт" -#: lib/action.php:466 +#: lib/action.php:484 +#, fuzzy +msgctxt "MENU" +msgid "Register" +msgstr "Регистрация" + +#. TRANS: Tooltip for main menu option "Login" +#: lib/action.php:487 +#, fuzzy +msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Войти" -#: lib/action.php:469 lib/action.php:732 -msgid "Help" -msgstr "Помощь" +#: lib/action.php:490 +#, fuzzy +msgctxt "MENU" +msgid "Login" +msgstr "Вход" -#: lib/action.php:469 +#. TRANS: Tooltip for main menu option "Help" +#: lib/action.php:493 +#, fuzzy +msgctxt "TOOLTIP" msgid "Help me!" msgstr "Помощь" -#: lib/action.php:472 lib/searchaction.php:127 -msgid "Search" -msgstr "Поиск" +#: lib/action.php:496 +#, fuzzy +msgctxt "MENU" +msgid "Help" +msgstr "Помощь" -#: lib/action.php:472 +#. TRANS: Tooltip for main menu option "Search" +#: lib/action.php:499 +#, fuzzy +msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Искать людей или текст" -#: lib/action.php:493 +#: lib/action.php:502 +#, fuzzy +msgctxt "MENU" +msgid "Search" +msgstr "Поиск" + +#. TRANS: DT element for site notice. String is hidden in default CSS. +#: lib/action.php:524 msgid "Site notice" msgstr "Новая запись" -#: lib/action.php:559 +#: lib/action.php:590 msgid "Local views" msgstr "Локальные виды" -#: lib/action.php:625 +#: lib/action.php:656 msgid "Page notice" msgstr "Новая запись" -#: lib/action.php:727 +#: lib/action.php:758 msgid "Secondary site navigation" msgstr "Навигация по подпискам" -#: lib/action.php:734 +#: lib/action.php:763 +msgid "Help" +msgstr "Помощь" + +#: lib/action.php:765 msgid "About" msgstr "О проекте" -#: lib/action.php:736 +#: lib/action.php:767 msgid "FAQ" msgstr "ЧаВо" -#: lib/action.php:740 +#: lib/action.php:771 msgid "TOS" msgstr "TOS" -#: lib/action.php:743 +#: lib/action.php:774 msgid "Privacy" msgstr "Пользовательское соглашение" -#: lib/action.php:745 +#: lib/action.php:776 msgid "Source" msgstr "Исходный код" -#: lib/action.php:749 +#: lib/action.php:780 msgid "Contact" msgstr "Контактная информация" -#: lib/action.php:751 +#: lib/action.php:782 msgid "Badge" msgstr "Бедж" -#: lib/action.php:779 +#: lib/action.php:810 msgid "StatusNet software license" msgstr "StatusNet лицензия" -#: lib/action.php:782 +#: lib/action.php:813 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4714,12 +4835,12 @@ msgstr "" "**%%site.name%%** — это сервис микроблогинга, созданный для вас при помощи [%" "%site.broughtby%%](%%site.broughtbyurl%%). " -#: lib/action.php:784 +#: lib/action.php:815 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** — сервис микроблогинга. " -#: lib/action.php:786 +#: lib/action.php:817 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4731,110 +4852,163 @@ msgstr "" "лицензией [GNU Affero General Public License](http://www.fsf.org/licensing/" "licenses/agpl-3.0.html)." -#: lib/action.php:801 +#: lib/action.php:832 msgid "Site content license" msgstr "Лицензия содержимого сайта" -#: lib/action.php:806 +#: lib/action.php:837 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "Содержание и данные %1$s являются личными и конфиденциальными." -#: lib/action.php:811 +#: lib/action.php:842 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" "Авторские права на содержание и данные принадлежат %1$s. Все права защищены." -#: lib/action.php:814 +#: lib/action.php:845 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" "Авторские права на содержание и данные принадлежат разработчикам. Все права " "защищены." -#: lib/action.php:827 +#: lib/action.php:858 msgid "All " msgstr "All " -#: lib/action.php:833 +#: lib/action.php:864 msgid "license." msgstr "license." -#: lib/action.php:1132 +#: lib/action.php:1163 msgid "Pagination" msgstr "Разбиение на страницы" -#: lib/action.php:1141 +#: lib/action.php:1172 msgid "After" msgstr "Сюда" -#: lib/action.php:1149 +#: lib/action.php:1180 msgid "Before" msgstr "Туда" -#: lib/activity.php:382 +#: lib/activity.php:449 msgid "Can't handle remote content yet." -msgstr "" +msgstr "Пока ещё нельзя обрабатывать удалённое содержимое." -#: lib/activity.php:410 +#: lib/activity.php:477 msgid "Can't handle embedded XML content yet." -msgstr "" +msgstr "Пока ещё нельзя обрабатывать встроенный XML." -#: lib/activity.php:414 +#: lib/activity.php:481 msgid "Can't handle embedded Base64 content yet." -msgstr "" +msgstr "Пока ещё нельзя обрабатывать встроенное содержание Base64." -#: lib/adminpanelaction.php:96 +#. TRANS: Client error message +#: lib/adminpanelaction.php:98 msgid "You cannot make changes to this site." msgstr "Вы не можете изменять этот сайт." -#: lib/adminpanelaction.php:107 +#. TRANS: Client error message +#: lib/adminpanelaction.php:110 msgid "Changes to that panel are not allowed." msgstr "Изменения для этой панели недопустимы." -#: lib/adminpanelaction.php:206 +#. TRANS: Client error message +#: lib/adminpanelaction.php:211 msgid "showForm() not implemented." msgstr "showForm() не реализована." -#: lib/adminpanelaction.php:235 +#. TRANS: Client error message +#: lib/adminpanelaction.php:241 msgid "saveSettings() not implemented." msgstr "saveSettings() не реализована." -#: lib/adminpanelaction.php:258 +#. TRANS: Client error message +#: lib/adminpanelaction.php:265 msgid "Unable to delete design setting." msgstr "Не удаётся удалить настройки оформления." -#: lib/adminpanelaction.php:312 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:330 msgid "Basic site configuration" msgstr "Основная конфигурация сайта" -#: lib/adminpanelaction.php:317 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:332 +#, fuzzy +msgctxt "MENU" +msgid "Site" +msgstr "Сайт" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:338 msgid "Design configuration" msgstr "Конфигурация оформления" -#: lib/adminpanelaction.php:322 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:340 +#, fuzzy +msgctxt "MENU" +msgid "Design" +msgstr "Оформление" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:346 msgid "User configuration" msgstr "Конфигурация пользователя" -#: lib/adminpanelaction.php:327 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:348 +#, fuzzy +msgctxt "MENU" +msgid "User" +msgstr "Пользователь" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:354 msgid "Access configuration" msgstr "Конфигурация доступа" -#: lib/adminpanelaction.php:332 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:356 +#, fuzzy +msgctxt "MENU" +msgid "Access" +msgstr "Принять" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:362 msgid "Paths configuration" msgstr "Конфигурация путей" -#: lib/adminpanelaction.php:337 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:364 +#, fuzzy +msgctxt "MENU" +msgid "Paths" +msgstr "Пути" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:370 msgid "Sessions configuration" msgstr "Конфигурация сессий" -#: lib/apiauth.php:95 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:372 +#, fuzzy +msgctxt "MENU" +msgid "Sessions" +msgstr "Сессии" + +#: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." msgstr "" "API ресурса требует доступ для чтения и записи, но у вас есть только доступ " "для чтения." -#: lib/apiauth.php:273 +#: lib/apiauth.php:272 #, php-format msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" msgstr "" @@ -4927,11 +5101,11 @@ msgstr "Сообщает, где появляется это вложение" msgid "Tags for this attachment" msgstr "Теги для этого вложения" -#: lib/authenticationplugin.php:218 lib/authenticationplugin.php:223 +#: lib/authenticationplugin.php:220 lib/authenticationplugin.php:225 msgid "Password changing failed" msgstr "Изменение пароля не удалось" -#: lib/authenticationplugin.php:233 +#: lib/authenticationplugin.php:235 msgid "Password changing is not allowed" msgstr "Смена пароля не разрешена" @@ -5130,9 +5304,9 @@ msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "Эта ссылка действительна только один раз в течение 2 минут: %s" #: lib/command.php:692 -#, fuzzy, php-format +#, php-format msgid "Unsubscribed %s" -msgstr "Отписано от %s" +msgstr "Отписано %s" #: lib/command.php:709 msgid "You are not subscribed to anyone." @@ -5168,7 +5342,6 @@ msgstr[1] "Вы являетесь участником следующих гр msgstr[2] "Вы являетесь участником следующих групп:" #: lib/command.php:769 -#, fuzzy msgid "" "Commands:\n" "on - turn on notifications\n" @@ -5221,6 +5394,7 @@ msgstr "" "d — прямое сообщение пользователю\n" "get — получить последнюю запись от пользователя\n" "whois — получить информацию из профиля пользователя\n" +"lose — отменить подписку пользователя на вас\n" "fav — добавить последнюю запись пользователя в число любимых\n" "fav # — добавить запись с заданным id в число любимых\n" "repeat # — повторить уведомление с заданным id\n" @@ -5247,19 +5421,19 @@ msgstr "" "tracks — пока не реализовано.\n" "tracking — пока не реализовано.\n" -#: lib/common.php:136 +#: lib/common.php:148 msgid "No configuration file found. " msgstr "Конфигурационный файл не найден. " -#: lib/common.php:137 +#: lib/common.php:149 msgid "I looked for configuration files in the following places: " msgstr "Конфигурационные файлы искались в следующих местах: " -#: lib/common.php:139 +#: lib/common.php:151 msgid "You may wish to run the installer to fix this." msgstr "Возможно, вы решите запустить установщик для исправления этого." -#: lib/common.php:140 +#: lib/common.php:152 msgid "Go to the installer." msgstr "Перейти к установщику" @@ -5449,23 +5623,23 @@ msgstr "Системная ошибка при загрузке файла." msgid "Not an image or corrupt file." msgstr "Не является изображением или повреждённый файл." -#: lib/imagefile.php:105 +#: lib/imagefile.php:109 msgid "Unsupported image file format." msgstr "Неподдерживаемый формат файла изображения." -#: lib/imagefile.php:118 +#: lib/imagefile.php:122 msgid "Lost our file." msgstr "Потерян файл." -#: lib/imagefile.php:150 lib/imagefile.php:197 +#: lib/imagefile.php:166 lib/imagefile.php:231 msgid "Unknown file type" msgstr "Неподдерживаемый тип файла" -#: lib/imagefile.php:217 +#: lib/imagefile.php:251 msgid "MB" msgstr "МБ" -#: lib/imagefile.php:219 +#: lib/imagefile.php:253 msgid "kB" msgstr "КБ" @@ -5847,6 +6021,11 @@ msgstr "Для" msgid "Available characters" msgstr "6 или больше знаков" +#: lib/messageform.php:178 lib/noticeform.php:236 +msgctxt "Send button for sending notice" +msgid "Send" +msgstr "Отправить" + #: lib/noticeform.php:160 msgid "Send a notice" msgstr "Послать запись" @@ -5905,23 +6084,23 @@ msgstr "з. д." msgid "at" msgstr "на" -#: lib/noticelist.php:558 +#: lib/noticelist.php:566 msgid "in context" msgstr "в контексте" -#: lib/noticelist.php:583 +#: lib/noticelist.php:601 msgid "Repeated by" msgstr "Повторено" -#: lib/noticelist.php:610 +#: lib/noticelist.php:628 msgid "Reply to this notice" msgstr "Ответить на эту запись" -#: lib/noticelist.php:611 +#: lib/noticelist.php:629 msgid "Reply" msgstr "Ответить" -#: lib/noticelist.php:655 +#: lib/noticelist.php:673 msgid "Notice repeated" msgstr "Запись повторена" @@ -5969,6 +6148,10 @@ msgstr "Ответы" msgid "Favorites" msgstr "Любимое" +#: lib/personalgroupnav.php:115 +msgid "User" +msgstr "Пользователь" + #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "Входящие" @@ -6058,7 +6241,7 @@ msgstr "Повторить эту запись?" msgid "Repeat this notice" msgstr "Повторить эту запись" -#: lib/router.php:665 +#: lib/router.php:668 msgid "No single user defined for single-user mode." msgstr "Ни задан пользователь для однопользовательского режима." @@ -6078,6 +6261,10 @@ msgstr "Поиск по сайту" msgid "Keyword(s)" msgstr "Ключевые слова" +#: lib/searchaction.php:127 +msgid "Search" +msgstr "Поиск" + #: lib/searchaction.php:162 msgid "Search help" msgstr "Справка по поиску" @@ -6129,6 +6316,15 @@ msgstr "Люди подписанные на %s" msgid "Groups %s is a member of" msgstr "Группы, в которых состоит %s" +#: lib/subgroupnav.php:105 +msgid "Invite" +msgstr "Пригласить" + +#: lib/subgroupnav.php:106 +#, 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" @@ -6199,47 +6395,47 @@ msgstr "Сообщение" msgid "Moderate" msgstr "Модерировать" -#: lib/util.php:952 +#: lib/util.php:1013 msgid "a few seconds ago" msgstr "пару секунд назад" -#: lib/util.php:954 +#: lib/util.php:1015 msgid "about a minute ago" msgstr "около минуты назад" -#: lib/util.php:956 +#: lib/util.php:1017 #, php-format msgid "about %d minutes ago" msgstr "около %d минут(ы) назад" -#: lib/util.php:958 +#: lib/util.php:1019 msgid "about an hour ago" msgstr "около часа назад" -#: lib/util.php:960 +#: lib/util.php:1021 #, php-format msgid "about %d hours ago" msgstr "около %d часа(ов) назад" -#: lib/util.php:962 +#: lib/util.php:1023 msgid "about a day ago" msgstr "около дня назад" -#: lib/util.php:964 +#: lib/util.php:1025 #, php-format msgid "about %d days ago" msgstr "около %d дня(ей) назад" -#: lib/util.php:966 +#: lib/util.php:1027 msgid "about a month ago" msgstr "около месяца назад" -#: lib/util.php:968 +#: lib/util.php:1029 #, php-format msgid "about %d months ago" msgstr "около %d месяца(ев) назад" -#: lib/util.php:970 +#: lib/util.php:1031 msgid "about a year ago" msgstr "около года назад" diff --git a/locale/statusnet.po b/locale/statusnet.po index 8e14344978..3f4ad499f7 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: 2010-03-01 14:08+0000\n" +"POT-Creation-Date: 2010-03-02 21:02+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,64 +17,69 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" -#: actions/accessadminpanel.php:54 lib/adminpanelaction.php:337 +#. TRANS: Page title +#: actions/accessadminpanel.php:55 msgid "Access" msgstr "" -#: actions/accessadminpanel.php:65 +#. TRANS: Page notice +#: actions/accessadminpanel.php:67 msgid "Site access settings" msgstr "" -#: actions/accessadminpanel.php:158 +#. TRANS: Form legend for registration form. +#: actions/accessadminpanel.php:161 msgid "Registration" msgstr "" -#: actions/accessadminpanel.php:161 -msgid "Private" -msgstr "" - -#: actions/accessadminpanel.php:163 +#. TRANS: Checkbox instructions for admin setting "Private" +#: actions/accessadminpanel.php:165 msgid "Prohibit anonymous users (not logged in) from viewing site?" msgstr "" +#. TRANS: Checkbox label for prohibiting anonymous users from viewing site. #: actions/accessadminpanel.php:167 -msgid "Invite only" +msgctxt "LABEL" +msgid "Private" msgstr "" -#: actions/accessadminpanel.php:169 +#. TRANS: Checkbox instructions for admin setting "Invite only" +#: actions/accessadminpanel.php:174 msgid "Make registration invitation only." msgstr "" -#: actions/accessadminpanel.php:173 -msgid "Closed" +#. TRANS: Checkbox label for configuring site as invite only. +#: actions/accessadminpanel.php:176 +msgid "Invite only" msgstr "" -#: actions/accessadminpanel.php:175 +#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations) +#: actions/accessadminpanel.php:183 msgid "Disable new registrations." msgstr "" -#: actions/accessadminpanel.php:189 actions/designadminpanel.php:586 -#: actions/emailsettings.php:195 actions/imsettings.php:163 -#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 -#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 -#: actions/siteadminpanel.php:336 actions/smssettings.php:181 -#: actions/subscriptions.php:208 actions/tagother.php:154 -#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 -#: lib/applicationeditform.php:334 lib/designsettings.php:256 -#: lib/groupeditform.php:202 -msgid "Save" +#. TRANS: Checkbox label for disabling new user registrations. +#: actions/accessadminpanel.php:185 +msgid "Closed" msgstr "" -#: actions/accessadminpanel.php:189 +#. TRANS: Title / tooltip for button to save access settings in site admin panel +#: actions/accessadminpanel.php:202 msgid "Save access settings" msgstr "" -#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 -#: actions/showfavorites.php:137 actions/tag.php:51 +#: actions/accessadminpanel.php:203 +msgctxt "BUTTON" +msgid "Save" +msgstr "" + +#. TRANS: Server error when page not found (404) +#: actions/all.php:64 actions/public.php:98 actions/replies.php:93 +#: actions/showfavorites.php:138 actions/tag.php:52 msgid "No such page" msgstr "" -#: actions/all.php:74 actions/allrss.php:68 +#: actions/all.php:75 actions/allrss.php:68 #: actions/apiaccountupdatedeliverydevice.php:113 #: actions/apiaccountupdateprofile.php:105 #: actions/apiaccountupdateprofilebackgroundimage.php:116 @@ -100,61 +105,70 @@ msgstr "" msgid "No such user." msgstr "" -#: actions/all.php:84 +#. TRANS: Page title. %1$s is user nickname, %2$d is page number +#: actions/all.php:86 #, php-format msgid "%1$s and friends, page %2$d" msgstr "" -#: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 +#. TRANS: Page title. %1$s is user nickname +#. TRANS: H1 text. %1$s is user nickname +#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" msgstr "" -#: actions/all.php:99 +#. TRANS: %1$s is user nickname +#: actions/all.php:103 #, php-format msgid "Feed for friends of %s (RSS 1.0)" msgstr "" -#: actions/all.php:107 +#. TRANS: %1$s is user nickname +#: actions/all.php:112 #, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "" -#: actions/all.php:115 +#. TRANS: %1$s is user nickname +#: actions/all.php:121 #, php-format msgid "Feed for friends of %s (Atom)" msgstr "" -#: actions/all.php:127 +#. TRANS: %1$s is user nickname +#: actions/all.php:134 #, php-format msgid "" "This is the timeline for %s and friends but no one has posted anything yet." msgstr "" -#: actions/all.php:132 +#: actions/all.php:139 #, php-format msgid "" "Try subscribing to more people, [join a group](%%action.groups%%) or post " "something yourself." msgstr "" -#: actions/all.php:134 +#. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@" +#: actions/all.php:142 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) from his profile or [post something to " "his or her attention](%%%%action.newnotice%%%%?status_textarea=%3$s)." msgstr "" -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211 +#: actions/all.php:145 actions/replies.php:210 actions/showstream.php:211 #, 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/all.php:165 +#. TRANS: H1 text +#: actions/all.php:174 msgid "You and friends" msgstr "" @@ -176,9 +190,9 @@ msgstr "" #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: actions/apigroupleave.php:141 actions/apigrouplist.php:132 #: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 -#: actions/apigroupshow.php:105 actions/apihelptest.php:88 +#: actions/apigroupshow.php:115 actions/apihelptest.php:88 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 -#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:131 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 #: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 @@ -421,7 +435,7 @@ msgstr "" #: actions/apigroupismember.php:95 actions/apigroupjoin.php:104 #: actions/apigroupleave.php:104 actions/apigroupmembership.php:91 -#: actions/apigroupshow.php:90 actions/apitimelinegroup.php:91 +#: actions/apigroupshow.php:82 actions/apitimelinegroup.php:91 msgid "Group not found!" msgstr "" @@ -493,11 +507,11 @@ msgid "Invalid nickname / password!" msgstr "" #: actions/apioauthauthorize.php:159 -msgid "DB error deleting OAuth app user." +msgid "Database error deleting OAuth application user." msgstr "" #: actions/apioauthauthorize.php:185 -msgid "DB error inserting OAuth app user." +msgid "Database error inserting OAuth application user." msgstr "" #: actions/apioauthauthorize.php:214 @@ -537,7 +551,7 @@ msgid "" "give access to your %4$s account to third parties you trust." msgstr "" -#: actions/apioauthauthorize.php:310 lib/action.php:441 +#: actions/apioauthauthorize.php:310 msgid "Account" msgstr "" @@ -666,7 +680,7 @@ msgstr "" msgid "Repeats of %s" msgstr "" -#: actions/apitimelinetag.php:102 actions/tag.php:66 +#: actions/apitimelinetag.php:102 actions/tag.php:67 #, php-format msgid "Notices tagged with %s" msgstr "" @@ -881,7 +895,7 @@ msgid "Couldn't delete email confirmation." msgstr "" #: actions/confirmaddress.php:144 -msgid "Confirm Address" +msgid "Confirm address" msgstr "" #: actions/confirmaddress.php:159 @@ -913,7 +927,7 @@ msgstr "" #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1197 +#: lib/action.php:1228 msgid "There was a problem with your session token." msgstr "" @@ -936,12 +950,13 @@ msgstr "" msgid "Delete this application" msgstr "" +#. TRANS: Client error message #: 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:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 -#: lib/adminpanelaction.php:72 lib/profileformaction.php:63 +#: lib/adminpanelaction.php:73 lib/profileformaction.php:63 #: lib/settingsaction.php:72 msgid "Not logged in." msgstr "" @@ -995,7 +1010,7 @@ msgid "Delete this user" msgstr "" #: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 -#: lib/adminpanelaction.php:327 lib/groupnav.php:119 +#: lib/groupnav.php:119 msgid "Design" msgstr "" @@ -1096,6 +1111,17 @@ msgstr "" msgid "Reset back to default" msgstr "" +#: actions/designadminpanel.php:586 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/tagother.php:154 actions/useradminpanel.php:294 +#: lib/applicationeditform.php:333 lib/applicationeditform.php:334 +#: lib/designsettings.php:256 lib/groupeditform.php:202 +msgid "Save" +msgstr "" + #: actions/designadminpanel.php:587 lib/designsettings.php:257 msgid "Save design" msgstr "" @@ -1629,7 +1655,7 @@ msgstr "" msgid "A list of the users in this group." msgstr "" -#: actions/groupmembers.php:182 lib/action.php:448 lib/groupnav.php:107 +#: actions/groupmembers.php:182 lib/groupnav.php:107 msgid "Admin" msgstr "" @@ -1885,16 +1911,18 @@ msgstr "" msgid "Optionally add a personal message to the invitation." msgstr "" -#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:236 +#. TRANS: Send button for inviting friends +#: actions/invite.php:198 +msgctxt "BUTTON" msgid "Send" msgstr "" -#: actions/invite.php:226 +#: actions/invite.php:227 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "" -#: actions/invite.php:228 +#: actions/invite.php:229 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -1963,8 +1991,7 @@ msgstr "" msgid "Error setting user. You are probably not authorized." msgstr "" -#: actions/login.php:188 actions/login.php:241 lib/action.php:466 -#: lib/logingroupnav.php:79 +#: actions/login.php:188 actions/login.php:241 lib/logingroupnav.php:79 msgid "Login" msgstr "" @@ -2203,8 +2230,8 @@ msgstr "" msgid "Only " msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1039 -#: lib/apiaction.php:1067 lib/apiaction.php:1176 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 +#: lib/apiaction.php:1068 lib/apiaction.php:1177 msgid "Not a supported data format." msgstr "" @@ -2217,7 +2244,7 @@ msgid "Notice Search" msgstr "" #: actions/othersettings.php:60 -msgid "Other Settings" +msgid "Other settings" msgstr "" #: actions/othersettings.php:71 @@ -2343,7 +2370,7 @@ msgstr "" msgid "Password saved." msgstr "" -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:342 +#: actions/pathsadminpanel.php:59 msgid "Paths" msgstr "" @@ -2376,7 +2403,6 @@ msgid "Invalid SSL server. The maximum length is 255 characters." msgstr "" #: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58 -#: lib/adminpanelaction.php:322 msgid "Site" msgstr "" @@ -2652,7 +2678,8 @@ msgstr "" msgid "Couldn't save tags." msgstr "" -#: actions/profilesettings.php:391 lib/adminpanelaction.php:137 +#. TRANS: Message after successful saving of administrative settings. +#: actions/profilesettings.php:391 lib/adminpanelaction.php:141 msgid "Settings saved." msgstr "" @@ -2665,45 +2692,45 @@ msgstr "" msgid "Could not retrieve public stream." msgstr "" -#: actions/public.php:129 +#: actions/public.php:130 #, php-format msgid "Public timeline, page %d" msgstr "" -#: actions/public.php:131 lib/publicgroupnav.php:79 +#: actions/public.php:132 lib/publicgroupnav.php:79 msgid "Public timeline" msgstr "" -#: actions/public.php:159 +#: actions/public.php:160 msgid "Public Stream Feed (RSS 1.0)" msgstr "" -#: actions/public.php:163 +#: actions/public.php:164 msgid "Public Stream Feed (RSS 2.0)" msgstr "" -#: actions/public.php:167 +#: actions/public.php:168 msgid "Public Stream Feed (Atom)" msgstr "" -#: actions/public.php:187 +#: actions/public.php:188 #, php-format msgid "" "This is the public timeline for %%site.name%% but no one has posted anything " "yet." msgstr "" -#: actions/public.php:190 +#: actions/public.php:191 msgid "Be the first to post!" msgstr "" -#: actions/public.php:194 +#: actions/public.php:195 #, php-format msgid "" "Why not [register an account](%%action.register%%) and be the first to post!" msgstr "" -#: actions/public.php:241 +#: actions/public.php:242 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2712,7 +2739,7 @@ msgid "" "friends, family, and colleagues! ([Read more](%%doc.help%%))" msgstr "" -#: actions/public.php:246 +#: actions/public.php:247 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2881,8 +2908,7 @@ msgstr "" msgid "Registration successful" msgstr "" -#: actions/register.php:114 actions/register.php:503 lib/action.php:463 -#: lib/logingroupnav.php:85 +#: actions/register.php:114 actions/register.php:503 lib/logingroupnav.php:85 msgid "Register" msgstr "" @@ -3049,47 +3075,47 @@ msgstr "" msgid "Repeated!" msgstr "" -#: actions/replies.php:125 actions/repliesrss.php:68 +#: actions/replies.php:126 actions/repliesrss.php:68 #: lib/personalgroupnav.php:105 #, php-format msgid "Replies to %s" msgstr "" -#: actions/replies.php:127 +#: actions/replies.php:128 #, php-format msgid "Replies to %1$s, page %2$d" msgstr "" -#: actions/replies.php:144 +#: actions/replies.php:145 #, php-format msgid "Replies feed for %s (RSS 1.0)" msgstr "" -#: actions/replies.php:151 +#: actions/replies.php:152 #, php-format msgid "Replies feed for %s (RSS 2.0)" msgstr "" -#: actions/replies.php:158 +#: actions/replies.php:159 #, php-format msgid "Replies feed for %s (Atom)" msgstr "" -#: actions/replies.php:198 +#: actions/replies.php:199 #, php-format msgid "" "This is the timeline showing replies to %1$s but %2$s hasn't received a " "notice to his attention yet." msgstr "" -#: actions/replies.php:203 +#: actions/replies.php:204 #, php-format msgid "" "You can engage other users in a conversation, subscribe to more people or " "[join groups](%%action.groups%%)." msgstr "" -#: actions/replies.php:205 +#: actions/replies.php:206 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) or [post something to his or her " @@ -3114,7 +3140,6 @@ msgid "User is already sandboxed." msgstr "" #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:347 msgid "Sessions" msgstr "" @@ -3139,7 +3164,7 @@ msgid "Turn on debugging output for sessions." msgstr "" #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/useradminpanel.php:293 +#: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "" @@ -3230,35 +3255,35 @@ msgstr "" msgid "Could not retrieve favorite notices." msgstr "" -#: actions/showfavorites.php:170 +#: actions/showfavorites.php:171 #, php-format msgid "Feed for favorites of %s (RSS 1.0)" msgstr "" -#: actions/showfavorites.php:177 +#: actions/showfavorites.php:178 #, php-format msgid "Feed for favorites of %s (RSS 2.0)" msgstr "" -#: actions/showfavorites.php:184 +#: actions/showfavorites.php:185 #, php-format msgid "Feed for favorites of %s (Atom)" msgstr "" -#: actions/showfavorites.php:205 +#: actions/showfavorites.php:206 msgid "" "You haven't chosen any favorite notices yet. Click the fave button on " "notices you like to bookmark them for later or shed a spotlight on them." msgstr "" -#: actions/showfavorites.php:207 +#: actions/showfavorites.php:208 #, 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:211 +#: actions/showfavorites.php:212 #, php-format msgid "" "%s hasn't added any notices to his favorites yet. Why not [register an " @@ -3266,7 +3291,7 @@ msgid "" "would add to their favorites :)" msgstr "" -#: actions/showfavorites.php:242 +#: actions/showfavorites.php:243 msgid "This is a way to share what you like." msgstr "" @@ -3805,22 +3830,22 @@ msgstr "" msgid "SMS" msgstr "" -#: actions/tag.php:68 +#: actions/tag.php:69 #, php-format msgid "Notices tagged with %1$s, page %2$d" msgstr "" -#: actions/tag.php:86 +#: actions/tag.php:87 #, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "" -#: actions/tag.php:92 +#: actions/tag.php:93 #, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "" -#: actions/tag.php:98 +#: actions/tag.php:99 #, php-format msgid "Notice feed for tag %s (Atom)" msgstr "" @@ -3900,70 +3925,71 @@ msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" -#: actions/useradminpanel.php:58 lib/adminpanelaction.php:332 -#: lib/personalgroupnav.php:115 +#. TRANS: User admin panel title +#: actions/useradminpanel.php:59 +msgctxt "TITLE" msgid "User" msgstr "" -#: actions/useradminpanel.php:69 +#: actions/useradminpanel.php:70 msgid "User settings for this StatusNet site." msgstr "" -#: actions/useradminpanel.php:148 +#: actions/useradminpanel.php:149 msgid "Invalid bio limit. Must be numeric." msgstr "" -#: actions/useradminpanel.php:154 +#: actions/useradminpanel.php:155 msgid "Invalid welcome text. Max length is 255 characters." msgstr "" -#: actions/useradminpanel.php:164 +#: actions/useradminpanel.php:165 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" -#: actions/useradminpanel.php:217 lib/accountsettingsaction.php:108 +#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "" -#: actions/useradminpanel.php:221 +#: actions/useradminpanel.php:222 msgid "Bio Limit" msgstr "" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:223 msgid "Maximum length of a profile bio in characters." msgstr "" -#: actions/useradminpanel.php:230 +#: actions/useradminpanel.php:231 msgid "New users" msgstr "" -#: actions/useradminpanel.php:234 +#: actions/useradminpanel.php:235 msgid "New user welcome" msgstr "" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:236 msgid "Welcome text for new users (Max 255 chars)." msgstr "" -#: actions/useradminpanel.php:240 +#: actions/useradminpanel.php:241 msgid "Default subscription" msgstr "" -#: actions/useradminpanel.php:241 +#: actions/useradminpanel.php:242 msgid "Automatically subscribe new users to this user." msgstr "" -#: actions/useradminpanel.php:250 +#: actions/useradminpanel.php:251 msgid "Invitations" msgstr "" -#: actions/useradminpanel.php:255 +#: actions/useradminpanel.php:256 msgid "Invitations enabled" msgstr "" -#: actions/useradminpanel.php:257 +#: actions/useradminpanel.php:258 msgid "Whether to allow users to invite new users." msgstr "" @@ -4136,7 +4162,7 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:196 lib/action.php:747 +#: actions/version.php:196 lib/action.php:778 msgid "Version" msgstr "" @@ -4255,11 +4281,11 @@ msgstr "" msgid "Couldn't delete self-subscription." msgstr "" -#: classes/Subscription.php:179 +#: classes/Subscription.php:179 lib/subs.php:69 msgid "Couldn't delete subscription." msgstr "" -#: classes/User.php:372 +#: classes/User.php:373 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "" @@ -4269,7 +4295,7 @@ msgid "Could not create group." msgstr "" #: classes/User_group.php:471 -msgid "Could not set group uri." +msgid "Could not set group URI." msgstr "" #: classes/User_group.php:492 @@ -4321,132 +4347,183 @@ msgstr "" msgid "Primary site navigation" msgstr "" +#. TRANS: Tooltip for main menu option "Personal" #: lib/action.php:439 -msgid "Home" -msgstr "" - -#: lib/action.php:439 +msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:441 +#: lib/action.php:442 +msgctxt "MENU" +msgid "Personal" +msgstr "" + +#. TRANS: Tooltip for main menu option "Account" +#: lib/action.php:444 +msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "" -#: lib/action.php:444 -msgid "Connect" +#: lib/action.php:447 +msgctxt "MENU" +msgid "Account" msgstr "" -#: lib/action.php:444 +#. TRANS: Tooltip for main menu option "Services" +#: lib/action.php:450 +msgctxt "TOOLTIP" msgid "Connect to services" msgstr "" -#: lib/action.php:448 +#: lib/action.php:453 +msgctxt "MENU" +msgid "Connect" +msgstr "" + +#. TRANS: Tooltip for menu option "Admin" +#: lib/action.php:457 +msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "" -#: lib/action.php:452 lib/subgroupnav.php:105 -msgid "Invite" +#: lib/action.php:460 +msgctxt "MENU" +msgid "Admin" msgstr "" -#: lib/action.php:453 lib/subgroupnav.php:106 +#. TRANS: Tooltip for main menu option "Invite" +#: lib/action.php:464 #, php-format +msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "" -#: lib/action.php:458 -msgid "Logout" +#: lib/action.php:467 +msgctxt "MENU" +msgid "Invite" msgstr "" -#: lib/action.php:458 +#. TRANS: Tooltip for main menu option "Logout" +#: lib/action.php:473 +msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "" -#: lib/action.php:463 +#: lib/action.php:476 +msgctxt "MENU" +msgid "Logout" +msgstr "" + +#. TRANS: Tooltip for main menu option "Register" +#: lib/action.php:481 +msgctxt "TOOLTIP" msgid "Create an account" msgstr "" -#: lib/action.php:466 +#: lib/action.php:484 +msgctxt "MENU" +msgid "Register" +msgstr "" + +#. TRANS: Tooltip for main menu option "Login" +#: lib/action.php:487 +msgctxt "TOOLTIP" msgid "Login to the site" msgstr "" -#: lib/action.php:469 lib/action.php:732 -msgid "Help" +#: lib/action.php:490 +msgctxt "MENU" +msgid "Login" msgstr "" -#: lib/action.php:469 +#. TRANS: Tooltip for main menu option "Help" +#: lib/action.php:493 +msgctxt "TOOLTIP" msgid "Help me!" msgstr "" -#: lib/action.php:472 lib/searchaction.php:127 -msgid "Search" +#: lib/action.php:496 +msgctxt "MENU" +msgid "Help" msgstr "" -#: lib/action.php:472 +#. TRANS: Tooltip for main menu option "Search" +#: lib/action.php:499 +msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "" -#: lib/action.php:493 +#: lib/action.php:502 +msgctxt "MENU" +msgid "Search" +msgstr "" + +#. TRANS: DT element for site notice. String is hidden in default CSS. +#: lib/action.php:524 msgid "Site notice" msgstr "" -#: lib/action.php:559 +#: lib/action.php:590 msgid "Local views" msgstr "" -#: lib/action.php:625 +#: lib/action.php:656 msgid "Page notice" msgstr "" -#: lib/action.php:727 +#: lib/action.php:758 msgid "Secondary site navigation" msgstr "" -#: lib/action.php:734 +#: lib/action.php:763 +msgid "Help" +msgstr "" + +#: lib/action.php:765 msgid "About" msgstr "" -#: lib/action.php:736 +#: lib/action.php:767 msgid "FAQ" msgstr "" -#: lib/action.php:740 +#: lib/action.php:771 msgid "TOS" msgstr "" -#: lib/action.php:743 +#: lib/action.php:774 msgid "Privacy" msgstr "" -#: lib/action.php:745 +#: lib/action.php:776 msgid "Source" msgstr "" -#: lib/action.php:749 +#: lib/action.php:780 msgid "Contact" msgstr "" -#: lib/action.php:751 +#: lib/action.php:782 msgid "Badge" msgstr "" -#: lib/action.php:779 +#: lib/action.php:810 msgid "StatusNet software license" msgstr "" -#: lib/action.php:782 +#: lib/action.php:813 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." "broughtby%%](%%site.broughtbyurl%%). " msgstr "" -#: lib/action.php:784 +#: lib/action.php:815 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "" -#: lib/action.php:786 +#: lib/action.php:817 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4454,41 +4531,41 @@ msgid "" "org/licensing/licenses/agpl-3.0.html)." msgstr "" -#: lib/action.php:801 +#: lib/action.php:832 msgid "Site content license" msgstr "" -#: lib/action.php:806 +#: lib/action.php:837 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:811 +#: lib/action.php:842 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:814 +#: lib/action.php:845 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" -#: lib/action.php:827 +#: lib/action.php:858 msgid "All " msgstr "" -#: lib/action.php:833 +#: lib/action.php:864 msgid "license." msgstr "" -#: lib/action.php:1132 +#: lib/action.php:1163 msgid "Pagination" msgstr "" -#: lib/action.php:1141 +#: lib/action.php:1172 msgid "After" msgstr "" -#: lib/action.php:1149 +#: lib/action.php:1180 msgid "Before" msgstr "" @@ -4504,50 +4581,97 @@ msgstr "" msgid "Can't handle embedded Base64 content yet." msgstr "" -#: lib/adminpanelaction.php:96 +#. TRANS: Client error message +#: lib/adminpanelaction.php:98 msgid "You cannot make changes to this site." msgstr "" -#: lib/adminpanelaction.php:107 +#. TRANS: Client error message +#: lib/adminpanelaction.php:110 msgid "Changes to that panel are not allowed." msgstr "" -#: lib/adminpanelaction.php:206 +#. TRANS: Client error message +#: lib/adminpanelaction.php:211 msgid "showForm() not implemented." msgstr "" -#: lib/adminpanelaction.php:235 +#. TRANS: Client error message +#: lib/adminpanelaction.php:241 msgid "saveSettings() not implemented." msgstr "" -#: lib/adminpanelaction.php:258 +#. TRANS: Client error message +#: lib/adminpanelaction.php:265 msgid "Unable to delete design setting." msgstr "" -#: lib/adminpanelaction.php:323 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:330 msgid "Basic site configuration" msgstr "" -#: lib/adminpanelaction.php:328 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:332 +msgctxt "MENU" +msgid "Site" +msgstr "" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:338 msgid "Design configuration" msgstr "" -#: lib/adminpanelaction.php:333 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:340 +msgctxt "MENU" +msgid "Design" +msgstr "" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:346 msgid "User configuration" msgstr "" -#: lib/adminpanelaction.php:338 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:348 +msgctxt "MENU" +msgid "User" +msgstr "" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:354 msgid "Access configuration" msgstr "" -#: lib/adminpanelaction.php:343 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:356 +msgctxt "MENU" +msgid "Access" +msgstr "" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:362 msgid "Paths configuration" msgstr "" -#: lib/adminpanelaction.php:348 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:364 +msgctxt "MENU" +msgid "Paths" +msgstr "" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:370 msgid "Sessions configuration" msgstr "" +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:372 +msgctxt "MENU" +msgid "Sessions" +msgstr "" + #: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." msgstr "" @@ -4642,11 +4766,11 @@ msgstr "" msgid "Tags for this attachment" msgstr "" -#: lib/authenticationplugin.php:182 lib/authenticationplugin.php:187 +#: lib/authenticationplugin.php:220 lib/authenticationplugin.php:225 msgid "Password changing failed" msgstr "" -#: lib/authenticationplugin.php:197 +#: lib/authenticationplugin.php:235 msgid "Password changing is not allowed" msgstr "" @@ -4803,7 +4927,7 @@ msgstr "" msgid "Subscribed to %s" msgstr "" -#: lib/command.php:582 +#: lib/command.php:582 lib/command.php:685 msgid "Specify the name of the user to unsubscribe from" msgstr "" @@ -4841,37 +4965,42 @@ msgstr "" msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "" -#: lib/command.php:681 +#: lib/command.php:692 +#, php-format +msgid "Unsubscribed %s" +msgstr "" + +#: lib/command.php:709 msgid "You are not subscribed to anyone." msgstr "" -#: lib/command.php:683 +#: lib/command.php:711 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "" msgstr[1] "" -#: lib/command.php:703 +#: lib/command.php:731 msgid "No one is subscribed to you." msgstr "" -#: lib/command.php:705 +#: lib/command.php:733 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "" msgstr[1] "" -#: lib/command.php:725 +#: lib/command.php:753 msgid "You are not a member of any groups." msgstr "" -#: lib/command.php:727 +#: lib/command.php:755 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "" msgstr[1] "" -#: lib/command.php:741 +#: lib/command.php:769 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -4885,6 +5014,7 @@ msgid "" "d - direct message to user\n" "get - get last notice from user\n" "whois - get profile info on user\n" +"lose - force user to stop following you\n" "fav - add user's last notice as a 'fave'\n" "fav # - add notice with the given id as a 'fave'\n" "repeat # - repeat a notice with a given id\n" @@ -4912,19 +5042,19 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:136 +#: lib/common.php:148 msgid "No configuration file found. " msgstr "" -#: lib/common.php:137 +#: lib/common.php:149 msgid "I looked for configuration files in the following places: " msgstr "" -#: lib/common.php:139 +#: lib/common.php:151 msgid "You may wish to run the installer to fix this." msgstr "" -#: lib/common.php:140 +#: lib/common.php:152 msgid "Go to the installer." msgstr "" @@ -5110,23 +5240,23 @@ msgstr "" msgid "Not an image or corrupt file." msgstr "" -#: lib/imagefile.php:105 +#: lib/imagefile.php:109 msgid "Unsupported image file format." msgstr "" -#: lib/imagefile.php:118 +#: lib/imagefile.php:122 msgid "Lost our file." msgstr "" -#: lib/imagefile.php:150 lib/imagefile.php:197 +#: lib/imagefile.php:166 lib/imagefile.php:231 msgid "Unknown file type" msgstr "" -#: lib/imagefile.php:217 +#: lib/imagefile.php:251 msgid "MB" msgstr "" -#: lib/imagefile.php:219 +#: lib/imagefile.php:253 msgid "kB" msgstr "" @@ -5419,6 +5549,11 @@ msgstr "" msgid "Available characters" msgstr "" +#: lib/messageform.php:178 lib/noticeform.php:236 +msgctxt "Send button for sending notice" +msgid "Send" +msgstr "" + #: lib/noticeform.php:160 msgid "Send a notice" msgstr "" @@ -5539,6 +5674,10 @@ msgstr "" msgid "Favorites" msgstr "" +#: lib/personalgroupnav.php:115 +msgid "User" +msgstr "" + #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "" @@ -5648,6 +5787,10 @@ msgstr "" msgid "Keyword(s)" msgstr "" +#: lib/searchaction.php:127 +msgid "Search" +msgstr "" + #: lib/searchaction.php:162 msgid "Search help" msgstr "" @@ -5699,6 +5842,15 @@ msgstr "" msgid "Groups %s is a member of" msgstr "" +#: lib/subgroupnav.php:105 +msgid "Invite" +msgstr "" + +#: lib/subgroupnav.php:106 +#, php-format +msgid "Invite friends and colleagues to join you on %s" +msgstr "" + #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -5769,47 +5921,47 @@ msgstr "" msgid "Moderate" msgstr "" -#: lib/util.php:1000 +#: lib/util.php:1013 msgid "a few seconds ago" msgstr "" -#: lib/util.php:1002 +#: lib/util.php:1015 msgid "about a minute ago" msgstr "" -#: lib/util.php:1004 +#: lib/util.php:1017 #, php-format msgid "about %d minutes ago" msgstr "" -#: lib/util.php:1006 +#: lib/util.php:1019 msgid "about an hour ago" msgstr "" -#: lib/util.php:1008 +#: lib/util.php:1021 #, php-format msgid "about %d hours ago" msgstr "" -#: lib/util.php:1010 +#: lib/util.php:1023 msgid "about a day ago" msgstr "" -#: lib/util.php:1012 +#: lib/util.php:1025 #, php-format msgid "about %d days ago" msgstr "" -#: lib/util.php:1014 +#: lib/util.php:1027 msgid "about a month ago" msgstr "" -#: lib/util.php:1016 +#: lib/util.php:1029 #, php-format msgid "about %d months ago" msgstr "" -#: lib/util.php:1018 +#: lib/util.php:1031 msgid "about a year ago" msgstr "" diff --git a/locale/sv/LC_MESSAGES/statusnet.po b/locale/sv/LC_MESSAGES/statusnet.po index b09823e6be..b1ac66f651 100644 --- a/locale/sv/LC_MESSAGES/statusnet.po +++ b/locale/sv/LC_MESSAGES/statusnet.po @@ -9,76 +9,83 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-02-24 23:49+0000\n" -"PO-Revision-Date: 2010-02-24 23:51:44+0000\n" +"POT-Creation-Date: 2010-03-02 21:02+0000\n" +"PO-Revision-Date: 2010-03-02 21:03:47+0000\n" "Language-Team: Swedish\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r62925); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: actions/accessadminpanel.php:54 lib/adminpanelaction.php:326 +#. TRANS: Page title +#: actions/accessadminpanel.php:55 msgid "Access" msgstr "Åtkomst" -#: actions/accessadminpanel.php:65 +#. TRANS: Page notice +#: actions/accessadminpanel.php:67 msgid "Site access settings" msgstr "Inställningar för webbplatsåtkomst" -#: actions/accessadminpanel.php:158 +#. TRANS: Form legend for registration form. +#: actions/accessadminpanel.php:161 msgid "Registration" msgstr "Registrering" -#: actions/accessadminpanel.php:161 -msgid "Private" -msgstr "Privat" - -#: actions/accessadminpanel.php:163 +#. TRANS: Checkbox instructions for admin setting "Private" +#: actions/accessadminpanel.php:165 msgid "Prohibit anonymous users (not logged in) from viewing site?" msgstr "" "Skall anonyma användare (inte inloggade) förhindras från att se webbplatsen?" +#. TRANS: Checkbox label for prohibiting anonymous users from viewing site. #: actions/accessadminpanel.php:167 -msgid "Invite only" -msgstr "Endast inbjudan" +#, fuzzy +msgctxt "LABEL" +msgid "Private" +msgstr "Privat" -#: actions/accessadminpanel.php:169 +#. TRANS: Checkbox instructions for admin setting "Invite only" +#: actions/accessadminpanel.php:174 msgid "Make registration invitation only." msgstr "Gör så att registrering endast sker genom inbjudan." -#: actions/accessadminpanel.php:173 -msgid "Closed" -msgstr "Stängd" +#. TRANS: Checkbox label for configuring site as invite only. +#: actions/accessadminpanel.php:176 +msgid "Invite only" +msgstr "Endast inbjudan" -#: actions/accessadminpanel.php:175 +#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations) +#: actions/accessadminpanel.php:183 msgid "Disable new registrations." msgstr "Inaktivera nya registreringar." -#: actions/accessadminpanel.php:189 actions/designadminpanel.php:586 -#: actions/emailsettings.php:195 actions/imsettings.php:163 -#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 -#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 -#: actions/siteadminpanel.php:336 actions/smssettings.php:181 -#: actions/subscriptions.php:208 actions/tagother.php:154 -#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 -#: lib/applicationeditform.php:334 lib/designsettings.php:256 -#: lib/groupeditform.php:202 -msgid "Save" -msgstr "Spara" +#. TRANS: Checkbox label for disabling new user registrations. +#: actions/accessadminpanel.php:185 +msgid "Closed" +msgstr "Stängd" -#: actions/accessadminpanel.php:189 +#. TRANS: Title / tooltip for button to save access settings in site admin panel +#: actions/accessadminpanel.php:202 msgid "Save access settings" msgstr "Spara inställningar för åtkomst" -#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 -#: actions/showfavorites.php:137 actions/tag.php:51 +#: actions/accessadminpanel.php:203 +#, fuzzy +msgctxt "BUTTON" +msgid "Save" +msgstr "Spara" + +#. TRANS: Server error when page not found (404) +#: actions/all.php:64 actions/public.php:98 actions/replies.php:93 +#: actions/showfavorites.php:138 actions/tag.php:52 msgid "No such page" msgstr "Ingen sådan sida" -#: actions/all.php:74 actions/allrss.php:68 +#: actions/all.php:75 actions/allrss.php:68 #: actions/apiaccountupdatedeliverydevice.php:113 #: actions/apiaccountupdateprofile.php:105 #: actions/apiaccountupdateprofilebackgroundimage.php:116 @@ -92,51 +99,59 @@ msgstr "Ingen sådan sida" #: actions/apitimelinehome.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/otp.php:76 -#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154 -#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 -#: actions/showfavorites.php:105 actions/userbyid.php:74 -#: actions/usergroups.php:91 actions/userrss.php:38 actions/xrds.php:71 -#: lib/command.php:163 lib/command.php:302 lib/command.php:355 -#: lib/command.php:401 lib/command.php:462 lib/command.php:518 -#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 +#: actions/hcard.php:67 actions/microsummary.php:62 actions/newmessage.php:116 +#: actions/otp.php:76 actions/remotesubscribe.php:145 +#: actions/remotesubscribe.php:154 actions/replies.php:73 +#: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/xrds.php:71 lib/command.php:163 lib/command.php:302 +#: lib/command.php:355 lib/command.php:401 lib/command.php:462 +#: lib/command.php:518 lib/galleryaction.php:59 lib/mailbox.php:82 +#: lib/profileaction.php:77 msgid "No such user." msgstr "Ingen sådan användare." -#: actions/all.php:84 +#. TRANS: Page title. %1$s is user nickname, %2$d is page number +#: actions/all.php:86 #, php-format msgid "%1$s and friends, page %2$d" msgstr "%1$s och vänner, sida %2$d" -#: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 +#. TRANS: Page title. %1$s is user nickname +#. TRANS: H1 text. %1$s is user nickname +#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" msgstr "%s och vänner" -#: actions/all.php:99 +#. TRANS: %1$s is user nickname +#: actions/all.php:103 #, php-format msgid "Feed for friends of %s (RSS 1.0)" msgstr "Flöden för %ss vänner (RSS 1.0)" -#: actions/all.php:107 +#. TRANS: %1$s is user nickname +#: actions/all.php:112 #, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "Flöden för %ss vänner (RSS 2.0)" -#: actions/all.php:115 +#. TRANS: %1$s is user nickname +#: actions/all.php:121 #, php-format msgid "Feed for friends of %s (Atom)" msgstr "Flöden för %ss vänner (Atom)" -#: actions/all.php:127 +#. TRANS: %1$s is user nickname +#: actions/all.php:134 #, php-format msgid "" "This is the timeline for %s and friends but no one has posted anything yet." msgstr "Detta är tidslinjen för %s och vänner, men ingen har skrivit något än." -#: actions/all.php:132 +#: actions/all.php:139 #, php-format msgid "" "Try subscribing to more people, [join a group](%%action.groups%%) or post " @@ -145,7 +160,8 @@ msgstr "" "Prova att prenumerera på fler personer, [gå med i en grupp](%%action.groups%" "%) eller skriv något själv." -#: actions/all.php:134 +#. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@" +#: actions/all.php:142 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) from his profile or [post something to " @@ -155,7 +171,7 @@ msgstr "" "någonting för hans eller hennes uppmärksamhet](%%%%action.newnotice%%%%?" "status_textarea=%3$s)." -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211 +#: actions/all.php:145 actions/replies.php:210 actions/showstream.php:211 #, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " @@ -164,7 +180,8 @@ msgstr "" "Varför inte [registrera ett konto](%%%%action.register%%%%) och sedan knuffa " "%s eller skriva en notis för hans eller hennes uppmärksamhet." -#: actions/all.php:165 +#. TRANS: H1 text +#: actions/all.php:174 msgid "You and friends" msgstr "Du och vänner" @@ -182,20 +199,20 @@ msgstr "Uppdateringar från %1$s och vänner på %2$s!" #: actions/apiaccountverifycredentials.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:128 actions/apigroupcreate.php:136 +#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: actions/apigroupleave.php:141 actions/apigrouplist.php:132 #: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 #: actions/apigroupshow.php:115 actions/apihelptest.php:88 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 -#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184 +#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 #: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:207 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 msgid "API method not found." msgstr "API-metod hittades inte." @@ -227,8 +244,9 @@ msgstr "Kunde inte uppdatera användare." #: actions/apiaccountupdateprofilebackgroundimage.php:194 #: actions/apiaccountupdateprofilecolors.php:185 #: 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 +#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 +#: 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." @@ -254,7 +272,7 @@ msgstr "" #: actions/apiaccountupdateprofilebackgroundimage.php:146 #: actions/apiaccountupdateprofilecolors.php:164 #: actions/apiaccountupdateprofilecolors.php:174 -#: actions/groupdesignsettings.php:287 actions/groupdesignsettings.php:297 +#: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300 #: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 #: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 msgid "Unable to save your design settings." @@ -364,69 +382,69 @@ msgstr "Kunde inte fastställa användare hos källan." msgid "Could not find target user." msgstr "Kunde inte hitta målanvändare." -#: actions/apigroupcreate.php:164 actions/editgroup.php:182 +#: actions/apigroupcreate.php:166 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:215 #: 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/apigroupcreate.php:173 actions/editgroup.php:186 +#: actions/apigroupcreate.php:175 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:238 #: actions/register.php:208 msgid "Nickname already in use. Try another one." msgstr "Smeknamnet används redan. Försök med ett annat." -#: actions/apigroupcreate.php:180 actions/editgroup.php:189 +#: actions/apigroupcreate.php:182 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:218 #: actions/register.php:210 msgid "Not a valid nickname." msgstr "Inte ett giltigt smeknamn." -#: actions/apigroupcreate.php:196 actions/editapplication.php:215 -#: actions/editgroup.php:195 actions/newapplication.php:203 +#: actions/apigroupcreate.php:198 actions/editapplication.php:215 +#: actions/editgroup.php:199 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:217 msgid "Homepage is not a valid URL." msgstr "Hemsida är inte en giltig URL." -#: actions/apigroupcreate.php:205 actions/editgroup.php:198 +#: actions/apigroupcreate.php:207 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:225 #: actions/register.php:220 msgid "Full name is too long (max 255 chars)." msgstr "Fullständigt namn är för långt (max 255 tecken)." -#: actions/apigroupcreate.php:213 actions/editapplication.php:190 +#: actions/apigroupcreate.php:215 actions/editapplication.php:190 #: actions/newapplication.php:172 #, php-format msgid "Description is too long (max %d chars)." msgstr "Beskrivning är för lång (max 140 tecken)." -#: actions/apigroupcreate.php:224 actions/editgroup.php:204 +#: actions/apigroupcreate.php:226 actions/editgroup.php:208 #: actions/newgroup.php:148 actions/profilesettings.php:232 #: actions/register.php:227 msgid "Location is too long (max 255 chars)." msgstr "Beskrivning av plats är för lång (max 255 tecken)." -#: actions/apigroupcreate.php:243 actions/editgroup.php:215 +#: actions/apigroupcreate.php:245 actions/editgroup.php:219 #: actions/newgroup.php:159 #, php-format msgid "Too many aliases! Maximum %d." msgstr "För många alias! Maximum %d." -#: actions/apigroupcreate.php:264 actions/editgroup.php:224 +#: actions/apigroupcreate.php:266 actions/editgroup.php:228 #: actions/newgroup.php:168 #, php-format msgid "Invalid alias: \"%s\"" msgstr "Ogiltigt alias: \"%s\"" -#: actions/apigroupcreate.php:273 actions/editgroup.php:228 +#: actions/apigroupcreate.php:275 actions/editgroup.php:232 #: actions/newgroup.php:172 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "Alias \"%s\" används redan. Försök med ett annat." -#: actions/apigroupcreate.php:286 actions/editgroup.php:234 +#: actions/apigroupcreate.php:288 actions/editgroup.php:238 #: actions/newgroup.php:178 msgid "Alias can't be the same as nickname." msgstr "Alias kan inte vara samma som smeknamn." @@ -437,15 +455,15 @@ msgstr "Alias kan inte vara samma som smeknamn." msgid "Group not found!" msgstr "Grupp hittades inte!" -#: actions/apigroupjoin.php:110 actions/joingroup.php:90 +#: actions/apigroupjoin.php:110 actions/joingroup.php:100 msgid "You are already a member of that group." msgstr "Du är redan en medlem i denna grupp." -#: actions/apigroupjoin.php:119 actions/joingroup.php:95 lib/command.php:221 +#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:221 msgid "You have been blocked from that group by the admin." msgstr "Du har blivit blockerad från denna grupp av administratören." -#: actions/apigroupjoin.php:138 actions/joingroup.php:124 +#: actions/apigroupjoin.php:138 actions/joingroup.php:134 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Kunde inte ansluta användare %1$s till grupp %2$s." @@ -454,7 +472,7 @@ msgstr "Kunde inte ansluta användare %1$s till grupp %2$s." msgid "You are not a member of this group." msgstr "Du är inte en medlem i denna grupp." -#: actions/apigroupleave.php:124 actions/leavegroup.php:119 +#: actions/apigroupleave.php:124 actions/leavegroup.php:129 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "Kunde inte ta bort användare %1$s från grupp %2$s." @@ -485,7 +503,7 @@ msgstr "Ogiltig token." #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 #: actions/deletenotice.php:157 actions/disfavor.php:74 #: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54 -#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupblock.php:66 actions/grouplogo.php:312 #: actions/groupunblock.php:66 actions/imsettings.php:206 #: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 @@ -526,7 +544,7 @@ msgstr "Begäran-token %s har nekats och återkallats." #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:103 actions/editapplication.php:139 -#: actions/emailsettings.php:256 actions/grouplogo.php:319 +#: actions/emailsettings.php:256 actions/grouplogo.php:322 #: actions/imsettings.php:220 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 #: actions/smssettings.php:248 lib/designsettings.php:304 @@ -552,13 +570,13 @@ msgstr "" "möjligheten att %3$s din %4$s kontoinformation. Du bör bara " "ge tillgång till ditt %4$s-konto till tredje-parter du litar på." -#: actions/apioauthauthorize.php:310 lib/action.php:441 +#: actions/apioauthauthorize.php:310 msgid "Account" msgstr "Konto" #: actions/apioauthauthorize.php:313 actions/login.php:230 #: actions/profilesettings.php:106 actions/register.php:424 -#: actions/showgroup.php:236 actions/tagother.php:94 +#: actions/showgroup.php:244 actions/tagother.php:94 #: actions/userauthorization.php:145 lib/groupeditform.php:152 #: lib/userprofile.php:131 msgid "Nickname" @@ -640,12 +658,12 @@ msgid "%1$s updates favorited by %2$s / %2$s." msgstr "%1$s uppdateringar markerade som favorit av %2$s / %2$s." #: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:131 actions/userrss.php:90 +#: actions/grouprss.php:138 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "%s tidslinje" -#: actions/apitimelinegroup.php:114 actions/apitimelineuser.php:126 +#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 #: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" @@ -681,7 +699,7 @@ msgstr "Upprepat till %s" msgid "Repeats of %s" msgstr "Upprepningar av %s" -#: actions/apitimelinetag.php:102 actions/tag.php:66 +#: actions/apitimelinetag.php:102 actions/tag.php:67 #, php-format msgid "Notices tagged with %s" msgstr "Notiser taggade med %s" @@ -702,8 +720,7 @@ msgstr "Ingen sådan bilaga." #: actions/avatarbynickname.php:59 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/leavegroup.php:76 -#: actions/showgroup.php:121 +#: actions/grouprss.php:91 actions/showgroup.php:121 msgid "No nickname." msgstr "Inget smeknamn." @@ -715,7 +732,7 @@ msgstr "Ingen storlek." msgid "Invalid size." msgstr "Ogiltig storlek." -#: actions/avatarsettings.php:67 actions/showgroup.php:221 +#: actions/avatarsettings.php:67 actions/showgroup.php:229 #: lib/accountsettingsaction.php:112 msgid "Avatar" msgstr "Avatar" @@ -733,30 +750,30 @@ msgid "User without matching profile" msgstr "Användare utan matchande profil" #: actions/avatarsettings.php:119 actions/avatarsettings.php:197 -#: actions/grouplogo.php:251 +#: actions/grouplogo.php:254 msgid "Avatar settings" msgstr "Avatarinställningar" #: actions/avatarsettings.php:127 actions/avatarsettings.php:205 -#: actions/grouplogo.php:199 actions/grouplogo.php:259 +#: actions/grouplogo.php:202 actions/grouplogo.php:262 msgid "Original" msgstr "Orginal" #: actions/avatarsettings.php:142 actions/avatarsettings.php:217 -#: actions/grouplogo.php:210 actions/grouplogo.php:271 +#: actions/grouplogo.php:213 actions/grouplogo.php:274 msgid "Preview" msgstr "Förhandsgranska" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:637 +#: lib/deleteuserform.php:66 lib/noticelist.php:655 msgid "Delete" msgstr "Ta bort" -#: actions/avatarsettings.php:166 actions/grouplogo.php:233 +#: actions/avatarsettings.php:166 actions/grouplogo.php:236 msgid "Upload" msgstr "Ladda upp" -#: actions/avatarsettings.php:231 actions/grouplogo.php:286 +#: actions/avatarsettings.php:231 actions/grouplogo.php:289 msgid "Crop" msgstr "Beskär" @@ -764,7 +781,7 @@ msgstr "Beskär" msgid "Pick a square area of the image to be your avatar" msgstr "Välj ett kvadratiskt område i bilden som din avatar" -#: actions/avatarsettings.php:343 actions/grouplogo.php:377 +#: actions/avatarsettings.php:343 actions/grouplogo.php:380 msgid "Lost our file data." msgstr "Förlorade vår fildata." @@ -799,22 +816,22 @@ msgstr "" "framtiden och du kommer inte bli underrättad om några @-svar från dem." #: actions/block.php:143 actions/deleteapplication.php:153 -#: actions/deletenotice.php:145 actions/deleteuser.php:147 +#: actions/deletenotice.php:145 actions/deleteuser.php:150 #: actions/groupblock.php:178 msgid "No" msgstr "Nej" -#: actions/block.php:143 actions/deleteuser.php:147 +#: actions/block.php:143 actions/deleteuser.php:150 msgid "Do not block this user" msgstr "Blockera inte denna användare" #: actions/block.php:144 actions/deleteapplication.php:158 -#: actions/deletenotice.php:146 actions/deleteuser.php:148 +#: actions/deletenotice.php:146 actions/deleteuser.php:151 #: actions/groupblock.php:179 lib/repeatform.php:132 msgid "Yes" msgstr "Ja" -#: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:355 lib/blockform.php:80 msgid "Block this user" msgstr "Blockera denna användare" @@ -822,40 +839,44 @@ msgstr "Blockera denna användare" msgid "Failed to save block information." msgstr "Misslyckades att spara blockeringsinformation." -#: actions/blockedfromgroup.php:80 actions/editgroup.php:96 -#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/groupblock.php:86 -#: actions/groupbyid.php:83 actions/groupdesignsettings.php:97 -#: actions/grouplogo.php:99 actions/groupmembers.php:83 -#: actions/grouprss.php:98 actions/groupunblock.php:86 -#: actions/joingroup.php:83 actions/leavegroup.php:83 actions/makeadmin.php:86 -#: actions/showgroup.php:137 lib/command.php:212 lib/command.php:260 +#: actions/blockedfromgroup.php:80 actions/blockedfromgroup.php:87 +#: actions/editgroup.php:100 actions/foafgroup.php:44 actions/foafgroup.php:62 +#: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:100 actions/grouplogo.php:102 +#: actions/groupmembers.php:83 actions/groupmembers.php:90 +#: actions/grouprss.php:98 actions/grouprss.php:105 +#: actions/groupunblock.php:86 actions/joingroup.php:82 +#: actions/joingroup.php:93 actions/leavegroup.php:82 +#: actions/leavegroup.php:93 actions/makeadmin.php:86 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:212 +#: lib/command.php:260 msgid "No such group." msgstr "Ingen sådan grupp." -#: actions/blockedfromgroup.php:90 +#: actions/blockedfromgroup.php:97 #, php-format msgid "%s blocked profiles" msgstr "%s blockerade profiler" -#: actions/blockedfromgroup.php:93 +#: actions/blockedfromgroup.php:100 #, php-format msgid "%1$s blocked profiles, page %2$d" msgstr "%1$s blockerade profiler, sida %2$d" -#: actions/blockedfromgroup.php:108 +#: actions/blockedfromgroup.php:115 msgid "A list of the users blocked from joining this group." msgstr "" "En lista med de användare som blockerats från att gå med i denna grupp." -#: actions/blockedfromgroup.php:281 +#: actions/blockedfromgroup.php:288 msgid "Unblock user from group" msgstr "Häv blockering av användare från grupp" -#: actions/blockedfromgroup.php:313 lib/unblockform.php:69 +#: actions/blockedfromgroup.php:320 lib/unblockform.php:69 msgid "Unblock" msgstr "Häv blockering" -#: actions/blockedfromgroup.php:313 lib/unblockform.php:80 +#: actions/blockedfromgroup.php:320 lib/unblockform.php:80 msgid "Unblock this user" msgstr "Häv blockering av denna användare" @@ -930,7 +951,7 @@ msgstr "Du är inte ägaren av denna applikation." #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1197 +#: lib/action.php:1228 msgid "There was a problem with your session token." msgstr "Det var ett problem med din sessions-token." @@ -956,12 +977,13 @@ msgstr "Ta inte bort denna applikation" msgid "Delete this application" msgstr "Ta bort denna applikation" +#. TRANS: Client error message #: 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:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 -#: lib/adminpanelaction.php:72 lib/profileformaction.php:63 +#: lib/adminpanelaction.php:73 lib/profileformaction.php:63 #: lib/settingsaction.php:72 msgid "Not logged in." msgstr "Inte inloggad." @@ -990,7 +1012,7 @@ msgstr "Är du säker på att du vill ta bort denna notis?" msgid "Do not delete this notice" msgstr "Ta inte bort denna notis" -#: actions/deletenotice.php:146 lib/noticelist.php:637 +#: actions/deletenotice.php:146 lib/noticelist.php:655 msgid "Delete this notice" msgstr "Ta bort denna notis" @@ -1006,7 +1028,7 @@ msgstr "Du kan bara ta bort lokala användare." msgid "Delete user" msgstr "Ta bort användare" -#: actions/deleteuser.php:135 +#: actions/deleteuser.php:136 msgid "" "Are you sure you want to delete this user? This will clear all data about " "the user from the database, without a backup." @@ -1014,12 +1036,12 @@ msgstr "" "Är du säker på att du vill ta bort denna användare? Det kommer rensa all " "data om användaren från databasen, utan en säkerhetskopia." -#: actions/deleteuser.php:148 lib/deleteuserform.php:77 +#: actions/deleteuser.php:151 lib/deleteuserform.php:77 msgid "Delete this user" msgstr "Ta bort denna användare" #: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 -#: lib/adminpanelaction.php:316 lib/groupnav.php:119 +#: lib/groupnav.php:119 msgid "Design" msgstr "Utseende" @@ -1122,6 +1144,17 @@ msgstr "Återställ standardutseende" msgid "Reset back to default" msgstr "Återställ till standardvärde" +#: actions/designadminpanel.php:586 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/tagother.php:154 actions/useradminpanel.php:294 +#: lib/applicationeditform.php:333 lib/applicationeditform.php:334 +#: lib/designsettings.php:256 lib/groupeditform.php:202 +msgid "Save" +msgstr "Spara" + #: actions/designadminpanel.php:587 lib/designsettings.php:257 msgid "Save design" msgstr "Spara utseende" @@ -1213,29 +1246,29 @@ msgstr "Redigera %s grupp" msgid "You must be logged in to create a group." msgstr "Du måste vara inloggad för att skapa en grupp." -#: actions/editgroup.php:103 actions/editgroup.php:168 -#: actions/groupdesignsettings.php:104 actions/grouplogo.php:106 +#: actions/editgroup.php:107 actions/editgroup.php:172 +#: actions/groupdesignsettings.php:107 actions/grouplogo.php:109 msgid "You must be an admin to edit the group." msgstr "Du måste vara en administratör för att redigera gruppen." -#: actions/editgroup.php:154 +#: actions/editgroup.php:158 msgid "Use this form to edit the group." msgstr "Använd detta formulär för att redigera gruppen." -#: actions/editgroup.php:201 actions/newgroup.php:145 +#: actions/editgroup.php:205 actions/newgroup.php:145 #, php-format msgid "description is too long (max %d chars)." msgstr "beskrivning är för lång (max %d tecken)." -#: actions/editgroup.php:253 +#: actions/editgroup.php:258 msgid "Could not update group." msgstr "Kunde inte uppdatera grupp." -#: actions/editgroup.php:259 classes/User_group.php:433 +#: actions/editgroup.php:264 classes/User_group.php:478 msgid "Could not create aliases." msgstr "Kunde inte skapa alias." -#: actions/editgroup.php:269 +#: actions/editgroup.php:280 msgid "Options saved." msgstr "Alternativ sparade." @@ -1576,7 +1609,7 @@ msgstr "Användaren är redan blockerad från grupp." msgid "User is not a member of group." msgstr "Användare är inte en gruppmedlem." -#: actions/groupblock.php:136 actions/groupmembers.php:316 +#: actions/groupblock.php:136 actions/groupmembers.php:323 msgid "Block user from group" msgstr "Blockera användare från grupp" @@ -1611,31 +1644,31 @@ msgstr "Ingen ID." msgid "You must be logged in to edit a group." msgstr "Du måste vara inloggad för att redigera en grupp." -#: actions/groupdesignsettings.php:141 +#: actions/groupdesignsettings.php:144 msgid "Group design" msgstr "Gruppens utseende" -#: actions/groupdesignsettings.php:152 +#: actions/groupdesignsettings.php:155 msgid "" "Customize the way your group looks with a background image and a colour " "palette of your choice." msgstr "" "Anpassa hur din grupp ser ut genom att välja bakgrundbild och färgpalett." -#: actions/groupdesignsettings.php:263 actions/userdesignsettings.php:186 +#: actions/groupdesignsettings.php:266 actions/userdesignsettings.php:186 #: lib/designsettings.php:391 lib/designsettings.php:413 msgid "Couldn't update your design." msgstr "Kunde inte uppdatera dina utseendeinställningar." -#: actions/groupdesignsettings.php:308 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231 msgid "Design preferences saved." msgstr "Utseendeinställningar sparade." -#: actions/grouplogo.php:139 actions/grouplogo.php:192 +#: actions/grouplogo.php:142 actions/grouplogo.php:195 msgid "Group logo" msgstr "Gruppens logotyp" -#: actions/grouplogo.php:150 +#: actions/grouplogo.php:153 #, php-format msgid "" "You can upload a logo image for your group. The maximum file size is %s." @@ -1643,57 +1676,57 @@ msgstr "" "Du kan ladda upp en logotypbild för din grupp. Den maximala filstorleken är %" "s." -#: actions/grouplogo.php:178 +#: actions/grouplogo.php:181 msgid "User without matching profile." msgstr "Användare utan matchande profil." -#: actions/grouplogo.php:362 +#: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." msgstr "Välj ett kvadratiskt område i bilden som logotyp" -#: actions/grouplogo.php:396 +#: actions/grouplogo.php:399 msgid "Logo updated." msgstr "Logtyp uppdaterad." -#: actions/grouplogo.php:398 +#: actions/grouplogo.php:401 msgid "Failed updating logo." msgstr "Misslyckades uppdatera logtyp." -#: actions/groupmembers.php:93 lib/groupnav.php:92 +#: actions/groupmembers.php:100 lib/groupnav.php:92 #, php-format msgid "%s group members" msgstr "%s gruppmedlemmar" -#: actions/groupmembers.php:96 +#: actions/groupmembers.php:103 #, php-format msgid "%1$s group members, page %2$d" msgstr "%1$s gruppmedlemmar, sida %2$d" -#: actions/groupmembers.php:111 +#: actions/groupmembers.php:118 msgid "A list of the users in this group." msgstr "En lista av användarna i denna grupp." -#: actions/groupmembers.php:175 lib/action.php:448 lib/groupnav.php:107 +#: actions/groupmembers.php:182 lib/groupnav.php:107 msgid "Admin" msgstr "Administratör" -#: actions/groupmembers.php:348 lib/blockform.php:69 +#: actions/groupmembers.php:355 lib/blockform.php:69 msgid "Block" msgstr "Blockera" -#: actions/groupmembers.php:443 +#: actions/groupmembers.php:450 msgid "Make user an admin of the group" msgstr "Gör användare till en administratör för gruppen" -#: actions/groupmembers.php:475 +#: actions/groupmembers.php:482 msgid "Make Admin" msgstr "Gör till administratör" -#: actions/groupmembers.php:475 +#: actions/groupmembers.php:482 msgid "Make this user an admin" msgstr "Gör denna användare till administratör" -#: actions/grouprss.php:133 +#: actions/grouprss.php:140 #, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Uppdateringar från medlemmar i %1$s på %2$s!" @@ -1958,16 +1991,19 @@ msgstr "Personligt meddelande" msgid "Optionally add a personal message to the invitation." msgstr "Om du vill, skriv ett personligt meddelande till inbjudan." -#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:236 +#. TRANS: Send button for inviting friends +#: actions/invite.php:198 +#, fuzzy +msgctxt "BUTTON" msgid "Send" msgstr "Skicka" -#: actions/invite.php:226 +#: actions/invite.php:227 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "%1$s har bjudit in dig att gå med dem på %2$s" -#: actions/invite.php:228 +#: actions/invite.php:229 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -2028,7 +2064,11 @@ msgstr "" msgid "You must be logged in to join a group." msgstr "Du måste vara inloggad för att kunna gå med i en grupp." -#: actions/joingroup.php:131 +#: actions/joingroup.php:88 actions/leavegroup.php:88 +msgid "No nickname or ID." +msgstr "Inget smeknamn eller ID." + +#: actions/joingroup.php:141 #, php-format msgid "%1$s joined group %2$s" msgstr "%1$s gick med i grupp %2$s" @@ -2037,11 +2077,11 @@ msgstr "%1$s gick med i grupp %2$s" msgid "You must be logged in to leave a group." msgstr "Du måste vara inloggad för att lämna en grupp." -#: actions/leavegroup.php:90 lib/command.php:265 +#: actions/leavegroup.php:100 lib/command.php:265 msgid "You are not a member of that group." msgstr "Du är inte en medlem i den gruppen." -#: actions/leavegroup.php:127 +#: actions/leavegroup.php:137 #, php-format msgid "%1$s left group %2$s" msgstr "%1$s lämnade grupp %2$s" @@ -2058,8 +2098,7 @@ msgstr "Felaktigt användarnamn eller lösenord." msgid "Error setting user. You are probably not authorized." msgstr "Fel vid inställning av användare. Du har sannolikt inte tillstånd." -#: actions/login.php:188 actions/login.php:241 lib/action.php:466 -#: lib/logingroupnav.php:79 +#: actions/login.php:188 actions/login.php:241 lib/logingroupnav.php:79 msgid "Login" msgstr "Logga in" @@ -2313,8 +2352,8 @@ msgstr "innehållstyp " msgid "Only " msgstr "Bara " -#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 -#: lib/api.php:1068 lib/api.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 +#: lib/apiaction.php:1068 lib/apiaction.php:1177 msgid "Not a supported data format." msgstr "Ett dataformat som inte stödjs" @@ -2453,7 +2492,7 @@ msgstr "Kan inte spara nytt lösenord." msgid "Password saved." msgstr "Lösenord sparat." -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:331 +#: actions/pathsadminpanel.php:59 msgid "Paths" msgstr "Sökvägar" @@ -2486,7 +2525,6 @@ msgid "Invalid SSL server. The maximum length is 255 characters." msgstr "Ogiltigt SSL-servernamn. Den maximala längden är 255 tecken." #: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58 -#: lib/adminpanelaction.php:311 msgid "Site" msgstr "Webbplats" @@ -2659,7 +2697,7 @@ msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1-64 små bokstäver eller nummer, inga punkter eller mellanslag" #: actions/profilesettings.php:111 actions/register.php:448 -#: actions/showgroup.php:247 actions/tagother.php:104 +#: actions/showgroup.php:255 actions/tagother.php:104 #: lib/groupeditform.php:157 lib/userprofile.php:149 msgid "Full name" msgstr "Fullständigt namn" @@ -2687,7 +2725,7 @@ msgid "Bio" msgstr "Biografi" #: actions/profilesettings.php:132 actions/register.php:471 -#: actions/showgroup.php:256 actions/tagother.php:112 +#: actions/showgroup.php:264 actions/tagother.php:112 #: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:164 msgid "Location" @@ -2771,7 +2809,8 @@ msgstr "Kunde inte spara profil." msgid "Couldn't save tags." msgstr "Kunde inte spara taggar." -#: actions/profilesettings.php:391 lib/adminpanelaction.php:137 +#. TRANS: Message after successful saving of administrative settings. +#: actions/profilesettings.php:391 lib/adminpanelaction.php:141 msgid "Settings saved." msgstr "Inställningar sparade." @@ -2784,28 +2823,28 @@ msgstr "Bortom sidbegränsningen (%s)" msgid "Could not retrieve public stream." msgstr "Kunde inte hämta publik ström." -#: actions/public.php:129 +#: actions/public.php:130 #, php-format msgid "Public timeline, page %d" msgstr "Publik tidslinje, sida %d" -#: actions/public.php:131 lib/publicgroupnav.php:79 +#: actions/public.php:132 lib/publicgroupnav.php:79 msgid "Public timeline" msgstr "Publik tidslinje" -#: actions/public.php:159 +#: actions/public.php:160 msgid "Public Stream Feed (RSS 1.0)" msgstr "Publikt flöde av ström (RSS 1.0)" -#: actions/public.php:163 +#: actions/public.php:164 msgid "Public Stream Feed (RSS 2.0)" msgstr "Publikt flöde av ström (RSS 2.0)" -#: actions/public.php:167 +#: actions/public.php:168 msgid "Public Stream Feed (Atom)" msgstr "Publikt flöde av ström (Atom)" -#: actions/public.php:187 +#: actions/public.php:188 #, php-format msgid "" "This is the public timeline for %%site.name%% but no one has posted anything " @@ -2814,11 +2853,11 @@ msgstr "" "Detta är den publika tidslinjen för %%site.name%% men ingen har postat något " "än." -#: actions/public.php:190 +#: actions/public.php:191 msgid "Be the first to post!" msgstr "Bli först att posta!" -#: actions/public.php:194 +#: actions/public.php:195 #, php-format msgid "" "Why not [register an account](%%action.register%%) and be the first to post!" @@ -2826,7 +2865,7 @@ msgstr "" "Varför inte [registrera ett konto](%%action.register%%) och bli först att " "posta!" -#: actions/public.php:241 +#: actions/public.php:242 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2839,7 +2878,7 @@ msgstr "" "net/). [Gå med nu](%%action.register%%) för att dela notiser om dig själv " "med vänner, familj och kollegor! ([Läs mer](%%doc.help%%))" -#: actions/public.php:246 +#: actions/public.php:247 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -3018,8 +3057,7 @@ msgstr "Tyvärr, ogiltig inbjudningskod." msgid "Registration successful" msgstr "Registreringen genomförd" -#: actions/register.php:114 actions/register.php:503 lib/action.php:463 -#: lib/logingroupnav.php:85 +#: actions/register.php:114 actions/register.php:503 lib/logingroupnav.php:85 msgid "Register" msgstr "Registrera" @@ -3208,7 +3246,7 @@ msgstr "Du kan inte upprepa din egna notis." msgid "You already repeated that notice." msgstr "Du har redan upprepat denna notis." -#: actions/repeat.php:114 lib/noticelist.php:656 +#: actions/repeat.php:114 lib/noticelist.php:674 msgid "Repeated" msgstr "Upprepad" @@ -3216,33 +3254,33 @@ msgstr "Upprepad" msgid "Repeated!" msgstr "Upprepad!" -#: actions/replies.php:125 actions/repliesrss.php:68 +#: actions/replies.php:126 actions/repliesrss.php:68 #: lib/personalgroupnav.php:105 #, php-format msgid "Replies to %s" msgstr "Svarat till %s" -#: actions/replies.php:127 +#: actions/replies.php:128 #, php-format msgid "Replies to %1$s, page %2$d" msgstr "Svar till %1$s, sida %2$s" -#: actions/replies.php:144 +#: actions/replies.php:145 #, php-format msgid "Replies feed for %s (RSS 1.0)" msgstr "Flöde med svar för %s (RSS 1.0)" -#: actions/replies.php:151 +#: actions/replies.php:152 #, php-format msgid "Replies feed for %s (RSS 2.0)" msgstr "Flöde med svar för %s (RSS 2.0)" -#: actions/replies.php:158 +#: actions/replies.php:159 #, php-format msgid "Replies feed for %s (Atom)" msgstr "Flöde med svar för %s (Atom)" -#: actions/replies.php:198 +#: actions/replies.php:199 #, php-format msgid "" "This is the timeline showing replies to %1$s but %2$s hasn't received a " @@ -3251,7 +3289,7 @@ msgstr "" "Detta är tidslinjen som visar svar till %s1$ men %2$s har inte tagit emot en " "notis för dennes uppmärksamhet än." -#: actions/replies.php:203 +#: actions/replies.php:204 #, php-format msgid "" "You can engage other users in a conversation, subscribe to more people or " @@ -3260,7 +3298,7 @@ msgstr "" "Du kan engagera andra användare i en konversation, prenumerera på fler " "personer eller [gå med i grupper](%%action.groups%%)." -#: actions/replies.php:205 +#: actions/replies.php:206 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) or [post something to his or her " @@ -3287,7 +3325,6 @@ msgid "User is already sandboxed." msgstr "Användare är redan flyttad till sandlådan." #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:336 msgid "Sessions" msgstr "Sessioner" @@ -3312,7 +3349,7 @@ msgid "Turn on debugging output for sessions." msgstr "Sätt på felsökningsutdata för sessioner." #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/useradminpanel.php:293 +#: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "Spara webbplatsinställningar" @@ -3342,7 +3379,7 @@ msgstr "Organisation" msgid "Description" msgstr "Beskrivning" -#: actions/showapplication.php:192 actions/showgroup.php:429 +#: actions/showapplication.php:192 actions/showgroup.php:437 #: lib/profileaction.php:174 msgid "Statistics" msgstr "Statistik" @@ -3406,22 +3443,22 @@ msgstr "%1$ss favoritnotiser, sida %2$d" msgid "Could not retrieve favorite notices." msgstr "Kunde inte hämta favoritnotiser." -#: actions/showfavorites.php:170 +#: actions/showfavorites.php:171 #, php-format msgid "Feed for favorites of %s (RSS 1.0)" msgstr "Flöde för %ss favoriter (RSS 1.0)" -#: actions/showfavorites.php:177 +#: actions/showfavorites.php:178 #, php-format msgid "Feed for favorites of %s (RSS 2.0)" msgstr "Flöde för %ss favoriter (RSS 2.0)" -#: actions/showfavorites.php:184 +#: actions/showfavorites.php:185 #, php-format msgid "Feed for favorites of %s (Atom)" msgstr "Flöde för %ss favoriter (Atom)" -#: actions/showfavorites.php:205 +#: actions/showfavorites.php:206 msgid "" "You haven't chosen any favorite notices yet. Click the fave button on " "notices you like to bookmark them for later or shed a spotlight on them." @@ -3430,7 +3467,7 @@ msgstr "" "bredvid någon notis du skulle vilja bokmärka för senare tillfälle eller för " "att sätta strålkastarljuset på." -#: actions/showfavorites.php:207 +#: actions/showfavorites.php:208 #, php-format msgid "" "%s hasn't added any notices to his favorites yet. Post something interesting " @@ -3439,7 +3476,7 @@ msgstr "" "%s har inte lagt till några notiser till sina favoriter ännu. Posta något " "intressant de skulle lägga till sina favoriter :)" -#: actions/showfavorites.php:211 +#: actions/showfavorites.php:212 #, php-format msgid "" "%s hasn't added any notices to his favorites yet. Why not [register an " @@ -3450,7 +3487,7 @@ msgstr "" "[registrera ett konto](%%%%action.register%%%%) och posta något intressant " "de skulle lägga till sina favoriter :)" -#: actions/showfavorites.php:242 +#: actions/showfavorites.php:243 msgid "This is a way to share what you like." msgstr "Detta är ett sätt att dela med av det du gillar." @@ -3464,67 +3501,67 @@ msgstr "%s grupp" msgid "%1$s group, page %2$d" msgstr "%1$s grupp, sida %2$d" -#: actions/showgroup.php:218 +#: actions/showgroup.php:226 msgid "Group profile" msgstr "Grupprofil" -#: actions/showgroup.php:263 actions/tagother.php:118 +#: actions/showgroup.php:271 actions/tagother.php:118 #: actions/userauthorization.php:175 lib/userprofile.php:177 msgid "URL" msgstr "URL" -#: actions/showgroup.php:274 actions/tagother.php:128 +#: actions/showgroup.php:282 actions/tagother.php:128 #: actions/userauthorization.php:187 lib/userprofile.php:194 msgid "Note" msgstr "Notis" -#: actions/showgroup.php:284 lib/groupeditform.php:184 +#: actions/showgroup.php:292 lib/groupeditform.php:184 msgid "Aliases" msgstr "Alias" -#: actions/showgroup.php:293 +#: actions/showgroup.php:301 msgid "Group actions" msgstr "Åtgärder för grupp" -#: actions/showgroup.php:328 +#: actions/showgroup.php:336 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Flöde av notiser för %s grupp (RSS 1.0)" -#: actions/showgroup.php:334 +#: actions/showgroup.php:342 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Flöde av notiser för %s grupp (RSS 2.0)" -#: actions/showgroup.php:340 +#: actions/showgroup.php:348 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "Flöde av notiser för %s grupp (Atom)" -#: actions/showgroup.php:345 +#: actions/showgroup.php:353 #, php-format msgid "FOAF for %s group" msgstr "FOAF för %s grupp" -#: actions/showgroup.php:381 actions/showgroup.php:438 lib/groupnav.php:91 +#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 msgid "Members" msgstr "Medlemmar" -#: actions/showgroup.php:386 lib/profileaction.php:117 +#: actions/showgroup.php:394 lib/profileaction.php:117 #: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(Ingen)" -#: actions/showgroup.php:392 +#: actions/showgroup.php:400 msgid "All members" msgstr "Alla medlemmar" -#: actions/showgroup.php:432 +#: actions/showgroup.php:440 msgid "Created" msgstr "Skapad" -#: actions/showgroup.php:448 +#: actions/showgroup.php:456 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3539,7 +3576,7 @@ msgstr "" "sina liv och intressen. [Gå med nu](%%%%action.register%%%%) för att bli en " "del av denna grupp och många fler! ([Läs mer](%%%%doc.help%%%%))" -#: actions/showgroup.php:454 +#: actions/showgroup.php:462 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3552,7 +3589,7 @@ msgstr "" "[StatusNet](http://status.net/). Dess medlemmar delar korta meddelande om " "sina liv och intressen. " -#: actions/showgroup.php:482 +#: actions/showgroup.php:490 msgid "Admins" msgstr "Administratörer" @@ -3924,17 +3961,15 @@ msgstr "Kunde inte spara prenumeration." #: actions/subscribe.php:77 msgid "This action only accepts POST requests." -msgstr "" +msgstr "Denna åtgärd accepterar endast POST-begäran." #: actions/subscribe.php:107 -#, fuzzy msgid "No such profile." -msgstr "Ingen sådan fil." +msgstr "Ingen sådan profil." #: actions/subscribe.php:117 -#, fuzzy msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." -msgstr "Du är inte prenumerat hos den profilen." +msgstr "Du kan inte prenumerera på en 0MB 0.1-fjärrprofil med denna åtgärd." #: actions/subscribe.php:145 msgid "Subscribed" @@ -4029,22 +4064,22 @@ msgstr "Jabber" msgid "SMS" msgstr "SMS" -#: actions/tag.php:68 +#: actions/tag.php:69 #, php-format msgid "Notices tagged with %1$s, page %2$d" msgstr "Notiser taggade med %1$s, sida %2$d" -#: actions/tag.php:86 +#: actions/tag.php:87 #, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Flöde av notiser för tagg %s (RSS 1.0)" -#: actions/tag.php:92 +#: actions/tag.php:93 #, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Flöde av notiser för tagg %s (RSS 2.0)" -#: actions/tag.php:98 +#: actions/tag.php:99 #, php-format msgid "Notice feed for tag %s (Atom)" msgstr "Flöde av notiser för tagg %s (Atom)" @@ -4099,7 +4134,7 @@ msgstr "" msgid "No such tag." msgstr "Ingen sådan tagg." -#: actions/twitapitrends.php:87 +#: actions/twitapitrends.php:85 msgid "API method under construction." msgstr "API-metoden är under uppbyggnad." @@ -4131,72 +4166,74 @@ msgstr "" "Licensen för lyssnarströmmen '%1$s' är inte förenlig med webbplatslicensen '%" "2$s'." -#: actions/useradminpanel.php:58 lib/adminpanelaction.php:321 -#: lib/personalgroupnav.php:115 +#. TRANS: User admin panel title +#: actions/useradminpanel.php:59 +#, fuzzy +msgctxt "TITLE" msgid "User" msgstr "Användare" -#: actions/useradminpanel.php:69 +#: actions/useradminpanel.php:70 msgid "User settings for this StatusNet site." msgstr "Användarinställningar för denna StatusNet-webbplats" -#: actions/useradminpanel.php:148 +#: actions/useradminpanel.php:149 msgid "Invalid bio limit. Must be numeric." msgstr "Ogiltig begränsning av biografi. Måste vara numerisk." -#: actions/useradminpanel.php:154 +#: actions/useradminpanel.php:155 msgid "Invalid welcome text. Max length is 255 characters." msgstr "Ogiltig välkomsttext. Maximal längd är 255 tecken." -#: actions/useradminpanel.php:164 +#: actions/useradminpanel.php:165 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "Ogiltig standardprenumeration: '%1$s' är inte användare." -#: actions/useradminpanel.php:217 lib/accountsettingsaction.php:108 +#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Profil" -#: actions/useradminpanel.php:221 +#: actions/useradminpanel.php:222 msgid "Bio Limit" msgstr "Begränsning av biografi" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:223 msgid "Maximum length of a profile bio in characters." msgstr "Maximal teckenlängd av profilbiografi." -#: actions/useradminpanel.php:230 +#: actions/useradminpanel.php:231 msgid "New users" msgstr "Nya användare" -#: actions/useradminpanel.php:234 +#: actions/useradminpanel.php:235 msgid "New user welcome" msgstr "Välkomnande av ny användare" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:236 msgid "Welcome text for new users (Max 255 chars)." msgstr "Välkomsttext för nya användare (max 255 tecken)." -#: actions/useradminpanel.php:240 +#: actions/useradminpanel.php:241 msgid "Default subscription" msgstr "Standardprenumerationer" -#: actions/useradminpanel.php:241 +#: actions/useradminpanel.php:242 msgid "Automatically subscribe new users to this user." msgstr "" "Lägg automatiskt till en prenumeration på denna användare för alla nya " "användare." -#: actions/useradminpanel.php:250 +#: actions/useradminpanel.php:251 msgid "Invitations" msgstr "Inbjudningar" -#: actions/useradminpanel.php:255 +#: actions/useradminpanel.php:256 msgid "Invitations enabled" msgstr "Inbjudningar aktiverade" -#: actions/useradminpanel.php:257 +#: actions/useradminpanel.php:258 msgid "Whether to allow users to invite new users." msgstr "Hurvida användare skall tillåtas bjuda in nya användare." @@ -4392,7 +4429,7 @@ msgstr "" msgid "Plugins" msgstr "Insticksmoduler" -#: actions/version.php:196 lib/action.php:747 +#: actions/version.php:196 lib/action.php:778 msgid "Version" msgstr "Version" @@ -4431,6 +4468,10 @@ msgstr "Inte med i grupp." msgid "Group leave failed." msgstr "Grupputträde misslyckades." +#: classes/Local_group.php:41 +msgid "Could not update local group." +msgstr "Kunde inte uppdatera lokal grupp." + #: classes/Login_token.php:76 #, php-format msgid "Could not create login token for %s" @@ -4448,27 +4489,27 @@ msgstr "Kunde inte infoga meddelande." msgid "Could not update message with new URI." msgstr "Kunde inte uppdatera meddelande med ny URI." -#: classes/Notice.php:157 +#: classes/Notice.php:172 #, php-format msgid "DB error inserting hashtag: %s" msgstr "Databasfel vid infogning av hashtag: %s" -#: classes/Notice.php:222 +#: classes/Notice.php:239 msgid "Problem saving notice. Too long." msgstr "Problem vid sparande av notis. För långt." -#: classes/Notice.php:226 +#: classes/Notice.php:243 msgid "Problem saving notice. Unknown user." msgstr "Problem vid sparande av notis. Okänd användare." -#: classes/Notice.php:231 +#: classes/Notice.php:248 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" "För många notiser för snabbt; ta en vilopaus och posta igen om ett par " "minuter." -#: classes/Notice.php:237 +#: classes/Notice.php:254 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." @@ -4476,19 +4517,19 @@ msgstr "" "För många duplicerade meddelanden för snabbt; ta en vilopaus och posta igen " "om ett par minuter." -#: classes/Notice.php:243 +#: classes/Notice.php:260 msgid "You are banned from posting notices on this site." msgstr "Du är utestängd från att posta notiser på denna webbplats." -#: classes/Notice.php:309 classes/Notice.php:335 +#: classes/Notice.php:326 classes/Notice.php:352 msgid "Problem saving notice." msgstr "Problem med att spara notis." -#: classes/Notice.php:882 +#: classes/Notice.php:911 msgid "Problem saving group inbox." msgstr "Problem med att spara gruppinkorg." -#: classes/Notice.php:1407 +#: classes/Notice.php:1442 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -4517,19 +4558,27 @@ msgstr "Kunde inte ta bort själv-prenumeration." msgid "Couldn't delete subscription." msgstr "Kunde inte ta bort prenumeration." -#: classes/User.php:372 +#: classes/User.php:373 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "Välkommen till %1$s, @%2$s!" -#: classes/User_group.php:423 +#: classes/User_group.php:462 msgid "Could not create group." msgstr "Kunde inte skapa grupp." -#: classes/User_group.php:452 +#: classes/User_group.php:471 +msgid "Could not set group URI." +msgstr "Kunde inte ställa in grupp-URI." + +#: classes/User_group.php:492 msgid "Could not set group membership." msgstr "Kunde inte ställa in gruppmedlemskap." +#: classes/User_group.php:506 +msgid "Could not save local group info." +msgstr "Kunde inte spara lokal gruppinformation." + #: lib/accountsettingsaction.php:108 msgid "Change your profile settings" msgstr "Ändra dina profilinställningar" @@ -4571,120 +4620,190 @@ msgstr "Namnlös sida" msgid "Primary site navigation" msgstr "Primär webbplatsnavigation" +#. TRANS: Tooltip for main menu option "Personal" #: lib/action.php:439 -msgid "Home" -msgstr "Hem" - -#: lib/action.php:439 +#, fuzzy +msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Personlig profil och vänners tidslinje" -#: lib/action.php:441 +#: lib/action.php:442 +#, fuzzy +msgctxt "MENU" +msgid "Personal" +msgstr "Personligt" + +#. TRANS: Tooltip for main menu option "Account" +#: lib/action.php:444 +#, fuzzy +msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Ändra din e-post, avatar, lösenord, profil" -#: lib/action.php:444 -msgid "Connect" -msgstr "Anslut" +#: lib/action.php:447 +#, fuzzy +msgctxt "MENU" +msgid "Account" +msgstr "Konto" -#: lib/action.php:444 +#. TRANS: Tooltip for main menu option "Services" +#: lib/action.php:450 +#, fuzzy +msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Anslut till tjänster" -#: lib/action.php:448 +#: lib/action.php:453 +#, fuzzy +msgctxt "MENU" +msgid "Connect" +msgstr "Anslut" + +#. TRANS: Tooltip for menu option "Admin" +#: lib/action.php:457 +#, fuzzy +msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Ändra webbplatskonfiguration" -#: lib/action.php:452 lib/subgroupnav.php:105 -msgid "Invite" -msgstr "Bjud in" +#: lib/action.php:460 +#, fuzzy +msgctxt "MENU" +msgid "Admin" +msgstr "Administratör" -#: lib/action.php:453 lib/subgroupnav.php:106 -#, php-format +#. TRANS: Tooltip for main menu option "Invite" +#: lib/action.php:464 +#, fuzzy, php-format +msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Bjud in vänner och kollegor att gå med dig på %s" -#: lib/action.php:458 -msgid "Logout" -msgstr "Logga ut" +#: lib/action.php:467 +#, fuzzy +msgctxt "MENU" +msgid "Invite" +msgstr "Bjud in" -#: lib/action.php:458 +#. TRANS: Tooltip for main menu option "Logout" +#: lib/action.php:473 +#, fuzzy +msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Logga ut från webbplatsen" -#: lib/action.php:463 +#: lib/action.php:476 +#, fuzzy +msgctxt "MENU" +msgid "Logout" +msgstr "Logga ut" + +#. TRANS: Tooltip for main menu option "Register" +#: lib/action.php:481 +#, fuzzy +msgctxt "TOOLTIP" msgid "Create an account" msgstr "Skapa ett konto" -#: lib/action.php:466 +#: lib/action.php:484 +#, fuzzy +msgctxt "MENU" +msgid "Register" +msgstr "Registrera" + +#. TRANS: Tooltip for main menu option "Login" +#: lib/action.php:487 +#, fuzzy +msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Logga in på webbplatsen" -#: lib/action.php:469 lib/action.php:732 -msgid "Help" -msgstr "Hjälp" +#: lib/action.php:490 +#, fuzzy +msgctxt "MENU" +msgid "Login" +msgstr "Logga in" -#: lib/action.php:469 +#. TRANS: Tooltip for main menu option "Help" +#: lib/action.php:493 +#, fuzzy +msgctxt "TOOLTIP" msgid "Help me!" msgstr "Hjälp mig!" -#: lib/action.php:472 lib/searchaction.php:127 -msgid "Search" -msgstr "Sök" +#: lib/action.php:496 +#, fuzzy +msgctxt "MENU" +msgid "Help" +msgstr "Hjälp" -#: lib/action.php:472 +#. TRANS: Tooltip for main menu option "Search" +#: lib/action.php:499 +#, fuzzy +msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Sök efter personer eller text" -#: lib/action.php:493 +#: lib/action.php:502 +#, fuzzy +msgctxt "MENU" +msgid "Search" +msgstr "Sök" + +#. TRANS: DT element for site notice. String is hidden in default CSS. +#: lib/action.php:524 msgid "Site notice" msgstr "Webbplatsnotis" -#: lib/action.php:559 +#: lib/action.php:590 msgid "Local views" msgstr "Lokala vyer" -#: lib/action.php:625 +#: lib/action.php:656 msgid "Page notice" msgstr "Sidnotis" -#: lib/action.php:727 +#: lib/action.php:758 msgid "Secondary site navigation" msgstr "Sekundär webbplatsnavigation" -#: lib/action.php:734 +#: lib/action.php:763 +msgid "Help" +msgstr "Hjälp" + +#: lib/action.php:765 msgid "About" msgstr "Om" -#: lib/action.php:736 +#: lib/action.php:767 msgid "FAQ" msgstr "Frågor & svar" -#: lib/action.php:740 +#: lib/action.php:771 msgid "TOS" msgstr "Användarvillkor" -#: lib/action.php:743 +#: lib/action.php:774 msgid "Privacy" msgstr "Sekretess" -#: lib/action.php:745 +#: lib/action.php:776 msgid "Source" msgstr "Källa" -#: lib/action.php:749 +#: lib/action.php:780 msgid "Contact" msgstr "Kontakt" -#: lib/action.php:751 +#: lib/action.php:782 msgid "Badge" msgstr "Emblem" -#: lib/action.php:779 +#: lib/action.php:810 msgid "StatusNet software license" msgstr "Programvarulicens för StatusNet" -#: lib/action.php:782 +#: lib/action.php:813 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4693,12 +4812,12 @@ msgstr "" "**%%site.name%%** är en mikrobloggtjänst tillhandahållen av [%%site.broughtby" "%%](%%site.broughtbyurl%%). " -#: lib/action.php:784 +#: lib/action.php:815 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** är en mikrobloggtjänst. " -#: lib/action.php:786 +#: lib/action.php:817 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4709,107 +4828,160 @@ msgstr "" "version %s, tillgänglig under [GNU Affero General Public License](http://www." "fsf.org/licensing/licenses/agpl-3.0.html)." -#: lib/action.php:801 +#: lib/action.php:832 msgid "Site content license" msgstr "Licens för webbplatsinnehåll" -#: lib/action.php:806 +#: lib/action.php:837 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "Innehåll och data av %1$s är privat och konfidensiell." -#: lib/action.php:811 +#: lib/action.php:842 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "Innehåll och data copyright av %1$s. Alla rättigheter reserverade." -#: lib/action.php:814 +#: lib/action.php:845 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" "Innehåll och data copyright av medarbetare. Alla rättigheter reserverade." -#: lib/action.php:827 +#: lib/action.php:858 msgid "All " msgstr "Alla " -#: lib/action.php:833 +#: lib/action.php:864 msgid "license." msgstr "licens." -#: lib/action.php:1132 +#: lib/action.php:1163 msgid "Pagination" msgstr "Numrering av sidor" -#: lib/action.php:1141 +#: lib/action.php:1172 msgid "After" msgstr "Senare" -#: lib/action.php:1149 +#: lib/action.php:1180 msgid "Before" msgstr "Tidigare" -#: lib/activity.php:382 +#: lib/activity.php:449 msgid "Can't handle remote content yet." -msgstr "" +msgstr "Kan inte hantera fjärrinnehåll ännu." -#: lib/activity.php:410 +#: lib/activity.php:477 msgid "Can't handle embedded XML content yet." -msgstr "" +msgstr "Kan inte hantera inbäddat XML-innehåll ännu." -#: lib/activity.php:414 +#: lib/activity.php:481 msgid "Can't handle embedded Base64 content yet." -msgstr "" +msgstr "Kan inte hantera inbäddat Base64-innehåll ännu." -#: lib/adminpanelaction.php:96 +#. TRANS: Client error message +#: lib/adminpanelaction.php:98 msgid "You cannot make changes to this site." msgstr "Du kan inte göra förändringar av denna webbplats." -#: lib/adminpanelaction.php:107 +#. TRANS: Client error message +#: lib/adminpanelaction.php:110 msgid "Changes to that panel are not allowed." msgstr "Ändringar av den panelen tillåts inte." -#: lib/adminpanelaction.php:206 +#. TRANS: Client error message +#: lib/adminpanelaction.php:211 msgid "showForm() not implemented." msgstr "showForm() är inte implementerat." -#: lib/adminpanelaction.php:235 +#. TRANS: Client error message +#: lib/adminpanelaction.php:241 msgid "saveSettings() not implemented." msgstr "saveSetting() är inte implementerat." -#: lib/adminpanelaction.php:258 +#. TRANS: Client error message +#: lib/adminpanelaction.php:265 msgid "Unable to delete design setting." msgstr "Kunde inte ta bort utseendeinställning." -#: lib/adminpanelaction.php:312 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:330 msgid "Basic site configuration" msgstr "Grundläggande webbplatskonfiguration" -#: lib/adminpanelaction.php:317 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:332 +#, fuzzy +msgctxt "MENU" +msgid "Site" +msgstr "Webbplats" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:338 msgid "Design configuration" msgstr "Konfiguration av utseende" -#: lib/adminpanelaction.php:322 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:340 +#, fuzzy +msgctxt "MENU" +msgid "Design" +msgstr "Utseende" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:346 msgid "User configuration" msgstr "Konfiguration av användare" -#: lib/adminpanelaction.php:327 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:348 +#, fuzzy +msgctxt "MENU" +msgid "User" +msgstr "Användare" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:354 msgid "Access configuration" msgstr "Konfiguration av åtkomst" -#: lib/adminpanelaction.php:332 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:356 +#, fuzzy +msgctxt "MENU" +msgid "Access" +msgstr "Åtkomst" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:362 msgid "Paths configuration" msgstr "Konfiguration av sökvägar" -#: lib/adminpanelaction.php:337 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:364 +#, fuzzy +msgctxt "MENU" +msgid "Paths" +msgstr "Sökvägar" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:370 msgid "Sessions configuration" msgstr "Konfiguration av sessioner" -#: lib/apiauth.php:95 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:372 +#, fuzzy +msgctxt "MENU" +msgid "Sessions" +msgstr "Sessioner" + +#: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." msgstr "" "API-resursen kräver läs- och skrivrättigheter, men du har bara läsrättighet." -#: lib/apiauth.php:273 +#: lib/apiauth.php:272 #, php-format msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" msgstr "" @@ -4902,11 +5074,11 @@ msgstr "Notiser där denna bilaga förekommer" msgid "Tags for this attachment" msgstr "Taggar för denna billaga" -#: lib/authenticationplugin.php:218 lib/authenticationplugin.php:223 +#: lib/authenticationplugin.php:220 lib/authenticationplugin.php:225 msgid "Password changing failed" msgstr "Byte av lösenord misslyckades" -#: lib/authenticationplugin.php:233 +#: lib/authenticationplugin.php:235 msgid "Password changing is not allowed" msgstr "Byte av lösenord är inte tillåtet" @@ -5106,9 +5278,9 @@ msgstr "" "Denna länk är endast användbar en gång, och gäller bara i 2 minuter: %s" #: lib/command.php:692 -#, fuzzy, php-format +#, php-format msgid "Unsubscribed %s" -msgstr "Prenumeration hos %s avslutad" +msgstr "Prenumeration avslutad %s" #: lib/command.php:709 msgid "You are not subscribed to anyone." @@ -5141,7 +5313,6 @@ msgstr[0] "Du är en medlem i denna grupp:" msgstr[1] "Du är en medlem i dessa grupper:" #: lib/command.php:769 -#, fuzzy msgid "" "Commands:\n" "on - turn on notifications\n" @@ -5194,6 +5365,7 @@ msgstr "" "d - direktmeddelande till användare\n" "get - hämta senaste notis från användare\n" "whois - hämta profilinformation om användare\n" +"lose - tvinga användare att sluta följa dig\n" "fav - lägg till användarens senaste notis som favorit\n" "fav # - lägg till notis med given id som favorit\n" "repeat # - upprepa en notis med en given id\n" @@ -5220,19 +5392,19 @@ msgstr "" "tracks - inte implementerat än.\n" "tracking - inte implementerat än.\n" -#: lib/common.php:136 +#: lib/common.php:148 msgid "No configuration file found. " msgstr "Ingen konfigurationsfil hittades. " -#: lib/common.php:137 +#: lib/common.php:149 msgid "I looked for configuration files in the following places: " msgstr "Jag letade efter konfigurationsfiler på följande platser: " -#: lib/common.php:139 +#: lib/common.php:151 msgid "You may wish to run the installer to fix this." msgstr "Du kanske vill köra installeraren för att åtgärda detta." -#: lib/common.php:140 +#: lib/common.php:152 msgid "Go to the installer." msgstr "Gå till installeraren." @@ -5420,23 +5592,23 @@ msgstr "Systemfel vid uppladdning av fil." msgid "Not an image or corrupt file." msgstr "Inte en bildfil eller så är filen korrupt." -#: lib/imagefile.php:105 +#: lib/imagefile.php:109 msgid "Unsupported image file format." msgstr "Bildfilens format stödjs inte." -#: lib/imagefile.php:118 +#: lib/imagefile.php:122 msgid "Lost our file." msgstr "Förlorade vår fil." -#: lib/imagefile.php:150 lib/imagefile.php:197 +#: lib/imagefile.php:166 lib/imagefile.php:231 msgid "Unknown file type" msgstr "Okänd filtyp" -#: lib/imagefile.php:217 +#: lib/imagefile.php:251 msgid "MB" msgstr "MB" -#: lib/imagefile.php:219 +#: lib/imagefile.php:253 msgid "kB" msgstr "kB" @@ -5818,6 +5990,11 @@ msgstr "Till" msgid "Available characters" msgstr "Tillgängliga tecken" +#: lib/messageform.php:178 lib/noticeform.php:236 +msgctxt "Send button for sending notice" +msgid "Send" +msgstr "Skicka" + #: lib/noticeform.php:160 msgid "Send a notice" msgstr "Skicka en notis" @@ -5876,23 +6053,23 @@ msgstr "V" msgid "at" msgstr "på" -#: lib/noticelist.php:558 +#: lib/noticelist.php:566 msgid "in context" msgstr "i sammanhang" -#: lib/noticelist.php:583 +#: lib/noticelist.php:601 msgid "Repeated by" msgstr "Upprepad av" -#: lib/noticelist.php:610 +#: lib/noticelist.php:628 msgid "Reply to this notice" msgstr "Svara på denna notis" -#: lib/noticelist.php:611 +#: lib/noticelist.php:629 msgid "Reply" msgstr "Svara" -#: lib/noticelist.php:655 +#: lib/noticelist.php:673 msgid "Notice repeated" msgstr "Notis upprepad" @@ -5940,6 +6117,10 @@ msgstr "Svar" msgid "Favorites" msgstr "Favoriter" +#: lib/personalgroupnav.php:115 +msgid "User" +msgstr "Användare" + #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "Inkorg" @@ -6029,7 +6210,7 @@ msgstr "Upprepa denna notis?" msgid "Repeat this notice" msgstr "Upprepa denna notis" -#: lib/router.php:665 +#: lib/router.php:668 msgid "No single user defined for single-user mode." msgstr "Ingen enskild användare definierad för enanvändarläge." @@ -6049,6 +6230,10 @@ msgstr "Sök webbplats" msgid "Keyword(s)" msgstr "Nyckelord" +#: lib/searchaction.php:127 +msgid "Search" +msgstr "Sök" + #: lib/searchaction.php:162 msgid "Search help" msgstr "Sök hjälp" @@ -6100,6 +6285,15 @@ msgstr "Personer som prenumererar på %s" msgid "Groups %s is a member of" msgstr "Grupper %s är en medlem i" +#: lib/subgroupnav.php:105 +msgid "Invite" +msgstr "Bjud in" + +#: lib/subgroupnav.php:106 +#, php-format +msgid "Invite friends and colleagues to join you on %s" +msgstr "Bjud in vänner och kollegor att gå med dig på %s" + #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -6170,47 +6364,47 @@ msgstr "Meddelande" msgid "Moderate" msgstr "Moderera" -#: lib/util.php:952 +#: lib/util.php:1013 msgid "a few seconds ago" msgstr "ett par sekunder sedan" -#: lib/util.php:954 +#: lib/util.php:1015 msgid "about a minute ago" msgstr "för nån minut sedan" -#: lib/util.php:956 +#: lib/util.php:1017 #, php-format msgid "about %d minutes ago" msgstr "för %d minuter sedan" -#: lib/util.php:958 +#: lib/util.php:1019 msgid "about an hour ago" msgstr "för en timma sedan" -#: lib/util.php:960 +#: lib/util.php:1021 #, php-format msgid "about %d hours ago" msgstr "för %d timmar sedan" -#: lib/util.php:962 +#: lib/util.php:1023 msgid "about a day ago" msgstr "för en dag sedan" -#: lib/util.php:964 +#: lib/util.php:1025 #, php-format msgid "about %d days ago" msgstr "för %d dagar sedan" -#: lib/util.php:966 +#: lib/util.php:1027 msgid "about a month ago" msgstr "för en månad sedan" -#: lib/util.php:968 +#: lib/util.php:1029 #, php-format msgid "about %d months ago" msgstr "för %d månader sedan" -#: lib/util.php:970 +#: lib/util.php:1031 msgid "about a year ago" msgstr "för ett år sedan" diff --git a/locale/te/LC_MESSAGES/statusnet.po b/locale/te/LC_MESSAGES/statusnet.po index 09ede3d86c..f0527f3fa9 100644 --- a/locale/te/LC_MESSAGES/statusnet.po +++ b/locale/te/LC_MESSAGES/statusnet.po @@ -1,5 +1,6 @@ # Translation of StatusNet to Telugu # +# Author@translatewiki.net: Brion # Author@translatewiki.net: Veeven # -- # This file is distributed under the same license as the StatusNet package. @@ -8,78 +9,85 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-02-24 23:49+0000\n" -"PO-Revision-Date: 2010-02-24 23:51:47+0000\n" +"POT-Creation-Date: 2010-03-02 21:02+0000\n" +"PO-Revision-Date: 2010-03-02 21:03:50+0000\n" "Language-Team: Telugu\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r62925); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: te\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: actions/accessadminpanel.php:54 lib/adminpanelaction.php:326 +#. TRANS: Page title +#: actions/accessadminpanel.php:55 #, fuzzy msgid "Access" msgstr "అంగీకరించు" -#: actions/accessadminpanel.php:65 +#. TRANS: Page notice +#: actions/accessadminpanel.php:67 msgid "Site access settings" msgstr "సైటు అందుబాటు అమరికలు" -#: actions/accessadminpanel.php:158 +#. TRANS: Form legend for registration form. +#: actions/accessadminpanel.php:161 msgid "Registration" msgstr "నమోదు" -#: actions/accessadminpanel.php:161 -msgid "Private" -msgstr "అంతరంగికం" - -#: actions/accessadminpanel.php:163 +#. TRANS: Checkbox instructions for admin setting "Private" +#: actions/accessadminpanel.php:165 msgid "Prohibit anonymous users (not logged in) from viewing site?" msgstr "అజ్ఞాత (ప్రవేశించని) వాడుకరులని సైటుని చూడకుండా నిషేధించాలా?" +#. TRANS: Checkbox label for prohibiting anonymous users from viewing site. #: actions/accessadminpanel.php:167 -msgid "Invite only" -msgstr "ఆహ్వానితులకు మాత్రమే" +#, fuzzy +msgctxt "LABEL" +msgid "Private" +msgstr "అంతరంగికం" -#: actions/accessadminpanel.php:169 +#. TRANS: Checkbox instructions for admin setting "Invite only" +#: actions/accessadminpanel.php:174 msgid "Make registration invitation only." msgstr "ఆహ్వానితులు మాత్రమే నమోదు అవ్వగలిగేలా చెయ్యి." -#: actions/accessadminpanel.php:173 +#. TRANS: Checkbox label for configuring site as invite only. +#: actions/accessadminpanel.php:176 +msgid "Invite only" +msgstr "ఆహ్వానితులకు మాత్రమే" + +#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations) +#: actions/accessadminpanel.php:183 +msgid "Disable new registrations." +msgstr "కొత్త నమోదులను అచేతనంచేయి." + +#. TRANS: Checkbox label for disabling new user registrations. +#: actions/accessadminpanel.php:185 #, fuzzy msgid "Closed" msgstr "అటువంటి వాడుకరి లేరు." -#: actions/accessadminpanel.php:175 -msgid "Disable new registrations." -msgstr "కొత్త నమోదులను అచేతనంచేయి." - -#: actions/accessadminpanel.php:189 actions/designadminpanel.php:586 -#: actions/emailsettings.php:195 actions/imsettings.php:163 -#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 -#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 -#: actions/siteadminpanel.php:336 actions/smssettings.php:181 -#: actions/subscriptions.php:208 actions/tagother.php:154 -#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 -#: lib/applicationeditform.php:334 lib/designsettings.php:256 -#: lib/groupeditform.php:202 -msgid "Save" -msgstr "భద్రపరచు" - -#: actions/accessadminpanel.php:189 +#. TRANS: Title / tooltip for button to save access settings in site admin panel +#: actions/accessadminpanel.php:202 #, fuzzy msgid "Save access settings" msgstr "సైటు అమరికలను భద్రపరచు" -#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 -#: actions/showfavorites.php:137 actions/tag.php:51 +#: actions/accessadminpanel.php:203 +#, fuzzy +msgctxt "BUTTON" +msgid "Save" +msgstr "భద్రపరచు" + +#. TRANS: Server error when page not found (404) +#: actions/all.php:64 actions/public.php:98 actions/replies.php:93 +#: actions/showfavorites.php:138 actions/tag.php:52 msgid "No such page" msgstr "అటువంటి పేజీ లేదు" -#: actions/all.php:74 actions/allrss.php:68 +#: actions/all.php:75 actions/allrss.php:68 #: actions/apiaccountupdatedeliverydevice.php:113 #: actions/apiaccountupdateprofile.php:105 #: actions/apiaccountupdateprofilebackgroundimage.php:116 @@ -93,72 +101,82 @@ msgstr "అటువంటి పేజీ లేదు" #: actions/apitimelinehome.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/otp.php:76 -#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154 -#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 -#: actions/showfavorites.php:105 actions/userbyid.php:74 -#: actions/usergroups.php:91 actions/userrss.php:38 actions/xrds.php:71 -#: lib/command.php:163 lib/command.php:302 lib/command.php:355 -#: lib/command.php:401 lib/command.php:462 lib/command.php:518 -#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 +#: actions/hcard.php:67 actions/microsummary.php:62 actions/newmessage.php:116 +#: actions/otp.php:76 actions/remotesubscribe.php:145 +#: actions/remotesubscribe.php:154 actions/replies.php:73 +#: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/xrds.php:71 lib/command.php:163 lib/command.php:302 +#: lib/command.php:355 lib/command.php:401 lib/command.php:462 +#: lib/command.php:518 lib/galleryaction.php:59 lib/mailbox.php:82 +#: lib/profileaction.php:77 msgid "No such user." msgstr "అటువంటి వాడుకరి లేరు." -#: actions/all.php:84 +#. TRANS: Page title. %1$s is user nickname, %2$d is page number +#: actions/all.php:86 #, php-format msgid "%1$s and friends, page %2$d" msgstr "%1$s మరియు మిత్రులు, పేజీ %2$d" -#: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 +#. TRANS: Page title. %1$s is user nickname +#. TRANS: H1 text. %1$s is user nickname +#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" msgstr "%s మరియు మిత్రులు" -#: actions/all.php:99 +#. TRANS: %1$s is user nickname +#: actions/all.php:103 #, php-format msgid "Feed for friends of %s (RSS 1.0)" msgstr "%s యొక్క మిత్రుల ఫీడు (RSS 1.0)" -#: actions/all.php:107 +#. TRANS: %1$s is user nickname +#: actions/all.php:112 #, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "%s యొక్క మిత్రుల ఫీడు (RSS 2.0)" -#: actions/all.php:115 +#. TRANS: %1$s is user nickname +#: actions/all.php:121 #, php-format msgid "Feed for friends of %s (Atom)" msgstr "%s యొక్క మిత్రుల ఫీడు (ఆటమ్)" -#: actions/all.php:127 +#. TRANS: %1$s is user nickname +#: actions/all.php:134 #, php-format msgid "" "This is the timeline for %s and friends but no one has posted anything yet." msgstr "ఇది %s మరియు మిత్రుల కాలరేఖ కానీ ఇంకా ఎవరూ ఏమీ రాయలేదు." -#: actions/all.php:132 +#: actions/all.php:139 #, php-format msgid "" "Try subscribing to more people, [join a group](%%action.groups%%) or post " "something yourself." msgstr "ఇతరులకి చందా చేరండి, [ఏదైనా గుంపులో చేరండి](%%action.groups%%) లేదా మీరే ఏదైనా వ్రాయండి." -#: actions/all.php:134 +#. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@" +#: actions/all.php:142 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) from his profile or [post something to " "his or her attention](%%%%action.newnotice%%%%?status_textarea=%3$s)." msgstr "" -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211 +#: actions/all.php:145 actions/replies.php:210 actions/showstream.php:211 #, 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/all.php:165 +#. TRANS: H1 text +#: actions/all.php:174 msgid "You and friends" msgstr "మీరు మరియు మీ స్నేహితులు" @@ -176,20 +194,20 @@ msgstr "" #: actions/apiaccountverifycredentials.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:128 actions/apigroupcreate.php:136 +#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: actions/apigroupleave.php:141 actions/apigrouplist.php:132 #: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 #: actions/apigroupshow.php:115 actions/apihelptest.php:88 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 -#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184 +#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 #: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:207 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 #, fuzzy msgid "API method not found." msgstr "నిర్ధారణ సంకేతం కనబడలేదు." @@ -223,8 +241,9 @@ msgstr "వాడుకరిని తాజాకరించలేకున #: actions/apiaccountupdateprofilebackgroundimage.php:194 #: actions/apiaccountupdateprofilecolors.php:185 #: 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 +#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 +#: actions/replies.php:80 actions/usergroups.php:98 lib/galleryaction.php:66 +#: lib/profileaction.php:84 msgid "User has no profile." msgstr "వాడుకరికి ప్రొఫైలు లేదు." @@ -249,7 +268,7 @@ msgstr "" #: actions/apiaccountupdateprofilebackgroundimage.php:146 #: actions/apiaccountupdateprofilecolors.php:164 #: actions/apiaccountupdateprofilecolors.php:174 -#: actions/groupdesignsettings.php:287 actions/groupdesignsettings.php:297 +#: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300 #: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 #: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 msgid "Unable to save your design settings." @@ -363,68 +382,68 @@ msgstr "వాడుకరిని తాజాకరించలేకున msgid "Could not find target user." msgstr "లక్ష్యిత వాడుకరిని కనుగొనలేకపోయాం." -#: actions/apigroupcreate.php:164 actions/editgroup.php:182 +#: actions/apigroupcreate.php:166 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:215 #: actions/register.php:205 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "పేరులో చిన్నబడి అక్షరాలు మరియు అంకెలు మాత్రమే ఖాళీలు లేకుండా ఉండాలి." -#: actions/apigroupcreate.php:173 actions/editgroup.php:186 +#: actions/apigroupcreate.php:175 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:238 #: actions/register.php:208 msgid "Nickname already in use. Try another one." msgstr "ఆ పేరుని ఇప్పటికే వాడుతున్నారు. మరోటి ప్రయత్నించండి." -#: actions/apigroupcreate.php:180 actions/editgroup.php:189 +#: actions/apigroupcreate.php:182 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:218 #: actions/register.php:210 msgid "Not a valid nickname." msgstr "సరైన పేరు కాదు." -#: actions/apigroupcreate.php:196 actions/editapplication.php:215 -#: actions/editgroup.php:195 actions/newapplication.php:203 +#: actions/apigroupcreate.php:198 actions/editapplication.php:215 +#: actions/editgroup.php:199 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:217 msgid "Homepage is not a valid URL." msgstr "హోమ్ పేజీ URL సరైనది కాదు." -#: actions/apigroupcreate.php:205 actions/editgroup.php:198 +#: actions/apigroupcreate.php:207 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:225 #: actions/register.php:220 msgid "Full name is too long (max 255 chars)." msgstr "పూర్తి పేరు చాలా పెద్దగా ఉంది (గరిష్ఠంగా 255 అక్షరాలు)." -#: actions/apigroupcreate.php:213 actions/editapplication.php:190 +#: actions/apigroupcreate.php:215 actions/editapplication.php:190 #: actions/newapplication.php:172 #, php-format msgid "Description is too long (max %d chars)." msgstr "వివరణ చాలా పెద్దగా ఉంది (%d అక్షరాలు గరిష్ఠం)." -#: actions/apigroupcreate.php:224 actions/editgroup.php:204 +#: actions/apigroupcreate.php:226 actions/editgroup.php:208 #: actions/newgroup.php:148 actions/profilesettings.php:232 #: actions/register.php:227 msgid "Location is too long (max 255 chars)." msgstr "ప్రాంతం పేరు మరీ పెద్దగా ఉంది (255 అక్షరాలు గరిష్ఠం)." -#: actions/apigroupcreate.php:243 actions/editgroup.php:215 +#: actions/apigroupcreate.php:245 actions/editgroup.php:219 #: actions/newgroup.php:159 #, php-format msgid "Too many aliases! Maximum %d." msgstr "చాలా మారుపేర్లు! %d గరిష్ఠం." -#: actions/apigroupcreate.php:264 actions/editgroup.php:224 +#: actions/apigroupcreate.php:266 actions/editgroup.php:228 #: actions/newgroup.php:168 #, php-format msgid "Invalid alias: \"%s\"" msgstr "తప్పుడు మారుపేరు: \"%s\"" -#: actions/apigroupcreate.php:273 actions/editgroup.php:228 +#: actions/apigroupcreate.php:275 actions/editgroup.php:232 #: actions/newgroup.php:172 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "\"%s\" అన్న మారుపేరుని ఇప్పటికే వాడుతున్నారు. మరొకటి ప్రయత్నించండి." -#: actions/apigroupcreate.php:286 actions/editgroup.php:234 +#: actions/apigroupcreate.php:288 actions/editgroup.php:238 #: actions/newgroup.php:178 msgid "Alias can't be the same as nickname." msgstr "మారుపేరు పేరుతో సమానంగా ఉండకూడదు." @@ -435,15 +454,15 @@ msgstr "మారుపేరు పేరుతో సమానంగా ఉం msgid "Group not found!" msgstr "గుంపు దొరకలేదు!" -#: actions/apigroupjoin.php:110 actions/joingroup.php:90 +#: actions/apigroupjoin.php:110 actions/joingroup.php:100 msgid "You are already a member of that group." msgstr "మీరు ఇప్పటికే ఆ గుంపులో సభ్యులు." -#: actions/apigroupjoin.php:119 actions/joingroup.php:95 lib/command.php:221 +#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:221 msgid "You have been blocked from that group by the admin." msgstr "నిర్వాహకులు ఆ గుంపు నుండి మిమ్మల్ని నిరోధించారు." -#: actions/apigroupjoin.php:138 actions/joingroup.php:124 +#: actions/apigroupjoin.php:138 actions/joingroup.php:134 #, fuzzy, php-format msgid "Could not join user %1$s to group %2$s." msgstr "ఓపెన్ఐడీ ఫారమును సృష్టించలేకపోయాం: %s" @@ -452,7 +471,7 @@ msgstr "ఓపెన్ఐడీ ఫారమును సృష్టించ msgid "You are not a member of this group." msgstr "మీరు ఈ గుంపులో సభ్యులు కాదు." -#: actions/apigroupleave.php:124 actions/leavegroup.php:119 +#: actions/apigroupleave.php:124 actions/leavegroup.php:129 #, fuzzy, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "వాడుకరి %sని %s గుంపు నుండి తొలగించలేకపోయాం." @@ -484,7 +503,7 @@ msgstr "తప్పుడు పరిమాణం." #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 #: actions/deletenotice.php:157 actions/disfavor.php:74 #: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54 -#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupblock.php:66 actions/grouplogo.php:312 #: actions/groupunblock.php:66 actions/imsettings.php:206 #: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 @@ -527,7 +546,7 @@ msgstr "" #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:103 actions/editapplication.php:139 -#: actions/emailsettings.php:256 actions/grouplogo.php:319 +#: actions/emailsettings.php:256 actions/grouplogo.php:322 #: actions/imsettings.php:220 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 #: actions/smssettings.php:248 lib/designsettings.php:304 @@ -550,13 +569,13 @@ msgid "" "give access to your %4$s account to third parties you trust." msgstr "" -#: actions/apioauthauthorize.php:310 lib/action.php:441 +#: actions/apioauthauthorize.php:310 msgid "Account" msgstr "ఖాతా" #: actions/apioauthauthorize.php:313 actions/login.php:230 #: actions/profilesettings.php:106 actions/register.php:424 -#: actions/showgroup.php:236 actions/tagother.php:94 +#: actions/showgroup.php:244 actions/tagother.php:94 #: actions/userauthorization.php:145 lib/groupeditform.php:152 #: lib/userprofile.php:131 msgid "Nickname" @@ -638,12 +657,12 @@ msgid "%1$s updates favorited by %2$s / %2$s." msgstr "%s యొక్క మైక్రోబ్లాగు" #: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:131 actions/userrss.php:90 +#: actions/grouprss.php:138 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "%s కాలరేఖ" -#: actions/apitimelinegroup.php:114 actions/apitimelineuser.php:126 +#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 #: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" @@ -679,7 +698,7 @@ msgstr "%sకి స్పందనలు" msgid "Repeats of %s" msgstr "%s యొక్క పునరావృతాలు" -#: actions/apitimelinetag.php:102 actions/tag.php:66 +#: actions/apitimelinetag.php:102 actions/tag.php:67 #, php-format msgid "Notices tagged with %s" msgstr "" @@ -700,8 +719,7 @@ msgstr "అటువంటి జోడింపు లేదు." #: actions/avatarbynickname.php:59 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/leavegroup.php:76 -#: actions/showgroup.php:121 +#: actions/grouprss.php:91 actions/showgroup.php:121 #, fuzzy msgid "No nickname." msgstr "పేరు లేదు." @@ -714,7 +732,7 @@ msgstr "పరిమాణం లేదు." msgid "Invalid size." msgstr "తప్పుడు పరిమాణం." -#: actions/avatarsettings.php:67 actions/showgroup.php:221 +#: actions/avatarsettings.php:67 actions/showgroup.php:229 #: lib/accountsettingsaction.php:112 msgid "Avatar" msgstr "అవతారం" @@ -731,30 +749,30 @@ msgid "User without matching profile" msgstr "" #: actions/avatarsettings.php:119 actions/avatarsettings.php:197 -#: actions/grouplogo.php:251 +#: actions/grouplogo.php:254 msgid "Avatar settings" msgstr "అవతారపు అమరికలు" #: actions/avatarsettings.php:127 actions/avatarsettings.php:205 -#: actions/grouplogo.php:199 actions/grouplogo.php:259 +#: actions/grouplogo.php:202 actions/grouplogo.php:262 msgid "Original" msgstr "అసలు" #: actions/avatarsettings.php:142 actions/avatarsettings.php:217 -#: actions/grouplogo.php:210 actions/grouplogo.php:271 +#: actions/grouplogo.php:213 actions/grouplogo.php:274 msgid "Preview" msgstr "మునుజూపు" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:637 +#: lib/deleteuserform.php:66 lib/noticelist.php:655 msgid "Delete" msgstr "తొలగించు" -#: actions/avatarsettings.php:166 actions/grouplogo.php:233 +#: actions/avatarsettings.php:166 actions/grouplogo.php:236 msgid "Upload" msgstr "ఎగుమతించు" -#: actions/avatarsettings.php:231 actions/grouplogo.php:286 +#: actions/avatarsettings.php:231 actions/grouplogo.php:289 msgid "Crop" msgstr "కత్తిరించు" @@ -762,7 +780,7 @@ msgstr "కత్తిరించు" msgid "Pick a square area of the image to be your avatar" msgstr "మీ అవతారానికి గానూ ఈ చిత్రం నుండి ఒక చతురస్రపు ప్రదేశాన్ని ఎంచుకోండి" -#: actions/avatarsettings.php:343 actions/grouplogo.php:377 +#: actions/avatarsettings.php:343 actions/grouplogo.php:380 msgid "Lost our file data." msgstr "" @@ -794,22 +812,22 @@ msgid "" msgstr "" #: actions/block.php:143 actions/deleteapplication.php:153 -#: actions/deletenotice.php:145 actions/deleteuser.php:147 +#: actions/deletenotice.php:145 actions/deleteuser.php:150 #: actions/groupblock.php:178 msgid "No" msgstr "కాదు" -#: actions/block.php:143 actions/deleteuser.php:147 +#: actions/block.php:143 actions/deleteuser.php:150 msgid "Do not block this user" msgstr "ఈ వాడుకరిని నిరోధించకు" #: actions/block.php:144 actions/deleteapplication.php:158 -#: actions/deletenotice.php:146 actions/deleteuser.php:148 +#: actions/deletenotice.php:146 actions/deleteuser.php:151 #: actions/groupblock.php:179 lib/repeatform.php:132 msgid "Yes" msgstr "అవును" -#: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:355 lib/blockform.php:80 msgid "Block this user" msgstr "ఈ వాడుకరిని నిరోధించు" @@ -817,40 +835,44 @@ msgstr "ఈ వాడుకరిని నిరోధించు" msgid "Failed to save block information." msgstr "నిరోధపు సమాచారాన్ని భద్రపరచడంలో విఫలమయ్యాం." -#: actions/blockedfromgroup.php:80 actions/editgroup.php:96 -#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/groupblock.php:86 -#: actions/groupbyid.php:83 actions/groupdesignsettings.php:97 -#: actions/grouplogo.php:99 actions/groupmembers.php:83 -#: actions/grouprss.php:98 actions/groupunblock.php:86 -#: actions/joingroup.php:83 actions/leavegroup.php:83 actions/makeadmin.php:86 -#: actions/showgroup.php:137 lib/command.php:212 lib/command.php:260 +#: actions/blockedfromgroup.php:80 actions/blockedfromgroup.php:87 +#: actions/editgroup.php:100 actions/foafgroup.php:44 actions/foafgroup.php:62 +#: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:100 actions/grouplogo.php:102 +#: actions/groupmembers.php:83 actions/groupmembers.php:90 +#: actions/grouprss.php:98 actions/grouprss.php:105 +#: actions/groupunblock.php:86 actions/joingroup.php:82 +#: actions/joingroup.php:93 actions/leavegroup.php:82 +#: actions/leavegroup.php:93 actions/makeadmin.php:86 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:212 +#: lib/command.php:260 msgid "No such group." msgstr "అటువంటి గుంపు లేదు." -#: actions/blockedfromgroup.php:90 +#: actions/blockedfromgroup.php:97 #, fuzzy, php-format msgid "%s blocked profiles" msgstr "వాడుకరికి ప్రొఫైలు లేదు." -#: actions/blockedfromgroup.php:93 +#: actions/blockedfromgroup.php:100 #, fuzzy, php-format msgid "%1$s blocked profiles, page %2$d" msgstr "%s మరియు మిత్రులు" -#: actions/blockedfromgroup.php:108 +#: actions/blockedfromgroup.php:115 msgid "A list of the users blocked from joining this group." msgstr "ఈ గుంపు లోనికి చేరకుండా నిరోధించిన వాడుకరుల యొక్క జాబితా." -#: actions/blockedfromgroup.php:281 +#: actions/blockedfromgroup.php:288 #, fuzzy msgid "Unblock user from group" msgstr "అటువంటి వాడుకరి లేరు." -#: actions/blockedfromgroup.php:313 lib/unblockform.php:69 +#: actions/blockedfromgroup.php:320 lib/unblockform.php:69 msgid "Unblock" msgstr "" -#: actions/blockedfromgroup.php:313 lib/unblockform.php:80 +#: actions/blockedfromgroup.php:320 lib/unblockform.php:80 #, fuzzy msgid "Unblock this user" msgstr "అటువంటి వాడుకరి లేరు." @@ -926,7 +948,7 @@ msgstr "మీరు ఈ ఉపకరణం యొక్క యజమాని #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1197 +#: lib/action.php:1228 msgid "There was a problem with your session token." msgstr "" @@ -951,12 +973,13 @@ msgstr "ఈ ఉపకరణాన్ని తొలగించకు" msgid "Delete this application" msgstr "ఈ ఉపకరణాన్ని తొలగించు" +#. TRANS: Client error message #: 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:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 -#: lib/adminpanelaction.php:72 lib/profileformaction.php:63 +#: lib/adminpanelaction.php:73 lib/profileformaction.php:63 #: lib/settingsaction.php:72 msgid "Not logged in." msgstr "లోనికి ప్రవేశించలేదు." @@ -983,7 +1006,7 @@ msgstr "మీరు నిజంగానే ఈ నోటీసుని త msgid "Do not delete this notice" msgstr "ఈ నోటీసుని తొలగించకు" -#: actions/deletenotice.php:146 lib/noticelist.php:637 +#: actions/deletenotice.php:146 lib/noticelist.php:655 msgid "Delete this notice" msgstr "ఈ నోటీసుని తొలగించు" @@ -999,7 +1022,7 @@ msgstr "మీరు స్థానిక వాడుకరులను మా msgid "Delete user" msgstr "వాడుకరిని తొలగించు" -#: actions/deleteuser.php:135 +#: actions/deleteuser.php:136 msgid "" "Are you sure you want to delete this user? This will clear all data about " "the user from the database, without a backup." @@ -1007,12 +1030,12 @@ msgstr "" "మీరు నిజంగానే ఈ వాడుకరిని తొలగించాలనుకుంటున్నారా? ఇది ఆ వాడుకరి భోగట్టాని డాటాబేసు నుండి తొలగిస్తుంది, " "వెనక్కి తేలేకుండా." -#: actions/deleteuser.php:148 lib/deleteuserform.php:77 +#: actions/deleteuser.php:151 lib/deleteuserform.php:77 msgid "Delete this user" msgstr "ఈ వాడుకరిని తొలగించు" #: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 -#: lib/adminpanelaction.php:316 lib/groupnav.php:119 +#: lib/groupnav.php:119 msgid "Design" msgstr "రూపురేఖలు" @@ -1113,6 +1136,17 @@ msgstr "" msgid "Reset back to default" msgstr "" +#: actions/designadminpanel.php:586 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/tagother.php:154 actions/useradminpanel.php:294 +#: lib/applicationeditform.php:333 lib/applicationeditform.php:334 +#: lib/designsettings.php:256 lib/groupeditform.php:202 +msgid "Save" +msgstr "భద్రపరచు" + #: actions/designadminpanel.php:587 lib/designsettings.php:257 msgid "Save design" msgstr "రూపురేఖలని భద్రపరచు" @@ -1208,29 +1242,29 @@ msgstr "%s గుంపుని మార్చు" msgid "You must be logged in to create a group." msgstr "గుంపుని సృష్టించడానికి మీరు లోనికి ప్రవేశించాలి." -#: actions/editgroup.php:103 actions/editgroup.php:168 -#: actions/groupdesignsettings.php:104 actions/grouplogo.php:106 +#: actions/editgroup.php:107 actions/editgroup.php:172 +#: actions/groupdesignsettings.php:107 actions/grouplogo.php:109 msgid "You must be an admin to edit the group." msgstr "గుంపుని మార్చడానికి మీరు నిర్వాహకులయి ఉండాలి." -#: actions/editgroup.php:154 +#: actions/editgroup.php:158 msgid "Use this form to edit the group." msgstr "గుంపుని మార్చడానికి ఈ ఫారాన్ని ఉపయోగించండి." -#: actions/editgroup.php:201 actions/newgroup.php:145 +#: actions/editgroup.php:205 actions/newgroup.php:145 #, php-format msgid "description is too long (max %d chars)." msgstr "వివరణ చాలా పెద్దదిగా ఉంది (140 అక్షరాలు గరిష్ఠం)." -#: actions/editgroup.php:253 +#: actions/editgroup.php:258 msgid "Could not update group." msgstr "గుంపుని తాజాకరించలేకున్నాం." -#: actions/editgroup.php:259 classes/User_group.php:433 +#: actions/editgroup.php:264 classes/User_group.php:478 msgid "Could not create aliases." msgstr "మారుపేర్లని సృష్టించలేకపోయాం." -#: actions/editgroup.php:269 +#: actions/editgroup.php:280 msgid "Options saved." msgstr "ఎంపికలు భద్రమయ్యాయి." @@ -1560,7 +1594,7 @@ msgstr "వాడుకరిని ఇప్పటికే గుంపున msgid "User is not a member of group." msgstr "వాడుకరి ఈ గుంపులో సభ్యులు కాదు." -#: actions/groupblock.php:136 actions/groupmembers.php:316 +#: actions/groupblock.php:136 actions/groupmembers.php:323 msgid "Block user from group" msgstr "వాడుకరిని గుంపు నుండి నిరోధించు" @@ -1595,88 +1629,88 @@ msgstr "ఐడీ లేదు." msgid "You must be logged in to edit a group." msgstr "గుంపుని మార్చడానికి మీరు ప్రవేశించి ఉండాలి." -#: actions/groupdesignsettings.php:141 +#: actions/groupdesignsettings.php:144 msgid "Group design" msgstr "గుంపు అలంకారం" -#: actions/groupdesignsettings.php:152 +#: actions/groupdesignsettings.php:155 msgid "" "Customize the way your group looks with a background image and a colour " "palette of your choice." msgstr "" -#: actions/groupdesignsettings.php:263 actions/userdesignsettings.php:186 +#: actions/groupdesignsettings.php:266 actions/userdesignsettings.php:186 #: lib/designsettings.php:391 lib/designsettings.php:413 msgid "Couldn't update your design." msgstr "మీ రూపురేఖలని తాజాకరించలేకపోయాం." -#: actions/groupdesignsettings.php:308 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231 #, fuzzy msgid "Design preferences saved." msgstr "అభిరుచులు భద్రమయ్యాయి." -#: actions/grouplogo.php:139 actions/grouplogo.php:192 +#: actions/grouplogo.php:142 actions/grouplogo.php:195 msgid "Group logo" msgstr "గుంపు చిహ్నం" -#: actions/grouplogo.php:150 +#: actions/grouplogo.php:153 #, php-format msgid "" "You can upload a logo image for your group. The maximum file size is %s." msgstr "మీ గుంపుకి మీరు ఒక చిహ్నాన్ని ఎక్కించవచ్చు. ఆ ఫైలు యొక్క గరిష్ఠ పరిమాణం %s." -#: actions/grouplogo.php:178 +#: actions/grouplogo.php:181 #, fuzzy msgid "User without matching profile." msgstr "వాడుకరికి ప్రొఫైలు లేదు." -#: actions/grouplogo.php:362 +#: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." msgstr "చిహ్నంగా ఉండాల్సిన చతురస్త్ర ప్రదేశాన్ని బొమ్మ నుండి ఎంచుకోండి." -#: actions/grouplogo.php:396 +#: actions/grouplogo.php:399 msgid "Logo updated." msgstr "చిహ్నాన్ని తాజాకరించాం." -#: actions/grouplogo.php:398 +#: actions/grouplogo.php:401 msgid "Failed updating logo." msgstr "చిహ్నపు తాజాకరణ విఫలమైంది." -#: actions/groupmembers.php:93 lib/groupnav.php:92 +#: actions/groupmembers.php:100 lib/groupnav.php:92 #, php-format msgid "%s group members" msgstr "%s గుంపు సభ్యులు" -#: actions/groupmembers.php:96 +#: actions/groupmembers.php:103 #, php-format msgid "%1$s group members, page %2$d" msgstr "%1$s గుంపు సభ్యులు, పేజీ %2$d" -#: actions/groupmembers.php:111 +#: actions/groupmembers.php:118 msgid "A list of the users in this group." msgstr "ఈ గుంపులో వాడుకరులు జాబితా." -#: actions/groupmembers.php:175 lib/action.php:448 lib/groupnav.php:107 +#: actions/groupmembers.php:182 lib/groupnav.php:107 msgid "Admin" msgstr "" -#: actions/groupmembers.php:348 lib/blockform.php:69 +#: actions/groupmembers.php:355 lib/blockform.php:69 msgid "Block" msgstr "నిరోధించు" -#: actions/groupmembers.php:443 +#: actions/groupmembers.php:450 msgid "Make user an admin of the group" msgstr "వాడుకరిని గుంపుకి ఒక నిర్వాహకునిగా చేయి" -#: actions/groupmembers.php:475 +#: actions/groupmembers.php:482 msgid "Make Admin" msgstr "నిర్వాహకున్ని చేయి" -#: actions/groupmembers.php:475 +#: actions/groupmembers.php:482 msgid "Make this user an admin" msgstr "ఈ వాడుకరిని నిర్వాహకున్ని చేయి" -#: actions/grouprss.php:133 +#: actions/grouprss.php:140 #, fuzzy, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "%s యొక్క మైక్రోబ్లాగు" @@ -1921,16 +1955,19 @@ msgstr "వ్యక్తిగత సందేశం" msgid "Optionally add a personal message to the invitation." msgstr "ఐచ్ఛికంగా ఆహ్వానానికి వ్యక్తిగత సందేశం చేర్చండి." -#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:236 +#. TRANS: Send button for inviting friends +#: actions/invite.php:198 +#, fuzzy +msgctxt "BUTTON" msgid "Send" msgstr "పంపించు" -#: actions/invite.php:226 +#: actions/invite.php:227 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "%2$sలో చేరమని %1$s మిమ్మల్ని ఆహ్వానించారు" -#: actions/invite.php:228 +#: actions/invite.php:229 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -1965,7 +2002,12 @@ msgstr "" msgid "You must be logged in to join a group." msgstr "గుంపుల్లో చేరడానికి మీరు ప్రవేశించి ఉండాలి." -#: actions/joingroup.php:131 +#: actions/joingroup.php:88 actions/leavegroup.php:88 +#, fuzzy +msgid "No nickname or ID." +msgstr "పేరు లేదు." + +#: actions/joingroup.php:141 #, php-format msgid "%1$s joined group %2$s" msgstr "%1$s %2$s గుంపులో చేరారు" @@ -1974,11 +2016,11 @@ msgstr "%1$s %2$s గుంపులో చేరారు" msgid "You must be logged in to leave a group." msgstr "గుంపుని వదిలివెళ్ళడానికి మీరు ప్రవేశించి ఉండాలి." -#: actions/leavegroup.php:90 lib/command.php:265 +#: actions/leavegroup.php:100 lib/command.php:265 msgid "You are not a member of that group." msgstr "మీరు ఆ గుంపులో సభ్యులు కాదు." -#: actions/leavegroup.php:127 +#: actions/leavegroup.php:137 #, php-format msgid "%1$s left group %2$s" msgstr "%2$s గుంపు నుండి %1$s వైదొలిగారు" @@ -1995,8 +2037,7 @@ msgstr "వాడుకరిపేరు లేదా సంకేతపదం msgid "Error setting user. You are probably not authorized." msgstr "" -#: actions/login.php:188 actions/login.php:241 lib/action.php:466 -#: lib/logingroupnav.php:79 +#: actions/login.php:188 actions/login.php:241 lib/logingroupnav.php:79 msgid "Login" msgstr "ప్రవేశించండి" @@ -2190,9 +2231,8 @@ msgid "You must be logged in to list your applications." msgstr "మీ ఉపకరణాలను చూడడానికి మీరు ప్రవేశించి ఉండాలి." #: actions/oauthappssettings.php:74 -#, fuzzy msgid "OAuth applications" -msgstr "ఇతర ఎంపికలు" +msgstr "OAuth ఉపకరణాలు" #: actions/oauthappssettings.php:85 msgid "Applications you have registered" @@ -2245,8 +2285,8 @@ msgstr "విషయ రకం " msgid "Only " msgstr "మాత్రమే " -#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 -#: lib/api.php:1068 lib/api.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 +#: lib/apiaction.php:1068 lib/apiaction.php:1177 msgid "Not a supported data format." msgstr "" @@ -2390,7 +2430,7 @@ msgstr "కొత్త సంకేతపదాన్ని భద్రపర msgid "Password saved." msgstr "సంకేతపదం భద్రమయ్యింది." -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:331 +#: actions/pathsadminpanel.php:59 msgid "Paths" msgstr "" @@ -2423,7 +2463,6 @@ msgid "Invalid SSL server. The maximum length is 255 characters." msgstr "" #: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58 -#: lib/adminpanelaction.php:311 msgid "Site" msgstr "సైటు" @@ -2601,7 +2640,7 @@ msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1-64 చిన్నబడి అక్షరాలు లేదా అంకెలు, విరామచిహ్నాలు మరియు ఖాళీలు తప్ప" #: actions/profilesettings.php:111 actions/register.php:448 -#: actions/showgroup.php:247 actions/tagother.php:104 +#: actions/showgroup.php:255 actions/tagother.php:104 #: lib/groupeditform.php:157 lib/userprofile.php:149 msgid "Full name" msgstr "పూర్తి పేరు" @@ -2629,7 +2668,7 @@ msgid "Bio" msgstr "స్వపరిచయం" #: actions/profilesettings.php:132 actions/register.php:471 -#: actions/showgroup.php:256 actions/tagother.php:112 +#: actions/showgroup.php:264 actions/tagother.php:112 #: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:164 msgid "Location" @@ -2710,7 +2749,8 @@ msgstr "ప్రొఫైలుని భద్రపరచలేకున్ msgid "Couldn't save tags." msgstr "ట్యాగులని భద్రపరచలేకున్నాం." -#: actions/profilesettings.php:391 lib/adminpanelaction.php:137 +#. TRANS: Message after successful saving of administrative settings. +#: actions/profilesettings.php:391 lib/adminpanelaction.php:141 msgid "Settings saved." msgstr "అమరికలు భద్రమయ్యాయి." @@ -2723,48 +2763,48 @@ msgstr "" msgid "Could not retrieve public stream." msgstr "" -#: actions/public.php:129 +#: actions/public.php:130 #, php-format msgid "Public timeline, page %d" msgstr "ప్రజా కాలరేఖ, పేజీ %d" -#: actions/public.php:131 lib/publicgroupnav.php:79 +#: actions/public.php:132 lib/publicgroupnav.php:79 msgid "Public timeline" msgstr "ప్రజా కాలరేఖ" -#: actions/public.php:159 +#: actions/public.php:160 #, fuzzy msgid "Public Stream Feed (RSS 1.0)" msgstr "ప్రజా వాహిని ఫీడు" -#: actions/public.php:163 +#: actions/public.php:164 #, fuzzy msgid "Public Stream Feed (RSS 2.0)" msgstr "ప్రజా వాహిని ఫీడు" -#: actions/public.php:167 +#: actions/public.php:168 #, fuzzy msgid "Public Stream Feed (Atom)" msgstr "ప్రజా వాహిని ఫీడు" -#: actions/public.php:187 +#: actions/public.php:188 #, php-format msgid "" "This is the public timeline for %%site.name%% but no one has posted anything " "yet." msgstr "" -#: actions/public.php:190 +#: actions/public.php:191 msgid "Be the first to post!" msgstr "" -#: actions/public.php:194 +#: actions/public.php:195 #, php-format msgid "" "Why not [register an account](%%action.register%%) and be the first to post!" msgstr "" -#: actions/public.php:241 +#: actions/public.php:242 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2773,7 +2813,7 @@ msgid "" "friends, family, and colleagues! ([Read more](%%doc.help%%))" msgstr "" -#: actions/public.php:246 +#: actions/public.php:247 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2946,8 +2986,7 @@ msgstr "క్షమించండి, తప్పు ఆహ్వాన స msgid "Registration successful" msgstr "నమోదు విజయవంతం" -#: actions/register.php:114 actions/register.php:503 lib/action.php:463 -#: lib/logingroupnav.php:85 +#: actions/register.php:114 actions/register.php:503 lib/logingroupnav.php:85 msgid "Register" msgstr "నమోదు" @@ -3122,7 +3161,7 @@ msgstr "ఈ లైసెన్సుకి అంగీకరించకపో msgid "You already repeated that notice." msgstr "మీరు ఇప్పటికే ఆ వాడుకరిని నిరోధించారు." -#: actions/repeat.php:114 lib/noticelist.php:656 +#: actions/repeat.php:114 lib/noticelist.php:674 #, fuzzy msgid "Repeated" msgstr "సృష్టితం" @@ -3132,40 +3171,40 @@ msgstr "సృష్టితం" msgid "Repeated!" msgstr "సృష్టితం" -#: actions/replies.php:125 actions/repliesrss.php:68 +#: actions/replies.php:126 actions/repliesrss.php:68 #: lib/personalgroupnav.php:105 #, php-format msgid "Replies to %s" msgstr "%sకి స్పందనలు" -#: actions/replies.php:127 +#: actions/replies.php:128 #, fuzzy, php-format msgid "Replies to %1$s, page %2$d" msgstr "%sకి స్పందనలు" -#: actions/replies.php:144 +#: actions/replies.php:145 #, fuzzy, php-format msgid "Replies feed for %s (RSS 1.0)" msgstr "%s యొక్క సందేశముల ఫీడు" -#: actions/replies.php:151 +#: actions/replies.php:152 #, fuzzy, php-format msgid "Replies feed for %s (RSS 2.0)" msgstr "%s యొక్క సందేశముల ఫీడు" -#: actions/replies.php:158 +#: actions/replies.php:159 #, fuzzy, php-format msgid "Replies feed for %s (Atom)" msgstr "%s యొక్క సందేశముల ఫీడు" -#: actions/replies.php:198 +#: actions/replies.php:199 #, fuzzy, php-format msgid "" "This is the timeline showing replies to %1$s but %2$s hasn't received a " "notice to his attention yet." msgstr "ఇది %s మరియు మిత్రుల కాలరేఖ కానీ ఇంకా ఎవరూ ఏమీ రాయలేదు." -#: actions/replies.php:203 +#: actions/replies.php:204 #, php-format msgid "" "You can engage other users in a conversation, subscribe to more people or " @@ -3174,7 +3213,7 @@ msgstr "" "మీరు ఇతర వాడుకరులతో సంభాషించవచ్చు, మరింత మంది వ్యక్తులకు చందాచేరవచ్చు లేదా [గుంపులలో చేరవచ్చు]" "(%%action.groups%%)." -#: actions/replies.php:205 +#: actions/replies.php:206 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) or [post something to his or her " @@ -3201,7 +3240,6 @@ msgid "User is already sandboxed." msgstr "వాడుకరిని ఇప్పటికే గుంపునుండి నిరోధించారు." #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:336 msgid "Sessions" msgstr "" @@ -3227,7 +3265,7 @@ msgid "Turn on debugging output for sessions." msgstr "" #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/useradminpanel.php:293 +#: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "సైటు అమరికలను భద్రపరచు" @@ -3258,7 +3296,7 @@ msgstr "సంస్ధ" msgid "Description" msgstr "వివరణ" -#: actions/showapplication.php:192 actions/showgroup.php:429 +#: actions/showapplication.php:192 actions/showgroup.php:437 #: lib/profileaction.php:174 msgid "Statistics" msgstr "గణాంకాలు" @@ -3321,35 +3359,35 @@ msgstr "%1$sకి ఇష్టమైన నోటీసులు, పేజీ msgid "Could not retrieve favorite notices." msgstr "" -#: actions/showfavorites.php:170 +#: actions/showfavorites.php:171 #, fuzzy, php-format msgid "Feed for favorites of %s (RSS 1.0)" msgstr "%s యొక్క మిత్రుల ఫీడు" -#: actions/showfavorites.php:177 +#: actions/showfavorites.php:178 #, fuzzy, php-format msgid "Feed for favorites of %s (RSS 2.0)" msgstr "%s యొక్క మిత్రుల ఫీడు" -#: actions/showfavorites.php:184 +#: actions/showfavorites.php:185 #, php-format msgid "Feed for favorites of %s (Atom)" msgstr "%s యొక్క ఇష్టాంశాల ఫీడు (ఆటమ్)" -#: actions/showfavorites.php:205 +#: actions/showfavorites.php:206 msgid "" "You haven't chosen any favorite notices yet. Click the fave button on " "notices you like to bookmark them for later or shed a spotlight on them." msgstr "" -#: actions/showfavorites.php:207 +#: actions/showfavorites.php:208 #, 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:211 +#: actions/showfavorites.php:212 #, php-format msgid "" "%s hasn't added any notices to his favorites yet. Why not [register an " @@ -3357,7 +3395,7 @@ msgid "" "would add to their favorites :)" msgstr "" -#: actions/showfavorites.php:242 +#: actions/showfavorites.php:243 msgid "This is a way to share what you like." msgstr "మీకు నచ్చినవి పంచుకోడానికి ఇదొక మార్గం." @@ -3371,67 +3409,67 @@ msgstr "%s గుంపు" msgid "%1$s group, page %2$d" msgstr "%1$s గుంపు సభ్యులు, పేజీ %2$d" -#: actions/showgroup.php:218 +#: actions/showgroup.php:226 msgid "Group profile" msgstr "గుంపు ప్రొఫైలు" -#: actions/showgroup.php:263 actions/tagother.php:118 +#: actions/showgroup.php:271 actions/tagother.php:118 #: actions/userauthorization.php:175 lib/userprofile.php:177 msgid "URL" msgstr "" -#: actions/showgroup.php:274 actions/tagother.php:128 +#: actions/showgroup.php:282 actions/tagother.php:128 #: actions/userauthorization.php:187 lib/userprofile.php:194 msgid "Note" msgstr "గమనిక" -#: actions/showgroup.php:284 lib/groupeditform.php:184 +#: actions/showgroup.php:292 lib/groupeditform.php:184 msgid "Aliases" msgstr "మారుపేర్లు" -#: actions/showgroup.php:293 +#: actions/showgroup.php:301 msgid "Group actions" msgstr "గుంపు చర్యలు" -#: actions/showgroup.php:328 +#: actions/showgroup.php:336 #, fuzzy, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "%s యొక్క సందేశముల ఫీడు" -#: actions/showgroup.php:334 +#: actions/showgroup.php:342 #, fuzzy, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "%s యొక్క సందేశముల ఫీడు" -#: actions/showgroup.php:340 +#: actions/showgroup.php:348 #, fuzzy, php-format msgid "Notice feed for %s group (Atom)" msgstr "%s యొక్క సందేశముల ఫీడు" -#: actions/showgroup.php:345 +#: actions/showgroup.php:353 #, php-format msgid "FOAF for %s group" msgstr "%s గుంపు" -#: actions/showgroup.php:381 actions/showgroup.php:438 lib/groupnav.php:91 +#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 msgid "Members" msgstr "సభ్యులు" -#: actions/showgroup.php:386 lib/profileaction.php:117 +#: actions/showgroup.php:394 lib/profileaction.php:117 #: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(ఏమీలేదు)" -#: actions/showgroup.php:392 +#: actions/showgroup.php:400 msgid "All members" msgstr "అందరు సభ్యులూ" -#: actions/showgroup.php:432 +#: actions/showgroup.php:440 msgid "Created" msgstr "సృష్టితం" -#: actions/showgroup.php:448 +#: actions/showgroup.php:456 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3441,7 +3479,7 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showgroup.php:454 +#: actions/showgroup.php:462 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3450,7 +3488,7 @@ msgid "" "their life and interests. " msgstr "" -#: actions/showgroup.php:482 +#: actions/showgroup.php:490 msgid "Admins" msgstr "నిర్వాహకులు" @@ -3905,22 +3943,22 @@ msgstr "జాబర్" msgid "SMS" msgstr "" -#: actions/tag.php:68 +#: actions/tag.php:69 #, fuzzy, php-format msgid "Notices tagged with %1$s, page %2$d" msgstr "%s యొక్క మైక్రోబ్లాగు" -#: actions/tag.php:86 +#: actions/tag.php:87 #, fuzzy, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "%s యొక్క సందేశముల ఫీడు" -#: actions/tag.php:92 +#: actions/tag.php:93 #, fuzzy, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "%s యొక్క సందేశముల ఫీడు" -#: actions/tag.php:98 +#: actions/tag.php:99 #, fuzzy, php-format msgid "Notice feed for tag %s (Atom)" msgstr "%s యొక్క సందేశముల ఫీడు" @@ -3971,7 +4009,7 @@ msgstr "" msgid "No such tag." msgstr "అటువంటి ట్యాగు లేదు." -#: actions/twitapitrends.php:87 +#: actions/twitapitrends.php:85 msgid "API method under construction." msgstr "" @@ -4004,71 +4042,73 @@ msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" -#: actions/useradminpanel.php:58 lib/adminpanelaction.php:321 -#: lib/personalgroupnav.php:115 +#. TRANS: User admin panel title +#: actions/useradminpanel.php:59 +#, fuzzy +msgctxt "TITLE" msgid "User" msgstr "వాడుకరి" -#: actions/useradminpanel.php:69 +#: actions/useradminpanel.php:70 msgid "User settings for this StatusNet site." msgstr "ఈ స్టేటస్‌నెట్ సైటుకి వాడుకరి అమరికలు." -#: actions/useradminpanel.php:148 +#: actions/useradminpanel.php:149 msgid "Invalid bio limit. Must be numeric." msgstr "" -#: actions/useradminpanel.php:154 +#: actions/useradminpanel.php:155 msgid "Invalid welcome text. Max length is 255 characters." msgstr "" -#: actions/useradminpanel.php:164 +#: actions/useradminpanel.php:165 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" -#: actions/useradminpanel.php:217 lib/accountsettingsaction.php:108 +#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "ప్రొఫైలు" -#: actions/useradminpanel.php:221 +#: actions/useradminpanel.php:222 msgid "Bio Limit" msgstr "స్వపరిచయ పరిమితి" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:223 msgid "Maximum length of a profile bio in characters." msgstr "స్వపరిచయం యొక్క గరిష్ఠ పొడవు, అక్షరాలలో." -#: actions/useradminpanel.php:230 +#: actions/useradminpanel.php:231 msgid "New users" msgstr "కొత్త వాడుకరులు" -#: actions/useradminpanel.php:234 +#: actions/useradminpanel.php:235 msgid "New user welcome" msgstr "కొత్త వాడుకరి స్వాగతం" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:236 msgid "Welcome text for new users (Max 255 chars)." msgstr "కొత్త వాడుకరులకై స్వాగత సందేశం (255 అక్షరాలు గరిష్ఠం)." -#: actions/useradminpanel.php:240 +#: actions/useradminpanel.php:241 msgid "Default subscription" msgstr "అప్రమేయ చందా" -#: actions/useradminpanel.php:241 +#: actions/useradminpanel.php:242 #, fuzzy msgid "Automatically subscribe new users to this user." msgstr "ఉపయోగించాల్సిన యాంత్రిక కుదింపు సేవ." -#: actions/useradminpanel.php:250 +#: actions/useradminpanel.php:251 msgid "Invitations" msgstr "ఆహ్వానాలు" -#: actions/useradminpanel.php:255 +#: actions/useradminpanel.php:256 msgid "Invitations enabled" msgstr "ఆహ్వానాలని చేతనంచేసాం" -#: actions/useradminpanel.php:257 +#: actions/useradminpanel.php:258 msgid "Whether to allow users to invite new users." msgstr "వాడుకరులను కొత్త వారిని ఆహ్వానించడానికి అనుమతించాలా వద్దా." @@ -4241,7 +4281,7 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:196 lib/action.php:747 +#: actions/version.php:196 lib/action.php:778 msgid "Version" msgstr "సంచిక" @@ -4278,6 +4318,11 @@ msgstr "గుంపులో భాగం కాదు." msgid "Group leave failed." msgstr "గుంపు నుండి వైదొలగడం విఫలమైంది." +#: classes/Local_group.php:41 +#, fuzzy +msgid "Could not update local group." +msgstr "గుంపుని తాజాకరించలేకున్నాం." + #: classes/Login_token.php:76 #, fuzzy, php-format msgid "Could not create login token for %s" @@ -4295,46 +4340,46 @@ msgstr "" msgid "Could not update message with new URI." msgstr "" -#: classes/Notice.php:157 +#: classes/Notice.php:172 #, php-format msgid "DB error inserting hashtag: %s" msgstr "" -#: classes/Notice.php:222 +#: classes/Notice.php:239 #, fuzzy msgid "Problem saving notice. Too long." msgstr "సందేశాన్ని భద్రపరచడంలో పొరపాటు." -#: classes/Notice.php:226 +#: classes/Notice.php:243 #, fuzzy msgid "Problem saving notice. Unknown user." msgstr "సందేశాన్ని భద్రపరచడంలో పొరపాటు." -#: classes/Notice.php:231 +#: classes/Notice.php:248 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: classes/Notice.php:237 +#: classes/Notice.php:254 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." msgstr "" -#: classes/Notice.php:243 +#: classes/Notice.php:260 msgid "You are banned from posting notices on this site." msgstr "ఈ సైటులో నోటీసులు రాయడం నుండి మిమ్మల్ని నిషేధించారు." -#: classes/Notice.php:309 classes/Notice.php:335 +#: classes/Notice.php:326 classes/Notice.php:352 msgid "Problem saving notice." msgstr "సందేశాన్ని భద్రపరచడంలో పొరపాటు." -#: classes/Notice.php:882 +#: classes/Notice.php:911 #, fuzzy msgid "Problem saving group inbox." msgstr "సందేశాన్ని భద్రపరచడంలో పొరపాటు." -#: classes/Notice.php:1407 +#: classes/Notice.php:1442 #, fuzzy, php-format msgid "RT @%1$s %2$s" msgstr "%1$s (%2$s)" @@ -4365,19 +4410,29 @@ msgstr "చందాని తొలగించలేకపోయాం." msgid "Couldn't delete subscription." msgstr "చందాని తొలగించలేకపోయాం." -#: classes/User.php:372 +#: classes/User.php:373 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "@%2$s, %1$sకి స్వాగతం!" -#: classes/User_group.php:423 +#: classes/User_group.php:462 msgid "Could not create group." msgstr "గుంపుని సృష్టించలేకపోయాం." -#: classes/User_group.php:452 +#: classes/User_group.php:471 +#, fuzzy +msgid "Could not set group URI." +msgstr "గుంపు సభ్యత్వాన్ని అమర్చలేకపోయాం." + +#: classes/User_group.php:492 msgid "Could not set group membership." msgstr "గుంపు సభ్యత్వాన్ని అమర్చలేకపోయాం." +#: classes/User_group.php:506 +#, fuzzy +msgid "Could not save local group info." +msgstr "చందాని సృష్టించలేకపోయాం." + #: lib/accountsettingsaction.php:108 msgid "Change your profile settings" msgstr "" @@ -4420,122 +4475,190 @@ msgstr "" msgid "Primary site navigation" msgstr "" +#. TRANS: Tooltip for main menu option "Personal" #: lib/action.php:439 -msgid "Home" -msgstr "ముంగిలి" - -#: lib/action.php:439 +msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:441 +#: lib/action.php:442 +#, fuzzy +msgctxt "MENU" +msgid "Personal" +msgstr "వ్యక్తిగత" + +#. TRANS: Tooltip for main menu option "Account" +#: lib/action.php:444 +#, fuzzy +msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "మీ ఈమెయిలు, అవతారం, సంకేతపదం మరియు ప్రౌఫైళ్ళను మార్చుకోండి" -#: lib/action.php:444 +#: lib/action.php:447 +#, fuzzy +msgctxt "MENU" +msgid "Account" +msgstr "ఖాతా" + +#. TRANS: Tooltip for main menu option "Services" +#: lib/action.php:450 +#, fuzzy +msgctxt "TOOLTIP" +msgid "Connect to services" +msgstr "అనుసంధానాలు" + +#: lib/action.php:453 +#, fuzzy +msgctxt "MENU" msgid "Connect" msgstr "అనుసంధానించు" -#: lib/action.php:444 -msgid "Connect to services" -msgstr "" - -#: lib/action.php:448 +#. TRANS: Tooltip for menu option "Admin" +#: lib/action.php:457 #, fuzzy +msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "చందాలు" -#: lib/action.php:452 lib/subgroupnav.php:105 +#: lib/action.php:460 +#, fuzzy +msgctxt "MENU" +msgid "Admin" +msgstr "నిర్వాహకులు" + +#. TRANS: Tooltip for main menu option "Invite" +#: lib/action.php:464 +#, fuzzy, php-format +msgctxt "TOOLTIP" +msgid "Invite friends and colleagues to join you on %s" +msgstr "ఈ ఫారాన్ని ఉపయోగించి మీ స్నేహితులను మరియు సహోద్యోగులను ఈ సేవను వినియోగించుకోమని ఆహ్వానించండి." + +#: lib/action.php:467 +#, fuzzy +msgctxt "MENU" msgid "Invite" msgstr "ఆహ్వానించు" -#: lib/action.php:453 lib/subgroupnav.php:106 -#, php-format -msgid "Invite friends and colleagues to join you on %s" -msgstr "" - -#: lib/action.php:458 -msgid "Logout" -msgstr "నిష్క్రమించు" - -#: lib/action.php:458 +#. TRANS: Tooltip for main menu option "Logout" +#: lib/action.php:473 +#, fuzzy +msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "సైటు నుండి నిష్క్రమించు" -#: lib/action.php:463 +#: lib/action.php:476 +#, fuzzy +msgctxt "MENU" +msgid "Logout" +msgstr "నిష్క్రమించు" + +#. TRANS: Tooltip for main menu option "Register" +#: lib/action.php:481 +#, fuzzy +msgctxt "TOOLTIP" msgid "Create an account" msgstr "కొత్త ఖాతా సృష్టించు" -#: lib/action.php:466 +#: lib/action.php:484 +#, fuzzy +msgctxt "MENU" +msgid "Register" +msgstr "నమోదు" + +#. TRANS: Tooltip for main menu option "Login" +#: lib/action.php:487 +#, fuzzy +msgctxt "TOOLTIP" msgid "Login to the site" msgstr "సైటులోని ప్రవేశించు" -#: lib/action.php:469 lib/action.php:732 -msgid "Help" -msgstr "సహాయం" +#: lib/action.php:490 +#, fuzzy +msgctxt "MENU" +msgid "Login" +msgstr "ప్రవేశించండి" -#: lib/action.php:469 +#. TRANS: Tooltip for main menu option "Help" +#: lib/action.php:493 +#, fuzzy +msgctxt "TOOLTIP" msgid "Help me!" msgstr "సహాయం కావాలి!" -#: lib/action.php:472 lib/searchaction.php:127 +#: lib/action.php:496 +#, fuzzy +msgctxt "MENU" +msgid "Help" +msgstr "సహాయం" + +#. TRANS: Tooltip for main menu option "Search" +#: lib/action.php:499 +#, fuzzy +msgctxt "TOOLTIP" +msgid "Search for people or text" +msgstr "మరిన్ని గుంపులకై వెతుకు" + +#: lib/action.php:502 +#, fuzzy +msgctxt "MENU" msgid "Search" msgstr "వెతుకు" -#: lib/action.php:472 -msgid "Search for people or text" -msgstr "" - -#: lib/action.php:493 +#. TRANS: DT element for site notice. String is hidden in default CSS. +#: lib/action.php:524 msgid "Site notice" msgstr "సైటు గమనిక" -#: lib/action.php:559 +#: lib/action.php:590 msgid "Local views" msgstr "స్థానిక వీక్షణలు" -#: lib/action.php:625 +#: lib/action.php:656 msgid "Page notice" msgstr "పేజీ గమనిక" -#: lib/action.php:727 +#: lib/action.php:758 #, fuzzy msgid "Secondary site navigation" msgstr "చందాలు" -#: lib/action.php:734 +#: lib/action.php:763 +msgid "Help" +msgstr "సహాయం" + +#: lib/action.php:765 msgid "About" msgstr "గురించి" -#: lib/action.php:736 +#: lib/action.php:767 msgid "FAQ" msgstr "ప్రశ్నలు" -#: lib/action.php:740 +#: lib/action.php:771 msgid "TOS" msgstr "సేవా నియమాలు" -#: lib/action.php:743 +#: lib/action.php:774 msgid "Privacy" msgstr "అంతరంగికత" -#: lib/action.php:745 +#: lib/action.php:776 msgid "Source" msgstr "మూలము" -#: lib/action.php:749 +#: lib/action.php:780 msgid "Contact" msgstr "సంప్రదించు" -#: lib/action.php:751 +#: lib/action.php:782 msgid "Badge" msgstr "బాడ్జి" -#: lib/action.php:779 +#: lib/action.php:810 msgid "StatusNet software license" msgstr "స్టేటస్‌నెట్ మృదూపకరణ లైసెన్సు" -#: lib/action.php:782 +#: lib/action.php:813 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4544,12 +4667,12 @@ msgstr "" "**%%site.name%%** అనేది [%%site.broughtby%%](%%site.broughtbyurl%%) వారు " "అందిస్తున్న మైక్రో బ్లాగింగు సదుపాయం. " -#: lib/action.php:784 +#: lib/action.php:815 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** అనేది మైక్రో బ్లాగింగు సదుపాయం." -#: lib/action.php:786 +#: lib/action.php:817 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4560,109 +4683,161 @@ msgstr "" "html) కింద లభ్యమయ్యే [స్టేటస్‌నెట్](http://status.net/) మైక్రోబ్లాగింగ్ ఉపకరణం సంచిక %s " "పై నడుస్తుంది." -#: lib/action.php:801 +#: lib/action.php:832 #, fuzzy msgid "Site content license" msgstr "కొత్త సందేశం" -#: lib/action.php:806 +#: lib/action.php:837 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:811 +#: lib/action.php:842 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:814 +#: lib/action.php:845 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" -#: lib/action.php:827 +#: lib/action.php:858 msgid "All " msgstr "అన్నీ " -#: lib/action.php:833 +#: lib/action.php:864 msgid "license." msgstr "" -#: lib/action.php:1132 +#: lib/action.php:1163 msgid "Pagination" msgstr "పేజీకరణ" -#: lib/action.php:1141 +#: lib/action.php:1172 msgid "After" msgstr "తర్వాత" -#: lib/action.php:1149 +#: lib/action.php:1180 msgid "Before" msgstr "ఇంతక్రితం" -#: lib/activity.php:382 +#: lib/activity.php:449 msgid "Can't handle remote content yet." msgstr "" -#: lib/activity.php:410 +#: lib/activity.php:477 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activity.php:414 +#: lib/activity.php:481 msgid "Can't handle embedded Base64 content yet." msgstr "" -#: lib/adminpanelaction.php:96 +#. TRANS: Client error message +#: lib/adminpanelaction.php:98 msgid "You cannot make changes to this site." msgstr "ఈ సైటుకి మీరు మార్పులు చేయలేరు." -#: lib/adminpanelaction.php:107 +#. TRANS: Client error message +#: lib/adminpanelaction.php:110 msgid "Changes to that panel are not allowed." msgstr "" -#: lib/adminpanelaction.php:206 +#. TRANS: Client error message +#: lib/adminpanelaction.php:211 msgid "showForm() not implemented." msgstr "" -#: lib/adminpanelaction.php:235 +#. TRANS: Client error message +#: lib/adminpanelaction.php:241 msgid "saveSettings() not implemented." msgstr "" -#: lib/adminpanelaction.php:258 +#. TRANS: Client error message +#: lib/adminpanelaction.php:265 msgid "Unable to delete design setting." msgstr "" -#: lib/adminpanelaction.php:312 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:330 msgid "Basic site configuration" msgstr "ప్రాథమిక సైటు స్వరూపణం" -#: lib/adminpanelaction.php:317 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:332 +#, fuzzy +msgctxt "MENU" +msgid "Site" +msgstr "సైటు" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:338 msgid "Design configuration" msgstr "రూపకల్పన స్వరూపణం" -#: lib/adminpanelaction.php:322 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:340 +#, fuzzy +msgctxt "MENU" +msgid "Design" +msgstr "రూపురేఖలు" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:346 msgid "User configuration" msgstr "వాడుకరి స్వరూపణం" -#: lib/adminpanelaction.php:327 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:348 +#, fuzzy +msgctxt "MENU" +msgid "User" +msgstr "వాడుకరి" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:354 #, fuzzy msgid "Access configuration" msgstr "SMS నిర్ధారణ" -#: lib/adminpanelaction.php:332 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:356 +#, fuzzy +msgctxt "MENU" +msgid "Access" +msgstr "అంగీకరించు" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:362 #, fuzzy msgid "Paths configuration" msgstr "SMS నిర్ధారణ" -#: lib/adminpanelaction.php:337 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:364 +msgctxt "MENU" +msgid "Paths" +msgstr "" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:370 #, fuzzy msgid "Sessions configuration" msgstr "రూపకల్పన స్వరూపణం" -#: lib/apiauth.php:95 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:372 +#, fuzzy +msgctxt "MENU" +msgid "Sessions" +msgstr "సంచిక" + +#: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." msgstr "" -#: lib/apiauth.php:273 +#: lib/apiauth.php:272 #, php-format msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" msgstr "" @@ -4720,11 +4895,11 @@ msgstr "" #: lib/applicationeditform.php:297 msgid "Read-only" -msgstr "" +msgstr "చదవడం-మాత్రమే" #: lib/applicationeditform.php:315 msgid "Read-write" -msgstr "" +msgstr "చదవడం-వ్రాయడం" #: lib/applicationeditform.php:316 msgid "Default access for this application: read-only, or read-write" @@ -4756,12 +4931,12 @@ msgstr "" msgid "Tags for this attachment" msgstr "" -#: lib/authenticationplugin.php:218 lib/authenticationplugin.php:223 +#: lib/authenticationplugin.php:220 lib/authenticationplugin.php:225 #, fuzzy msgid "Password changing failed" msgstr "సంకేతపదం మార్పు" -#: lib/authenticationplugin.php:233 +#: lib/authenticationplugin.php:235 #, fuzzy msgid "Password changing is not allowed" msgstr "సంకేతపదం మార్పు" @@ -5041,20 +5216,20 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:136 +#: lib/common.php:148 #, fuzzy msgid "No configuration file found. " msgstr "నిర్ధారణ సంకేతం లేదు." -#: lib/common.php:137 +#: lib/common.php:149 msgid "I looked for configuration files in the following places: " msgstr "" -#: lib/common.php:139 +#: lib/common.php:151 msgid "You may wish to run the installer to fix this." msgstr "" -#: lib/common.php:140 +#: lib/common.php:152 msgid "Go to the installer." msgstr "" @@ -5244,24 +5419,24 @@ msgstr "" msgid "Not an image or corrupt file." msgstr "బొమ్మ కాదు లేదా పాడైపోయిన ఫైలు." -#: lib/imagefile.php:105 +#: lib/imagefile.php:109 msgid "Unsupported image file format." msgstr "" -#: lib/imagefile.php:118 +#: lib/imagefile.php:122 #, fuzzy msgid "Lost our file." msgstr "అటువంటి సందేశమేమీ లేదు." -#: lib/imagefile.php:150 lib/imagefile.php:197 +#: lib/imagefile.php:166 lib/imagefile.php:231 msgid "Unknown file type" msgstr "తెలియని ఫైలు రకం" -#: lib/imagefile.php:217 +#: lib/imagefile.php:251 msgid "MB" msgstr "మెబై" -#: lib/imagefile.php:219 +#: lib/imagefile.php:253 msgid "kB" msgstr "కిబై" @@ -5576,6 +5751,12 @@ msgstr "" msgid "Available characters" msgstr "అందుబాటులో ఉన్న అక్షరాలు" +#: lib/messageform.php:178 lib/noticeform.php:236 +#, fuzzy +msgctxt "Send button for sending notice" +msgid "Send" +msgstr "పంపించు" + #: lib/noticeform.php:160 #, fuzzy msgid "Send a notice" @@ -5635,24 +5816,24 @@ msgstr "ప" msgid "at" msgstr "" -#: lib/noticelist.php:558 +#: lib/noticelist.php:566 msgid "in context" msgstr "సందర్భంలో" -#: lib/noticelist.php:583 +#: lib/noticelist.php:601 #, fuzzy msgid "Repeated by" msgstr "సృష్టితం" -#: lib/noticelist.php:610 +#: lib/noticelist.php:628 msgid "Reply to this notice" msgstr "ఈ నోటీసుపై స్పందించండి" -#: lib/noticelist.php:611 +#: lib/noticelist.php:629 msgid "Reply" msgstr "స్పందించండి" -#: lib/noticelist.php:655 +#: lib/noticelist.php:673 #, fuzzy msgid "Notice repeated" msgstr "నోటీసుని తొలగించాం." @@ -5703,6 +5884,10 @@ msgstr "స్పందనలు" msgid "Favorites" msgstr "ఇష్టాంశాలు" +#: lib/personalgroupnav.php:115 +msgid "User" +msgstr "వాడుకరి" + #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "వచ్చినవి" @@ -5786,16 +5971,14 @@ msgid "Popular" msgstr "ప్రాచుర్యం" #: lib/repeatform.php:107 -#, fuzzy msgid "Repeat this notice?" -msgstr "ఈ నోటీసుపై స్పందించండి" +msgstr "ఈ నోటీసుని పునరావృతించాలా?" #: lib/repeatform.php:132 -#, fuzzy msgid "Repeat this notice" -msgstr "ఈ నోటీసుపై స్పందించండి" +msgstr "ఈ నోటీసుని పునరావృతించు" -#: lib/router.php:665 +#: lib/router.php:668 msgid "No single user defined for single-user mode." msgstr "" @@ -5816,6 +5999,10 @@ msgstr "సైటుని వెతుకు" msgid "Keyword(s)" msgstr "కీపదము(లు)" +#: lib/searchaction.php:127 +msgid "Search" +msgstr "వెతుకు" + #: lib/searchaction.php:162 msgid "Search help" msgstr "సహాయంలో వెతుకు" @@ -5869,6 +6056,15 @@ msgstr "%sకి చందాచేరిన వ్యక్తులు" msgid "Groups %s is a member of" msgstr "%s సభ్యులుగా ఉన్న గుంపులు" +#: lib/subgroupnav.php:105 +msgid "Invite" +msgstr "ఆహ్వానించు" + +#: lib/subgroupnav.php:106 +#, php-format +msgid "Invite friends and colleagues to join you on %s" +msgstr "" + #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -5942,47 +6138,47 @@ msgstr "సందేశం" msgid "Moderate" msgstr "" -#: lib/util.php:952 +#: lib/util.php:1013 msgid "a few seconds ago" msgstr "కొన్ని క్షణాల క్రితం" -#: lib/util.php:954 +#: lib/util.php:1015 msgid "about a minute ago" msgstr "ఓ నిమిషం క్రితం" -#: lib/util.php:956 +#: lib/util.php:1017 #, php-format msgid "about %d minutes ago" msgstr "%d నిమిషాల క్రితం" -#: lib/util.php:958 +#: lib/util.php:1019 msgid "about an hour ago" msgstr "ఒక గంట క్రితం" -#: lib/util.php:960 +#: lib/util.php:1021 #, php-format msgid "about %d hours ago" msgstr "%d గంటల క్రితం" -#: lib/util.php:962 +#: lib/util.php:1023 msgid "about a day ago" msgstr "ఓ రోజు క్రితం" -#: lib/util.php:964 +#: lib/util.php:1025 #, php-format msgid "about %d days ago" msgstr "%d రోజుల క్రితం" -#: lib/util.php:966 +#: lib/util.php:1027 msgid "about a month ago" msgstr "ఓ నెల క్రితం" -#: lib/util.php:968 +#: lib/util.php:1029 #, php-format msgid "about %d months ago" msgstr "%d నెలల క్రితం" -#: lib/util.php:970 +#: lib/util.php:1031 msgid "about a year ago" msgstr "ఒక సంవత్సరం క్రితం" diff --git a/locale/tr/LC_MESSAGES/statusnet.po b/locale/tr/LC_MESSAGES/statusnet.po index 149b21292d..71aaa68132 100644 --- a/locale/tr/LC_MESSAGES/statusnet.po +++ b/locale/tr/LC_MESSAGES/statusnet.po @@ -9,82 +9,88 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-02-24 23:49+0000\n" -"PO-Revision-Date: 2010-02-24 23:51:50+0000\n" +"POT-Creation-Date: 2010-03-02 21:02+0000\n" +"PO-Revision-Date: 2010-03-02 21:03:53+0000\n" "Language-Team: Turkish\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r62925); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tr\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: actions/accessadminpanel.php:54 lib/adminpanelaction.php:326 +#. TRANS: Page title +#: actions/accessadminpanel.php:55 #, fuzzy msgid "Access" msgstr "Kabul et" -#: actions/accessadminpanel.php:65 +#. TRANS: Page notice +#: actions/accessadminpanel.php:67 #, fuzzy msgid "Site access settings" msgstr "Ayarlar" -#: actions/accessadminpanel.php:158 +#. TRANS: Form legend for registration form. +#: actions/accessadminpanel.php:161 #, fuzzy msgid "Registration" msgstr "Kayıt" -#: actions/accessadminpanel.php:161 -#, fuzzy -msgid "Private" -msgstr "Gizlilik" - -#: actions/accessadminpanel.php:163 +#. TRANS: Checkbox instructions for admin setting "Private" +#: actions/accessadminpanel.php:165 msgid "Prohibit anonymous users (not logged in) from viewing site?" msgstr "" +#. TRANS: Checkbox label for prohibiting anonymous users from viewing site. #: actions/accessadminpanel.php:167 -msgid "Invite only" -msgstr "" +#, fuzzy +msgctxt "LABEL" +msgid "Private" +msgstr "Gizlilik" -#: actions/accessadminpanel.php:169 +#. TRANS: Checkbox instructions for admin setting "Invite only" +#: actions/accessadminpanel.php:174 msgid "Make registration invitation only." msgstr "" -#: actions/accessadminpanel.php:173 +#. TRANS: Checkbox label for configuring site as invite only. +#: actions/accessadminpanel.php:176 +msgid "Invite only" +msgstr "" + +#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations) +#: actions/accessadminpanel.php:183 +msgid "Disable new registrations." +msgstr "" + +#. TRANS: Checkbox label for disabling new user registrations. +#: actions/accessadminpanel.php:185 #, fuzzy msgid "Closed" msgstr "Böyle bir kullanıcı yok." -#: actions/accessadminpanel.php:175 -msgid "Disable new registrations." -msgstr "" - -#: actions/accessadminpanel.php:189 actions/designadminpanel.php:586 -#: actions/emailsettings.php:195 actions/imsettings.php:163 -#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 -#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 -#: actions/siteadminpanel.php:336 actions/smssettings.php:181 -#: actions/subscriptions.php:208 actions/tagother.php:154 -#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 -#: lib/applicationeditform.php:334 lib/designsettings.php:256 -#: lib/groupeditform.php:202 -msgid "Save" -msgstr "Kaydet" - -#: actions/accessadminpanel.php:189 +#. TRANS: Title / tooltip for button to save access settings in site admin panel +#: actions/accessadminpanel.php:202 #, fuzzy msgid "Save access settings" msgstr "Ayarlar" -#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 -#: actions/showfavorites.php:137 actions/tag.php:51 +#: actions/accessadminpanel.php:203 +#, fuzzy +msgctxt "BUTTON" +msgid "Save" +msgstr "Kaydet" + +#. TRANS: Server error when page not found (404) +#: actions/all.php:64 actions/public.php:98 actions/replies.php:93 +#: actions/showfavorites.php:138 actions/tag.php:52 #, fuzzy msgid "No such page" msgstr "Böyle bir durum mesajı yok." -#: actions/all.php:74 actions/allrss.php:68 +#: actions/all.php:75 actions/allrss.php:68 #: actions/apiaccountupdatedeliverydevice.php:113 #: actions/apiaccountupdateprofile.php:105 #: actions/apiaccountupdateprofilebackgroundimage.php:116 @@ -98,72 +104,82 @@ msgstr "Böyle bir durum mesajı yok." #: actions/apitimelinehome.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/otp.php:76 -#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154 -#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 -#: actions/showfavorites.php:105 actions/userbyid.php:74 -#: actions/usergroups.php:91 actions/userrss.php:38 actions/xrds.php:71 -#: lib/command.php:163 lib/command.php:302 lib/command.php:355 -#: lib/command.php:401 lib/command.php:462 lib/command.php:518 -#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 +#: actions/hcard.php:67 actions/microsummary.php:62 actions/newmessage.php:116 +#: actions/otp.php:76 actions/remotesubscribe.php:145 +#: actions/remotesubscribe.php:154 actions/replies.php:73 +#: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/xrds.php:71 lib/command.php:163 lib/command.php:302 +#: lib/command.php:355 lib/command.php:401 lib/command.php:462 +#: lib/command.php:518 lib/galleryaction.php:59 lib/mailbox.php:82 +#: lib/profileaction.php:77 msgid "No such user." msgstr "Böyle bir kullanıcı yok." -#: actions/all.php:84 +#. TRANS: Page title. %1$s is user nickname, %2$d is page number +#: actions/all.php:86 #, fuzzy, php-format msgid "%1$s and friends, page %2$d" msgstr "%s ve arkadaşları" -#: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 +#. TRANS: Page title. %1$s is user nickname +#. TRANS: H1 text. %1$s is user nickname +#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" msgstr "%s ve arkadaşları" -#: actions/all.php:99 +#. TRANS: %1$s is user nickname +#: actions/all.php:103 #, fuzzy, php-format msgid "Feed for friends of %s (RSS 1.0)" msgstr "%s için arkadaş güncellemeleri RSS beslemesi" -#: actions/all.php:107 +#. TRANS: %1$s is user nickname +#: actions/all.php:112 #, fuzzy, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "%s için arkadaş güncellemeleri RSS beslemesi" -#: actions/all.php:115 +#. TRANS: %1$s is user nickname +#: actions/all.php:121 #, fuzzy, php-format msgid "Feed for friends of %s (Atom)" msgstr "%s için arkadaş güncellemeleri RSS beslemesi" -#: actions/all.php:127 +#. TRANS: %1$s is user nickname +#: actions/all.php:134 #, php-format msgid "" "This is the timeline for %s and friends but no one has posted anything yet." msgstr "" -#: actions/all.php:132 +#: actions/all.php:139 #, php-format msgid "" "Try subscribing to more people, [join a group](%%action.groups%%) or post " "something yourself." msgstr "" -#: actions/all.php:134 +#. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@" +#: actions/all.php:142 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) from his profile or [post something to " "his or her attention](%%%%action.newnotice%%%%?status_textarea=%3$s)." msgstr "" -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211 +#: actions/all.php:145 actions/replies.php:210 actions/showstream.php:211 #, 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/all.php:165 +#. TRANS: H1 text +#: actions/all.php:174 #, fuzzy msgid "You and friends" msgstr "%s ve arkadaşları" @@ -182,20 +198,20 @@ msgstr "" #: actions/apiaccountverifycredentials.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:128 actions/apigroupcreate.php:136 +#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: actions/apigroupleave.php:141 actions/apigrouplist.php:132 #: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 #: actions/apigroupshow.php:115 actions/apihelptest.php:88 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 -#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184 +#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 #: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:207 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 #, fuzzy msgid "API method not found." msgstr "Onay kodu bulunamadı." @@ -229,8 +245,9 @@ msgstr "Kullanıcı güncellenemedi." #: actions/apiaccountupdateprofilebackgroundimage.php:194 #: actions/apiaccountupdateprofilecolors.php:185 #: 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 +#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 +#: 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." @@ -255,7 +272,7 @@ msgstr "" #: actions/apiaccountupdateprofilebackgroundimage.php:146 #: actions/apiaccountupdateprofilecolors.php:164 #: actions/apiaccountupdateprofilecolors.php:174 -#: actions/groupdesignsettings.php:287 actions/groupdesignsettings.php:297 +#: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300 #: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 #: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 msgid "Unable to save your design settings." @@ -373,7 +390,7 @@ msgstr "Kullanıcı güncellenemedi." msgid "Could not find target user." msgstr "Kullanıcı güncellenemedi." -#: actions/apigroupcreate.php:164 actions/editgroup.php:182 +#: actions/apigroupcreate.php:166 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:215 #: actions/register.php:205 msgid "Nickname must have only lowercase letters and numbers and no spaces." @@ -381,62 +398,62 @@ msgstr "" "Takma ad sadece küçük harflerden ve rakamlardan oluşabilir, boşluk " "kullanılamaz. " -#: actions/apigroupcreate.php:173 actions/editgroup.php:186 +#: actions/apigroupcreate.php:175 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:238 #: actions/register.php:208 msgid "Nickname already in use. Try another one." msgstr "Takma ad kullanımda. Başka bir tane deneyin." -#: actions/apigroupcreate.php:180 actions/editgroup.php:189 +#: actions/apigroupcreate.php:182 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:218 #: actions/register.php:210 msgid "Not a valid nickname." msgstr "Geçersiz bir takma ad." -#: actions/apigroupcreate.php:196 actions/editapplication.php:215 -#: actions/editgroup.php:195 actions/newapplication.php:203 +#: actions/apigroupcreate.php:198 actions/editapplication.php:215 +#: actions/editgroup.php:199 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: 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:205 actions/editgroup.php:198 +#: actions/apigroupcreate.php:207 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:225 #: actions/register.php:220 msgid "Full name is too long (max 255 chars)." msgstr "Tam isim çok uzun (azm: 255 karakter)." -#: actions/apigroupcreate.php:213 actions/editapplication.php:190 +#: actions/apigroupcreate.php:215 actions/editapplication.php:190 #: actions/newapplication.php:172 #, fuzzy, php-format msgid "Description is too long (max %d chars)." msgstr "Hakkında bölümü çok uzun (azm 140 karakter)." -#: actions/apigroupcreate.php:224 actions/editgroup.php:204 +#: actions/apigroupcreate.php:226 actions/editgroup.php:208 #: actions/newgroup.php:148 actions/profilesettings.php:232 #: actions/register.php:227 msgid "Location is too long (max 255 chars)." msgstr "Yer bilgisi çok uzun (azm: 255 karakter)." -#: actions/apigroupcreate.php:243 actions/editgroup.php:215 +#: actions/apigroupcreate.php:245 actions/editgroup.php:219 #: actions/newgroup.php:159 #, php-format msgid "Too many aliases! Maximum %d." msgstr "" -#: actions/apigroupcreate.php:264 actions/editgroup.php:224 +#: actions/apigroupcreate.php:266 actions/editgroup.php:228 #: actions/newgroup.php:168 #, fuzzy, php-format msgid "Invalid alias: \"%s\"" msgstr "%s Geçersiz başlangıç sayfası" -#: actions/apigroupcreate.php:273 actions/editgroup.php:228 +#: actions/apigroupcreate.php:275 actions/editgroup.php:232 #: 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." -#: actions/apigroupcreate.php:286 actions/editgroup.php:234 +#: actions/apigroupcreate.php:288 actions/editgroup.php:238 #: actions/newgroup.php:178 msgid "Alias can't be the same as nickname." msgstr "" @@ -448,16 +465,16 @@ msgstr "" msgid "Group not found!" msgstr "İstek bulunamadı!" -#: actions/apigroupjoin.php:110 actions/joingroup.php:90 +#: actions/apigroupjoin.php:110 actions/joingroup.php:100 #, fuzzy msgid "You are already a member of that group." msgstr "Zaten giriş yapmış durumdasıznız!" -#: actions/apigroupjoin.php:119 actions/joingroup.php:95 lib/command.php:221 +#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:221 msgid "You have been blocked from that group by the admin." msgstr "" -#: actions/apigroupjoin.php:138 actions/joingroup.php:124 +#: actions/apigroupjoin.php:138 actions/joingroup.php:134 #, fuzzy, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Sunucuya yönlendirme yapılamadı: %s" @@ -467,7 +484,7 @@ msgstr "Sunucuya yönlendirme yapılamadı: %s" msgid "You are not a member of this group." msgstr "Bize o profili yollamadınız" -#: actions/apigroupleave.php:124 actions/leavegroup.php:119 +#: actions/apigroupleave.php:124 actions/leavegroup.php:129 #, fuzzy, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "OpenID formu yaratılamadı: %s" @@ -499,7 +516,7 @@ msgstr "Geçersiz büyüklük." #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 #: actions/deletenotice.php:157 actions/disfavor.php:74 #: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54 -#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupblock.php:66 actions/grouplogo.php:312 #: actions/groupunblock.php:66 actions/imsettings.php:206 #: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 @@ -543,7 +560,7 @@ msgstr "" #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:103 actions/editapplication.php:139 -#: actions/emailsettings.php:256 actions/grouplogo.php:319 +#: actions/emailsettings.php:256 actions/grouplogo.php:322 #: actions/imsettings.php:220 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 #: actions/smssettings.php:248 lib/designsettings.php:304 @@ -566,14 +583,14 @@ msgid "" "give access to your %4$s account to third parties you trust." msgstr "" -#: actions/apioauthauthorize.php:310 lib/action.php:441 +#: actions/apioauthauthorize.php:310 #, fuzzy msgid "Account" msgstr "Hakkında" #: actions/apioauthauthorize.php:313 actions/login.php:230 #: actions/profilesettings.php:106 actions/register.php:424 -#: actions/showgroup.php:236 actions/tagother.php:94 +#: actions/showgroup.php:244 actions/tagother.php:94 #: actions/userauthorization.php:145 lib/groupeditform.php:152 #: lib/userprofile.php:131 msgid "Nickname" @@ -660,12 +677,12 @@ msgid "%1$s updates favorited by %2$s / %2$s." msgstr "%s adli kullanicinin durum mesajlari" #: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:131 actions/userrss.php:90 +#: actions/grouprss.php:138 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "" -#: actions/apitimelinegroup.php:114 actions/apitimelineuser.php:126 +#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 #: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" @@ -701,7 +718,7 @@ msgstr "%s için cevaplar" msgid "Repeats of %s" msgstr "%s için cevaplar" -#: actions/apitimelinetag.php:102 actions/tag.php:66 +#: actions/apitimelinetag.php:102 actions/tag.php:67 #, php-format msgid "Notices tagged with %s" msgstr "" @@ -724,8 +741,7 @@ msgstr "Böyle bir belge yok." #: actions/avatarbynickname.php:59 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/leavegroup.php:76 -#: actions/showgroup.php:121 +#: actions/grouprss.php:91 actions/showgroup.php:121 msgid "No nickname." msgstr "Takma ad yok" @@ -737,7 +753,7 @@ msgstr "" msgid "Invalid size." msgstr "Geçersiz büyüklük." -#: actions/avatarsettings.php:67 actions/showgroup.php:221 +#: actions/avatarsettings.php:67 actions/showgroup.php:229 #: lib/accountsettingsaction.php:112 msgid "Avatar" msgstr "Avatar" @@ -754,31 +770,31 @@ msgid "User without matching profile" msgstr "" #: actions/avatarsettings.php:119 actions/avatarsettings.php:197 -#: actions/grouplogo.php:251 +#: actions/grouplogo.php:254 #, fuzzy msgid "Avatar settings" msgstr "Ayarlar" #: actions/avatarsettings.php:127 actions/avatarsettings.php:205 -#: actions/grouplogo.php:199 actions/grouplogo.php:259 +#: actions/grouplogo.php:202 actions/grouplogo.php:262 msgid "Original" msgstr "" #: actions/avatarsettings.php:142 actions/avatarsettings.php:217 -#: actions/grouplogo.php:210 actions/grouplogo.php:271 +#: actions/grouplogo.php:213 actions/grouplogo.php:274 msgid "Preview" msgstr "" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:637 +#: lib/deleteuserform.php:66 lib/noticelist.php:655 msgid "Delete" msgstr "" -#: actions/avatarsettings.php:166 actions/grouplogo.php:233 +#: actions/avatarsettings.php:166 actions/grouplogo.php:236 msgid "Upload" msgstr "Yükle" -#: actions/avatarsettings.php:231 actions/grouplogo.php:286 +#: actions/avatarsettings.php:231 actions/grouplogo.php:289 msgid "Crop" msgstr "" @@ -786,7 +802,7 @@ msgstr "" msgid "Pick a square area of the image to be your avatar" msgstr "" -#: actions/avatarsettings.php:343 actions/grouplogo.php:377 +#: actions/avatarsettings.php:343 actions/grouplogo.php:380 msgid "Lost our file data." msgstr "" @@ -821,23 +837,23 @@ msgid "" msgstr "" #: actions/block.php:143 actions/deleteapplication.php:153 -#: actions/deletenotice.php:145 actions/deleteuser.php:147 +#: actions/deletenotice.php:145 actions/deleteuser.php:150 #: actions/groupblock.php:178 msgid "No" msgstr "" -#: actions/block.php:143 actions/deleteuser.php:147 +#: actions/block.php:143 actions/deleteuser.php:150 #, fuzzy msgid "Do not block this user" msgstr "Böyle bir kullanıcı yok." #: actions/block.php:144 actions/deleteapplication.php:158 -#: actions/deletenotice.php:146 actions/deleteuser.php:148 +#: actions/deletenotice.php:146 actions/deleteuser.php:151 #: actions/groupblock.php:179 lib/repeatform.php:132 msgid "Yes" msgstr "" -#: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:355 lib/blockform.php:80 #, fuzzy msgid "Block this user" msgstr "Böyle bir kullanıcı yok." @@ -846,41 +862,45 @@ msgstr "Böyle bir kullanıcı yok." msgid "Failed to save block information." msgstr "" -#: actions/blockedfromgroup.php:80 actions/editgroup.php:96 -#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/groupblock.php:86 -#: actions/groupbyid.php:83 actions/groupdesignsettings.php:97 -#: actions/grouplogo.php:99 actions/groupmembers.php:83 -#: actions/grouprss.php:98 actions/groupunblock.php:86 -#: actions/joingroup.php:83 actions/leavegroup.php:83 actions/makeadmin.php:86 -#: actions/showgroup.php:137 lib/command.php:212 lib/command.php:260 +#: actions/blockedfromgroup.php:80 actions/blockedfromgroup.php:87 +#: actions/editgroup.php:100 actions/foafgroup.php:44 actions/foafgroup.php:62 +#: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:100 actions/grouplogo.php:102 +#: actions/groupmembers.php:83 actions/groupmembers.php:90 +#: actions/grouprss.php:98 actions/grouprss.php:105 +#: actions/groupunblock.php:86 actions/joingroup.php:82 +#: actions/joingroup.php:93 actions/leavegroup.php:82 +#: actions/leavegroup.php:93 actions/makeadmin.php:86 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:212 +#: lib/command.php:260 #, fuzzy msgid "No such group." msgstr "Böyle bir durum mesajı yok." -#: actions/blockedfromgroup.php:90 +#: actions/blockedfromgroup.php:97 #, fuzzy, php-format msgid "%s blocked profiles" msgstr "Kullanıcının profili yok." -#: actions/blockedfromgroup.php:93 +#: actions/blockedfromgroup.php:100 #, fuzzy, php-format msgid "%1$s blocked profiles, page %2$d" msgstr "%s ve arkadaşları" -#: actions/blockedfromgroup.php:108 +#: actions/blockedfromgroup.php:115 msgid "A list of the users blocked from joining this group." msgstr "" -#: actions/blockedfromgroup.php:281 +#: actions/blockedfromgroup.php:288 #, fuzzy msgid "Unblock user from group" msgstr "Böyle bir kullanıcı yok." -#: actions/blockedfromgroup.php:313 lib/unblockform.php:69 +#: actions/blockedfromgroup.php:320 lib/unblockform.php:69 msgid "Unblock" msgstr "" -#: actions/blockedfromgroup.php:313 lib/unblockform.php:80 +#: actions/blockedfromgroup.php:320 lib/unblockform.php:80 #, fuzzy msgid "Unblock this user" msgstr "Böyle bir kullanıcı yok." @@ -961,7 +981,7 @@ msgstr "Bize o profili yollamadınız" #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1197 +#: lib/action.php:1228 msgid "There was a problem with your session token." msgstr "" @@ -987,12 +1007,13 @@ msgstr "Böyle bir durum mesajı yok." msgid "Delete this application" msgstr "Kendinizi ve ilgi alanlarınızı 140 karakter ile anlatın" +#. TRANS: Client error message #: 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:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 -#: lib/adminpanelaction.php:72 lib/profileformaction.php:63 +#: lib/adminpanelaction.php:73 lib/profileformaction.php:63 #: lib/settingsaction.php:72 msgid "Not logged in." msgstr "Giriş yapılmadı." @@ -1020,7 +1041,7 @@ msgstr "" msgid "Do not delete this notice" msgstr "Böyle bir durum mesajı yok." -#: actions/deletenotice.php:146 lib/noticelist.php:637 +#: actions/deletenotice.php:146 lib/noticelist.php:655 msgid "Delete this notice" msgstr "" @@ -1038,19 +1059,19 @@ msgstr "Yerel aboneliği kullanabilirsiniz!" msgid "Delete user" msgstr "" -#: actions/deleteuser.php:135 +#: actions/deleteuser.php:136 msgid "" "Are you sure you want to delete this user? This will clear all data about " "the user from the database, without a backup." msgstr "" -#: actions/deleteuser.php:148 lib/deleteuserform.php:77 +#: actions/deleteuser.php:151 lib/deleteuserform.php:77 #, fuzzy msgid "Delete this user" msgstr "Böyle bir kullanıcı yok." #: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 -#: lib/adminpanelaction.php:316 lib/groupnav.php:119 +#: lib/groupnav.php:119 msgid "Design" msgstr "" @@ -1161,6 +1182,17 @@ msgstr "" msgid "Reset back to default" msgstr "" +#: actions/designadminpanel.php:586 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/tagother.php:154 actions/useradminpanel.php:294 +#: lib/applicationeditform.php:333 lib/applicationeditform.php:334 +#: lib/designsettings.php:256 lib/groupeditform.php:202 +msgid "Save" +msgstr "Kaydet" + #: actions/designadminpanel.php:587 lib/designsettings.php:257 msgid "Save design" msgstr "" @@ -1260,31 +1292,31 @@ msgstr "" msgid "You must be logged in to create a group." msgstr "" -#: actions/editgroup.php:103 actions/editgroup.php:168 -#: actions/groupdesignsettings.php:104 actions/grouplogo.php:106 +#: actions/editgroup.php:107 actions/editgroup.php:172 +#: actions/groupdesignsettings.php:107 actions/grouplogo.php:109 msgid "You must be an admin to edit the group." msgstr "" -#: actions/editgroup.php:154 +#: actions/editgroup.php:158 msgid "Use this form to edit the group." msgstr "" -#: actions/editgroup.php:201 actions/newgroup.php:145 +#: actions/editgroup.php:205 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/editgroup.php:253 +#: actions/editgroup.php:258 #, fuzzy msgid "Could not update group." msgstr "Kullanıcı güncellenemedi." -#: actions/editgroup.php:259 classes/User_group.php:433 +#: actions/editgroup.php:264 classes/User_group.php:478 #, fuzzy msgid "Could not create aliases." msgstr "Avatar bilgisi kaydedilemedi" -#: actions/editgroup.php:269 +#: actions/editgroup.php:280 #, fuzzy msgid "Options saved." msgstr "Ayarlar kaydedildi." @@ -1627,7 +1659,7 @@ msgstr "Kullanıcının profili yok." msgid "User is not a member of group." msgstr "Bize o profili yollamadınız" -#: actions/groupblock.php:136 actions/groupmembers.php:316 +#: actions/groupblock.php:136 actions/groupmembers.php:323 #, fuzzy msgid "Block user from group" msgstr "Böyle bir kullanıcı yok." @@ -1663,91 +1695,91 @@ msgstr "Kullanıcı numarası yok" msgid "You must be logged in to edit a group." msgstr "" -#: actions/groupdesignsettings.php:141 +#: actions/groupdesignsettings.php:144 msgid "Group design" msgstr "" -#: actions/groupdesignsettings.php:152 +#: actions/groupdesignsettings.php:155 msgid "" "Customize the way your group looks with a background image and a colour " "palette of your choice." msgstr "" -#: actions/groupdesignsettings.php:263 actions/userdesignsettings.php:186 +#: actions/groupdesignsettings.php:266 actions/userdesignsettings.php:186 #: lib/designsettings.php:391 lib/designsettings.php:413 #, fuzzy msgid "Couldn't update your design." msgstr "Kullanıcı güncellenemedi." -#: actions/groupdesignsettings.php:308 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231 #, fuzzy msgid "Design preferences saved." msgstr "Tercihler kaydedildi." -#: actions/grouplogo.php:139 actions/grouplogo.php:192 +#: actions/grouplogo.php:142 actions/grouplogo.php:195 msgid "Group logo" msgstr "" -#: actions/grouplogo.php:150 +#: actions/grouplogo.php:153 #, php-format msgid "" "You can upload a logo image for your group. The maximum file size is %s." msgstr "" -#: actions/grouplogo.php:178 +#: actions/grouplogo.php:181 #, fuzzy msgid "User without matching profile." msgstr "Kullanıcının profili yok." -#: actions/grouplogo.php:362 +#: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." msgstr "" -#: actions/grouplogo.php:396 +#: actions/grouplogo.php:399 #, fuzzy msgid "Logo updated." msgstr "Avatar güncellendi." -#: actions/grouplogo.php:398 +#: actions/grouplogo.php:401 #, fuzzy msgid "Failed updating logo." msgstr "Avatar güncellemede hata." -#: actions/groupmembers.php:93 lib/groupnav.php:92 +#: actions/groupmembers.php:100 lib/groupnav.php:92 #, php-format msgid "%s group members" msgstr "" -#: actions/groupmembers.php:96 +#: actions/groupmembers.php:103 #, php-format msgid "%1$s group members, page %2$d" msgstr "" -#: actions/groupmembers.php:111 +#: actions/groupmembers.php:118 msgid "A list of the users in this group." msgstr "" -#: actions/groupmembers.php:175 lib/action.php:448 lib/groupnav.php:107 +#: actions/groupmembers.php:182 lib/groupnav.php:107 msgid "Admin" msgstr "" -#: actions/groupmembers.php:348 lib/blockform.php:69 +#: actions/groupmembers.php:355 lib/blockform.php:69 msgid "Block" msgstr "" -#: actions/groupmembers.php:443 +#: actions/groupmembers.php:450 msgid "Make user an admin of the group" msgstr "" -#: actions/groupmembers.php:475 +#: actions/groupmembers.php:482 msgid "Make Admin" msgstr "" -#: actions/groupmembers.php:475 +#: actions/groupmembers.php:482 msgid "Make this user an admin" msgstr "" -#: actions/grouprss.php:133 +#: actions/grouprss.php:140 #, fuzzy, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "%s adli kullanicinin durum mesajlari" @@ -2003,16 +2035,19 @@ msgstr "" msgid "Optionally add a personal message to the invitation." msgstr "" -#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:236 +#. TRANS: Send button for inviting friends +#: actions/invite.php:198 +#, fuzzy +msgctxt "BUTTON" msgid "Send" msgstr "Gönder" -#: actions/invite.php:226 +#: actions/invite.php:227 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "" -#: actions/invite.php:228 +#: actions/invite.php:229 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -2047,7 +2082,12 @@ msgstr "" msgid "You must be logged in to join a group." msgstr "" -#: actions/joingroup.php:131 +#: actions/joingroup.php:88 actions/leavegroup.php:88 +#, fuzzy +msgid "No nickname or ID." +msgstr "Takma ad yok" + +#: actions/joingroup.php:141 #, php-format msgid "%1$s joined group %2$s" msgstr "" @@ -2056,12 +2096,12 @@ msgstr "" msgid "You must be logged in to leave a group." msgstr "" -#: actions/leavegroup.php:90 lib/command.php:265 +#: actions/leavegroup.php:100 lib/command.php:265 #, fuzzy msgid "You are not a member of that group." msgstr "Bize o profili yollamadınız" -#: actions/leavegroup.php:127 +#: actions/leavegroup.php:137 #, fuzzy, php-format msgid "%1$s left group %2$s" msgstr "%1$s'in %2$s'deki durum mesajları " @@ -2079,8 +2119,7 @@ msgstr "Yanlış kullanıcı adı veya parola." msgid "Error setting user. You are probably not authorized." msgstr "Yetkilendirilmemiş." -#: actions/login.php:188 actions/login.php:241 lib/action.php:466 -#: lib/logingroupnav.php:79 +#: actions/login.php:188 actions/login.php:241 lib/logingroupnav.php:79 msgid "Login" msgstr "Giriş" @@ -2332,8 +2371,8 @@ msgstr "Bağlan" msgid "Only " msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 -#: lib/api.php:1068 lib/api.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 +#: lib/apiaction.php:1068 lib/apiaction.php:1177 msgid "Not a supported data format." msgstr "" @@ -2481,7 +2520,7 @@ msgstr "Yeni parola kaydedilemedi." msgid "Password saved." msgstr "Parola kaydedildi." -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:331 +#: actions/pathsadminpanel.php:59 msgid "Paths" msgstr "" @@ -2514,7 +2553,6 @@ msgid "Invalid SSL server. The maximum length is 255 characters." msgstr "" #: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58 -#: lib/adminpanelaction.php:311 msgid "Site" msgstr "" @@ -2699,7 +2737,7 @@ msgstr "" "verilmez" #: actions/profilesettings.php:111 actions/register.php:448 -#: actions/showgroup.php:247 actions/tagother.php:104 +#: actions/showgroup.php:255 actions/tagother.php:104 #: lib/groupeditform.php:157 lib/userprofile.php:149 msgid "Full name" msgstr "Tam İsim" @@ -2729,7 +2767,7 @@ msgid "Bio" msgstr "Hakkında" #: actions/profilesettings.php:132 actions/register.php:471 -#: actions/showgroup.php:256 actions/tagother.php:112 +#: actions/showgroup.php:264 actions/tagother.php:112 #: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:164 msgid "Location" @@ -2811,7 +2849,8 @@ msgstr "Profil kaydedilemedi." msgid "Couldn't save tags." msgstr "Profil kaydedilemedi." -#: actions/profilesettings.php:391 lib/adminpanelaction.php:137 +#. TRANS: Message after successful saving of administrative settings. +#: actions/profilesettings.php:391 lib/adminpanelaction.php:141 msgid "Settings saved." msgstr "Ayarlar kaydedildi." @@ -2824,48 +2863,48 @@ msgstr "" msgid "Could not retrieve public stream." msgstr "" -#: actions/public.php:129 +#: actions/public.php:130 #, fuzzy, php-format msgid "Public timeline, page %d" msgstr "Genel zaman çizgisi" -#: actions/public.php:131 lib/publicgroupnav.php:79 +#: actions/public.php:132 lib/publicgroupnav.php:79 msgid "Public timeline" msgstr "Genel zaman çizgisi" -#: actions/public.php:159 +#: actions/public.php:160 #, fuzzy msgid "Public Stream Feed (RSS 1.0)" msgstr "Genel Durum Akış RSS Beslemesi" -#: actions/public.php:163 +#: actions/public.php:164 #, fuzzy msgid "Public Stream Feed (RSS 2.0)" msgstr "Genel Durum Akış RSS Beslemesi" -#: actions/public.php:167 +#: actions/public.php:168 #, fuzzy msgid "Public Stream Feed (Atom)" msgstr "Genel Durum Akış RSS Beslemesi" -#: actions/public.php:187 +#: actions/public.php:188 #, php-format msgid "" "This is the public timeline for %%site.name%% but no one has posted anything " "yet." msgstr "" -#: actions/public.php:190 +#: actions/public.php:191 msgid "Be the first to post!" msgstr "" -#: actions/public.php:194 +#: actions/public.php:195 #, php-format msgid "" "Why not [register an account](%%action.register%%) and be the first to post!" msgstr "" -#: actions/public.php:241 +#: actions/public.php:242 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2874,7 +2913,7 @@ msgid "" "friends, family, and colleagues! ([Read more](%%doc.help%%))" msgstr "" -#: actions/public.php:246 +#: actions/public.php:247 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -3047,8 +3086,7 @@ msgstr "Onay kodu hatası." msgid "Registration successful" msgstr "" -#: actions/register.php:114 actions/register.php:503 lib/action.php:463 -#: lib/logingroupnav.php:85 +#: actions/register.php:114 actions/register.php:503 lib/logingroupnav.php:85 msgid "Register" msgstr "Kayıt" @@ -3216,7 +3254,7 @@ msgstr "Eğer lisansı kabul etmezseniz kayıt olamazsınız." msgid "You already repeated that notice." msgstr "Zaten giriş yapmış durumdasıznız!" -#: actions/repeat.php:114 lib/noticelist.php:656 +#: actions/repeat.php:114 lib/noticelist.php:674 #, fuzzy msgid "Repeated" msgstr "Yarat" @@ -3226,47 +3264,47 @@ msgstr "Yarat" msgid "Repeated!" msgstr "Yarat" -#: actions/replies.php:125 actions/repliesrss.php:68 +#: actions/replies.php:126 actions/repliesrss.php:68 #: lib/personalgroupnav.php:105 #, php-format msgid "Replies to %s" msgstr "%s için cevaplar" -#: actions/replies.php:127 +#: actions/replies.php:128 #, fuzzy, php-format msgid "Replies to %1$s, page %2$d" msgstr "%s için cevaplar" -#: actions/replies.php:144 +#: actions/replies.php:145 #, fuzzy, php-format msgid "Replies feed for %s (RSS 1.0)" msgstr "%s için durum RSS beslemesi" -#: actions/replies.php:151 +#: actions/replies.php:152 #, fuzzy, php-format msgid "Replies feed for %s (RSS 2.0)" msgstr "%s için durum RSS beslemesi" -#: actions/replies.php:158 +#: actions/replies.php:159 #, fuzzy, php-format msgid "Replies feed for %s (Atom)" msgstr "%s için durum RSS beslemesi" -#: actions/replies.php:198 +#: actions/replies.php:199 #, php-format msgid "" "This is the timeline showing replies to %1$s but %2$s hasn't received a " "notice to his attention yet." msgstr "" -#: actions/replies.php:203 +#: actions/replies.php:204 #, php-format msgid "" "You can engage other users in a conversation, subscribe to more people or " "[join groups](%%action.groups%%)." msgstr "" -#: actions/replies.php:205 +#: actions/replies.php:206 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) or [post something to his or her " @@ -3294,7 +3332,6 @@ msgid "User is already sandboxed." msgstr "Kullanıcının profili yok." #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:336 msgid "Sessions" msgstr "" @@ -3319,7 +3356,7 @@ msgid "Turn on debugging output for sessions." msgstr "" #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/useradminpanel.php:293 +#: actions/useradminpanel.php:294 #, fuzzy msgid "Save site settings" msgstr "Ayarlar" @@ -3354,7 +3391,7 @@ msgstr "Yer" msgid "Description" msgstr "Abonelikler" -#: actions/showapplication.php:192 actions/showgroup.php:429 +#: actions/showapplication.php:192 actions/showgroup.php:437 #: lib/profileaction.php:174 msgid "Statistics" msgstr "İstatistikler" @@ -3415,35 +3452,35 @@ msgstr "%s ve arkadaşları" msgid "Could not retrieve favorite notices." msgstr "" -#: actions/showfavorites.php:170 +#: actions/showfavorites.php:171 #, 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 +#: actions/showfavorites.php:178 #, 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 +#: actions/showfavorites.php:185 #, fuzzy, php-format msgid "Feed for favorites of %s (Atom)" msgstr "%s için arkadaş güncellemeleri RSS beslemesi" -#: actions/showfavorites.php:205 +#: actions/showfavorites.php:206 msgid "" "You haven't chosen any favorite notices yet. Click the fave button on " "notices you like to bookmark them for later or shed a spotlight on them." msgstr "" -#: actions/showfavorites.php:207 +#: actions/showfavorites.php:208 #, 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:211 +#: actions/showfavorites.php:212 #, php-format msgid "" "%s hasn't added any notices to his favorites yet. Why not [register an " @@ -3451,7 +3488,7 @@ msgid "" "would add to their favorites :)" msgstr "" -#: actions/showfavorites.php:242 +#: actions/showfavorites.php:243 msgid "This is a way to share what you like." msgstr "" @@ -3465,71 +3502,71 @@ msgstr "" msgid "%1$s group, page %2$d" msgstr "Bütün abonelikler" -#: actions/showgroup.php:218 +#: actions/showgroup.php:226 #, fuzzy msgid "Group profile" msgstr "Böyle bir durum mesajı yok." -#: actions/showgroup.php:263 actions/tagother.php:118 +#: actions/showgroup.php:271 actions/tagother.php:118 #: actions/userauthorization.php:175 lib/userprofile.php:177 msgid "URL" msgstr "" -#: actions/showgroup.php:274 actions/tagother.php:128 +#: actions/showgroup.php:282 actions/tagother.php:128 #: actions/userauthorization.php:187 lib/userprofile.php:194 #, fuzzy msgid "Note" msgstr "Durum mesajları" -#: actions/showgroup.php:284 lib/groupeditform.php:184 +#: actions/showgroup.php:292 lib/groupeditform.php:184 msgid "Aliases" msgstr "" -#: actions/showgroup.php:293 +#: actions/showgroup.php:301 msgid "Group actions" msgstr "" -#: actions/showgroup.php:328 +#: actions/showgroup.php:336 #, fuzzy, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "%s için durum RSS beslemesi" -#: actions/showgroup.php:334 +#: actions/showgroup.php:342 #, fuzzy, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "%s için durum RSS beslemesi" -#: actions/showgroup.php:340 +#: actions/showgroup.php:348 #, fuzzy, php-format msgid "Notice feed for %s group (Atom)" msgstr "%s için durum RSS beslemesi" -#: actions/showgroup.php:345 +#: actions/showgroup.php:353 #, fuzzy, php-format msgid "FOAF for %s group" msgstr "%s için durum RSS beslemesi" -#: actions/showgroup.php:381 actions/showgroup.php:438 lib/groupnav.php:91 +#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 #, fuzzy msgid "Members" msgstr "Üyelik başlangıcı" -#: actions/showgroup.php:386 lib/profileaction.php:117 +#: actions/showgroup.php:394 lib/profileaction.php:117 #: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "" -#: actions/showgroup.php:392 +#: actions/showgroup.php:400 msgid "All members" msgstr "" -#: actions/showgroup.php:432 +#: actions/showgroup.php:440 #, fuzzy msgid "Created" msgstr "Yarat" -#: actions/showgroup.php:448 +#: actions/showgroup.php:456 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3539,7 +3576,7 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showgroup.php:454 +#: actions/showgroup.php:462 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3548,7 +3585,7 @@ msgid "" "their life and interests. " msgstr "" -#: actions/showgroup.php:482 +#: actions/showgroup.php:490 msgid "Admins" msgstr "" @@ -4009,22 +4046,22 @@ msgstr "JabberID yok." msgid "SMS" msgstr "" -#: actions/tag.php:68 +#: actions/tag.php:69 #, fuzzy, php-format msgid "Notices tagged with %1$s, page %2$d" msgstr "%s adli kullanicinin durum mesajlari" -#: actions/tag.php:86 +#: actions/tag.php:87 #, fuzzy, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "%s için durum RSS beslemesi" -#: actions/tag.php:92 +#: actions/tag.php:93 #, fuzzy, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "%s için durum RSS beslemesi" -#: actions/tag.php:98 +#: actions/tag.php:99 #, fuzzy, php-format msgid "Notice feed for tag %s (Atom)" msgstr "%s için durum RSS beslemesi" @@ -4078,7 +4115,7 @@ msgstr "" msgid "No such tag." msgstr "Böyle bir durum mesajı yok." -#: actions/twitapitrends.php:87 +#: actions/twitapitrends.php:85 msgid "API method under construction." msgstr "" @@ -4113,73 +4150,74 @@ msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" -#: actions/useradminpanel.php:58 lib/adminpanelaction.php:321 -#: lib/personalgroupnav.php:115 +#. TRANS: User admin panel title +#: actions/useradminpanel.php:59 +msgctxt "TITLE" msgid "User" msgstr "" -#: actions/useradminpanel.php:69 +#: actions/useradminpanel.php:70 msgid "User settings for this StatusNet site." msgstr "" -#: actions/useradminpanel.php:148 +#: actions/useradminpanel.php:149 msgid "Invalid bio limit. Must be numeric." msgstr "" -#: actions/useradminpanel.php:154 +#: actions/useradminpanel.php:155 msgid "Invalid welcome text. Max length is 255 characters." msgstr "" -#: actions/useradminpanel.php:164 +#: actions/useradminpanel.php:165 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" -#: actions/useradminpanel.php:217 lib/accountsettingsaction.php:108 +#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Profil" -#: actions/useradminpanel.php:221 +#: actions/useradminpanel.php:222 msgid "Bio Limit" msgstr "" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:223 msgid "Maximum length of a profile bio in characters." msgstr "" -#: actions/useradminpanel.php:230 +#: actions/useradminpanel.php:231 msgid "New users" msgstr "" -#: actions/useradminpanel.php:234 +#: actions/useradminpanel.php:235 msgid "New user welcome" msgstr "" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:236 msgid "Welcome text for new users (Max 255 chars)." msgstr "" -#: actions/useradminpanel.php:240 +#: actions/useradminpanel.php:241 #, fuzzy msgid "Default subscription" msgstr "Bütün abonelikler" -#: actions/useradminpanel.php:241 +#: actions/useradminpanel.php:242 #, fuzzy msgid "Automatically subscribe new users to this user." msgstr "Takip talebine izin verildi" -#: actions/useradminpanel.php:250 +#: actions/useradminpanel.php:251 #, fuzzy msgid "Invitations" msgstr "Yer" -#: actions/useradminpanel.php:255 +#: actions/useradminpanel.php:256 msgid "Invitations enabled" msgstr "" -#: actions/useradminpanel.php:257 +#: actions/useradminpanel.php:258 msgid "Whether to allow users to invite new users." msgstr "" @@ -4359,7 +4397,7 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:196 lib/action.php:747 +#: actions/version.php:196 lib/action.php:778 #, fuzzy msgid "Version" msgstr "Kişisel" @@ -4400,6 +4438,11 @@ msgstr "Kullanıcı güncellenemedi." msgid "Group leave failed." msgstr "Böyle bir durum mesajı yok." +#: classes/Local_group.php:41 +#, fuzzy +msgid "Could not update local group." +msgstr "Kullanıcı güncellenemedi." + #: classes/Login_token.php:76 #, fuzzy, php-format msgid "Could not create login token for %s" @@ -4417,46 +4460,46 @@ msgstr "" msgid "Could not update message with new URI." msgstr "" -#: classes/Notice.php:157 +#: classes/Notice.php:172 #, php-format msgid "DB error inserting hashtag: %s" msgstr "" -#: classes/Notice.php:222 +#: classes/Notice.php:239 #, fuzzy msgid "Problem saving notice. Too long." msgstr "Durum mesajını kaydederken hata oluştu." -#: classes/Notice.php:226 +#: classes/Notice.php:243 #, fuzzy msgid "Problem saving notice. Unknown user." msgstr "Durum mesajını kaydederken hata oluştu." -#: classes/Notice.php:231 +#: classes/Notice.php:248 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: classes/Notice.php:237 +#: classes/Notice.php:254 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." msgstr "" -#: classes/Notice.php:243 +#: classes/Notice.php:260 msgid "You are banned from posting notices on this site." msgstr "" -#: classes/Notice.php:309 classes/Notice.php:335 +#: classes/Notice.php:326 classes/Notice.php:352 msgid "Problem saving notice." msgstr "Durum mesajını kaydederken hata oluştu." -#: classes/Notice.php:882 +#: classes/Notice.php:911 #, fuzzy msgid "Problem saving group inbox." msgstr "Durum mesajını kaydederken hata oluştu." -#: classes/Notice.php:1407 +#: classes/Notice.php:1442 #, php-format msgid "RT @%1$s %2$s" msgstr "" @@ -4488,21 +4531,31 @@ msgstr "Abonelik silinemedi." msgid "Couldn't delete subscription." msgstr "Abonelik silinemedi." -#: classes/User.php:372 +#: classes/User.php:373 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "" -#: classes/User_group.php:423 +#: classes/User_group.php:462 #, fuzzy msgid "Could not create group." msgstr "Avatar bilgisi kaydedilemedi" -#: classes/User_group.php:452 +#: classes/User_group.php:471 +#, fuzzy +msgid "Could not set group URI." +msgstr "Abonelik oluşturulamadı." + +#: classes/User_group.php:492 #, fuzzy msgid "Could not set group membership." msgstr "Abonelik oluşturulamadı." +#: classes/User_group.php:506 +#, fuzzy +msgid "Could not save local group info." +msgstr "Abonelik oluşturulamadı." + #: lib/accountsettingsaction.php:108 msgid "Change your profile settings" msgstr "" @@ -4546,127 +4599,188 @@ msgstr "" msgid "Primary site navigation" msgstr "" +#. TRANS: Tooltip for main menu option "Personal" #: lib/action.php:439 -msgid "Home" -msgstr "Başlangıç" - -#: lib/action.php:439 +msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:441 -msgid "Change your email, avatar, password, profile" -msgstr "" - -#: lib/action.php:444 -msgid "Connect" -msgstr "Bağlan" +#: lib/action.php:442 +#, fuzzy +msgctxt "MENU" +msgid "Personal" +msgstr "Kişisel" +#. TRANS: Tooltip for main menu option "Account" #: lib/action.php:444 #, fuzzy +msgctxt "TOOLTIP" +msgid "Change your email, avatar, password, profile" +msgstr "Parolayı değiştir" + +#: lib/action.php:447 +#, fuzzy +msgctxt "MENU" +msgid "Account" +msgstr "Hakkında" + +#. TRANS: Tooltip for main menu option "Services" +#: lib/action.php:450 +#, fuzzy +msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Sunucuya yönlendirme yapılamadı: %s" -#: lib/action.php:448 +#: lib/action.php:453 #, fuzzy +msgctxt "MENU" +msgid "Connect" +msgstr "Bağlan" + +#. TRANS: Tooltip for menu option "Admin" +#: lib/action.php:457 +#, fuzzy +msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Abonelikler" -#: lib/action.php:452 lib/subgroupnav.php:105 -msgid "Invite" +#: lib/action.php:460 +msgctxt "MENU" +msgid "Admin" msgstr "" -#: lib/action.php:453 lib/subgroupnav.php:106 +#. TRANS: Tooltip for main menu option "Invite" +#: lib/action.php:464 #, php-format +msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "" -#: lib/action.php:458 -msgid "Logout" -msgstr "Çıkış" +#: lib/action.php:467 +#, fuzzy +msgctxt "MENU" +msgid "Invite" +msgstr "Geçersiz büyüklük." -#: lib/action.php:458 +#. TRANS: Tooltip for main menu option "Logout" +#: lib/action.php:473 +msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "" -#: lib/action.php:463 +#: lib/action.php:476 #, fuzzy +msgctxt "MENU" +msgid "Logout" +msgstr "Çıkış" + +#. TRANS: Tooltip for main menu option "Register" +#: lib/action.php:481 +#, fuzzy +msgctxt "TOOLTIP" msgid "Create an account" msgstr "Yeni hesap oluştur" -#: lib/action.php:466 +#: lib/action.php:484 +#, fuzzy +msgctxt "MENU" +msgid "Register" +msgstr "Kayıt" + +#. TRANS: Tooltip for main menu option "Login" +#: lib/action.php:487 +msgctxt "TOOLTIP" msgid "Login to the site" msgstr "" -#: lib/action.php:469 lib/action.php:732 -msgid "Help" -msgstr "Yardım" - -#: lib/action.php:469 +#: lib/action.php:490 #, fuzzy +msgctxt "MENU" +msgid "Login" +msgstr "Giriş" + +#. TRANS: Tooltip for main menu option "Help" +#: lib/action.php:493 +#, fuzzy +msgctxt "TOOLTIP" msgid "Help me!" msgstr "Yardım" -#: lib/action.php:472 lib/searchaction.php:127 -msgid "Search" -msgstr "Ara" +#: lib/action.php:496 +#, fuzzy +msgctxt "MENU" +msgid "Help" +msgstr "Yardım" -#: lib/action.php:472 +#. TRANS: Tooltip for main menu option "Search" +#: lib/action.php:499 +msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "" -#: lib/action.php:493 +#: lib/action.php:502 +#, fuzzy +msgctxt "MENU" +msgid "Search" +msgstr "Ara" + +#. TRANS: DT element for site notice. String is hidden in default CSS. +#: lib/action.php:524 #, fuzzy msgid "Site notice" msgstr "Yeni durum mesajı" -#: lib/action.php:559 +#: lib/action.php:590 msgid "Local views" msgstr "" -#: lib/action.php:625 +#: lib/action.php:656 #, fuzzy msgid "Page notice" msgstr "Yeni durum mesajı" -#: lib/action.php:727 +#: lib/action.php:758 #, fuzzy msgid "Secondary site navigation" msgstr "Abonelikler" -#: lib/action.php:734 +#: lib/action.php:763 +msgid "Help" +msgstr "Yardım" + +#: lib/action.php:765 msgid "About" msgstr "Hakkında" -#: lib/action.php:736 +#: lib/action.php:767 msgid "FAQ" msgstr "SSS" -#: lib/action.php:740 +#: lib/action.php:771 msgid "TOS" msgstr "" -#: lib/action.php:743 +#: lib/action.php:774 msgid "Privacy" msgstr "Gizlilik" -#: lib/action.php:745 +#: lib/action.php:776 msgid "Source" msgstr "Kaynak" -#: lib/action.php:749 +#: lib/action.php:780 msgid "Contact" msgstr "İletişim" -#: lib/action.php:751 +#: lib/action.php:782 msgid "Badge" msgstr "" -#: lib/action.php:779 +#: lib/action.php:810 msgid "StatusNet software license" msgstr "" -#: lib/action.php:782 +#: lib/action.php:813 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4675,12 +4789,12 @@ msgstr "" "**%%site.name%%** [%%site.broughtby%%](%%site.broughtbyurl%%)\" tarafından " "hazırlanan anında mesajlaşma ağıdır. " -#: lib/action.php:784 +#: lib/action.php:815 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** bir aninda mesajlaşma sosyal ağıdır." -#: lib/action.php:786 +#: lib/action.php:817 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4691,114 +4805,165 @@ msgstr "" "licenses/agpl-3.0.html) lisansı ile korunan [StatusNet](http://status.net/) " "microbloglama yazılımının %s. versiyonunu kullanmaktadır." -#: lib/action.php:801 +#: lib/action.php:832 #, fuzzy msgid "Site content license" msgstr "Yeni durum mesajı" -#: lib/action.php:806 +#: lib/action.php:837 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:811 +#: lib/action.php:842 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:814 +#: lib/action.php:845 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" -#: lib/action.php:827 +#: lib/action.php:858 msgid "All " msgstr "" -#: lib/action.php:833 +#: lib/action.php:864 msgid "license." msgstr "" -#: lib/action.php:1132 +#: lib/action.php:1163 msgid "Pagination" msgstr "" -#: lib/action.php:1141 +#: lib/action.php:1172 #, fuzzy msgid "After" msgstr "« Sonra" -#: lib/action.php:1149 +#: lib/action.php:1180 #, fuzzy msgid "Before" msgstr "Önce »" -#: lib/activity.php:382 +#: lib/activity.php:449 msgid "Can't handle remote content yet." msgstr "" -#: lib/activity.php:410 +#: lib/activity.php:477 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activity.php:414 +#: lib/activity.php:481 msgid "Can't handle embedded Base64 content yet." msgstr "" -#: lib/adminpanelaction.php:96 +#. TRANS: Client error message +#: lib/adminpanelaction.php:98 msgid "You cannot make changes to this site." msgstr "" -#: lib/adminpanelaction.php:107 +#. TRANS: Client error message +#: lib/adminpanelaction.php:110 msgid "Changes to that panel are not allowed." msgstr "" -#: lib/adminpanelaction.php:206 +#. TRANS: Client error message +#: lib/adminpanelaction.php:211 msgid "showForm() not implemented." msgstr "" -#: lib/adminpanelaction.php:235 +#. TRANS: Client error message +#: lib/adminpanelaction.php:241 msgid "saveSettings() not implemented." msgstr "" -#: lib/adminpanelaction.php:258 +#. TRANS: Client error message +#: lib/adminpanelaction.php:265 msgid "Unable to delete design setting." msgstr "" -#: lib/adminpanelaction.php:312 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:330 #, fuzzy msgid "Basic site configuration" msgstr "Eposta adresi onayı" -#: lib/adminpanelaction.php:317 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:332 +#, fuzzy +msgctxt "MENU" +msgid "Site" +msgstr "Yeni durum mesajı" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:338 #, fuzzy msgid "Design configuration" msgstr "Eposta adresi onayı" -#: lib/adminpanelaction.php:322 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:340 +#, fuzzy +msgctxt "MENU" +msgid "Design" +msgstr "Kişisel" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:346 #, fuzzy msgid "User configuration" msgstr "Eposta adresi onayı" -#: lib/adminpanelaction.php:327 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:348 +msgctxt "MENU" +msgid "User" +msgstr "" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:354 #, fuzzy msgid "Access configuration" msgstr "Eposta adresi onayı" -#: lib/adminpanelaction.php:332 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:356 +#, fuzzy +msgctxt "MENU" +msgid "Access" +msgstr "Kabul et" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:362 #, fuzzy msgid "Paths configuration" msgstr "Eposta adresi onayı" -#: lib/adminpanelaction.php:337 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:364 +msgctxt "MENU" +msgid "Paths" +msgstr "" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:370 #, fuzzy msgid "Sessions configuration" msgstr "Eposta adresi onayı" -#: lib/apiauth.php:95 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:372 +#, fuzzy +msgctxt "MENU" +msgid "Sessions" +msgstr "Kişisel" + +#: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." msgstr "" -#: lib/apiauth.php:273 +#: lib/apiauth.php:272 #, php-format msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" msgstr "" @@ -4896,12 +5061,12 @@ msgstr "" msgid "Tags for this attachment" msgstr "" -#: lib/authenticationplugin.php:218 lib/authenticationplugin.php:223 +#: lib/authenticationplugin.php:220 lib/authenticationplugin.php:225 #, fuzzy msgid "Password changing failed" msgstr "Parola kaydedildi." -#: lib/authenticationplugin.php:233 +#: lib/authenticationplugin.php:235 #, fuzzy msgid "Password changing is not allowed" msgstr "Parola kaydedildi." @@ -5181,20 +5346,20 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:136 +#: lib/common.php:148 #, fuzzy msgid "No configuration file found. " msgstr "Onay kodu yok." -#: lib/common.php:137 +#: lib/common.php:149 msgid "I looked for configuration files in the following places: " msgstr "" -#: lib/common.php:139 +#: lib/common.php:151 msgid "You may wish to run the installer to fix this." msgstr "" -#: lib/common.php:140 +#: lib/common.php:152 msgid "Go to the installer." msgstr "" @@ -5392,24 +5557,24 @@ msgstr "Dosya yüklemede sistem hatası." msgid "Not an image or corrupt file." msgstr "Bu bir resim dosyası değil ya da dosyada hata var" -#: lib/imagefile.php:105 +#: lib/imagefile.php:109 msgid "Unsupported image file format." msgstr "Desteklenmeyen görüntü dosyası biçemi." -#: lib/imagefile.php:118 +#: lib/imagefile.php:122 #, fuzzy msgid "Lost our file." msgstr "Böyle bir durum mesajı yok." -#: lib/imagefile.php:150 lib/imagefile.php:197 +#: lib/imagefile.php:166 lib/imagefile.php:231 msgid "Unknown file type" msgstr "" -#: lib/imagefile.php:217 +#: lib/imagefile.php:251 msgid "MB" msgstr "" -#: lib/imagefile.php:219 +#: lib/imagefile.php:253 msgid "kB" msgstr "" @@ -5714,6 +5879,12 @@ msgstr "" msgid "Available characters" msgstr "6 veya daha fazla karakter" +#: lib/messageform.php:178 lib/noticeform.php:236 +#, fuzzy +msgctxt "Send button for sending notice" +msgid "Send" +msgstr "Gönder" + #: lib/noticeform.php:160 #, fuzzy msgid "Send a notice" @@ -5773,26 +5944,26 @@ msgstr "" msgid "at" msgstr "" -#: lib/noticelist.php:558 +#: lib/noticelist.php:566 #, fuzzy msgid "in context" msgstr "İçerik yok!" -#: lib/noticelist.php:583 +#: lib/noticelist.php:601 #, fuzzy msgid "Repeated by" msgstr "Yarat" -#: lib/noticelist.php:610 +#: lib/noticelist.php:628 msgid "Reply to this notice" msgstr "" -#: lib/noticelist.php:611 +#: lib/noticelist.php:629 #, fuzzy msgid "Reply" msgstr "cevapla" -#: lib/noticelist.php:655 +#: lib/noticelist.php:673 #, fuzzy msgid "Notice repeated" msgstr "Durum mesajları" @@ -5842,6 +6013,10 @@ msgstr "Cevaplar" msgid "Favorites" msgstr "" +#: lib/personalgroupnav.php:115 +msgid "User" +msgstr "" + #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "" @@ -5936,7 +6111,7 @@ msgstr "Böyle bir durum mesajı yok." msgid "Repeat this notice" msgstr "Böyle bir durum mesajı yok." -#: lib/router.php:665 +#: lib/router.php:668 msgid "No single user defined for single-user mode." msgstr "" @@ -5958,6 +6133,10 @@ msgstr "Ara" msgid "Keyword(s)" msgstr "" +#: lib/searchaction.php:127 +msgid "Search" +msgstr "Ara" + #: lib/searchaction.php:162 #, fuzzy msgid "Search help" @@ -6012,6 +6191,15 @@ msgstr "Uzaktan abonelik" msgid "Groups %s is a member of" msgstr "" +#: lib/subgroupnav.php:105 +msgid "Invite" +msgstr "" + +#: lib/subgroupnav.php:106 +#, php-format +msgid "Invite friends and colleagues to join you on %s" +msgstr "" + #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -6086,47 +6274,47 @@ msgstr "" msgid "Moderate" msgstr "" -#: lib/util.php:952 +#: lib/util.php:1013 msgid "a few seconds ago" msgstr "birkaç saniye önce" -#: lib/util.php:954 +#: lib/util.php:1015 msgid "about a minute ago" msgstr "yaklaşık bir dakika önce" -#: lib/util.php:956 +#: lib/util.php:1017 #, php-format msgid "about %d minutes ago" msgstr "yaklaşık %d dakika önce" -#: lib/util.php:958 +#: lib/util.php:1019 msgid "about an hour ago" msgstr "yaklaşık bir saat önce" -#: lib/util.php:960 +#: lib/util.php:1021 #, php-format msgid "about %d hours ago" msgstr "yaklaşık %d saat önce" -#: lib/util.php:962 +#: lib/util.php:1023 msgid "about a day ago" msgstr "yaklaşık bir gün önce" -#: lib/util.php:964 +#: lib/util.php:1025 #, php-format msgid "about %d days ago" msgstr "yaklaşık %d gün önce" -#: lib/util.php:966 +#: lib/util.php:1027 msgid "about a month ago" msgstr "yaklaşık bir ay önce" -#: lib/util.php:968 +#: lib/util.php:1029 #, php-format msgid "about %d months ago" msgstr "yaklaşık %d ay önce" -#: lib/util.php:970 +#: lib/util.php:1031 msgid "about a year ago" msgstr "yaklaşık bir yıl önce" diff --git a/locale/uk/LC_MESSAGES/statusnet.po b/locale/uk/LC_MESSAGES/statusnet.po index c261c310da..fd168ba50c 100644 --- a/locale/uk/LC_MESSAGES/statusnet.po +++ b/locale/uk/LC_MESSAGES/statusnet.po @@ -10,78 +10,85 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-02-24 23:49+0000\n" -"PO-Revision-Date: 2010-02-24 23:51:53+0000\n" +"POT-Creation-Date: 2010-03-02 21:02+0000\n" +"PO-Revision-Date: 2010-03-02 21:03:56+0000\n" "Language-Team: Ukrainian\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r62925); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" "10< =4 && (n%100<10 or n%100>=20) ? 1 : 2);\n" -#: actions/accessadminpanel.php:54 lib/adminpanelaction.php:326 +#. TRANS: Page title +#: actions/accessadminpanel.php:55 msgid "Access" msgstr "Погодитись" -#: actions/accessadminpanel.php:65 +#. TRANS: Page notice +#: actions/accessadminpanel.php:67 msgid "Site access settings" msgstr "Параметри доступу на сайт" -#: actions/accessadminpanel.php:158 +#. TRANS: Form legend for registration form. +#: actions/accessadminpanel.php:161 msgid "Registration" msgstr "Реєстрація" -#: actions/accessadminpanel.php:161 -msgid "Private" -msgstr "Приватно" - -#: actions/accessadminpanel.php:163 +#. TRANS: Checkbox instructions for admin setting "Private" +#: actions/accessadminpanel.php:165 msgid "Prohibit anonymous users (not logged in) from viewing site?" msgstr "" "Заборонити анонімним відвідувачам (ті, що не увійшли до системи) переглядати " "сайт?" +#. TRANS: Checkbox label for prohibiting anonymous users from viewing site. #: actions/accessadminpanel.php:167 -msgid "Invite only" -msgstr "Лише за запрошеннями" +#, fuzzy +msgctxt "LABEL" +msgid "Private" +msgstr "Приватно" -#: actions/accessadminpanel.php:169 +#. TRANS: Checkbox instructions for admin setting "Invite only" +#: actions/accessadminpanel.php:174 msgid "Make registration invitation only." msgstr "Зробити регістрацію лише за запрошеннями." -#: actions/accessadminpanel.php:173 -msgid "Closed" -msgstr "Закрито" +#. TRANS: Checkbox label for configuring site as invite only. +#: actions/accessadminpanel.php:176 +msgid "Invite only" +msgstr "Лише за запрошеннями" -#: actions/accessadminpanel.php:175 +#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations) +#: actions/accessadminpanel.php:183 msgid "Disable new registrations." msgstr "Скасувати подальшу регістрацію." -#: actions/accessadminpanel.php:189 actions/designadminpanel.php:586 -#: actions/emailsettings.php:195 actions/imsettings.php:163 -#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 -#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 -#: actions/siteadminpanel.php:336 actions/smssettings.php:181 -#: actions/subscriptions.php:208 actions/tagother.php:154 -#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 -#: lib/applicationeditform.php:334 lib/designsettings.php:256 -#: lib/groupeditform.php:202 -msgid "Save" -msgstr "Зберегти" +#. TRANS: Checkbox label for disabling new user registrations. +#: actions/accessadminpanel.php:185 +msgid "Closed" +msgstr "Закрито" -#: actions/accessadminpanel.php:189 +#. TRANS: Title / tooltip for button to save access settings in site admin panel +#: actions/accessadminpanel.php:202 msgid "Save access settings" msgstr "Зберегти параметри доступу" -#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 -#: actions/showfavorites.php:137 actions/tag.php:51 +#: actions/accessadminpanel.php:203 +#, fuzzy +msgctxt "BUTTON" +msgid "Save" +msgstr "Зберегти" + +#. TRANS: Server error when page not found (404) +#: actions/all.php:64 actions/public.php:98 actions/replies.php:93 +#: actions/showfavorites.php:138 actions/tag.php:52 msgid "No such page" msgstr "Немає такої сторінки" -#: actions/all.php:74 actions/allrss.php:68 +#: actions/all.php:75 actions/allrss.php:68 #: actions/apiaccountupdatedeliverydevice.php:113 #: actions/apiaccountupdateprofile.php:105 #: actions/apiaccountupdateprofilebackgroundimage.php:116 @@ -95,51 +102,59 @@ msgstr "Немає такої сторінки" #: actions/apitimelinehome.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/otp.php:76 -#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154 -#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 -#: actions/showfavorites.php:105 actions/userbyid.php:74 -#: actions/usergroups.php:91 actions/userrss.php:38 actions/xrds.php:71 -#: lib/command.php:163 lib/command.php:302 lib/command.php:355 -#: lib/command.php:401 lib/command.php:462 lib/command.php:518 -#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 +#: actions/hcard.php:67 actions/microsummary.php:62 actions/newmessage.php:116 +#: actions/otp.php:76 actions/remotesubscribe.php:145 +#: actions/remotesubscribe.php:154 actions/replies.php:73 +#: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/xrds.php:71 lib/command.php:163 lib/command.php:302 +#: lib/command.php:355 lib/command.php:401 lib/command.php:462 +#: lib/command.php:518 lib/galleryaction.php:59 lib/mailbox.php:82 +#: lib/profileaction.php:77 msgid "No such user." msgstr "Такого користувача немає." -#: actions/all.php:84 +#. TRANS: Page title. %1$s is user nickname, %2$d is page number +#: actions/all.php:86 #, php-format msgid "%1$s and friends, page %2$d" msgstr "%1$s та друзі, сторінка %2$d" -#: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 +#. TRANS: Page title. %1$s is user nickname +#. TRANS: H1 text. %1$s is user nickname +#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" msgstr "%s з друзями" -#: actions/all.php:99 +#. TRANS: %1$s is user nickname +#: actions/all.php:103 #, php-format msgid "Feed for friends of %s (RSS 1.0)" msgstr "Стрічка дописів для друзів %s (RSS 1.0)" -#: actions/all.php:107 +#. TRANS: %1$s is user nickname +#: actions/all.php:112 #, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "Стрічка дописів для друзів %s (RSS 2.0)" -#: actions/all.php:115 +#. TRANS: %1$s is user nickname +#: actions/all.php:121 #, php-format msgid "Feed for friends of %s (Atom)" msgstr "Стрічка дописів для друзів %s (Atom)" -#: actions/all.php:127 +#. TRANS: %1$s is user nickname +#: actions/all.php:134 #, php-format msgid "" "This is the timeline for %s and friends but no one has posted anything yet." msgstr "Це стрічка дописів %s і друзів, але вона поки що порожня." -#: actions/all.php:132 +#: actions/all.php:139 #, php-format msgid "" "Try subscribing to more people, [join a group](%%action.groups%%) or post " @@ -148,7 +163,8 @@ msgstr "" "Спробуйте до когось підписатись, [приєднатись до групи](%%action.groups%%) " "або напишіть щось самі." -#: actions/all.php:134 +#. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@" +#: actions/all.php:142 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) from his profile or [post something to " @@ -157,7 +173,7 @@ msgstr "" "Ви можете [«розштовхати» %1$s](../%2$s) зі сторінки його профілю або [щось " "йому написати](%%%%action.newnotice%%%%?status_textarea=%3$s)." -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211 +#: actions/all.php:145 actions/replies.php:210 actions/showstream.php:211 #, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " @@ -166,7 +182,8 @@ msgstr "" "Чому б не [зареєструватись](%%%%action.register%%%%) і не спробувати " "«розштовхати» %s або щось йому написати." -#: actions/all.php:165 +#. TRANS: H1 text +#: actions/all.php:174 msgid "You and friends" msgstr "Ви з друзями" @@ -184,20 +201,20 @@ msgstr "Оновлення від %1$s та друзів на %2$s!" #: actions/apiaccountverifycredentials.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:128 actions/apigroupcreate.php:136 +#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: actions/apigroupleave.php:141 actions/apigrouplist.php:132 #: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 #: actions/apigroupshow.php:115 actions/apihelptest.php:88 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 -#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184 +#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 #: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:207 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 msgid "API method not found." msgstr "API метод не знайдено." @@ -230,8 +247,9 @@ msgstr "Не вдалося оновити користувача." #: actions/apiaccountupdateprofilebackgroundimage.php:194 #: actions/apiaccountupdateprofilecolors.php:185 #: 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 +#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 +#: actions/replies.php:80 actions/usergroups.php:98 lib/galleryaction.php:66 +#: lib/profileaction.php:84 msgid "User has no profile." msgstr "Користувач не має профілю." @@ -257,7 +275,7 @@ msgstr "" #: actions/apiaccountupdateprofilebackgroundimage.php:146 #: actions/apiaccountupdateprofilecolors.php:164 #: actions/apiaccountupdateprofilecolors.php:174 -#: actions/groupdesignsettings.php:287 actions/groupdesignsettings.php:297 +#: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300 #: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 #: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 msgid "Unable to save your design settings." @@ -368,7 +386,7 @@ msgstr "Не вдалось встановити джерело користув msgid "Could not find target user." msgstr "Не вдалося знайти цільового користувача." -#: actions/apigroupcreate.php:164 actions/editgroup.php:182 +#: actions/apigroupcreate.php:166 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:215 #: actions/register.php:205 msgid "Nickname must have only lowercase letters and numbers and no spaces." @@ -376,62 +394,62 @@ msgstr "" "Ім’я користувача повинно складатись з літер нижнього регістру і цифр, ніяких " "інтервалів." -#: actions/apigroupcreate.php:173 actions/editgroup.php:186 +#: actions/apigroupcreate.php:175 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:238 #: actions/register.php:208 msgid "Nickname already in use. Try another one." msgstr "Це ім’я вже використовується. Спробуйте інше." -#: actions/apigroupcreate.php:180 actions/editgroup.php:189 +#: actions/apigroupcreate.php:182 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:218 #: actions/register.php:210 msgid "Not a valid nickname." msgstr "Це недійсне ім’я користувача." -#: actions/apigroupcreate.php:196 actions/editapplication.php:215 -#: actions/editgroup.php:195 actions/newapplication.php:203 +#: actions/apigroupcreate.php:198 actions/editapplication.php:215 +#: actions/editgroup.php:199 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:217 msgid "Homepage is not a valid URL." msgstr "Веб-сторінка має недійсну URL-адресу." -#: actions/apigroupcreate.php:205 actions/editgroup.php:198 +#: actions/apigroupcreate.php:207 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:225 #: actions/register.php:220 msgid "Full name is too long (max 255 chars)." msgstr "Повне ім’я задовге (255 знаків максимум)" -#: actions/apigroupcreate.php:213 actions/editapplication.php:190 +#: actions/apigroupcreate.php:215 actions/editapplication.php:190 #: actions/newapplication.php:172 #, php-format msgid "Description is too long (max %d chars)." msgstr "Опис надто довгий (%d знаків максимум)." -#: actions/apigroupcreate.php:224 actions/editgroup.php:204 +#: actions/apigroupcreate.php:226 actions/editgroup.php:208 #: actions/newgroup.php:148 actions/profilesettings.php:232 #: actions/register.php:227 msgid "Location is too long (max 255 chars)." msgstr "Локація надто довга (255 знаків максимум)." -#: actions/apigroupcreate.php:243 actions/editgroup.php:215 +#: actions/apigroupcreate.php:245 actions/editgroup.php:219 #: actions/newgroup.php:159 #, php-format msgid "Too many aliases! Maximum %d." msgstr "Забагато додаткових імен! Максимум становить %d." -#: actions/apigroupcreate.php:264 actions/editgroup.php:224 +#: actions/apigroupcreate.php:266 actions/editgroup.php:228 #: actions/newgroup.php:168 #, php-format msgid "Invalid alias: \"%s\"" msgstr "Помилкове додаткове ім’я: \"%s\"" -#: actions/apigroupcreate.php:273 actions/editgroup.php:228 +#: actions/apigroupcreate.php:275 actions/editgroup.php:232 #: actions/newgroup.php:172 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "Додаткове ім’я \"%s\" вже використовується. Спробуйте інше." -#: actions/apigroupcreate.php:286 actions/editgroup.php:234 +#: actions/apigroupcreate.php:288 actions/editgroup.php:238 #: actions/newgroup.php:178 msgid "Alias can't be the same as nickname." msgstr "Додаткове ім’я не може бути таким самим що й основне." @@ -442,15 +460,15 @@ msgstr "Додаткове ім’я не може бути таким сами msgid "Group not found!" msgstr "Групу не знайдено!" -#: actions/apigroupjoin.php:110 actions/joingroup.php:90 +#: actions/apigroupjoin.php:110 actions/joingroup.php:100 msgid "You are already a member of that group." msgstr "Ви вже є учасником цієї групи." -#: actions/apigroupjoin.php:119 actions/joingroup.php:95 lib/command.php:221 +#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:221 msgid "You have been blocked from that group by the admin." msgstr "Адмін цієї групи заблокував Вашу присутність в ній." -#: actions/apigroupjoin.php:138 actions/joingroup.php:124 +#: actions/apigroupjoin.php:138 actions/joingroup.php:134 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Не вдалось долучити користувача %1$s до групи %2$s." @@ -459,7 +477,7 @@ msgstr "Не вдалось долучити користувача %1$s до г msgid "You are not a member of this group." msgstr "Ви не є учасником цієї групи." -#: actions/apigroupleave.php:124 actions/leavegroup.php:119 +#: actions/apigroupleave.php:124 actions/leavegroup.php:129 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "Не вдалось видалити користувача %1$s з групи %2$s." @@ -490,7 +508,7 @@ msgstr "Невірний токен." #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 #: actions/deletenotice.php:157 actions/disfavor.php:74 #: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54 -#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupblock.php:66 actions/grouplogo.php:312 #: actions/groupunblock.php:66 actions/imsettings.php:206 #: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 @@ -534,7 +552,7 @@ msgstr "Токен запиту %s було скасовано і відхиле #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:103 actions/editapplication.php:139 -#: actions/emailsettings.php:256 actions/grouplogo.php:319 +#: actions/emailsettings.php:256 actions/grouplogo.php:322 #: actions/imsettings.php:220 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 #: actions/smssettings.php:248 lib/designsettings.php:304 @@ -561,13 +579,13 @@ msgstr "" "на доступ до Вашого акаунту %4$s лише тим стороннім додаткам, яким Ви " "довіряєте." -#: actions/apioauthauthorize.php:310 lib/action.php:441 +#: actions/apioauthauthorize.php:310 msgid "Account" msgstr "Акаунт" #: actions/apioauthauthorize.php:313 actions/login.php:230 #: actions/profilesettings.php:106 actions/register.php:424 -#: actions/showgroup.php:236 actions/tagother.php:94 +#: actions/showgroup.php:244 actions/tagother.php:94 #: actions/userauthorization.php:145 lib/groupeditform.php:152 #: lib/userprofile.php:131 msgid "Nickname" @@ -651,12 +669,12 @@ msgid "%1$s updates favorited by %2$s / %2$s." msgstr "%1$s оновлення обраних від %2$s / %2$s." #: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:131 actions/userrss.php:90 +#: actions/grouprss.php:138 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "%s стрічка" -#: actions/apitimelinegroup.php:114 actions/apitimelineuser.php:126 +#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 #: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" @@ -692,7 +710,7 @@ msgstr "Вторування за %s" msgid "Repeats of %s" msgstr "Вторування %s" -#: actions/apitimelinetag.php:102 actions/tag.php:66 +#: actions/apitimelinetag.php:102 actions/tag.php:67 #, php-format msgid "Notices tagged with %s" msgstr "Дописи позначені з %s" @@ -713,8 +731,7 @@ msgstr "Такого вкладення немає." #: actions/avatarbynickname.php:59 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/leavegroup.php:76 -#: actions/showgroup.php:121 +#: actions/grouprss.php:91 actions/showgroup.php:121 msgid "No nickname." msgstr "Немає імені." @@ -726,7 +743,7 @@ msgstr "Немає розміру." msgid "Invalid size." msgstr "Недійсний розмір." -#: actions/avatarsettings.php:67 actions/showgroup.php:221 +#: actions/avatarsettings.php:67 actions/showgroup.php:229 #: lib/accountsettingsaction.php:112 msgid "Avatar" msgstr "Аватара" @@ -743,30 +760,30 @@ msgid "User without matching profile" msgstr "Користувач з невідповідним профілем" #: actions/avatarsettings.php:119 actions/avatarsettings.php:197 -#: actions/grouplogo.php:251 +#: actions/grouplogo.php:254 msgid "Avatar settings" msgstr "Налаштування аватари" #: actions/avatarsettings.php:127 actions/avatarsettings.php:205 -#: actions/grouplogo.php:199 actions/grouplogo.php:259 +#: actions/grouplogo.php:202 actions/grouplogo.php:262 msgid "Original" msgstr "Оригінал" #: actions/avatarsettings.php:142 actions/avatarsettings.php:217 -#: actions/grouplogo.php:210 actions/grouplogo.php:271 +#: actions/grouplogo.php:213 actions/grouplogo.php:274 msgid "Preview" msgstr "Перегляд" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:637 +#: lib/deleteuserform.php:66 lib/noticelist.php:655 msgid "Delete" msgstr "Видалити" -#: actions/avatarsettings.php:166 actions/grouplogo.php:233 +#: actions/avatarsettings.php:166 actions/grouplogo.php:236 msgid "Upload" msgstr "Завантажити" -#: actions/avatarsettings.php:231 actions/grouplogo.php:286 +#: actions/avatarsettings.php:231 actions/grouplogo.php:289 msgid "Crop" msgstr "Втяти" @@ -774,7 +791,7 @@ msgstr "Втяти" msgid "Pick a square area of the image to be your avatar" msgstr "Оберіть квадратну ділянку зображення, яка й буде Вашою автарою." -#: actions/avatarsettings.php:343 actions/grouplogo.php:377 +#: actions/avatarsettings.php:343 actions/grouplogo.php:380 msgid "Lost our file data." msgstr "Дані Вашого файлу десь загубились." @@ -809,22 +826,22 @@ msgstr "" "більше не отримуватимете жодних дописів від нього." #: actions/block.php:143 actions/deleteapplication.php:153 -#: actions/deletenotice.php:145 actions/deleteuser.php:147 +#: actions/deletenotice.php:145 actions/deleteuser.php:150 #: actions/groupblock.php:178 msgid "No" msgstr "Ні" -#: actions/block.php:143 actions/deleteuser.php:147 +#: actions/block.php:143 actions/deleteuser.php:150 msgid "Do not block this user" msgstr "Не блокувати цього користувача" #: actions/block.php:144 actions/deleteapplication.php:158 -#: actions/deletenotice.php:146 actions/deleteuser.php:148 +#: actions/deletenotice.php:146 actions/deleteuser.php:151 #: actions/groupblock.php:179 lib/repeatform.php:132 msgid "Yes" msgstr "Так" -#: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:355 lib/blockform.php:80 msgid "Block this user" msgstr "Блокувати користувача" @@ -832,39 +849,43 @@ msgstr "Блокувати користувача" msgid "Failed to save block information." msgstr "Збереження інформації про блокування завершилось невдачею." -#: actions/blockedfromgroup.php:80 actions/editgroup.php:96 -#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/groupblock.php:86 -#: actions/groupbyid.php:83 actions/groupdesignsettings.php:97 -#: actions/grouplogo.php:99 actions/groupmembers.php:83 -#: actions/grouprss.php:98 actions/groupunblock.php:86 -#: actions/joingroup.php:83 actions/leavegroup.php:83 actions/makeadmin.php:86 -#: actions/showgroup.php:137 lib/command.php:212 lib/command.php:260 +#: actions/blockedfromgroup.php:80 actions/blockedfromgroup.php:87 +#: actions/editgroup.php:100 actions/foafgroup.php:44 actions/foafgroup.php:62 +#: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:100 actions/grouplogo.php:102 +#: actions/groupmembers.php:83 actions/groupmembers.php:90 +#: actions/grouprss.php:98 actions/grouprss.php:105 +#: actions/groupunblock.php:86 actions/joingroup.php:82 +#: actions/joingroup.php:93 actions/leavegroup.php:82 +#: actions/leavegroup.php:93 actions/makeadmin.php:86 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:212 +#: lib/command.php:260 msgid "No such group." msgstr "Такої групи немає." -#: actions/blockedfromgroup.php:90 +#: actions/blockedfromgroup.php:97 #, php-format msgid "%s blocked profiles" msgstr "Заблоковані профілі %s" -#: actions/blockedfromgroup.php:93 +#: actions/blockedfromgroup.php:100 #, php-format msgid "%1$s blocked profiles, page %2$d" msgstr "Заблоковані профілі %1$s, сторінка %2$d" -#: actions/blockedfromgroup.php:108 +#: actions/blockedfromgroup.php:115 msgid "A list of the users blocked from joining this group." msgstr "Список користувачів блокованих в цій групі." -#: actions/blockedfromgroup.php:281 +#: actions/blockedfromgroup.php:288 msgid "Unblock user from group" msgstr "Розблокувати користувача" -#: actions/blockedfromgroup.php:313 lib/unblockform.php:69 +#: actions/blockedfromgroup.php:320 lib/unblockform.php:69 msgid "Unblock" msgstr "Розблокувати" -#: actions/blockedfromgroup.php:313 lib/unblockform.php:80 +#: actions/blockedfromgroup.php:320 lib/unblockform.php:80 msgid "Unblock this user" msgstr "Розблокувати цього користувача" @@ -939,7 +960,7 @@ msgstr "Ви не є власником цього додатку." #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1197 +#: lib/action.php:1228 msgid "There was a problem with your session token." msgstr "Виникли певні проблеми з токеном поточної сесії." @@ -965,12 +986,13 @@ msgstr "Не видаляти додаток" msgid "Delete this application" msgstr "Видалити додаток" +#. TRANS: Client error message #: 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:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 -#: lib/adminpanelaction.php:72 lib/profileformaction.php:63 +#: lib/adminpanelaction.php:73 lib/profileformaction.php:63 #: lib/settingsaction.php:72 msgid "Not logged in." msgstr "Не увійшли." @@ -997,7 +1019,7 @@ msgstr "Ви впевненні, що бажаєте видалити цей д msgid "Do not delete this notice" msgstr "Не видаляти цей допис" -#: actions/deletenotice.php:146 lib/noticelist.php:637 +#: actions/deletenotice.php:146 lib/noticelist.php:655 msgid "Delete this notice" msgstr "Видалити допис" @@ -1013,7 +1035,7 @@ msgstr "Ви можете видаляти лише локальних кори msgid "Delete user" msgstr "Видалити користувача" -#: actions/deleteuser.php:135 +#: actions/deleteuser.php:136 msgid "" "Are you sure you want to delete this user? This will clear all data about " "the user from the database, without a backup." @@ -1021,12 +1043,12 @@ msgstr "" "Впевнені, що бажаєте видалити цього користувача? Усі дані буде знищено без " "можливості відновлення." -#: actions/deleteuser.php:148 lib/deleteuserform.php:77 +#: actions/deleteuser.php:151 lib/deleteuserform.php:77 msgid "Delete this user" msgstr "Видалити цього користувача" #: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 -#: lib/adminpanelaction.php:316 lib/groupnav.php:119 +#: lib/groupnav.php:119 msgid "Design" msgstr "Дизайн" @@ -1129,6 +1151,17 @@ msgstr "Оновити налаштування за замовчуванням" msgid "Reset back to default" msgstr "Повернутись до початкових налаштувань" +#: actions/designadminpanel.php:586 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/tagother.php:154 actions/useradminpanel.php:294 +#: lib/applicationeditform.php:333 lib/applicationeditform.php:334 +#: lib/designsettings.php:256 lib/groupeditform.php:202 +msgid "Save" +msgstr "Зберегти" + #: actions/designadminpanel.php:587 lib/designsettings.php:257 msgid "Save design" msgstr "Зберегти дизайн" @@ -1220,29 +1253,29 @@ msgstr "Редагувати групу %s" msgid "You must be logged in to create a group." msgstr "Ви маєте спочатку увійти, аби мати змогу створити групу." -#: actions/editgroup.php:103 actions/editgroup.php:168 -#: actions/groupdesignsettings.php:104 actions/grouplogo.php:106 +#: actions/editgroup.php:107 actions/editgroup.php:172 +#: actions/groupdesignsettings.php:107 actions/grouplogo.php:109 msgid "You must be an admin to edit the group." msgstr "Ви маєте бути наділені правами адмінистратора, аби редагувати групу" -#: actions/editgroup.php:154 +#: actions/editgroup.php:158 msgid "Use this form to edit the group." msgstr "Скористайтесь цією формою, щоб відредагувати групу." -#: actions/editgroup.php:201 actions/newgroup.php:145 +#: actions/editgroup.php:205 actions/newgroup.php:145 #, php-format msgid "description is too long (max %d chars)." msgstr "опис надто довгий (%d знаків максимум)." -#: actions/editgroup.php:253 +#: actions/editgroup.php:258 msgid "Could not update group." msgstr "Не вдалося оновити групу." -#: actions/editgroup.php:259 classes/User_group.php:433 +#: actions/editgroup.php:264 classes/User_group.php:478 msgid "Could not create aliases." msgstr "Неможна призначити додаткові імена." -#: actions/editgroup.php:269 +#: actions/editgroup.php:280 msgid "Options saved." msgstr "Опції збережено." @@ -1580,7 +1613,7 @@ msgstr "Користувача заблоковано в цій групі." msgid "User is not a member of group." msgstr "Користувач не є учасником групи." -#: actions/groupblock.php:136 actions/groupmembers.php:316 +#: actions/groupblock.php:136 actions/groupmembers.php:323 msgid "Block user from group" msgstr "Блокувати користувача в групі" @@ -1615,11 +1648,11 @@ msgstr "Немає ID." msgid "You must be logged in to edit a group." msgstr "Ви маєте спочатку увійти, аби мати змогу редагувати групу." -#: actions/groupdesignsettings.php:141 +#: actions/groupdesignsettings.php:144 msgid "Group design" msgstr "Дизайн групи" -#: actions/groupdesignsettings.php:152 +#: actions/groupdesignsettings.php:155 msgid "" "Customize the way your group looks with a background image and a colour " "palette of your choice." @@ -1627,20 +1660,20 @@ msgstr "" "Налаштуйте вигляд сторінки групи, використовуючи фонове зображення і кольори " "на свій смак." -#: actions/groupdesignsettings.php:263 actions/userdesignsettings.php:186 +#: actions/groupdesignsettings.php:266 actions/userdesignsettings.php:186 #: lib/designsettings.php:391 lib/designsettings.php:413 msgid "Couldn't update your design." msgstr "Не вдалося оновити дизайн." -#: actions/groupdesignsettings.php:308 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231 msgid "Design preferences saved." msgstr "Преференції дизайну збережно." -#: actions/grouplogo.php:139 actions/grouplogo.php:192 +#: actions/grouplogo.php:142 actions/grouplogo.php:195 msgid "Group logo" msgstr "Логотип групи" -#: actions/grouplogo.php:150 +#: actions/grouplogo.php:153 #, php-format msgid "" "You can upload a logo image for your group. The maximum file size is %s." @@ -1648,57 +1681,57 @@ msgstr "" "Ви маєте можливість завантажити логотип для Вашої группи. Максимальний " "розмір файлу %s." -#: actions/grouplogo.php:178 +#: actions/grouplogo.php:181 msgid "User without matching profile." msgstr "Користувач без відповідного профілю." -#: actions/grouplogo.php:362 +#: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." msgstr "Оберіть квадратну ділянку зображення, яка й буде логотипом групи." -#: actions/grouplogo.php:396 +#: actions/grouplogo.php:399 msgid "Logo updated." msgstr "Логотип оновлено." -#: actions/grouplogo.php:398 +#: actions/grouplogo.php:401 msgid "Failed updating logo." msgstr "Оновлення логотипу завершилось невдачею." -#: actions/groupmembers.php:93 lib/groupnav.php:92 +#: actions/groupmembers.php:100 lib/groupnav.php:92 #, php-format msgid "%s group members" msgstr "Учасники групи %s" -#: actions/groupmembers.php:96 +#: actions/groupmembers.php:103 #, php-format msgid "%1$s group members, page %2$d" msgstr "Учасники групи %1$s, сторінка %2$d" -#: actions/groupmembers.php:111 +#: actions/groupmembers.php:118 msgid "A list of the users in this group." msgstr "Список учасників цієї групи." -#: actions/groupmembers.php:175 lib/action.php:448 lib/groupnav.php:107 +#: actions/groupmembers.php:182 lib/groupnav.php:107 msgid "Admin" msgstr "Адмін" -#: actions/groupmembers.php:348 lib/blockform.php:69 +#: actions/groupmembers.php:355 lib/blockform.php:69 msgid "Block" msgstr "Блок" -#: actions/groupmembers.php:443 +#: actions/groupmembers.php:450 msgid "Make user an admin of the group" msgstr "Надати користувачеві права адміністратора" -#: actions/groupmembers.php:475 +#: actions/groupmembers.php:482 msgid "Make Admin" msgstr "Зробити адміном" -#: actions/groupmembers.php:475 +#: actions/groupmembers.php:482 msgid "Make this user an admin" msgstr "Надати цьому користувачеві права адміністратора" -#: actions/grouprss.php:133 +#: actions/grouprss.php:140 #, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Оновлення членів %1$s на %2$s!" @@ -1964,16 +1997,19 @@ msgstr "Особисті повідомлення" msgid "Optionally add a personal message to the invitation." msgstr "Можна додати персональне повідомлення до запрошення (опціонально)." -#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:236 +#. TRANS: Send button for inviting friends +#: actions/invite.php:198 +#, fuzzy +msgctxt "BUTTON" msgid "Send" -msgstr "Так!" +msgstr "Надіслати" -#: actions/invite.php:226 +#: actions/invite.php:227 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "%1$s запросив(ла) Вас приєднатися до нього(неї) на %2$s" -#: actions/invite.php:228 +#: actions/invite.php:229 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -2035,7 +2071,11 @@ msgstr "" msgid "You must be logged in to join a group." msgstr "Ви повинні спочатку увійти на сайт, аби приєднатися до групи." -#: actions/joingroup.php:131 +#: actions/joingroup.php:88 actions/leavegroup.php:88 +msgid "No nickname or ID." +msgstr "Немає імені або ІД." + +#: actions/joingroup.php:141 #, php-format msgid "%1$s joined group %2$s" msgstr "%1$s приєднався до групи %2$s" @@ -2044,11 +2084,11 @@ msgstr "%1$s приєднався до групи %2$s" msgid "You must be logged in to leave a group." msgstr "Ви повинні спочатку увійти на сайт, аби залишити групу." -#: actions/leavegroup.php:90 lib/command.php:265 +#: actions/leavegroup.php:100 lib/command.php:265 msgid "You are not a member of that group." msgstr "Ви не є учасником цієї групи." -#: actions/leavegroup.php:127 +#: actions/leavegroup.php:137 #, php-format msgid "%1$s left group %2$s" msgstr "%1$s залишив групу %2$s" @@ -2065,8 +2105,7 @@ msgstr "Неточне ім’я або пароль." msgid "Error setting user. You are probably not authorized." msgstr "Помилка. Можливо, Ви не авторизовані." -#: actions/login.php:188 actions/login.php:241 lib/action.php:466 -#: lib/logingroupnav.php:79 +#: actions/login.php:188 actions/login.php:241 lib/logingroupnav.php:79 msgid "Login" msgstr "Увійти" @@ -2322,8 +2361,8 @@ msgstr "тип змісту " msgid "Only " msgstr "Лише " -#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 -#: lib/api.php:1068 lib/api.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 +#: lib/apiaction.php:1068 lib/apiaction.php:1177 msgid "Not a supported data format." msgstr "Такий формат даних не підтримується." @@ -2464,7 +2503,7 @@ msgstr "Неможна зберегти новий пароль." msgid "Password saved." msgstr "Пароль збережено." -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:331 +#: actions/pathsadminpanel.php:59 msgid "Paths" msgstr "Шлях" @@ -2497,7 +2536,6 @@ msgid "Invalid SSL server. The maximum length is 255 characters." msgstr "Помилковий SSL-сервер. Максимальна довжина 255 знаків." #: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58 -#: lib/adminpanelaction.php:311 msgid "Site" msgstr "Сайт" @@ -2670,7 +2708,7 @@ msgstr "" "1-64 літери нижнього регістру і цифри, ніякої пунктуації або інтервалів" #: actions/profilesettings.php:111 actions/register.php:448 -#: actions/showgroup.php:247 actions/tagother.php:104 +#: actions/showgroup.php:255 actions/tagother.php:104 #: lib/groupeditform.php:157 lib/userprofile.php:149 msgid "Full name" msgstr "Повне ім’я" @@ -2698,7 +2736,7 @@ msgid "Bio" msgstr "Про себе" #: actions/profilesettings.php:132 actions/register.php:471 -#: actions/showgroup.php:256 actions/tagother.php:112 +#: actions/showgroup.php:264 actions/tagother.php:112 #: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:164 msgid "Location" @@ -2781,7 +2819,8 @@ msgstr "Не вдалося зберегти профіль." msgid "Couldn't save tags." msgstr "Не вдалося зберегти теґи." -#: actions/profilesettings.php:391 lib/adminpanelaction.php:137 +#. TRANS: Message after successful saving of administrative settings. +#: actions/profilesettings.php:391 lib/adminpanelaction.php:141 msgid "Settings saved." msgstr "Налаштування збережено." @@ -2794,28 +2833,28 @@ msgstr "Досягнуто ліміту сторінки (%s)" msgid "Could not retrieve public stream." msgstr "Не вдається відновити загальну стрічку." -#: actions/public.php:129 +#: actions/public.php:130 #, php-format msgid "Public timeline, page %d" msgstr "Загальний стрічка, сторінка %d" -#: actions/public.php:131 lib/publicgroupnav.php:79 +#: actions/public.php:132 lib/publicgroupnav.php:79 msgid "Public timeline" msgstr "Загальна стрічка" -#: actions/public.php:159 +#: actions/public.php:160 msgid "Public Stream Feed (RSS 1.0)" msgstr "Стрічка публічних дописів (RSS 1.0)" -#: actions/public.php:163 +#: actions/public.php:164 msgid "Public Stream Feed (RSS 2.0)" msgstr "Стрічка публічних дописів (RSS 2.0)" -#: actions/public.php:167 +#: actions/public.php:168 msgid "Public Stream Feed (Atom)" msgstr "Стрічка публічних дописів (Atom)" -#: actions/public.php:187 +#: actions/public.php:188 #, php-format msgid "" "This is the public timeline for %%site.name%% but no one has posted anything " @@ -2823,11 +2862,11 @@ msgid "" msgstr "" "Це публічна стрічка дописів сайту %%site.name%%, але вона поки що порожня." -#: actions/public.php:190 +#: actions/public.php:191 msgid "Be the first to post!" msgstr "Станьте першим! Напишіть щось!" -#: actions/public.php:194 +#: actions/public.php:195 #, php-format msgid "" "Why not [register an account](%%action.register%%) and be the first to post!" @@ -2835,7 +2874,7 @@ msgstr "" "Чому б не [зареєструватись](%%action.register%%) і не зробити свій перший " "допис!" -#: actions/public.php:241 +#: actions/public.php:242 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2849,7 +2888,7 @@ msgstr "" "розділити своє життя з друзями, родиною і колегами! ([Дізнатися більше](%%" "doc.help%%))" -#: actions/public.php:246 +#: actions/public.php:247 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -3029,8 +3068,7 @@ msgstr "Даруйте, помилка у коді запрошення." msgid "Registration successful" msgstr "Реєстрація успішна" -#: actions/register.php:114 actions/register.php:503 lib/action.php:463 -#: lib/logingroupnav.php:85 +#: actions/register.php:114 actions/register.php:503 lib/logingroupnav.php:85 msgid "Register" msgstr "Реєстрація" @@ -3215,7 +3253,7 @@ msgstr "Ви не можете вторувати своїм власним до msgid "You already repeated that notice." msgstr "Ви вже вторували цьому допису." -#: actions/repeat.php:114 lib/noticelist.php:656 +#: actions/repeat.php:114 lib/noticelist.php:674 msgid "Repeated" msgstr "Вторування" @@ -3223,33 +3261,33 @@ msgstr "Вторування" msgid "Repeated!" msgstr "Вторувати!" -#: actions/replies.php:125 actions/repliesrss.php:68 +#: actions/replies.php:126 actions/repliesrss.php:68 #: lib/personalgroupnav.php:105 #, php-format msgid "Replies to %s" msgstr "Відповіді до %s" -#: actions/replies.php:127 +#: actions/replies.php:128 #, php-format msgid "Replies to %1$s, page %2$d" msgstr "Відповіді до %1$s, сторінка %2$d" -#: actions/replies.php:144 +#: actions/replies.php:145 #, php-format msgid "Replies feed for %s (RSS 1.0)" msgstr "Стрічка відповідей до %s (RSS 1.0)" -#: actions/replies.php:151 +#: actions/replies.php:152 #, php-format msgid "Replies feed for %s (RSS 2.0)" msgstr "Стрічка відповідей до %s (RSS 2.0)" -#: actions/replies.php:158 +#: actions/replies.php:159 #, php-format msgid "Replies feed for %s (Atom)" msgstr "Стрічка відповідей до %s (Atom)" -#: actions/replies.php:198 +#: actions/replies.php:199 #, php-format msgid "" "This is the timeline showing replies to %1$s but %2$s hasn't received a " @@ -3258,7 +3296,7 @@ msgstr "" "Ця стрічка дописів містить відповіді для %1$s, але %2$s поки що нічого не " "отримав у відповідь." -#: actions/replies.php:203 +#: actions/replies.php:204 #, php-format msgid "" "You can engage other users in a conversation, subscribe to more people or " @@ -3267,7 +3305,7 @@ msgstr "" "Ви можете долучити інших користувачів до спілкування, підписавшись до " "більшої кількості людей або [приєднавшись до груп](%%action.groups%%)." -#: actions/replies.php:205 +#: actions/replies.php:206 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) or [post something to his or her " @@ -3294,7 +3332,6 @@ msgid "User is already sandboxed." msgstr "Користувача ізольовано доки набереться уму-розуму." #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:336 msgid "Sessions" msgstr "Сесії" @@ -3319,7 +3356,7 @@ msgid "Turn on debugging output for sessions." msgstr "Виводити дані сесії наладки." #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/useradminpanel.php:293 +#: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "Зберегти налаштування сайту" @@ -3349,7 +3386,7 @@ msgstr "Організація" msgid "Description" msgstr "Опис" -#: actions/showapplication.php:192 actions/showgroup.php:429 +#: actions/showapplication.php:192 actions/showgroup.php:437 #: lib/profileaction.php:174 msgid "Statistics" msgstr "Статистика" @@ -3412,22 +3449,22 @@ msgstr "Обрані дописи %1$s, сторінка %2$d" msgid "Could not retrieve favorite notices." msgstr "Не можна відновити обрані дописи." -#: actions/showfavorites.php:170 +#: actions/showfavorites.php:171 #, php-format msgid "Feed for favorites of %s (RSS 1.0)" msgstr "Стрічка обраних дописів %s (RSS 1.0)" -#: actions/showfavorites.php:177 +#: actions/showfavorites.php:178 #, php-format msgid "Feed for favorites of %s (RSS 2.0)" msgstr "Стрічка обраних дописів %s (RSS 2.0)" -#: actions/showfavorites.php:184 +#: actions/showfavorites.php:185 #, php-format msgid "Feed for favorites of %s (Atom)" msgstr "Стрічка обраних дописів %s (Atom)" -#: actions/showfavorites.php:205 +#: actions/showfavorites.php:206 msgid "" "You haven't chosen any favorite notices yet. Click the fave button on " "notices you like to bookmark them for later or shed a spotlight on them." @@ -3436,7 +3473,7 @@ msgstr "" "дописі який Ви вподобали, аби повернутись до нього пізніше, або звернути на " "нього увагу інших." -#: actions/showfavorites.php:207 +#: actions/showfavorites.php:208 #, php-format msgid "" "%s hasn't added any notices to his favorites yet. Post something interesting " @@ -3445,7 +3482,7 @@ msgstr "" "%s поки що не вподобав жодних дописів. Може Ви б написали йому щось " "цікаве? :)" -#: actions/showfavorites.php:211 +#: actions/showfavorites.php:212 #, php-format msgid "" "%s hasn't added any notices to his favorites yet. Why not [register an " @@ -3456,7 +3493,7 @@ msgstr "" "action.register%%%%) і не написати щось цікаве, що мало б сподобатись цьому " "користувачеві :)" -#: actions/showfavorites.php:242 +#: actions/showfavorites.php:243 msgid "This is a way to share what you like." msgstr "Це спосіб поділитись з усіма тим, що вам подобається." @@ -3470,67 +3507,67 @@ msgstr "Група %s" msgid "%1$s group, page %2$d" msgstr "Група %1$s, сторінка %2$d" -#: actions/showgroup.php:218 +#: actions/showgroup.php:226 msgid "Group profile" msgstr "Профіль групи" -#: actions/showgroup.php:263 actions/tagother.php:118 +#: actions/showgroup.php:271 actions/tagother.php:118 #: actions/userauthorization.php:175 lib/userprofile.php:177 msgid "URL" msgstr "URL" -#: actions/showgroup.php:274 actions/tagother.php:128 +#: actions/showgroup.php:282 actions/tagother.php:128 #: actions/userauthorization.php:187 lib/userprofile.php:194 msgid "Note" msgstr "Зауваження" -#: actions/showgroup.php:284 lib/groupeditform.php:184 +#: actions/showgroup.php:292 lib/groupeditform.php:184 msgid "Aliases" msgstr "Додаткові імена" -#: actions/showgroup.php:293 +#: actions/showgroup.php:301 msgid "Group actions" msgstr "Діяльність групи" -#: actions/showgroup.php:328 +#: actions/showgroup.php:336 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Стрічка дописів групи %s (RSS 1.0)" -#: actions/showgroup.php:334 +#: actions/showgroup.php:342 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Стрічка дописів групи %s (RSS 2.0)" -#: actions/showgroup.php:340 +#: actions/showgroup.php:348 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "Стрічка дописів групи %s (Atom)" -#: actions/showgroup.php:345 +#: actions/showgroup.php:353 #, php-format msgid "FOAF for %s group" msgstr "FOAF для групи %s" -#: actions/showgroup.php:381 actions/showgroup.php:438 lib/groupnav.php:91 +#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 msgid "Members" msgstr "Учасники" -#: actions/showgroup.php:386 lib/profileaction.php:117 +#: actions/showgroup.php:394 lib/profileaction.php:117 #: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(Пусто)" -#: actions/showgroup.php:392 +#: actions/showgroup.php:400 msgid "All members" msgstr "Всі учасники" -#: actions/showgroup.php:432 +#: actions/showgroup.php:440 msgid "Created" msgstr "Створено" -#: actions/showgroup.php:448 +#: actions/showgroup.php:456 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3545,7 +3582,7 @@ msgstr "" "короткі дописи про своє життя та інтереси. [Приєднуйтесь](%%action.register%" "%) зараз і долучіться до спілкування! ([Дізнатися більше](%%doc.help%%))" -#: actions/showgroup.php:454 +#: actions/showgroup.php:462 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3558,7 +3595,7 @@ msgstr "" "забезпеченні [StatusNet](http://status.net/). Члени цієї групи роблять " "короткі дописи про своє життя та інтереси. " -#: actions/showgroup.php:482 +#: actions/showgroup.php:490 msgid "Admins" msgstr "Адміни" @@ -3934,17 +3971,15 @@ msgstr "Не вдалося зберегти підписку." #: actions/subscribe.php:77 msgid "This action only accepts POST requests." -msgstr "" +msgstr "Ця дія приймає лише запити POST." #: actions/subscribe.php:107 -#, fuzzy msgid "No such profile." -msgstr "Такого файлу немає." +msgstr "Немає такого профілю." #: actions/subscribe.php:117 -#, fuzzy msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." -msgstr "Ви не підписані до цього профілю." +msgstr "Цією дією Ви не зможете підписатися до віддаленого профілю OMB 0.1." #: actions/subscribe.php:145 msgid "Subscribed" @@ -4039,22 +4074,22 @@ msgstr "Jabber" msgid "SMS" msgstr "СМС" -#: actions/tag.php:68 +#: actions/tag.php:69 #, php-format msgid "Notices tagged with %1$s, page %2$d" msgstr "Дописи з теґом %1$s, сторінка %2$d" -#: actions/tag.php:86 +#: actions/tag.php:87 #, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Стрічка дописів для теґу %s (RSS 1.0)" -#: actions/tag.php:92 +#: actions/tag.php:93 #, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Стрічка дописів для теґу %s (RSS 2.0)" -#: actions/tag.php:98 +#: actions/tag.php:99 #, php-format msgid "Notice feed for tag %s (Atom)" msgstr "Стрічка дописів для теґу %s (Atom)" @@ -4108,7 +4143,7 @@ msgstr "Скористайтесь цією формою, щоб додати т msgid "No such tag." msgstr "Такого теґу немає." -#: actions/twitapitrends.php:87 +#: actions/twitapitrends.php:85 msgid "API method under construction." msgstr "API метод наразі знаходиться у розробці." @@ -4138,70 +4173,72 @@ msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "Ліцензія «%1$s» не відповідає ліцензії сайту «%2$s»." -#: actions/useradminpanel.php:58 lib/adminpanelaction.php:321 -#: lib/personalgroupnav.php:115 +#. TRANS: User admin panel title +#: actions/useradminpanel.php:59 +#, fuzzy +msgctxt "TITLE" msgid "User" msgstr "Користувач" -#: actions/useradminpanel.php:69 +#: actions/useradminpanel.php:70 msgid "User settings for this StatusNet site." msgstr "Власні налаштування користувача для цього сайту StatusNet." -#: actions/useradminpanel.php:148 +#: actions/useradminpanel.php:149 msgid "Invalid bio limit. Must be numeric." msgstr "Помилкове обмеження біо. Це мають бути цифри." -#: actions/useradminpanel.php:154 +#: actions/useradminpanel.php:155 msgid "Invalid welcome text. Max length is 255 characters." msgstr "Помилковий текст привітання. Максимальна довжина 255 знаків." -#: actions/useradminpanel.php:164 +#: actions/useradminpanel.php:165 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "Помилкова підписка за замовчуванням: '%1$s' не є користувачем." -#: actions/useradminpanel.php:217 lib/accountsettingsaction.php:108 +#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Профіль" -#: actions/useradminpanel.php:221 +#: actions/useradminpanel.php:222 msgid "Bio Limit" msgstr "Обмеження біо" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:223 msgid "Maximum length of a profile bio in characters." msgstr "Максимальна довжина біо користувача в знаках." -#: actions/useradminpanel.php:230 +#: actions/useradminpanel.php:231 msgid "New users" msgstr "Нові користувачі" -#: actions/useradminpanel.php:234 +#: actions/useradminpanel.php:235 msgid "New user welcome" msgstr "Привітання нового користувача" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:236 msgid "Welcome text for new users (Max 255 chars)." msgstr "Текст привітання нових користувачів (255 знаків)." -#: actions/useradminpanel.php:240 +#: actions/useradminpanel.php:241 msgid "Default subscription" msgstr "Підписка за замовчуванням" -#: actions/useradminpanel.php:241 +#: actions/useradminpanel.php:242 msgid "Automatically subscribe new users to this user." msgstr "Автоматично підписувати нових користувачів до цього користувача." -#: actions/useradminpanel.php:250 +#: actions/useradminpanel.php:251 msgid "Invitations" msgstr "Запрошення" -#: actions/useradminpanel.php:255 +#: actions/useradminpanel.php:256 msgid "Invitations enabled" msgstr "Запрошення скасовано" -#: actions/useradminpanel.php:257 +#: actions/useradminpanel.php:258 msgid "Whether to allow users to invite new users." msgstr "" "В той чи інший спосіб дозволити користувачам вітати нових користувачів." @@ -4399,7 +4436,7 @@ msgstr "" msgid "Plugins" msgstr "Додатки" -#: actions/version.php:196 lib/action.php:747 +#: actions/version.php:196 lib/action.php:778 msgid "Version" msgstr "Версія" @@ -4438,6 +4475,10 @@ msgstr "Не є частиною групи." msgid "Group leave failed." msgstr "Не вдалося залишити групу." +#: classes/Local_group.php:41 +msgid "Could not update local group." +msgstr "Не вдається оновити локальну групу." + #: classes/Login_token.php:76 #, php-format msgid "Could not create login token for %s" @@ -4455,27 +4496,27 @@ msgstr "Не можна долучити повідомлення." msgid "Could not update message with new URI." msgstr "Не можна оновити повідомлення з новим URI." -#: classes/Notice.php:157 +#: classes/Notice.php:172 #, php-format msgid "DB error inserting hashtag: %s" msgstr "Помилка бази даних при додаванні теґу: %s" -#: classes/Notice.php:222 +#: classes/Notice.php:239 msgid "Problem saving notice. Too long." msgstr "Проблема при збереженні допису. Надто довге." -#: classes/Notice.php:226 +#: classes/Notice.php:243 msgid "Problem saving notice. Unknown user." msgstr "Проблема при збереженні допису. Невідомий користувач." -#: classes/Notice.php:231 +#: classes/Notice.php:248 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" "Дуже багато дописів за короткий термін; ходіть подихайте повітрям і " "повертайтесь за кілька хвилин." -#: classes/Notice.php:237 +#: classes/Notice.php:254 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." @@ -4483,19 +4524,19 @@ msgstr "" "Дуже багато повідомлень за короткий термін; ходіть подихайте повітрям і " "повертайтесь за кілька хвилин." -#: classes/Notice.php:243 +#: classes/Notice.php:260 msgid "You are banned from posting notices on this site." msgstr "Вам заборонено надсилати дописи до цього сайту." -#: classes/Notice.php:309 classes/Notice.php:335 +#: classes/Notice.php:326 classes/Notice.php:352 msgid "Problem saving notice." msgstr "Проблема при збереженні допису." -#: classes/Notice.php:882 +#: classes/Notice.php:911 msgid "Problem saving group inbox." msgstr "Проблема при збереженні вхідних дописів для групи." -#: classes/Notice.php:1407 +#: classes/Notice.php:1442 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -4524,19 +4565,27 @@ msgstr "Не можу видалити самопідписку." msgid "Couldn't delete subscription." msgstr "Не вдалося видалити підписку." -#: classes/User.php:372 +#: classes/User.php:373 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "Вітаємо на %1$s, @%2$s!" -#: classes/User_group.php:423 +#: classes/User_group.php:462 msgid "Could not create group." msgstr "Не вдалося створити нову групу." -#: classes/User_group.php:452 +#: classes/User_group.php:471 +msgid "Could not set group URI." +msgstr "Не вдалося встановити URI групи." + +#: classes/User_group.php:492 msgid "Could not set group membership." msgstr "Не вдалося встановити членство." +#: classes/User_group.php:506 +msgid "Could not save local group info." +msgstr "Не вдалося зберегти інформацію про локальну групу." + #: lib/accountsettingsaction.php:108 msgid "Change your profile settings" msgstr "Змінити налаштування профілю" @@ -4578,120 +4627,190 @@ msgstr "Сторінка без заголовку" msgid "Primary site navigation" msgstr "Відправна навігація по сайту" +#. TRANS: Tooltip for main menu option "Personal" #: lib/action.php:439 -msgid "Home" -msgstr "Дім" - -#: lib/action.php:439 +#, fuzzy +msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Персональний профіль і стрічка друзів" -#: lib/action.php:441 +#: lib/action.php:442 +#, fuzzy +msgctxt "MENU" +msgid "Personal" +msgstr "Особисте" + +#. TRANS: Tooltip for main menu option "Account" +#: lib/action.php:444 +#, fuzzy +msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Змінити електронну адресу, аватару, пароль, профіль" -#: lib/action.php:444 -msgid "Connect" -msgstr "З’єднання" +#: lib/action.php:447 +#, fuzzy +msgctxt "MENU" +msgid "Account" +msgstr "Акаунт" -#: lib/action.php:444 +#. TRANS: Tooltip for main menu option "Services" +#: lib/action.php:450 +#, fuzzy +msgctxt "TOOLTIP" msgid "Connect to services" msgstr "З’єднання з сервісами" -#: lib/action.php:448 +#: lib/action.php:453 +#, fuzzy +msgctxt "MENU" +msgid "Connect" +msgstr "З’єднання" + +#. TRANS: Tooltip for menu option "Admin" +#: lib/action.php:457 +#, fuzzy +msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Змінити конфігурацію сайту" -#: lib/action.php:452 lib/subgroupnav.php:105 -msgid "Invite" -msgstr "Запросити" +#: lib/action.php:460 +#, fuzzy +msgctxt "MENU" +msgid "Admin" +msgstr "Адмін" -#: lib/action.php:453 lib/subgroupnav.php:106 -#, php-format +#. TRANS: Tooltip for main menu option "Invite" +#: lib/action.php:464 +#, fuzzy, php-format +msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Запросіть друзів та колег приєднатись до Вас на %s" -#: lib/action.php:458 -msgid "Logout" -msgstr "Вийти" +#: lib/action.php:467 +#, fuzzy +msgctxt "MENU" +msgid "Invite" +msgstr "Запросити" -#: lib/action.php:458 +#. TRANS: Tooltip for main menu option "Logout" +#: lib/action.php:473 +#, fuzzy +msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Вийти з сайту" -#: lib/action.php:463 +#: lib/action.php:476 +#, fuzzy +msgctxt "MENU" +msgid "Logout" +msgstr "Вийти" + +#. TRANS: Tooltip for main menu option "Register" +#: lib/action.php:481 +#, fuzzy +msgctxt "TOOLTIP" msgid "Create an account" msgstr "Створити новий акаунт" -#: lib/action.php:466 +#: lib/action.php:484 +#, fuzzy +msgctxt "MENU" +msgid "Register" +msgstr "Реєстрація" + +#. TRANS: Tooltip for main menu option "Login" +#: lib/action.php:487 +#, fuzzy +msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Увійти на сайт" -#: lib/action.php:469 lib/action.php:732 -msgid "Help" -msgstr "Допомога" +#: lib/action.php:490 +#, fuzzy +msgctxt "MENU" +msgid "Login" +msgstr "Увійти" -#: lib/action.php:469 +#. TRANS: Tooltip for main menu option "Help" +#: lib/action.php:493 +#, fuzzy +msgctxt "TOOLTIP" msgid "Help me!" msgstr "Допоможіть!" -#: lib/action.php:472 lib/searchaction.php:127 -msgid "Search" -msgstr "Пошук" +#: lib/action.php:496 +#, fuzzy +msgctxt "MENU" +msgid "Help" +msgstr "Допомога" -#: lib/action.php:472 +#. TRANS: Tooltip for main menu option "Search" +#: lib/action.php:499 +#, fuzzy +msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Пошук людей або текстів" -#: lib/action.php:493 +#: lib/action.php:502 +#, fuzzy +msgctxt "MENU" +msgid "Search" +msgstr "Пошук" + +#. TRANS: DT element for site notice. String is hidden in default CSS. +#: lib/action.php:524 msgid "Site notice" msgstr "Зауваження сайту" -#: lib/action.php:559 +#: lib/action.php:590 msgid "Local views" msgstr "Огляд" -#: lib/action.php:625 +#: lib/action.php:656 msgid "Page notice" msgstr "Зауваження сторінки" -#: lib/action.php:727 +#: lib/action.php:758 msgid "Secondary site navigation" msgstr "Другорядна навігація по сайту" -#: lib/action.php:734 +#: lib/action.php:763 +msgid "Help" +msgstr "Допомога" + +#: lib/action.php:765 msgid "About" msgstr "Про" -#: lib/action.php:736 +#: lib/action.php:767 msgid "FAQ" msgstr "ЧаПи" -#: lib/action.php:740 +#: lib/action.php:771 msgid "TOS" msgstr "Умови" -#: lib/action.php:743 +#: lib/action.php:774 msgid "Privacy" msgstr "Конфіденційність" -#: lib/action.php:745 +#: lib/action.php:776 msgid "Source" msgstr "Джерело" -#: lib/action.php:749 +#: lib/action.php:780 msgid "Contact" msgstr "Контакт" -#: lib/action.php:751 +#: lib/action.php:782 msgid "Badge" msgstr "Бедж" -#: lib/action.php:779 +#: lib/action.php:810 msgid "StatusNet software license" msgstr "Ліцензія програмного забезпечення StatusNet" -#: lib/action.php:782 +#: lib/action.php:813 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4700,12 +4819,12 @@ msgstr "" "**%%site.name%%** — це сервіс мікроблоґів наданий вам [%%site.broughtby%%](%%" "site.broughtbyurl%%). " -#: lib/action.php:784 +#: lib/action.php:815 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** — це сервіс мікроблоґів. " -#: lib/action.php:786 +#: lib/action.php:817 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4716,108 +4835,161 @@ msgstr "" "для мікроблоґів, версія %s, доступному під [GNU Affero General Public " "License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." -#: lib/action.php:801 +#: lib/action.php:832 msgid "Site content license" msgstr "Ліцензія змісту сайту" -#: lib/action.php:806 +#: lib/action.php:837 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "Зміст і дані %1$s є приватними і конфіденційними." -#: lib/action.php:811 +#: lib/action.php:842 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "Авторські права на зміст і дані належать %1$s. Всі права захищено." -#: lib/action.php:814 +#: lib/action.php:845 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" "Авторські права на зміст і дані належать розробникам. Всі права захищено." -#: lib/action.php:827 +#: lib/action.php:858 msgid "All " msgstr "Всі " -#: lib/action.php:833 +#: lib/action.php:864 msgid "license." msgstr "ліцензія." -#: lib/action.php:1132 +#: lib/action.php:1163 msgid "Pagination" msgstr "Нумерація сторінок" -#: lib/action.php:1141 +#: lib/action.php:1172 msgid "After" msgstr "Вперед" -#: lib/action.php:1149 +#: lib/action.php:1180 msgid "Before" msgstr "Назад" -#: lib/activity.php:382 +#: lib/activity.php:449 msgid "Can't handle remote content yet." -msgstr "" +msgstr "Поки що не можу обробити віддалений контент." -#: lib/activity.php:410 +#: lib/activity.php:477 msgid "Can't handle embedded XML content yet." -msgstr "" +msgstr "Поки що не можу обробити вбудований XML контент." -#: lib/activity.php:414 +#: lib/activity.php:481 msgid "Can't handle embedded Base64 content yet." -msgstr "" +msgstr "Поки що не можу обробити вбудований контент Base64." -#: lib/adminpanelaction.php:96 +#. TRANS: Client error message +#: lib/adminpanelaction.php:98 msgid "You cannot make changes to this site." msgstr "Ви не можете щось змінювати на цьому сайті." -#: lib/adminpanelaction.php:107 +#. TRANS: Client error message +#: lib/adminpanelaction.php:110 msgid "Changes to that panel are not allowed." msgstr "Для цієї панелі зміни не припустимі." -#: lib/adminpanelaction.php:206 +#. TRANS: Client error message +#: lib/adminpanelaction.php:211 msgid "showForm() not implemented." msgstr "showForm() не виконано." -#: lib/adminpanelaction.php:235 +#. TRANS: Client error message +#: lib/adminpanelaction.php:241 msgid "saveSettings() not implemented." msgstr "saveSettings() не виконано." -#: lib/adminpanelaction.php:258 +#. TRANS: Client error message +#: lib/adminpanelaction.php:265 msgid "Unable to delete design setting." msgstr "Немає можливості видалити налаштування дизайну." -#: lib/adminpanelaction.php:312 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:330 msgid "Basic site configuration" msgstr "Основна конфігурація сайту" -#: lib/adminpanelaction.php:317 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:332 +#, fuzzy +msgctxt "MENU" +msgid "Site" +msgstr "Сайт" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:338 msgid "Design configuration" msgstr "Конфігурація дизайну" -#: lib/adminpanelaction.php:322 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:340 +#, fuzzy +msgctxt "MENU" +msgid "Design" +msgstr "Дизайн" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:346 msgid "User configuration" msgstr "Конфігурація користувача" -#: lib/adminpanelaction.php:327 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:348 +#, fuzzy +msgctxt "MENU" +msgid "User" +msgstr "Користувач" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:354 msgid "Access configuration" msgstr "Прийняти конфігурацію" -#: lib/adminpanelaction.php:332 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:356 +#, fuzzy +msgctxt "MENU" +msgid "Access" +msgstr "Погодитись" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:362 msgid "Paths configuration" msgstr "Конфігурація шляху" -#: lib/adminpanelaction.php:337 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:364 +#, fuzzy +msgctxt "MENU" +msgid "Paths" +msgstr "Шлях" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:370 msgid "Sessions configuration" msgstr "Конфігурація сесій" -#: lib/apiauth.php:95 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:372 +#, fuzzy +msgctxt "MENU" +msgid "Sessions" +msgstr "Сесії" + +#: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." msgstr "" "API-ресурс вимагає дозвіл типу «читання-запис», але у вас є лише доступ для " "читання." -#: lib/apiauth.php:273 +#: lib/apiauth.php:272 #, php-format msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" msgstr "" @@ -4909,11 +5081,11 @@ msgstr "Дописи, до яких прикріплено це вкладенн msgid "Tags for this attachment" msgstr "Теґи для цього вкладення" -#: lib/authenticationplugin.php:218 lib/authenticationplugin.php:223 +#: lib/authenticationplugin.php:220 lib/authenticationplugin.php:225 msgid "Password changing failed" msgstr "Не вдалося змінити пароль" -#: lib/authenticationplugin.php:233 +#: lib/authenticationplugin.php:235 msgid "Password changing is not allowed" msgstr "Змінювати пароль не дозволено" @@ -5113,9 +5285,9 @@ msgstr "" "Це посилання можна використати лише раз, воно дійсне протягом 2 хвилин: %s" #: lib/command.php:692 -#, fuzzy, php-format +#, php-format msgid "Unsubscribed %s" -msgstr "Відписано від %s" +msgstr "Відписано %s" #: lib/command.php:709 msgid "You are not subscribed to anyone." @@ -5151,7 +5323,6 @@ msgstr[1] "Ви є учасником таких груп:" msgstr[2] "Ви є учасником таких груп:" #: lib/command.php:769 -#, fuzzy msgid "" "Commands:\n" "on - turn on notifications\n" @@ -5228,19 +5399,19 @@ msgstr "" "tracks — наразі не виконується\n" "tracking — наразі не виконується\n" -#: lib/common.php:136 +#: lib/common.php:148 msgid "No configuration file found. " msgstr "Файлу конфігурації не знайдено. " -#: lib/common.php:137 +#: lib/common.php:149 msgid "I looked for configuration files in the following places: " msgstr "Шукав файли конфігурації в цих місцях: " -#: lib/common.php:139 +#: lib/common.php:151 msgid "You may wish to run the installer to fix this." msgstr "Запустіть файл інсталяції, аби полагодити це." -#: lib/common.php:140 +#: lib/common.php:152 msgid "Go to the installer." msgstr "Іти до файлу інсталяції." @@ -5429,23 +5600,23 @@ msgstr "Система відповіла помилкою при заванта msgid "Not an image or corrupt file." msgstr "Це не зображення, або файл зіпсовано." -#: lib/imagefile.php:105 +#: lib/imagefile.php:109 msgid "Unsupported image file format." msgstr "Формат зображення не підтримується." -#: lib/imagefile.php:118 +#: lib/imagefile.php:122 msgid "Lost our file." msgstr "Файл втрачено." -#: lib/imagefile.php:150 lib/imagefile.php:197 +#: lib/imagefile.php:166 lib/imagefile.php:231 msgid "Unknown file type" msgstr "Тип файлу не підтримується" -#: lib/imagefile.php:217 +#: lib/imagefile.php:251 msgid "MB" msgstr "Мб" -#: lib/imagefile.php:219 +#: lib/imagefile.php:253 msgid "kB" msgstr "кб" @@ -5827,6 +5998,11 @@ msgstr "До" msgid "Available characters" msgstr "Лишилось знаків" +#: lib/messageform.php:178 lib/noticeform.php:236 +msgctxt "Send button for sending notice" +msgid "Send" +msgstr "Так!" + #: lib/noticeform.php:160 msgid "Send a notice" msgstr "Надіслати допис" @@ -5885,23 +6061,23 @@ msgstr "Зах." msgid "at" msgstr "в" -#: lib/noticelist.php:558 +#: lib/noticelist.php:566 msgid "in context" msgstr "в контексті" -#: lib/noticelist.php:583 +#: lib/noticelist.php:601 msgid "Repeated by" msgstr "Вторуванні" -#: lib/noticelist.php:610 +#: lib/noticelist.php:628 msgid "Reply to this notice" msgstr "Відповісти на цей допис" -#: lib/noticelist.php:611 +#: lib/noticelist.php:629 msgid "Reply" msgstr "Відповісти" -#: lib/noticelist.php:655 +#: lib/noticelist.php:673 msgid "Notice repeated" msgstr "Допис вторували" @@ -5949,6 +6125,10 @@ msgstr "Відповіді" msgid "Favorites" msgstr "Обрані" +#: lib/personalgroupnav.php:115 +msgid "User" +msgstr "Користувач" + #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "Вхідні" @@ -6038,7 +6218,7 @@ msgstr "Повторити цей допис?" msgid "Repeat this notice" msgstr "Вторувати цьому допису" -#: lib/router.php:665 +#: lib/router.php:668 msgid "No single user defined for single-user mode." msgstr "Користувача для однокористувацького режиму не визначено." @@ -6058,6 +6238,10 @@ msgstr "Пошук" msgid "Keyword(s)" msgstr "Ключові слова" +#: lib/searchaction.php:127 +msgid "Search" +msgstr "Пошук" + #: lib/searchaction.php:162 msgid "Search help" msgstr "Пошук" @@ -6109,6 +6293,15 @@ msgstr "Люди підписані до %s" msgid "Groups %s is a member of" msgstr "%s бере участь в цих групах" +#: lib/subgroupnav.php:105 +msgid "Invite" +msgstr "Запросити" + +#: lib/subgroupnav.php:106 +#, 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" @@ -6179,47 +6372,47 @@ msgstr "Повідомлення" msgid "Moderate" msgstr "Модерувати" -#: lib/util.php:952 +#: lib/util.php:1013 msgid "a few seconds ago" msgstr "мить тому" -#: lib/util.php:954 +#: lib/util.php:1015 msgid "about a minute ago" msgstr "хвилину тому" -#: lib/util.php:956 +#: lib/util.php:1017 #, php-format msgid "about %d minutes ago" msgstr "близько %d хвилин тому" -#: lib/util.php:958 +#: lib/util.php:1019 msgid "about an hour ago" msgstr "годину тому" -#: lib/util.php:960 +#: lib/util.php:1021 #, php-format msgid "about %d hours ago" msgstr "близько %d годин тому" -#: lib/util.php:962 +#: lib/util.php:1023 msgid "about a day ago" msgstr "день тому" -#: lib/util.php:964 +#: lib/util.php:1025 #, php-format msgid "about %d days ago" msgstr "близько %d днів тому" -#: lib/util.php:966 +#: lib/util.php:1027 msgid "about a month ago" msgstr "місяць тому" -#: lib/util.php:968 +#: lib/util.php:1029 #, php-format msgid "about %d months ago" msgstr "близько %d місяців тому" -#: lib/util.php:970 +#: lib/util.php:1031 msgid "about a year ago" msgstr "рік тому" diff --git a/locale/vi/LC_MESSAGES/statusnet.po b/locale/vi/LC_MESSAGES/statusnet.po index 4dcc584883..d64fae91d4 100644 --- a/locale/vi/LC_MESSAGES/statusnet.po +++ b/locale/vi/LC_MESSAGES/statusnet.po @@ -7,83 +7,89 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-02-24 23:49+0000\n" -"PO-Revision-Date: 2010-02-24 23:51:57+0000\n" +"POT-Creation-Date: 2010-03-02 21:02+0000\n" +"PO-Revision-Date: 2010-03-02 21:03:59+0000\n" "Language-Team: Vietnamese\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r62925); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: vi\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: actions/accessadminpanel.php:54 lib/adminpanelaction.php:326 +#. TRANS: Page title +#: actions/accessadminpanel.php:55 #, fuzzy msgid "Access" msgstr "Chấp nhận" -#: actions/accessadminpanel.php:65 +#. TRANS: Page notice +#: actions/accessadminpanel.php:67 #, fuzzy msgid "Site access settings" msgstr "Thay đổi hình đại diện" -#: actions/accessadminpanel.php:158 +#. TRANS: Form legend for registration form. +#: actions/accessadminpanel.php:161 #, fuzzy msgid "Registration" msgstr "Đăng ký" -#: actions/accessadminpanel.php:161 -#, fuzzy -msgid "Private" -msgstr "Riêng tư" - -#: actions/accessadminpanel.php:163 +#. TRANS: Checkbox instructions for admin setting "Private" +#: actions/accessadminpanel.php:165 msgid "Prohibit anonymous users (not logged in) from viewing site?" msgstr "" +#. TRANS: Checkbox label for prohibiting anonymous users from viewing site. #: actions/accessadminpanel.php:167 #, fuzzy +msgctxt "LABEL" +msgid "Private" +msgstr "Riêng tư" + +#. TRANS: Checkbox instructions for admin setting "Invite only" +#: actions/accessadminpanel.php:174 +msgid "Make registration invitation only." +msgstr "" + +#. TRANS: Checkbox label for configuring site as invite only. +#: actions/accessadminpanel.php:176 +#, fuzzy msgid "Invite only" msgstr "Thư mời" -#: actions/accessadminpanel.php:169 -msgid "Make registration invitation only." +#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations) +#: actions/accessadminpanel.php:183 +msgid "Disable new registrations." msgstr "" -#: actions/accessadminpanel.php:173 +#. TRANS: Checkbox label for disabling new user registrations. +#: actions/accessadminpanel.php:185 #, fuzzy msgid "Closed" msgstr "Ban user" -#: actions/accessadminpanel.php:175 -msgid "Disable new registrations." -msgstr "" - -#: actions/accessadminpanel.php:189 actions/designadminpanel.php:586 -#: actions/emailsettings.php:195 actions/imsettings.php:163 -#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 -#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 -#: actions/siteadminpanel.php:336 actions/smssettings.php:181 -#: actions/subscriptions.php:208 actions/tagother.php:154 -#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 -#: lib/applicationeditform.php:334 lib/designsettings.php:256 -#: lib/groupeditform.php:202 -msgid "Save" -msgstr "Lưu" - -#: actions/accessadminpanel.php:189 +#. TRANS: Title / tooltip for button to save access settings in site admin panel +#: actions/accessadminpanel.php:202 #, fuzzy msgid "Save access settings" msgstr "Thay đổi hình đại diện" -#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 -#: actions/showfavorites.php:137 actions/tag.php:51 +#: actions/accessadminpanel.php:203 +#, fuzzy +msgctxt "BUTTON" +msgid "Save" +msgstr "Lưu" + +#. TRANS: Server error when page not found (404) +#: actions/all.php:64 actions/public.php:98 actions/replies.php:93 +#: actions/showfavorites.php:138 actions/tag.php:52 #, fuzzy msgid "No such page" msgstr "Không có tin nhắn nào." -#: actions/all.php:74 actions/allrss.php:68 +#: actions/all.php:75 actions/allrss.php:68 #: actions/apiaccountupdatedeliverydevice.php:113 #: actions/apiaccountupdateprofile.php:105 #: actions/apiaccountupdateprofilebackgroundimage.php:116 @@ -97,72 +103,82 @@ msgstr "Không có tin nhắn nào." #: actions/apitimelinehome.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/otp.php:76 -#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154 -#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 -#: actions/showfavorites.php:105 actions/userbyid.php:74 -#: actions/usergroups.php:91 actions/userrss.php:38 actions/xrds.php:71 -#: lib/command.php:163 lib/command.php:302 lib/command.php:355 -#: lib/command.php:401 lib/command.php:462 lib/command.php:518 -#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 +#: actions/hcard.php:67 actions/microsummary.php:62 actions/newmessage.php:116 +#: actions/otp.php:76 actions/remotesubscribe.php:145 +#: actions/remotesubscribe.php:154 actions/replies.php:73 +#: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/xrds.php:71 lib/command.php:163 lib/command.php:302 +#: lib/command.php:355 lib/command.php:401 lib/command.php:462 +#: lib/command.php:518 lib/galleryaction.php:59 lib/mailbox.php:82 +#: lib/profileaction.php:77 msgid "No such user." msgstr "Không có user nào." -#: actions/all.php:84 +#. TRANS: Page title. %1$s is user nickname, %2$d is page number +#: actions/all.php:86 #, fuzzy, php-format msgid "%1$s and friends, page %2$d" msgstr "%s và bạn bè" -#: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 +#. TRANS: Page title. %1$s is user nickname +#. TRANS: H1 text. %1$s is user nickname +#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" msgstr "%s và bạn bè" -#: actions/all.php:99 +#. TRANS: %1$s is user nickname +#: actions/all.php:103 #, 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/all.php:107 +#. TRANS: %1$s is user nickname +#: actions/all.php:112 #, fuzzy, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "Chọn những người bạn của %s" -#: actions/all.php:115 +#. TRANS: %1$s is user nickname +#: actions/all.php:121 #, 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:127 +#. TRANS: %1$s is user nickname +#: actions/all.php:134 #, php-format msgid "" "This is the timeline for %s and friends but no one has posted anything yet." msgstr "" -#: actions/all.php:132 +#: actions/all.php:139 #, php-format msgid "" "Try subscribing to more people, [join a group](%%action.groups%%) or post " "something yourself." msgstr "" -#: actions/all.php:134 +#. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@" +#: actions/all.php:142 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) from his profile or [post something to " "his or her attention](%%%%action.newnotice%%%%?status_textarea=%3$s)." msgstr "" -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211 +#: actions/all.php:145 actions/replies.php:210 actions/showstream.php:211 #, 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/all.php:165 +#. TRANS: H1 text +#: actions/all.php:174 #, fuzzy msgid "You and friends" msgstr "%s và bạn bè" @@ -181,20 +197,20 @@ msgstr "" #: actions/apiaccountverifycredentials.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:128 actions/apigroupcreate.php:136 +#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: actions/apigroupleave.php:141 actions/apigrouplist.php:132 #: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 #: actions/apigroupshow.php:115 actions/apihelptest.php:88 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 -#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184 +#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 #: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:207 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 #, fuzzy msgid "API method not found." msgstr "Phương thức API không tìm thấy!" @@ -228,8 +244,9 @@ msgstr "Không thể cập nhật thành viên." #: actions/apiaccountupdateprofilebackgroundimage.php:194 #: actions/apiaccountupdateprofilecolors.php:185 #: 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 +#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 +#: 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." @@ -254,7 +271,7 @@ msgstr "" #: actions/apiaccountupdateprofilebackgroundimage.php:146 #: actions/apiaccountupdateprofilecolors.php:164 #: actions/apiaccountupdateprofilecolors.php:174 -#: actions/groupdesignsettings.php:287 actions/groupdesignsettings.php:297 +#: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300 #: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 #: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 #, fuzzy @@ -377,68 +394,68 @@ msgstr "Không thể lấy lại các tin nhắn ưa thích" msgid "Could not find target user." msgstr "Không tìm thấy bất kỳ trạng thái nào." -#: actions/apigroupcreate.php:164 actions/editgroup.php:182 +#: actions/apigroupcreate.php:166 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:215 #: 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/apigroupcreate.php:173 actions/editgroup.php:186 +#: actions/apigroupcreate.php:175 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:238 #: 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/apigroupcreate.php:180 actions/editgroup.php:189 +#: actions/apigroupcreate.php:182 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:218 #: actions/register.php:210 msgid "Not a valid nickname." msgstr "Biệt hiệu không hợp lệ." -#: actions/apigroupcreate.php:196 actions/editapplication.php:215 -#: actions/editgroup.php:195 actions/newapplication.php:203 +#: actions/apigroupcreate.php:198 actions/editapplication.php:215 +#: actions/editgroup.php:199 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:217 msgid "Homepage is not a valid URL." msgstr "Trang chủ không phải là URL" -#: actions/apigroupcreate.php:205 actions/editgroup.php:198 +#: actions/apigroupcreate.php:207 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:225 #: 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/apigroupcreate.php:213 actions/editapplication.php:190 +#: actions/apigroupcreate.php:215 actions/editapplication.php:190 #: actions/newapplication.php:172 #, 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:224 actions/editgroup.php:204 +#: actions/apigroupcreate.php:226 actions/editgroup.php:208 #: actions/newgroup.php:148 actions/profilesettings.php:232 #: 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/apigroupcreate.php:243 actions/editgroup.php:215 +#: actions/apigroupcreate.php:245 actions/editgroup.php:219 #: actions/newgroup.php:159 #, php-format msgid "Too many aliases! Maximum %d." msgstr "" -#: actions/apigroupcreate.php:264 actions/editgroup.php:224 +#: actions/apigroupcreate.php:266 actions/editgroup.php:228 #: actions/newgroup.php:168 #, fuzzy, php-format msgid "Invalid alias: \"%s\"" msgstr "Trang chủ '%s' không hợp lệ" -#: actions/apigroupcreate.php:273 actions/editgroup.php:228 +#: actions/apigroupcreate.php:275 actions/editgroup.php:232 #: 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:286 actions/editgroup.php:234 +#: actions/apigroupcreate.php:288 actions/editgroup.php:238 #: actions/newgroup.php:178 msgid "Alias can't be the same as nickname." msgstr "" @@ -450,16 +467,16 @@ msgstr "" msgid "Group not found!" msgstr "Phương thức API không tìm thấy!" -#: actions/apigroupjoin.php:110 actions/joingroup.php:90 +#: actions/apigroupjoin.php:110 actions/joingroup.php:100 #, fuzzy msgid "You are already a member of that group." msgstr "Bạn đã theo những người này:" -#: actions/apigroupjoin.php:119 actions/joingroup.php:95 lib/command.php:221 +#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:221 msgid "You have been blocked from that group by the admin." msgstr "" -#: actions/apigroupjoin.php:138 actions/joingroup.php:124 +#: actions/apigroupjoin.php:138 actions/joingroup.php:134 #, fuzzy, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Không thể theo bạn này: %s đã có trong danh sách bạn bè của bạn rồi." @@ -469,7 +486,7 @@ msgstr "Không thể theo bạn này: %s đã có trong danh sách bạn bè 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/apigroupleave.php:124 actions/leavegroup.php:119 +#: actions/apigroupleave.php:124 actions/leavegroup.php:129 #, fuzzy, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "Không thể theo bạn này: %s đã có trong danh sách bạn bè của bạn rồi." @@ -501,7 +518,7 @@ msgstr "Kích thước không hợp lệ." #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 #: actions/deletenotice.php:157 actions/disfavor.php:74 #: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54 -#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupblock.php:66 actions/grouplogo.php:312 #: actions/groupunblock.php:66 actions/imsettings.php:206 #: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 @@ -545,7 +562,7 @@ msgstr "" #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:103 actions/editapplication.php:139 -#: actions/emailsettings.php:256 actions/grouplogo.php:319 +#: actions/emailsettings.php:256 actions/grouplogo.php:322 #: actions/imsettings.php:220 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 #: actions/smssettings.php:248 lib/designsettings.php:304 @@ -568,14 +585,14 @@ msgid "" "give access to your %4$s account to third parties you trust." msgstr "" -#: actions/apioauthauthorize.php:310 lib/action.php:441 +#: actions/apioauthauthorize.php:310 #, fuzzy msgid "Account" msgstr "Giới thiệu" #: actions/apioauthauthorize.php:313 actions/login.php:230 #: actions/profilesettings.php:106 actions/register.php:424 -#: actions/showgroup.php:236 actions/tagother.php:94 +#: actions/showgroup.php:244 actions/tagother.php:94 #: actions/userauthorization.php:145 lib/groupeditform.php:152 #: lib/userprofile.php:131 msgid "Nickname" @@ -661,12 +678,12 @@ msgid "%1$s updates favorited by %2$s / %2$s." msgstr "Tất cả các cập nhật của %s" #: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:131 actions/userrss.php:90 +#: actions/grouprss.php:138 actions/userrss.php:90 #, fuzzy, php-format msgid "%s timeline" msgstr "Dòng tin nhắn của %s" -#: actions/apitimelinegroup.php:114 actions/apitimelineuser.php:126 +#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 #: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" @@ -702,7 +719,7 @@ msgstr "Trả lời cho %s" msgid "Repeats of %s" msgstr "Trả lời cho %s" -#: actions/apitimelinetag.php:102 actions/tag.php:66 +#: actions/apitimelinetag.php:102 actions/tag.php:67 #, php-format msgid "Notices tagged with %s" msgstr "Thông báo được gắn thẻ %s" @@ -725,8 +742,7 @@ msgstr "Không có tài liệu nào." #: actions/avatarbynickname.php:59 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/leavegroup.php:76 -#: actions/showgroup.php:121 +#: actions/grouprss.php:91 actions/showgroup.php:121 msgid "No nickname." msgstr "Không có biệt hiệu." @@ -738,7 +754,7 @@ msgstr "Không có kích thước." msgid "Invalid size." msgstr "Kích thước không hợp lệ." -#: actions/avatarsettings.php:67 actions/showgroup.php:221 +#: actions/avatarsettings.php:67 actions/showgroup.php:229 #: lib/accountsettingsaction.php:112 msgid "Avatar" msgstr "Hình đại diện" @@ -758,31 +774,31 @@ 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/avatarsettings.php:119 actions/avatarsettings.php:197 -#: actions/grouplogo.php:251 +#: actions/grouplogo.php:254 msgid "Avatar settings" msgstr "Thay đổi hình đại diện" #: actions/avatarsettings.php:127 actions/avatarsettings.php:205 -#: actions/grouplogo.php:199 actions/grouplogo.php:259 +#: actions/grouplogo.php:202 actions/grouplogo.php:262 msgid "Original" msgstr "" #: actions/avatarsettings.php:142 actions/avatarsettings.php:217 -#: actions/grouplogo.php:210 actions/grouplogo.php:271 +#: actions/grouplogo.php:213 actions/grouplogo.php:274 msgid "Preview" msgstr "Xem trước" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:637 +#: lib/deleteuserform.php:66 lib/noticelist.php:655 #, fuzzy msgid "Delete" msgstr "Xóa tin nhắn" -#: actions/avatarsettings.php:166 actions/grouplogo.php:233 +#: actions/avatarsettings.php:166 actions/grouplogo.php:236 msgid "Upload" msgstr "Tải file" -#: actions/avatarsettings.php:231 actions/grouplogo.php:286 +#: actions/avatarsettings.php:231 actions/grouplogo.php:289 #, fuzzy msgid "Crop" msgstr "Nhóm" @@ -791,7 +807,7 @@ msgstr "Nhóm" msgid "Pick a square area of the image to be your avatar" msgstr "" -#: actions/avatarsettings.php:343 actions/grouplogo.php:377 +#: actions/avatarsettings.php:343 actions/grouplogo.php:380 msgid "Lost our file data." msgstr "" @@ -826,23 +842,23 @@ msgid "" msgstr "" #: actions/block.php:143 actions/deleteapplication.php:153 -#: actions/deletenotice.php:145 actions/deleteuser.php:147 +#: actions/deletenotice.php:145 actions/deleteuser.php:150 #: actions/groupblock.php:178 msgid "No" msgstr "Không" -#: actions/block.php:143 actions/deleteuser.php:147 +#: actions/block.php:143 actions/deleteuser.php:150 #, fuzzy msgid "Do not block this user" msgstr "Bỏ chặn người dùng này" #: actions/block.php:144 actions/deleteapplication.php:158 -#: actions/deletenotice.php:146 actions/deleteuser.php:148 +#: actions/deletenotice.php:146 actions/deleteuser.php:151 #: actions/groupblock.php:179 lib/repeatform.php:132 msgid "Yes" msgstr "Có" -#: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:355 lib/blockform.php:80 #, fuzzy msgid "Block this user" msgstr "Ban user" @@ -851,41 +867,45 @@ msgstr "Ban user" msgid "Failed to save block information." msgstr "" -#: actions/blockedfromgroup.php:80 actions/editgroup.php:96 -#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/groupblock.php:86 -#: actions/groupbyid.php:83 actions/groupdesignsettings.php:97 -#: actions/grouplogo.php:99 actions/groupmembers.php:83 -#: actions/grouprss.php:98 actions/groupunblock.php:86 -#: actions/joingroup.php:83 actions/leavegroup.php:83 actions/makeadmin.php:86 -#: actions/showgroup.php:137 lib/command.php:212 lib/command.php:260 +#: actions/blockedfromgroup.php:80 actions/blockedfromgroup.php:87 +#: actions/editgroup.php:100 actions/foafgroup.php:44 actions/foafgroup.php:62 +#: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:100 actions/grouplogo.php:102 +#: actions/groupmembers.php:83 actions/groupmembers.php:90 +#: actions/grouprss.php:98 actions/grouprss.php:105 +#: actions/groupunblock.php:86 actions/joingroup.php:82 +#: actions/joingroup.php:93 actions/leavegroup.php:82 +#: actions/leavegroup.php:93 actions/makeadmin.php:86 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:212 +#: lib/command.php:260 #, fuzzy msgid "No such group." msgstr "Không có tin nhắn nào." -#: actions/blockedfromgroup.php:90 +#: actions/blockedfromgroup.php:97 #, fuzzy, php-format msgid "%s blocked profiles" msgstr "Hồ sơ" -#: actions/blockedfromgroup.php:93 +#: actions/blockedfromgroup.php:100 #, fuzzy, php-format msgid "%1$s blocked profiles, page %2$d" msgstr "%s và bạn bè" -#: actions/blockedfromgroup.php:108 +#: actions/blockedfromgroup.php:115 msgid "A list of the users blocked from joining this group." msgstr "" -#: actions/blockedfromgroup.php:281 +#: actions/blockedfromgroup.php:288 #, fuzzy msgid "Unblock user from group" msgstr "Bỏ chặn người dùng này" -#: actions/blockedfromgroup.php:313 lib/unblockform.php:69 +#: actions/blockedfromgroup.php:320 lib/unblockform.php:69 msgid "Unblock" msgstr "Bỏ chặn" -#: actions/blockedfromgroup.php:313 lib/unblockform.php:80 +#: actions/blockedfromgroup.php:320 lib/unblockform.php:80 msgid "Unblock this user" msgstr "Bỏ chặn người dùng này" @@ -965,7 +985,7 @@ msgstr "Bạn chưa cập nhật thông tin riêng" #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1197 +#: lib/action.php:1228 #, 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." @@ -992,12 +1012,13 @@ msgstr "Không thể xóa tin nhắn này." msgid "Delete this application" msgstr "Xóa tin nhắn" +#. TRANS: Client error message #: 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:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 -#: lib/adminpanelaction.php:72 lib/profileformaction.php:63 +#: lib/adminpanelaction.php:73 lib/profileformaction.php:63 #: lib/settingsaction.php:72 msgid "Not logged in." msgstr "Chưa đăng nhập." @@ -1026,7 +1047,7 @@ msgstr "Bạn có chắc chắn là muốn xóa tin nhắn này không?" msgid "Do not delete this notice" msgstr "Không thể xóa tin nhắn này." -#: actions/deletenotice.php:146 lib/noticelist.php:637 +#: actions/deletenotice.php:146 lib/noticelist.php:655 #, fuzzy msgid "Delete this notice" msgstr "Xóa tin nhắn" @@ -1046,19 +1067,19 @@ msgstr "Bạn đã không xóa trạng thái của những người khác." msgid "Delete user" msgstr "Xóa tin nhắn" -#: actions/deleteuser.php:135 +#: actions/deleteuser.php:136 msgid "" "Are you sure you want to delete this user? This will clear all data about " "the user from the database, without a backup." msgstr "" -#: actions/deleteuser.php:148 lib/deleteuserform.php:77 +#: actions/deleteuser.php:151 lib/deleteuserform.php:77 #, fuzzy msgid "Delete this user" msgstr "Xóa tin nhắn" #: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 -#: lib/adminpanelaction.php:316 lib/groupnav.php:119 +#: lib/groupnav.php:119 msgid "Design" msgstr "" @@ -1173,6 +1194,17 @@ msgstr "" msgid "Reset back to default" msgstr "" +#: actions/designadminpanel.php:586 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/tagother.php:154 actions/useradminpanel.php:294 +#: lib/applicationeditform.php:333 lib/applicationeditform.php:334 +#: lib/designsettings.php:256 lib/groupeditform.php:202 +msgid "Save" +msgstr "Lưu" + #: actions/designadminpanel.php:587 lib/designsettings.php:257 #, fuzzy msgid "Save design" @@ -1278,32 +1310,32 @@ msgstr "%s và nhóm" 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:103 actions/editgroup.php:168 -#: actions/groupdesignsettings.php:104 actions/grouplogo.php:106 +#: actions/editgroup.php:107 actions/editgroup.php:172 +#: actions/groupdesignsettings.php:107 actions/grouplogo.php:109 #, 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:154 +#: actions/editgroup.php:158 msgid "Use this form to edit the group." msgstr "" -#: actions/editgroup.php:201 actions/newgroup.php:145 +#: actions/editgroup.php:205 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/editgroup.php:253 +#: actions/editgroup.php:258 #, fuzzy msgid "Could not update group." msgstr "Không thể cập nhật thành viên." -#: actions/editgroup.php:259 classes/User_group.php:433 +#: actions/editgroup.php:264 classes/User_group.php:478 #, fuzzy msgid "Could not create aliases." msgstr "Không thể tạo favorite." -#: actions/editgroup.php:269 +#: actions/editgroup.php:280 #, fuzzy msgid "Options saved." msgstr "Đã lưu các điều chỉnh." @@ -1667,7 +1699,7 @@ msgstr "Người dùng không có thông tin." msgid "User is not a member of group." msgstr "Bạn chưa cập nhật thông tin riêng" -#: actions/groupblock.php:136 actions/groupmembers.php:316 +#: actions/groupblock.php:136 actions/groupmembers.php:323 #, fuzzy msgid "Block user from group" msgstr "Ban user" @@ -1704,95 +1736,95 @@ msgstr "Không có id." 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/groupdesignsettings.php:141 +#: actions/groupdesignsettings.php:144 #, fuzzy msgid "Group design" msgstr "Nhóm" -#: actions/groupdesignsettings.php:152 +#: actions/groupdesignsettings.php:155 msgid "" "Customize the way your group looks with a background image and a colour " "palette of your choice." msgstr "" -#: actions/groupdesignsettings.php:263 actions/userdesignsettings.php:186 +#: actions/groupdesignsettings.php:266 actions/userdesignsettings.php:186 #: lib/designsettings.php:391 lib/designsettings.php:413 #, fuzzy msgid "Couldn't update your design." msgstr "Không thể cập nhật thành viên." -#: actions/groupdesignsettings.php:308 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231 #, fuzzy msgid "Design preferences saved." msgstr "Các tính năng đã được lưu." -#: actions/grouplogo.php:139 actions/grouplogo.php:192 +#: actions/grouplogo.php:142 actions/grouplogo.php:195 #, fuzzy msgid "Group logo" msgstr "Mã nhóm" -#: actions/grouplogo.php:150 +#: actions/grouplogo.php:153 #, php-format msgid "" "You can upload a logo image for your group. The maximum file size is %s." msgstr "" -#: actions/grouplogo.php:178 +#: actions/grouplogo.php:181 #, 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/grouplogo.php:362 +#: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." msgstr "" -#: actions/grouplogo.php:396 +#: actions/grouplogo.php:399 #, fuzzy msgid "Logo updated." msgstr "Hình đại diện đã được cập nhật." -#: actions/grouplogo.php:398 +#: actions/grouplogo.php:401 #, 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:92 +#: actions/groupmembers.php:100 lib/groupnav.php:92 #, fuzzy, php-format msgid "%s group members" msgstr "Thành viên" -#: actions/groupmembers.php:96 +#: actions/groupmembers.php:103 #, fuzzy, php-format msgid "%1$s group members, page %2$d" msgstr "Thành viên" -#: actions/groupmembers.php:111 +#: actions/groupmembers.php:118 msgid "A list of the users in this group." msgstr "" -#: actions/groupmembers.php:175 lib/action.php:448 lib/groupnav.php:107 +#: actions/groupmembers.php:182 lib/groupnav.php:107 msgid "Admin" msgstr "" -#: actions/groupmembers.php:348 lib/blockform.php:69 +#: actions/groupmembers.php:355 lib/blockform.php:69 msgid "Block" msgstr "" -#: actions/groupmembers.php:443 +#: actions/groupmembers.php:450 #, 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/groupmembers.php:475 +#: actions/groupmembers.php:482 msgid "Make Admin" msgstr "" -#: actions/groupmembers.php:475 +#: actions/groupmembers.php:482 #, fuzzy msgid "Make this user an admin" msgstr "Kênh mà bạn tham gia" -#: actions/grouprss.php:133 +#: actions/grouprss.php:140 #, fuzzy, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Dòng tin nhắn cho %s" @@ -2056,16 +2088,19 @@ msgstr "Tin nhắn cá nhân" 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/invite.php:197 lib/messageform.php:178 lib/noticeform.php:236 +#. TRANS: Send button for inviting friends +#: actions/invite.php:198 +#, fuzzy +msgctxt "BUTTON" msgid "Send" msgstr "Gửi" -#: actions/invite.php:226 +#: actions/invite.php:227 #, 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/invite.php:228 +#: actions/invite.php:229 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -2127,7 +2162,12 @@ msgstr "" 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:131 +#: actions/joingroup.php:88 actions/leavegroup.php:88 +#, fuzzy +msgid "No nickname or ID." +msgstr "Không có biệt hiệu." + +#: actions/joingroup.php:141 #, fuzzy, php-format msgid "%1$s joined group %2$s" msgstr "%s và nhóm" @@ -2137,12 +2177,12 @@ msgstr "%s và nhóm" 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:90 lib/command.php:265 +#: actions/leavegroup.php:100 lib/command.php:265 #, 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:127 +#: actions/leavegroup.php:137 #, fuzzy, php-format msgid "%1$s left group %2$s" msgstr "%s và nhóm" @@ -2160,8 +2200,7 @@ msgstr "Sai tên đăng nhập hoặc mật khẩu." msgid "Error setting user. You are probably not authorized." msgstr "Chưa được phép." -#: actions/login.php:188 actions/login.php:241 lib/action.php:466 -#: lib/logingroupnav.php:79 +#: actions/login.php:188 actions/login.php:241 lib/logingroupnav.php:79 msgid "Login" msgstr "Đăng nhập" @@ -2421,8 +2460,8 @@ msgstr "Kết nối" msgid "Only " msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 -#: lib/api.php:1068 lib/api.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 +#: lib/apiaction.php:1068 lib/apiaction.php:1177 msgid "Not a supported data format." msgstr "Không hỗ trợ định dạng dữ liệu này." @@ -2574,7 +2613,7 @@ msgstr "Không thể lưu mật khẩu mới" msgid "Password saved." msgstr "Đã lưu mật khẩu." -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:331 +#: actions/pathsadminpanel.php:59 msgid "Paths" msgstr "" @@ -2607,7 +2646,6 @@ msgid "Invalid SSL server. The maximum length is 255 characters." msgstr "" #: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58 -#: lib/adminpanelaction.php:311 #, fuzzy msgid "Site" msgstr "Thư mời" @@ -2796,7 +2834,7 @@ 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:448 -#: actions/showgroup.php:247 actions/tagother.php:104 +#: actions/showgroup.php:255 actions/tagother.php:104 #: lib/groupeditform.php:157 lib/userprofile.php:149 msgid "Full name" msgstr "Tên đầy đủ" @@ -2825,7 +2863,7 @@ msgid "Bio" msgstr "Lý lịch" #: actions/profilesettings.php:132 actions/register.php:471 -#: actions/showgroup.php:256 actions/tagother.php:112 +#: actions/showgroup.php:264 actions/tagother.php:112 #: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:164 msgid "Location" @@ -2909,7 +2947,8 @@ msgstr "Không thể lưu hồ sơ cá nhân." msgid "Couldn't save tags." msgstr "Không thể lưu hồ sơ cá nhân." -#: actions/profilesettings.php:391 lib/adminpanelaction.php:137 +#. TRANS: Message after successful saving of administrative settings. +#: actions/profilesettings.php:391 lib/adminpanelaction.php:141 msgid "Settings saved." msgstr "Đã lưu các điều chỉnh." @@ -2923,48 +2962,48 @@ msgstr "" msgid "Could not retrieve public stream." msgstr "Không thể lấy lại các tin nhắn ưa thích" -#: actions/public.php:129 +#: actions/public.php:130 #, fuzzy, php-format msgid "Public timeline, page %d" msgstr "Dòng tin công cộng" -#: actions/public.php:131 lib/publicgroupnav.php:79 +#: actions/public.php:132 lib/publicgroupnav.php:79 msgid "Public timeline" msgstr "Dòng tin công cộng" -#: actions/public.php:159 +#: actions/public.php:160 #, fuzzy msgid "Public Stream Feed (RSS 1.0)" msgstr "Dòng tin công cộng" -#: actions/public.php:163 +#: actions/public.php:164 #, fuzzy msgid "Public Stream Feed (RSS 2.0)" msgstr "Dòng tin công cộng" -#: actions/public.php:167 +#: actions/public.php:168 #, fuzzy msgid "Public Stream Feed (Atom)" msgstr "Dòng tin công cộng" -#: actions/public.php:187 +#: actions/public.php:188 #, php-format msgid "" "This is the public timeline for %%site.name%% but no one has posted anything " "yet." msgstr "" -#: actions/public.php:190 +#: actions/public.php:191 msgid "Be the first to post!" msgstr "" -#: actions/public.php:194 +#: actions/public.php:195 #, php-format msgid "" "Why not [register an account](%%action.register%%) and be the first to post!" msgstr "" -#: actions/public.php:241 +#: actions/public.php:242 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2973,7 +3012,7 @@ msgid "" "friends, family, and colleagues! ([Read more](%%doc.help%%))" msgstr "" -#: actions/public.php:246 +#: actions/public.php:247 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -3147,8 +3186,7 @@ msgstr "Lỗi xảy ra với mã xác nhận." msgid "Registration successful" msgstr "Đăng ký thành công" -#: actions/register.php:114 actions/register.php:503 lib/action.php:463 -#: lib/logingroupnav.php:85 +#: actions/register.php:114 actions/register.php:503 lib/logingroupnav.php:85 msgid "Register" msgstr "Đăng ký" @@ -3335,7 +3373,7 @@ msgstr "Bạn không thể đăng ký nếu không đồng ý các điều kho msgid "You already repeated that notice." msgstr "Bạn đã theo những người này:" -#: actions/repeat.php:114 lib/noticelist.php:656 +#: actions/repeat.php:114 lib/noticelist.php:674 #, fuzzy msgid "Repeated" msgstr "Tạo" @@ -3345,47 +3383,47 @@ msgstr "Tạo" msgid "Repeated!" msgstr "Tạo" -#: actions/replies.php:125 actions/repliesrss.php:68 +#: actions/replies.php:126 actions/repliesrss.php:68 #: lib/personalgroupnav.php:105 #, php-format msgid "Replies to %s" msgstr "Trả lời cho %s" -#: actions/replies.php:127 +#: actions/replies.php:128 #, fuzzy, php-format msgid "Replies to %1$s, page %2$d" msgstr "%s chào mừng bạn " -#: actions/replies.php:144 +#: actions/replies.php:145 #, fuzzy, php-format msgid "Replies feed for %s (RSS 1.0)" msgstr "Dòng tin nhắn cho %s" -#: actions/replies.php:151 +#: actions/replies.php:152 #, fuzzy, php-format msgid "Replies feed for %s (RSS 2.0)" msgstr "Dòng tin nhắn cho %s" -#: actions/replies.php:158 +#: actions/replies.php:159 #, fuzzy, php-format msgid "Replies feed for %s (Atom)" msgstr "Dòng tin nhắn cho %s" -#: actions/replies.php:198 +#: actions/replies.php:199 #, php-format msgid "" "This is the timeline showing replies to %1$s but %2$s hasn't received a " "notice to his attention yet." msgstr "" -#: actions/replies.php:203 +#: actions/replies.php:204 #, php-format msgid "" "You can engage other users in a conversation, subscribe to more people or " "[join groups](%%action.groups%%)." msgstr "" -#: actions/replies.php:205 +#: actions/replies.php:206 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) or [post something to his or her " @@ -3413,7 +3451,6 @@ msgid "User is already sandboxed." msgstr "Người dùng không có thông tin." #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:336 msgid "Sessions" msgstr "" @@ -3438,7 +3475,7 @@ msgid "Turn on debugging output for sessions." msgstr "" #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/useradminpanel.php:293 +#: actions/useradminpanel.php:294 #, fuzzy msgid "Save site settings" msgstr "Thay đổi hình đại diện" @@ -3473,7 +3510,7 @@ msgstr "Thư mời đã gửi" msgid "Description" msgstr "Mô tả" -#: actions/showapplication.php:192 actions/showgroup.php:429 +#: actions/showapplication.php:192 actions/showgroup.php:437 #: lib/profileaction.php:174 msgid "Statistics" msgstr "Số liệu thống kê" @@ -3535,35 +3572,35 @@ msgstr "Những tin nhắn ưa thích của %s" msgid "Could not retrieve favorite notices." msgstr "Không thể lấy lại các tin nhắn ưa thích" -#: actions/showfavorites.php:170 +#: actions/showfavorites.php:171 #, php-format msgid "Feed for favorites of %s (RSS 1.0)" msgstr "Chọn những người bạn của %s" -#: actions/showfavorites.php:177 +#: actions/showfavorites.php:178 #, php-format msgid "Feed for favorites of %s (RSS 2.0)" msgstr "Chọn những người bạn của %s" -#: actions/showfavorites.php:184 +#: actions/showfavorites.php:185 #, php-format msgid "Feed for favorites of %s (Atom)" msgstr "Chọn những người bạn của %s" -#: actions/showfavorites.php:205 +#: actions/showfavorites.php:206 msgid "" "You haven't chosen any favorite notices yet. Click the fave button on " "notices you like to bookmark them for later or shed a spotlight on them." msgstr "" -#: actions/showfavorites.php:207 +#: actions/showfavorites.php:208 #, 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:211 +#: actions/showfavorites.php:212 #, php-format msgid "" "%s hasn't added any notices to his favorites yet. Why not [register an " @@ -3571,7 +3608,7 @@ msgid "" "would add to their favorites :)" msgstr "" -#: actions/showfavorites.php:242 +#: actions/showfavorites.php:243 msgid "This is a way to share what you like." msgstr "" @@ -3585,72 +3622,72 @@ msgstr "%s và nhóm" msgid "%1$s group, page %2$d" msgstr "Thành viên" -#: actions/showgroup.php:218 +#: actions/showgroup.php:226 #, fuzzy msgid "Group profile" msgstr "Thông tin nhóm" -#: actions/showgroup.php:263 actions/tagother.php:118 +#: actions/showgroup.php:271 actions/tagother.php:118 #: actions/userauthorization.php:175 lib/userprofile.php:177 msgid "URL" msgstr "" -#: actions/showgroup.php:274 actions/tagother.php:128 +#: actions/showgroup.php:282 actions/tagother.php:128 #: actions/userauthorization.php:187 lib/userprofile.php:194 #, fuzzy msgid "Note" msgstr "Tin nhắn" -#: actions/showgroup.php:284 lib/groupeditform.php:184 +#: actions/showgroup.php:292 lib/groupeditform.php:184 msgid "Aliases" msgstr "" -#: actions/showgroup.php:293 +#: actions/showgroup.php:301 #, fuzzy msgid "Group actions" msgstr "Mã nhóm" -#: actions/showgroup.php:328 +#: actions/showgroup.php:336 #, fuzzy, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Dòng tin nhắn cho %s" -#: actions/showgroup.php:334 +#: actions/showgroup.php:342 #, fuzzy, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Dòng tin nhắn cho %s" -#: actions/showgroup.php:340 +#: actions/showgroup.php:348 #, fuzzy, php-format msgid "Notice feed for %s group (Atom)" msgstr "Dòng tin nhắn cho %s" -#: actions/showgroup.php:345 +#: actions/showgroup.php:353 #, php-format msgid "FOAF for %s group" msgstr "Hộp thư đi của %s" -#: actions/showgroup.php:381 actions/showgroup.php:438 lib/groupnav.php:91 +#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 msgid "Members" msgstr "Thành viên" -#: actions/showgroup.php:386 lib/profileaction.php:117 +#: actions/showgroup.php:394 lib/profileaction.php:117 #: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "" -#: actions/showgroup.php:392 +#: actions/showgroup.php:400 #, fuzzy msgid "All members" msgstr "Thành viên" -#: actions/showgroup.php:432 +#: actions/showgroup.php:440 #, fuzzy msgid "Created" msgstr "Tạo" -#: actions/showgroup.php:448 +#: actions/showgroup.php:456 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3660,7 +3697,7 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showgroup.php:454 +#: actions/showgroup.php:462 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3669,7 +3706,7 @@ msgid "" "their life and interests. " msgstr "" -#: actions/showgroup.php:482 +#: actions/showgroup.php:490 msgid "Admins" msgstr "" @@ -4148,22 +4185,22 @@ msgstr "Không có Jabber ID." msgid "SMS" msgstr "SMS" -#: actions/tag.php:68 +#: actions/tag.php:69 #, fuzzy, php-format msgid "Notices tagged with %1$s, page %2$d" msgstr "Dòng tin nhắn cho %s" -#: actions/tag.php:86 +#: actions/tag.php:87 #, fuzzy, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Dòng tin nhắn cho %s" -#: actions/tag.php:92 +#: actions/tag.php:93 #, fuzzy, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Dòng tin nhắn cho %s" -#: actions/tag.php:98 +#: actions/tag.php:99 #, fuzzy, php-format msgid "Notice feed for tag %s (Atom)" msgstr "Dòng tin nhắn cho %s" @@ -4218,7 +4255,7 @@ msgstr "" msgid "No such tag." msgstr "Không có tin nhắn nào." -#: actions/twitapitrends.php:87 +#: actions/twitapitrends.php:85 msgid "API method under construction." msgstr "Phương thức API dưới cấu trúc có sẵn." @@ -4253,75 +4290,76 @@ msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" -#: actions/useradminpanel.php:58 lib/adminpanelaction.php:321 -#: lib/personalgroupnav.php:115 +#. TRANS: User admin panel title +#: actions/useradminpanel.php:59 +msgctxt "TITLE" msgid "User" msgstr "" -#: actions/useradminpanel.php:69 +#: actions/useradminpanel.php:70 msgid "User settings for this StatusNet site." msgstr "" -#: actions/useradminpanel.php:148 +#: actions/useradminpanel.php:149 msgid "Invalid bio limit. Must be numeric." msgstr "" -#: actions/useradminpanel.php:154 +#: actions/useradminpanel.php:155 msgid "Invalid welcome text. Max length is 255 characters." msgstr "" -#: actions/useradminpanel.php:164 +#: actions/useradminpanel.php:165 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" -#: actions/useradminpanel.php:217 lib/accountsettingsaction.php:108 +#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Hồ sơ " -#: actions/useradminpanel.php:221 +#: actions/useradminpanel.php:222 msgid "Bio Limit" msgstr "" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:223 msgid "Maximum length of a profile bio in characters." msgstr "" -#: actions/useradminpanel.php:230 +#: actions/useradminpanel.php:231 #, fuzzy msgid "New users" msgstr "Gửi thư mời đến những người chưa có tài khoản" -#: actions/useradminpanel.php:234 +#: actions/useradminpanel.php:235 msgid "New user welcome" msgstr "" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:236 msgid "Welcome text for new users (Max 255 chars)." msgstr "" -#: actions/useradminpanel.php:240 +#: actions/useradminpanel.php:241 #, fuzzy msgid "Default subscription" msgstr "Tất cả đăng nhận" -#: actions/useradminpanel.php:241 +#: actions/useradminpanel.php:242 #, fuzzy msgid "Automatically subscribe new users to this user." msgstr "Tự động theo những người nào đăng ký theo tôi" -#: actions/useradminpanel.php:250 +#: actions/useradminpanel.php:251 #, fuzzy msgid "Invitations" msgstr "Thư mời đã gửi" -#: actions/useradminpanel.php:255 +#: actions/useradminpanel.php:256 #, fuzzy msgid "Invitations enabled" msgstr "Thư mời đã gửi" -#: actions/useradminpanel.php:257 +#: actions/useradminpanel.php:258 msgid "Whether to allow users to invite new users." msgstr "" @@ -4508,7 +4546,7 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:196 lib/action.php:747 +#: actions/version.php:196 lib/action.php:778 #, fuzzy msgid "Version" msgstr "Cá nhân" @@ -4549,6 +4587,11 @@ msgstr "Không thể cập nhật thành viên." msgid "Group leave failed." msgstr "Thông tin nhóm" +#: classes/Local_group.php:41 +#, fuzzy +msgid "Could not update local group." +msgstr "Không thể cập nhật thành viên." + #: classes/Login_token.php:76 #, fuzzy, php-format msgid "Could not create login token for %s" @@ -4569,46 +4612,46 @@ msgstr "Không thể chèn thêm vào đăng nhận." 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." -#: classes/Notice.php:157 +#: classes/Notice.php:172 #, 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:222 +#: classes/Notice.php:239 #, fuzzy msgid "Problem saving notice. Too long." msgstr "Có lỗi xảy ra khi lưu tin nhắn." -#: classes/Notice.php:226 +#: classes/Notice.php:243 #, fuzzy msgid "Problem saving notice. Unknown user." msgstr "Có lỗi xảy ra khi lưu tin nhắn." -#: classes/Notice.php:231 +#: classes/Notice.php:248 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: classes/Notice.php:237 +#: classes/Notice.php:254 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." msgstr "" -#: classes/Notice.php:243 +#: classes/Notice.php:260 msgid "You are banned from posting notices on this site." msgstr "" -#: classes/Notice.php:309 classes/Notice.php:335 +#: classes/Notice.php:326 classes/Notice.php:352 msgid "Problem saving notice." msgstr "Có lỗi xảy ra khi lưu tin nhắn." -#: classes/Notice.php:882 +#: classes/Notice.php:911 #, fuzzy msgid "Problem saving group inbox." msgstr "Có lỗi xảy ra khi lưu tin nhắn." -#: classes/Notice.php:1407 +#: classes/Notice.php:1442 #, fuzzy, php-format msgid "RT @%1$s %2$s" msgstr "%s (%s)" @@ -4640,21 +4683,31 @@ msgstr "Không thể xóa đăng nhận." msgid "Couldn't delete subscription." msgstr "Không thể xóa đăng nhận." -#: classes/User.php:372 +#: classes/User.php:373 #, fuzzy, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "%s chào mừng bạn " -#: classes/User_group.php:423 +#: classes/User_group.php:462 #, fuzzy msgid "Could not create group." msgstr "Không thể tạo favorite." -#: classes/User_group.php:452 +#: classes/User_group.php:471 +#, fuzzy +msgid "Could not set group URI." +msgstr "Không thể tạo đăng nhận." + +#: classes/User_group.php:492 #, fuzzy msgid "Could not set group membership." msgstr "Không thể tạo đăng nhận." +#: classes/User_group.php:506 +#, fuzzy +msgid "Could not save local group info." +msgstr "Không thể tạo đăng nhận." + #: lib/accountsettingsaction.php:108 msgid "Change your profile settings" msgstr "Thay đổi các thiết lập trong hồ sơ cá nhân của bạn" @@ -4699,131 +4752,191 @@ msgstr "" msgid "Primary site navigation" msgstr "" +#. TRANS: Tooltip for main menu option "Personal" #: lib/action.php:439 -msgid "Home" -msgstr "Trang chủ" - -#: lib/action.php:439 +msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:441 +#: lib/action.php:442 #, fuzzy +msgctxt "MENU" +msgid "Personal" +msgstr "Cá nhân" + +#. TRANS: Tooltip for main menu option "Account" +#: lib/action.php:444 +#, fuzzy +msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Thay đổi mật khẩu của bạn" -#: lib/action.php:444 -msgid "Connect" -msgstr "Kết nối" - -#: lib/action.php:444 +#: lib/action.php:447 #, fuzzy +msgctxt "MENU" +msgid "Account" +msgstr "Giới thiệu" + +#. TRANS: Tooltip for main menu option "Services" +#: lib/action.php:450 +#, fuzzy +msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Không thể chuyển đến máy chủ: %s" -#: lib/action.php:448 +#: lib/action.php:453 #, fuzzy +msgctxt "MENU" +msgid "Connect" +msgstr "Kết nối" + +#. TRANS: Tooltip for menu option "Admin" +#: lib/action.php:457 +#, fuzzy +msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Tôi theo" -#: lib/action.php:452 lib/subgroupnav.php:105 -msgid "Invite" -msgstr "Thư mời" +#: lib/action.php:460 +msgctxt "MENU" +msgid "Admin" +msgstr "" -#: lib/action.php:453 lib/subgroupnav.php:106 +#. TRANS: Tooltip for main menu option "Invite" +#: lib/action.php:464 #, fuzzy, php-format +msgctxt "TOOLTIP" 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." -#: lib/action.php:458 -msgid "Logout" -msgstr "Thoát" +#: lib/action.php:467 +#, fuzzy +msgctxt "MENU" +msgid "Invite" +msgstr "Thư mời" -#: lib/action.php:458 +#. TRANS: Tooltip for main menu option "Logout" +#: lib/action.php:473 +msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "" -#: lib/action.php:463 +#: lib/action.php:476 #, fuzzy +msgctxt "MENU" +msgid "Logout" +msgstr "Thoát" + +#. TRANS: Tooltip for main menu option "Register" +#: lib/action.php:481 +#, fuzzy +msgctxt "TOOLTIP" msgid "Create an account" msgstr "Tạo tài khoản mới" -#: lib/action.php:466 +#: lib/action.php:484 +#, fuzzy +msgctxt "MENU" +msgid "Register" +msgstr "Đăng ký" + +#. TRANS: Tooltip for main menu option "Login" +#: lib/action.php:487 +msgctxt "TOOLTIP" msgid "Login to the site" msgstr "" -#: lib/action.php:469 lib/action.php:732 -msgid "Help" -msgstr "Hướng dẫn" - -#: lib/action.php:469 +#: lib/action.php:490 #, fuzzy +msgctxt "MENU" +msgid "Login" +msgstr "Đăng nhập" + +#. TRANS: Tooltip for main menu option "Help" +#: lib/action.php:493 +#, fuzzy +msgctxt "TOOLTIP" msgid "Help me!" msgstr "Hướng dẫn" -#: lib/action.php:472 lib/searchaction.php:127 -msgid "Search" -msgstr "Tìm kiếm" +#: lib/action.php:496 +#, fuzzy +msgctxt "MENU" +msgid "Help" +msgstr "Hướng dẫn" -#: lib/action.php:472 +#. TRANS: Tooltip for main menu option "Search" +#: lib/action.php:499 +msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "" -#: lib/action.php:493 +#: lib/action.php:502 +#, fuzzy +msgctxt "MENU" +msgid "Search" +msgstr "Tìm kiếm" + +#. TRANS: DT element for site notice. String is hidden in default CSS. +#: lib/action.php:524 #, fuzzy msgid "Site notice" msgstr "Thông báo mới" -#: lib/action.php:559 +#: lib/action.php:590 msgid "Local views" msgstr "" -#: lib/action.php:625 +#: lib/action.php:656 #, fuzzy msgid "Page notice" msgstr "Thông báo mới" -#: lib/action.php:727 +#: lib/action.php:758 #, fuzzy msgid "Secondary site navigation" msgstr "Tôi theo" -#: lib/action.php:734 +#: lib/action.php:763 +msgid "Help" +msgstr "Hướng dẫn" + +#: lib/action.php:765 msgid "About" msgstr "Giới thiệu" -#: lib/action.php:736 +#: lib/action.php:767 msgid "FAQ" msgstr "FAQ" -#: lib/action.php:740 +#: lib/action.php:771 msgid "TOS" msgstr "" -#: lib/action.php:743 +#: lib/action.php:774 msgid "Privacy" msgstr "Riêng tư" -#: lib/action.php:745 +#: lib/action.php:776 msgid "Source" msgstr "Nguồn" -#: lib/action.php:749 +#: lib/action.php:780 msgid "Contact" msgstr "Liên hệ" -#: lib/action.php:751 +#: lib/action.php:782 #, fuzzy msgid "Badge" msgstr "Tin đã gửi" -#: lib/action.php:779 +#: lib/action.php:810 msgid "StatusNet software license" msgstr "" -#: lib/action.php:782 +#: lib/action.php:813 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4832,12 +4945,12 @@ msgstr "" "**%%site.name%%** là dịch vụ gửi tin nhắn được cung cấp từ [%%site.broughtby%" "%](%%site.broughtbyurl%%). " -#: lib/action.php:784 +#: lib/action.php:815 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** là dịch vụ gửi tin nhắn. " -#: lib/action.php:786 +#: lib/action.php:817 #, fuzzy, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4848,117 +4961,168 @@ msgstr "" "quyền [GNU Affero General Public License](http://www.fsf.org/licensing/" "licenses/agpl-3.0.html)." -#: lib/action.php:801 +#: lib/action.php:832 #, fuzzy msgid "Site content license" msgstr "Tìm theo nội dung của tin nhắn" -#: lib/action.php:806 +#: lib/action.php:837 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:811 +#: lib/action.php:842 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:814 +#: lib/action.php:845 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" -#: lib/action.php:827 +#: lib/action.php:858 msgid "All " msgstr "" -#: lib/action.php:833 +#: lib/action.php:864 msgid "license." msgstr "" -#: lib/action.php:1132 +#: lib/action.php:1163 msgid "Pagination" msgstr "" -#: lib/action.php:1141 +#: lib/action.php:1172 #, fuzzy msgid "After" msgstr "Sau" -#: lib/action.php:1149 +#: lib/action.php:1180 #, fuzzy msgid "Before" msgstr "Trước" -#: lib/activity.php:382 +#: lib/activity.php:449 msgid "Can't handle remote content yet." msgstr "" -#: lib/activity.php:410 +#: lib/activity.php:477 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activity.php:414 +#: lib/activity.php:481 msgid "Can't handle embedded Base64 content yet." msgstr "" -#: lib/adminpanelaction.php:96 +#. TRANS: Client error message +#: lib/adminpanelaction.php:98 #, fuzzy msgid "You cannot make changes to this site." msgstr "Bạn đã theo những người này:" -#: lib/adminpanelaction.php:107 +#. TRANS: Client error message +#: lib/adminpanelaction.php:110 #, fuzzy msgid "Changes to that panel are not allowed." msgstr "Biệt hiệu không được cho phép." -#: lib/adminpanelaction.php:206 +#. TRANS: Client error message +#: lib/adminpanelaction.php:211 msgid "showForm() not implemented." msgstr "" -#: lib/adminpanelaction.php:235 +#. TRANS: Client error message +#: lib/adminpanelaction.php:241 msgid "saveSettings() not implemented." msgstr "" -#: lib/adminpanelaction.php:258 +#. TRANS: Client error message +#: lib/adminpanelaction.php:265 #, fuzzy msgid "Unable to delete design setting." msgstr "Không thể lưu thông tin Twitter của bạn!" -#: lib/adminpanelaction.php:312 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:330 #, fuzzy msgid "Basic site configuration" msgstr "Xac nhan dia chi email" -#: lib/adminpanelaction.php:317 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:332 +#, fuzzy +msgctxt "MENU" +msgid "Site" +msgstr "Thư mời" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:338 #, fuzzy msgid "Design configuration" msgstr "Xác nhận SMS" -#: lib/adminpanelaction.php:322 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:340 +#, fuzzy +msgctxt "MENU" +msgid "Design" +msgstr "Cá nhân" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:346 #, fuzzy msgid "User configuration" msgstr "Xác nhận SMS" -#: lib/adminpanelaction.php:327 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:348 +msgctxt "MENU" +msgid "User" +msgstr "" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:354 #, fuzzy msgid "Access configuration" msgstr "Xác nhận SMS" -#: lib/adminpanelaction.php:332 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:356 +#, fuzzy +msgctxt "MENU" +msgid "Access" +msgstr "Chấp nhận" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:362 #, fuzzy msgid "Paths configuration" msgstr "Xác nhận SMS" -#: lib/adminpanelaction.php:337 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:364 +msgctxt "MENU" +msgid "Paths" +msgstr "" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:370 #, fuzzy msgid "Sessions configuration" msgstr "Xác nhận SMS" -#: lib/apiauth.php:95 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:372 +#, fuzzy +msgctxt "MENU" +msgid "Sessions" +msgstr "Cá nhân" + +#: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." msgstr "" -#: lib/apiauth.php:273 +#: lib/apiauth.php:272 #, php-format msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" msgstr "" @@ -5054,12 +5218,12 @@ msgstr "" msgid "Tags for this attachment" msgstr "" -#: lib/authenticationplugin.php:218 lib/authenticationplugin.php:223 +#: lib/authenticationplugin.php:220 lib/authenticationplugin.php:225 #, fuzzy msgid "Password changing failed" msgstr "Đã lưu mật khẩu." -#: lib/authenticationplugin.php:233 +#: lib/authenticationplugin.php:235 #, fuzzy msgid "Password changing is not allowed" msgstr "Đã lưu mật khẩu." @@ -5346,20 +5510,20 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:136 +#: lib/common.php:148 #, fuzzy msgid "No configuration file found. " msgstr "Không có mã số xác nhận." -#: lib/common.php:137 +#: lib/common.php:149 msgid "I looked for configuration files in the following places: " msgstr "" -#: lib/common.php:139 +#: lib/common.php:151 msgid "You may wish to run the installer to fix this." msgstr "" -#: lib/common.php:140 +#: lib/common.php:152 msgid "Go to the installer." msgstr "" @@ -5563,25 +5727,25 @@ msgstr "Hệ thống xảy ra lỗi trong khi tải file." msgid "Not an image or corrupt file." msgstr "File hỏng hoặc không phải là file ảnh." -#: lib/imagefile.php:105 +#: lib/imagefile.php:109 msgid "Unsupported image file format." msgstr "Không hỗ trợ kiểu file ảnh này." -#: lib/imagefile.php:118 +#: lib/imagefile.php:122 #, fuzzy msgid "Lost our file." msgstr "Không có tin nhắn nào." -#: lib/imagefile.php:150 lib/imagefile.php:197 +#: lib/imagefile.php:166 lib/imagefile.php:231 #, fuzzy msgid "Unknown file type" msgstr "Không hỗ trợ kiểu file ảnh này." -#: lib/imagefile.php:217 +#: lib/imagefile.php:251 msgid "MB" msgstr "" -#: lib/imagefile.php:219 +#: lib/imagefile.php:253 msgid "kB" msgstr "" @@ -5939,6 +6103,12 @@ msgstr "" msgid "Available characters" msgstr "Nhiều hơn 6 ký tự" +#: lib/messageform.php:178 lib/noticeform.php:236 +#, fuzzy +msgctxt "Send button for sending notice" +msgid "Send" +msgstr "Gửi" + #: lib/noticeform.php:160 #, fuzzy msgid "Send a notice" @@ -5999,26 +6169,26 @@ msgstr "" msgid "at" msgstr "" -#: lib/noticelist.php:558 +#: lib/noticelist.php:566 #, fuzzy msgid "in context" msgstr "Không có nội dung!" -#: lib/noticelist.php:583 +#: lib/noticelist.php:601 #, fuzzy msgid "Repeated by" msgstr "Tạo" -#: lib/noticelist.php:610 +#: lib/noticelist.php:628 #, fuzzy msgid "Reply to this notice" msgstr "Trả lời tin nhắn này" -#: lib/noticelist.php:611 +#: lib/noticelist.php:629 msgid "Reply" msgstr "Trả lời" -#: lib/noticelist.php:655 +#: lib/noticelist.php:673 #, fuzzy msgid "Notice repeated" msgstr "Tin đã gửi" @@ -6071,6 +6241,10 @@ msgstr "Trả lời" msgid "Favorites" msgstr "Ưa thích" +#: lib/personalgroupnav.php:115 +msgid "User" +msgstr "" + #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "Hộp thư đến" @@ -6169,7 +6343,7 @@ msgstr "Trả lời tin nhắn này" msgid "Repeat this notice" msgstr "Trả lời tin nhắn này" -#: lib/router.php:665 +#: lib/router.php:668 msgid "No single user defined for single-user mode." msgstr "" @@ -6192,6 +6366,10 @@ msgstr "Tìm kiếm" msgid "Keyword(s)" msgstr "" +#: lib/searchaction.php:127 +msgid "Search" +msgstr "Tìm kiếm" + #: lib/searchaction.php:162 #, fuzzy msgid "Search help" @@ -6247,6 +6425,17 @@ msgstr "Theo nhóm này" msgid "Groups %s is a member of" msgstr "" +#: lib/subgroupnav.php:105 +msgid "Invite" +msgstr "Thư mời" + +#: 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." + #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -6326,47 +6515,47 @@ msgstr "Tin mới nhất" msgid "Moderate" msgstr "" -#: lib/util.php:952 +#: lib/util.php:1013 msgid "a few seconds ago" msgstr "vài giây trước" -#: lib/util.php:954 +#: lib/util.php:1015 msgid "about a minute ago" msgstr "1 phút trước" -#: lib/util.php:956 +#: lib/util.php:1017 #, php-format msgid "about %d minutes ago" msgstr "%d phút trước" -#: lib/util.php:958 +#: lib/util.php:1019 msgid "about an hour ago" msgstr "1 giờ trước" -#: lib/util.php:960 +#: lib/util.php:1021 #, php-format msgid "about %d hours ago" msgstr "%d giờ trước" -#: lib/util.php:962 +#: lib/util.php:1023 msgid "about a day ago" msgstr "1 ngày trước" -#: lib/util.php:964 +#: lib/util.php:1025 #, php-format msgid "about %d days ago" msgstr "%d ngày trước" -#: lib/util.php:966 +#: lib/util.php:1027 msgid "about a month ago" msgstr "1 tháng trước" -#: lib/util.php:968 +#: lib/util.php:1029 #, php-format msgid "about %d months ago" msgstr "%d tháng trước" -#: lib/util.php:970 +#: lib/util.php:1031 msgid "about a year ago" msgstr "1 năm trước" diff --git a/locale/zh_CN/LC_MESSAGES/statusnet.po b/locale/zh_CN/LC_MESSAGES/statusnet.po index 60ca89d66c..45fdfe6dc0 100644 --- a/locale/zh_CN/LC_MESSAGES/statusnet.po +++ b/locale/zh_CN/LC_MESSAGES/statusnet.po @@ -10,82 +10,88 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-02-24 23:49+0000\n" -"PO-Revision-Date: 2010-02-24 23:52:00+0000\n" +"POT-Creation-Date: 2010-03-02 21:02+0000\n" +"PO-Revision-Date: 2010-03-02 21:04:02+0000\n" "Language-Team: Simplified Chinese\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r62925); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: actions/accessadminpanel.php:54 lib/adminpanelaction.php:326 +#. TRANS: Page title +#: actions/accessadminpanel.php:55 #, fuzzy msgid "Access" msgstr "接受" -#: actions/accessadminpanel.php:65 +#. TRANS: Page notice +#: actions/accessadminpanel.php:67 #, fuzzy msgid "Site access settings" msgstr "头像设置" -#: actions/accessadminpanel.php:158 +#. TRANS: Form legend for registration form. +#: actions/accessadminpanel.php:161 #, fuzzy msgid "Registration" msgstr "注册" -#: actions/accessadminpanel.php:161 -#, fuzzy -msgid "Private" -msgstr "隐私" - -#: actions/accessadminpanel.php:163 +#. TRANS: Checkbox instructions for admin setting "Private" +#: actions/accessadminpanel.php:165 msgid "Prohibit anonymous users (not logged in) from viewing site?" msgstr "" +#. TRANS: Checkbox label for prohibiting anonymous users from viewing site. #: actions/accessadminpanel.php:167 #, fuzzy +msgctxt "LABEL" +msgid "Private" +msgstr "隐私" + +#. TRANS: Checkbox instructions for admin setting "Invite only" +#: actions/accessadminpanel.php:174 +msgid "Make registration invitation only." +msgstr "" + +#. TRANS: Checkbox label for configuring site as invite only. +#: actions/accessadminpanel.php:176 +#, fuzzy msgid "Invite only" msgstr "邀请" -#: actions/accessadminpanel.php:169 -msgid "Make registration invitation only." +#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations) +#: actions/accessadminpanel.php:183 +msgid "Disable new registrations." msgstr "" -#: actions/accessadminpanel.php:173 +#. TRANS: Checkbox label for disabling new user registrations. +#: actions/accessadminpanel.php:185 #, fuzzy msgid "Closed" msgstr "阻止" -#: actions/accessadminpanel.php:175 -msgid "Disable new registrations." -msgstr "" - -#: actions/accessadminpanel.php:189 actions/designadminpanel.php:586 -#: actions/emailsettings.php:195 actions/imsettings.php:163 -#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 -#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 -#: actions/siteadminpanel.php:336 actions/smssettings.php:181 -#: actions/subscriptions.php:208 actions/tagother.php:154 -#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 -#: lib/applicationeditform.php:334 lib/designsettings.php:256 -#: lib/groupeditform.php:202 -msgid "Save" -msgstr "保存" - -#: actions/accessadminpanel.php:189 +#. TRANS: Title / tooltip for button to save access settings in site admin panel +#: actions/accessadminpanel.php:202 #, fuzzy msgid "Save access settings" msgstr "头像设置" -#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 -#: actions/showfavorites.php:137 actions/tag.php:51 +#: actions/accessadminpanel.php:203 +#, fuzzy +msgctxt "BUTTON" +msgid "Save" +msgstr "保存" + +#. TRANS: Server error when page not found (404) +#: actions/all.php:64 actions/public.php:98 actions/replies.php:93 +#: actions/showfavorites.php:138 actions/tag.php:52 msgid "No such page" msgstr "没有该页面" -#: actions/all.php:74 actions/allrss.php:68 +#: actions/all.php:75 actions/allrss.php:68 #: actions/apiaccountupdatedeliverydevice.php:113 #: actions/apiaccountupdateprofile.php:105 #: actions/apiaccountupdateprofilebackgroundimage.php:116 @@ -99,72 +105,82 @@ msgstr "没有该页面" #: actions/apitimelinehome.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/otp.php:76 -#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154 -#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 -#: actions/showfavorites.php:105 actions/userbyid.php:74 -#: actions/usergroups.php:91 actions/userrss.php:38 actions/xrds.php:71 -#: lib/command.php:163 lib/command.php:302 lib/command.php:355 -#: lib/command.php:401 lib/command.php:462 lib/command.php:518 -#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 +#: actions/hcard.php:67 actions/microsummary.php:62 actions/newmessage.php:116 +#: actions/otp.php:76 actions/remotesubscribe.php:145 +#: actions/remotesubscribe.php:154 actions/replies.php:73 +#: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/xrds.php:71 lib/command.php:163 lib/command.php:302 +#: lib/command.php:355 lib/command.php:401 lib/command.php:462 +#: lib/command.php:518 lib/galleryaction.php:59 lib/mailbox.php:82 +#: lib/profileaction.php:77 msgid "No such user." msgstr "没有这个用户。" -#: actions/all.php:84 +#. TRANS: Page title. %1$s is user nickname, %2$d is page number +#: actions/all.php:86 #, fuzzy, php-format msgid "%1$s and friends, page %2$d" msgstr "%s 及好友" -#: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 +#. TRANS: Page title. %1$s is user nickname +#. TRANS: H1 text. %1$s is user nickname +#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" msgstr "%s 及好友" -#: actions/all.php:99 +#. TRANS: %1$s is user nickname +#: actions/all.php:103 #, php-format msgid "Feed for friends of %s (RSS 1.0)" msgstr "%s 好友的聚合(RSS 1.0)" -#: actions/all.php:107 +#. TRANS: %1$s is user nickname +#: actions/all.php:112 #, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "%s 好友的聚合(RSS 2.0)" -#: actions/all.php:115 +#. TRANS: %1$s is user nickname +#: actions/all.php:121 #, php-format msgid "Feed for friends of %s (Atom)" msgstr "%s 好友的聚合(Atom)" -#: actions/all.php:127 +#. TRANS: %1$s is user nickname +#: actions/all.php:134 #, php-format msgid "" "This is the timeline for %s and friends but no one has posted anything yet." msgstr "这是 %s 和好友的时间线,但是没有任何人发布内容。" -#: actions/all.php:132 +#: actions/all.php:139 #, php-format msgid "" "Try subscribing to more people, [join a group](%%action.groups%%) or post " "something yourself." msgstr "" -#: actions/all.php:134 +#. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@" +#: actions/all.php:142 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) from his profile or [post something to " "his or her attention](%%%%action.newnotice%%%%?status_textarea=%3$s)." msgstr "" -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211 +#: actions/all.php:145 actions/replies.php:210 actions/showstream.php:211 #, 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/all.php:165 +#. TRANS: H1 text +#: actions/all.php:174 #, fuzzy msgid "You and friends" msgstr "%s 及好友" @@ -183,20 +199,20 @@ msgstr "来自%2$s 上 %1$s 和好友的更新!" #: actions/apiaccountverifycredentials.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:128 actions/apigroupcreate.php:136 +#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: actions/apigroupleave.php:141 actions/apigrouplist.php:132 #: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 #: actions/apigroupshow.php:115 actions/apihelptest.php:88 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 -#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184 +#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 #: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:207 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 #, fuzzy msgid "API method not found." msgstr "API 方法未实现!" @@ -230,8 +246,9 @@ msgstr "无法更新用户。" #: actions/apiaccountupdateprofilebackgroundimage.php:194 #: actions/apiaccountupdateprofilecolors.php:185 #: 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 +#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 +#: actions/replies.php:80 actions/usergroups.php:98 lib/galleryaction.php:66 +#: lib/profileaction.php:84 msgid "User has no profile." msgstr "用户没有个人信息。" @@ -256,7 +273,7 @@ msgstr "" #: actions/apiaccountupdateprofilebackgroundimage.php:146 #: actions/apiaccountupdateprofilecolors.php:164 #: actions/apiaccountupdateprofilecolors.php:174 -#: actions/groupdesignsettings.php:287 actions/groupdesignsettings.php:297 +#: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300 #: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 #: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 #, fuzzy @@ -375,68 +392,68 @@ msgstr "无法获取收藏的通告。" msgid "Could not find target user." msgstr "找不到任何信息。" -#: actions/apigroupcreate.php:164 actions/editgroup.php:182 +#: actions/apigroupcreate.php:166 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:215 #: actions/register.php:205 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "昵称只能使用小写字母和数字,不包含空格。" -#: actions/apigroupcreate.php:173 actions/editgroup.php:186 +#: actions/apigroupcreate.php:175 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:238 #: actions/register.php:208 msgid "Nickname already in use. Try another one." msgstr "昵称已被使用,换一个吧。" -#: actions/apigroupcreate.php:180 actions/editgroup.php:189 +#: actions/apigroupcreate.php:182 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:218 #: actions/register.php:210 msgid "Not a valid nickname." msgstr "不是有效的昵称。" -#: actions/apigroupcreate.php:196 actions/editapplication.php:215 -#: actions/editgroup.php:195 actions/newapplication.php:203 +#: actions/apigroupcreate.php:198 actions/editapplication.php:215 +#: actions/editgroup.php:199 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:217 msgid "Homepage is not a valid URL." msgstr "主页的URL不正确。" -#: actions/apigroupcreate.php:205 actions/editgroup.php:198 +#: actions/apigroupcreate.php:207 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:225 #: actions/register.php:220 msgid "Full name is too long (max 255 chars)." msgstr "全名过长(不能超过 255 个字符)。" -#: actions/apigroupcreate.php:213 actions/editapplication.php:190 +#: actions/apigroupcreate.php:215 actions/editapplication.php:190 #: actions/newapplication.php:172 #, fuzzy, php-format msgid "Description is too long (max %d chars)." msgstr "描述过长(不能超过140字符)。" -#: actions/apigroupcreate.php:224 actions/editgroup.php:204 +#: actions/apigroupcreate.php:226 actions/editgroup.php:208 #: actions/newgroup.php:148 actions/profilesettings.php:232 #: actions/register.php:227 msgid "Location is too long (max 255 chars)." msgstr "位置过长(不能超过255个字符)。" -#: actions/apigroupcreate.php:243 actions/editgroup.php:215 +#: actions/apigroupcreate.php:245 actions/editgroup.php:219 #: actions/newgroup.php:159 #, php-format msgid "Too many aliases! Maximum %d." msgstr "" -#: actions/apigroupcreate.php:264 actions/editgroup.php:224 +#: actions/apigroupcreate.php:266 actions/editgroup.php:228 #: actions/newgroup.php:168 #, fuzzy, php-format msgid "Invalid alias: \"%s\"" msgstr "主页'%s'不正确" -#: actions/apigroupcreate.php:273 actions/editgroup.php:228 +#: actions/apigroupcreate.php:275 actions/editgroup.php:232 #: actions/newgroup.php:172 #, fuzzy, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "昵称已被使用,换一个吧。" -#: actions/apigroupcreate.php:286 actions/editgroup.php:234 +#: actions/apigroupcreate.php:288 actions/editgroup.php:238 #: actions/newgroup.php:178 msgid "Alias can't be the same as nickname." msgstr "" @@ -448,16 +465,16 @@ msgstr "" msgid "Group not found!" msgstr "API 方法未实现!" -#: actions/apigroupjoin.php:110 actions/joingroup.php:90 +#: actions/apigroupjoin.php:110 actions/joingroup.php:100 #, fuzzy msgid "You are already a member of that group." msgstr "您已经是该组成员" -#: actions/apigroupjoin.php:119 actions/joingroup.php:95 lib/command.php:221 +#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:221 msgid "You have been blocked from that group by the admin." msgstr "" -#: actions/apigroupjoin.php:138 actions/joingroup.php:124 +#: actions/apigroupjoin.php:138 actions/joingroup.php:134 #, fuzzy, php-format msgid "Could not join user %1$s to group %2$s." msgstr "无法把 %s 用户添加到 %s 组" @@ -467,7 +484,7 @@ msgstr "无法把 %s 用户添加到 %s 组" msgid "You are not a member of this group." msgstr "您未告知此个人信息" -#: actions/apigroupleave.php:124 actions/leavegroup.php:119 +#: actions/apigroupleave.php:124 actions/leavegroup.php:129 #, fuzzy, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "无法订阅用户:未找到。" @@ -499,7 +516,7 @@ msgstr "大小不正确。" #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 #: actions/deletenotice.php:157 actions/disfavor.php:74 #: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54 -#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupblock.php:66 actions/grouplogo.php:312 #: actions/groupunblock.php:66 actions/imsettings.php:206 #: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 @@ -543,7 +560,7 @@ msgstr "" #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:103 actions/editapplication.php:139 -#: actions/emailsettings.php:256 actions/grouplogo.php:319 +#: actions/emailsettings.php:256 actions/grouplogo.php:322 #: actions/imsettings.php:220 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 #: actions/smssettings.php:248 lib/designsettings.php:304 @@ -566,13 +583,13 @@ msgid "" "give access to your %4$s account to third parties you trust." msgstr "" -#: actions/apioauthauthorize.php:310 lib/action.php:441 +#: actions/apioauthauthorize.php:310 msgid "Account" msgstr "帐号" #: actions/apioauthauthorize.php:313 actions/login.php:230 #: actions/profilesettings.php:106 actions/register.php:424 -#: actions/showgroup.php:236 actions/tagother.php:94 +#: actions/showgroup.php:244 actions/tagother.php:94 #: actions/userauthorization.php:145 lib/groupeditform.php:152 #: lib/userprofile.php:131 msgid "Nickname" @@ -659,12 +676,12 @@ msgid "%1$s updates favorited by %2$s / %2$s." msgstr "%s 收藏了 %s 的 %s 通告。" #: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:131 actions/userrss.php:90 +#: actions/grouprss.php:138 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "%s 时间表" -#: actions/apitimelinegroup.php:114 actions/apitimelineuser.php:126 +#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 #: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" @@ -700,7 +717,7 @@ msgstr "%s 的回复" msgid "Repeats of %s" msgstr "%s 的回复" -#: actions/apitimelinetag.php:102 actions/tag.php:66 +#: actions/apitimelinetag.php:102 actions/tag.php:67 #, php-format msgid "Notices tagged with %s" msgstr "带 %s 标签的通告" @@ -723,8 +740,7 @@ msgstr "没有这份文档。" #: actions/avatarbynickname.php:59 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/leavegroup.php:76 -#: actions/showgroup.php:121 +#: actions/grouprss.php:91 actions/showgroup.php:121 msgid "No nickname." msgstr "没有昵称。" @@ -736,7 +752,7 @@ msgstr "没有大小。" msgid "Invalid size." msgstr "大小不正确。" -#: actions/avatarsettings.php:67 actions/showgroup.php:221 +#: actions/avatarsettings.php:67 actions/showgroup.php:229 #: lib/accountsettingsaction.php:112 msgid "Avatar" msgstr "头像" @@ -753,31 +769,31 @@ msgid "User without matching profile" msgstr "找不到匹配的用户。" #: actions/avatarsettings.php:119 actions/avatarsettings.php:197 -#: actions/grouplogo.php:251 +#: actions/grouplogo.php:254 msgid "Avatar settings" msgstr "头像设置" #: actions/avatarsettings.php:127 actions/avatarsettings.php:205 -#: actions/grouplogo.php:199 actions/grouplogo.php:259 +#: actions/grouplogo.php:202 actions/grouplogo.php:262 msgid "Original" msgstr "原来的" #: actions/avatarsettings.php:142 actions/avatarsettings.php:217 -#: actions/grouplogo.php:210 actions/grouplogo.php:271 +#: actions/grouplogo.php:213 actions/grouplogo.php:274 msgid "Preview" msgstr "预览" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:637 +#: lib/deleteuserform.php:66 lib/noticelist.php:655 #, fuzzy msgid "Delete" msgstr "删除" -#: actions/avatarsettings.php:166 actions/grouplogo.php:233 +#: actions/avatarsettings.php:166 actions/grouplogo.php:236 msgid "Upload" msgstr "上传" -#: actions/avatarsettings.php:231 actions/grouplogo.php:286 +#: actions/avatarsettings.php:231 actions/grouplogo.php:289 msgid "Crop" msgstr "剪裁" @@ -785,7 +801,7 @@ msgstr "剪裁" msgid "Pick a square area of the image to be your avatar" msgstr "请选择一块方形区域作为你的头像" -#: actions/avatarsettings.php:343 actions/grouplogo.php:377 +#: actions/avatarsettings.php:343 actions/grouplogo.php:380 msgid "Lost our file data." msgstr "文件数据丢失" @@ -820,23 +836,23 @@ msgid "" msgstr "" #: actions/block.php:143 actions/deleteapplication.php:153 -#: actions/deletenotice.php:145 actions/deleteuser.php:147 +#: actions/deletenotice.php:145 actions/deleteuser.php:150 #: actions/groupblock.php:178 msgid "No" msgstr "否" -#: actions/block.php:143 actions/deleteuser.php:147 +#: actions/block.php:143 actions/deleteuser.php:150 #, fuzzy msgid "Do not block this user" msgstr "取消阻止次用户" #: actions/block.php:144 actions/deleteapplication.php:158 -#: actions/deletenotice.php:146 actions/deleteuser.php:148 +#: actions/deletenotice.php:146 actions/deleteuser.php:151 #: actions/groupblock.php:179 lib/repeatform.php:132 msgid "Yes" msgstr "是" -#: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:355 lib/blockform.php:80 #, fuzzy msgid "Block this user" msgstr "阻止该用户" @@ -845,41 +861,45 @@ msgstr "阻止该用户" msgid "Failed to save block information." msgstr "保存阻止信息失败。" -#: actions/blockedfromgroup.php:80 actions/editgroup.php:96 -#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/groupblock.php:86 -#: actions/groupbyid.php:83 actions/groupdesignsettings.php:97 -#: actions/grouplogo.php:99 actions/groupmembers.php:83 -#: actions/grouprss.php:98 actions/groupunblock.php:86 -#: actions/joingroup.php:83 actions/leavegroup.php:83 actions/makeadmin.php:86 -#: actions/showgroup.php:137 lib/command.php:212 lib/command.php:260 +#: actions/blockedfromgroup.php:80 actions/blockedfromgroup.php:87 +#: actions/editgroup.php:100 actions/foafgroup.php:44 actions/foafgroup.php:62 +#: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:100 actions/grouplogo.php:102 +#: actions/groupmembers.php:83 actions/groupmembers.php:90 +#: actions/grouprss.php:98 actions/grouprss.php:105 +#: actions/groupunblock.php:86 actions/joingroup.php:82 +#: actions/joingroup.php:93 actions/leavegroup.php:82 +#: actions/leavegroup.php:93 actions/makeadmin.php:86 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:212 +#: lib/command.php:260 msgid "No such group." msgstr "没有这个组。" -#: actions/blockedfromgroup.php:90 +#: actions/blockedfromgroup.php:97 #, fuzzy, php-format msgid "%s blocked profiles" msgstr "用户没有个人信息。" -#: actions/blockedfromgroup.php:93 +#: actions/blockedfromgroup.php:100 #, fuzzy, php-format msgid "%1$s blocked profiles, page %2$d" msgstr "%s 及好友" -#: actions/blockedfromgroup.php:108 +#: actions/blockedfromgroup.php:115 #, fuzzy msgid "A list of the users blocked from joining this group." msgstr "该组成员列表。" -#: actions/blockedfromgroup.php:281 +#: actions/blockedfromgroup.php:288 #, fuzzy msgid "Unblock user from group" msgstr "取消阻止用户失败。" -#: actions/blockedfromgroup.php:313 lib/unblockform.php:69 +#: actions/blockedfromgroup.php:320 lib/unblockform.php:69 msgid "Unblock" msgstr "取消阻止" -#: actions/blockedfromgroup.php:313 lib/unblockform.php:80 +#: actions/blockedfromgroup.php:320 lib/unblockform.php:80 #, fuzzy msgid "Unblock this user" msgstr "取消阻止次用户" @@ -961,7 +981,7 @@ msgstr "您未告知此个人信息" #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1197 +#: lib/action.php:1228 #, fuzzy msgid "There was a problem with your session token." msgstr "会话标识有问题,请重试。" @@ -988,12 +1008,13 @@ msgstr "无法删除通告。" msgid "Delete this application" msgstr "删除通告" +#. TRANS: Client error message #: 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:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 -#: lib/adminpanelaction.php:72 lib/profileformaction.php:63 +#: lib/adminpanelaction.php:73 lib/profileformaction.php:63 #: lib/settingsaction.php:72 msgid "Not logged in." msgstr "未登录。" @@ -1022,7 +1043,7 @@ msgstr "确定要删除这条消息吗?" msgid "Do not delete this notice" msgstr "无法删除通告。" -#: actions/deletenotice.php:146 lib/noticelist.php:637 +#: actions/deletenotice.php:146 lib/noticelist.php:655 #, fuzzy msgid "Delete this notice" msgstr "删除通告" @@ -1042,19 +1063,19 @@ msgstr "您不能删除其他用户的状态。" msgid "Delete user" msgstr "删除" -#: actions/deleteuser.php:135 +#: actions/deleteuser.php:136 msgid "" "Are you sure you want to delete this user? This will clear all data about " "the user from the database, without a backup." msgstr "" -#: actions/deleteuser.php:148 lib/deleteuserform.php:77 +#: actions/deleteuser.php:151 lib/deleteuserform.php:77 #, fuzzy msgid "Delete this user" msgstr "删除通告" #: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 -#: lib/adminpanelaction.php:316 lib/groupnav.php:119 +#: lib/groupnav.php:119 msgid "Design" msgstr "" @@ -1165,6 +1186,17 @@ msgstr "" msgid "Reset back to default" msgstr "" +#: actions/designadminpanel.php:586 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/tagother.php:154 actions/useradminpanel.php:294 +#: lib/applicationeditform.php:333 lib/applicationeditform.php:334 +#: lib/designsettings.php:256 lib/groupeditform.php:202 +msgid "Save" +msgstr "保存" + #: actions/designadminpanel.php:587 lib/designsettings.php:257 msgid "Save design" msgstr "" @@ -1267,31 +1299,31 @@ msgstr "编辑 %s 组" msgid "You must be logged in to create a group." msgstr "您必须登录才能创建小组。" -#: actions/editgroup.php:103 actions/editgroup.php:168 -#: actions/groupdesignsettings.php:104 actions/grouplogo.php:106 +#: actions/editgroup.php:107 actions/editgroup.php:172 +#: actions/groupdesignsettings.php:107 actions/grouplogo.php:109 #, fuzzy msgid "You must be an admin to edit the group." msgstr "只有admin才能编辑这个组" -#: actions/editgroup.php:154 +#: actions/editgroup.php:158 msgid "Use this form to edit the group." msgstr "使用这个表单来编辑组" -#: actions/editgroup.php:201 actions/newgroup.php:145 +#: actions/editgroup.php:205 actions/newgroup.php:145 #, fuzzy, php-format msgid "description is too long (max %d chars)." msgstr "描述过长(不能超过140字符)。" -#: actions/editgroup.php:253 +#: actions/editgroup.php:258 msgid "Could not update group." msgstr "无法更新组" -#: actions/editgroup.php:259 classes/User_group.php:433 +#: actions/editgroup.php:264 classes/User_group.php:478 #, fuzzy msgid "Could not create aliases." msgstr "无法创建收藏。" -#: actions/editgroup.php:269 +#: actions/editgroup.php:280 msgid "Options saved." msgstr "选项已保存。" @@ -1645,7 +1677,7 @@ msgstr "用户没有个人信息。" msgid "User is not a member of group." msgstr "您未告知此个人信息" -#: actions/groupblock.php:136 actions/groupmembers.php:316 +#: actions/groupblock.php:136 actions/groupmembers.php:323 #, fuzzy msgid "Block user from group" msgstr "阻止用户" @@ -1682,94 +1714,94 @@ msgstr "没有ID" msgid "You must be logged in to edit a group." msgstr "您必须登录才能创建小组。" -#: actions/groupdesignsettings.php:141 +#: actions/groupdesignsettings.php:144 #, fuzzy msgid "Group design" msgstr "组" -#: actions/groupdesignsettings.php:152 +#: actions/groupdesignsettings.php:155 msgid "" "Customize the way your group looks with a background image and a colour " "palette of your choice." msgstr "" -#: actions/groupdesignsettings.php:263 actions/userdesignsettings.php:186 +#: actions/groupdesignsettings.php:266 actions/userdesignsettings.php:186 #: lib/designsettings.php:391 lib/designsettings.php:413 #, fuzzy msgid "Couldn't update your design." msgstr "无法更新用户。" -#: actions/groupdesignsettings.php:308 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231 #, fuzzy msgid "Design preferences saved." msgstr "同步选项已保存。" -#: actions/grouplogo.php:139 actions/grouplogo.php:192 +#: actions/grouplogo.php:142 actions/grouplogo.php:195 msgid "Group logo" msgstr "组logo" -#: actions/grouplogo.php:150 +#: actions/grouplogo.php:153 #, fuzzy, php-format msgid "" "You can upload a logo image for your group. The maximum file size is %s." msgstr "你可以给你的组上载一个logo图。" -#: actions/grouplogo.php:178 +#: actions/grouplogo.php:181 #, fuzzy msgid "User without matching profile." msgstr "找不到匹配的用户。" -#: actions/grouplogo.php:362 +#: actions/grouplogo.php:365 #, fuzzy msgid "Pick a square area of the image to be the logo." msgstr "请选择一块方形区域作为你的头像" -#: actions/grouplogo.php:396 +#: actions/grouplogo.php:399 msgid "Logo updated." msgstr "logo已更新。" -#: actions/grouplogo.php:398 +#: actions/grouplogo.php:401 #, fuzzy msgid "Failed updating logo." msgstr "更新logo失败。" -#: actions/groupmembers.php:93 lib/groupnav.php:92 +#: actions/groupmembers.php:100 lib/groupnav.php:92 #, php-format msgid "%s group members" msgstr "%s 组成员" -#: actions/groupmembers.php:96 +#: actions/groupmembers.php:103 #, fuzzy, php-format msgid "%1$s group members, page %2$d" msgstr "%s 组成员, 第 %d 页" -#: actions/groupmembers.php:111 +#: actions/groupmembers.php:118 msgid "A list of the users in this group." msgstr "该组成员列表。" -#: actions/groupmembers.php:175 lib/action.php:448 lib/groupnav.php:107 +#: actions/groupmembers.php:182 lib/groupnav.php:107 msgid "Admin" msgstr "admin管理员" -#: actions/groupmembers.php:348 lib/blockform.php:69 +#: actions/groupmembers.php:355 lib/blockform.php:69 msgid "Block" msgstr "阻止" -#: actions/groupmembers.php:443 +#: actions/groupmembers.php:450 #, fuzzy msgid "Make user an admin of the group" msgstr "只有admin才能编辑这个组" -#: actions/groupmembers.php:475 +#: actions/groupmembers.php:482 #, fuzzy msgid "Make Admin" msgstr "admin管理员" -#: actions/groupmembers.php:475 +#: actions/groupmembers.php:482 msgid "Make this user an admin" msgstr "" -#: actions/grouprss.php:133 +#: actions/grouprss.php:140 #, fuzzy, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "%2$s 上 %1$s 的更新!" @@ -2020,16 +2052,19 @@ msgstr "个人消息" msgid "Optionally add a personal message to the invitation." msgstr "在邀请中加几句话(可选)。" -#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:236 +#. TRANS: Send button for inviting friends +#: actions/invite.php:198 +#, fuzzy +msgctxt "BUTTON" msgid "Send" msgstr "发送" -#: actions/invite.php:226 +#: actions/invite.php:227 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "%1$s 邀请您加入 %2$s" -#: actions/invite.php:228 +#: actions/invite.php:229 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -2085,7 +2120,12 @@ msgstr "" msgid "You must be logged in to join a group." msgstr "您必须登录才能加入组。" -#: actions/joingroup.php:131 +#: actions/joingroup.php:88 actions/leavegroup.php:88 +#, fuzzy +msgid "No nickname or ID." +msgstr "没有昵称。" + +#: actions/joingroup.php:141 #, fuzzy, php-format msgid "%1$s joined group %2$s" msgstr "%s 加入 %s 组" @@ -2095,12 +2135,12 @@ msgstr "%s 加入 %s 组" msgid "You must be logged in to leave a group." msgstr "您必须登录才能邀请其他人使用 %s" -#: actions/leavegroup.php:90 lib/command.php:265 +#: actions/leavegroup.php:100 lib/command.php:265 #, fuzzy msgid "You are not a member of that group." msgstr "您未告知此个人信息" -#: actions/leavegroup.php:127 +#: actions/leavegroup.php:137 #, fuzzy, php-format msgid "%1$s left group %2$s" msgstr "%s 离开群 %s" @@ -2118,8 +2158,7 @@ msgstr "用户名或密码不正确。" msgid "Error setting user. You are probably not authorized." msgstr "未认证。" -#: actions/login.php:188 actions/login.php:241 lib/action.php:466 -#: lib/logingroupnav.php:79 +#: actions/login.php:188 actions/login.php:241 lib/logingroupnav.php:79 msgid "Login" msgstr "登录" @@ -2371,8 +2410,8 @@ msgstr "连接" msgid "Only " msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 -#: lib/api.php:1068 lib/api.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 +#: lib/apiaction.php:1068 lib/apiaction.php:1177 msgid "Not a supported data format." msgstr "不支持的数据格式。" @@ -2521,7 +2560,7 @@ msgstr "无法保存新密码。" msgid "Password saved." msgstr "密码已保存。" -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:331 +#: actions/pathsadminpanel.php:59 msgid "Paths" msgstr "" @@ -2554,7 +2593,6 @@ msgid "Invalid SSL server. The maximum length is 255 characters." msgstr "" #: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58 -#: lib/adminpanelaction.php:311 #, fuzzy msgid "Site" msgstr "邀请" @@ -2737,7 +2775,7 @@ msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1 到 64 个小写字母或数字,不包含标点及空白" #: actions/profilesettings.php:111 actions/register.php:448 -#: actions/showgroup.php:247 actions/tagother.php:104 +#: actions/showgroup.php:255 actions/tagother.php:104 #: lib/groupeditform.php:157 lib/userprofile.php:149 msgid "Full name" msgstr "全名" @@ -2766,7 +2804,7 @@ msgid "Bio" msgstr "自述" #: actions/profilesettings.php:132 actions/register.php:471 -#: actions/showgroup.php:256 actions/tagother.php:112 +#: actions/showgroup.php:264 actions/tagother.php:112 #: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:164 msgid "Location" @@ -2848,7 +2886,8 @@ msgstr "无法保存个人信息。" msgid "Couldn't save tags." msgstr "无法保存个人信息。" -#: actions/profilesettings.php:391 lib/adminpanelaction.php:137 +#. TRANS: Message after successful saving of administrative settings. +#: actions/profilesettings.php:391 lib/adminpanelaction.php:141 msgid "Settings saved." msgstr "设置已保存。" @@ -2862,48 +2901,48 @@ msgstr "" msgid "Could not retrieve public stream." msgstr "无法获取收藏的通告。" -#: actions/public.php:129 +#: actions/public.php:130 #, fuzzy, php-format msgid "Public timeline, page %d" msgstr "公开的时间表" -#: actions/public.php:131 lib/publicgroupnav.php:79 +#: actions/public.php:132 lib/publicgroupnav.php:79 msgid "Public timeline" msgstr "公开的时间表" -#: actions/public.php:159 +#: actions/public.php:160 #, fuzzy msgid "Public Stream Feed (RSS 1.0)" msgstr "公开的聚合" -#: actions/public.php:163 +#: actions/public.php:164 #, fuzzy msgid "Public Stream Feed (RSS 2.0)" msgstr "公开的聚合" -#: actions/public.php:167 +#: actions/public.php:168 #, fuzzy msgid "Public Stream Feed (Atom)" msgstr "公开的聚合" -#: actions/public.php:187 +#: actions/public.php:188 #, php-format msgid "" "This is the public timeline for %%site.name%% but no one has posted anything " "yet." msgstr "" -#: actions/public.php:190 +#: actions/public.php:191 msgid "Be the first to post!" msgstr "" -#: actions/public.php:194 +#: actions/public.php:195 #, php-format msgid "" "Why not [register an account](%%action.register%%) and be the first to post!" msgstr "" -#: actions/public.php:241 +#: actions/public.php:242 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2912,7 +2951,7 @@ msgid "" "friends, family, and colleagues! ([Read more](%%doc.help%%))" msgstr "" -#: actions/public.php:246 +#: actions/public.php:247 #, fuzzy, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -3085,8 +3124,7 @@ msgstr "验证码出错。" msgid "Registration successful" msgstr "注册成功。" -#: actions/register.php:114 actions/register.php:503 lib/action.php:463 -#: lib/logingroupnav.php:85 +#: actions/register.php:114 actions/register.php:503 lib/logingroupnav.php:85 msgid "Register" msgstr "注册" @@ -3269,7 +3307,7 @@ msgstr "您必须同意此授权方可注册。" msgid "You already repeated that notice." msgstr "您已成功阻止该用户:" -#: actions/repeat.php:114 lib/noticelist.php:656 +#: actions/repeat.php:114 lib/noticelist.php:674 #, fuzzy msgid "Repeated" msgstr "创建" @@ -3279,47 +3317,47 @@ msgstr "创建" msgid "Repeated!" msgstr "创建" -#: actions/replies.php:125 actions/repliesrss.php:68 +#: actions/replies.php:126 actions/repliesrss.php:68 #: lib/personalgroupnav.php:105 #, php-format msgid "Replies to %s" msgstr "%s 的回复" -#: actions/replies.php:127 +#: actions/replies.php:128 #, fuzzy, php-format msgid "Replies to %1$s, page %2$d" msgstr "发送给 %1$s 的 %2$s 消息" -#: actions/replies.php:144 +#: actions/replies.php:145 #, fuzzy, php-format msgid "Replies feed for %s (RSS 1.0)" msgstr "%s 的通告聚合" -#: actions/replies.php:151 +#: actions/replies.php:152 #, fuzzy, php-format msgid "Replies feed for %s (RSS 2.0)" msgstr "%s 的通告聚合" -#: actions/replies.php:158 +#: actions/replies.php:159 #, fuzzy, php-format msgid "Replies feed for %s (Atom)" msgstr "%s 的通告聚合" -#: actions/replies.php:198 +#: actions/replies.php:199 #, fuzzy, php-format msgid "" "This is the timeline showing replies to %1$s but %2$s hasn't received a " "notice to his attention yet." msgstr "这是 %s 和好友的时间线,但是没有任何人发布内容。" -#: actions/replies.php:203 +#: actions/replies.php:204 #, php-format msgid "" "You can engage other users in a conversation, subscribe to more people or " "[join groups](%%action.groups%%)." msgstr "" -#: actions/replies.php:205 +#: actions/replies.php:206 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) or [post something to his or her " @@ -3347,7 +3385,6 @@ msgid "User is already sandboxed." msgstr "用户没有个人信息。" #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:336 msgid "Sessions" msgstr "" @@ -3372,7 +3409,7 @@ msgid "Turn on debugging output for sessions." msgstr "" #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/useradminpanel.php:293 +#: actions/useradminpanel.php:294 #, fuzzy msgid "Save site settings" msgstr "头像设置" @@ -3408,7 +3445,7 @@ msgstr "分页" msgid "Description" msgstr "描述" -#: actions/showapplication.php:192 actions/showgroup.php:429 +#: actions/showapplication.php:192 actions/showgroup.php:437 #: lib/profileaction.php:174 msgid "Statistics" msgstr "统计" @@ -3470,35 +3507,35 @@ msgstr "%s 收藏的通告" msgid "Could not retrieve favorite notices." msgstr "无法获取收藏的通告。" -#: actions/showfavorites.php:170 +#: actions/showfavorites.php:171 #, php-format msgid "Feed for favorites of %s (RSS 1.0)" msgstr "%s 好友的聚合" -#: actions/showfavorites.php:177 +#: actions/showfavorites.php:178 #, php-format msgid "Feed for favorites of %s (RSS 2.0)" msgstr "%s 好友的聚合" -#: actions/showfavorites.php:184 +#: actions/showfavorites.php:185 #, php-format msgid "Feed for favorites of %s (Atom)" msgstr "%s 好友的聚合" -#: actions/showfavorites.php:205 +#: actions/showfavorites.php:206 msgid "" "You haven't chosen any favorite notices yet. Click the fave button on " "notices you like to bookmark them for later or shed a spotlight on them." msgstr "" -#: actions/showfavorites.php:207 +#: actions/showfavorites.php:208 #, 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:211 +#: actions/showfavorites.php:212 #, php-format msgid "" "%s hasn't added any notices to his favorites yet. Why not [register an " @@ -3506,7 +3543,7 @@ msgid "" "would add to their favorites :)" msgstr "" -#: actions/showfavorites.php:242 +#: actions/showfavorites.php:243 msgid "This is a way to share what you like." msgstr "" @@ -3520,71 +3557,71 @@ msgstr "%s 组" msgid "%1$s group, page %2$d" msgstr "%s 组成员, 第 %d 页" -#: actions/showgroup.php:218 +#: actions/showgroup.php:226 #, fuzzy msgid "Group profile" msgstr "组资料" -#: actions/showgroup.php:263 actions/tagother.php:118 +#: actions/showgroup.php:271 actions/tagother.php:118 #: actions/userauthorization.php:175 lib/userprofile.php:177 msgid "URL" msgstr "URL 互联网地址" -#: actions/showgroup.php:274 actions/tagother.php:128 +#: actions/showgroup.php:282 actions/tagother.php:128 #: actions/userauthorization.php:187 lib/userprofile.php:194 #, fuzzy msgid "Note" msgstr "通告" -#: actions/showgroup.php:284 lib/groupeditform.php:184 +#: actions/showgroup.php:292 lib/groupeditform.php:184 msgid "Aliases" msgstr "" -#: actions/showgroup.php:293 +#: actions/showgroup.php:301 msgid "Group actions" msgstr "组动作" -#: actions/showgroup.php:328 +#: actions/showgroup.php:336 #, fuzzy, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "%s 的通告聚合" -#: actions/showgroup.php:334 +#: actions/showgroup.php:342 #, fuzzy, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "%s 的通告聚合" -#: actions/showgroup.php:340 +#: actions/showgroup.php:348 #, fuzzy, php-format msgid "Notice feed for %s group (Atom)" msgstr "%s 的通告聚合" -#: actions/showgroup.php:345 +#: actions/showgroup.php:353 #, php-format msgid "FOAF for %s group" msgstr "%s 的发件箱" -#: actions/showgroup.php:381 actions/showgroup.php:438 lib/groupnav.php:91 +#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 #, fuzzy msgid "Members" msgstr "注册于" -#: actions/showgroup.php:386 lib/profileaction.php:117 +#: actions/showgroup.php:394 lib/profileaction.php:117 #: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(没有)" -#: actions/showgroup.php:392 +#: actions/showgroup.php:400 msgid "All members" msgstr "所有成员" -#: actions/showgroup.php:432 +#: actions/showgroup.php:440 #, fuzzy msgid "Created" msgstr "创建" -#: actions/showgroup.php:448 +#: actions/showgroup.php:456 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3594,7 +3631,7 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showgroup.php:454 +#: actions/showgroup.php:462 #, fuzzy, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3605,7 +3642,7 @@ msgstr "" "**%s** 是一个 %%%%site.name%%%% 的用户组,一个微博客服务 [micro-blogging]" "(http://en.wikipedia.org/wiki/Micro-blogging)" -#: actions/showgroup.php:482 +#: actions/showgroup.php:490 #, fuzzy msgid "Admins" msgstr "admin管理员" @@ -4077,22 +4114,22 @@ msgstr "没有 Jabber ID。" msgid "SMS" msgstr "SMS短信" -#: actions/tag.php:68 +#: actions/tag.php:69 #, fuzzy, php-format msgid "Notices tagged with %1$s, page %2$d" msgstr "用户自加标签 %s - 第 %d 页" -#: actions/tag.php:86 +#: actions/tag.php:87 #, fuzzy, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "%s 的通告聚合" -#: actions/tag.php:92 +#: actions/tag.php:93 #, fuzzy, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "%s 的通告聚合" -#: actions/tag.php:98 +#: actions/tag.php:99 #, fuzzy, php-format msgid "Notice feed for tag %s (Atom)" msgstr "%s 的通告聚合" @@ -4148,7 +4185,7 @@ msgstr "使用这个表格给你的关注者或你的订阅加注标签。" msgid "No such tag." msgstr "未找到此消息。" -#: actions/twitapitrends.php:87 +#: actions/twitapitrends.php:85 msgid "API method under construction." msgstr "API 方法尚未实现。" @@ -4183,75 +4220,77 @@ msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" -#: actions/useradminpanel.php:58 lib/adminpanelaction.php:321 -#: lib/personalgroupnav.php:115 +#. TRANS: User admin panel title +#: actions/useradminpanel.php:59 +#, fuzzy +msgctxt "TITLE" msgid "User" msgstr "用户" -#: actions/useradminpanel.php:69 +#: actions/useradminpanel.php:70 msgid "User settings for this StatusNet site." msgstr "" -#: actions/useradminpanel.php:148 +#: actions/useradminpanel.php:149 msgid "Invalid bio limit. Must be numeric." msgstr "" -#: actions/useradminpanel.php:154 +#: actions/useradminpanel.php:155 msgid "Invalid welcome text. Max length is 255 characters." msgstr "" -#: actions/useradminpanel.php:164 +#: actions/useradminpanel.php:165 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" -#: actions/useradminpanel.php:217 lib/accountsettingsaction.php:108 +#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "个人信息" -#: actions/useradminpanel.php:221 +#: actions/useradminpanel.php:222 msgid "Bio Limit" msgstr "" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:223 msgid "Maximum length of a profile bio in characters." msgstr "" -#: actions/useradminpanel.php:230 +#: actions/useradminpanel.php:231 #, fuzzy msgid "New users" msgstr "邀请新用户" -#: actions/useradminpanel.php:234 +#: actions/useradminpanel.php:235 msgid "New user welcome" msgstr "" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:236 msgid "Welcome text for new users (Max 255 chars)." msgstr "" -#: actions/useradminpanel.php:240 +#: actions/useradminpanel.php:241 #, fuzzy msgid "Default subscription" msgstr "所有订阅" -#: actions/useradminpanel.php:241 +#: actions/useradminpanel.php:242 #, fuzzy msgid "Automatically subscribe new users to this user." msgstr "自动订阅任何订阅我的更新的人(这个选项最适合机器人)" -#: actions/useradminpanel.php:250 +#: actions/useradminpanel.php:251 #, fuzzy msgid "Invitations" msgstr "已发送邀请" -#: actions/useradminpanel.php:255 +#: actions/useradminpanel.php:256 #, fuzzy msgid "Invitations enabled" msgstr "已发送邀请" -#: actions/useradminpanel.php:257 +#: actions/useradminpanel.php:258 msgid "Whether to allow users to invite new users." msgstr "" @@ -4435,7 +4474,7 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:196 lib/action.php:747 +#: actions/version.php:196 lib/action.php:778 #, fuzzy msgid "Version" msgstr "个人" @@ -4476,6 +4515,11 @@ msgstr "无法更新组" msgid "Group leave failed." msgstr "组资料" +#: classes/Local_group.php:41 +#, fuzzy +msgid "Could not update local group." +msgstr "无法更新组" + #: classes/Login_token.php:76 #, fuzzy, php-format msgid "Could not create login token for %s" @@ -4494,47 +4538,47 @@ msgstr "无法添加信息。" msgid "Could not update message with new URI." msgstr "无法添加新URI的信息。" -#: classes/Notice.php:157 +#: classes/Notice.php:172 #, php-format msgid "DB error inserting hashtag: %s" msgstr "添加标签时数据库出错:%s" -#: classes/Notice.php:222 +#: classes/Notice.php:239 #, fuzzy msgid "Problem saving notice. Too long." msgstr "保存通告时出错。" -#: classes/Notice.php:226 +#: classes/Notice.php:243 #, fuzzy msgid "Problem saving notice. Unknown user." msgstr "保存通告时出错。" -#: classes/Notice.php:231 +#: classes/Notice.php:248 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "你在短时间里发布了过多的消息,请深呼吸,过几分钟再发消息。" -#: classes/Notice.php:237 +#: classes/Notice.php:254 #, fuzzy msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." msgstr "你在短时间里发布了过多的消息,请深呼吸,过几分钟再发消息。" -#: classes/Notice.php:243 +#: classes/Notice.php:260 msgid "You are banned from posting notices on this site." msgstr "在这个网站你被禁止发布消息。" -#: classes/Notice.php:309 classes/Notice.php:335 +#: classes/Notice.php:326 classes/Notice.php:352 msgid "Problem saving notice." msgstr "保存通告时出错。" -#: classes/Notice.php:882 +#: classes/Notice.php:911 #, fuzzy msgid "Problem saving group inbox." msgstr "保存通告时出错。" -#: classes/Notice.php:1407 +#: classes/Notice.php:1442 #, fuzzy, php-format msgid "RT @%1$s %2$s" msgstr "%1$s (%2$s)" @@ -4567,20 +4611,30 @@ msgstr "无法删除订阅。" msgid "Couldn't delete subscription." msgstr "无法删除订阅。" -#: classes/User.php:372 +#: classes/User.php:373 #, fuzzy, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "发送给 %1$s 的 %2$s 消息" -#: classes/User_group.php:423 +#: classes/User_group.php:462 msgid "Could not create group." msgstr "无法创建组。" -#: classes/User_group.php:452 +#: classes/User_group.php:471 +#, fuzzy +msgid "Could not set group URI." +msgstr "无法删除订阅。" + +#: classes/User_group.php:492 #, fuzzy msgid "Could not set group membership." msgstr "无法删除订阅。" +#: classes/User_group.php:506 +#, fuzzy +msgid "Could not save local group info." +msgstr "无法删除订阅。" + #: lib/accountsettingsaction.php:108 msgid "Change your profile settings" msgstr "修改您的个人信息" @@ -4623,129 +4677,194 @@ msgstr "无标题页" msgid "Primary site navigation" msgstr "主站导航" +#. TRANS: Tooltip for main menu option "Personal" #: lib/action.php:439 -msgid "Home" -msgstr "主页" - -#: lib/action.php:439 +#, fuzzy +msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "个人资料及朋友年表" -#: lib/action.php:441 +#: lib/action.php:442 #, fuzzy +msgctxt "MENU" +msgid "Personal" +msgstr "个人" + +#. TRANS: Tooltip for main menu option "Account" +#: lib/action.php:444 +#, fuzzy +msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "修改资料" -#: lib/action.php:444 -msgid "Connect" -msgstr "连接" - -#: lib/action.php:444 +#: lib/action.php:447 #, fuzzy +msgctxt "MENU" +msgid "Account" +msgstr "帐号" + +#. TRANS: Tooltip for main menu option "Services" +#: lib/action.php:450 +#, fuzzy +msgctxt "TOOLTIP" msgid "Connect to services" msgstr "无法重定向到服务器:%s" -#: lib/action.php:448 +#: lib/action.php:453 #, fuzzy +msgctxt "MENU" +msgid "Connect" +msgstr "连接" + +#. TRANS: Tooltip for menu option "Admin" +#: lib/action.php:457 +#, fuzzy +msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "主站导航" -#: lib/action.php:452 lib/subgroupnav.php:105 -msgid "Invite" -msgstr "邀请" +#: lib/action.php:460 +#, fuzzy +msgctxt "MENU" +msgid "Admin" +msgstr "admin管理员" -#: lib/action.php:453 lib/subgroupnav.php:106 +#. TRANS: Tooltip for main menu option "Invite" +#: lib/action.php:464 #, fuzzy, php-format +msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "使用这个表单来邀请好友和同事加入。" -#: lib/action.php:458 -msgid "Logout" -msgstr "登出" +#: lib/action.php:467 +#, fuzzy +msgctxt "MENU" +msgid "Invite" +msgstr "邀请" -#: lib/action.php:458 +#. TRANS: Tooltip for main menu option "Logout" +#: lib/action.php:473 +#, fuzzy +msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "登出本站" -#: lib/action.php:463 +#: lib/action.php:476 #, fuzzy +msgctxt "MENU" +msgid "Logout" +msgstr "登出" + +#. TRANS: Tooltip for main menu option "Register" +#: lib/action.php:481 +#, fuzzy +msgctxt "TOOLTIP" msgid "Create an account" msgstr "创建新帐号" -#: lib/action.php:466 +#: lib/action.php:484 +#, fuzzy +msgctxt "MENU" +msgid "Register" +msgstr "注册" + +#. TRANS: Tooltip for main menu option "Login" +#: lib/action.php:487 +#, fuzzy +msgctxt "TOOLTIP" msgid "Login to the site" msgstr "登入本站" -#: lib/action.php:469 lib/action.php:732 -msgid "Help" -msgstr "帮助" - -#: lib/action.php:469 +#: lib/action.php:490 #, fuzzy +msgctxt "MENU" +msgid "Login" +msgstr "登录" + +#. TRANS: Tooltip for main menu option "Help" +#: lib/action.php:493 +#, fuzzy +msgctxt "TOOLTIP" msgid "Help me!" msgstr "帮助" -#: lib/action.php:472 lib/searchaction.php:127 -msgid "Search" -msgstr "搜索" +#: lib/action.php:496 +#, fuzzy +msgctxt "MENU" +msgid "Help" +msgstr "帮助" -#: lib/action.php:472 +#. TRANS: Tooltip for main menu option "Search" +#: lib/action.php:499 +#, fuzzy +msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "检索人或文字" -#: lib/action.php:493 +#: lib/action.php:502 +#, fuzzy +msgctxt "MENU" +msgid "Search" +msgstr "搜索" + +#. TRANS: DT element for site notice. String is hidden in default CSS. +#: lib/action.php:524 #, fuzzy msgid "Site notice" msgstr "新通告" -#: lib/action.php:559 +#: lib/action.php:590 msgid "Local views" msgstr "本地显示" -#: lib/action.php:625 +#: lib/action.php:656 #, fuzzy msgid "Page notice" msgstr "新通告" -#: lib/action.php:727 +#: lib/action.php:758 #, fuzzy msgid "Secondary site navigation" msgstr "次项站导航" -#: lib/action.php:734 +#: lib/action.php:763 +msgid "Help" +msgstr "帮助" + +#: lib/action.php:765 msgid "About" msgstr "关于" -#: lib/action.php:736 +#: lib/action.php:767 msgid "FAQ" msgstr "常见问题FAQ" -#: lib/action.php:740 +#: lib/action.php:771 msgid "TOS" msgstr "" -#: lib/action.php:743 +#: lib/action.php:774 msgid "Privacy" msgstr "隐私" -#: lib/action.php:745 +#: lib/action.php:776 msgid "Source" msgstr "来源" -#: lib/action.php:749 +#: lib/action.php:780 msgid "Contact" msgstr "联系人" -#: lib/action.php:751 +#: lib/action.php:782 #, fuzzy msgid "Badge" msgstr "呼叫" -#: lib/action.php:779 +#: lib/action.php:810 msgid "StatusNet software license" msgstr "StatusNet软件注册证" -#: lib/action.php:782 +#: lib/action.php:813 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4754,12 +4873,12 @@ msgstr "" "**%%site.name%%** 是一个微博客服务,提供者为 [%%site.broughtby%%](%%site." "broughtbyurl%%)。" -#: lib/action.php:784 +#: lib/action.php:815 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** 是一个微博客服务。" -#: lib/action.php:786 +#: lib/action.php:817 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4770,119 +4889,171 @@ msgstr "" "General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)" "授权。" -#: lib/action.php:801 +#: lib/action.php:832 #, fuzzy msgid "Site content license" msgstr "StatusNet软件注册证" -#: lib/action.php:806 +#: lib/action.php:837 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:811 +#: lib/action.php:842 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:814 +#: lib/action.php:845 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" -#: lib/action.php:827 +#: lib/action.php:858 msgid "All " msgstr "全部" -#: lib/action.php:833 +#: lib/action.php:864 msgid "license." msgstr "注册证" -#: lib/action.php:1132 +#: lib/action.php:1163 msgid "Pagination" msgstr "分页" -#: lib/action.php:1141 +#: lib/action.php:1172 #, fuzzy msgid "After" msgstr "« 之后" -#: lib/action.php:1149 +#: lib/action.php:1180 #, fuzzy msgid "Before" msgstr "之前 »" -#: lib/activity.php:382 +#: lib/activity.php:449 msgid "Can't handle remote content yet." msgstr "" -#: lib/activity.php:410 +#: lib/activity.php:477 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activity.php:414 +#: lib/activity.php:481 msgid "Can't handle embedded Base64 content yet." msgstr "" -#: lib/adminpanelaction.php:96 +#. TRANS: Client error message +#: lib/adminpanelaction.php:98 #, fuzzy msgid "You cannot make changes to this site." msgstr "无法向此用户发送消息。" -#: lib/adminpanelaction.php:107 +#. TRANS: Client error message +#: lib/adminpanelaction.php:110 #, fuzzy msgid "Changes to that panel are not allowed." msgstr "不允许注册。" -#: lib/adminpanelaction.php:206 +#. TRANS: Client error message +#: lib/adminpanelaction.php:211 #, fuzzy msgid "showForm() not implemented." msgstr "命令尚未实现。" -#: lib/adminpanelaction.php:235 +#. TRANS: Client error message +#: lib/adminpanelaction.php:241 #, fuzzy msgid "saveSettings() not implemented." msgstr "命令尚未实现。" -#: lib/adminpanelaction.php:258 +#. TRANS: Client error message +#: lib/adminpanelaction.php:265 #, fuzzy msgid "Unable to delete design setting." msgstr "无法保存 Twitter 设置!" -#: lib/adminpanelaction.php:312 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:330 #, fuzzy msgid "Basic site configuration" msgstr "电子邮件地址确认" -#: lib/adminpanelaction.php:317 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:332 +#, fuzzy +msgctxt "MENU" +msgid "Site" +msgstr "邀请" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:338 #, fuzzy msgid "Design configuration" msgstr "SMS短信确认" -#: lib/adminpanelaction.php:322 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:340 +#, fuzzy +msgctxt "MENU" +msgid "Design" +msgstr "个人" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:346 #, fuzzy msgid "User configuration" msgstr "SMS短信确认" -#: lib/adminpanelaction.php:327 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:348 +#, fuzzy +msgctxt "MENU" +msgid "User" +msgstr "用户" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:354 #, fuzzy msgid "Access configuration" msgstr "SMS短信确认" -#: lib/adminpanelaction.php:332 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:356 +#, fuzzy +msgctxt "MENU" +msgid "Access" +msgstr "接受" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:362 #, fuzzy msgid "Paths configuration" msgstr "SMS短信确认" -#: lib/adminpanelaction.php:337 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:364 +msgctxt "MENU" +msgid "Paths" +msgstr "" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:370 #, fuzzy msgid "Sessions configuration" msgstr "SMS短信确认" -#: lib/apiauth.php:95 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:372 +#, fuzzy +msgctxt "MENU" +msgid "Sessions" +msgstr "个人" + +#: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." msgstr "" -#: lib/apiauth.php:273 +#: lib/apiauth.php:272 #, php-format msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" msgstr "" @@ -4978,12 +5149,12 @@ msgstr "" msgid "Tags for this attachment" msgstr "" -#: lib/authenticationplugin.php:218 lib/authenticationplugin.php:223 +#: lib/authenticationplugin.php:220 lib/authenticationplugin.php:225 #, fuzzy msgid "Password changing failed" msgstr "密码已保存。" -#: lib/authenticationplugin.php:233 +#: lib/authenticationplugin.php:235 #, fuzzy msgid "Password changing is not allowed" msgstr "密码已保存。" @@ -5261,20 +5432,20 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:136 +#: lib/common.php:148 #, fuzzy msgid "No configuration file found. " msgstr "没有验证码" -#: lib/common.php:137 +#: lib/common.php:149 msgid "I looked for configuration files in the following places: " msgstr "" -#: lib/common.php:139 +#: lib/common.php:151 msgid "You may wish to run the installer to fix this." msgstr "" -#: lib/common.php:140 +#: lib/common.php:152 #, fuzzy msgid "Go to the installer." msgstr "登入本站" @@ -5474,24 +5645,24 @@ msgstr "上传文件时出错。" msgid "Not an image or corrupt file." msgstr "不是图片文件或文件已损坏。" -#: lib/imagefile.php:105 +#: lib/imagefile.php:109 msgid "Unsupported image file format." msgstr "不支持这种图像格式。" -#: lib/imagefile.php:118 +#: lib/imagefile.php:122 #, fuzzy msgid "Lost our file." msgstr "没有这份通告。" -#: lib/imagefile.php:150 lib/imagefile.php:197 +#: lib/imagefile.php:166 lib/imagefile.php:231 msgid "Unknown file type" msgstr "未知文件类型" -#: lib/imagefile.php:217 +#: lib/imagefile.php:251 msgid "MB" msgstr "" -#: lib/imagefile.php:219 +#: lib/imagefile.php:253 msgid "kB" msgstr "" @@ -5806,6 +5977,12 @@ msgstr "到" msgid "Available characters" msgstr "6 个或更多字符" +#: lib/messageform.php:178 lib/noticeform.php:236 +#, fuzzy +msgctxt "Send button for sending notice" +msgid "Send" +msgstr "发送" + #: lib/noticeform.php:160 #, fuzzy msgid "Send a notice" @@ -5866,27 +6043,27 @@ msgstr "" msgid "at" msgstr "" -#: lib/noticelist.php:558 +#: lib/noticelist.php:566 #, fuzzy msgid "in context" msgstr "没有内容!" -#: lib/noticelist.php:583 +#: lib/noticelist.php:601 #, fuzzy msgid "Repeated by" msgstr "创建" -#: lib/noticelist.php:610 +#: lib/noticelist.php:628 #, fuzzy msgid "Reply to this notice" msgstr "无法删除通告。" -#: lib/noticelist.php:611 +#: lib/noticelist.php:629 #, fuzzy msgid "Reply" msgstr "回复" -#: lib/noticelist.php:655 +#: lib/noticelist.php:673 #, fuzzy msgid "Notice repeated" msgstr "消息已发布。" @@ -5937,6 +6114,10 @@ msgstr "回复" msgid "Favorites" msgstr "收藏夹" +#: lib/personalgroupnav.php:115 +msgid "User" +msgstr "用户" + #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "收件箱" @@ -6034,7 +6215,7 @@ msgstr "无法删除通告。" msgid "Repeat this notice" msgstr "无法删除通告。" -#: lib/router.php:665 +#: lib/router.php:668 msgid "No single user defined for single-user mode." msgstr "" @@ -6057,6 +6238,10 @@ msgstr "搜索" msgid "Keyword(s)" msgstr "" +#: lib/searchaction.php:127 +msgid "Search" +msgstr "搜索" + #: lib/searchaction.php:162 #, fuzzy msgid "Search help" @@ -6112,6 +6297,15 @@ msgstr "订阅 %s" msgid "Groups %s is a member of" msgstr "%s 组是成员组成了" +#: lib/subgroupnav.php:105 +msgid "Invite" +msgstr "邀请" + +#: lib/subgroupnav.php:106 +#, fuzzy, php-format +msgid "Invite friends and colleagues to join you on %s" +msgstr "使用这个表单来邀请好友和同事加入。" + #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -6192,47 +6386,47 @@ msgstr "新消息" msgid "Moderate" msgstr "" -#: lib/util.php:952 +#: lib/util.php:1013 msgid "a few seconds ago" msgstr "几秒前" -#: lib/util.php:954 +#: lib/util.php:1015 msgid "about a minute ago" msgstr "一分钟前" -#: lib/util.php:956 +#: lib/util.php:1017 #, php-format msgid "about %d minutes ago" msgstr "%d 分钟前" -#: lib/util.php:958 +#: lib/util.php:1019 msgid "about an hour ago" msgstr "一小时前" -#: lib/util.php:960 +#: lib/util.php:1021 #, php-format msgid "about %d hours ago" msgstr "%d 小时前" -#: lib/util.php:962 +#: lib/util.php:1023 msgid "about a day ago" msgstr "一天前" -#: lib/util.php:964 +#: lib/util.php:1025 #, php-format msgid "about %d days ago" msgstr "%d 天前" -#: lib/util.php:966 +#: lib/util.php:1027 msgid "about a month ago" msgstr "一个月前" -#: lib/util.php:968 +#: lib/util.php:1029 #, php-format msgid "about %d months ago" msgstr "%d 个月前" -#: lib/util.php:970 +#: lib/util.php:1031 msgid "about a year ago" msgstr "一年前" diff --git a/locale/zh_TW/LC_MESSAGES/statusnet.po b/locale/zh_TW/LC_MESSAGES/statusnet.po index ff517edec0..5cca450ca9 100644 --- a/locale/zh_TW/LC_MESSAGES/statusnet.po +++ b/locale/zh_TW/LC_MESSAGES/statusnet.po @@ -7,81 +7,86 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-02-24 23:49+0000\n" -"PO-Revision-Date: 2010-02-24 23:52:03+0000\n" +"POT-Creation-Date: 2010-03-02 21:02+0000\n" +"PO-Revision-Date: 2010-03-02 21:04:05+0000\n" "Language-Team: Traditional Chinese\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r62925); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hant\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: actions/accessadminpanel.php:54 lib/adminpanelaction.php:326 +#. TRANS: Page title +#: actions/accessadminpanel.php:55 #, fuzzy msgid "Access" msgstr "接受" -#: actions/accessadminpanel.php:65 +#. TRANS: Page notice +#: actions/accessadminpanel.php:67 #, fuzzy msgid "Site access settings" msgstr "線上即時通設定" -#: actions/accessadminpanel.php:158 +#. TRANS: Form legend for registration form. +#: actions/accessadminpanel.php:161 #, fuzzy msgid "Registration" msgstr "所有訂閱" -#: actions/accessadminpanel.php:161 -msgid "Private" -msgstr "" - -#: actions/accessadminpanel.php:163 +#. TRANS: Checkbox instructions for admin setting "Private" +#: actions/accessadminpanel.php:165 msgid "Prohibit anonymous users (not logged in) from viewing site?" msgstr "" +#. TRANS: Checkbox label for prohibiting anonymous users from viewing site. #: actions/accessadminpanel.php:167 -msgid "Invite only" +msgctxt "LABEL" +msgid "Private" msgstr "" -#: actions/accessadminpanel.php:169 +#. TRANS: Checkbox instructions for admin setting "Invite only" +#: actions/accessadminpanel.php:174 msgid "Make registration invitation only." msgstr "" -#: actions/accessadminpanel.php:173 +#. TRANS: Checkbox label for configuring site as invite only. +#: actions/accessadminpanel.php:176 +msgid "Invite only" +msgstr "" + +#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations) +#: actions/accessadminpanel.php:183 +msgid "Disable new registrations." +msgstr "" + +#. TRANS: Checkbox label for disabling new user registrations. +#: actions/accessadminpanel.php:185 #, fuzzy msgid "Closed" msgstr "無此使用者" -#: actions/accessadminpanel.php:175 -msgid "Disable new registrations." -msgstr "" - -#: actions/accessadminpanel.php:189 actions/designadminpanel.php:586 -#: actions/emailsettings.php:195 actions/imsettings.php:163 -#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 -#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 -#: actions/siteadminpanel.php:336 actions/smssettings.php:181 -#: actions/subscriptions.php:208 actions/tagother.php:154 -#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 -#: lib/applicationeditform.php:334 lib/designsettings.php:256 -#: lib/groupeditform.php:202 -msgid "Save" -msgstr "" - -#: actions/accessadminpanel.php:189 +#. TRANS: Title / tooltip for button to save access settings in site admin panel +#: actions/accessadminpanel.php:202 #, fuzzy msgid "Save access settings" msgstr "線上即時通設定" -#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 -#: actions/showfavorites.php:137 actions/tag.php:51 +#: actions/accessadminpanel.php:203 +msgctxt "BUTTON" +msgid "Save" +msgstr "" + +#. TRANS: Server error when page not found (404) +#: actions/all.php:64 actions/public.php:98 actions/replies.php:93 +#: actions/showfavorites.php:138 actions/tag.php:52 #, fuzzy msgid "No such page" msgstr "無此通知" -#: actions/all.php:74 actions/allrss.php:68 +#: actions/all.php:75 actions/allrss.php:68 #: actions/apiaccountupdatedeliverydevice.php:113 #: actions/apiaccountupdateprofile.php:105 #: actions/apiaccountupdateprofilebackgroundimage.php:116 @@ -95,72 +100,82 @@ msgstr "無此通知" #: actions/apitimelinehome.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/otp.php:76 -#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154 -#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 -#: actions/showfavorites.php:105 actions/userbyid.php:74 -#: actions/usergroups.php:91 actions/userrss.php:38 actions/xrds.php:71 -#: lib/command.php:163 lib/command.php:302 lib/command.php:355 -#: lib/command.php:401 lib/command.php:462 lib/command.php:518 -#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 +#: actions/hcard.php:67 actions/microsummary.php:62 actions/newmessage.php:116 +#: actions/otp.php:76 actions/remotesubscribe.php:145 +#: actions/remotesubscribe.php:154 actions/replies.php:73 +#: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/xrds.php:71 lib/command.php:163 lib/command.php:302 +#: lib/command.php:355 lib/command.php:401 lib/command.php:462 +#: lib/command.php:518 lib/galleryaction.php:59 lib/mailbox.php:82 +#: lib/profileaction.php:77 msgid "No such user." msgstr "無此使用者" -#: actions/all.php:84 +#. TRANS: Page title. %1$s is user nickname, %2$d is page number +#: actions/all.php:86 #, fuzzy, php-format msgid "%1$s and friends, page %2$d" msgstr "%s與好友" -#: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 +#. TRANS: Page title. %1$s is user nickname +#. TRANS: H1 text. %1$s is user nickname +#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" msgstr "%s與好友" -#: actions/all.php:99 +#. TRANS: %1$s is user nickname +#: actions/all.php:103 #, fuzzy, php-format msgid "Feed for friends of %s (RSS 1.0)" msgstr "發送給%s好友的訂閱" -#: actions/all.php:107 +#. TRANS: %1$s is user nickname +#: actions/all.php:112 #, fuzzy, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "發送給%s好友的訂閱" -#: actions/all.php:115 +#. TRANS: %1$s is user nickname +#: actions/all.php:121 #, fuzzy, php-format msgid "Feed for friends of %s (Atom)" msgstr "發送給%s好友的訂閱" -#: actions/all.php:127 +#. TRANS: %1$s is user nickname +#: actions/all.php:134 #, php-format msgid "" "This is the timeline for %s and friends but no one has posted anything yet." msgstr "" -#: actions/all.php:132 +#: actions/all.php:139 #, php-format msgid "" "Try subscribing to more people, [join a group](%%action.groups%%) or post " "something yourself." msgstr "" -#: actions/all.php:134 +#. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@" +#: actions/all.php:142 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) from his profile or [post something to " "his or her attention](%%%%action.newnotice%%%%?status_textarea=%3$s)." msgstr "" -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211 +#: actions/all.php:145 actions/replies.php:210 actions/showstream.php:211 #, 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/all.php:165 +#. TRANS: H1 text +#: actions/all.php:174 #, fuzzy msgid "You and friends" msgstr "%s與好友" @@ -179,20 +194,20 @@ msgstr "" #: actions/apiaccountverifycredentials.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:128 actions/apigroupcreate.php:136 +#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: actions/apigroupleave.php:141 actions/apigrouplist.php:132 #: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 #: actions/apigroupshow.php:115 actions/apihelptest.php:88 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 -#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184 +#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 #: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:207 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 #, fuzzy msgid "API method not found." msgstr "確認碼遺失" @@ -226,8 +241,9 @@ msgstr "無法更新使用者" #: actions/apiaccountupdateprofilebackgroundimage.php:194 #: actions/apiaccountupdateprofilecolors.php:185 #: 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 +#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 +#: actions/replies.php:80 actions/usergroups.php:98 lib/galleryaction.php:66 +#: lib/profileaction.php:84 msgid "User has no profile." msgstr "" @@ -252,7 +268,7 @@ msgstr "" #: actions/apiaccountupdateprofilebackgroundimage.php:146 #: actions/apiaccountupdateprofilecolors.php:164 #: actions/apiaccountupdateprofilecolors.php:174 -#: actions/groupdesignsettings.php:287 actions/groupdesignsettings.php:297 +#: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300 #: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 #: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 msgid "Unable to save your design settings." @@ -368,68 +384,68 @@ msgstr "無法更新使用者" msgid "Could not find target user." msgstr "無法更新使用者" -#: actions/apigroupcreate.php:164 actions/editgroup.php:182 +#: actions/apigroupcreate.php:166 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:215 #: actions/register.php:205 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "暱稱請用小寫字母或數字,勿加空格。" -#: actions/apigroupcreate.php:173 actions/editgroup.php:186 +#: actions/apigroupcreate.php:175 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:238 #: actions/register.php:208 msgid "Nickname already in use. Try another one." msgstr "此暱稱已有人使用。再試試看別的吧。" -#: actions/apigroupcreate.php:180 actions/editgroup.php:189 +#: actions/apigroupcreate.php:182 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:218 #: actions/register.php:210 msgid "Not a valid nickname." msgstr "" -#: actions/apigroupcreate.php:196 actions/editapplication.php:215 -#: actions/editgroup.php:195 actions/newapplication.php:203 +#: actions/apigroupcreate.php:198 actions/editapplication.php:215 +#: actions/editgroup.php:199 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:217 msgid "Homepage is not a valid URL." msgstr "個人首頁位址錯誤" -#: actions/apigroupcreate.php:205 actions/editgroup.php:198 +#: actions/apigroupcreate.php:207 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:225 #: actions/register.php:220 msgid "Full name is too long (max 255 chars)." msgstr "全名過長(最多255字元)" -#: actions/apigroupcreate.php:213 actions/editapplication.php:190 +#: actions/apigroupcreate.php:215 actions/editapplication.php:190 #: actions/newapplication.php:172 #, fuzzy, php-format msgid "Description is too long (max %d chars)." msgstr "自我介紹過長(共140個字元)" -#: actions/apigroupcreate.php:224 actions/editgroup.php:204 +#: actions/apigroupcreate.php:226 actions/editgroup.php:208 #: actions/newgroup.php:148 actions/profilesettings.php:232 #: actions/register.php:227 msgid "Location is too long (max 255 chars)." msgstr "地點過長(共255個字)" -#: actions/apigroupcreate.php:243 actions/editgroup.php:215 +#: actions/apigroupcreate.php:245 actions/editgroup.php:219 #: actions/newgroup.php:159 #, php-format msgid "Too many aliases! Maximum %d." msgstr "" -#: actions/apigroupcreate.php:264 actions/editgroup.php:224 +#: actions/apigroupcreate.php:266 actions/editgroup.php:228 #: actions/newgroup.php:168 #, fuzzy, php-format msgid "Invalid alias: \"%s\"" msgstr "個人首頁連結%s無效" -#: actions/apigroupcreate.php:273 actions/editgroup.php:228 +#: actions/apigroupcreate.php:275 actions/editgroup.php:232 #: actions/newgroup.php:172 #, fuzzy, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "此暱稱已有人使用。再試試看別的吧。" -#: actions/apigroupcreate.php:286 actions/editgroup.php:234 +#: actions/apigroupcreate.php:288 actions/editgroup.php:238 #: actions/newgroup.php:178 msgid "Alias can't be the same as nickname." msgstr "" @@ -441,15 +457,15 @@ msgstr "" msgid "Group not found!" msgstr "目前無請求" -#: actions/apigroupjoin.php:110 actions/joingroup.php:90 +#: actions/apigroupjoin.php:110 actions/joingroup.php:100 msgid "You are already a member of that group." msgstr "" -#: actions/apigroupjoin.php:119 actions/joingroup.php:95 lib/command.php:221 +#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:221 msgid "You have been blocked from that group by the admin." msgstr "" -#: actions/apigroupjoin.php:138 actions/joingroup.php:124 +#: actions/apigroupjoin.php:138 actions/joingroup.php:134 #, fuzzy, php-format msgid "Could not join user %1$s to group %2$s." msgstr "無法連結到伺服器:%s" @@ -459,7 +475,7 @@ msgstr "無法連結到伺服器:%s" msgid "You are not a member of this group." msgstr "無法連結到伺服器:%s" -#: actions/apigroupleave.php:124 actions/leavegroup.php:119 +#: actions/apigroupleave.php:124 actions/leavegroup.php:129 #, fuzzy, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "無法從 %s 建立OpenID" @@ -491,7 +507,7 @@ msgstr "尺寸錯誤" #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 #: actions/deletenotice.php:157 actions/disfavor.php:74 #: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54 -#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupblock.php:66 actions/grouplogo.php:312 #: actions/groupunblock.php:66 actions/imsettings.php:206 #: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 @@ -535,7 +551,7 @@ msgstr "" #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:103 actions/editapplication.php:139 -#: actions/emailsettings.php:256 actions/grouplogo.php:319 +#: actions/emailsettings.php:256 actions/grouplogo.php:322 #: actions/imsettings.php:220 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 #: actions/smssettings.php:248 lib/designsettings.php:304 @@ -558,14 +574,14 @@ msgid "" "give access to your %4$s account to third parties you trust." msgstr "" -#: actions/apioauthauthorize.php:310 lib/action.php:441 +#: actions/apioauthauthorize.php:310 #, fuzzy msgid "Account" msgstr "關於" #: actions/apioauthauthorize.php:313 actions/login.php:230 #: actions/profilesettings.php:106 actions/register.php:424 -#: actions/showgroup.php:236 actions/tagother.php:94 +#: actions/showgroup.php:244 actions/tagother.php:94 #: actions/userauthorization.php:145 lib/groupeditform.php:152 #: lib/userprofile.php:131 msgid "Nickname" @@ -650,12 +666,12 @@ msgid "%1$s updates favorited by %2$s / %2$s." msgstr "&s的微型部落格" #: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:131 actions/userrss.php:90 +#: actions/grouprss.php:138 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "" -#: actions/apitimelinegroup.php:114 actions/apitimelineuser.php:126 +#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 #: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" @@ -691,7 +707,7 @@ msgstr "" msgid "Repeats of %s" msgstr "" -#: actions/apitimelinetag.php:102 actions/tag.php:66 +#: actions/apitimelinetag.php:102 actions/tag.php:67 #, php-format msgid "Notices tagged with %s" msgstr "" @@ -714,8 +730,7 @@ msgstr "無此文件" #: actions/avatarbynickname.php:59 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/leavegroup.php:76 -#: actions/showgroup.php:121 +#: actions/grouprss.php:91 actions/showgroup.php:121 msgid "No nickname." msgstr "無暱稱" @@ -727,7 +742,7 @@ msgstr "無尺寸" msgid "Invalid size." msgstr "尺寸錯誤" -#: actions/avatarsettings.php:67 actions/showgroup.php:221 +#: actions/avatarsettings.php:67 actions/showgroup.php:229 #: lib/accountsettingsaction.php:112 msgid "Avatar" msgstr "個人圖像" @@ -744,31 +759,31 @@ msgid "User without matching profile" msgstr "" #: actions/avatarsettings.php:119 actions/avatarsettings.php:197 -#: actions/grouplogo.php:251 +#: actions/grouplogo.php:254 #, fuzzy msgid "Avatar settings" msgstr "線上即時通設定" #: actions/avatarsettings.php:127 actions/avatarsettings.php:205 -#: actions/grouplogo.php:199 actions/grouplogo.php:259 +#: actions/grouplogo.php:202 actions/grouplogo.php:262 msgid "Original" msgstr "" #: actions/avatarsettings.php:142 actions/avatarsettings.php:217 -#: actions/grouplogo.php:210 actions/grouplogo.php:271 +#: actions/grouplogo.php:213 actions/grouplogo.php:274 msgid "Preview" msgstr "" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:637 +#: lib/deleteuserform.php:66 lib/noticelist.php:655 msgid "Delete" msgstr "" -#: actions/avatarsettings.php:166 actions/grouplogo.php:233 +#: actions/avatarsettings.php:166 actions/grouplogo.php:236 msgid "Upload" msgstr "" -#: actions/avatarsettings.php:231 actions/grouplogo.php:286 +#: actions/avatarsettings.php:231 actions/grouplogo.php:289 msgid "Crop" msgstr "" @@ -776,7 +791,7 @@ msgstr "" msgid "Pick a square area of the image to be your avatar" msgstr "" -#: actions/avatarsettings.php:343 actions/grouplogo.php:377 +#: actions/avatarsettings.php:343 actions/grouplogo.php:380 msgid "Lost our file data." msgstr "" @@ -811,23 +826,23 @@ msgid "" msgstr "" #: actions/block.php:143 actions/deleteapplication.php:153 -#: actions/deletenotice.php:145 actions/deleteuser.php:147 +#: actions/deletenotice.php:145 actions/deleteuser.php:150 #: actions/groupblock.php:178 msgid "No" msgstr "" -#: actions/block.php:143 actions/deleteuser.php:147 +#: actions/block.php:143 actions/deleteuser.php:150 #, fuzzy msgid "Do not block this user" msgstr "無此使用者" #: actions/block.php:144 actions/deleteapplication.php:158 -#: actions/deletenotice.php:146 actions/deleteuser.php:148 +#: actions/deletenotice.php:146 actions/deleteuser.php:151 #: actions/groupblock.php:179 lib/repeatform.php:132 msgid "Yes" msgstr "" -#: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:355 lib/blockform.php:80 #, fuzzy msgid "Block this user" msgstr "無此使用者" @@ -836,41 +851,45 @@ msgstr "無此使用者" msgid "Failed to save block information." msgstr "" -#: actions/blockedfromgroup.php:80 actions/editgroup.php:96 -#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/groupblock.php:86 -#: actions/groupbyid.php:83 actions/groupdesignsettings.php:97 -#: actions/grouplogo.php:99 actions/groupmembers.php:83 -#: actions/grouprss.php:98 actions/groupunblock.php:86 -#: actions/joingroup.php:83 actions/leavegroup.php:83 actions/makeadmin.php:86 -#: actions/showgroup.php:137 lib/command.php:212 lib/command.php:260 +#: actions/blockedfromgroup.php:80 actions/blockedfromgroup.php:87 +#: actions/editgroup.php:100 actions/foafgroup.php:44 actions/foafgroup.php:62 +#: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:100 actions/grouplogo.php:102 +#: actions/groupmembers.php:83 actions/groupmembers.php:90 +#: actions/grouprss.php:98 actions/grouprss.php:105 +#: actions/groupunblock.php:86 actions/joingroup.php:82 +#: actions/joingroup.php:93 actions/leavegroup.php:82 +#: actions/leavegroup.php:93 actions/makeadmin.php:86 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:212 +#: lib/command.php:260 #, fuzzy msgid "No such group." msgstr "無此通知" -#: actions/blockedfromgroup.php:90 +#: actions/blockedfromgroup.php:97 #, fuzzy, php-format msgid "%s blocked profiles" msgstr "無此通知" -#: actions/blockedfromgroup.php:93 +#: actions/blockedfromgroup.php:100 #, fuzzy, php-format msgid "%1$s blocked profiles, page %2$d" msgstr "%s與好友" -#: actions/blockedfromgroup.php:108 +#: actions/blockedfromgroup.php:115 msgid "A list of the users blocked from joining this group." msgstr "" -#: actions/blockedfromgroup.php:281 +#: actions/blockedfromgroup.php:288 #, fuzzy msgid "Unblock user from group" msgstr "無此使用者" -#: actions/blockedfromgroup.php:313 lib/unblockform.php:69 +#: actions/blockedfromgroup.php:320 lib/unblockform.php:69 msgid "Unblock" msgstr "" -#: actions/blockedfromgroup.php:313 lib/unblockform.php:80 +#: actions/blockedfromgroup.php:320 lib/unblockform.php:80 #, fuzzy msgid "Unblock this user" msgstr "無此使用者" @@ -951,7 +970,7 @@ msgstr "無法連結到伺服器:%s" #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1197 +#: lib/action.php:1228 msgid "There was a problem with your session token." msgstr "" @@ -977,12 +996,13 @@ msgstr "無此通知" msgid "Delete this application" msgstr "請在140個字以內描述你自己與你的興趣" +#. TRANS: Client error message #: 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:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 -#: lib/adminpanelaction.php:72 lib/profileformaction.php:63 +#: lib/adminpanelaction.php:73 lib/profileformaction.php:63 #: lib/settingsaction.php:72 msgid "Not logged in." msgstr "" @@ -1010,7 +1030,7 @@ msgstr "" msgid "Do not delete this notice" msgstr "無此通知" -#: actions/deletenotice.php:146 lib/noticelist.php:637 +#: actions/deletenotice.php:146 lib/noticelist.php:655 msgid "Delete this notice" msgstr "" @@ -1028,19 +1048,19 @@ msgstr "無此使用者" msgid "Delete user" msgstr "" -#: actions/deleteuser.php:135 +#: actions/deleteuser.php:136 msgid "" "Are you sure you want to delete this user? This will clear all data about " "the user from the database, without a backup." msgstr "" -#: actions/deleteuser.php:148 lib/deleteuserform.php:77 +#: actions/deleteuser.php:151 lib/deleteuserform.php:77 #, fuzzy msgid "Delete this user" msgstr "無此使用者" #: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 -#: lib/adminpanelaction.php:316 lib/groupnav.php:119 +#: lib/groupnav.php:119 msgid "Design" msgstr "" @@ -1149,6 +1169,17 @@ msgstr "" msgid "Reset back to default" msgstr "" +#: actions/designadminpanel.php:586 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/tagother.php:154 actions/useradminpanel.php:294 +#: lib/applicationeditform.php:333 lib/applicationeditform.php:334 +#: lib/designsettings.php:256 lib/groupeditform.php:202 +msgid "Save" +msgstr "" + #: actions/designadminpanel.php:587 lib/designsettings.php:257 msgid "Save design" msgstr "" @@ -1248,31 +1279,31 @@ msgstr "" msgid "You must be logged in to create a group." msgstr "" -#: actions/editgroup.php:103 actions/editgroup.php:168 -#: actions/groupdesignsettings.php:104 actions/grouplogo.php:106 +#: actions/editgroup.php:107 actions/editgroup.php:172 +#: actions/groupdesignsettings.php:107 actions/grouplogo.php:109 msgid "You must be an admin to edit the group." msgstr "" -#: actions/editgroup.php:154 +#: actions/editgroup.php:158 msgid "Use this form to edit the group." msgstr "" -#: actions/editgroup.php:201 actions/newgroup.php:145 +#: actions/editgroup.php:205 actions/newgroup.php:145 #, fuzzy, php-format msgid "description is too long (max %d chars)." msgstr "自我介紹過長(共140個字元)" -#: actions/editgroup.php:253 +#: actions/editgroup.php:258 #, fuzzy msgid "Could not update group." msgstr "無法更新使用者" -#: actions/editgroup.php:259 classes/User_group.php:433 +#: actions/editgroup.php:264 classes/User_group.php:478 #, fuzzy msgid "Could not create aliases." msgstr "無法存取個人圖像資料" -#: actions/editgroup.php:269 +#: actions/editgroup.php:280 msgid "Options saved." msgstr "" @@ -1611,7 +1642,7 @@ msgstr "" msgid "User is not a member of group." msgstr "" -#: actions/groupblock.php:136 actions/groupmembers.php:316 +#: actions/groupblock.php:136 actions/groupmembers.php:323 #, fuzzy msgid "Block user from group" msgstr "無此使用者" @@ -1647,89 +1678,89 @@ msgstr "查無此Jabber ID" msgid "You must be logged in to edit a group." msgstr "" -#: actions/groupdesignsettings.php:141 +#: actions/groupdesignsettings.php:144 msgid "Group design" msgstr "" -#: actions/groupdesignsettings.php:152 +#: actions/groupdesignsettings.php:155 msgid "" "Customize the way your group looks with a background image and a colour " "palette of your choice." msgstr "" -#: actions/groupdesignsettings.php:263 actions/userdesignsettings.php:186 +#: actions/groupdesignsettings.php:266 actions/userdesignsettings.php:186 #: lib/designsettings.php:391 lib/designsettings.php:413 #, fuzzy msgid "Couldn't update your design." msgstr "無法更新使用者" -#: actions/groupdesignsettings.php:308 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231 msgid "Design preferences saved." msgstr "" -#: actions/grouplogo.php:139 actions/grouplogo.php:192 +#: actions/grouplogo.php:142 actions/grouplogo.php:195 msgid "Group logo" msgstr "" -#: actions/grouplogo.php:150 +#: actions/grouplogo.php:153 #, php-format msgid "" "You can upload a logo image for your group. The maximum file size is %s." msgstr "" -#: actions/grouplogo.php:178 +#: actions/grouplogo.php:181 msgid "User without matching profile." msgstr "" -#: actions/grouplogo.php:362 +#: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." msgstr "" -#: actions/grouplogo.php:396 +#: actions/grouplogo.php:399 #, fuzzy msgid "Logo updated." msgstr "更新個人圖像" -#: actions/grouplogo.php:398 +#: actions/grouplogo.php:401 #, fuzzy msgid "Failed updating logo." msgstr "無法上傳個人圖像" -#: actions/groupmembers.php:93 lib/groupnav.php:92 +#: actions/groupmembers.php:100 lib/groupnav.php:92 #, php-format msgid "%s group members" msgstr "" -#: actions/groupmembers.php:96 +#: actions/groupmembers.php:103 #, php-format msgid "%1$s group members, page %2$d" msgstr "" -#: actions/groupmembers.php:111 +#: actions/groupmembers.php:118 msgid "A list of the users in this group." msgstr "" -#: actions/groupmembers.php:175 lib/action.php:448 lib/groupnav.php:107 +#: actions/groupmembers.php:182 lib/groupnav.php:107 msgid "Admin" msgstr "" -#: actions/groupmembers.php:348 lib/blockform.php:69 +#: actions/groupmembers.php:355 lib/blockform.php:69 msgid "Block" msgstr "" -#: actions/groupmembers.php:443 +#: actions/groupmembers.php:450 msgid "Make user an admin of the group" msgstr "" -#: actions/groupmembers.php:475 +#: actions/groupmembers.php:482 msgid "Make Admin" msgstr "" -#: actions/groupmembers.php:475 +#: actions/groupmembers.php:482 msgid "Make this user an admin" msgstr "" -#: actions/grouprss.php:133 +#: actions/grouprss.php:140 #, fuzzy, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "&s的微型部落格" @@ -1973,16 +2004,18 @@ msgstr "" msgid "Optionally add a personal message to the invitation." msgstr "" -#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:236 +#. TRANS: Send button for inviting friends +#: actions/invite.php:198 +msgctxt "BUTTON" msgid "Send" msgstr "" -#: actions/invite.php:226 +#: actions/invite.php:227 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "" -#: actions/invite.php:228 +#: actions/invite.php:229 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -2017,7 +2050,12 @@ msgstr "" msgid "You must be logged in to join a group." msgstr "" -#: actions/joingroup.php:131 +#: actions/joingroup.php:88 actions/leavegroup.php:88 +#, fuzzy +msgid "No nickname or ID." +msgstr "無暱稱" + +#: actions/joingroup.php:141 #, php-format msgid "%1$s joined group %2$s" msgstr "" @@ -2026,11 +2064,11 @@ msgstr "" msgid "You must be logged in to leave a group." msgstr "" -#: actions/leavegroup.php:90 lib/command.php:265 +#: actions/leavegroup.php:100 lib/command.php:265 msgid "You are not a member of that group." msgstr "" -#: actions/leavegroup.php:127 +#: actions/leavegroup.php:137 #, fuzzy, php-format msgid "%1$s left group %2$s" msgstr "%1$s的狀態是%2$s" @@ -2047,8 +2085,7 @@ msgstr "使用者名稱或密碼錯誤" msgid "Error setting user. You are probably not authorized." msgstr "" -#: actions/login.php:188 actions/login.php:241 lib/action.php:466 -#: lib/logingroupnav.php:79 +#: actions/login.php:188 actions/login.php:241 lib/logingroupnav.php:79 msgid "Login" msgstr "登入" @@ -2291,8 +2328,8 @@ msgstr "連結" msgid "Only " msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 -#: lib/api.php:1068 lib/api.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 +#: lib/apiaction.php:1068 lib/apiaction.php:1177 msgid "Not a supported data format." msgstr "" @@ -2438,7 +2475,7 @@ msgstr "無法存取新密碼" msgid "Password saved." msgstr "" -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:331 +#: actions/pathsadminpanel.php:59 msgid "Paths" msgstr "" @@ -2471,7 +2508,6 @@ msgid "Invalid SSL server. The maximum length is 255 characters." msgstr "" #: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58 -#: lib/adminpanelaction.php:311 msgid "Site" msgstr "" @@ -2646,7 +2682,7 @@ msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1-64個小寫英文字母或數字,勿加標點符號或空格" #: actions/profilesettings.php:111 actions/register.php:448 -#: actions/showgroup.php:247 actions/tagother.php:104 +#: actions/showgroup.php:255 actions/tagother.php:104 #: lib/groupeditform.php:157 lib/userprofile.php:149 msgid "Full name" msgstr "全名" @@ -2675,7 +2711,7 @@ msgid "Bio" msgstr "自我介紹" #: actions/profilesettings.php:132 actions/register.php:471 -#: actions/showgroup.php:256 actions/tagother.php:112 +#: actions/showgroup.php:264 actions/tagother.php:112 #: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:164 msgid "Location" @@ -2757,7 +2793,8 @@ msgstr "無法儲存個人資料" msgid "Couldn't save tags." msgstr "無法儲存個人資料" -#: actions/profilesettings.php:391 lib/adminpanelaction.php:137 +#. TRANS: Message after successful saving of administrative settings. +#: actions/profilesettings.php:391 lib/adminpanelaction.php:141 msgid "Settings saved." msgstr "" @@ -2770,46 +2807,46 @@ msgstr "" msgid "Could not retrieve public stream." msgstr "" -#: actions/public.php:129 +#: actions/public.php:130 #, php-format msgid "Public timeline, page %d" msgstr "" -#: actions/public.php:131 lib/publicgroupnav.php:79 +#: actions/public.php:132 lib/publicgroupnav.php:79 msgid "Public timeline" msgstr "" -#: actions/public.php:159 +#: actions/public.php:160 msgid "Public Stream Feed (RSS 1.0)" msgstr "" -#: actions/public.php:163 +#: actions/public.php:164 msgid "Public Stream Feed (RSS 2.0)" msgstr "" -#: actions/public.php:167 +#: actions/public.php:168 #, fuzzy msgid "Public Stream Feed (Atom)" msgstr "%s的公開內容" -#: actions/public.php:187 +#: actions/public.php:188 #, php-format msgid "" "This is the public timeline for %%site.name%% but no one has posted anything " "yet." msgstr "" -#: actions/public.php:190 +#: actions/public.php:191 msgid "Be the first to post!" msgstr "" -#: actions/public.php:194 +#: actions/public.php:195 #, php-format msgid "" "Why not [register an account](%%action.register%%) and be the first to post!" msgstr "" -#: actions/public.php:241 +#: actions/public.php:242 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2818,7 +2855,7 @@ msgid "" "friends, family, and colleagues! ([Read more](%%doc.help%%))" msgstr "" -#: actions/public.php:246 +#: actions/public.php:247 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -2988,8 +3025,7 @@ msgstr "確認碼發生錯誤" msgid "Registration successful" msgstr "" -#: actions/register.php:114 actions/register.php:503 lib/action.php:463 -#: lib/logingroupnav.php:85 +#: actions/register.php:114 actions/register.php:503 lib/logingroupnav.php:85 msgid "Register" msgstr "" @@ -3152,7 +3188,7 @@ msgstr "" msgid "You already repeated that notice." msgstr "無此使用者" -#: actions/repeat.php:114 lib/noticelist.php:656 +#: actions/repeat.php:114 lib/noticelist.php:674 #, fuzzy msgid "Repeated" msgstr "新增" @@ -3162,47 +3198,47 @@ msgstr "新增" msgid "Repeated!" msgstr "新增" -#: actions/replies.php:125 actions/repliesrss.php:68 +#: actions/replies.php:126 actions/repliesrss.php:68 #: lib/personalgroupnav.php:105 #, php-format msgid "Replies to %s" msgstr "" -#: actions/replies.php:127 +#: actions/replies.php:128 #, fuzzy, php-format msgid "Replies to %1$s, page %2$d" msgstr "&s的微型部落格" -#: actions/replies.php:144 +#: actions/replies.php:145 #, fuzzy, php-format msgid "Replies feed for %s (RSS 1.0)" msgstr "發送給%s好友的訂閱" -#: actions/replies.php:151 +#: actions/replies.php:152 #, fuzzy, php-format msgid "Replies feed for %s (RSS 2.0)" msgstr "發送給%s好友的訂閱" -#: actions/replies.php:158 +#: actions/replies.php:159 #, fuzzy, php-format msgid "Replies feed for %s (Atom)" msgstr "發送給%s好友的訂閱" -#: actions/replies.php:198 +#: actions/replies.php:199 #, php-format msgid "" "This is the timeline showing replies to %1$s but %2$s hasn't received a " "notice to his attention yet." msgstr "" -#: actions/replies.php:203 +#: actions/replies.php:204 #, php-format msgid "" "You can engage other users in a conversation, subscribe to more people or " "[join groups](%%action.groups%%)." msgstr "" -#: actions/replies.php:205 +#: actions/replies.php:206 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) or [post something to his or her " @@ -3229,7 +3265,6 @@ msgid "User is already sandboxed." msgstr "" #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:336 msgid "Sessions" msgstr "" @@ -3254,7 +3289,7 @@ msgid "Turn on debugging output for sessions." msgstr "" #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/useradminpanel.php:293 +#: actions/useradminpanel.php:294 #, fuzzy msgid "Save site settings" msgstr "線上即時通設定" @@ -3288,7 +3323,7 @@ msgstr "地點" msgid "Description" msgstr "所有訂閱" -#: actions/showapplication.php:192 actions/showgroup.php:429 +#: actions/showapplication.php:192 actions/showgroup.php:437 #: lib/profileaction.php:174 msgid "Statistics" msgstr "" @@ -3349,35 +3384,35 @@ msgstr "%s與好友" msgid "Could not retrieve favorite notices." msgstr "" -#: actions/showfavorites.php:170 +#: actions/showfavorites.php:171 #, fuzzy, php-format msgid "Feed for favorites of %s (RSS 1.0)" msgstr "發送給%s好友的訂閱" -#: actions/showfavorites.php:177 +#: actions/showfavorites.php:178 #, fuzzy, php-format msgid "Feed for favorites of %s (RSS 2.0)" msgstr "發送給%s好友的訂閱" -#: actions/showfavorites.php:184 +#: actions/showfavorites.php:185 #, fuzzy, php-format msgid "Feed for favorites of %s (Atom)" msgstr "發送給%s好友的訂閱" -#: actions/showfavorites.php:205 +#: actions/showfavorites.php:206 msgid "" "You haven't chosen any favorite notices yet. Click the fave button on " "notices you like to bookmark them for later or shed a spotlight on them." msgstr "" -#: actions/showfavorites.php:207 +#: actions/showfavorites.php:208 #, 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:211 +#: actions/showfavorites.php:212 #, php-format msgid "" "%s hasn't added any notices to his favorites yet. Why not [register an " @@ -3385,7 +3420,7 @@ msgid "" "would add to their favorites :)" msgstr "" -#: actions/showfavorites.php:242 +#: actions/showfavorites.php:243 msgid "This is a way to share what you like." msgstr "" @@ -3399,70 +3434,70 @@ msgstr "" msgid "%1$s group, page %2$d" msgstr "所有訂閱" -#: actions/showgroup.php:218 +#: actions/showgroup.php:226 #, fuzzy msgid "Group profile" msgstr "無此通知" -#: actions/showgroup.php:263 actions/tagother.php:118 +#: actions/showgroup.php:271 actions/tagother.php:118 #: actions/userauthorization.php:175 lib/userprofile.php:177 msgid "URL" msgstr "" -#: actions/showgroup.php:274 actions/tagother.php:128 +#: actions/showgroup.php:282 actions/tagother.php:128 #: actions/userauthorization.php:187 lib/userprofile.php:194 msgid "Note" msgstr "" -#: actions/showgroup.php:284 lib/groupeditform.php:184 +#: actions/showgroup.php:292 lib/groupeditform.php:184 msgid "Aliases" msgstr "" -#: actions/showgroup.php:293 +#: actions/showgroup.php:301 msgid "Group actions" msgstr "" -#: actions/showgroup.php:328 +#: actions/showgroup.php:336 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "" -#: actions/showgroup.php:334 +#: actions/showgroup.php:342 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "" -#: actions/showgroup.php:340 +#: actions/showgroup.php:348 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "" -#: actions/showgroup.php:345 +#: actions/showgroup.php:353 #, fuzzy, php-format msgid "FOAF for %s group" msgstr "無此通知" -#: actions/showgroup.php:381 actions/showgroup.php:438 lib/groupnav.php:91 +#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 #, fuzzy msgid "Members" msgstr "何時加入會員的呢?" -#: actions/showgroup.php:386 lib/profileaction.php:117 +#: actions/showgroup.php:394 lib/profileaction.php:117 #: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "" -#: actions/showgroup.php:392 +#: actions/showgroup.php:400 msgid "All members" msgstr "" -#: actions/showgroup.php:432 +#: actions/showgroup.php:440 #, fuzzy msgid "Created" msgstr "新增" -#: actions/showgroup.php:448 +#: actions/showgroup.php:456 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3472,7 +3507,7 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showgroup.php:454 +#: actions/showgroup.php:462 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3481,7 +3516,7 @@ msgid "" "their life and interests. " msgstr "" -#: actions/showgroup.php:482 +#: actions/showgroup.php:490 msgid "Admins" msgstr "" @@ -3939,22 +3974,22 @@ msgstr "查無此Jabber ID" msgid "SMS" msgstr "" -#: actions/tag.php:68 +#: actions/tag.php:69 #, fuzzy, php-format msgid "Notices tagged with %1$s, page %2$d" msgstr "&s的微型部落格" -#: actions/tag.php:86 +#: actions/tag.php:87 #, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "" -#: actions/tag.php:92 +#: actions/tag.php:93 #, fuzzy, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "發送給%s好友的訂閱" -#: actions/tag.php:98 +#: actions/tag.php:99 #, php-format msgid "Notice feed for tag %s (Atom)" msgstr "" @@ -4008,7 +4043,7 @@ msgstr "" msgid "No such tag." msgstr "無此通知" -#: actions/twitapitrends.php:87 +#: actions/twitapitrends.php:85 msgid "API method under construction." msgstr "" @@ -4041,72 +4076,73 @@ msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" -#: actions/useradminpanel.php:58 lib/adminpanelaction.php:321 -#: lib/personalgroupnav.php:115 +#. TRANS: User admin panel title +#: actions/useradminpanel.php:59 +msgctxt "TITLE" msgid "User" msgstr "" -#: actions/useradminpanel.php:69 +#: actions/useradminpanel.php:70 msgid "User settings for this StatusNet site." msgstr "" -#: actions/useradminpanel.php:148 +#: actions/useradminpanel.php:149 msgid "Invalid bio limit. Must be numeric." msgstr "" -#: actions/useradminpanel.php:154 +#: actions/useradminpanel.php:155 msgid "Invalid welcome text. Max length is 255 characters." msgstr "" -#: actions/useradminpanel.php:164 +#: actions/useradminpanel.php:165 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" -#: actions/useradminpanel.php:217 lib/accountsettingsaction.php:108 +#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "" -#: actions/useradminpanel.php:221 +#: actions/useradminpanel.php:222 msgid "Bio Limit" msgstr "" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:223 msgid "Maximum length of a profile bio in characters." msgstr "" -#: actions/useradminpanel.php:230 +#: actions/useradminpanel.php:231 msgid "New users" msgstr "" -#: actions/useradminpanel.php:234 +#: actions/useradminpanel.php:235 msgid "New user welcome" msgstr "" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:236 msgid "Welcome text for new users (Max 255 chars)." msgstr "" -#: actions/useradminpanel.php:240 +#: actions/useradminpanel.php:241 #, fuzzy msgid "Default subscription" msgstr "所有訂閱" -#: actions/useradminpanel.php:241 +#: actions/useradminpanel.php:242 msgid "Automatically subscribe new users to this user." msgstr "" -#: actions/useradminpanel.php:250 +#: actions/useradminpanel.php:251 #, fuzzy msgid "Invitations" msgstr "地點" -#: actions/useradminpanel.php:255 +#: actions/useradminpanel.php:256 msgid "Invitations enabled" msgstr "" -#: actions/useradminpanel.php:257 +#: actions/useradminpanel.php:258 msgid "Whether to allow users to invite new users." msgstr "" @@ -4280,7 +4316,7 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:196 lib/action.php:747 +#: actions/version.php:196 lib/action.php:778 #, fuzzy msgid "Version" msgstr "地點" @@ -4321,6 +4357,11 @@ msgstr "無法更新使用者" msgid "Group leave failed." msgstr "無此通知" +#: classes/Local_group.php:41 +#, fuzzy +msgid "Could not update local group." +msgstr "無法更新使用者" + #: classes/Login_token.php:76 #, fuzzy, php-format msgid "Could not create login token for %s" @@ -4338,46 +4379,46 @@ msgstr "" msgid "Could not update message with new URI." msgstr "" -#: classes/Notice.php:157 +#: classes/Notice.php:172 #, php-format msgid "DB error inserting hashtag: %s" msgstr "" -#: classes/Notice.php:222 +#: classes/Notice.php:239 #, fuzzy msgid "Problem saving notice. Too long." msgstr "儲存使用者發生錯誤" -#: classes/Notice.php:226 +#: classes/Notice.php:243 #, fuzzy msgid "Problem saving notice. Unknown user." msgstr "儲存使用者發生錯誤" -#: classes/Notice.php:231 +#: classes/Notice.php:248 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: classes/Notice.php:237 +#: classes/Notice.php:254 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." msgstr "" -#: classes/Notice.php:243 +#: classes/Notice.php:260 msgid "You are banned from posting notices on this site." msgstr "" -#: classes/Notice.php:309 classes/Notice.php:335 +#: classes/Notice.php:326 classes/Notice.php:352 msgid "Problem saving notice." msgstr "" -#: classes/Notice.php:882 +#: classes/Notice.php:911 #, fuzzy msgid "Problem saving group inbox." msgstr "儲存使用者發生錯誤" -#: classes/Notice.php:1407 +#: classes/Notice.php:1442 #, php-format msgid "RT @%1$s %2$s" msgstr "" @@ -4408,21 +4449,31 @@ msgstr "無法刪除帳號" msgid "Couldn't delete subscription." msgstr "無法刪除帳號" -#: classes/User.php:372 +#: classes/User.php:373 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "" -#: classes/User_group.php:423 +#: classes/User_group.php:462 #, fuzzy msgid "Could not create group." msgstr "無法存取個人圖像資料" -#: classes/User_group.php:452 +#: classes/User_group.php:471 +#, fuzzy +msgid "Could not set group URI." +msgstr "註冊失敗" + +#: classes/User_group.php:492 #, fuzzy msgid "Could not set group membership." msgstr "註冊失敗" +#: classes/User_group.php:506 +#, fuzzy +msgid "Could not save local group info." +msgstr "註冊失敗" + #: lib/accountsettingsaction.php:108 msgid "Change your profile settings" msgstr "" @@ -4466,125 +4517,186 @@ msgstr "" msgid "Primary site navigation" msgstr "" +#. TRANS: Tooltip for main menu option "Personal" #: lib/action.php:439 -msgid "Home" -msgstr "主頁" - -#: lib/action.php:439 +msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:441 -msgid "Change your email, avatar, password, profile" -msgstr "" - -#: lib/action.php:444 -msgid "Connect" -msgstr "連結" +#: lib/action.php:442 +#, fuzzy +msgctxt "MENU" +msgid "Personal" +msgstr "地點" +#. TRANS: Tooltip for main menu option "Account" #: lib/action.php:444 #, fuzzy +msgctxt "TOOLTIP" +msgid "Change your email, avatar, password, profile" +msgstr "更改密碼" + +#: lib/action.php:447 +#, fuzzy +msgctxt "MENU" +msgid "Account" +msgstr "關於" + +#. TRANS: Tooltip for main menu option "Services" +#: lib/action.php:450 +#, fuzzy +msgctxt "TOOLTIP" msgid "Connect to services" msgstr "無法連結到伺服器:%s" -#: lib/action.php:448 +#: lib/action.php:453 +#, fuzzy +msgctxt "MENU" +msgid "Connect" +msgstr "連結" + +#. TRANS: Tooltip for menu option "Admin" +#: lib/action.php:457 +#, fuzzy +msgctxt "TOOLTIP" msgid "Change site configuration" +msgstr "確認信箱" + +#: lib/action.php:460 +msgctxt "MENU" +msgid "Admin" msgstr "" -#: lib/action.php:452 lib/subgroupnav.php:105 -msgid "Invite" -msgstr "" - -#: lib/action.php:453 lib/subgroupnav.php:106 +#. TRANS: Tooltip for main menu option "Invite" +#: lib/action.php:464 #, php-format +msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "" -#: lib/action.php:458 -msgid "Logout" -msgstr "登出" +#: lib/action.php:467 +#, fuzzy +msgctxt "MENU" +msgid "Invite" +msgstr "尺寸錯誤" -#: lib/action.php:458 +#. TRANS: Tooltip for main menu option "Logout" +#: lib/action.php:473 +msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "" -#: lib/action.php:463 +#: lib/action.php:476 #, fuzzy +msgctxt "MENU" +msgid "Logout" +msgstr "登出" + +#. TRANS: Tooltip for main menu option "Register" +#: lib/action.php:481 +#, fuzzy +msgctxt "TOOLTIP" msgid "Create an account" msgstr "新增帳號" -#: lib/action.php:466 +#: lib/action.php:484 +#, fuzzy +msgctxt "MENU" +msgid "Register" +msgstr "所有訂閱" + +#. TRANS: Tooltip for main menu option "Login" +#: lib/action.php:487 +msgctxt "TOOLTIP" msgid "Login to the site" msgstr "" -#: lib/action.php:469 lib/action.php:732 -msgid "Help" -msgstr "求救" - -#: lib/action.php:469 +#: lib/action.php:490 #, fuzzy +msgctxt "MENU" +msgid "Login" +msgstr "登入" + +#. TRANS: Tooltip for main menu option "Help" +#: lib/action.php:493 +#, fuzzy +msgctxt "TOOLTIP" msgid "Help me!" msgstr "求救" -#: lib/action.php:472 lib/searchaction.php:127 -msgid "Search" -msgstr "" +#: lib/action.php:496 +#, fuzzy +msgctxt "MENU" +msgid "Help" +msgstr "求救" -#: lib/action.php:472 +#. TRANS: Tooltip for main menu option "Search" +#: lib/action.php:499 +msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "" -#: lib/action.php:493 +#: lib/action.php:502 +msgctxt "MENU" +msgid "Search" +msgstr "" + +#. TRANS: DT element for site notice. String is hidden in default CSS. +#: lib/action.php:524 #, fuzzy msgid "Site notice" msgstr "新訊息" -#: lib/action.php:559 +#: lib/action.php:590 msgid "Local views" msgstr "" -#: lib/action.php:625 +#: lib/action.php:656 #, fuzzy msgid "Page notice" msgstr "新訊息" -#: lib/action.php:727 +#: lib/action.php:758 msgid "Secondary site navigation" msgstr "" -#: lib/action.php:734 +#: lib/action.php:763 +msgid "Help" +msgstr "求救" + +#: lib/action.php:765 msgid "About" msgstr "關於" -#: lib/action.php:736 +#: lib/action.php:767 msgid "FAQ" msgstr "常見問題" -#: lib/action.php:740 +#: lib/action.php:771 msgid "TOS" msgstr "" -#: lib/action.php:743 +#: lib/action.php:774 msgid "Privacy" msgstr "" -#: lib/action.php:745 +#: lib/action.php:776 msgid "Source" msgstr "" -#: lib/action.php:749 +#: lib/action.php:780 msgid "Contact" msgstr "好友名單" -#: lib/action.php:751 +#: lib/action.php:782 msgid "Badge" msgstr "" -#: lib/action.php:779 +#: lib/action.php:810 msgid "StatusNet software license" msgstr "" -#: lib/action.php:782 +#: lib/action.php:813 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4593,12 +4705,12 @@ msgstr "" "**%%site.name%%**是由[%%site.broughtby%%](%%site.broughtbyurl%%)所提供的微型" "部落格服務" -#: lib/action.php:784 +#: lib/action.php:815 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%**是個微型部落格" -#: lib/action.php:786 +#: lib/action.php:817 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4606,113 +4718,164 @@ msgid "" "org/licensing/licenses/agpl-3.0.html)." msgstr "" -#: lib/action.php:801 +#: lib/action.php:832 #, fuzzy msgid "Site content license" msgstr "新訊息" -#: lib/action.php:806 +#: lib/action.php:837 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:811 +#: lib/action.php:842 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:814 +#: lib/action.php:845 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" -#: lib/action.php:827 +#: lib/action.php:858 msgid "All " msgstr "" -#: lib/action.php:833 +#: lib/action.php:864 msgid "license." msgstr "" -#: lib/action.php:1132 +#: lib/action.php:1163 msgid "Pagination" msgstr "" -#: lib/action.php:1141 +#: lib/action.php:1172 msgid "After" msgstr "" -#: lib/action.php:1149 +#: lib/action.php:1180 #, fuzzy msgid "Before" msgstr "之前的內容»" -#: lib/activity.php:382 +#: lib/activity.php:449 msgid "Can't handle remote content yet." msgstr "" -#: lib/activity.php:410 +#: lib/activity.php:477 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activity.php:414 +#: lib/activity.php:481 msgid "Can't handle embedded Base64 content yet." msgstr "" -#: lib/adminpanelaction.php:96 +#. TRANS: Client error message +#: lib/adminpanelaction.php:98 msgid "You cannot make changes to this site." msgstr "" -#: lib/adminpanelaction.php:107 +#. TRANS: Client error message +#: lib/adminpanelaction.php:110 msgid "Changes to that panel are not allowed." msgstr "" -#: lib/adminpanelaction.php:206 +#. TRANS: Client error message +#: lib/adminpanelaction.php:211 msgid "showForm() not implemented." msgstr "" -#: lib/adminpanelaction.php:235 +#. TRANS: Client error message +#: lib/adminpanelaction.php:241 msgid "saveSettings() not implemented." msgstr "" -#: lib/adminpanelaction.php:258 +#. TRANS: Client error message +#: lib/adminpanelaction.php:265 msgid "Unable to delete design setting." msgstr "" -#: lib/adminpanelaction.php:312 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:330 #, fuzzy msgid "Basic site configuration" msgstr "確認信箱" -#: lib/adminpanelaction.php:317 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:332 +#, fuzzy +msgctxt "MENU" +msgid "Site" +msgstr "新訊息" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:338 #, fuzzy msgid "Design configuration" msgstr "確認信箱" -#: lib/adminpanelaction.php:322 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:340 +#, fuzzy +msgctxt "MENU" +msgid "Design" +msgstr "地點" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:346 #, fuzzy msgid "User configuration" msgstr "確認信箱" -#: lib/adminpanelaction.php:327 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:348 +msgctxt "MENU" +msgid "User" +msgstr "" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:354 #, fuzzy msgid "Access configuration" msgstr "確認信箱" -#: lib/adminpanelaction.php:332 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:356 +#, fuzzy +msgctxt "MENU" +msgid "Access" +msgstr "接受" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:362 #, fuzzy msgid "Paths configuration" msgstr "確認信箱" -#: lib/adminpanelaction.php:337 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:364 +msgctxt "MENU" +msgid "Paths" +msgstr "" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:370 #, fuzzy msgid "Sessions configuration" msgstr "確認信箱" -#: lib/apiauth.php:95 +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:372 +#, fuzzy +msgctxt "MENU" +msgid "Sessions" +msgstr "地點" + +#: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." msgstr "" -#: lib/apiauth.php:273 +#: lib/apiauth.php:272 #, php-format msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" msgstr "" @@ -4803,11 +4966,11 @@ msgstr "" msgid "Tags for this attachment" msgstr "" -#: lib/authenticationplugin.php:218 lib/authenticationplugin.php:223 +#: lib/authenticationplugin.php:220 lib/authenticationplugin.php:225 msgid "Password changing failed" msgstr "" -#: lib/authenticationplugin.php:233 +#: lib/authenticationplugin.php:235 msgid "Password changing is not allowed" msgstr "" @@ -5085,20 +5248,20 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:136 +#: lib/common.php:148 #, fuzzy msgid "No configuration file found. " msgstr "無確認碼" -#: lib/common.php:137 +#: lib/common.php:149 msgid "I looked for configuration files in the following places: " msgstr "" -#: lib/common.php:139 +#: lib/common.php:151 msgid "You may wish to run the installer to fix this." msgstr "" -#: lib/common.php:140 +#: lib/common.php:152 msgid "Go to the installer." msgstr "" @@ -5290,24 +5453,24 @@ msgstr "" msgid "Not an image or corrupt file." msgstr "" -#: lib/imagefile.php:105 +#: lib/imagefile.php:109 msgid "Unsupported image file format." msgstr "" -#: lib/imagefile.php:118 +#: lib/imagefile.php:122 #, fuzzy msgid "Lost our file." msgstr "無此通知" -#: lib/imagefile.php:150 lib/imagefile.php:197 +#: lib/imagefile.php:166 lib/imagefile.php:231 msgid "Unknown file type" msgstr "" -#: lib/imagefile.php:217 +#: lib/imagefile.php:251 msgid "MB" msgstr "" -#: lib/imagefile.php:219 +#: lib/imagefile.php:253 msgid "kB" msgstr "" @@ -5612,6 +5775,11 @@ msgstr "" msgid "Available characters" msgstr "6個以上字元" +#: lib/messageform.php:178 lib/noticeform.php:236 +msgctxt "Send button for sending notice" +msgid "Send" +msgstr "" + #: lib/noticeform.php:160 #, fuzzy msgid "Send a notice" @@ -5671,25 +5839,25 @@ msgstr "" msgid "at" msgstr "" -#: lib/noticelist.php:558 +#: lib/noticelist.php:566 #, fuzzy msgid "in context" msgstr "無內容" -#: lib/noticelist.php:583 +#: lib/noticelist.php:601 #, fuzzy msgid "Repeated by" msgstr "新增" -#: lib/noticelist.php:610 +#: lib/noticelist.php:628 msgid "Reply to this notice" msgstr "" -#: lib/noticelist.php:611 +#: lib/noticelist.php:629 msgid "Reply" msgstr "" -#: lib/noticelist.php:655 +#: lib/noticelist.php:673 #, fuzzy msgid "Notice repeated" msgstr "更新個人圖像" @@ -5739,6 +5907,10 @@ msgstr "" msgid "Favorites" msgstr "" +#: lib/personalgroupnav.php:115 +msgid "User" +msgstr "" + #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "" @@ -5832,7 +6004,7 @@ msgstr "無此通知" msgid "Repeat this notice" msgstr "無此通知" -#: lib/router.php:665 +#: lib/router.php:668 msgid "No single user defined for single-user mode." msgstr "" @@ -5853,6 +6025,10 @@ msgstr "" msgid "Keyword(s)" msgstr "" +#: lib/searchaction.php:127 +msgid "Search" +msgstr "" + #: lib/searchaction.php:162 msgid "Search help" msgstr "" @@ -5906,6 +6082,15 @@ msgstr "此帳號已註冊" msgid "Groups %s is a member of" msgstr "" +#: lib/subgroupnav.php:105 +msgid "Invite" +msgstr "" + +#: lib/subgroupnav.php:106 +#, php-format +msgid "Invite friends and colleagues to join you on %s" +msgstr "" + #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -5980,47 +6165,47 @@ msgstr "" msgid "Moderate" msgstr "" -#: lib/util.php:952 +#: lib/util.php:1013 msgid "a few seconds ago" msgstr "" -#: lib/util.php:954 +#: lib/util.php:1015 msgid "about a minute ago" msgstr "" -#: lib/util.php:956 +#: lib/util.php:1017 #, php-format msgid "about %d minutes ago" msgstr "" -#: lib/util.php:958 +#: lib/util.php:1019 msgid "about an hour ago" msgstr "" -#: lib/util.php:960 +#: lib/util.php:1021 #, php-format msgid "about %d hours ago" msgstr "" -#: lib/util.php:962 +#: lib/util.php:1023 msgid "about a day ago" msgstr "" -#: lib/util.php:964 +#: lib/util.php:1025 #, php-format msgid "about %d days ago" msgstr "" -#: lib/util.php:966 +#: lib/util.php:1027 msgid "about a month ago" msgstr "" -#: lib/util.php:968 +#: lib/util.php:1029 #, php-format msgid "about %d months ago" msgstr "" -#: lib/util.php:970 +#: lib/util.php:1031 msgid "about a year ago" msgstr "" diff --git a/plugins/Facebook/locale/Facebook.po b/plugins/Facebook/locale/Facebook.po index 5b313c8c53..4bc00248c9 100644 --- a/plugins/Facebook/locale/Facebook.po +++ b/plugins/Facebook/locale/Facebook.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-12-07 20:38-0800\n" +"POT-Creation-Date: 2010-03-01 14:58-0800\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -59,63 +59,31 @@ msgstr "" msgid "Lost or forgotten password?" msgstr "" -#: facebookaction.php:386 facebookhome.php:248 +#: facebookaction.php:330 facebookhome.php:248 msgid "Pagination" msgstr "" -#: facebookaction.php:395 facebookhome.php:257 +#: facebookaction.php:339 facebookhome.php:257 msgid "After" msgstr "" -#: facebookaction.php:403 facebookhome.php:265 +#: facebookaction.php:347 facebookhome.php:265 msgid "Before" msgstr "" -#: facebookaction.php:421 +#: facebookaction.php:365 msgid "No notice content!" msgstr "" -#: facebookaction.php:427 +#: facebookaction.php:371 #, php-format msgid "That's too long. Max notice size is %d chars." msgstr "" -#: facebookaction.php:523 +#: facebookaction.php:430 msgid "Notices" msgstr "" -#: facebookutil.php:280 -#, php-format -msgid "Your %1$s Facebook application access has been disabled." -msgstr "" - -#: facebookutil.php:283 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that we are unable to update your " -"Facebook status from %2$s, and have disabled the Facebook application for " -"your account. This may be because you have removed the Facebook " -"application's authorization, or have deleted your Facebook account. You can " -"re-enable the Facebook application and automatic status updating by re-" -"installing the %2$s Facebook application.\n" -"\n" -"Regards,\n" -"\n" -"%2$s" -msgstr "" - -#: FBConnectLogin.php:33 -msgid "Already logged in." -msgstr "" - -#: FBConnectLogin.php:41 -msgid "Login with your Facebook Account" -msgstr "" - -#: FBConnectLogin.php:55 -msgid "Facebook Login" -msgstr "" - #: facebookhome.php:111 msgid "Server error - couldn't get user!" msgstr "" @@ -149,6 +117,56 @@ msgstr "" msgid "Skip" msgstr "" +#: facebookinvite.php:72 +#, php-format +msgid "Thanks for inviting your friends to use %s" +msgstr "" + +#: facebookinvite.php:74 +msgid "Invitations have been sent to the following users:" +msgstr "" + +#: facebookinvite.php:94 +#, php-format +msgid "You have been invited to %s" +msgstr "" + +#: facebookinvite.php:103 +#, php-format +msgid "Invite your friends to use %s" +msgstr "" + +#: facebookinvite.php:125 +#, php-format +msgid "Friends already using %s:" +msgstr "" + +#: facebookinvite.php:143 +msgid "Send invitations" +msgstr "" + +#: FacebookPlugin.php:413 FacebookPlugin.php:433 +msgid "Facebook" +msgstr "" + +#: FacebookPlugin.php:414 +msgid "Login or register using Facebook" +msgstr "" + +#: FacebookPlugin.php:434 FBConnectSettings.php:56 +msgid "Facebook Connect Settings" +msgstr "" + +#: FacebookPlugin.php:533 +msgid "" +"The Facebook plugin allows you to integrate your StatusNet instance with Facebook and Facebook Connect." +msgstr "" + +#: facebookremove.php:58 +msgid "Couldn't remove Facebook user." +msgstr "" + #: facebooksettings.php:74 msgid "There was a problem saving your sync preferences!" msgstr "" @@ -193,89 +211,19 @@ msgstr "" msgid "Sync preferences" msgstr "" -#: facebookinvite.php:72 +#: facebookutil.php:285 #, php-format -msgid "Thanks for inviting your friends to use %s" -msgstr "" - -#: facebookinvite.php:74 -msgid "Invitations have been sent to the following users:" -msgstr "" - -#: facebookinvite.php:94 -#, php-format -msgid "You have been invited to %s" -msgstr "" - -#: facebookinvite.php:103 -#, php-format -msgid "Invite your friends to use %s" -msgstr "" - -#: facebookinvite.php:125 -#, php-format -msgid "Friends already using %s:" -msgstr "" - -#: facebookinvite.php:143 -msgid "Send invitations" -msgstr "" - -#: facebookremove.php:58 -msgid "Couldn't remove Facebook user." -msgstr "" - -#: FBConnectSettings.php:56 FacebookPlugin.php:430 -msgid "Facebook Connect Settings" -msgstr "" - -#: FBConnectSettings.php:67 -msgid "Manage how your account connects to Facebook" -msgstr "" - -#: FBConnectSettings.php:92 -msgid "There is no Facebook user connected to this account." -msgstr "" - -#: FBConnectSettings.php:100 -msgid "Connected Facebook user" -msgstr "" - -#: FBConnectSettings.php:119 -msgid "Disconnect my account from Facebook" -msgstr "" - -#: FBConnectSettings.php:124 msgid "" -"Disconnecting your Faceboook would make it impossible to log in! Please " -msgstr "" - -#: FBConnectSettings.php:128 -msgid "set a password" -msgstr "" - -#: FBConnectSettings.php:130 -msgid " first." -msgstr "" - -#: FBConnectSettings.php:142 -msgid "Disconnect" -msgstr "" - -#: FBConnectSettings.php:164 FBConnectAuth.php:90 -msgid "There was a problem with your session token. Try again, please." -msgstr "" - -#: FBConnectSettings.php:178 -msgid "Couldn't delete link to Facebook." -msgstr "" - -#: FBConnectSettings.php:194 -msgid "You have disconnected from Facebook." -msgstr "" - -#: FBConnectSettings.php:197 -msgid "Not sure what you're trying to do." +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %2$s, and have disabled the Facebook application for " +"your account. This may be because you have removed the Facebook " +"application's authorization, or have deleted your Facebook account. You can " +"re-enable the Facebook application and automatic status updating by re-" +"installing the %2$s Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%2$s" msgstr "" #: FBConnectAuth.php:51 @@ -286,6 +234,10 @@ msgstr "" msgid "There is already a local user linked with this Facebook." msgstr "" +#: FBConnectAuth.php:90 FBConnectSettings.php:164 +msgid "There was a problem with your session token. Try again, please." +msgstr "" + #: FBConnectAuth.php:95 msgid "You can't register if you don't agree to the license." msgstr "" @@ -385,10 +337,59 @@ msgstr "" msgid "Invalid username or password." msgstr "" -#: FacebookPlugin.php:409 FacebookPlugin.php:429 -msgid "Facebook" +#: FBConnectLogin.php:33 +msgid "Already logged in." msgstr "" -#: FacebookPlugin.php:410 -msgid "Login or register using Facebook" +#: FBConnectLogin.php:41 +msgid "Login with your Facebook Account" +msgstr "" + +#: FBConnectLogin.php:55 +msgid "Facebook Login" +msgstr "" + +#: FBConnectSettings.php:67 +msgid "Manage how your account connects to Facebook" +msgstr "" + +#: FBConnectSettings.php:92 +msgid "There is no Facebook user connected to this account." +msgstr "" + +#: FBConnectSettings.php:100 +msgid "Connected Facebook user" +msgstr "" + +#: FBConnectSettings.php:119 +msgid "Disconnect my account from Facebook" +msgstr "" + +#: FBConnectSettings.php:124 +msgid "" +"Disconnecting your Faceboook would make it impossible to log in! Please " +msgstr "" + +#: FBConnectSettings.php:128 +msgid "set a password" +msgstr "" + +#: FBConnectSettings.php:130 +msgid " first." +msgstr "" + +#: FBConnectSettings.php:142 +msgid "Disconnect" +msgstr "" + +#: FBConnectSettings.php:178 +msgid "Couldn't delete link to Facebook." +msgstr "" + +#: FBConnectSettings.php:194 +msgid "You have disconnected from Facebook." +msgstr "" + +#: FBConnectSettings.php:197 +msgid "Not sure what you're trying to do." msgstr "" diff --git a/plugins/Gravatar/locale/Gravatar.po b/plugins/Gravatar/locale/Gravatar.po index 1df62b6661..d7275b9290 100644 --- a/plugins/Gravatar/locale/Gravatar.po +++ b/plugins/Gravatar/locale/Gravatar.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-12-11 16:27-0800\n" +"POT-Creation-Date: 2010-03-01 14:58-0800\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -59,3 +59,9 @@ msgstr "" #: GravatarPlugin.php:177 msgid "Gravatar removed." msgstr "" + +#: GravatarPlugin.php:196 +msgid "" +"The Gravatar plugin allows users to use their Gravatar with StatusNet." +msgstr "" diff --git a/plugins/Mapstraction/locale/Mapstraction.po b/plugins/Mapstraction/locale/Mapstraction.po index c1c50bf506..1dd5dbbcc9 100644 --- a/plugins/Mapstraction/locale/Mapstraction.po +++ b/plugins/Mapstraction/locale/Mapstraction.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-12-07 20:38-0800\n" +"POT-Creation-Date: 2010-03-01 14:58-0800\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -34,15 +34,21 @@ msgstr "" msgid "User has no profile." msgstr "" +#: MapstractionPlugin.php:182 +msgid "Map" +msgstr "" + +#: MapstractionPlugin.php:193 +msgid "Full size" +msgstr "" + +#: MapstractionPlugin.php:205 +msgid "" +"Show maps of users' and friends' notices with Mapstraction JavaScript library." +msgstr "" + #: usermap.php:71 #, php-format msgid "%s map, page %d" msgstr "" - -#: MapstractionPlugin.php:180 -msgid "Map" -msgstr "" - -#: MapstractionPlugin.php:191 -msgid "Full size" -msgstr "" diff --git a/plugins/OStatus/locale/OStatus.po b/plugins/OStatus/locale/OStatus.po index ee19cf3dbd..7e33a0eed6 100644 --- a/plugins/OStatus/locale/OStatus.po +++ b/plugins/OStatus/locale/OStatus.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-01 14:08-0800\n" +"POT-Creation-Date: 2010-03-01 14:58-0800\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -223,43 +223,43 @@ msgstr "" msgid "Salmon signature verification failed." msgstr "" -#: lib/salmonaction.php:66 +#: lib/salmonaction.php:67 msgid "Salmon post must be an Atom entry." msgstr "" -#: lib/salmonaction.php:114 +#: lib/salmonaction.php:115 msgid "Unrecognized activity type." msgstr "" -#: lib/salmonaction.php:122 +#: lib/salmonaction.php:123 msgid "This target doesn't understand posts." msgstr "" -#: lib/salmonaction.php:127 +#: lib/salmonaction.php:128 msgid "This target doesn't understand follows." msgstr "" -#: lib/salmonaction.php:132 +#: lib/salmonaction.php:133 msgid "This target doesn't understand unfollows." msgstr "" -#: lib/salmonaction.php:137 +#: lib/salmonaction.php:138 msgid "This target doesn't understand favorites." msgstr "" -#: lib/salmonaction.php:142 +#: lib/salmonaction.php:143 msgid "This target doesn't understand unfavorites." msgstr "" -#: lib/salmonaction.php:147 +#: lib/salmonaction.php:148 msgid "This target doesn't understand share events." msgstr "" -#: lib/salmonaction.php:152 +#: lib/salmonaction.php:153 msgid "This target doesn't understand joins." msgstr "" -#: lib/salmonaction.php:157 +#: lib/salmonaction.php:158 msgid "This target doesn't understand leave events." msgstr "" diff --git a/plugins/OpenID/locale/OpenID.po b/plugins/OpenID/locale/OpenID.po index 34738bc750..7ed8798355 100644 --- a/plugins/OpenID/locale/OpenID.po +++ b/plugins/OpenID/locale/OpenID.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-12-07 20:38-0800\n" +"POT-Creation-Date: 2010-03-01 14:58-0800\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,140 +16,6 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: openidlogin.php:30 finishopenidlogin.php:34 -msgid "Already logged in." -msgstr "" - -#: openidlogin.php:37 openidsettings.php:194 finishopenidlogin.php:38 -msgid "There was a problem with your session token. Try again, please." -msgstr "" - -#: openidlogin.php:66 -#, php-format -msgid "" -"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " -"before changing your settings." -msgstr "" - -#: openidlogin.php:70 -#, php-format -msgid "Login with an [OpenID](%%doc.openid%%) account." -msgstr "" - -#: openidlogin.php:95 finishaddopenid.php:170 -msgid "OpenID Login" -msgstr "" - -#: openidlogin.php:112 -msgid "OpenID login" -msgstr "" - -#: openidlogin.php:117 openidsettings.php:107 -msgid "OpenID URL" -msgstr "" - -#: openidlogin.php:119 -msgid "Your OpenID URL" -msgstr "" - -#: openidlogin.php:122 -msgid "Remember me" -msgstr "" - -#: openidlogin.php:123 -msgid "Automatically login in the future; not for shared computers!" -msgstr "" - -#: openidlogin.php:127 -msgid "Login" -msgstr "" - -#: openidserver.php:106 -#, php-format -msgid "You are not authorized to use the identity %s" -msgstr "" - -#: openidserver.php:126 -msgid "Just an OpenID provider. Nothing to see here, move along..." -msgstr "" - -#: OpenIDPlugin.php:123 OpenIDPlugin.php:135 -msgid "OpenID" -msgstr "" - -#: OpenIDPlugin.php:124 -msgid "Login or register with OpenID" -msgstr "" - -#: OpenIDPlugin.php:136 -msgid "Add or remove OpenIDs" -msgstr "" - -#: openid.php:141 -msgid "Cannot instantiate OpenID consumer object." -msgstr "" - -#: openid.php:151 -msgid "Not a valid OpenID." -msgstr "" - -#: openid.php:153 -#, php-format -msgid "OpenID failure: %s" -msgstr "" - -#: openid.php:180 -#, php-format -msgid "Could not redirect to server: %s" -msgstr "" - -#: openid.php:198 -#, php-format -msgid "Could not create OpenID form: %s" -msgstr "" - -#: openid.php:214 -msgid "" -"This form should automatically submit itself. If not, click the submit " -"button to go to your OpenID provider." -msgstr "" - -#: openid.php:246 -msgid "Error saving the profile." -msgstr "" - -#: openid.php:257 -msgid "Error saving the user." -msgstr "" - -#: openid.php:277 -msgid "OpenID Auto-Submit" -msgstr "" - -#: openidtrust.php:51 -msgid "OpenID Identity Verification" -msgstr "" - -#: openidtrust.php:69 -msgid "" -"This page should only be reached during OpenID processing, not directly." -msgstr "" - -#: openidtrust.php:118 -#, php-format -msgid "" -"%s has asked to verify your identity. Click Continue to verify your " -"identity and login without creating a new password." -msgstr "" - -#: openidtrust.php:136 -msgid "Continue" -msgstr "" - -#: openidtrust.php:137 -msgid "Cancel" -msgstr "" - #: finishaddopenid.php:67 msgid "Not logged in." msgstr "" @@ -179,71 +45,26 @@ msgstr "" msgid "Error updating profile" msgstr "" -#: openidsettings.php:59 -msgid "OpenID settings" +#: finishaddopenid.php:170 openidlogin.php:95 +msgid "OpenID Login" msgstr "" -#: 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." +#: finishopenidlogin.php:34 openidlogin.php:30 +msgid "Already logged in." msgstr "" -#: openidsettings.php:99 -msgid "Add OpenID" -msgstr "" - -#: openidsettings.php:102 -msgid "" -"If you want to add an OpenID to your account, enter it in the box below and " -"click \"Add\"." -msgstr "" - -#: openidsettings.php:117 -msgid "Add" -msgstr "" - -#: openidsettings.php:129 -msgid "Remove OpenID" -msgstr "" - -#: openidsettings.php:134 -msgid "" -"Removing your only OpenID would make it impossible to log in! If you need to " -"remove it, add another OpenID first." -msgstr "" - -#: openidsettings.php:149 -msgid "" -"You can remove an OpenID from your account by clicking the button marked " -"\"Remove\"." -msgstr "" - -#: openidsettings.php:172 -msgid "Remove" -msgstr "" - -#: openidsettings.php:208 finishopenidlogin.php:52 -msgid "Something weird happened." -msgstr "" - -#: openidsettings.php:228 -msgid "No such OpenID." -msgstr "" - -#: openidsettings.php:233 -msgid "That OpenID does not belong to you." -msgstr "" - -#: openidsettings.php:237 -msgid "OpenID removed." +#: finishopenidlogin.php:38 openidlogin.php:37 openidsettings.php:194 +msgid "There was a problem with your session token. Try again, please." msgstr "" #: finishopenidlogin.php:43 msgid "You can't register if you don't agree to the license." msgstr "" +#: finishopenidlogin.php:52 openidsettings.php:208 +msgid "Something weird happened." +msgstr "" + #: finishopenidlogin.php:66 #, php-format msgid "" @@ -342,3 +163,186 @@ msgstr "" #: finishopenidlogin.php:345 msgid "Error connecting user to OpenID." msgstr "" + +#: openid.php:141 +msgid "Cannot instantiate OpenID consumer object." +msgstr "" + +#: openid.php:151 +msgid "Not a valid OpenID." +msgstr "" + +#: openid.php:153 +#, php-format +msgid "OpenID failure: %s" +msgstr "" + +#: openid.php:180 +#, php-format +msgid "Could not redirect to server: %s" +msgstr "" + +#: openid.php:198 +#, php-format +msgid "Could not create OpenID form: %s" +msgstr "" + +#: openid.php:214 +msgid "" +"This form should automatically submit itself. If not, click the submit " +"button to go to your OpenID provider." +msgstr "" + +#: openid.php:246 +msgid "Error saving the profile." +msgstr "" + +#: openid.php:257 +msgid "Error saving the user." +msgstr "" + +#: openid.php:277 +msgid "OpenID Auto-Submit" +msgstr "" + +#: openidlogin.php:66 +#, php-format +msgid "" +"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " +"before changing your settings." +msgstr "" + +#: openidlogin.php:70 +#, php-format +msgid "Login with an [OpenID](%%doc.openid%%) account." +msgstr "" + +#: openidlogin.php:112 +msgid "OpenID login" +msgstr "" + +#: openidlogin.php:117 openidsettings.php:107 +msgid "OpenID URL" +msgstr "" + +#: openidlogin.php:119 +msgid "Your OpenID URL" +msgstr "" + +#: openidlogin.php:122 +msgid "Remember me" +msgstr "" + +#: openidlogin.php:123 +msgid "Automatically login in the future; not for shared computers!" +msgstr "" + +#: openidlogin.php:127 +msgid "Login" +msgstr "" + +#: OpenIDPlugin.php:123 OpenIDPlugin.php:135 +msgid "OpenID" +msgstr "" + +#: OpenIDPlugin.php:124 +msgid "Login or register with OpenID" +msgstr "" + +#: OpenIDPlugin.php:136 +msgid "Add or remove OpenIDs" +msgstr "" + +#: OpenIDPlugin.php:324 +msgid "Use OpenID to login to the site." +msgstr "" + +#: openidserver.php:106 +#, php-format +msgid "You are not authorized to use the identity %s." +msgstr "" + +#: openidserver.php:126 +msgid "Just an OpenID provider. Nothing to see here, move along..." +msgstr "" + +#: openidsettings.php:59 +msgid "OpenID settings" +msgstr "" + +#: 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 "" + +#: openidsettings.php:99 +msgid "Add OpenID" +msgstr "" + +#: openidsettings.php:102 +msgid "" +"If you want to add an OpenID to your account, enter it in the box below and " +"click \"Add\"." +msgstr "" + +#: openidsettings.php:117 +msgid "Add" +msgstr "" + +#: openidsettings.php:129 +msgid "Remove OpenID" +msgstr "" + +#: openidsettings.php:134 +msgid "" +"Removing your only OpenID would make it impossible to log in! If you need to " +"remove it, add another OpenID first." +msgstr "" + +#: openidsettings.php:149 +msgid "" +"You can remove an OpenID from your account by clicking the button marked " +"\"Remove\"." +msgstr "" + +#: openidsettings.php:172 +msgid "Remove" +msgstr "" + +#: openidsettings.php:228 +msgid "No such OpenID." +msgstr "" + +#: openidsettings.php:233 +msgid "That OpenID does not belong to you." +msgstr "" + +#: openidsettings.php:237 +msgid "OpenID removed." +msgstr "" + +#: openidtrust.php:51 +msgid "OpenID Identity Verification" +msgstr "" + +#: openidtrust.php:69 +msgid "" +"This page should only be reached during OpenID processing, not directly." +msgstr "" + +#: openidtrust.php:118 +#, php-format +msgid "" +"%s has asked to verify your identity. Click Continue to verify your " +"identity and login without creating a new password." +msgstr "" + +#: openidtrust.php:136 +msgid "Continue" +msgstr "" + +#: openidtrust.php:137 +msgid "Cancel" +msgstr "" diff --git a/plugins/PoweredByStatusNet/locale/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/PoweredByStatusNet.po index bd39124efe..8f8434a85d 100644 --- a/plugins/PoweredByStatusNet/locale/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/PoweredByStatusNet.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-01-22 15:03-0800\n" +"POT-Creation-Date: 2010-03-01 14:58-0800\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,16 +16,16 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: PoweredByStatusNetPlugin.php:49 +#: PoweredByStatusNetPlugin.php:50 #, php-format msgid "powered by %s" msgstr "" -#: PoweredByStatusNetPlugin.php:51 +#: PoweredByStatusNetPlugin.php:52 msgid "StatusNet" msgstr "" -#: PoweredByStatusNetPlugin.php:64 +#: PoweredByStatusNetPlugin.php:65 msgid "" "Outputs powered by StatusNet after site " "name." diff --git a/plugins/Sample/locale/Sample.po b/plugins/Sample/locale/Sample.po index e0d2aa853c..a52c4ec01c 100644 --- a/plugins/Sample/locale/Sample.po +++ b/plugins/Sample/locale/Sample.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-02-24 16:33-0800\n" +"POT-Creation-Date: 2010-03-01 14:58-0800\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/TwitterBridge/locale/TwitterBridge.po b/plugins/TwitterBridge/locale/TwitterBridge.po index 14c30f1c9c..eff1255799 100644 --- a/plugins/TwitterBridge/locale/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/TwitterBridge.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-12-07 20:38-0800\n" +"POT-Creation-Date: 2010-03-01 14:58-0800\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,23 +16,48 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: twitterauthorization.php:81 -msgid "Not logged in." +#: twitter.php:320 +msgid "Your Twitter bridge has been disabled." msgstr "" -#: twitterauthorization.php:131 twitterauthorization.php:150 -#: twitterauthorization.php:170 twitterauthorization.php:217 +#: twitter.php:324 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " +"disabled. We no longer seem to have permission to update your Twitter " +"status. (Did you revoke %3$s's access?)\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 "" + +#: twitterauthorization.php:181 twitterauthorization.php:229 msgid "Couldn't link your Twitter account." msgstr "" -#: TwitterBridgePlugin.php:89 +#: twitterauthorization.php:201 +msgid "Couldn't link your Twitter account: oauth_token mismatch." +msgstr "" + +#: TwitterBridgePlugin.php:114 msgid "Twitter" msgstr "" -#: TwitterBridgePlugin.php:90 +#: TwitterBridgePlugin.php:115 msgid "Twitter integration options" msgstr "" +#: TwitterBridgePlugin.php:207 +msgid "" +"The Twitter \"bridge\" plugin allows you to integrate your StatusNet " +"instance with Twitter." +msgstr "" + #: twittersettings.php:59 msgid "Twitter settings" msgstr "" @@ -51,78 +76,81 @@ msgstr "" msgid "Connected Twitter account" msgstr "" -#: twittersettings.php:125 -msgid "Remove" +#: twittersettings.php:128 +msgid "Disconnect my account from Twitter" msgstr "" -#: twittersettings.php:131 -msgid "Preferences" +#: twittersettings.php:133 +msgid "Disconnecting your Twitter could make it impossible to log in! Please " msgstr "" -#: twittersettings.php:135 -msgid "Automatically send my notices to Twitter." +#: twittersettings.php:137 +msgid "set a password" msgstr "" -#: twittersettings.php:142 -msgid "Send local \"@\" replies to Twitter." +#: twittersettings.php:139 +msgid " first." msgstr "" -#: twittersettings.php:149 -msgid "Subscribe to my Twitter friends here." +#: twittersettings.php:143 +#, php-format +msgid "" +"Keep your %1$s account but disconnect from Twitter. You can use your %1$s " +"password to log in." +msgstr "" + +#: twittersettings.php:151 +msgid "Disconnect" msgstr "" #: twittersettings.php:158 -msgid "Import my Friends Timeline." +msgid "Preferences" msgstr "" -#: twittersettings.php:174 -msgid "Save" +#: twittersettings.php:162 +msgid "Automatically send my notices to Twitter." +msgstr "" + +#: twittersettings.php:169 +msgid "Send local \"@\" replies to Twitter." msgstr "" #: twittersettings.php:176 -msgid "Add" +msgid "Subscribe to my Twitter friends here." +msgstr "" + +#: twittersettings.php:185 +msgid "Import my Friends Timeline." msgstr "" #: twittersettings.php:201 +msgid "Save" +msgstr "" + +#: twittersettings.php:203 +msgid "Add" +msgstr "" + +#: twittersettings.php:228 msgid "There was a problem with your session token. Try again, please." msgstr "" -#: twittersettings.php:211 +#: twittersettings.php:238 msgid "Unexpected form submission." msgstr "" -#: twittersettings.php:230 +#: twittersettings.php:257 msgid "Couldn't remove Twitter user." msgstr "" -#: twittersettings.php:234 -msgid "Twitter account removed." +#: twittersettings.php:261 +msgid "Twitter account disconnected." msgstr "" -#: twittersettings.php:255 twittersettings.php:265 +#: twittersettings.php:282 twittersettings.php:292 msgid "Couldn't save Twitter preferences." msgstr "" -#: twittersettings.php:269 +#: twittersettings.php:296 msgid "Twitter preferences saved." msgstr "" - -#: twitter.php:333 -msgid "Your Twitter bridge has been disabled." -msgstr "" - -#: twitter.php:337 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " -"disabled. We no longer seem to have permission to update your Twitter " -"status. (Did you revoke %3$s's access?)\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 "" From bf0e29b4657043c416fa8d5b8c5b1f9f932d4a5b Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Thu, 4 Mar 2010 13:21:11 -0500 Subject: [PATCH 308/362] change lacuser/lacpassword to statusnet-like ones --- README | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README b/README index 9d40b8a7b9..3eb94b5085 100644 --- a/README +++ b/README @@ -291,10 +291,10 @@ especially if you've previously installed PHP/MySQL packages. MySQL shell: GRANT ALL on statusnet.* - TO 'lacuser'@'localhost' - IDENTIFIED BY 'lacpassword'; + TO 'statusnetuser'@'localhost' + IDENTIFIED BY 'statusnetpassword'; - You should change 'lacuser' and 'lacpassword' to your preferred new + You should change 'statusnetuser' and 'statusnetpassword' to your preferred new username and password. You may want to test logging in to MySQL as this new user. @@ -406,7 +406,7 @@ For this to work, there *must* be a domain or sub-domain for which all 1. Run the SQL script carrier.sql in your StatusNet database. This will usually work: - mysql -u "lacuser" --password="lacpassword" statusnet < db/carrier.sql + mysql -u "statusnetuser" --password="statusnetpassword" statusnet < db/carrier.sql This will populate your database with a list of wireless carriers that support email SMS gateways. From 80b58db172ab3bf0e3caf5f02dfd91a45e31a6ac Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Thu, 4 Mar 2010 13:22:45 -0500 Subject: [PATCH 309/362] change 'mublog' to 'statusnet' in README --- README | 42 +++++++++++++++++++++--------------------- 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/README b/README index 3eb94b5085..bdd2b8b756 100644 --- a/README +++ b/README @@ -241,34 +241,34 @@ especially if you've previously installed PHP/MySQL packages. 2. Move the tarball to a directory of your choosing in your Web root directory. Usually something like this will work: - mv statusnet-0.9.0 /var/www/mublog + mv statusnet-0.9.0 /var/www/statusnet - This will make your StatusNet instance available in the mublog path of - your server, like "http://example.net/mublog". "microblog" or + This will make your StatusNet instance available in the statusnet path of + your server, like "http://example.net/statusnet". "microblog" or "statusnet" might also be good path names. If you know how to configure virtual hosts on your web server, you can try setting up "http://micro.example.net/" or the like. 3. Make your target directory writeable by the Web server. - chmod a+w /var/www/mublog/ + chmod a+w /var/www/statusnet/ On some systems, this will probably work: - chgrp www-data /var/www/mublog/ - chmod g+w /var/www/mublog/ + chgrp www-data /var/www/statusnet/ + chmod g+w /var/www/statusnet/ If your Web server runs as another user besides "www-data", try that user's default group instead. As a last resort, you can create - a new group like "mublog" and add the Web server's user to the group. + a new group like "statusnet" and add the Web server's user to the group. 4. You should also take this moment to make your avatar, background, and file subdirectories writeable by the Web server. An insecure way to do this is: - chmod a+w /var/www/mublog/avatar - chmod a+w /var/www/mublog/background - chmod a+w /var/www/mublog/file + chmod a+w /var/www/statusnet/avatar + chmod a+w /var/www/statusnet/background + chmod a+w /var/www/statusnet/file You can also make the avatar, background, and file directories writeable by the Web server group, as noted above. @@ -300,7 +300,7 @@ especially if you've previously installed PHP/MySQL packages. 7. In a browser, navigate to the StatusNet install script; something like: - http://yourserver.example.com/mublog/install.php + http://yourserver.example.com/statusnet/install.php Enter the database connection information and your site name. The install program will configure your site and install the initial, @@ -320,16 +320,16 @@ By default, StatusNet will use URLs that include the main PHP program's name in them. For example, a user's home profile might be found at: - http://example.org/mublog/index.php/mublog/fred + http://example.org/statusnet/index.php/statusnet/fred On certain systems that don't support this kind of syntax, they'll look like this: - http://example.org/mublog/index.php?p=mublog/fred + http://example.org/statusnet/index.php?p=statusnet/fred It's possible to configure the software so it looks like this instead: - http://example.org/mublog/fred + http://example.org/statusnet/fred These "fancy URLs" are more readable and memorable for users. To use fancy URLs, you must either have Apache 2.x with .htaccess enabled and @@ -354,7 +354,7 @@ your server. You should now be able to navigate to a "fancy" URL on your server, like: - http://example.net/mublog/main/register + http://example.net/statusnet/main/register If you changed your HTTP server configuration, you may need to restart the server first. @@ -632,17 +632,17 @@ Access to file attachments can also be restricted to logged-in users only. 1. Add a directory outside the web root where your file uploads will be stored. Usually a command like this will work: - mkdir /var/www/mublog-files + mkdir /var/www/statusnet-files 2. Make the file uploads directory writeable by the web server. An insecure way to do this is: - chmod a+x /var/www/mublog-files + chmod a+x /var/www/statusnet-files 3. Tell StatusNet to use this directory for file uploads. Add a line like this to your config.php: - $config['attachments']['dir'] = '/var/www/mublog-files'; + $config['attachments']['dir'] = '/var/www/statusnet-files'; Upgrading ========= @@ -677,8 +677,8 @@ instructions; read to the end first before trying them. maildaemon.php file, and running something like "newaliases". 5. Once all writing processes to your site are turned off, make a final backup of the Web directory and database. -6. Move your StatusNet directory to a backup spot, like "mublog.bak". -7. Unpack your StatusNet 0.9.0 tarball and move it to "mublog" or +6. Move your StatusNet directory to a backup spot, like "statusnet.bak". +7. Unpack your StatusNet 0.9.0 tarball and move it to "statusnet" or wherever your code used to be. 8. Copy the config.php file and avatar directory from your old directory to your new directory. @@ -788,7 +788,7 @@ This section is a catch-all for site-wide variables. name: the name of your site, like 'YourCompany Microblog'. server: the server part of your site's URLs, like 'example.net'. -path: The path part of your site's URLs, like 'mublog' or '' +path: The path part of your site's URLs, like 'statusnet' or '' (installed in root). fancy: whether or not your site uses fancy URLs (see Fancy URLs section above). Default is false. From 1f15e52483366f834ea06e951b077d03f72bfaea Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Thu, 4 Mar 2010 13:24:29 -0500 Subject: [PATCH 310/362] change lede so it doesn't talk about Laconica --- README | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README b/README index bdd2b8b756..10792c1559 100644 --- a/README +++ b/README @@ -5,10 +5,10 @@ README StatusNet 0.9.0 ("Stand") 4 Mar 2010 -This is the README file for StatusNet (formerly Laconica), the Open -Source microblogging platform. It includes installation instructions, -descriptions of options you can set, warnings, tips, and general info -for administrators. Information on using StatusNet can be found in the +This is the README file for StatusNet, the Open Source microblogging +platform. It includes installation instructions, descriptions of +options you can set, warnings, tips, and general info for +administrators. Information on using StatusNet can be found in the "doc" subdirectory or in the "help" section on-line. About From 15aaae67d68baf3f65970e38b41a26cb516a085a Mon Sep 17 00:00:00 2001 From: Sarven Capadisli Date: Thu, 4 Mar 2010 13:28:26 -0500 Subject: [PATCH 311/362] Another update to admin navigation alignment --- theme/base/css/display.css | 14 ++++++-------- theme/base/css/ie.css | 4 ++++ 2 files changed, 10 insertions(+), 8 deletions(-) diff --git a/theme/base/css/display.css b/theme/base/css/display.css index 9647558327..bbbe4910c2 100644 --- a/theme/base/css/display.css +++ b/theme/base/css/display.css @@ -364,15 +364,11 @@ width:100%; } body[id$=adminpanel] #site_nav_local_views { -float:right; -margin-right:18.9%; - -margin-right:189px; position:relative; -width:14.01%; - -width:141px; z-index:9; +float:right; +margin-right:18.65%; +width:14.25%; } body[id$=adminpanel] #site_nav_local_views li { width:100%; @@ -381,7 +377,9 @@ margin-bottom:7px; } body[id$=adminpanel] #site_nav_local_views a { display:block; -width:100%; +width:80%; +padding-right:10%; +padding-left:10%; border-radius-toprleft:0; -moz-border-radius-topleft:0; -webkit-border-top-left-radius:0; diff --git a/theme/base/css/ie.css b/theme/base/css/ie.css index 70a6fd11a5..41d053ac46 100644 --- a/theme/base/css/ie.css +++ b/theme/base/css/ie.css @@ -47,3 +47,7 @@ z-index:9999; .notice .thumbnail img { z-index:9999; } + +.form_settings fieldset fieldset legend { +line-height:auto; +} From 938c5954fbbdbe77e651794a00e87d5f47b26c9f Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Thu, 4 Mar 2010 13:29:09 -0500 Subject: [PATCH 312/362] add blacklist and throttle plugin notes --- README | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README b/README index 10792c1559..44bdd8fe20 100644 --- a/README +++ b/README @@ -115,6 +115,8 @@ Notable changes this version: - Plugin to support RSSCloud - A framework for adding advertisements to a public site, and plugins for Google AdSense and OpenX server +- Plugins to throttle excessive subscriptions and registrations. +- A plugin to blacklist particular URLs or nicknames. There are also literally thousands of bugs fixed and minor features added. A full changelog is available at http://status.net/wiki/StatusNet_0.9.0. From 36d86463e4c1812955394931dc9808b4657fc804 Mon Sep 17 00:00:00 2001 From: Sarven Capadisli Date: Thu, 4 Mar 2010 13:31:49 -0500 Subject: [PATCH 313/362] Increased admin navigation width to handle longer text length --- theme/base/css/display.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/theme/base/css/display.css b/theme/base/css/display.css index bbbe4910c2..0246065a7f 100644 --- a/theme/base/css/display.css +++ b/theme/base/css/display.css @@ -367,8 +367,8 @@ body[id$=adminpanel] #site_nav_local_views { position:relative; z-index:9; float:right; -margin-right:18.65%; -width:14.25%; +margin-right:10.65%; +width:22.25%; } body[id$=adminpanel] #site_nav_local_views li { width:100%; From b98fcffcd20eca741e3089bfcc87cbc4b95dbf22 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Thu, 4 Mar 2010 13:34:05 -0500 Subject: [PATCH 314/362] some more editorial on README --- README | 27 +++++++++++++++------------ 1 file changed, 15 insertions(+), 12 deletions(-) diff --git a/README b/README index 44bdd8fe20..cfc05246cb 100644 --- a/README +++ b/README @@ -621,14 +621,10 @@ not visible to non-logged-in users. This might be useful for workgroups who want to share a microblogging site for project management, but host it on a public server. -Note that this is an experimental feature; total privacy is not -guaranteed or ensured. Also, privacy is all-or-nothing for a site; you -can't have some accounts or notices private, and others public. -Finally, the interaction of private sites with OStatus is -undefined. Remote users won't be able to subscribe to users on a -private site, but users of the private site may be able to subscribe -to users on a remote site. (Or not... it's not well tested.) The -"proper behaviour" hasn't been defined here, so handle with care. +Total privacy is not guaranteed or ensured. Also, privacy is +all-or-nothing for a site; you can't have some accounts or notices +private, and others public. The interaction of private sites +with OStatus is undefined. Access to file attachments can also be restricted to logged-in users only. 1. Add a directory outside the web root where your file uploads will be @@ -693,10 +689,10 @@ instructions; read to the end first before trying them. reversed. YOU CAN EASILY DESTROY YOUR SITE WITH THIS STEP. Don't do it without a known-good backup! - If your database is at version 0.7.4, you can run a special upgrade - script: + If your database is at version 0.8.0 or above, you can run a + special upgrade script: - mysql -u -p db/074to080.sql + mysql -u -p db/08to09.sql Otherwise, go to your StatusNet directory and AFTER YOU MAKE A BACKUP run the rebuilddb.sh script like this: @@ -761,10 +757,17 @@ Configuration options The main configuration file for StatusNet (excepting configurations for dependency software) is config.php in your StatusNet directory. If you -edit any other file in the directory, like lib/common.php (where most +edit any other file in the directory, like lib/default.php (where most of the defaults are defined), you will lose your configuration options in any upgrade, and you will wish that you had been more careful. +Starting with version 0.9.0, a Web based configuration panel has been +added to StatusNet. The preferred method for changing config options is +to use this panel. + +A command-line script, setconfig.php, can be used to set individual +configuration options. It's in the scripts/ directory. + Starting with version 0.7.1, you can put config files in the /etc/statusnet/ directory on your server, if it exists. Config files will be included in this order: From 8242dba179e9b025974a54bfea666d5eecb4c0e6 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Thu, 4 Mar 2010 10:34:12 -0800 Subject: [PATCH 315/362] Fix link to StatusNet bug tracker in README --- README | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README b/README index 44bdd8fe20..d59d770330 100644 --- a/README +++ b/README @@ -1543,8 +1543,8 @@ Feedback * Microblogging messages to http://support.status.net/ are very welcome. * The microblogging group http://identi.ca/group/statusnet is a good place to discuss the software. -* StatusNet's Trac server has a bug tracker for any defects you may find, - or ideas for making things better. http://status.net/trac/ +* StatusNet has a bug tracker for any defects you may find, or ideas for + making things better. http://status.net/bugs Credits ======= From 22c06337a07196af5512630f3a8d1ee3ee5e715b Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Thu, 4 Mar 2010 10:41:07 -0800 Subject: [PATCH 316/362] updates to queue info in readme --- README | 55 ++++++++++++++++++++++++++++++++++++++++++++++--------- 1 file changed, 46 insertions(+), 9 deletions(-) diff --git a/README b/README index 10792c1559..670ab25a54 100644 --- a/README +++ b/README @@ -496,7 +496,7 @@ consider setting up queues and daemons. Queues and daemons ------------------ -Some activities that StatusNet needs to do, like broadcast OMB, SMS, +Some activities that StatusNet needs to do, like broadcast OStatus, SMS, and XMPP messages, can be 'queued' and done by off-line bots instead. For this to work, you must be able to run long-running offline processes, either on your main Web server or on another server you @@ -522,14 +522,12 @@ server is probably a good idea for high-volume sites. options, you'll need to create that user and/or group by hand. They're not created automatically. -4. On the queues server, run the command scripts/startdaemons.sh. It - needs as a parameter the install path; if you run it from the - StatusNet dir, "." should suffice. +4. On the queues server, run the command scripts/startdaemons.sh. This will run the queue handlers: * queuedaemon.php - polls for queued items for inbox processing and - pushing out to OMB, SMS, XMPP, etc. + pushing out to OStatus, SMS, XMPP, etc. * xmppdaemon.php - listens for new XMPP messages from users and stores them as notices in the database; also pulls queued XMPP output from queuedaemon.php to push out to clients. @@ -538,6 +536,9 @@ These two daemons will automatically restart in most cases of failure including memory leaks (if a memory_limit is set), but may still die or behave oddly if they lose connections to the XMPP or queue servers. +Additional daemons may be also started by this script for certain +plugins, such as the Twitter bridge. + It may be a good idea to use a daemon-monitoring service, like 'monit', to check their status and keep them running. @@ -546,9 +547,11 @@ default. This can be useful for starting, stopping, and monitoring the daemons. Since version 0.8.0, it's now possible to use a STOMP server instead of -our kind of hacky home-grown DB-based queue solution. See the "queues" -config section below for how to configure to use STOMP. As of this -writing, the software has been tested with ActiveMQ. +our kind of hacky home-grown DB-based queue solution. This is strongly +recommended for best response time, especially when using XMPP. + +See the "queues" config section below for how to configure to use STOMP. +As of this writing, the software has been tested with ActiveMQ 5.3. Themes ------ @@ -940,11 +943,45 @@ stomp_server: "broker URI" for stomp server. Something like possible; see your stomp server's documentation for details. queue_basename: a root name to use for queues (stomp only). Typically - something like '/queue/sitename/' makes sense. + something like '/queue/sitename/' makes sense. If running + multiple instances on the same server, make sure that + either this setting or $config['site']['nickname'] are + unique for each site to keep them separate. + stomp_username: username for connecting to the stomp server; defaults to null. stomp_password: password for connecting to the stomp server; defaults to null. + +stomp_persistent: keep items across queue server restart, if enabled. + +softlimit: an absolute or relative "soft memory limit"; daemons will + restart themselves gracefully when they find they've hit + this amount of memory usage. Defaults to 90% of PHP's global + memory_limit setting. + +inboxes: delivery of messages to receiver's inboxes can be delayed to + queue time for best interactive performance on the sender. + This may however be annoyingly slow when using the DB queues, + so you can set this to false if it's causing trouble. + +breakout: for stomp, individual queues are by default grouped up for + best scalability. If some need to be run by separate daemons, + etc they can be manually adjusted here. + + Default will share all queues for all sites within each group. + Specify as / or //, + using nickname identifier as site. + + 'main/distrib' separate "distrib" queue covering all sites + 'xmpp/xmppout/mysite' separate "xmppout" queue covering just 'mysite' + +max_retries: for stomp, drop messages after N failed attempts to process. + Defaults to 10. + +dead_letter_dir: for stomp, optional directory to dump data on failed + queue processing events after discarding them. + license ------- From a4ec64ff457f9d4a645e4ecae8b2c696e379c0ab Mon Sep 17 00:00:00 2001 From: Sarven Capadisli Date: Thu, 4 Mar 2010 13:43:28 -0500 Subject: [PATCH 317/362] Slight right alignment for remote button in minilists --- plugins/OStatus/theme/base/css/ostatus.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/OStatus/theme/base/css/ostatus.css b/plugins/OStatus/theme/base/css/ostatus.css index f7d9853cf7..c2d724158f 100644 --- a/plugins/OStatus/theme/base/css/ostatus.css +++ b/plugins/OStatus/theme/base/css/ostatus.css @@ -46,6 +46,7 @@ position:relative; .section .entity_actions { margin-bottom:0; +margin-right:7px; } #entity_remote_subscribe .dialogbox { @@ -70,5 +71,4 @@ background-color:transparent; background-position:0 -1183px; padding:0 0 0 23px; border:0; - } From 1b49e9d278038bc59fab48072cb9d192ebb4bdbd Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Thu, 4 Mar 2010 13:45:31 -0500 Subject: [PATCH 318/362] banned no longer supported --- README | 4 ---- 1 file changed, 4 deletions(-) diff --git a/README b/README index cfc05246cb..742d7683aa 100644 --- a/README +++ b/README @@ -1192,10 +1192,6 @@ profile Profile management. -banned: an array of usernames and/or profile IDs of 'banned' profiles. - The site will reject any notices by these users -- they will - not be accepted at all. (Compare with blacklisted users above, - whose posts just won't show up in the public stream.) biolimit: max character length of bio; 0 means no limit; null means to use the site text limit default. From 7d1ba4ff3b00cb42c85f2720d3b2aab82a3a560b Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Thu, 4 Mar 2010 10:48:37 -0800 Subject: [PATCH 319/362] Remove reference to $config['profile']['banned'] -- superceded by blacklist --- README | 4 ---- 1 file changed, 4 deletions(-) diff --git a/README b/README index b90ec8c45a..09d6678570 100644 --- a/README +++ b/README @@ -1229,10 +1229,6 @@ profile Profile management. -banned: an array of usernames and/or profile IDs of 'banned' profiles. - The site will reject any notices by these users -- they will - not be accepted at all. (Compare with blacklisted users above, - whose posts just won't show up in the public stream.) biolimit: max character length of bio; 0 means no limit; null means to use the site text limit default. From 96c06dd75ddce11fd7509dec407e35ce99792e51 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Thu, 4 Mar 2010 13:56:02 -0500 Subject: [PATCH 320/362] note betas are obsolete now --- README | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README b/README index 09d6678570..e729769f8a 100644 --- a/README +++ b/README @@ -78,7 +78,8 @@ New this version ================ This is a major feature release since version 0.8.3, released Feb 1 -2010. It is the final release version of 0.9.0. +2010. It is the final release version of 0.9.0, replacing any beta +versions. Notable changes this version: @@ -952,7 +953,7 @@ queue_basename: a root name to use for queues (stomp only). Typically multiple instances on the same server, make sure that either this setting or $config['site']['nickname'] are unique for each site to keep them separate. - + stomp_username: username for connecting to the stomp server; defaults to null. stomp_password: password for connecting to the stomp server; defaults From e6f379f8a3e125c1f5057ff4564278007c2bdaba Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Thu, 4 Mar 2010 10:57:35 -0800 Subject: [PATCH 321/362] Normalize whitespace in the README -- all tabs to (4) spaces --- README | 252 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 126 insertions(+), 126 deletions(-) diff --git a/README b/README index e729769f8a..0518e9a5ac 100644 --- a/README +++ b/README @@ -234,7 +234,7 @@ especially if you've previously installed PHP/MySQL packages. 1. Unpack the tarball you downloaded on your Web server. Usually a command like this will work: - tar zxf statusnet-0.9.0.tar.gz + tar zxf statusnet-0.9.0.tar.gz ...which will make a statusnet-0.9.0 subdirectory in your current directory. (If you don't have shell access on your Web server, you @@ -244,7 +244,7 @@ especially if you've previously installed PHP/MySQL packages. 2. Move the tarball to a directory of your choosing in your Web root directory. Usually something like this will work: - mv statusnet-0.9.0 /var/www/statusnet + mv statusnet-0.9.0 /var/www/statusnet This will make your StatusNet instance available in the statusnet path of your server, like "http://example.net/statusnet". "microblog" or @@ -254,12 +254,12 @@ especially if you've previously installed PHP/MySQL packages. 3. Make your target directory writeable by the Web server. - chmod a+w /var/www/statusnet/ + chmod a+w /var/www/statusnet/ On some systems, this will probably work: - chgrp www-data /var/www/statusnet/ - chmod g+w /var/www/statusnet/ + chgrp www-data /var/www/statusnet/ + chmod g+w /var/www/statusnet/ If your Web server runs as another user besides "www-data", try that user's default group instead. As a last resort, you can create @@ -269,9 +269,9 @@ especially if you've previously installed PHP/MySQL packages. file subdirectories writeable by the Web server. An insecure way to do this is: - chmod a+w /var/www/statusnet/avatar - chmod a+w /var/www/statusnet/background - chmod a+w /var/www/statusnet/file + chmod a+w /var/www/statusnet/avatar + chmod a+w /var/www/statusnet/background + chmod a+w /var/www/statusnet/file You can also make the avatar, background, and file directories writeable by the Web server group, as noted above. @@ -279,7 +279,7 @@ especially if you've previously installed PHP/MySQL packages. 5. Create a database to hold your microblog data. Something like this should work: - mysqladmin -u "username" --password="password" create statusnet + mysqladmin -u "username" --password="password" create statusnet Note that StatusNet must have its own database; you can't share the database with another program. You can name it whatever you want, @@ -294,8 +294,8 @@ especially if you've previously installed PHP/MySQL packages. MySQL shell: GRANT ALL on statusnet.* - TO 'statusnetuser'@'localhost' - IDENTIFIED BY 'statusnetpassword'; + TO 'statusnetuser'@'localhost' + IDENTIFIED BY 'statusnetpassword'; You should change 'statusnetuser' and 'statusnetpassword' to your preferred new username and password. You may want to test logging in to MySQL as @@ -409,14 +409,14 @@ For this to work, there *must* be a domain or sub-domain for which all 1. Run the SQL script carrier.sql in your StatusNet database. This will usually work: - mysql -u "statusnetuser" --password="statusnetpassword" statusnet < db/carrier.sql + mysql -u "statusnetuser" --password="statusnetpassword" statusnet < db/carrier.sql This will populate your database with a list of wireless carriers that support email SMS gateways. 2. Make sure the maildaemon.php file is executable: - chmod +x scripts/maildaemon.php + chmod +x scripts/maildaemon.php Note that "daemon" is kind of a misnomer here; the script is more of a filter than a daemon. @@ -577,15 +577,15 @@ following files: display.css: a CSS2 file for "default" styling for all browsers. ie6.css: a CSS2 file for override styling for fixing up Internet - Explorer 6. + Explorer 6. ie7.css: a CSS2 file for override styling for fixing up Internet - Explorer 7. + Explorer 7. logo.png: a logo image for the site. default-avatar-profile.png: a 96x96 pixel image to use as the avatar for - users who don't upload their own. + users who don't upload their own. default-avatar-stream.png: Ditto, but 48x48. For streams of notices. default-avatar-mini.png: Ditto ditto, but 24x24. For subscriptions - listing on profile pages. + listing on profile pages. You may want to start by copying the files from the default theme to your own directory. @@ -802,13 +802,13 @@ path: The path part of your site's URLs, like 'statusnet' or '' fancy: whether or not your site uses fancy URLs (see Fancy URLs section above). Default is false. logfile: full path to a file for StatusNet to save logging - information to. You may want to use this if you don't have - access to syslog. + information to. You may want to use this if you don't have + access to syslog. logdebug: whether to log additional debug info like backtraces on hard errors. Default false. locale_path: full path to the directory for locale data. Unless you - store all your locale data in one place, you probably - don't need to use this. + store all your locale data in one place, you probably + don't need to use this. language: default language for your site. Defaults to US English. Note that this is overridden if a user is logged in and has selected a different language. It is also overridden if the @@ -817,10 +817,10 @@ language: default language for your site. Defaults to US English. language, that means that changing this setting has little or no effect in practice. languages: A list of languages supported on your site. Typically you'd - only change this if you wanted to disable support for one - or another language: - "unset($config['site']['languages']['de'])" will disable - support for German. + only change this if you wanted to disable support for one + or another language: + "unset($config['site']['languages']['de'])" will disable + support for German. theme: Theme for your site (see Theme section). Two themes are provided by default: 'default' and 'stoica' (the one used by Identi.ca). It's appreciated if you don't use the 'stoica' theme @@ -828,26 +828,26 @@ theme: Theme for your site (see Theme section). Two themes are email: contact email address for your site. By default, it's extracted from your Web server environment; you may want to customize it. broughtbyurl: name of an organization or individual who provides the - service. Each page will include a link to this name in the - footer. A good way to link to the blog, forum, wiki, - corporate portal, or whoever is making the service available. + service. Each page will include a link to this name in the + footer. A good way to link to the blog, forum, wiki, + corporate portal, or whoever is making the service available. broughtby: text used for the "brought by" link. timezone: default timezone for message display. Users can set their - own time zone. Defaults to 'UTC', which is a pretty good default. + own time zone. Defaults to 'UTC', which is a pretty good default. closed: If set to 'true', will disallow registration on your site. - This is a cheap way to restrict accounts to only one - individual or group; just register the accounts you want on - the service, *then* set this variable to 'true'. + This is a cheap way to restrict accounts to only one + individual or group; just register the accounts you want on + the service, *then* set this variable to 'true'. inviteonly: If set to 'true', will only allow registration if the user - was invited by an existing user. + was invited by an existing user. private: If set to 'true', anonymous users will be redirected to the 'login' page. Also, API methods that normally require no authentication will require it. Note that this does not turn off registration; use 'closed' or 'inviteonly' for the behaviour you want. notice: A plain string that will appear on every page. A good place - to put introductory information about your service, or info about - upgrades and outages, or other community info. Any HTML will + to put introductory information about your service, or info about + upgrades and outages, or other community info. Any HTML will be escaped. logo: URL of an image file to use as the logo for the site. Overrides the logo in the theme, if any. @@ -879,17 +879,17 @@ DB_DataObject (see ). The ones that you may want to set are listed below for clarity. database: a DSN (Data Source Name) for your StatusNet database. This is - in the format 'protocol://username:password@hostname/databasename', - where 'protocol' is 'mysql' or 'mysqli' (or possibly 'postgresql', if you - really know what you're doing), 'username' is the username, - 'password' is the password, and etc. + in the format 'protocol://username:password@hostname/databasename', + where 'protocol' is 'mysql' or 'mysqli' (or possibly 'postgresql', if you + really know what you're doing), 'username' is the username, + 'password' is the password, and etc. ini_yourdbname: if your database is not named 'statusnet', you'll need - to set this to point to the location of the - statusnet.ini file. Note that the real name of your database - should go in there, not literally 'yourdbname'. + to set this to point to the location of the + statusnet.ini file. Note that the real name of your database + should go in there, not literally 'yourdbname'. db_driver: You can try changing this to 'MDB2' to use the other driver - type for DB_DataObject, but note that it breaks the OpenID - libraries, which only support PEAR::DB. + type for DB_DataObject, but note that it breaks the OpenID + libraries, which only support PEAR::DB. debug: On a database error, you may get a message saying to set this value to 5 to see debug messages in the browser. This breaks just about all pages, and will also expose the username and @@ -898,13 +898,13 @@ quote_identifiers: Set this to true if you're using postgresql. type: either 'mysql' or 'postgresql' (used for some bits of database-type-specific SQL in the code). Defaults to mysql. mirror: you can set this to an array of DSNs, like the above - 'database' value. If it's set, certain read-only actions will - use a random value out of this array for the database, rather - than the one in 'database' (actually, 'database' is overwritten). - You can offload a busy DB server by setting up MySQL replication - and adding the slaves to this array. Note that if you want some - requests to go to the 'database' (master) server, you'll need - to include it in this array, too. + 'database' value. If it's set, certain read-only actions will + use a random value out of this array for the database, rather + than the one in 'database' (actually, 'database' is overwritten). + You can offload a busy DB server by setting up MySQL replication + and adding the slaves to this array. Note that if you want some + requests to go to the 'database' (master) server, you'll need + to include it in this array, too. utf8: whether to talk to the database in UTF-8 mode. This is the default with new installations, but older sites may want to turn it off until they get their databases fixed up. See "UTF-8 database" @@ -925,9 +925,9 @@ By default, StatusNet sites log error messages to the syslog facility. (You can override this using the 'logfile' parameter described above). appname: The name that StatusNet uses to log messages. By default it's - "statusnet", but if you have more than one installation on the - server, you may want to change the name for each instance so - you can track log messages more easily. + "statusnet", but if you have more than one installation on the + server, you may want to change the name for each instance so + you can track log messages more easily. priority: level to log at. Currently ignored. facility: what syslog facility to used. Defaults to LOG_USER, only reset if you know what syslog is and have a good reason @@ -1013,9 +1013,9 @@ This is for configuring out-going email. We use PEAR's Mail module, see: http://pear.php.net/manual/en/package.mail.mail.factory.php backend: the backend to use for mail, one of 'mail', 'sendmail', and - 'smtp'. Defaults to PEAR's default, 'mail'. + 'smtp'. Defaults to PEAR's default, 'mail'. params: if the mail backend requires any parameters, you can provide - them in an associative array. + them in an associative array. nickname -------- @@ -1023,14 +1023,14 @@ nickname This is for configuring nicknames in the service. blacklist: an array of strings for usernames that may not be - registered. A default array exists for strings that are - used by StatusNet (e.g. 'doc', 'main', 'avatar', 'theme') - but you may want to add others if you have other software - installed in a subdirectory of StatusNet or if you just - don't want certain words used as usernames. + registered. A default array exists for strings that are + used by StatusNet (e.g. 'doc', 'main', 'avatar', 'theme') + but you may want to add others if you have other software + installed in a subdirectory of StatusNet or if you just + don't want certain words used as usernames. featured: an array of nicknames of 'featured' users of the site. - Can be useful to draw attention to well-known users, or - interesting people, or whatever. + Can be useful to draw attention to well-known users, or + interesting people, or whatever. avatar ------ @@ -1038,19 +1038,19 @@ avatar For configuring avatar access. dir: Directory to look for avatar files and to put them into. - Defaults to avatar subdirectory of install directory; if - you change it, make sure to change path, too. -path: Path to avatars. Defaults to path for avatar subdirectory, - but you can change it if you wish. Note that this will - be included with the avatar server, too. + Defaults to avatar subdirectory of install directory; if + you change it, make sure to change path, too. +path: Path to avatars. Defaults to path for avatar subdirectory, + but you can change it if you wish. Note that this will + be included with the avatar server, too. server: If set, defines another server where avatars are stored in the - root directory. Note that the 'avatar' subdir still has to be - writeable. You'd typically use this to split HTTP requests on - the client to speed up page loading, either with another - virtual server or with an NFS or SAMBA share. Clients - typically only make 2 connections to a single server at a - time , so this can parallelize the job. - Defaults to null. + root directory. Note that the 'avatar' subdir still has to be + writeable. You'd typically use this to split HTTP requests on + the client to speed up page loading, either with another + virtual server or with an NFS or SAMBA share. Clients + typically only make 2 connections to a single server at a + time , so this can parallelize the job. + Defaults to null. ssl: Whether to access avatars using HTTPS. Defaults to null, meaning to guess based on site-wide SSL settings. @@ -1060,11 +1060,11 @@ public For configuring the public stream. localonly: If set to true, only messages posted by users of this - service (rather than other services, filtered through OMB) - are shown in the public stream. Default true. + service (rather than other services, filtered through OMB) + are shown in the public stream. Default true. blacklist: An array of IDs of users to hide from the public stream. - Useful if you have someone making excessive Twitterfeed posts - to the site, other kinds of automated posts, testing bots, etc. + Useful if you have someone making excessive Twitterfeed posts + to the site, other kinds of automated posts, testing bots, etc. autosource: Sources of notices that are from automatic posters, and thus should be kept off the public timeline. Default empty. @@ -1072,29 +1072,29 @@ theme ----- server: Like avatars, you can speed up page loading by pointing the - theme file lookup to another server (virtual or real). - Defaults to NULL, meaning to use the site server. + theme file lookup to another server (virtual or real). + Defaults to NULL, meaning to use the site server. dir: Directory where theme files are stored. Used to determine - whether to show parts of a theme file. Defaults to the theme - subdirectory of the install directory. -path: Path part of theme URLs, before the theme name. Relative to the - theme server. It may make sense to change this path when upgrading, - (using version numbers as the path) to make sure that all files are - reloaded by caching clients or proxies. Defaults to null, - which means to use the site path + '/theme'. -ssl: Whether to use SSL for theme elements. Default is null, which means - guess based on site SSL settings. + whether to show parts of a theme file. Defaults to the theme + subdirectory of the install directory. +path: Path part of theme URLs, before the theme name. Relative to the + theme server. It may make sense to change this path when upgrading, + (using version numbers as the path) to make sure that all files are + reloaded by caching clients or proxies. Defaults to null, + which means to use the site path + '/theme'. +ssl: Whether to use SSL for theme elements. Default is null, which means + guess based on site SSL settings. javascript ---------- server: You can speed up page loading by pointing the - theme file lookup to another server (virtual or real). - Defaults to NULL, meaning to use the site server. -path: Path part of Javascript URLs. Defaults to null, - which means to use the site path + '/js/'. -ssl: Whether to use SSL for JavaScript files. Default is null, which means - guess based on site SSL settings. + theme file lookup to another server (virtual or real). + Defaults to NULL, meaning to use the site server. +path: Path part of Javascript URLs. Defaults to null, + which means to use the site path + '/js/'. +ssl: Whether to use SSL for JavaScript files. Default is null, which means + guess based on site SSL settings. xmpp ---- @@ -1108,23 +1108,23 @@ port: connection port for clients. Default 5222, which you probably user: username for the client connection. Users will receive messages from 'user'@'server'. resource: a unique identifier for the connection to the server. This - is actually used as a prefix for each XMPP component in the system. + is actually used as a prefix for each XMPP component in the system. password: password for the user account. host: some XMPP domains are served by machines with a different hostname. (For example, @gmail.com GTalk users connect to talk.google.com). Set this to the correct hostname if that's the case with your server. encryption: Whether to encrypt the connection between StatusNet and the - XMPP server. Defaults to true, but you can get - considerably better performance turning it off if you're - connecting to a server on the same machine or on a - protected network. + XMPP server. Defaults to true, but you can get + considerably better performance turning it off if you're + connecting to a server on the same machine or on a + protected network. debug: if turned on, this will make the XMPP library blurt out all of the incoming and outgoing messages as XML stanzas. Use as a last resort, and never turn it on if you don't have queues enabled, since it will spit out sensitive data to the browser. public: an array of JIDs to send _all_ notices to. This is useful for - participating in third-party search and archiving services. + participating in third-party search and archiving services. invite ------ @@ -1139,8 +1139,8 @@ tag Miscellaneous tagging stuff. dropoff: Decay factor for tag listing, in seconds. - Defaults to exponential decay over ten days; you can twiddle - with it to try and get better results for your site. + Defaults to exponential decay over ten days; you can twiddle + with it to try and get better results for your site. popular ------- @@ -1148,8 +1148,8 @@ popular Settings for the "popular" section of the site. dropoff: Decay factor for popularity listing, in seconds. - Defaults to exponential decay over ten days; you can twiddle - with it to try and get better results for your site. + Defaults to exponential decay over ten days; you can twiddle + with it to try and get better results for your site. daemon ------ @@ -1157,8 +1157,8 @@ daemon For daemon processes. piddir: directory that daemon processes should write their PID file - (process ID) to. Defaults to /var/run/, which is where this - stuff should usually go on Unix-ish systems. + (process ID) to. Defaults to /var/run/, which is where this + stuff should usually go on Unix-ish systems. user: If set, the daemons will try to change their effective user ID to this user before running. Probably a good idea, especially if you start the daemons as root. Note: user name, like 'daemon', @@ -1174,7 +1174,7 @@ database data in memcached . enabled: Set to true to enable. Default false. server: a string with the hostname of the memcached server. Can also - be an array of hostnames, if you've got more than one server. + be an array of hostnames, if you've got more than one server. base: memcached uses key-value pairs to store data. We build long, funny-looking keys to make sure we don't have any conflicts. The base of the key is usually a simplified version of the site name @@ -1212,7 +1212,7 @@ inboxes For notice inboxes. enabled: No longer used. If you set this to something other than true, - StatusNet will no longer run. + StatusNet will no longer run. throttle -------- @@ -1239,7 +1239,7 @@ newuser Options with new users. default: nickname of a user account to automatically subscribe new - users to. Typically this would be system account for e.g. + users to. Typically this would be system account for e.g. service updates or announcements. Users are able to unsub if they want. Default is null; no auto subscribe. welcome: nickname of a user account that sends welcome messages to new @@ -1292,9 +1292,9 @@ supported: an array of mime types you accept to store and distribute, support. uploads: false to disable uploading files with notices (true by default). filecommand: The required MIME_Type library may need to use the 'file' - command. It tries the one in the Web server's path, but if - you're having problems with uploads, try setting this to the - correct value. Note: 'file' must accept '-b' and '-i' options. + command. It tries the one in the Web server's path, but if + you're having problems with uploads, try setting this to the + correct value. Note: 'file' must accept '-b' and '-i' options. For quotas, be sure you've set the upload_max_filesize and post_max_size in php.ini to be large enough to handle your upload. In httpd.conf @@ -1359,9 +1359,9 @@ sessions Session handling. handle: boolean. Whether we should register our own PHP session-handling - code (using the database and memcache if enabled). Defaults to false. - Setting this to true makes some sense on large or multi-server - sites, but it probably won't hurt for smaller ones, either. + code (using the database and memcache if enabled). Defaults to false. + Setting this to true makes some sense on large or multi-server + sites, but it probably won't hurt for smaller ones, either. debug: whether to output debugging info for session storage. Can help with weird session bugs, sometimes. Default false. @@ -1428,14 +1428,14 @@ logincommand Configuration options for the login command. disabled: whether to enable this command. If enabled, users who send - the text 'login' to the site through any channel will - receive a link to login to the site automatically in return. - Possibly useful for users who primarily use an XMPP or SMS - interface and can't be bothered to remember their site - password. Note that the security implications of this are - pretty serious and have not been thoroughly tested. You - should enable it only after you've convinced yourself that - it is safe. Default is 'false'. + the text 'login' to the site through any channel will + receive a link to login to the site automatically in return. + Possibly useful for users who primarily use an XMPP or SMS + interface and can't be bothered to remember their site + password. Note that the security implications of this are + pretty serious and have not been thoroughly tested. You + should enable it only after you've convinced yourself that + it is safe. Default is 'false'. singleuser ---------- @@ -1550,7 +1550,7 @@ If you're adventurous or impatient, you may want to install the development version of StatusNet. To get it, use the git version control tool like so: - git clone git@gitorious.org:statusnet/mainline.git + git clone git@gitorious.org:statusnet/mainline.git This is the version of the software that runs on Identi.ca and the status.net hosted service. Using it is a mixed bag. On the positive From 89833ce1ff187e29de4250787c5dca4cf4f5ab6b Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Thu, 4 Mar 2010 11:00:02 -0800 Subject: [PATCH 322/362] Set up subscription to update@status.net for admin user on new installation, if OStatus is set up and working. (Will fail gracefully on a behind-the-firewall site.) --- install.php | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/install.php b/install.php index bb53e2b55b..8c9b6138b8 100644 --- a/install.php +++ b/install.php @@ -865,6 +865,19 @@ function registerInitialUser($nickname, $password, $email) $user->grantRole('owner'); $user->grantRole('moderator'); $user->grantRole('administrator'); + + // Attempt to do a remote subscribe to update@status.net + // Will fail if instance is on a private network. + + if (class_exists('Ostatus_profile')) { + try { + $oprofile = Ostatus_profile::ensureProfile('http://update.status.net/'); + Subscription::start($user->getProfile(), $oprofile->localProfile()); + updateStatus("Set up subscription to update@status.net."); + } catch (Exception $e) { + updateStatus("Could not set up subscription to update@status.net."); + } + } return true; } From 0bb06261d9dc204919574a90c5d864963849e5b3 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Thu, 4 Mar 2010 20:00:40 +0100 Subject: [PATCH 323/362] Localisation updates for !StatusNet from !translatewiki.net !sntrans Signed-off-by: Siebrand Mazeland --- locale/ar/LC_MESSAGES/statusnet.po | 659 ++++++++++++++------------ locale/arz/LC_MESSAGES/statusnet.po | 597 +++++++++++++---------- locale/bg/LC_MESSAGES/statusnet.po | 597 +++++++++++++---------- locale/ca/LC_MESSAGES/statusnet.po | 598 +++++++++++++---------- locale/cs/LC_MESSAGES/statusnet.po | 591 +++++++++++++---------- locale/de/LC_MESSAGES/statusnet.po | 597 +++++++++++++---------- locale/el/LC_MESSAGES/statusnet.po | 589 +++++++++++++---------- locale/en_GB/LC_MESSAGES/statusnet.po | 598 +++++++++++++---------- locale/es/LC_MESSAGES/statusnet.po | 598 +++++++++++++---------- locale/fa/LC_MESSAGES/statusnet.po | 596 +++++++++++++---------- locale/fi/LC_MESSAGES/statusnet.po | 598 +++++++++++++---------- locale/fr/LC_MESSAGES/statusnet.po | 638 ++++++++++++++----------- locale/ga/LC_MESSAGES/statusnet.po | 593 +++++++++++++---------- locale/he/LC_MESSAGES/statusnet.po | 593 +++++++++++++---------- locale/hsb/LC_MESSAGES/statusnet.po | 599 +++++++++++++---------- locale/ia/LC_MESSAGES/statusnet.po | 600 +++++++++++++---------- locale/is/LC_MESSAGES/statusnet.po | 593 +++++++++++++---------- locale/it/LC_MESSAGES/statusnet.po | 600 +++++++++++++---------- locale/ja/LC_MESSAGES/statusnet.po | 598 +++++++++++++---------- locale/ko/LC_MESSAGES/statusnet.po | 594 +++++++++++++---------- locale/mk/LC_MESSAGES/statusnet.po | 639 ++++++++++++++----------- locale/nb/LC_MESSAGES/statusnet.po | 594 +++++++++++++---------- locale/nl/LC_MESSAGES/statusnet.po | 639 ++++++++++++++----------- locale/nn/LC_MESSAGES/statusnet.po | 594 +++++++++++++---------- locale/pl/LC_MESSAGES/statusnet.po | 600 +++++++++++++---------- locale/pt/LC_MESSAGES/statusnet.po | 600 +++++++++++++---------- locale/pt_BR/LC_MESSAGES/statusnet.po | 600 +++++++++++++---------- locale/ru/LC_MESSAGES/statusnet.po | 630 +++++++++++++----------- locale/statusnet.po | 569 ++++++++++++---------- locale/sv/LC_MESSAGES/statusnet.po | 625 +++++++++++++----------- locale/te/LC_MESSAGES/statusnet.po | 596 +++++++++++++---------- locale/tr/LC_MESSAGES/statusnet.po | 591 +++++++++++++---------- locale/uk/LC_MESSAGES/statusnet.po | 627 +++++++++++++----------- locale/vi/LC_MESSAGES/statusnet.po | 592 +++++++++++++---------- locale/zh_CN/LC_MESSAGES/statusnet.po | 594 +++++++++++++---------- locale/zh_TW/LC_MESSAGES/statusnet.po | 589 +++++++++++++---------- 36 files changed, 12470 insertions(+), 9235 deletions(-) diff --git a/locale/ar/LC_MESSAGES/statusnet.po b/locale/ar/LC_MESSAGES/statusnet.po index 578f0d2509..3e2f7c7b47 100644 --- a/locale/ar/LC_MESSAGES/statusnet.po +++ b/locale/ar/LC_MESSAGES/statusnet.po @@ -9,12 +9,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-02 21:02+0000\n" -"PO-Revision-Date: 2010-03-02 21:02:06+0000\n" +"POT-Creation-Date: 2010-03-04 18:55+0000\n" +"PO-Revision-Date: 2010-03-04 18:55:52+0000\n" "Language-Team: Arabic\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: out-statusnet\n" @@ -22,7 +22,8 @@ msgstr "" "&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #. TRANS: Page title -#: actions/accessadminpanel.php:55 +#. TRANS: Menu item for site administration +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 msgid "Access" msgstr "نفاذ" @@ -43,7 +44,6 @@ msgstr "أأمنع المستخدمين المجهولين (غير الوالج #. TRANS: Checkbox label for prohibiting anonymous users from viewing site. #: actions/accessadminpanel.php:167 -#, fuzzy msgctxt "LABEL" msgid "Private" msgstr "خاص" @@ -74,10 +74,9 @@ msgid "Save access settings" msgstr "حفظ إعدادت الوصول" #: actions/accessadminpanel.php:203 -#, fuzzy msgctxt "BUTTON" msgid "Save" -msgstr "أرسل" +msgstr "احفظ" #. TRANS: Server error when page not found (404) #: actions/all.php:64 actions/public.php:98 actions/replies.php:93 @@ -119,7 +118,7 @@ msgstr "%1$s والأصدقاء, الصفحة %2$d" #. TRANS: Page title. %1$s is user nickname #. TRANS: H1 text. %1$s is user nickname -#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -174,7 +173,7 @@ msgid "" msgstr "" #. TRANS: H1 text -#: actions/all.php:174 +#: actions/all.php:178 msgid "You and friends" msgstr "أنت والأصدقاء" @@ -201,11 +200,11 @@ msgstr "" #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 -#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 +#: actions/apitimelinegroup.php:160 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:148 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 msgid "API method not found." msgstr "لم يتم العثور على وسيلة API." @@ -304,7 +303,7 @@ msgstr "رسالة مباشرة %s" #: actions/apidirectmessage.php:105 #, php-format msgid "All the direct messages sent to %s" -msgstr "" +msgstr "كل الرسائل المباشرة التي أرسلت إلى %s" #: actions/apidirectmessagenew.php:126 msgid "No message text!" @@ -560,7 +559,7 @@ msgid "" "give access to your %4$s account to third parties you trust." msgstr "" -#: actions/apioauthauthorize.php:310 +#: actions/apioauthauthorize.php:310 lib/action.php:438 msgid "Account" msgstr "الحساب" @@ -647,18 +646,6 @@ msgstr "" msgid "%1$s updates favorited by %2$s / %2$s." msgstr "" -#: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:138 actions/userrss.php:90 -#, php-format -msgid "%s timeline" -msgstr "مسار %s الزمني" - -#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 -#: actions/userrss.php:92 -#, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "" - #: actions/apitimelinementions.php:117 #, php-format msgid "%1$s / Updates mentioning %2$s" @@ -669,12 +656,12 @@ msgstr "" msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "" -#: actions/apitimelinepublic.php:111 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "مسار %s الزمني العام" -#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "" @@ -917,19 +904,17 @@ msgid "Conversation" msgstr "محادثة" #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:216 lib/searchgroupnav.php:82 +#: lib/profileaction.php:218 lib/searchgroupnav.php:82 msgid "Notices" msgstr "الإشعارات" #: actions/deleteapplication.php:63 -#, fuzzy msgid "You must be logged in to delete an application." -msgstr "يجب أن تكون مسجل الدخول لتعدل تطبيقا." +msgstr "يجب أن تسجل الدخول لتحذف تطبيقا." #: actions/deleteapplication.php:71 -#, fuzzy msgid "Application not found." -msgstr "لم يوجد رمز التأكيد." +msgstr "لم يوجد التطبيق." #: actions/deleteapplication.php:78 actions/editapplication.php:77 #: actions/showapplication.php:94 @@ -938,7 +923,7 @@ msgstr "أنت لست مالك هذا التطبيق." #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1228 +#: lib/action.php:1217 msgid "There was a problem with your session token." msgstr "" @@ -1125,8 +1110,9 @@ msgstr "ارجع إلى المبدئي" #: actions/designadminpanel.php:586 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 +#: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:208 #: actions/tagother.php:154 actions/useradminpanel.php:294 #: lib/applicationeditform.php:333 lib/applicationeditform.php:334 #: lib/designsettings.php:256 lib/groupeditform.php:202 @@ -1242,7 +1228,7 @@ msgstr "" msgid "Could not update group." msgstr "تعذر تحديث المجموعة." -#: actions/editgroup.php:264 classes/User_group.php:478 +#: actions/editgroup.php:264 classes/User_group.php:493 msgid "Could not create aliases." msgstr "تعذّر إنشاء الكنى." @@ -1362,7 +1348,7 @@ msgid "Cannot normalize that email address" msgstr "" #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:143 +#: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "ليس عنوان بريد صالح." @@ -1473,7 +1459,7 @@ msgstr "إشعارات %s المُفضلة" #: actions/favoritesrss.php:115 #, php-format msgid "Updates favored by %1$s on %2$s!" -msgstr "" +msgstr "الإشعارات التي فضلها %1$s في %2$s!" #: actions/featured.php:69 lib/featureduserssection.php:87 #: lib/publicgroupnav.php:89 @@ -1546,6 +1532,25 @@ msgstr "لا ملف كهذا." msgid "Cannot read file." msgstr "تعذّرت قراءة الملف." +#: actions/grantrole.php:62 actions/revokerole.php:62 +#, fuzzy +msgid "Invalid role." +msgstr "حجم غير صالح." + +#: actions/grantrole.php:66 actions/revokerole.php:66 +msgid "This role is reserved and cannot be set." +msgstr "" + +#: actions/grantrole.php:75 +#, fuzzy +msgid "You cannot grant user roles on this site." +msgstr "لا يمكنك إسكات المستخدمين على هذا الموقع." + +#: actions/grantrole.php:82 +#, fuzzy +msgid "User already has this role." +msgstr "المستخدم مسكت من قبل." + #: actions/groupblock.php:71 actions/groupunblock.php:71 #: actions/makeadmin.php:71 actions/subedit.php:46 #: lib/profileformaction.php:70 @@ -1624,7 +1629,7 @@ msgstr "تعذّر تحديث تصميمك." #: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231 msgid "Design preferences saved." -msgstr "" +msgstr "حُفظت تفضيلات التصميم." #: actions/grouplogo.php:142 actions/grouplogo.php:195 msgid "Group logo" @@ -1676,7 +1681,7 @@ msgstr "امنع" #: actions/groupmembers.php:450 msgid "Make user an admin of the group" -msgstr "" +msgstr "اجعل المستخدم إداريًا في المجموعة" #: actions/groupmembers.php:482 msgid "Make Admin" @@ -1686,12 +1691,18 @@ msgstr "" msgid "Make this user an admin" msgstr "اجعل هذا المستخدم إداريًا" +#: actions/grouprss.php:138 actions/userrss.php:90 +#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#, php-format +msgid "%s timeline" +msgstr "مسار %s الزمني" + #: actions/grouprss.php:140 #, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "" -#: actions/groups.php:62 lib/profileaction.php:210 lib/profileaction.php:230 +#: actions/groups.php:62 lib/profileaction.php:212 lib/profileaction.php:232 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" msgstr "مجموعات" @@ -1924,7 +1935,6 @@ msgstr "" #. TRANS: Send button for inviting friends #: actions/invite.php:198 -#, fuzzy msgctxt "BUTTON" msgid "Send" msgstr "أرسل" @@ -2246,8 +2256,8 @@ msgstr "نوع المحتوى " msgid "Only " msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 -#: lib/apiaction.php:1068 lib/apiaction.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1042 +#: lib/apiaction.php:1070 lib/apiaction.php:1179 msgid "Not a supported data format." msgstr "ليس نسق بيانات مدعوم." @@ -2386,7 +2396,8 @@ msgstr "تعذّر حفظ كلمة السر الجديدة." msgid "Password saved." msgstr "حُفظت كلمة السر." -#: actions/pathsadminpanel.php:59 +#. TRANS: Menu item for site administration +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 msgid "Paths" msgstr "المسارات" @@ -2506,7 +2517,7 @@ msgstr "دليل الخلفيات" msgid "SSL" msgstr "SSL" -#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 +#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202 msgid "Never" msgstr "مطلقا" @@ -2557,13 +2568,13 @@ msgstr "ليس وسم أشخاص صالح: %s" #: actions/peopletag.php:144 #, php-format msgid "Users self-tagged with %1$s - page %2$d" -msgstr "" +msgstr "المستخدمون الذين وسموا أنفسهم ب%1$s - الصفحة %2$d" -#: actions/postnotice.php:84 +#: actions/postnotice.php:95 msgid "Invalid notice content" msgstr "محتوى إشعار غير صالح" -#: actions/postnotice.php:90 +#: actions/postnotice.php:101 #, php-format msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" @@ -2640,7 +2651,7 @@ msgid "" msgstr "" "سِم نفسك (حروف وأرقام و \"-\" و \".\" و \"_\")، افصلها بفاصلة (',') أو مسافة." -#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 +#: actions/profilesettings.php:151 msgid "Language" msgstr "اللغة" @@ -2666,7 +2677,7 @@ msgstr "اشترك تلقائيًا بأي شخص يشترك بي (يفضل أن msgid "Bio is too long (max %d chars)." msgstr "" -#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:151 msgid "Timezone not selected." msgstr "لم تُختر المنطقة الزمنية." @@ -2970,7 +2981,7 @@ msgid "Same as password above. Required." msgstr "نفس كلمة السر أعلاه. مطلوب." #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 msgid "Email" msgstr "البريد الإلكتروني" @@ -3054,7 +3065,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:368 +#: lib/userprofile.php:394 msgid "Subscribe" msgstr "اشترك" @@ -3150,6 +3161,16 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "" +#: actions/revokerole.php:75 +#, fuzzy +msgid "You cannot revoke user roles on this site." +msgstr "لا يمكنك إسكات المستخدمين على هذا الموقع." + +#: actions/revokerole.php:82 +#, fuzzy +msgid "User doesn't have this role." +msgstr "المستخدم بدون ملف مطابق." + #: actions/rsd.php:146 actions/version.php:157 msgid "StatusNet" msgstr "ستاتس نت" @@ -3162,7 +3183,9 @@ msgstr "" msgid "User is already sandboxed." msgstr "" +#. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:390 msgid "Sessions" msgstr "الجلسات" @@ -3187,7 +3210,7 @@ msgstr "تنقيح الجلسة" msgid "Turn on debugging output for sessions." msgstr "مكّن تنقيح مُخرجات الجلسة." -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "اذف إعدادت الموقع" @@ -3218,8 +3241,8 @@ msgstr "المنظمة" msgid "Description" msgstr "الوصف" -#: actions/showapplication.php:192 actions/showgroup.php:437 -#: lib/profileaction.php:174 +#: actions/showapplication.php:192 actions/showgroup.php:438 +#: lib/profileaction.php:176 msgid "Statistics" msgstr "إحصاءات" @@ -3356,45 +3379,45 @@ msgstr "الكنى" msgid "Group actions" msgstr "" -#: actions/showgroup.php:336 +#: actions/showgroup.php:337 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "" -#: actions/showgroup.php:342 +#: actions/showgroup.php:343 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "" -#: actions/showgroup.php:348 +#: actions/showgroup.php:349 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "" -#: actions/showgroup.php:353 +#: actions/showgroup.php:354 #, php-format msgid "FOAF for %s group" msgstr "" -#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 +#: actions/showgroup.php:390 actions/showgroup.php:447 lib/groupnav.php:91 msgid "Members" msgstr "الأعضاء" -#: actions/showgroup.php:394 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 +#: actions/showgroup.php:395 lib/profileaction.php:117 +#: lib/profileaction.php:150 lib/profileaction.php:238 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(لا شيء)" -#: actions/showgroup.php:400 +#: actions/showgroup.php:401 msgid "All members" msgstr "جميع الأعضاء" -#: actions/showgroup.php:440 +#: actions/showgroup.php:441 msgid "Created" msgstr "أنشئ" -#: actions/showgroup.php:456 +#: actions/showgroup.php:457 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3404,7 +3427,7 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showgroup.php:462 +#: actions/showgroup.php:463 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3413,7 +3436,7 @@ msgid "" "their life and interests. " msgstr "" -#: actions/showgroup.php:490 +#: actions/showgroup.php:491 msgid "Admins" msgstr "الإداريون" @@ -3523,146 +3546,137 @@ msgid "User is already silenced." msgstr "المستخدم مسكت من قبل." #: actions/siteadminpanel.php:69 -msgid "Basic settings for this StatusNet site." +#, fuzzy +msgid "Basic settings for this StatusNet site" msgstr "الإعدادات الأساسية لموقع StatusNet هذا." -#: actions/siteadminpanel.php:132 +#: actions/siteadminpanel.php:133 msgid "Site name must have non-zero length." msgstr "يجب ألا يكون طول اسم الموقع صفرًا." -#: actions/siteadminpanel.php:140 +#: actions/siteadminpanel.php:141 msgid "You must have a valid contact email address." msgstr "يجب أن تملك عنوان بريد إلكتروني صحيح." -#: actions/siteadminpanel.php:158 +#: actions/siteadminpanel.php:159 #, php-format msgid "Unknown language \"%s\"." msgstr "لغة غير معروفة \"%s\"." #: actions/siteadminpanel.php:165 -msgid "Invalid snapshot report URL." -msgstr "" - -#: actions/siteadminpanel.php:171 -msgid "Invalid snapshot run value." -msgstr "" - -#: actions/siteadminpanel.php:177 -msgid "Snapshot frequency must be a number." -msgstr "" - -#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "حد النص الأدنى هو 140 حرفًا." -#: actions/siteadminpanel.php:189 +#: actions/siteadminpanel.php:171 msgid "Dupe limit must 1 or more seconds." msgstr "" -#: actions/siteadminpanel.php:239 +#: actions/siteadminpanel.php:221 msgid "General" msgstr "عام" -#: actions/siteadminpanel.php:242 +#: actions/siteadminpanel.php:224 msgid "Site name" msgstr "اسم الموقع" -#: actions/siteadminpanel.php:243 +#: actions/siteadminpanel.php:225 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "اسم موقعك، \"التدوين المصغر لشركتك\" مثلا" -#: actions/siteadminpanel.php:247 +#: actions/siteadminpanel.php:229 msgid "Brought by" msgstr "" -#: actions/siteadminpanel.php:248 +#: actions/siteadminpanel.php:230 msgid "Text used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:252 +#: actions/siteadminpanel.php:234 msgid "Brought by URL" msgstr "" -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:235 msgid "URL used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:239 msgid "Contact email address for your site" msgstr "عنوان البريد الإلكتروني للاتصال بموقعك" -#: actions/siteadminpanel.php:263 +#: actions/siteadminpanel.php:245 msgid "Local" msgstr "محلي" -#: actions/siteadminpanel.php:274 +#: actions/siteadminpanel.php:256 msgid "Default timezone" msgstr "المنطقة الزمنية المبدئية" -#: actions/siteadminpanel.php:275 +#: actions/siteadminpanel.php:257 msgid "Default timezone for the site; usually UTC." msgstr "المنطقة الزمنية المبدئية للموقع؛ ت‌ع‌م عادة." -#: actions/siteadminpanel.php:281 -msgid "Default site language" +#: actions/siteadminpanel.php:262 +#, fuzzy +msgid "Default language" msgstr "لغة الموقع المبدئية" -#: actions/siteadminpanel.php:289 -msgid "Snapshots" +#: actions/siteadminpanel.php:263 +msgid "Site language when autodetection from browser settings is not available" msgstr "" -#: actions/siteadminpanel.php:292 -msgid "Randomly during Web hit" -msgstr "" - -#: actions/siteadminpanel.php:293 -msgid "In a scheduled job" -msgstr "في مهمة مُجدولة" - -#: actions/siteadminpanel.php:295 -msgid "Data snapshots" -msgstr "" - -#: actions/siteadminpanel.php:296 -msgid "When to send statistical data to status.net servers" -msgstr "" - -#: actions/siteadminpanel.php:301 -msgid "Frequency" -msgstr "التكرار" - -#: actions/siteadminpanel.php:302 -msgid "Snapshots will be sent once every N web hits" -msgstr "" - -#: actions/siteadminpanel.php:307 -msgid "Report URL" -msgstr "بلّغ عن المسار" - -#: actions/siteadminpanel.php:308 -msgid "Snapshots will be sent to this URL" -msgstr "" - -#: actions/siteadminpanel.php:315 +#: actions/siteadminpanel.php:271 msgid "Limits" msgstr "الحدود" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Text limit" msgstr "حد النص" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Maximum number of characters for notices." msgstr "أقصى عدد للحروف في الإشعارات." -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "Dupe limit" msgstr "" -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" +#: actions/sitenoticeadminpanel.php:56 +#, fuzzy +msgid "Site Notice" +msgstr "إشعار الموقع" + +#: actions/sitenoticeadminpanel.php:67 +#, fuzzy +msgid "Edit site-wide message" +msgstr "رسالة جديدة" + +#: actions/sitenoticeadminpanel.php:103 +#, fuzzy +msgid "Unable to save site notice." +msgstr "مشكلة أثناء حفظ الإشعار." + +#: actions/sitenoticeadminpanel.php:113 +msgid "Max length for the site-wide notice is 255 chars" +msgstr "" + +#: actions/sitenoticeadminpanel.php:176 +#, fuzzy +msgid "Site notice text" +msgstr "إشعار الموقع" + +#: actions/sitenoticeadminpanel.php:178 +msgid "Site-wide notice text (255 chars max; HTML okay)" +msgstr "" + +#: actions/sitenoticeadminpanel.php:198 +#, fuzzy +msgid "Save site notice" +msgstr "إشعار الموقع" + #: actions/smssettings.php:58 msgid "SMS settings" msgstr "إعدادات الرسائل القصيرة" @@ -3755,6 +3769,66 @@ msgstr "" msgid "No code entered" msgstr "لم تدخل رمزًا" +#. TRANS: Menu item for site administration +#: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 +#: lib/adminpanelaction.php:406 +msgid "Snapshots" +msgstr "" + +#: actions/snapshotadminpanel.php:65 +#, fuzzy +msgid "Manage snapshot configuration" +msgstr "غيّر ضبط الموقع" + +#: actions/snapshotadminpanel.php:127 +msgid "Invalid snapshot run value." +msgstr "" + +#: actions/snapshotadminpanel.php:133 +msgid "Snapshot frequency must be a number." +msgstr "" + +#: actions/snapshotadminpanel.php:144 +msgid "Invalid snapshot report URL." +msgstr "" + +#: actions/snapshotadminpanel.php:200 +msgid "Randomly during Web hit" +msgstr "" + +#: actions/snapshotadminpanel.php:201 +msgid "In a scheduled job" +msgstr "في مهمة مُجدولة" + +#: actions/snapshotadminpanel.php:206 +msgid "Data snapshots" +msgstr "" + +#: actions/snapshotadminpanel.php:208 +msgid "When to send statistical data to status.net servers" +msgstr "" + +#: actions/snapshotadminpanel.php:217 +msgid "Frequency" +msgstr "التكرار" + +#: actions/snapshotadminpanel.php:218 +msgid "Snapshots will be sent once every N web hits" +msgstr "" + +#: actions/snapshotadminpanel.php:226 +msgid "Report URL" +msgstr "بلّغ عن المسار" + +#: actions/snapshotadminpanel.php:227 +msgid "Snapshots will be sent to this URL" +msgstr "" + +#: actions/snapshotadminpanel.php:248 +#, fuzzy +msgid "Save snapshot settings" +msgstr "اذف إعدادت الموقع" + #: actions/subedit.php:70 msgid "You are not subscribed to that profile." msgstr "" @@ -3948,7 +4022,7 @@ msgstr "" msgid "Unsubscribed" msgstr "" -#: actions/updateprofile.php:62 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -3956,7 +4030,6 @@ msgstr "" #. TRANS: User admin panel title #: actions/useradminpanel.php:59 -#, fuzzy msgctxt "TITLE" msgid "User" msgstr "المستخدم" @@ -4139,16 +4212,22 @@ msgstr "%1$s أعضاء المجموعة, الصفحة %2$d" msgid "Search for more groups" msgstr "ابحث عن المزيد من المجموعات" -#: actions/usergroups.php:153 +#: actions/usergroups.php:157 #, php-format msgid "%s is not a member of any group." msgstr "%s ليس عضوًا في أي مجموعة." -#: actions/usergroups.php:158 +#: actions/usergroups.php:162 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" +#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: lib/atomusernoticefeed.php:72 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "" + #: actions/version.php:73 #, php-format msgid "StatusNet %s" @@ -4194,7 +4273,7 @@ msgstr "" msgid "Plugins" msgstr "الملحقات" -#: actions/version.php:196 lib/action.php:778 +#: actions/version.php:196 lib/action.php:767 msgid "Version" msgstr "النسخة" @@ -4257,39 +4336,39 @@ msgstr "" msgid "DB error inserting hashtag: %s" msgstr "" -#: classes/Notice.php:239 +#: classes/Notice.php:241 msgid "Problem saving notice. Too long." msgstr "مشكلة في حفظ الإشعار. طويل جدًا." -#: classes/Notice.php:243 +#: classes/Notice.php:245 msgid "Problem saving notice. Unknown user." msgstr "مشكلة في حفظ الإشعار. مستخدم غير معروف." -#: classes/Notice.php:248 +#: classes/Notice.php:250 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: classes/Notice.php:254 +#: classes/Notice.php:256 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." msgstr "" -#: classes/Notice.php:260 +#: classes/Notice.php:262 msgid "You are banned from posting notices on this site." msgstr "" -#: classes/Notice.php:326 classes/Notice.php:352 +#: classes/Notice.php:328 classes/Notice.php:354 msgid "Problem saving notice." msgstr "مشكلة أثناء حفظ الإشعار." -#: classes/Notice.php:911 +#: classes/Notice.php:927 #, fuzzy msgid "Problem saving group inbox." msgstr "مشكلة أثناء حفظ الإشعار." -#: classes/Notice.php:1442 +#: classes/Notice.php:1459 #, php-format msgid "RT @%1$s %2$s" msgstr "آر تي @%1$s %2$s" @@ -4314,7 +4393,12 @@ msgstr "غير مشترك!" msgid "Couldn't delete self-subscription." msgstr "لم يمكن حذف اشتراك ذاتي." -#: classes/Subscription.php:179 lib/subs.php:69 +#: classes/Subscription.php:190 +#, fuzzy +msgid "Couldn't delete subscription OMB token." +msgstr "تعذّر حذف الاشتراك." + +#: classes/Subscription.php:201 lib/subs.php:69 msgid "Couldn't delete subscription." msgstr "تعذّر حذف الاشتراك." @@ -4323,20 +4407,20 @@ msgstr "تعذّر حذف الاشتراك." msgid "Welcome to %1$s, @%2$s!" msgstr "أهلا بكم في %1$s يا @%2$s!" -#: classes/User_group.php:462 +#: classes/User_group.php:477 msgid "Could not create group." msgstr "تعذّر إنشاء المجموعة." -#: classes/User_group.php:471 +#: classes/User_group.php:486 #, fuzzy msgid "Could not set group URI." msgstr "تعذّر ضبط عضوية المجموعة." -#: classes/User_group.php:492 +#: classes/User_group.php:507 msgid "Could not set group membership." msgstr "تعذّر ضبط عضوية المجموعة." -#: classes/User_group.php:506 +#: classes/User_group.php:521 #, fuzzy msgid "Could not save local group info." msgstr "تعذّر حفظ الاشتراك." @@ -4378,194 +4462,176 @@ msgstr "%1$s - %2$s" msgid "Untitled page" msgstr "صفحة غير مُعنونة" -#: lib/action.php:433 +#: lib/action.php:424 msgid "Primary site navigation" msgstr "" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:439 -#, fuzzy +#: lib/action.php:430 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "الملف الشخصي ومسار الأصدقاء الزمني" -#: lib/action.php:442 -#, fuzzy +#: lib/action.php:433 msgctxt "MENU" msgid "Personal" -msgstr "شخصية" +msgstr "الصفحة الشخصية" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:444 +#: lib/action.php:435 #, fuzzy msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "غير كلمة سرّك" -#: lib/action.php:447 -#, fuzzy -msgctxt "MENU" -msgid "Account" -msgstr "الحساب" - #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:450 +#: lib/action.php:440 #, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" msgstr "اتصالات" -#: lib/action.php:453 +#: lib/action.php:443 #, fuzzy -msgctxt "MENU" msgid "Connect" msgstr "اتصل" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:457 +#: lib/action.php:446 #, fuzzy msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "غيّر ضبط الموقع" -#: lib/action.php:460 -#, fuzzy +#: lib/action.php:449 msgctxt "MENU" msgid "Admin" msgstr "إداري" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:464 -#, fuzzy, php-format +#: lib/action.php:453 +#, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" -msgstr "استخدم هذا النموذج لدعوة أصدقائك وزملائك لاستخدام هذه الخدمة." +msgstr "ادعُ أصدقائك وزملائك للانضمام إليك في %s" -#: lib/action.php:467 -#, fuzzy +#: lib/action.php:456 msgctxt "MENU" msgid "Invite" msgstr "ادعُ" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:473 +#: lib/action.php:462 #, fuzzy msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "اخرج من الموقع" -#: lib/action.php:476 -#, fuzzy +#: lib/action.php:465 msgctxt "MENU" msgid "Logout" msgstr "اخرج" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:481 +#: lib/action.php:470 #, fuzzy msgctxt "TOOLTIP" msgid "Create an account" msgstr "أنشئ حسابًا" -#: lib/action.php:484 -#, fuzzy +#: lib/action.php:473 msgctxt "MENU" msgid "Register" msgstr "سجّل" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:487 -#, fuzzy +#: lib/action.php:476 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "لُج إلى الموقع" -#: lib/action.php:490 -#, fuzzy +#: lib/action.php:479 msgctxt "MENU" msgid "Login" msgstr "لُج" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:493 -#, fuzzy +#: lib/action.php:482 msgctxt "TOOLTIP" msgid "Help me!" msgstr "ساعدني!" -#: lib/action.php:496 -#, fuzzy +#: lib/action.php:485 msgctxt "MENU" msgid "Help" msgstr "مساعدة" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:499 -#, fuzzy +#: lib/action.php:488 msgctxt "TOOLTIP" msgid "Search for people or text" -msgstr "ابحث عن أشخاص أو نص" +msgstr "ابحث عن أشخاص أو نصوص" -#: lib/action.php:502 -#, fuzzy +#: lib/action.php:491 msgctxt "MENU" msgid "Search" msgstr "ابحث" #. TRANS: DT element for site notice. String is hidden in default CSS. -#: lib/action.php:524 +#. TRANS: Menu item for site administration +#: lib/action.php:513 lib/adminpanelaction.php:398 msgid "Site notice" msgstr "إشعار الموقع" -#: lib/action.php:590 +#: lib/action.php:579 msgid "Local views" msgstr "المشاهدات المحلية" -#: lib/action.php:656 +#: lib/action.php:645 msgid "Page notice" msgstr "إشعار الصفحة" -#: lib/action.php:758 +#: lib/action.php:747 msgid "Secondary site navigation" msgstr "" -#: lib/action.php:763 +#: lib/action.php:752 msgid "Help" msgstr "مساعدة" -#: lib/action.php:765 +#: lib/action.php:754 msgid "About" msgstr "عن" -#: lib/action.php:767 +#: lib/action.php:756 msgid "FAQ" msgstr "الأسئلة المكررة" -#: lib/action.php:771 +#: lib/action.php:760 msgid "TOS" msgstr "الشروط" -#: lib/action.php:774 +#: lib/action.php:763 msgid "Privacy" msgstr "خصوصية" -#: lib/action.php:776 +#: lib/action.php:765 msgid "Source" msgstr "المصدر" -#: lib/action.php:780 +#: lib/action.php:769 msgid "Contact" msgstr "اتصل" -#: lib/action.php:782 +#: lib/action.php:771 msgid "Badge" msgstr "الجسر" -#: lib/action.php:810 +#: lib/action.php:799 msgid "StatusNet software license" msgstr "رخصة برنامج StatusNet" -#: lib/action.php:813 +#: lib/action.php:802 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4574,12 +4640,12 @@ msgstr "" "**%%site.name%%** خدمة تدوين مصغر يقدمها لك [%%site.broughtby%%](%%site." "broughtbyurl%%). " -#: lib/action.php:815 +#: lib/action.php:804 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "" -#: lib/action.php:817 +#: lib/action.php:806 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4590,53 +4656,53 @@ msgstr "" "المتوفر تحت [رخصة غنو أفيرو العمومية](http://www.fsf.org/licensing/licenses/" "agpl-3.0.html)." -#: lib/action.php:832 +#: lib/action.php:821 msgid "Site content license" msgstr "رخصة محتوى الموقع" -#: lib/action.php:837 +#: lib/action.php:826 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:842 +#: lib/action.php:831 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:845 +#: lib/action.php:834 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" -#: lib/action.php:858 +#: lib/action.php:847 msgid "All " msgstr "" -#: lib/action.php:864 +#: lib/action.php:853 msgid "license." msgstr "الرخصة." -#: lib/action.php:1163 +#: lib/action.php:1152 msgid "Pagination" msgstr "" -#: lib/action.php:1172 +#: lib/action.php:1161 msgid "After" msgstr "بعد" -#: lib/action.php:1180 +#: lib/action.php:1169 msgid "Before" msgstr "قبل" -#: lib/activity.php:449 +#: lib/activity.php:453 msgid "Can't handle remote content yet." msgstr "" -#: lib/activity.php:477 +#: lib/activity.php:481 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activity.php:481 +#: lib/activity.php:485 msgid "Can't handle embedded Base64 content yet." msgstr "" @@ -4651,92 +4717,78 @@ msgid "Changes to that panel are not allowed." msgstr "التغييرات لهذه اللوحة غير مسموح بها." #. TRANS: Client error message -#: lib/adminpanelaction.php:211 +#: lib/adminpanelaction.php:229 msgid "showForm() not implemented." msgstr "" #. TRANS: Client error message -#: lib/adminpanelaction.php:241 +#: lib/adminpanelaction.php:259 msgid "saveSettings() not implemented." msgstr "" #. TRANS: Client error message -#: lib/adminpanelaction.php:265 +#: lib/adminpanelaction.php:283 msgid "Unable to delete design setting." msgstr "تعذّر حذف إعدادات التصميم." #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:330 +#: lib/adminpanelaction.php:348 msgid "Basic site configuration" msgstr "ضبط الموقع الأساسي" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:332 -#, fuzzy +#: lib/adminpanelaction.php:350 msgctxt "MENU" msgid "Site" msgstr "الموقع" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:338 +#: lib/adminpanelaction.php:356 msgid "Design configuration" msgstr "ضبط التصميم" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:340 -#, fuzzy +#: lib/adminpanelaction.php:358 msgctxt "MENU" msgid "Design" msgstr "التصميم" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:346 -#, fuzzy +#: lib/adminpanelaction.php:364 msgid "User configuration" -msgstr "ضبط المسارات" +msgstr "ضبط المستخدم" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:348 -#, fuzzy -msgctxt "MENU" +#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 msgid "User" msgstr "المستخدم" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:354 +#: lib/adminpanelaction.php:372 msgid "Access configuration" msgstr "ضبط الحساب" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:356 -#, fuzzy -msgctxt "MENU" -msgid "Access" -msgstr "نفاذ" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:362 +#: lib/adminpanelaction.php:380 msgid "Paths configuration" msgstr "ضبط المسارات" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:364 -#, fuzzy -msgctxt "MENU" -msgid "Paths" -msgstr "المسارات" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:370 +#: lib/adminpanelaction.php:388 msgid "Sessions configuration" msgstr "ضبط الجلسات" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:372 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:396 #, fuzzy -msgctxt "MENU" -msgid "Sessions" -msgstr "الجلسات" +msgid "Edit site notice" +msgstr "إشعار الموقع" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:404 +#, fuzzy +msgid "Snapshots configuration" +msgstr "ضبط المسارات" #: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." @@ -5233,6 +5285,11 @@ msgstr "" msgid "Go" msgstr "اذهب" +#: lib/grantroleform.php:91 +#, php-format +msgid "Grant this user the \"%s\" role" +msgstr "" + #: lib/groupeditform.php:163 msgid "URL of the homepage or blog of the group or topic" msgstr "" @@ -5362,11 +5419,11 @@ msgstr "غادر" #: lib/logingroupnav.php:80 msgid "Login with a username and password" -msgstr "" +msgstr "لُج باسم مستخدم وكلمة سر" #: lib/logingroupnav.php:86 msgid "Sign up for a new account" -msgstr "" +msgstr "سجّل حسابًا جديدًا" #: lib/mail.php:172 msgid "Email address confirmation" @@ -5427,7 +5484,7 @@ msgstr "السيرة: %s" #: lib/mail.php:286 #, php-format msgid "New email address for posting to %s" -msgstr "" +msgstr "عنوان بريد إلكتروني جديد للإرسال إلى %s" #: lib/mail.php:289 #, php-format @@ -5449,12 +5506,12 @@ msgstr "حالة %s" #: lib/mail.php:439 msgid "SMS confirmation" -msgstr "" +msgstr "تأكيد الرسالة القصيرة" #: lib/mail.php:463 #, php-format msgid "You've been nudged by %s" -msgstr "" +msgstr "لقد نبهك %s" #: lib/mail.php:467 #, php-format @@ -5499,7 +5556,7 @@ msgstr "" #: lib/mail.php:559 #, php-format msgid "%s (@%s) added your notice as a favorite" -msgstr "" +msgstr "لقد أضاف %s (@%s) إشعارك إلى مفضلاته" #: lib/mail.php:561 #, php-format @@ -5525,7 +5582,7 @@ msgstr "" #: lib/mail.php:624 #, php-format msgid "%s (@%s) sent a notice to your attention" -msgstr "" +msgstr "لقد أرسل %s (@%s) إشعارًا إليك" #: lib/mail.php:626 #, php-format @@ -5642,7 +5699,6 @@ msgid "Available characters" msgstr "المحارف المتوفرة" #: lib/messageform.php:178 lib/noticeform.php:236 -#, fuzzy msgctxt "Send button for sending notice" msgid "Send" msgstr "أرسل" @@ -5767,10 +5823,6 @@ msgstr "الردود" msgid "Favorites" msgstr "المفضلات" -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "المستخدم" - #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "صندوق الوارد" @@ -5796,7 +5848,7 @@ msgstr "وسوم في إشعارات %s" msgid "Unknown" msgstr "غير معروفة" -#: lib/profileaction.php:109 lib/profileaction.php:192 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:194 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "الاشتراكات" @@ -5804,23 +5856,23 @@ msgstr "الاشتراكات" msgid "All subscriptions" msgstr "جميع الاشتراكات" -#: lib/profileaction.php:140 lib/profileaction.php:201 lib/subgroupnav.php:90 +#: lib/profileaction.php:142 lib/profileaction.php:203 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "المشتركون" -#: lib/profileaction.php:157 +#: lib/profileaction.php:159 msgid "All subscribers" msgstr "جميع المشتركين" -#: lib/profileaction.php:178 +#: lib/profileaction.php:180 msgid "User ID" msgstr "هوية المستخدم" -#: lib/profileaction.php:183 +#: lib/profileaction.php:185 msgid "Member since" msgstr "عضو منذ" -#: lib/profileaction.php:245 +#: lib/profileaction.php:247 msgid "All groups" msgstr "كل المجموعات" @@ -5860,7 +5912,12 @@ msgstr "أأكرّر هذا الإشعار؟ّ" msgid "Repeat this notice" msgstr "كرّر هذا الإشعار" -#: lib/router.php:668 +#: lib/revokeroleform.php:91 +#, fuzzy, php-format +msgid "Revoke the \"%s\" role from this user" +msgstr "امنع هذا المستخدم من هذه المجموعة" + +#: lib/router.php:671 msgid "No single user defined for single-user mode." msgstr "" @@ -6014,47 +6071,63 @@ msgstr "رسالة" msgid "Moderate" msgstr "" -#: lib/util.php:1013 +#: lib/userprofile.php:352 +#, fuzzy +msgid "User role" +msgstr "ملف المستخدم الشخصي" + +#: lib/userprofile.php:354 +#, fuzzy +msgctxt "role" +msgid "Administrator" +msgstr "الإداريون" + +#: lib/userprofile.php:355 +msgctxt "role" +msgid "Moderator" +msgstr "" + +#: lib/util.php:1015 msgid "a few seconds ago" msgstr "قبل لحظات قليلة" -#: lib/util.php:1015 +#: lib/util.php:1017 msgid "about a minute ago" msgstr "قبل دقيقة تقريبًا" -#: lib/util.php:1017 +#: lib/util.php:1019 #, php-format msgid "about %d minutes ago" msgstr "" -#: lib/util.php:1019 +#: lib/util.php:1021 msgid "about an hour ago" msgstr "قبل ساعة تقريبًا" -#: lib/util.php:1021 +#: lib/util.php:1023 #, php-format msgid "about %d hours ago" msgstr "" -#: lib/util.php:1023 +#: lib/util.php:1025 msgid "about a day ago" msgstr "قبل يوم تقريبا" -#: lib/util.php:1025 +#: lib/util.php:1027 #, php-format msgid "about %d days ago" msgstr "" -#: lib/util.php:1027 +#: lib/util.php:1029 msgid "about a month ago" msgstr "قبل شهر تقريبًا" -#: lib/util.php:1029 +#: lib/util.php:1031 #, php-format msgid "about %d months ago" msgstr "" -#: lib/util.php:1031 +#: lib/util.php:1033 msgid "about a year ago" msgstr "قبل سنة تقريبًا" diff --git a/locale/arz/LC_MESSAGES/statusnet.po b/locale/arz/LC_MESSAGES/statusnet.po index 3ce1fbc4ef..dd00dbf7dc 100644 --- a/locale/arz/LC_MESSAGES/statusnet.po +++ b/locale/arz/LC_MESSAGES/statusnet.po @@ -10,12 +10,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-02 21:02+0000\n" -"PO-Revision-Date: 2010-03-02 21:02:09+0000\n" +"POT-Creation-Date: 2010-03-04 18:55+0000\n" +"PO-Revision-Date: 2010-03-04 18:55:56+0000\n" "Language-Team: Egyptian Spoken Arabic\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: arz\n" "X-Message-Group: out-statusnet\n" @@ -23,7 +23,8 @@ msgstr "" "&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #. TRANS: Page title -#: actions/accessadminpanel.php:55 +#. TRANS: Menu item for site administration +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 msgid "Access" msgstr "نفاذ" @@ -123,7 +124,7 @@ msgstr "%1$s و الصحاب, صفحه %2$d" #. TRANS: Page title. %1$s is user nickname #. TRANS: H1 text. %1$s is user nickname -#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -178,7 +179,7 @@ msgid "" msgstr "" #. TRANS: H1 text -#: actions/all.php:174 +#: actions/all.php:178 msgid "You and friends" msgstr "أنت والأصدقاء" @@ -205,11 +206,11 @@ msgstr "" #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 -#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 +#: actions/apitimelinegroup.php:160 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:148 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 msgid "API method not found." msgstr "الـ API method مش موجوده." @@ -564,7 +565,7 @@ msgid "" "give access to your %4$s account to third parties you trust." msgstr "" -#: actions/apioauthauthorize.php:310 +#: actions/apioauthauthorize.php:310 lib/action.php:438 msgid "Account" msgstr "الحساب" @@ -651,18 +652,6 @@ msgstr "" msgid "%1$s updates favorited by %2$s / %2$s." msgstr "" -#: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:138 actions/userrss.php:90 -#, php-format -msgid "%s timeline" -msgstr "مسار %s الزمني" - -#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 -#: actions/userrss.php:92 -#, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "" - #: actions/apitimelinementions.php:117 #, php-format msgid "%1$s / Updates mentioning %2$s" @@ -673,12 +662,12 @@ msgstr "" msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "" -#: actions/apitimelinepublic.php:111 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "مسار %s الزمنى العام" -#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "" @@ -921,7 +910,7 @@ msgid "Conversation" msgstr "محادثة" #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:216 lib/searchgroupnav.php:82 +#: lib/profileaction.php:218 lib/searchgroupnav.php:82 msgid "Notices" msgstr "الإشعارات" @@ -942,7 +931,7 @@ msgstr "انت مش بتملك الapplication دى." #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1228 +#: lib/action.php:1217 msgid "There was a problem with your session token." msgstr "" @@ -1132,8 +1121,9 @@ msgstr "ارجع إلى المبدئي" #: actions/designadminpanel.php:586 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 +#: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:208 #: actions/tagother.php:154 actions/useradminpanel.php:294 #: lib/applicationeditform.php:333 lib/applicationeditform.php:334 #: lib/designsettings.php:256 lib/groupeditform.php:202 @@ -1250,7 +1240,7 @@ msgstr "" msgid "Could not update group." msgstr "تعذر تحديث المجموعه." -#: actions/editgroup.php:264 classes/User_group.php:478 +#: actions/editgroup.php:264 classes/User_group.php:493 msgid "Could not create aliases." msgstr "تعذّر إنشاء الكنى." @@ -1370,7 +1360,7 @@ msgid "Cannot normalize that email address" msgstr "" #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:143 +#: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "ليس عنوان بريد صالح." @@ -1554,6 +1544,25 @@ msgstr "لا ملف كهذا." msgid "Cannot read file." msgstr "تعذّرت قراءه الملف." +#: actions/grantrole.php:62 actions/revokerole.php:62 +#, fuzzy +msgid "Invalid role." +msgstr "حجم غير صالح." + +#: actions/grantrole.php:66 actions/revokerole.php:66 +msgid "This role is reserved and cannot be set." +msgstr "" + +#: actions/grantrole.php:75 +#, fuzzy +msgid "You cannot grant user roles on this site." +msgstr "لا يمكنك إسكات المستخدمين على هذا الموقع." + +#: actions/grantrole.php:82 +#, fuzzy +msgid "User already has this role." +msgstr "المستخدم مسكت من قبل." + #: actions/groupblock.php:71 actions/groupunblock.php:71 #: actions/makeadmin.php:71 actions/subedit.php:46 #: lib/profileformaction.php:70 @@ -1694,12 +1703,18 @@ msgstr "" msgid "Make this user an admin" msgstr "اجعل هذا المستخدم إداريًا" +#: actions/grouprss.php:138 actions/userrss.php:90 +#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#, php-format +msgid "%s timeline" +msgstr "مسار %s الزمني" + #: actions/grouprss.php:140 #, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "" -#: actions/groups.php:62 lib/profileaction.php:210 lib/profileaction.php:230 +#: actions/groups.php:62 lib/profileaction.php:212 lib/profileaction.php:232 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" msgstr "مجموعات" @@ -2252,8 +2267,8 @@ msgstr "نوع المحتوى " msgid "Only " msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 -#: lib/apiaction.php:1068 lib/apiaction.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1042 +#: lib/apiaction.php:1070 lib/apiaction.php:1179 msgid "Not a supported data format." msgstr " مش نظام بيانات مدعوم." @@ -2392,7 +2407,8 @@ msgstr "تعذّر حفظ كلمه السر الجديده." msgid "Password saved." msgstr "حُفظت كلمه السر." -#: actions/pathsadminpanel.php:59 +#. TRANS: Menu item for site administration +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 msgid "Paths" msgstr "المسارات" @@ -2512,7 +2528,7 @@ msgstr "دليل الخلفيات" msgid "SSL" msgstr "SSL" -#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 +#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202 msgid "Never" msgstr "مطلقا" @@ -2565,11 +2581,11 @@ msgstr "ليس وسم أشخاص صالح: %s" msgid "Users self-tagged with %1$s - page %2$d" msgstr "" -#: actions/postnotice.php:84 +#: actions/postnotice.php:95 msgid "Invalid notice content" msgstr "محتوى إشعار غير صالح" -#: actions/postnotice.php:90 +#: actions/postnotice.php:101 #, php-format msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" @@ -2645,7 +2661,7 @@ msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" -#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 +#: actions/profilesettings.php:151 msgid "Language" msgstr "اللغة" @@ -2671,7 +2687,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "" -#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:151 msgid "Timezone not selected." msgstr "لم تُختر المنطقه الزمنيه." @@ -2975,7 +2991,7 @@ msgid "Same as password above. Required." msgstr "نفس كلمه السر أعلاه. مطلوب." #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 msgid "Email" msgstr "البريد الإلكتروني" @@ -3059,7 +3075,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:368 +#: lib/userprofile.php:394 msgid "Subscribe" msgstr "اشترك" @@ -3155,6 +3171,16 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "" +#: actions/revokerole.php:75 +#, fuzzy +msgid "You cannot revoke user roles on this site." +msgstr "لا يمكنك إسكات المستخدمين على هذا الموقع." + +#: actions/revokerole.php:82 +#, fuzzy +msgid "User doesn't have this role." +msgstr "يوزر من-غير پروفايل زيّه." + #: actions/rsd.php:146 actions/version.php:157 msgid "StatusNet" msgstr "StatusNet" @@ -3167,7 +3193,9 @@ msgstr "" msgid "User is already sandboxed." msgstr "" +#. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:390 msgid "Sessions" msgstr "الجلسات" @@ -3192,7 +3220,7 @@ msgstr "تنقيح الجلسة" msgid "Turn on debugging output for sessions." msgstr "مكّن تنقيح مُخرجات الجلسه." -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "اذف إعدادت الموقع" @@ -3223,8 +3251,8 @@ msgstr "المنظمه" msgid "Description" msgstr "الوصف" -#: actions/showapplication.php:192 actions/showgroup.php:437 -#: lib/profileaction.php:174 +#: actions/showapplication.php:192 actions/showgroup.php:438 +#: lib/profileaction.php:176 msgid "Statistics" msgstr "إحصاءات" @@ -3361,45 +3389,45 @@ msgstr "الكنى" msgid "Group actions" msgstr "" -#: actions/showgroup.php:336 +#: actions/showgroup.php:337 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "" -#: actions/showgroup.php:342 +#: actions/showgroup.php:343 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "" -#: actions/showgroup.php:348 +#: actions/showgroup.php:349 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "" -#: actions/showgroup.php:353 +#: actions/showgroup.php:354 #, php-format msgid "FOAF for %s group" msgstr "" -#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 +#: actions/showgroup.php:390 actions/showgroup.php:447 lib/groupnav.php:91 msgid "Members" msgstr "الأعضاء" -#: actions/showgroup.php:394 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 +#: actions/showgroup.php:395 lib/profileaction.php:117 +#: lib/profileaction.php:150 lib/profileaction.php:238 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(لا شيء)" -#: actions/showgroup.php:400 +#: actions/showgroup.php:401 msgid "All members" msgstr "جميع الأعضاء" -#: actions/showgroup.php:440 +#: actions/showgroup.php:441 msgid "Created" msgstr "أنشئ" -#: actions/showgroup.php:456 +#: actions/showgroup.php:457 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3409,7 +3437,7 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showgroup.php:462 +#: actions/showgroup.php:463 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3418,7 +3446,7 @@ msgid "" "their life and interests. " msgstr "" -#: actions/showgroup.php:490 +#: actions/showgroup.php:491 msgid "Admins" msgstr "الإداريون" @@ -3528,146 +3556,137 @@ msgid "User is already silenced." msgstr "المستخدم مسكت من قبل." #: actions/siteadminpanel.php:69 -msgid "Basic settings for this StatusNet site." +#, fuzzy +msgid "Basic settings for this StatusNet site" msgstr "الإعدادات الأساسيه لموقع StatusNet هذا." -#: actions/siteadminpanel.php:132 +#: actions/siteadminpanel.php:133 msgid "Site name must have non-zero length." msgstr "يجب ألا يكون طول اسم الموقع صفرًا." -#: actions/siteadminpanel.php:140 +#: actions/siteadminpanel.php:141 msgid "You must have a valid contact email address." msgstr "لازم يكون عندك عنوان ايميل صالح." -#: actions/siteadminpanel.php:158 +#: actions/siteadminpanel.php:159 #, php-format msgid "Unknown language \"%s\"." msgstr "لغه مش معروفه \"%s\"." #: actions/siteadminpanel.php:165 -msgid "Invalid snapshot report URL." -msgstr "" - -#: actions/siteadminpanel.php:171 -msgid "Invalid snapshot run value." -msgstr "" - -#: actions/siteadminpanel.php:177 -msgid "Snapshot frequency must be a number." -msgstr "" - -#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "حد النص الأدنى هو 140 حرفًا." -#: actions/siteadminpanel.php:189 +#: actions/siteadminpanel.php:171 msgid "Dupe limit must 1 or more seconds." msgstr "" -#: actions/siteadminpanel.php:239 +#: actions/siteadminpanel.php:221 msgid "General" msgstr "عام" -#: actions/siteadminpanel.php:242 +#: actions/siteadminpanel.php:224 msgid "Site name" msgstr "اسم الموقع" -#: actions/siteadminpanel.php:243 +#: actions/siteadminpanel.php:225 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "اسم موقعك، \"التدوين المصغر لشركتك\" مثلا" -#: actions/siteadminpanel.php:247 +#: actions/siteadminpanel.php:229 msgid "Brought by" msgstr "" -#: actions/siteadminpanel.php:248 +#: actions/siteadminpanel.php:230 msgid "Text used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:252 +#: actions/siteadminpanel.php:234 msgid "Brought by URL" msgstr "" -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:235 msgid "URL used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:239 msgid "Contact email address for your site" msgstr "عنوان البريد الإلكترونى للاتصال بموقعك" -#: actions/siteadminpanel.php:263 +#: actions/siteadminpanel.php:245 msgid "Local" msgstr "محلي" -#: actions/siteadminpanel.php:274 +#: actions/siteadminpanel.php:256 msgid "Default timezone" msgstr "المنطقه الزمنيه المبدئية" -#: actions/siteadminpanel.php:275 +#: actions/siteadminpanel.php:257 msgid "Default timezone for the site; usually UTC." msgstr "المنطقه الزمنيه المبدئيه للموقع؛ ت‌ع‌م عاده." -#: actions/siteadminpanel.php:281 -msgid "Default site language" +#: actions/siteadminpanel.php:262 +#, fuzzy +msgid "Default language" msgstr "لغه الموقع المبدئية" -#: actions/siteadminpanel.php:289 -msgid "Snapshots" +#: actions/siteadminpanel.php:263 +msgid "Site language when autodetection from browser settings is not available" msgstr "" -#: actions/siteadminpanel.php:292 -msgid "Randomly during Web hit" -msgstr "" - -#: actions/siteadminpanel.php:293 -msgid "In a scheduled job" -msgstr "فى مهمه مُجدولة" - -#: actions/siteadminpanel.php:295 -msgid "Data snapshots" -msgstr "" - -#: actions/siteadminpanel.php:296 -msgid "When to send statistical data to status.net servers" -msgstr "" - -#: actions/siteadminpanel.php:301 -msgid "Frequency" -msgstr "التكرار" - -#: actions/siteadminpanel.php:302 -msgid "Snapshots will be sent once every N web hits" -msgstr "" - -#: actions/siteadminpanel.php:307 -msgid "Report URL" -msgstr "بلّغ عن المسار" - -#: actions/siteadminpanel.php:308 -msgid "Snapshots will be sent to this URL" -msgstr "" - -#: actions/siteadminpanel.php:315 +#: actions/siteadminpanel.php:271 msgid "Limits" msgstr "الحدود" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Text limit" msgstr "حد النص" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Maximum number of characters for notices." msgstr "أقصى عدد للحروف فى الإشعارات." -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "Dupe limit" msgstr "" -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" +#: actions/sitenoticeadminpanel.php:56 +#, fuzzy +msgid "Site Notice" +msgstr "إشعار الموقع" + +#: actions/sitenoticeadminpanel.php:67 +#, fuzzy +msgid "Edit site-wide message" +msgstr "رساله جديدة" + +#: actions/sitenoticeadminpanel.php:103 +#, fuzzy +msgid "Unable to save site notice." +msgstr "مشكله أثناء حفظ الإشعار." + +#: actions/sitenoticeadminpanel.php:113 +msgid "Max length for the site-wide notice is 255 chars" +msgstr "" + +#: actions/sitenoticeadminpanel.php:176 +#, fuzzy +msgid "Site notice text" +msgstr "إشعار الموقع" + +#: actions/sitenoticeadminpanel.php:178 +msgid "Site-wide notice text (255 chars max; HTML okay)" +msgstr "" + +#: actions/sitenoticeadminpanel.php:198 +#, fuzzy +msgid "Save site notice" +msgstr "إشعار الموقع" + #: actions/smssettings.php:58 msgid "SMS settings" msgstr "تظبيطات الـSMS" @@ -3760,6 +3779,66 @@ msgstr "" msgid "No code entered" msgstr "" +#. TRANS: Menu item for site administration +#: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 +#: lib/adminpanelaction.php:406 +msgid "Snapshots" +msgstr "" + +#: actions/snapshotadminpanel.php:65 +#, fuzzy +msgid "Manage snapshot configuration" +msgstr "غيّر ضبط الموقع" + +#: actions/snapshotadminpanel.php:127 +msgid "Invalid snapshot run value." +msgstr "" + +#: actions/snapshotadminpanel.php:133 +msgid "Snapshot frequency must be a number." +msgstr "" + +#: actions/snapshotadminpanel.php:144 +msgid "Invalid snapshot report URL." +msgstr "" + +#: actions/snapshotadminpanel.php:200 +msgid "Randomly during Web hit" +msgstr "" + +#: actions/snapshotadminpanel.php:201 +msgid "In a scheduled job" +msgstr "فى مهمه مُجدولة" + +#: actions/snapshotadminpanel.php:206 +msgid "Data snapshots" +msgstr "" + +#: actions/snapshotadminpanel.php:208 +msgid "When to send statistical data to status.net servers" +msgstr "" + +#: actions/snapshotadminpanel.php:217 +msgid "Frequency" +msgstr "التكرار" + +#: actions/snapshotadminpanel.php:218 +msgid "Snapshots will be sent once every N web hits" +msgstr "" + +#: actions/snapshotadminpanel.php:226 +msgid "Report URL" +msgstr "بلّغ عن المسار" + +#: actions/snapshotadminpanel.php:227 +msgid "Snapshots will be sent to this URL" +msgstr "" + +#: actions/snapshotadminpanel.php:248 +#, fuzzy +msgid "Save snapshot settings" +msgstr "اذف إعدادت الموقع" + #: actions/subedit.php:70 msgid "You are not subscribed to that profile." msgstr "" @@ -3954,7 +4033,7 @@ msgstr "" msgid "Unsubscribed" msgstr "" -#: actions/updateprofile.php:62 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -4145,16 +4224,22 @@ msgstr "%1$s أعضاء المجموعة, الصفحه %2$d" msgid "Search for more groups" msgstr "" -#: actions/usergroups.php:153 +#: actions/usergroups.php:157 #, php-format msgid "%s is not a member of any group." msgstr "" -#: actions/usergroups.php:158 +#: actions/usergroups.php:162 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" +#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: lib/atomusernoticefeed.php:72 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "" + #: actions/version.php:73 #, php-format msgid "StatusNet %s" @@ -4198,7 +4283,7 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:196 lib/action.php:778 +#: actions/version.php:196 lib/action.php:767 msgid "Version" msgstr "النسخه" @@ -4262,39 +4347,39 @@ msgstr "" msgid "DB error inserting hashtag: %s" msgstr "" -#: classes/Notice.php:239 +#: classes/Notice.php:241 msgid "Problem saving notice. Too long." msgstr "مشكله فى حفظ الإشعار. طويل جدًا." -#: classes/Notice.php:243 +#: classes/Notice.php:245 msgid "Problem saving notice. Unknown user." msgstr "مشكله فى حفظ الإشعار. مستخدم غير معروف." -#: classes/Notice.php:248 +#: classes/Notice.php:250 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: classes/Notice.php:254 +#: classes/Notice.php:256 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." msgstr "" -#: classes/Notice.php:260 +#: classes/Notice.php:262 msgid "You are banned from posting notices on this site." msgstr "" -#: classes/Notice.php:326 classes/Notice.php:352 +#: classes/Notice.php:328 classes/Notice.php:354 msgid "Problem saving notice." msgstr "مشكله أثناء حفظ الإشعار." -#: classes/Notice.php:911 +#: classes/Notice.php:927 #, fuzzy msgid "Problem saving group inbox." msgstr "مشكله أثناء حفظ الإشعار." -#: classes/Notice.php:1442 +#: classes/Notice.php:1459 #, php-format msgid "RT @%1$s %2$s" msgstr "آر تى @%1$s %2$s" @@ -4319,7 +4404,12 @@ msgstr "غير مشترك!" msgid "Couldn't delete self-subscription." msgstr "ما نفعش يمسح الاشتراك الشخصى." -#: classes/Subscription.php:179 lib/subs.php:69 +#: classes/Subscription.php:190 +#, fuzzy +msgid "Couldn't delete subscription OMB token." +msgstr "تعذّر حذف الاشتراك." + +#: classes/Subscription.php:201 lib/subs.php:69 msgid "Couldn't delete subscription." msgstr "تعذّر حذف الاشتراك." @@ -4328,20 +4418,20 @@ msgstr "تعذّر حذف الاشتراك." msgid "Welcome to %1$s, @%2$s!" msgstr "أهلا بكم فى %1$s يا @%2$s!" -#: classes/User_group.php:462 +#: classes/User_group.php:477 msgid "Could not create group." msgstr "تعذّر إنشاء المجموعه." -#: classes/User_group.php:471 +#: classes/User_group.php:486 #, fuzzy msgid "Could not set group URI." msgstr "تعذّر ضبط عضويه المجموعه." -#: classes/User_group.php:492 +#: classes/User_group.php:507 msgid "Could not set group membership." msgstr "تعذّر ضبط عضويه المجموعه." -#: classes/User_group.php:506 +#: classes/User_group.php:521 #, fuzzy msgid "Could not save local group info." msgstr "تعذّر حفظ الاشتراك." @@ -4383,194 +4473,188 @@ msgstr "%1$s - %2$s" msgid "Untitled page" msgstr "صفحه غير مُعنونة" -#: lib/action.php:433 +#: lib/action.php:424 msgid "Primary site navigation" msgstr "" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:439 +#: lib/action.php:430 #, fuzzy msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "الملف الشخصى ومسار الأصدقاء الزمني" -#: lib/action.php:442 +#: lib/action.php:433 #, fuzzy msgctxt "MENU" msgid "Personal" msgstr "شخصية" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:444 +#: lib/action.php:435 #, fuzzy msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "غير كلمه سرّك" -#: lib/action.php:447 -#, fuzzy -msgctxt "MENU" -msgid "Account" -msgstr "الحساب" - #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:450 +#: lib/action.php:440 #, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" msgstr "كونيكشونات (Connections)" -#: lib/action.php:453 +#: lib/action.php:443 #, fuzzy -msgctxt "MENU" msgid "Connect" msgstr "اتصل" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:457 +#: lib/action.php:446 #, fuzzy msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "غيّر ضبط الموقع" -#: lib/action.php:460 +#: lib/action.php:449 #, fuzzy msgctxt "MENU" msgid "Admin" msgstr "إداري" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:464 +#: lib/action.php:453 #, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "" -#: lib/action.php:467 +#: lib/action.php:456 #, fuzzy msgctxt "MENU" msgid "Invite" msgstr "ادعُ" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:473 +#: lib/action.php:462 #, fuzzy msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "اخرج من الموقع" -#: lib/action.php:476 +#: lib/action.php:465 #, fuzzy msgctxt "MENU" msgid "Logout" msgstr "اخرج" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:481 +#: lib/action.php:470 #, fuzzy msgctxt "TOOLTIP" msgid "Create an account" msgstr "أنشئ حسابًا" -#: lib/action.php:484 +#: lib/action.php:473 #, fuzzy msgctxt "MENU" msgid "Register" msgstr "سجّل" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:487 +#: lib/action.php:476 #, fuzzy msgctxt "TOOLTIP" msgid "Login to the site" msgstr "لُج إلى الموقع" -#: lib/action.php:490 +#: lib/action.php:479 #, fuzzy msgctxt "MENU" msgid "Login" msgstr "لُج" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:493 +#: lib/action.php:482 #, fuzzy msgctxt "TOOLTIP" msgid "Help me!" msgstr "ساعدني!" -#: lib/action.php:496 +#: lib/action.php:485 #, fuzzy msgctxt "MENU" msgid "Help" msgstr "مساعدة" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:499 +#: lib/action.php:488 #, fuzzy msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "ابحث عن أشخاص أو نص" -#: lib/action.php:502 +#: lib/action.php:491 #, fuzzy msgctxt "MENU" msgid "Search" msgstr "ابحث" #. TRANS: DT element for site notice. String is hidden in default CSS. -#: lib/action.php:524 +#. TRANS: Menu item for site administration +#: lib/action.php:513 lib/adminpanelaction.php:398 msgid "Site notice" msgstr "إشعار الموقع" -#: lib/action.php:590 +#: lib/action.php:579 msgid "Local views" msgstr "المشاهدات المحلية" -#: lib/action.php:656 +#: lib/action.php:645 msgid "Page notice" msgstr "إشعار الصفحة" -#: lib/action.php:758 +#: lib/action.php:747 msgid "Secondary site navigation" msgstr "" -#: lib/action.php:763 +#: lib/action.php:752 msgid "Help" msgstr "مساعدة" -#: lib/action.php:765 +#: lib/action.php:754 msgid "About" msgstr "عن" -#: lib/action.php:767 +#: lib/action.php:756 msgid "FAQ" msgstr "الأسئله المكررة" -#: lib/action.php:771 +#: lib/action.php:760 msgid "TOS" msgstr "الشروط" -#: lib/action.php:774 +#: lib/action.php:763 msgid "Privacy" msgstr "خصوصية" -#: lib/action.php:776 +#: lib/action.php:765 msgid "Source" msgstr "المصدر" -#: lib/action.php:780 +#: lib/action.php:769 msgid "Contact" msgstr "اتصل" -#: lib/action.php:782 +#: lib/action.php:771 msgid "Badge" msgstr "" -#: lib/action.php:810 +#: lib/action.php:799 msgid "StatusNet software license" msgstr "" -#: lib/action.php:813 +#: lib/action.php:802 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4579,12 +4663,12 @@ msgstr "" "**%%site.name%%** خدمه تدوين مصغر يقدمها لك [%%site.broughtby%%](%%site." "broughtbyurl%%). " -#: lib/action.php:815 +#: lib/action.php:804 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "" -#: lib/action.php:817 +#: lib/action.php:806 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4595,53 +4679,53 @@ msgstr "" "المتوفر تحت [رخصه غنو أفيرو العمومية](http://www.fsf.org/licensing/licenses/" "agpl-3.0.html)." -#: lib/action.php:832 +#: lib/action.php:821 msgid "Site content license" msgstr "رخصه محتوى الموقع" -#: lib/action.php:837 +#: lib/action.php:826 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:842 +#: lib/action.php:831 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:845 +#: lib/action.php:834 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" -#: lib/action.php:858 +#: lib/action.php:847 msgid "All " msgstr "" -#: lib/action.php:864 +#: lib/action.php:853 msgid "license." msgstr "الرخصه." -#: lib/action.php:1163 +#: lib/action.php:1152 msgid "Pagination" msgstr "" -#: lib/action.php:1172 +#: lib/action.php:1161 msgid "After" msgstr "بعد" -#: lib/action.php:1180 +#: lib/action.php:1169 msgid "Before" msgstr "قبل" -#: lib/activity.php:449 +#: lib/activity.php:453 msgid "Can't handle remote content yet." msgstr "" -#: lib/activity.php:477 +#: lib/activity.php:481 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activity.php:481 +#: lib/activity.php:485 msgid "Can't handle embedded Base64 content yet." msgstr "" @@ -4656,94 +4740,83 @@ msgid "Changes to that panel are not allowed." msgstr "التغييرات مش مسموحه للـ لوحه دى." #. TRANS: Client error message -#: lib/adminpanelaction.php:211 +#: lib/adminpanelaction.php:229 msgid "showForm() not implemented." msgstr "" #. TRANS: Client error message -#: lib/adminpanelaction.php:241 +#: lib/adminpanelaction.php:259 msgid "saveSettings() not implemented." msgstr "" #. TRANS: Client error message -#: lib/adminpanelaction.php:265 +#: lib/adminpanelaction.php:283 msgid "Unable to delete design setting." msgstr "تعذّر حذف إعدادات التصميم." #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:330 +#: lib/adminpanelaction.php:348 msgid "Basic site configuration" msgstr "ضبط الموقع الأساسي" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:332 +#: lib/adminpanelaction.php:350 #, fuzzy msgctxt "MENU" msgid "Site" msgstr "الموقع" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:338 +#: lib/adminpanelaction.php:356 msgid "Design configuration" msgstr "ضبط التصميم" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:340 +#: lib/adminpanelaction.php:358 #, fuzzy msgctxt "MENU" msgid "Design" msgstr "التصميم" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:346 +#: lib/adminpanelaction.php:364 #, fuzzy msgid "User configuration" msgstr "ضبط المسارات" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:348 -#, fuzzy -msgctxt "MENU" +#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 msgid "User" msgstr "المستخدم" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:354 +#: lib/adminpanelaction.php:372 #, fuzzy msgid "Access configuration" msgstr "ضبط التصميم" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:356 -#, fuzzy -msgctxt "MENU" -msgid "Access" -msgstr "نفاذ" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:362 +#: lib/adminpanelaction.php:380 msgid "Paths configuration" msgstr "ضبط المسارات" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:364 -#, fuzzy -msgctxt "MENU" -msgid "Paths" -msgstr "المسارات" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:370 +#: lib/adminpanelaction.php:388 #, fuzzy msgid "Sessions configuration" msgstr "ضبط التصميم" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:372 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:396 #, fuzzy -msgctxt "MENU" -msgid "Sessions" -msgstr "الجلسات" +msgid "Edit site notice" +msgstr "إشعار الموقع" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:404 +#, fuzzy +msgid "Snapshots configuration" +msgstr "ضبط المسارات" #: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." @@ -5240,6 +5313,11 @@ msgstr "" msgid "Go" msgstr "اذهب" +#: lib/grantroleform.php:91 +#, php-format +msgid "Grant this user the \"%s\" role" +msgstr "" + #: lib/groupeditform.php:163 msgid "URL of the homepage or blog of the group or topic" msgstr "" @@ -5764,10 +5842,6 @@ msgstr "الردود" msgid "Favorites" msgstr "المفضلات" -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "المستخدم" - #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "صندوق الوارد" @@ -5793,7 +5867,7 @@ msgstr "" msgid "Unknown" msgstr "مش معروف" -#: lib/profileaction.php:109 lib/profileaction.php:192 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:194 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "الاشتراكات" @@ -5801,23 +5875,23 @@ msgstr "الاشتراكات" msgid "All subscriptions" msgstr "جميع الاشتراكات" -#: lib/profileaction.php:140 lib/profileaction.php:201 lib/subgroupnav.php:90 +#: lib/profileaction.php:142 lib/profileaction.php:203 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "المشتركون" -#: lib/profileaction.php:157 +#: lib/profileaction.php:159 msgid "All subscribers" msgstr "جميع المشتركين" -#: lib/profileaction.php:178 +#: lib/profileaction.php:180 msgid "User ID" msgstr "هويه المستخدم" -#: lib/profileaction.php:183 +#: lib/profileaction.php:185 msgid "Member since" msgstr "عضو منذ" -#: lib/profileaction.php:245 +#: lib/profileaction.php:247 msgid "All groups" msgstr "كل المجموعات" @@ -5857,7 +5931,12 @@ msgstr "كرر هذا الإشعار؟" msgid "Repeat this notice" msgstr "كرر هذا الإشعار" -#: lib/router.php:668 +#: lib/revokeroleform.php:91 +#, fuzzy, php-format +msgid "Revoke the \"%s\" role from this user" +msgstr "امنع هذا المستخدم من هذه المجموعة" + +#: lib/router.php:671 msgid "No single user defined for single-user mode." msgstr "" @@ -6011,47 +6090,63 @@ msgstr "رسالة" msgid "Moderate" msgstr "" -#: lib/util.php:1013 +#: lib/userprofile.php:352 +#, fuzzy +msgid "User role" +msgstr "ملف المستخدم الشخصي" + +#: lib/userprofile.php:354 +#, fuzzy +msgctxt "role" +msgid "Administrator" +msgstr "الإداريون" + +#: lib/userprofile.php:355 +msgctxt "role" +msgid "Moderator" +msgstr "" + +#: lib/util.php:1015 msgid "a few seconds ago" msgstr "قبل لحظات قليلة" -#: lib/util.php:1015 +#: lib/util.php:1017 msgid "about a minute ago" msgstr "قبل دقيقه تقريبًا" -#: lib/util.php:1017 +#: lib/util.php:1019 #, php-format msgid "about %d minutes ago" msgstr "" -#: lib/util.php:1019 +#: lib/util.php:1021 msgid "about an hour ago" msgstr "قبل ساعه تقريبًا" -#: lib/util.php:1021 +#: lib/util.php:1023 #, php-format msgid "about %d hours ago" msgstr "" -#: lib/util.php:1023 +#: lib/util.php:1025 msgid "about a day ago" msgstr "قبل يوم تقريبا" -#: lib/util.php:1025 +#: lib/util.php:1027 #, php-format msgid "about %d days ago" msgstr "" -#: lib/util.php:1027 +#: lib/util.php:1029 msgid "about a month ago" msgstr "قبل شهر تقريبًا" -#: lib/util.php:1029 +#: lib/util.php:1031 #, php-format msgid "about %d months ago" msgstr "" -#: lib/util.php:1031 +#: lib/util.php:1033 msgid "about a year ago" msgstr "قبل سنه تقريبًا" diff --git a/locale/bg/LC_MESSAGES/statusnet.po b/locale/bg/LC_MESSAGES/statusnet.po index abf1998d84..e24c60c5ae 100644 --- a/locale/bg/LC_MESSAGES/statusnet.po +++ b/locale/bg/LC_MESSAGES/statusnet.po @@ -9,19 +9,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-02 21:02+0000\n" -"PO-Revision-Date: 2010-03-02 21:02:12+0000\n" +"POT-Creation-Date: 2010-03-04 18:55+0000\n" +"PO-Revision-Date: 2010-03-04 18:55:59+0000\n" "Language-Team: Bulgarian\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: bg\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. TRANS: Page title -#: actions/accessadminpanel.php:55 +#. TRANS: Menu item for site administration +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 msgid "Access" msgstr "Достъп" @@ -118,7 +119,7 @@ msgstr "%1$s и приятели, страница %2$d" #. TRANS: Page title. %1$s is user nickname #. TRANS: H1 text. %1$s is user nickname -#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -173,7 +174,7 @@ msgid "" msgstr "" #. TRANS: H1 text -#: actions/all.php:174 +#: actions/all.php:178 msgid "You and friends" msgstr "Вие и приятелите" @@ -200,11 +201,11 @@ msgstr "Бележки от %1$s и приятели в %2$s." #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 -#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 +#: actions/apitimelinegroup.php:160 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:148 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 msgid "API method not found." msgstr "Не е открит методът в API." @@ -570,7 +571,7 @@ msgid "" "give access to your %4$s account to third parties you trust." msgstr "" -#: actions/apioauthauthorize.php:310 +#: actions/apioauthauthorize.php:310 lib/action.php:438 msgid "Account" msgstr "Сметка" @@ -658,18 +659,6 @@ msgstr "%s / Отбелязани като любими от %s" msgid "%1$s updates favorited by %2$s / %2$s." msgstr "%s бележки отбелязани като любими от %s / %s." -#: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:138 actions/userrss.php:90 -#, php-format -msgid "%s timeline" -msgstr "Поток на %s" - -#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 -#: actions/userrss.php:92 -#, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "Бележки от %1$s в %2$s." - #: actions/apitimelinementions.php:117 #, fuzzy, php-format msgid "%1$s / Updates mentioning %2$s" @@ -680,12 +669,12 @@ msgstr "%1$s / Реплики на %2$s" msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "%1$s реплики на съобщения от %2$s / %3$s." -#: actions/apitimelinepublic.php:111 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "Общ поток на %s" -#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "" @@ -932,7 +921,7 @@ msgid "Conversation" msgstr "Разговор" #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:216 lib/searchgroupnav.php:82 +#: lib/profileaction.php:218 lib/searchgroupnav.php:82 msgid "Notices" msgstr "Бележки" @@ -954,7 +943,7 @@ msgstr "Не членувате в тази група." #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1228 +#: lib/action.php:1217 msgid "There was a problem with your session token." msgstr "Имаше проблем със сесията ви в сайта." @@ -1149,8 +1138,9 @@ msgstr "" #: actions/designadminpanel.php:586 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 +#: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:208 #: actions/tagother.php:154 actions/useradminpanel.php:294 #: lib/applicationeditform.php:333 lib/applicationeditform.php:334 #: lib/designsettings.php:256 lib/groupeditform.php:202 @@ -1278,7 +1268,7 @@ msgstr "Описанието е твърде дълго (до %d символа) msgid "Could not update group." msgstr "Грешка при обновяване на групата." -#: actions/editgroup.php:264 classes/User_group.php:478 +#: actions/editgroup.php:264 classes/User_group.php:493 #, fuzzy msgid "Could not create aliases." msgstr "Грешка при отбелязване като любима." @@ -1402,7 +1392,7 @@ msgid "Cannot normalize that email address" msgstr "Грешка при нормализиране адреса на е-пощата" #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:143 +#: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Неправилен адрес на е-поща." @@ -1595,6 +1585,25 @@ msgstr "Няма такъв файл." msgid "Cannot read file." msgstr "Грешка при четене на файла." +#: actions/grantrole.php:62 actions/revokerole.php:62 +#, fuzzy +msgid "Invalid role." +msgstr "Неправилен размер." + +#: actions/grantrole.php:66 actions/revokerole.php:66 +msgid "This role is reserved and cannot be set." +msgstr "" + +#: actions/grantrole.php:75 +#, fuzzy +msgid "You cannot grant user roles on this site." +msgstr "Не може да изпращате съобщения до този потребител." + +#: actions/grantrole.php:82 +#, fuzzy +msgid "User already has this role." +msgstr "Потребителят вече е заглушен." + #: actions/groupblock.php:71 actions/groupunblock.php:71 #: actions/makeadmin.php:71 actions/subedit.php:46 #: lib/profileformaction.php:70 @@ -1744,12 +1753,18 @@ msgstr "" msgid "Make this user an admin" msgstr "" +#: actions/grouprss.php:138 actions/userrss.php:90 +#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#, php-format +msgid "%s timeline" +msgstr "Поток на %s" + #: actions/grouprss.php:140 #, fuzzy, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Бележки от %1$s в %2$s." -#: actions/groups.php:62 lib/profileaction.php:210 lib/profileaction.php:230 +#: actions/groups.php:62 lib/profileaction.php:212 lib/profileaction.php:232 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" msgstr "Групи" @@ -2362,8 +2377,8 @@ msgstr "вид съдържание " msgid "Only " msgstr "Само " -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 -#: lib/apiaction.php:1068 lib/apiaction.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1042 +#: lib/apiaction.php:1070 lib/apiaction.php:1179 msgid "Not a supported data format." msgstr "Неподдържан формат на данните" @@ -2509,7 +2524,8 @@ msgstr "Грешка при запазване на новата парола." msgid "Password saved." msgstr "Паролата е записана." -#: actions/pathsadminpanel.php:59 +#. TRANS: Menu item for site administration +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 msgid "Paths" msgstr "Пътища" @@ -2629,7 +2645,7 @@ msgstr "Директория на фона" msgid "SSL" msgstr "SSL" -#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 +#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202 msgid "Never" msgstr "Никога" @@ -2684,11 +2700,11 @@ msgstr "Това не е правилен адрес на е-поща." msgid "Users self-tagged with %1$s - page %2$d" msgstr "Бележки с етикет %s, страница %d" -#: actions/postnotice.php:84 +#: actions/postnotice.php:95 msgid "Invalid notice content" msgstr "Невалидно съдържание на бележка" -#: actions/postnotice.php:90 +#: actions/postnotice.php:101 #, php-format msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" @@ -2764,7 +2780,7 @@ msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" -#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 +#: actions/profilesettings.php:151 msgid "Language" msgstr "Език" @@ -2792,7 +2808,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "Биографията е твърде дълга (до %d символа)." -#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:151 msgid "Timezone not selected." msgstr "Не е избран часови пояс" @@ -3097,7 +3113,7 @@ msgid "Same as password above. Required." msgstr "Същото като паролата по-горе. Задължително поле." #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 msgid "Email" msgstr "Е-поща" @@ -3202,7 +3218,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "Адрес на профила ви в друга, съвместима услуга за микроблогване" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:368 +#: lib/userprofile.php:394 msgid "Subscribe" msgstr "Абониране" @@ -3300,6 +3316,16 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "Отговори до %1$s в %2$s!" +#: actions/revokerole.php:75 +#, fuzzy +msgid "You cannot revoke user roles on this site." +msgstr "Не можете да заглушавате потребители на този сайт." + +#: actions/revokerole.php:82 +#, fuzzy +msgid "User doesn't have this role." +msgstr "Потребител без съответстващ профил" + #: actions/rsd.php:146 actions/version.php:157 msgid "StatusNet" msgstr "StatusNet" @@ -3314,7 +3340,9 @@ msgstr "Не може да изпращате съобщения до този msgid "User is already sandboxed." msgstr "Потребителят ви е блокирал." +#. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:390 msgid "Sessions" msgstr "Сесии" @@ -3339,7 +3367,7 @@ msgstr "" msgid "Turn on debugging output for sessions." msgstr "" -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "Запазване настройките на сайта" @@ -3372,8 +3400,8 @@ msgstr "Организация" msgid "Description" msgstr "Описание" -#: actions/showapplication.php:192 actions/showgroup.php:437 -#: lib/profileaction.php:174 +#: actions/showapplication.php:192 actions/showgroup.php:438 +#: lib/profileaction.php:176 msgid "Statistics" msgstr "Статистики" @@ -3507,45 +3535,45 @@ msgstr "Псевдоними" msgid "Group actions" msgstr "" -#: actions/showgroup.php:336 +#: actions/showgroup.php:337 #, fuzzy, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Емисия с бележки на %s" -#: actions/showgroup.php:342 +#: actions/showgroup.php:343 #, fuzzy, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Емисия с бележки на %s" -#: actions/showgroup.php:348 +#: actions/showgroup.php:349 #, fuzzy, php-format msgid "Notice feed for %s group (Atom)" msgstr "Емисия с бележки на %s" -#: actions/showgroup.php:353 +#: actions/showgroup.php:354 #, php-format msgid "FOAF for %s group" msgstr "Изходяща кутия за %s" -#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 +#: actions/showgroup.php:390 actions/showgroup.php:447 lib/groupnav.php:91 msgid "Members" msgstr "Членове" -#: actions/showgroup.php:394 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 +#: actions/showgroup.php:395 lib/profileaction.php:117 +#: lib/profileaction.php:150 lib/profileaction.php:238 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "" -#: actions/showgroup.php:400 +#: actions/showgroup.php:401 msgid "All members" msgstr "Всички членове" -#: actions/showgroup.php:440 +#: actions/showgroup.php:441 msgid "Created" msgstr "Създадена на" -#: actions/showgroup.php:456 +#: actions/showgroup.php:457 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3555,7 +3583,7 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showgroup.php:462 +#: actions/showgroup.php:463 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3564,7 +3592,7 @@ msgid "" "their life and interests. " msgstr "" -#: actions/showgroup.php:490 +#: actions/showgroup.php:491 msgid "Admins" msgstr "Администратори" @@ -3674,148 +3702,139 @@ msgid "User is already silenced." msgstr "Потребителят вече е заглушен." #: actions/siteadminpanel.php:69 -msgid "Basic settings for this StatusNet site." +#, fuzzy +msgid "Basic settings for this StatusNet site" msgstr "Основни настройки на тази инсталация на StatusNet." -#: actions/siteadminpanel.php:132 +#: actions/siteadminpanel.php:133 msgid "Site name must have non-zero length." msgstr "Името на сайта е задължително." -#: actions/siteadminpanel.php:140 +#: actions/siteadminpanel.php:141 #, fuzzy msgid "You must have a valid contact email address." msgstr "Адресът на е-поща за контакт е задължителен" -#: actions/siteadminpanel.php:158 +#: actions/siteadminpanel.php:159 #, php-format msgid "Unknown language \"%s\"." msgstr "Непознат език \"%s\"." #: actions/siteadminpanel.php:165 -msgid "Invalid snapshot report URL." -msgstr "" - -#: actions/siteadminpanel.php:171 -msgid "Invalid snapshot run value." -msgstr "" - -#: actions/siteadminpanel.php:177 -msgid "Snapshot frequency must be a number." -msgstr "" - -#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "Минималното ограничение на текста е 140 знака." -#: actions/siteadminpanel.php:189 +#: actions/siteadminpanel.php:171 msgid "Dupe limit must 1 or more seconds." msgstr "" -#: actions/siteadminpanel.php:239 +#: actions/siteadminpanel.php:221 msgid "General" msgstr "Общи" -#: actions/siteadminpanel.php:242 +#: actions/siteadminpanel.php:224 msgid "Site name" msgstr "Име на сайта" -#: actions/siteadminpanel.php:243 +#: actions/siteadminpanel.php:225 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "" -#: actions/siteadminpanel.php:247 +#: actions/siteadminpanel.php:229 msgid "Brought by" msgstr "" -#: actions/siteadminpanel.php:248 +#: actions/siteadminpanel.php:230 msgid "Text used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:252 +#: actions/siteadminpanel.php:234 msgid "Brought by URL" msgstr "" -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:235 msgid "URL used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:239 msgid "Contact email address for your site" msgstr "Адрес на е-поща за контакт със сайта" -#: actions/siteadminpanel.php:263 +#: actions/siteadminpanel.php:245 #, fuzzy msgid "Local" msgstr "Местоположение" -#: actions/siteadminpanel.php:274 +#: actions/siteadminpanel.php:256 msgid "Default timezone" msgstr "Часови пояс по подразбиране" -#: actions/siteadminpanel.php:275 +#: actions/siteadminpanel.php:257 msgid "Default timezone for the site; usually UTC." msgstr "Часови пояс по подразбиране за сайта (обикновено UTC)." -#: actions/siteadminpanel.php:281 -msgid "Default site language" +#: actions/siteadminpanel.php:262 +#, fuzzy +msgid "Default language" msgstr "Език по подразбиране за сайта" -#: actions/siteadminpanel.php:289 -msgid "Snapshots" +#: actions/siteadminpanel.php:263 +msgid "Site language when autodetection from browser settings is not available" msgstr "" -#: actions/siteadminpanel.php:292 -msgid "Randomly during Web hit" -msgstr "" - -#: actions/siteadminpanel.php:293 -msgid "In a scheduled job" -msgstr "" - -#: actions/siteadminpanel.php:295 -msgid "Data snapshots" -msgstr "" - -#: actions/siteadminpanel.php:296 -msgid "When to send statistical data to status.net servers" -msgstr "" - -#: actions/siteadminpanel.php:301 -msgid "Frequency" -msgstr "Честота" - -#: actions/siteadminpanel.php:302 -msgid "Snapshots will be sent once every N web hits" -msgstr "" - -#: actions/siteadminpanel.php:307 -msgid "Report URL" -msgstr "" - -#: actions/siteadminpanel.php:308 -msgid "Snapshots will be sent to this URL" -msgstr "" - -#: actions/siteadminpanel.php:315 +#: actions/siteadminpanel.php:271 msgid "Limits" msgstr "Ограничения" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Text limit" msgstr "" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Maximum number of characters for notices." msgstr "" -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "Dupe limit" msgstr "" -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" +#: actions/sitenoticeadminpanel.php:56 +#, fuzzy +msgid "Site Notice" +msgstr "Нова бележка" + +#: actions/sitenoticeadminpanel.php:67 +#, fuzzy +msgid "Edit site-wide message" +msgstr "Ново съобщение" + +#: actions/sitenoticeadminpanel.php:103 +#, fuzzy +msgid "Unable to save site notice." +msgstr "Грешка при записване настройките за Twitter" + +#: actions/sitenoticeadminpanel.php:113 +msgid "Max length for the site-wide notice is 255 chars" +msgstr "" + +#: actions/sitenoticeadminpanel.php:176 +#, fuzzy +msgid "Site notice text" +msgstr "Нова бележка" + +#: actions/sitenoticeadminpanel.php:178 +msgid "Site-wide notice text (255 chars max; HTML okay)" +msgstr "" + +#: actions/sitenoticeadminpanel.php:198 +#, fuzzy +msgid "Save site notice" +msgstr "Нова бележка" + #: actions/smssettings.php:58 msgid "SMS settings" msgstr "Настройки за SMS" @@ -3917,6 +3936,66 @@ msgstr "" msgid "No code entered" msgstr "Не е въведен код." +#. TRANS: Menu item for site administration +#: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 +#: lib/adminpanelaction.php:406 +msgid "Snapshots" +msgstr "" + +#: actions/snapshotadminpanel.php:65 +#, fuzzy +msgid "Manage snapshot configuration" +msgstr "Промяна настройките на сайта" + +#: actions/snapshotadminpanel.php:127 +msgid "Invalid snapshot run value." +msgstr "" + +#: actions/snapshotadminpanel.php:133 +msgid "Snapshot frequency must be a number." +msgstr "" + +#: actions/snapshotadminpanel.php:144 +msgid "Invalid snapshot report URL." +msgstr "" + +#: actions/snapshotadminpanel.php:200 +msgid "Randomly during Web hit" +msgstr "" + +#: actions/snapshotadminpanel.php:201 +msgid "In a scheduled job" +msgstr "" + +#: actions/snapshotadminpanel.php:206 +msgid "Data snapshots" +msgstr "" + +#: actions/snapshotadminpanel.php:208 +msgid "When to send statistical data to status.net servers" +msgstr "" + +#: actions/snapshotadminpanel.php:217 +msgid "Frequency" +msgstr "Честота" + +#: actions/snapshotadminpanel.php:218 +msgid "Snapshots will be sent once every N web hits" +msgstr "" + +#: actions/snapshotadminpanel.php:226 +msgid "Report URL" +msgstr "" + +#: actions/snapshotadminpanel.php:227 +msgid "Snapshots will be sent to this URL" +msgstr "" + +#: actions/snapshotadminpanel.php:248 +#, fuzzy +msgid "Save snapshot settings" +msgstr "Запазване настройките на сайта" + #: actions/subedit.php:70 msgid "You are not subscribed to that profile." msgstr "Не сте абонирани за този профил" @@ -4119,7 +4198,7 @@ msgstr "Сървърът не е върнал адрес на профила." msgid "Unsubscribed" msgstr "Отписване" -#: actions/updateprofile.php:62 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -4325,16 +4404,22 @@ msgstr "Членове на групата %s, страница %d" msgid "Search for more groups" msgstr "Търсене на още групи" -#: actions/usergroups.php:153 +#: actions/usergroups.php:157 #, php-format msgid "%s is not a member of any group." msgstr "%s не членува в никоя група." -#: actions/usergroups.php:158 +#: actions/usergroups.php:162 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" +#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: lib/atomusernoticefeed.php:72 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "Бележки от %1$s в %2$s." + #: actions/version.php:73 #, php-format msgid "StatusNet %s" @@ -4378,7 +4463,7 @@ msgstr "" msgid "Plugins" msgstr "Приставки" -#: actions/version.php:196 lib/action.php:778 +#: actions/version.php:196 lib/action.php:767 msgid "Version" msgstr "Версия" @@ -4446,23 +4531,23 @@ msgstr "Грешка при обновяване на бележката с но msgid "DB error inserting hashtag: %s" msgstr "" -#: classes/Notice.php:239 +#: classes/Notice.php:241 #, fuzzy msgid "Problem saving notice. Too long." msgstr "Проблем при записване на бележката." -#: classes/Notice.php:243 +#: classes/Notice.php:245 msgid "Problem saving notice. Unknown user." msgstr "Грешка при записване на бележката. Непознат потребител." -#: classes/Notice.php:248 +#: classes/Notice.php:250 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" "Твърде много бележки за кратко време. Спрете, поемете дъх и публикувайте " "отново след няколко минути." -#: classes/Notice.php:254 +#: classes/Notice.php:256 #, fuzzy msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " @@ -4471,20 +4556,20 @@ msgstr "" "Твърде много бележки за кратко време. Спрете, поемете дъх и публикувайте " "отново след няколко минути." -#: classes/Notice.php:260 +#: classes/Notice.php:262 msgid "You are banned from posting notices on this site." msgstr "Забранено ви е да публикувате бележки в този сайт." -#: classes/Notice.php:326 classes/Notice.php:352 +#: classes/Notice.php:328 classes/Notice.php:354 msgid "Problem saving notice." msgstr "Проблем при записване на бележката." -#: classes/Notice.php:911 +#: classes/Notice.php:927 #, fuzzy msgid "Problem saving group inbox." msgstr "Проблем при записване на бележката." -#: classes/Notice.php:1442 +#: classes/Notice.php:1459 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -4512,7 +4597,12 @@ msgstr "Не сте абонирани!" msgid "Couldn't delete self-subscription." msgstr "Грешка при изтриване на абонамента." -#: classes/Subscription.php:179 lib/subs.php:69 +#: classes/Subscription.php:190 +#, fuzzy +msgid "Couldn't delete subscription OMB token." +msgstr "Грешка при изтриване на абонамента." + +#: classes/Subscription.php:201 lib/subs.php:69 msgid "Couldn't delete subscription." msgstr "Грешка при изтриване на абонамента." @@ -4521,21 +4611,21 @@ msgstr "Грешка при изтриване на абонамента." msgid "Welcome to %1$s, @%2$s!" msgstr "Добре дошли в %1$s, @%2$s!" -#: classes/User_group.php:462 +#: classes/User_group.php:477 msgid "Could not create group." msgstr "Грешка при създаване на групата." -#: classes/User_group.php:471 +#: classes/User_group.php:486 #, fuzzy msgid "Could not set group URI." msgstr "Грешка при създаване на нов абонамент." -#: classes/User_group.php:492 +#: classes/User_group.php:507 #, fuzzy msgid "Could not set group membership." msgstr "Грешка при създаване на нов абонамент." -#: classes/User_group.php:506 +#: classes/User_group.php:521 #, fuzzy msgid "Could not save local group info." msgstr "Грешка при създаване на нов абонамент." @@ -4578,196 +4668,190 @@ msgstr "%1$s - %2$s" msgid "Untitled page" msgstr "Неозаглавена страница" -#: lib/action.php:433 +#: lib/action.php:424 msgid "Primary site navigation" msgstr "" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:439 +#: lib/action.php:430 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:442 +#: lib/action.php:433 #, fuzzy msgctxt "MENU" msgid "Personal" msgstr "Лично" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:444 +#: lib/action.php:435 #, fuzzy msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Промяна на поща, аватар, парола, профил" -#: lib/action.php:447 -#, fuzzy -msgctxt "MENU" -msgid "Account" -msgstr "Сметка" - #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:450 +#: lib/action.php:440 #, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Свързване към услуги" -#: lib/action.php:453 +#: lib/action.php:443 #, fuzzy -msgctxt "MENU" msgid "Connect" msgstr "Свързване" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:457 +#: lib/action.php:446 #, fuzzy msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Промяна настройките на сайта" -#: lib/action.php:460 +#: lib/action.php:449 #, fuzzy msgctxt "MENU" msgid "Admin" msgstr "Настройки" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:464 +#: lib/action.php:453 #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Поканете приятели и колеги да се присъединят към вас в %s" -#: lib/action.php:467 +#: lib/action.php:456 #, fuzzy msgctxt "MENU" msgid "Invite" msgstr "Покани" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:473 +#: lib/action.php:462 #, fuzzy msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Излизане от сайта" -#: lib/action.php:476 +#: lib/action.php:465 #, fuzzy msgctxt "MENU" msgid "Logout" msgstr "Изход" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:481 +#: lib/action.php:470 #, fuzzy msgctxt "TOOLTIP" msgid "Create an account" msgstr "Създаване на нова сметка" -#: lib/action.php:484 +#: lib/action.php:473 #, fuzzy msgctxt "MENU" msgid "Register" msgstr "Регистриране" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:487 +#: lib/action.php:476 #, fuzzy msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Влизане в сайта" -#: lib/action.php:490 +#: lib/action.php:479 #, fuzzy msgctxt "MENU" msgid "Login" msgstr "Вход" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:493 +#: lib/action.php:482 #, fuzzy msgctxt "TOOLTIP" msgid "Help me!" msgstr "Помощ" -#: lib/action.php:496 +#: lib/action.php:485 #, fuzzy msgctxt "MENU" msgid "Help" msgstr "Помощ" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:499 +#: lib/action.php:488 #, fuzzy msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Търсене за хора или бележки" -#: lib/action.php:502 +#: lib/action.php:491 #, fuzzy msgctxt "MENU" msgid "Search" msgstr "Търсене" #. TRANS: DT element for site notice. String is hidden in default CSS. -#: lib/action.php:524 +#. TRANS: Menu item for site administration +#: lib/action.php:513 lib/adminpanelaction.php:398 #, fuzzy msgid "Site notice" msgstr "Нова бележка" -#: lib/action.php:590 +#: lib/action.php:579 msgid "Local views" msgstr "" -#: lib/action.php:656 +#: lib/action.php:645 #, fuzzy msgid "Page notice" msgstr "Нова бележка" -#: lib/action.php:758 +#: lib/action.php:747 #, fuzzy msgid "Secondary site navigation" msgstr "Абонаменти" -#: lib/action.php:763 +#: lib/action.php:752 msgid "Help" msgstr "Помощ" -#: lib/action.php:765 +#: lib/action.php:754 msgid "About" msgstr "Относно" -#: lib/action.php:767 +#: lib/action.php:756 msgid "FAQ" msgstr "Въпроси" -#: lib/action.php:771 +#: lib/action.php:760 msgid "TOS" msgstr "Условия" -#: lib/action.php:774 +#: lib/action.php:763 msgid "Privacy" msgstr "Поверителност" -#: lib/action.php:776 +#: lib/action.php:765 msgid "Source" msgstr "Изходен код" -#: lib/action.php:780 +#: lib/action.php:769 msgid "Contact" msgstr "Контакт" -#: lib/action.php:782 +#: lib/action.php:771 msgid "Badge" msgstr "Табелка" -#: lib/action.php:810 +#: lib/action.php:799 msgid "StatusNet software license" msgstr "Лиценз на програмата StatusNet" -#: lib/action.php:813 +#: lib/action.php:802 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4776,12 +4860,12 @@ msgstr "" "**%%site.name%%** е услуга за микроблогване, предоставена ви от [%%site." "broughtby%%](%%site.broughtbyurl%%). " -#: lib/action.php:815 +#: lib/action.php:804 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** е услуга за микроблогване. " -#: lib/action.php:817 +#: lib/action.php:806 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4792,53 +4876,53 @@ msgstr "" "достъпна под [GNU Affero General Public License](http://www.fsf.org/" "licensing/licenses/agpl-3.0.html)." -#: lib/action.php:832 +#: lib/action.php:821 msgid "Site content license" msgstr "Лиценз на съдържанието" -#: lib/action.php:837 +#: lib/action.php:826 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:842 +#: lib/action.php:831 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:845 +#: lib/action.php:834 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" -#: lib/action.php:858 +#: lib/action.php:847 msgid "All " msgstr "Всички " -#: lib/action.php:864 +#: lib/action.php:853 msgid "license." msgstr "лиценз." -#: lib/action.php:1163 +#: lib/action.php:1152 msgid "Pagination" msgstr "Страниране" -#: lib/action.php:1172 +#: lib/action.php:1161 msgid "After" msgstr "След" -#: lib/action.php:1180 +#: lib/action.php:1169 msgid "Before" msgstr "Преди" -#: lib/activity.php:449 +#: lib/activity.php:453 msgid "Can't handle remote content yet." msgstr "" -#: lib/activity.php:477 +#: lib/activity.php:481 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activity.php:481 +#: lib/activity.php:485 msgid "Can't handle embedded Base64 content yet." msgstr "" @@ -4854,97 +4938,86 @@ msgid "Changes to that panel are not allowed." msgstr "Записването не е позволено." #. TRANS: Client error message -#: lib/adminpanelaction.php:211 +#: lib/adminpanelaction.php:229 #, fuzzy msgid "showForm() not implemented." msgstr "Командата все още не се поддържа." #. TRANS: Client error message -#: lib/adminpanelaction.php:241 +#: lib/adminpanelaction.php:259 #, fuzzy msgid "saveSettings() not implemented." msgstr "Командата все още не се поддържа." #. TRANS: Client error message -#: lib/adminpanelaction.php:265 +#: lib/adminpanelaction.php:283 #, fuzzy msgid "Unable to delete design setting." msgstr "Грешка при записване настройките за Twitter" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:330 +#: lib/adminpanelaction.php:348 msgid "Basic site configuration" msgstr "Основна настройка на сайта" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:332 +#: lib/adminpanelaction.php:350 #, fuzzy msgctxt "MENU" msgid "Site" msgstr "Сайт" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:338 +#: lib/adminpanelaction.php:356 msgid "Design configuration" msgstr "Настройка на оформлението" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:340 +#: lib/adminpanelaction.php:358 #, fuzzy msgctxt "MENU" msgid "Design" msgstr "Версия" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:346 +#: lib/adminpanelaction.php:364 #, fuzzy msgid "User configuration" msgstr "Настройка на пътищата" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:348 -#, fuzzy -msgctxt "MENU" +#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 msgid "User" msgstr "Потребител" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:354 +#: lib/adminpanelaction.php:372 #, fuzzy msgid "Access configuration" msgstr "Настройка на оформлението" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:356 -#, fuzzy -msgctxt "MENU" -msgid "Access" -msgstr "Достъп" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:362 +#: lib/adminpanelaction.php:380 msgid "Paths configuration" msgstr "Настройка на пътищата" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:364 -#, fuzzy -msgctxt "MENU" -msgid "Paths" -msgstr "Пътища" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:370 +#: lib/adminpanelaction.php:388 #, fuzzy msgid "Sessions configuration" msgstr "Настройка на оформлението" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:372 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:396 #, fuzzy -msgctxt "MENU" -msgid "Sessions" -msgstr "Сесии" +msgid "Edit site notice" +msgstr "Нова бележка" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:404 +#, fuzzy +msgid "Snapshots configuration" +msgstr "Настройка на пътищата" #: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." @@ -5443,6 +5516,11 @@ msgstr "Изберете етикет за конкретизиране" msgid "Go" msgstr "" +#: lib/grantroleform.php:91 +#, php-format +msgid "Grant this user the \"%s\" role" +msgstr "" + #: lib/groupeditform.php:163 msgid "URL of the homepage or blog of the group or topic" msgstr "Адрес на страница, блог или профил в друг сайт на групата" @@ -5983,10 +6061,6 @@ msgstr "Отговори" msgid "Favorites" msgstr "Любими" -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "Потребител" - #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "Входящи" @@ -6013,7 +6087,7 @@ msgstr "Етикети в бележките на %s" msgid "Unknown" msgstr "Непознато действие" -#: lib/profileaction.php:109 lib/profileaction.php:192 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:194 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Абонаменти" @@ -6021,24 +6095,24 @@ msgstr "Абонаменти" msgid "All subscriptions" msgstr "Всички абонаменти" -#: lib/profileaction.php:140 lib/profileaction.php:201 lib/subgroupnav.php:90 +#: lib/profileaction.php:142 lib/profileaction.php:203 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Абонати" -#: lib/profileaction.php:157 +#: lib/profileaction.php:159 msgid "All subscribers" msgstr "Всички абонати" -#: lib/profileaction.php:178 +#: lib/profileaction.php:180 #, fuzzy msgid "User ID" msgstr "Потребител" -#: lib/profileaction.php:183 +#: lib/profileaction.php:185 msgid "Member since" msgstr "Участник от" -#: lib/profileaction.php:245 +#: lib/profileaction.php:247 msgid "All groups" msgstr "Всички групи" @@ -6079,7 +6153,12 @@ msgstr "Повтаряне на тази бележка" msgid "Repeat this notice" msgstr "Повтаряне на тази бележка" -#: lib/router.php:668 +#: lib/revokeroleform.php:91 +#, fuzzy, php-format +msgid "Revoke the \"%s\" role from this user" +msgstr "Списък с потребителите в тази група." + +#: lib/router.php:671 msgid "No single user defined for single-user mode." msgstr "" @@ -6239,47 +6318,63 @@ msgstr "Съобщение" msgid "Moderate" msgstr "" -#: lib/util.php:1013 +#: lib/userprofile.php:352 +#, fuzzy +msgid "User role" +msgstr "Потребителски профил" + +#: lib/userprofile.php:354 +#, fuzzy +msgctxt "role" +msgid "Administrator" +msgstr "Администратори" + +#: lib/userprofile.php:355 +msgctxt "role" +msgid "Moderator" +msgstr "" + +#: lib/util.php:1015 msgid "a few seconds ago" msgstr "преди няколко секунди" -#: lib/util.php:1015 +#: lib/util.php:1017 msgid "about a minute ago" msgstr "преди около минута" -#: lib/util.php:1017 +#: lib/util.php:1019 #, php-format msgid "about %d minutes ago" msgstr "преди около %d минути" -#: lib/util.php:1019 +#: lib/util.php:1021 msgid "about an hour ago" msgstr "преди около час" -#: lib/util.php:1021 +#: lib/util.php:1023 #, php-format msgid "about %d hours ago" msgstr "преди около %d часа" -#: lib/util.php:1023 +#: lib/util.php:1025 msgid "about a day ago" msgstr "преди около ден" -#: lib/util.php:1025 +#: lib/util.php:1027 #, php-format msgid "about %d days ago" msgstr "преди около %d дни" -#: lib/util.php:1027 +#: lib/util.php:1029 msgid "about a month ago" msgstr "преди около месец" -#: lib/util.php:1029 +#: lib/util.php:1031 #, php-format msgid "about %d months ago" msgstr "преди около %d месеца" -#: lib/util.php:1031 +#: lib/util.php:1033 msgid "about a year ago" msgstr "преди около година" diff --git a/locale/ca/LC_MESSAGES/statusnet.po b/locale/ca/LC_MESSAGES/statusnet.po index 8b12f44a94..f38b97ccf4 100644 --- a/locale/ca/LC_MESSAGES/statusnet.po +++ b/locale/ca/LC_MESSAGES/statusnet.po @@ -10,19 +10,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-02 21:02+0000\n" -"PO-Revision-Date: 2010-03-02 21:02:15+0000\n" +"POT-Creation-Date: 2010-03-04 18:55+0000\n" +"PO-Revision-Date: 2010-03-04 18:56:02+0000\n" "Language-Team: Catalan\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. TRANS: Page title -#: actions/accessadminpanel.php:55 +#. TRANS: Menu item for site administration +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 msgid "Access" msgstr "Accés" @@ -124,7 +125,7 @@ msgstr "%s perfils blocats, pàgina %d" #. TRANS: Page title. %1$s is user nickname #. TRANS: H1 text. %1$s is user nickname -#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -181,7 +182,7 @@ msgid "" msgstr "" #. TRANS: H1 text -#: actions/all.php:174 +#: actions/all.php:178 msgid "You and friends" msgstr "Un mateix i amics" @@ -208,11 +209,11 @@ msgstr "Actualitzacions de %1$s i amics a %2$s!" #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 -#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 +#: actions/apitimelinegroup.php:160 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:148 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 #, fuzzy msgid "API method not found." msgstr "No s'ha trobat el mètode API!" @@ -586,7 +587,7 @@ msgid "" "give access to your %4$s account to third parties you trust." msgstr "" -#: actions/apioauthauthorize.php:310 +#: actions/apioauthauthorize.php:310 lib/action.php:438 msgid "Account" msgstr "Compte" @@ -677,18 +678,6 @@ msgstr "%s / Preferits de %s" msgid "%1$s updates favorited by %2$s / %2$s." msgstr "%s actualitzacions favorites per %s / %s." -#: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:138 actions/userrss.php:90 -#, php-format -msgid "%s timeline" -msgstr "%s línia temporal" - -#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 -#: actions/userrss.php:92 -#, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "Actualitzacions de %1$s a %2$s!" - #: actions/apitimelinementions.php:117 #, fuzzy, php-format msgid "%1$s / Updates mentioning %2$s" @@ -699,12 +688,12 @@ msgstr "%1$s / Notificacions contestant a %2$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/apitimelinepublic.php:111 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "%s línia temporal pública" -#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "%s notificacions de tots!" @@ -952,7 +941,7 @@ msgid "Conversation" msgstr "Conversa" #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:216 lib/searchgroupnav.php:82 +#: lib/profileaction.php:218 lib/searchgroupnav.php:82 msgid "Notices" msgstr "Avisos" @@ -974,7 +963,7 @@ msgstr "No sou un membre del grup." #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1228 +#: lib/action.php:1217 msgid "There was a problem with your session token." msgstr "Ha ocorregut algun problema amb la teva sessió." @@ -1169,8 +1158,9 @@ msgstr "" #: actions/designadminpanel.php:586 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 +#: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:208 #: actions/tagother.php:154 actions/useradminpanel.php:294 #: lib/applicationeditform.php:333 lib/applicationeditform.php:334 #: lib/designsettings.php:256 lib/groupeditform.php:202 @@ -1298,7 +1288,7 @@ msgstr "la descripció és massa llarga (màx. %d caràcters)." msgid "Could not update group." msgstr "No s'ha pogut actualitzar el grup." -#: actions/editgroup.php:264 classes/User_group.php:478 +#: actions/editgroup.php:264 classes/User_group.php:493 msgid "Could not create aliases." msgstr "No s'han pogut crear els àlies." @@ -1427,7 +1417,7 @@ msgid "Cannot normalize that email address" msgstr "No es pot normalitzar l'adreça electrònica." #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:143 +#: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Adreça de correu electrònic no vàlida." @@ -1616,6 +1606,25 @@ msgstr "No existeix el fitxer." msgid "Cannot read file." msgstr "No es pot llegir el fitxer." +#: actions/grantrole.php:62 actions/revokerole.php:62 +#, fuzzy +msgid "Invalid role." +msgstr "Mida invàlida." + +#: actions/grantrole.php:66 actions/revokerole.php:66 +msgid "This role is reserved and cannot be set." +msgstr "" + +#: actions/grantrole.php:75 +#, fuzzy +msgid "You cannot grant user roles on this site." +msgstr "No pots enviar un missatge a aquest usuari." + +#: actions/grantrole.php:82 +#, fuzzy +msgid "User already has this role." +msgstr "L'usuari ja està silenciat." + #: actions/groupblock.php:71 actions/groupunblock.php:71 #: actions/makeadmin.php:71 actions/subedit.php:46 #: lib/profileformaction.php:70 @@ -1763,12 +1772,18 @@ msgstr "Fes-lo administrador" msgid "Make this user an admin" msgstr "Fes l'usuari administrador" +#: actions/grouprss.php:138 actions/userrss.php:90 +#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#, php-format +msgid "%s timeline" +msgstr "%s línia temporal" + #: actions/grouprss.php:140 #, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Actualitzacions dels membres de %1$s el %2$s!" -#: actions/groups.php:62 lib/profileaction.php:210 lib/profileaction.php:230 +#: actions/groups.php:62 lib/profileaction.php:212 lib/profileaction.php:232 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" msgstr "Grups" @@ -2387,8 +2402,8 @@ msgstr "tipus de contingut " msgid "Only " msgstr "Només " -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 -#: lib/apiaction.php:1068 lib/apiaction.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1042 +#: lib/apiaction.php:1070 lib/apiaction.php:1179 msgid "Not a supported data format." msgstr "Format de data no suportat." @@ -2534,7 +2549,8 @@ msgstr "No es pot guardar la nova contrasenya." msgid "Password saved." msgstr "Contrasenya guardada." -#: actions/pathsadminpanel.php:59 +#. TRANS: Menu item for site administration +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 msgid "Paths" msgstr "Camins" @@ -2654,7 +2670,7 @@ msgstr "Directori de fons" msgid "SSL" msgstr "SSL" -#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 +#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202 msgid "Never" msgstr "Mai" @@ -2711,11 +2727,11 @@ msgstr "Etiqueta no vàlida per a la gent: %s" msgid "Users self-tagged with %1$s - page %2$d" msgstr "Usuaris que s'han etiquetat %s - pàgina %d" -#: actions/postnotice.php:84 +#: actions/postnotice.php:95 msgid "Invalid notice content" msgstr "El contingut de l'avís és invàlid" -#: actions/postnotice.php:90 +#: actions/postnotice.php:101 #, php-format msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" @@ -2797,7 +2813,7 @@ msgstr "" "Etiquetes per a tu mateix (lletres, números, -, ., i _), per comes o separat " "por espais" -#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 +#: actions/profilesettings.php:151 msgid "Language" msgstr "Idioma" @@ -2825,7 +2841,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "La biografia és massa llarga (màx. %d caràcters)." -#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:151 msgid "Timezone not selected." msgstr "Franja horària no seleccionada." @@ -3138,7 +3154,7 @@ msgid "Same as password above. Required." msgstr "Igual a la contrasenya de dalt. Requerit." #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 msgid "Email" msgstr "Correu electrònic" @@ -3244,7 +3260,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "URL del teu perfil en un altre servei de microblogging compatible" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:368 +#: lib/userprofile.php:394 msgid "Subscribe" msgstr "Subscriure's" @@ -3349,6 +3365,16 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "Respostes a %1$s el %2$s!" +#: actions/revokerole.php:75 +#, fuzzy +msgid "You cannot revoke user roles on this site." +msgstr "No podeu silenciar els usuaris d'aquest lloc." + +#: actions/revokerole.php:82 +#, fuzzy +msgid "User doesn't have this role." +msgstr "Usuari sense perfil coincident" + #: actions/rsd.php:146 actions/version.php:157 #, fuzzy msgid "StatusNet" @@ -3364,7 +3390,9 @@ msgstr "No pots enviar un missatge a aquest usuari." msgid "User is already sandboxed." msgstr "Un usuari t'ha bloquejat." +#. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:390 msgid "Sessions" msgstr "Sessions" @@ -3389,7 +3417,7 @@ msgstr "Depuració de la sessió" msgid "Turn on debugging output for sessions." msgstr "Activa la sortida de depuració per a les sessions." -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "Desa els paràmetres del lloc" @@ -3423,8 +3451,8 @@ msgstr "Paginació" msgid "Description" msgstr "Descripció" -#: actions/showapplication.php:192 actions/showgroup.php:437 -#: lib/profileaction.php:174 +#: actions/showapplication.php:192 actions/showgroup.php:438 +#: lib/profileaction.php:176 msgid "Statistics" msgstr "Estadístiques" @@ -3558,45 +3586,45 @@ msgstr "Àlies" msgid "Group actions" msgstr "Accions del grup" -#: actions/showgroup.php:336 +#: actions/showgroup.php:337 #, fuzzy, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Feed d'avisos del grup %s" -#: actions/showgroup.php:342 +#: actions/showgroup.php:343 #, fuzzy, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Feed d'avisos del grup %s" -#: actions/showgroup.php:348 +#: actions/showgroup.php:349 #, fuzzy, php-format msgid "Notice feed for %s group (Atom)" msgstr "Feed d'avisos del grup %s" -#: actions/showgroup.php:353 +#: actions/showgroup.php:354 #, php-format msgid "FOAF for %s group" msgstr "Safata de sortida per %s" -#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 +#: actions/showgroup.php:390 actions/showgroup.php:447 lib/groupnav.php:91 msgid "Members" msgstr "Membres" -#: actions/showgroup.php:394 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 +#: actions/showgroup.php:395 lib/profileaction.php:117 +#: lib/profileaction.php:150 lib/profileaction.php:238 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(Cap)" -#: actions/showgroup.php:400 +#: actions/showgroup.php:401 msgid "All members" msgstr "Tots els membres" -#: actions/showgroup.php:440 +#: actions/showgroup.php:441 msgid "Created" msgstr "S'ha creat" -#: actions/showgroup.php:456 +#: actions/showgroup.php:457 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3606,7 +3634,7 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showgroup.php:462 +#: actions/showgroup.php:463 #, fuzzy, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3617,7 +3645,7 @@ msgstr "" "**%s** és un grup d'usuaris a %%%%site.name%%%%, un servei de [microblogging]" "(http://ca.wikipedia.org/wiki/Microblogging)" -#: actions/showgroup.php:490 +#: actions/showgroup.php:491 msgid "Admins" msgstr "Administradors" @@ -3732,149 +3760,140 @@ msgid "User is already silenced." msgstr "L'usuari ja està silenciat." #: actions/siteadminpanel.php:69 -msgid "Basic settings for this StatusNet site." +#, fuzzy +msgid "Basic settings for this StatusNet site" msgstr "Paràmetres bàsic d'aquest lloc basat en l'StatusNet." -#: actions/siteadminpanel.php:132 +#: actions/siteadminpanel.php:133 msgid "Site name must have non-zero length." msgstr "El nom del lloc ha de tenir una longitud superior a zero." -#: actions/siteadminpanel.php:140 +#: actions/siteadminpanel.php:141 #, fuzzy msgid "You must have a valid contact email address." msgstr "Heu de tenir una adreça electrònica de contacte vàlida" -#: actions/siteadminpanel.php:158 +#: actions/siteadminpanel.php:159 #, fuzzy, php-format msgid "Unknown language \"%s\"." msgstr "Llengua desconeguda «%s»" #: actions/siteadminpanel.php:165 -msgid "Invalid snapshot report URL." -msgstr "" - -#: actions/siteadminpanel.php:171 -msgid "Invalid snapshot run value." -msgstr "" - -#: actions/siteadminpanel.php:177 -msgid "Snapshot frequency must be a number." -msgstr "" - -#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "" -#: actions/siteadminpanel.php:189 +#: actions/siteadminpanel.php:171 msgid "Dupe limit must 1 or more seconds." msgstr "" -#: actions/siteadminpanel.php:239 +#: actions/siteadminpanel.php:221 msgid "General" msgstr "General" -#: actions/siteadminpanel.php:242 +#: actions/siteadminpanel.php:224 msgid "Site name" msgstr "Nom del lloc" -#: actions/siteadminpanel.php:243 +#: actions/siteadminpanel.php:225 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "El nom del vostre lloc, com ara «El microblog de l'empresa»" -#: actions/siteadminpanel.php:247 +#: actions/siteadminpanel.php:229 msgid "Brought by" msgstr "" -#: actions/siteadminpanel.php:248 +#: actions/siteadminpanel.php:230 msgid "Text used for credits link in footer of each page" msgstr "El text que s'utilitza a l'enllaç dels crèdits al peu de cada pàgina" -#: actions/siteadminpanel.php:252 +#: actions/siteadminpanel.php:234 msgid "Brought by URL" msgstr "" -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:235 msgid "URL used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:239 msgid "Contact email address for your site" msgstr "Adreça electrònica de contacte del vostre lloc" -#: actions/siteadminpanel.php:263 +#: actions/siteadminpanel.php:245 msgid "Local" msgstr "Local" -#: actions/siteadminpanel.php:274 +#: actions/siteadminpanel.php:256 msgid "Default timezone" msgstr "Fus horari per defecte" -#: actions/siteadminpanel.php:275 +#: actions/siteadminpanel.php:257 msgid "Default timezone for the site; usually UTC." msgstr "Fus horari per defecte del lloc; normalment UTC." -#: actions/siteadminpanel.php:281 -msgid "Default site language" +#: actions/siteadminpanel.php:262 +#, fuzzy +msgid "Default language" msgstr "Llengua per defecte del lloc" -#: actions/siteadminpanel.php:289 -msgid "Snapshots" -msgstr "Instantànies" - -#: actions/siteadminpanel.php:292 -msgid "Randomly during Web hit" +#: actions/siteadminpanel.php:263 +msgid "Site language when autodetection from browser settings is not available" msgstr "" -#: actions/siteadminpanel.php:293 -msgid "In a scheduled job" -msgstr "En una tasca planificada" - -#: actions/siteadminpanel.php:295 -msgid "Data snapshots" -msgstr "Instantànies de dades" - -#: actions/siteadminpanel.php:296 -msgid "When to send statistical data to status.net servers" -msgstr "" - -#: actions/siteadminpanel.php:301 -msgid "Frequency" -msgstr "Freqüència" - -#: actions/siteadminpanel.php:302 -msgid "Snapshots will be sent once every N web hits" -msgstr "" - -#: actions/siteadminpanel.php:307 -msgid "Report URL" -msgstr "" - -#: actions/siteadminpanel.php:308 -msgid "Snapshots will be sent to this URL" -msgstr "Les instantànies s'enviaran a aquest URL" - -#: actions/siteadminpanel.php:315 +#: actions/siteadminpanel.php:271 msgid "Limits" msgstr "Límits" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Text limit" msgstr "Límits del text" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Maximum number of characters for notices." msgstr "" -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "Dupe limit" msgstr "Límit de duplicats" -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" "Quant de temps cal que esperin els usuaris (en segons) per enviar el mateix " "de nou." +#: actions/sitenoticeadminpanel.php:56 +#, fuzzy +msgid "Site Notice" +msgstr "Avís del lloc" + +#: actions/sitenoticeadminpanel.php:67 +#, fuzzy +msgid "Edit site-wide message" +msgstr "Nou missatge" + +#: actions/sitenoticeadminpanel.php:103 +#, fuzzy +msgid "Unable to save site notice." +msgstr "No s'ha pogut guardar la teva configuració de Twitter!" + +#: actions/sitenoticeadminpanel.php:113 +msgid "Max length for the site-wide notice is 255 chars" +msgstr "" + +#: actions/sitenoticeadminpanel.php:176 +#, fuzzy +msgid "Site notice text" +msgstr "Avís del lloc" + +#: actions/sitenoticeadminpanel.php:178 +msgid "Site-wide notice text (255 chars max; HTML okay)" +msgstr "" + +#: actions/sitenoticeadminpanel.php:198 +#, fuzzy +msgid "Save site notice" +msgstr "Avís del lloc" + #: actions/smssettings.php:58 msgid "SMS settings" msgstr "Paràmetres de l'SMS" @@ -3978,6 +3997,66 @@ msgstr "" msgid "No code entered" msgstr "No hi ha cap codi entrat" +#. TRANS: Menu item for site administration +#: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 +#: lib/adminpanelaction.php:406 +msgid "Snapshots" +msgstr "Instantànies" + +#: actions/snapshotadminpanel.php:65 +#, fuzzy +msgid "Manage snapshot configuration" +msgstr "Canvia la configuració del lloc" + +#: actions/snapshotadminpanel.php:127 +msgid "Invalid snapshot run value." +msgstr "" + +#: actions/snapshotadminpanel.php:133 +msgid "Snapshot frequency must be a number." +msgstr "" + +#: actions/snapshotadminpanel.php:144 +msgid "Invalid snapshot report URL." +msgstr "" + +#: actions/snapshotadminpanel.php:200 +msgid "Randomly during Web hit" +msgstr "" + +#: actions/snapshotadminpanel.php:201 +msgid "In a scheduled job" +msgstr "En una tasca planificada" + +#: actions/snapshotadminpanel.php:206 +msgid "Data snapshots" +msgstr "Instantànies de dades" + +#: actions/snapshotadminpanel.php:208 +msgid "When to send statistical data to status.net servers" +msgstr "" + +#: actions/snapshotadminpanel.php:217 +msgid "Frequency" +msgstr "Freqüència" + +#: actions/snapshotadminpanel.php:218 +msgid "Snapshots will be sent once every N web hits" +msgstr "" + +#: actions/snapshotadminpanel.php:226 +msgid "Report URL" +msgstr "" + +#: actions/snapshotadminpanel.php:227 +msgid "Snapshots will be sent to this URL" +msgstr "Les instantànies s'enviaran a aquest URL" + +#: actions/snapshotadminpanel.php:248 +#, fuzzy +msgid "Save snapshot settings" +msgstr "Desa els paràmetres del lloc" + #: actions/subedit.php:70 msgid "You are not subscribed to that profile." msgstr "No estàs subscrit a aquest perfil." @@ -4185,7 +4264,7 @@ msgstr "No id en el perfil sol·licitat." msgid "Unsubscribed" msgstr "No subscrit" -#: actions/updateprofile.php:62 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -4389,16 +4468,22 @@ msgstr "%s membre/s en el grup, pàgina %d" msgid "Search for more groups" msgstr "Cerca més grups" -#: actions/usergroups.php:153 +#: actions/usergroups.php:157 #, php-format msgid "%s is not a member of any group." msgstr "%s no és membre de cap grup." -#: actions/usergroups.php:158 +#: actions/usergroups.php:162 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" +#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: lib/atomusernoticefeed.php:72 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "Actualitzacions de %1$s a %2$s!" + #: actions/version.php:73 #, fuzzy, php-format msgid "StatusNet %s" @@ -4442,7 +4527,7 @@ msgstr "" msgid "Plugins" msgstr "Connectors" -#: actions/version.php:196 lib/action.php:778 +#: actions/version.php:196 lib/action.php:767 #, fuzzy msgid "Version" msgstr "Sessions" @@ -4511,23 +4596,23 @@ msgstr "No s'ha pogut inserir el missatge amb la nova URI." msgid "DB error inserting hashtag: %s" msgstr "Hashtag de l'error de la base de dades:%s" -#: classes/Notice.php:239 +#: classes/Notice.php:241 #, fuzzy msgid "Problem saving notice. Too long." msgstr "Problema en guardar l'avís." -#: classes/Notice.php:243 +#: classes/Notice.php:245 msgid "Problem saving notice. Unknown user." msgstr "Problema al guardar la notificació. Usuari desconegut." -#: classes/Notice.php:248 +#: classes/Notice.php:250 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." -#: classes/Notice.php:254 +#: classes/Notice.php:256 #, fuzzy msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " @@ -4536,20 +4621,20 @@ msgstr "" "Masses notificacions massa ràpid; pren un respir i publica de nou en uns " "minuts." -#: classes/Notice.php:260 +#: classes/Notice.php:262 msgid "You are banned from posting notices on this site." msgstr "Ha estat bandejat de publicar notificacions en aquest lloc." -#: classes/Notice.php:326 classes/Notice.php:352 +#: classes/Notice.php:328 classes/Notice.php:354 msgid "Problem saving notice." msgstr "Problema en guardar l'avís." -#: classes/Notice.php:911 +#: classes/Notice.php:927 #, fuzzy msgid "Problem saving group inbox." msgstr "Problema en guardar l'avís." -#: classes/Notice.php:1442 +#: classes/Notice.php:1459 #, fuzzy, php-format msgid "RT @%1$s %2$s" msgstr "%1$s (%2$s)" @@ -4576,7 +4661,12 @@ msgstr "No estàs subscrit!" msgid "Couldn't delete self-subscription." msgstr "No s'ha pogut eliminar la subscripció." -#: classes/Subscription.php:179 lib/subs.php:69 +#: classes/Subscription.php:190 +#, fuzzy +msgid "Couldn't delete subscription OMB token." +msgstr "No s'ha pogut eliminar la subscripció." + +#: classes/Subscription.php:201 lib/subs.php:69 msgid "Couldn't delete subscription." msgstr "No s'ha pogut eliminar la subscripció." @@ -4585,20 +4675,20 @@ msgstr "No s'ha pogut eliminar la subscripció." msgid "Welcome to %1$s, @%2$s!" msgstr "Us donem la benvinguda a %1$s, @%2$s!" -#: classes/User_group.php:462 +#: classes/User_group.php:477 msgid "Could not create group." msgstr "No s'ha pogut crear el grup." -#: classes/User_group.php:471 +#: classes/User_group.php:486 #, fuzzy msgid "Could not set group URI." msgstr "No s'ha pogut establir la pertinença d'aquest grup." -#: classes/User_group.php:492 +#: classes/User_group.php:507 msgid "Could not set group membership." msgstr "No s'ha pogut establir la pertinença d'aquest grup." -#: classes/User_group.php:506 +#: classes/User_group.php:521 #, fuzzy msgid "Could not save local group info." msgstr "No s'ha pogut guardar la subscripció." @@ -4641,194 +4731,188 @@ msgstr "%1$s (%2$s)" msgid "Untitled page" msgstr "Pàgina sense titol" -#: lib/action.php:433 +#: lib/action.php:424 msgid "Primary site navigation" msgstr "Navegació primària del lloc" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:439 +#: lib/action.php:430 #, fuzzy msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Perfil personal i línia temporal dels amics" -#: lib/action.php:442 +#: lib/action.php:433 #, fuzzy msgctxt "MENU" msgid "Personal" msgstr "Personal" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:444 +#: lib/action.php:435 #, fuzzy msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Canviar correu electrònic, avatar, contrasenya, perfil" -#: lib/action.php:447 -#, fuzzy -msgctxt "MENU" -msgid "Account" -msgstr "Compte" - #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:450 +#: lib/action.php:440 #, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" msgstr "No s'ha pogut redirigir al servidor: %s" -#: lib/action.php:453 +#: lib/action.php:443 #, fuzzy -msgctxt "MENU" msgid "Connect" msgstr "Connexió" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:457 +#: lib/action.php:446 #, fuzzy msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Canvia la configuració del lloc" -#: lib/action.php:460 +#: lib/action.php:449 #, fuzzy msgctxt "MENU" msgid "Admin" msgstr "Admin" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:464 +#: lib/action.php:453 #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Convidar amics i companys perquè participin a %s" -#: lib/action.php:467 +#: lib/action.php:456 #, fuzzy msgctxt "MENU" msgid "Invite" msgstr "Convida" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:473 +#: lib/action.php:462 #, fuzzy msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Finalitza la sessió del lloc" -#: lib/action.php:476 +#: lib/action.php:465 #, fuzzy msgctxt "MENU" msgid "Logout" msgstr "Finalitza la sessió" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:481 +#: lib/action.php:470 #, fuzzy msgctxt "TOOLTIP" msgid "Create an account" msgstr "Crea un compte" -#: lib/action.php:484 +#: lib/action.php:473 #, fuzzy msgctxt "MENU" msgid "Register" msgstr "Registre" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:487 +#: lib/action.php:476 #, fuzzy msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Inicia una sessió al lloc" -#: lib/action.php:490 +#: lib/action.php:479 #, fuzzy msgctxt "MENU" msgid "Login" msgstr "Inici de sessió" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:493 +#: lib/action.php:482 #, fuzzy msgctxt "TOOLTIP" msgid "Help me!" msgstr "Ajuda'm" -#: lib/action.php:496 +#: lib/action.php:485 #, fuzzy msgctxt "MENU" msgid "Help" msgstr "Ajuda" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:499 +#: lib/action.php:488 #, fuzzy msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Cerca gent o text" -#: lib/action.php:502 +#: lib/action.php:491 #, fuzzy msgctxt "MENU" msgid "Search" msgstr "Cerca" #. TRANS: DT element for site notice. String is hidden in default CSS. -#: lib/action.php:524 +#. TRANS: Menu item for site administration +#: lib/action.php:513 lib/adminpanelaction.php:398 msgid "Site notice" msgstr "Avís del lloc" -#: lib/action.php:590 +#: lib/action.php:579 msgid "Local views" msgstr "Vistes locals" -#: lib/action.php:656 +#: lib/action.php:645 msgid "Page notice" msgstr "Notificació pàgina" -#: lib/action.php:758 +#: lib/action.php:747 msgid "Secondary site navigation" msgstr "Navegació del lloc secundària" -#: lib/action.php:763 +#: lib/action.php:752 msgid "Help" msgstr "Ajuda" -#: lib/action.php:765 +#: lib/action.php:754 msgid "About" msgstr "Quant a" -#: lib/action.php:767 +#: lib/action.php:756 msgid "FAQ" msgstr "Preguntes més freqüents" -#: lib/action.php:771 +#: lib/action.php:760 msgid "TOS" msgstr "" -#: lib/action.php:774 +#: lib/action.php:763 msgid "Privacy" msgstr "Privadesa" -#: lib/action.php:776 +#: lib/action.php:765 msgid "Source" msgstr "Font" -#: lib/action.php:780 +#: lib/action.php:769 msgid "Contact" msgstr "Contacte" -#: lib/action.php:782 +#: lib/action.php:771 msgid "Badge" msgstr "Insígnia" -#: lib/action.php:810 +#: lib/action.php:799 msgid "StatusNet software license" msgstr "Llicència del programari StatusNet" -#: lib/action.php:813 +#: lib/action.php:802 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4837,12 +4921,12 @@ msgstr "" "**%%site.name%%** és un servei de microblogging de [%%site.broughtby%%**](%%" "site.broughtbyurl%%)." -#: lib/action.php:815 +#: lib/action.php:804 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** és un servei de microblogging." -#: lib/action.php:817 +#: lib/action.php:806 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4853,53 +4937,53 @@ msgstr "" "%s, disponible sota la [GNU Affero General Public License](http://www.fsf." "org/licensing/licenses/agpl-3.0.html)." -#: lib/action.php:832 +#: lib/action.php:821 msgid "Site content license" msgstr "Llicència de contingut del lloc" -#: lib/action.php:837 +#: lib/action.php:826 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:842 +#: lib/action.php:831 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:845 +#: lib/action.php:834 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" -#: lib/action.php:858 +#: lib/action.php:847 msgid "All " msgstr "Tot " -#: lib/action.php:864 +#: lib/action.php:853 msgid "license." msgstr "llicència." -#: lib/action.php:1163 +#: lib/action.php:1152 msgid "Pagination" msgstr "Paginació" -#: lib/action.php:1172 +#: lib/action.php:1161 msgid "After" msgstr "Posteriors" -#: lib/action.php:1180 +#: lib/action.php:1169 msgid "Before" msgstr "Anteriors" -#: lib/activity.php:449 +#: lib/activity.php:453 msgid "Can't handle remote content yet." msgstr "" -#: lib/activity.php:477 +#: lib/activity.php:481 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activity.php:481 +#: lib/activity.php:485 msgid "Can't handle embedded Base64 content yet." msgstr "" @@ -4915,97 +4999,86 @@ msgid "Changes to that panel are not allowed." msgstr "Registre no permès." #. TRANS: Client error message -#: lib/adminpanelaction.php:211 +#: lib/adminpanelaction.php:229 #, fuzzy msgid "showForm() not implemented." msgstr "Comanda encara no implementada." #. TRANS: Client error message -#: lib/adminpanelaction.php:241 +#: lib/adminpanelaction.php:259 #, fuzzy msgid "saveSettings() not implemented." msgstr "Comanda encara no implementada." #. TRANS: Client error message -#: lib/adminpanelaction.php:265 +#: lib/adminpanelaction.php:283 #, fuzzy msgid "Unable to delete design setting." msgstr "No s'ha pogut guardar la teva configuració de Twitter!" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:330 +#: lib/adminpanelaction.php:348 msgid "Basic site configuration" msgstr "Configuració bàsica del lloc" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:332 +#: lib/adminpanelaction.php:350 #, fuzzy msgctxt "MENU" msgid "Site" msgstr "Lloc" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:338 +#: lib/adminpanelaction.php:356 msgid "Design configuration" msgstr "Configuració del disseny" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:340 +#: lib/adminpanelaction.php:358 #, fuzzy msgctxt "MENU" msgid "Design" msgstr "Disseny" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:346 +#: lib/adminpanelaction.php:364 #, fuzzy msgid "User configuration" msgstr "Configuració dels camins" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:348 -#, fuzzy -msgctxt "MENU" +#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 msgid "User" msgstr "Usuari" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:354 +#: lib/adminpanelaction.php:372 #, fuzzy msgid "Access configuration" msgstr "Configuració del disseny" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:356 -#, fuzzy -msgctxt "MENU" -msgid "Access" -msgstr "Accés" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:362 +#: lib/adminpanelaction.php:380 msgid "Paths configuration" msgstr "Configuració dels camins" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:364 -#, fuzzy -msgctxt "MENU" -msgid "Paths" -msgstr "Camins" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:370 +#: lib/adminpanelaction.php:388 #, fuzzy msgid "Sessions configuration" msgstr "Configuració del disseny" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:372 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:396 #, fuzzy -msgctxt "MENU" -msgid "Sessions" -msgstr "Sessions" +msgid "Edit site notice" +msgstr "Avís del lloc" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:404 +#, fuzzy +msgid "Snapshots configuration" +msgstr "Configuració dels camins" #: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." @@ -5500,6 +5573,11 @@ msgstr "Elegeix una etiqueta para reduir la llista" msgid "Go" msgstr "Vés-hi" +#: lib/grantroleform.php:91 +#, php-format +msgid "Grant this user the \"%s\" role" +msgstr "" + #: 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" @@ -6047,10 +6125,6 @@ msgstr "Respostes" msgid "Favorites" msgstr "Preferits" -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "Usuari" - #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "Safata d'entrada" @@ -6077,7 +6151,7 @@ msgstr "Etiquetes en les notificacions de %s's" msgid "Unknown" msgstr "Acció desconeguda" -#: lib/profileaction.php:109 lib/profileaction.php:192 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:194 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Subscripcions" @@ -6085,23 +6159,23 @@ msgstr "Subscripcions" msgid "All subscriptions" msgstr "Totes les subscripcions" -#: lib/profileaction.php:140 lib/profileaction.php:201 lib/subgroupnav.php:90 +#: lib/profileaction.php:142 lib/profileaction.php:203 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Subscriptors" -#: lib/profileaction.php:157 +#: lib/profileaction.php:159 msgid "All subscribers" msgstr "Tots els subscriptors" -#: lib/profileaction.php:178 +#: lib/profileaction.php:180 msgid "User ID" msgstr "ID de l'usuari" -#: lib/profileaction.php:183 +#: lib/profileaction.php:185 msgid "Member since" msgstr "Membre des de" -#: lib/profileaction.php:245 +#: lib/profileaction.php:247 msgid "All groups" msgstr "Tots els grups" @@ -6143,7 +6217,12 @@ msgstr "Repeteix l'avís" msgid "Repeat this notice" msgstr "Repeteix l'avís" -#: lib/router.php:668 +#: lib/revokeroleform.php:91 +#, fuzzy, php-format +msgid "Revoke the \"%s\" role from this user" +msgstr "Bloca l'usuari del grup" + +#: lib/router.php:671 msgid "No single user defined for single-user mode." msgstr "" @@ -6300,47 +6379,64 @@ msgstr "Missatge" msgid "Moderate" msgstr "Modera" -#: lib/util.php:1013 +#: lib/userprofile.php:352 +#, fuzzy +msgid "User role" +msgstr "Perfil de l'usuari" + +#: lib/userprofile.php:354 +#, fuzzy +msgctxt "role" +msgid "Administrator" +msgstr "Administradors" + +#: lib/userprofile.php:355 +#, fuzzy +msgctxt "role" +msgid "Moderator" +msgstr "Modera" + +#: lib/util.php:1015 msgid "a few seconds ago" msgstr "fa pocs segons" -#: lib/util.php:1015 +#: lib/util.php:1017 msgid "about a minute ago" msgstr "fa un minut" -#: lib/util.php:1017 +#: lib/util.php:1019 #, php-format msgid "about %d minutes ago" msgstr "fa %d minuts" -#: lib/util.php:1019 +#: lib/util.php:1021 msgid "about an hour ago" msgstr "fa una hora" -#: lib/util.php:1021 +#: lib/util.php:1023 #, php-format msgid "about %d hours ago" msgstr "fa %d hores" -#: lib/util.php:1023 +#: lib/util.php:1025 msgid "about a day ago" msgstr "fa un dia" -#: lib/util.php:1025 +#: lib/util.php:1027 #, php-format msgid "about %d days ago" msgstr "fa %d dies" -#: lib/util.php:1027 +#: lib/util.php:1029 msgid "about a month ago" msgstr "fa un mes" -#: lib/util.php:1029 +#: lib/util.php:1031 #, php-format msgid "about %d months ago" msgstr "fa %d mesos" -#: lib/util.php:1031 +#: lib/util.php:1033 msgid "about a year ago" msgstr "fa un any" diff --git a/locale/cs/LC_MESSAGES/statusnet.po b/locale/cs/LC_MESSAGES/statusnet.po index 9137d37083..f4d284ee97 100644 --- a/locale/cs/LC_MESSAGES/statusnet.po +++ b/locale/cs/LC_MESSAGES/statusnet.po @@ -9,19 +9,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-02 21:02+0000\n" -"PO-Revision-Date: 2010-03-02 21:02:27+0000\n" +"POT-Creation-Date: 2010-03-04 18:55+0000\n" +"PO-Revision-Date: 2010-03-04 18:56:05+0000\n" "Language-Team: Czech\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: cs\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n< =4) ? 1 : 2 ;\n" #. TRANS: Page title -#: actions/accessadminpanel.php:55 +#. TRANS: Menu item for site administration +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 #, fuzzy msgid "Access" msgstr "Přijmout" @@ -124,7 +125,7 @@ msgstr "%s a přátelé" #. TRANS: Page title. %1$s is user nickname #. TRANS: H1 text. %1$s is user nickname -#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -179,7 +180,7 @@ msgid "" msgstr "" #. TRANS: H1 text -#: actions/all.php:174 +#: actions/all.php:178 #, fuzzy msgid "You and friends" msgstr "%s a přátelé" @@ -207,11 +208,11 @@ msgstr "" #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 -#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 +#: actions/apitimelinegroup.php:160 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:148 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 #, fuzzy msgid "API method not found." msgstr "Potvrzující kód nebyl nalezen" @@ -580,7 +581,7 @@ msgid "" "give access to your %4$s account to third parties you trust." msgstr "" -#: actions/apioauthauthorize.php:310 +#: actions/apioauthauthorize.php:310 lib/action.php:438 #, fuzzy msgid "Account" msgstr "O nás" @@ -673,18 +674,6 @@ msgstr "%1 statusů na %2" msgid "%1$s updates favorited by %2$s / %2$s." msgstr "Mikroblog od %s" -#: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:138 actions/userrss.php:90 -#, php-format -msgid "%s timeline" -msgstr "" - -#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 -#: actions/userrss.php:92 -#, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "" - #: actions/apitimelinementions.php:117 #, fuzzy, php-format msgid "%1$s / Updates mentioning %2$s" @@ -695,12 +684,12 @@ msgstr "%1 statusů na %2" msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "" -#: actions/apitimelinepublic.php:111 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "" -#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "" @@ -954,7 +943,7 @@ msgid "Conversation" msgstr "Umístění" #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:216 lib/searchgroupnav.php:82 +#: lib/profileaction.php:218 lib/searchgroupnav.php:82 msgid "Notices" msgstr "Sdělení" @@ -976,7 +965,7 @@ msgstr "Neodeslal jste nám profil" #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1228 +#: lib/action.php:1217 msgid "There was a problem with your session token." msgstr "" @@ -1175,8 +1164,9 @@ msgstr "" #: actions/designadminpanel.php:586 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 +#: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:208 #: actions/tagother.php:154 actions/useradminpanel.php:294 #: lib/applicationeditform.php:333 lib/applicationeditform.php:334 #: lib/designsettings.php:256 lib/groupeditform.php:202 @@ -1301,7 +1291,7 @@ msgstr "Text je příliš dlouhý (maximální délka je 140 zanků)" msgid "Could not update group." msgstr "Nelze aktualizovat uživatele" -#: actions/editgroup.php:264 classes/User_group.php:478 +#: actions/editgroup.php:264 classes/User_group.php:493 #, fuzzy msgid "Could not create aliases." msgstr "Nelze uložin informace o obrázku" @@ -1424,7 +1414,7 @@ msgid "Cannot normalize that email address" msgstr "" #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:143 +#: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Není platnou mailovou adresou." @@ -1619,6 +1609,25 @@ msgstr "Žádné takové oznámení." msgid "Cannot read file." msgstr "Žádné takové oznámení." +#: actions/grantrole.php:62 actions/revokerole.php:62 +#, fuzzy +msgid "Invalid role." +msgstr "Neplatná velikost" + +#: actions/grantrole.php:66 actions/revokerole.php:66 +msgid "This role is reserved and cannot be set." +msgstr "" + +#: actions/grantrole.php:75 +#, fuzzy +msgid "You cannot grant user roles on this site." +msgstr "Neodeslal jste nám profil" + +#: actions/grantrole.php:82 +#, fuzzy +msgid "User already has this role." +msgstr "Uživatel nemá profil." + #: actions/groupblock.php:71 actions/groupunblock.php:71 #: actions/makeadmin.php:71 actions/subedit.php:46 #: lib/profileformaction.php:70 @@ -1770,12 +1779,18 @@ msgstr "" msgid "Make this user an admin" msgstr "" +#: actions/grouprss.php:138 actions/userrss.php:90 +#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#, php-format +msgid "%s timeline" +msgstr "" + #: actions/grouprss.php:140 #, fuzzy, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Mikroblog od %s" -#: actions/groups.php:62 lib/profileaction.php:210 lib/profileaction.php:230 +#: actions/groups.php:62 lib/profileaction.php:212 lib/profileaction.php:232 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" msgstr "Skupiny" @@ -2357,8 +2372,8 @@ msgstr "Připojit" msgid "Only " msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 -#: lib/apiaction.php:1068 lib/apiaction.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1042 +#: lib/apiaction.php:1070 lib/apiaction.php:1179 msgid "Not a supported data format." msgstr "" @@ -2506,7 +2521,8 @@ msgstr "Nelze uložit nové heslo" msgid "Password saved." msgstr "Heslo uloženo" -#: actions/pathsadminpanel.php:59 +#. TRANS: Menu item for site administration +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 msgid "Paths" msgstr "" @@ -2632,7 +2648,7 @@ msgstr "" msgid "SSL" msgstr "" -#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 +#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202 #, fuzzy msgid "Never" msgstr "Obnovit" @@ -2691,11 +2707,11 @@ msgstr "Není platnou mailovou adresou." msgid "Users self-tagged with %1$s - page %2$d" msgstr "Mikroblog od %s" -#: actions/postnotice.php:84 +#: actions/postnotice.php:95 msgid "Invalid notice content" msgstr "Neplatný obsah sdělení" -#: actions/postnotice.php:90 +#: actions/postnotice.php:101 #, php-format msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" @@ -2774,7 +2790,7 @@ msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" -#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 +#: actions/profilesettings.php:151 msgid "Language" msgstr "Jazyk" @@ -2800,7 +2816,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "Text je příliš dlouhý (maximální délka je 140 zanků)" -#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:151 msgid "Timezone not selected." msgstr "" @@ -3107,7 +3123,7 @@ msgid "Same as password above. Required." msgstr "" #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 msgid "Email" msgstr "Email" @@ -3198,7 +3214,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "Adresa profilu na jiných kompatibilních mikroblozích." #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:368 +#: lib/userprofile.php:394 msgid "Subscribe" msgstr "Odebírat" @@ -3301,6 +3317,16 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "Odpovědi na %s" +#: actions/revokerole.php:75 +#, fuzzy +msgid "You cannot revoke user roles on this site." +msgstr "Neodeslal jste nám profil" + +#: actions/revokerole.php:82 +#, fuzzy +msgid "User doesn't have this role." +msgstr "Uživatel nemá profil." + #: actions/rsd.php:146 actions/version.php:157 #, fuzzy msgid "StatusNet" @@ -3316,7 +3342,9 @@ msgstr "Neodeslal jste nám profil" msgid "User is already sandboxed." msgstr "Uživatel nemá profil." +#. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:390 msgid "Sessions" msgstr "" @@ -3340,7 +3368,7 @@ msgstr "" msgid "Turn on debugging output for sessions." msgstr "" -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/useradminpanel.php:294 #, fuzzy msgid "Save site settings" @@ -3376,8 +3404,8 @@ msgstr "Umístění" msgid "Description" msgstr "Odběry" -#: actions/showapplication.php:192 actions/showgroup.php:437 -#: lib/profileaction.php:174 +#: actions/showapplication.php:192 actions/showgroup.php:438 +#: lib/profileaction.php:176 msgid "Statistics" msgstr "Statistiky" @@ -3510,47 +3538,47 @@ msgstr "" msgid "Group actions" msgstr "" -#: actions/showgroup.php:336 +#: actions/showgroup.php:337 #, fuzzy, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Feed sdělení pro %s" -#: actions/showgroup.php:342 +#: actions/showgroup.php:343 #, fuzzy, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Feed sdělení pro %s" -#: actions/showgroup.php:348 +#: actions/showgroup.php:349 #, fuzzy, php-format msgid "Notice feed for %s group (Atom)" msgstr "Feed sdělení pro %s" -#: actions/showgroup.php:353 +#: actions/showgroup.php:354 #, fuzzy, php-format msgid "FOAF for %s group" msgstr "Feed sdělení pro %s" -#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 +#: actions/showgroup.php:390 actions/showgroup.php:447 lib/groupnav.php:91 #, fuzzy msgid "Members" msgstr "Členem od" -#: actions/showgroup.php:394 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 +#: actions/showgroup.php:395 lib/profileaction.php:117 +#: lib/profileaction.php:150 lib/profileaction.php:238 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "" -#: actions/showgroup.php:400 +#: actions/showgroup.php:401 msgid "All members" msgstr "" -#: actions/showgroup.php:440 +#: actions/showgroup.php:441 #, fuzzy msgid "Created" msgstr "Vytvořit" -#: actions/showgroup.php:456 +#: actions/showgroup.php:457 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3560,7 +3588,7 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showgroup.php:462 +#: actions/showgroup.php:463 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3569,7 +3597,7 @@ msgid "" "their life and interests. " msgstr "" -#: actions/showgroup.php:490 +#: actions/showgroup.php:491 msgid "Admins" msgstr "" @@ -3681,150 +3709,138 @@ msgid "User is already silenced." msgstr "Uživatel nemá profil." #: actions/siteadminpanel.php:69 -msgid "Basic settings for this StatusNet site." +msgid "Basic settings for this StatusNet site" msgstr "" -#: actions/siteadminpanel.php:132 +#: actions/siteadminpanel.php:133 msgid "Site name must have non-zero length." msgstr "" -#: actions/siteadminpanel.php:140 +#: actions/siteadminpanel.php:141 #, fuzzy msgid "You must have a valid contact email address." msgstr "Není platnou mailovou adresou." -#: actions/siteadminpanel.php:158 +#: actions/siteadminpanel.php:159 #, php-format msgid "Unknown language \"%s\"." msgstr "" #: actions/siteadminpanel.php:165 -msgid "Invalid snapshot report URL." -msgstr "" - -#: actions/siteadminpanel.php:171 -msgid "Invalid snapshot run value." -msgstr "" - -#: actions/siteadminpanel.php:177 -msgid "Snapshot frequency must be a number." -msgstr "" - -#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "" -#: actions/siteadminpanel.php:189 +#: actions/siteadminpanel.php:171 msgid "Dupe limit must 1 or more seconds." msgstr "" -#: actions/siteadminpanel.php:239 +#: actions/siteadminpanel.php:221 msgid "General" msgstr "" -#: actions/siteadminpanel.php:242 +#: actions/siteadminpanel.php:224 #, fuzzy msgid "Site name" msgstr "Nové sdělení" -#: actions/siteadminpanel.php:243 +#: actions/siteadminpanel.php:225 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "" -#: actions/siteadminpanel.php:247 +#: actions/siteadminpanel.php:229 msgid "Brought by" msgstr "" -#: actions/siteadminpanel.php:248 +#: actions/siteadminpanel.php:230 msgid "Text used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:252 +#: actions/siteadminpanel.php:234 msgid "Brought by URL" msgstr "" -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:235 msgid "URL used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:239 #, fuzzy msgid "Contact email address for your site" msgstr "Žádný registrovaný email pro tohoto uživatele." -#: actions/siteadminpanel.php:263 +#: actions/siteadminpanel.php:245 #, fuzzy msgid "Local" msgstr "Umístění" -#: actions/siteadminpanel.php:274 +#: actions/siteadminpanel.php:256 msgid "Default timezone" msgstr "" -#: actions/siteadminpanel.php:275 +#: actions/siteadminpanel.php:257 msgid "Default timezone for the site; usually UTC." msgstr "" -#: actions/siteadminpanel.php:281 -msgid "Default site language" +#: actions/siteadminpanel.php:262 +msgid "Default language" msgstr "" -#: actions/siteadminpanel.php:289 -msgid "Snapshots" +#: actions/siteadminpanel.php:263 +msgid "Site language when autodetection from browser settings is not available" msgstr "" -#: actions/siteadminpanel.php:292 -msgid "Randomly during Web hit" -msgstr "" - -#: actions/siteadminpanel.php:293 -msgid "In a scheduled job" -msgstr "" - -#: actions/siteadminpanel.php:295 -msgid "Data snapshots" -msgstr "" - -#: actions/siteadminpanel.php:296 -msgid "When to send statistical data to status.net servers" -msgstr "" - -#: actions/siteadminpanel.php:301 -msgid "Frequency" -msgstr "" - -#: actions/siteadminpanel.php:302 -msgid "Snapshots will be sent once every N web hits" -msgstr "" - -#: actions/siteadminpanel.php:307 -msgid "Report URL" -msgstr "" - -#: actions/siteadminpanel.php:308 -msgid "Snapshots will be sent to this URL" -msgstr "" - -#: actions/siteadminpanel.php:315 +#: actions/siteadminpanel.php:271 msgid "Limits" msgstr "" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Text limit" msgstr "" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Maximum number of characters for notices." msgstr "" -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "Dupe limit" msgstr "" -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" +#: actions/sitenoticeadminpanel.php:56 +#, fuzzy +msgid "Site Notice" +msgstr "Nové sdělení" + +#: actions/sitenoticeadminpanel.php:67 +msgid "Edit site-wide message" +msgstr "" + +#: actions/sitenoticeadminpanel.php:103 +#, fuzzy +msgid "Unable to save site notice." +msgstr "Problém při ukládání sdělení" + +#: actions/sitenoticeadminpanel.php:113 +msgid "Max length for the site-wide notice is 255 chars" +msgstr "" + +#: actions/sitenoticeadminpanel.php:176 +#, fuzzy +msgid "Site notice text" +msgstr "Nové sdělení" + +#: actions/sitenoticeadminpanel.php:178 +msgid "Site-wide notice text (255 chars max; HTML okay)" +msgstr "" + +#: actions/sitenoticeadminpanel.php:198 +#, fuzzy +msgid "Save site notice" +msgstr "Nové sdělení" + #: actions/smssettings.php:58 #, fuzzy msgid "SMS settings" @@ -3921,6 +3937,66 @@ msgstr "" msgid "No code entered" msgstr "" +#. TRANS: Menu item for site administration +#: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 +#: lib/adminpanelaction.php:406 +msgid "Snapshots" +msgstr "" + +#: actions/snapshotadminpanel.php:65 +#, fuzzy +msgid "Manage snapshot configuration" +msgstr "Odběry" + +#: actions/snapshotadminpanel.php:127 +msgid "Invalid snapshot run value." +msgstr "" + +#: actions/snapshotadminpanel.php:133 +msgid "Snapshot frequency must be a number." +msgstr "" + +#: actions/snapshotadminpanel.php:144 +msgid "Invalid snapshot report URL." +msgstr "" + +#: actions/snapshotadminpanel.php:200 +msgid "Randomly during Web hit" +msgstr "" + +#: actions/snapshotadminpanel.php:201 +msgid "In a scheduled job" +msgstr "" + +#: actions/snapshotadminpanel.php:206 +msgid "Data snapshots" +msgstr "" + +#: actions/snapshotadminpanel.php:208 +msgid "When to send statistical data to status.net servers" +msgstr "" + +#: actions/snapshotadminpanel.php:217 +msgid "Frequency" +msgstr "" + +#: actions/snapshotadminpanel.php:218 +msgid "Snapshots will be sent once every N web hits" +msgstr "" + +#: actions/snapshotadminpanel.php:226 +msgid "Report URL" +msgstr "" + +#: actions/snapshotadminpanel.php:227 +msgid "Snapshots will be sent to this URL" +msgstr "" + +#: actions/snapshotadminpanel.php:248 +#, fuzzy +msgid "Save snapshot settings" +msgstr "Nastavení" + #: actions/subedit.php:70 #, fuzzy msgid "You are not subscribed to that profile." @@ -4129,7 +4205,7 @@ msgstr "Nebylo vráceno žádné URL profilu od servu." msgid "Unsubscribed" msgstr "Odhlásit" -#: actions/updateprofile.php:62 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -4336,16 +4412,22 @@ msgstr "Všechny odběry" msgid "Search for more groups" msgstr "" -#: actions/usergroups.php:153 +#: actions/usergroups.php:157 #, fuzzy, php-format msgid "%s is not a member of any group." msgstr "Neodeslal jste nám profil" -#: actions/usergroups.php:158 +#: actions/usergroups.php:162 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" +#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: lib/atomusernoticefeed.php:72 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "" + #: actions/version.php:73 #, fuzzy, php-format msgid "StatusNet %s" @@ -4389,7 +4471,7 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:196 lib/action.php:778 +#: actions/version.php:196 lib/action.php:767 #, fuzzy msgid "Version" msgstr "Osobní" @@ -4457,41 +4539,41 @@ msgstr "" msgid "DB error inserting hashtag: %s" msgstr "" -#: classes/Notice.php:239 +#: classes/Notice.php:241 #, fuzzy msgid "Problem saving notice. Too long." msgstr "Problém při ukládání sdělení" -#: classes/Notice.php:243 +#: classes/Notice.php:245 #, fuzzy msgid "Problem saving notice. Unknown user." msgstr "Problém při ukládání sdělení" -#: classes/Notice.php:248 +#: classes/Notice.php:250 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: classes/Notice.php:254 +#: classes/Notice.php:256 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." msgstr "" -#: classes/Notice.php:260 +#: classes/Notice.php:262 msgid "You are banned from posting notices on this site." msgstr "" -#: classes/Notice.php:326 classes/Notice.php:352 +#: classes/Notice.php:328 classes/Notice.php:354 msgid "Problem saving notice." msgstr "Problém při ukládání sdělení" -#: classes/Notice.php:911 +#: classes/Notice.php:927 #, fuzzy msgid "Problem saving group inbox." msgstr "Problém při ukládání sdělení" -#: classes/Notice.php:1442 +#: classes/Notice.php:1459 #, php-format msgid "RT @%1$s %2$s" msgstr "" @@ -4519,7 +4601,12 @@ msgstr "Nepřihlášen!" msgid "Couldn't delete self-subscription." msgstr "Nelze smazat odebírání" -#: classes/Subscription.php:179 lib/subs.php:69 +#: classes/Subscription.php:190 +#, fuzzy +msgid "Couldn't delete subscription OMB token." +msgstr "Nelze smazat odebírání" + +#: classes/Subscription.php:201 lib/subs.php:69 msgid "Couldn't delete subscription." msgstr "Nelze smazat odebírání" @@ -4528,22 +4615,22 @@ msgstr "Nelze smazat odebírání" msgid "Welcome to %1$s, @%2$s!" msgstr "" -#: classes/User_group.php:462 +#: classes/User_group.php:477 #, fuzzy msgid "Could not create group." msgstr "Nelze uložin informace o obrázku" -#: classes/User_group.php:471 +#: classes/User_group.php:486 #, fuzzy msgid "Could not set group URI." msgstr "Nelze vytvořit odebírat" -#: classes/User_group.php:492 +#: classes/User_group.php:507 #, fuzzy msgid "Could not set group membership." msgstr "Nelze vytvořit odebírat" -#: classes/User_group.php:506 +#: classes/User_group.php:521 #, fuzzy msgid "Could not save local group info." msgstr "Nelze vytvořit odebírat" @@ -4587,192 +4674,186 @@ msgstr "%1 statusů na %2" msgid "Untitled page" msgstr "" -#: lib/action.php:433 +#: lib/action.php:424 msgid "Primary site navigation" msgstr "" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:439 +#: lib/action.php:430 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:442 +#: lib/action.php:433 #, fuzzy msgctxt "MENU" msgid "Personal" msgstr "Osobní" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:444 +#: lib/action.php:435 #, fuzzy msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Změnit heslo" -#: lib/action.php:447 -#, fuzzy -msgctxt "MENU" -msgid "Account" -msgstr "O nás" - #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:450 +#: lib/action.php:440 #, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Nelze přesměrovat na server: %s" -#: lib/action.php:453 +#: lib/action.php:443 #, fuzzy -msgctxt "MENU" msgid "Connect" msgstr "Připojit" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:457 +#: lib/action.php:446 #, fuzzy msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Odběry" -#: lib/action.php:460 +#: lib/action.php:449 msgctxt "MENU" msgid "Admin" msgstr "" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:464 +#: lib/action.php:453 #, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "" -#: lib/action.php:467 +#: lib/action.php:456 #, fuzzy msgctxt "MENU" msgid "Invite" msgstr "Neplatná velikost" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:473 +#: lib/action.php:462 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "" -#: lib/action.php:476 +#: lib/action.php:465 #, fuzzy msgctxt "MENU" msgid "Logout" msgstr "Odhlásit" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:481 +#: lib/action.php:470 #, fuzzy msgctxt "TOOLTIP" msgid "Create an account" msgstr "Vytvořit nový účet" -#: lib/action.php:484 +#: lib/action.php:473 #, fuzzy msgctxt "MENU" msgid "Register" msgstr "Registrovat" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:487 +#: lib/action.php:476 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "" -#: lib/action.php:490 +#: lib/action.php:479 #, fuzzy msgctxt "MENU" msgid "Login" msgstr "Přihlásit" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:493 +#: lib/action.php:482 #, fuzzy msgctxt "TOOLTIP" msgid "Help me!" msgstr "Pomoci mi!" -#: lib/action.php:496 +#: lib/action.php:485 #, fuzzy msgctxt "MENU" msgid "Help" msgstr "Nápověda" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:499 +#: lib/action.php:488 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "" -#: lib/action.php:502 +#: lib/action.php:491 #, fuzzy msgctxt "MENU" msgid "Search" msgstr "Hledat" #. TRANS: DT element for site notice. String is hidden in default CSS. -#: lib/action.php:524 +#. TRANS: Menu item for site administration +#: lib/action.php:513 lib/adminpanelaction.php:398 #, fuzzy msgid "Site notice" msgstr "Nové sdělení" -#: lib/action.php:590 +#: lib/action.php:579 msgid "Local views" msgstr "" -#: lib/action.php:656 +#: lib/action.php:645 #, fuzzy msgid "Page notice" msgstr "Nové sdělení" -#: lib/action.php:758 +#: lib/action.php:747 #, fuzzy msgid "Secondary site navigation" msgstr "Odběry" -#: lib/action.php:763 +#: lib/action.php:752 msgid "Help" msgstr "Nápověda" -#: lib/action.php:765 +#: lib/action.php:754 msgid "About" msgstr "O nás" -#: lib/action.php:767 +#: lib/action.php:756 msgid "FAQ" msgstr "FAQ" -#: lib/action.php:771 +#: lib/action.php:760 msgid "TOS" msgstr "" -#: lib/action.php:774 +#: lib/action.php:763 msgid "Privacy" msgstr "Soukromí" -#: lib/action.php:776 +#: lib/action.php:765 msgid "Source" msgstr "Zdroj" -#: lib/action.php:780 +#: lib/action.php:769 msgid "Contact" msgstr "Kontakt" -#: lib/action.php:782 +#: lib/action.php:771 msgid "Badge" msgstr "" -#: lib/action.php:810 +#: lib/action.php:799 msgid "StatusNet software license" msgstr "" -#: lib/action.php:813 +#: lib/action.php:802 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4781,12 +4862,12 @@ msgstr "" "**%%site.name%%** je služba microblogů, kterou pro vás poskytuje [%%site." "broughtby%%](%%site.broughtbyurl%%). " -#: lib/action.php:815 +#: lib/action.php:804 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** je služba mikroblogů." -#: lib/action.php:817 +#: lib/action.php:806 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4797,56 +4878,56 @@ msgstr "" "dostupná pod [GNU Affero General Public License](http://www.fsf.org/" "licensing/licenses/agpl-3.0.html)." -#: lib/action.php:832 +#: lib/action.php:821 #, fuzzy msgid "Site content license" msgstr "Nové sdělení" -#: lib/action.php:837 +#: lib/action.php:826 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:842 +#: lib/action.php:831 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:845 +#: lib/action.php:834 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" -#: lib/action.php:858 +#: lib/action.php:847 msgid "All " msgstr "" -#: lib/action.php:864 +#: lib/action.php:853 msgid "license." msgstr "" -#: lib/action.php:1163 +#: lib/action.php:1152 msgid "Pagination" msgstr "" -#: lib/action.php:1172 +#: lib/action.php:1161 #, fuzzy msgid "After" msgstr "« Novější" -#: lib/action.php:1180 +#: lib/action.php:1169 #, fuzzy msgid "Before" msgstr "Starší »" -#: lib/activity.php:449 +#: lib/activity.php:453 msgid "Can't handle remote content yet." msgstr "" -#: lib/activity.php:477 +#: lib/activity.php:481 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activity.php:481 +#: lib/activity.php:485 msgid "Can't handle embedded Base64 content yet." msgstr "" @@ -4861,95 +4942,86 @@ msgid "Changes to that panel are not allowed." msgstr "" #. TRANS: Client error message -#: lib/adminpanelaction.php:211 +#: lib/adminpanelaction.php:229 msgid "showForm() not implemented." msgstr "" #. TRANS: Client error message -#: lib/adminpanelaction.php:241 +#: lib/adminpanelaction.php:259 msgid "saveSettings() not implemented." msgstr "" #. TRANS: Client error message -#: lib/adminpanelaction.php:265 +#: lib/adminpanelaction.php:283 msgid "Unable to delete design setting." msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:330 +#: lib/adminpanelaction.php:348 #, fuzzy msgid "Basic site configuration" msgstr "Potvrzení emailové adresy" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:332 +#: lib/adminpanelaction.php:350 #, fuzzy msgctxt "MENU" msgid "Site" msgstr "Nové sdělení" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:338 +#: lib/adminpanelaction.php:356 #, fuzzy msgid "Design configuration" msgstr "Potvrzení emailové adresy" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:340 +#: lib/adminpanelaction.php:358 #, fuzzy msgctxt "MENU" msgid "Design" msgstr "Vzhled" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:346 +#: lib/adminpanelaction.php:364 #, fuzzy msgid "User configuration" msgstr "Potvrzení emailové adresy" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:348 -msgctxt "MENU" +#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 msgid "User" msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:354 +#: lib/adminpanelaction.php:372 #, fuzzy msgid "Access configuration" msgstr "Potvrzení emailové adresy" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:356 -#, fuzzy -msgctxt "MENU" -msgid "Access" -msgstr "Přijmout" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:362 +#: lib/adminpanelaction.php:380 #, fuzzy msgid "Paths configuration" msgstr "Potvrzení emailové adresy" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:364 -msgctxt "MENU" -msgid "Paths" -msgstr "" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:370 +#: lib/adminpanelaction.php:388 #, fuzzy msgid "Sessions configuration" msgstr "Potvrzení emailové adresy" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:372 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:396 #, fuzzy -msgctxt "MENU" -msgid "Sessions" -msgstr "Osobní" +msgid "Edit site notice" +msgstr "Nové sdělení" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:404 +#, fuzzy +msgid "Snapshots configuration" +msgstr "Potvrzení emailové adresy" #: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." @@ -5456,6 +5528,11 @@ msgstr "" msgid "Go" msgstr "" +#: lib/grantroleform.php:91 +#, php-format +msgid "Grant this user the \"%s\" role" +msgstr "" + #: lib/groupeditform.php:163 #, fuzzy msgid "URL of the homepage or blog of the group or topic" @@ -6005,10 +6082,6 @@ msgstr "Odpovědi" msgid "Favorites" msgstr "Oblíbené" -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "" - #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "" @@ -6034,7 +6107,7 @@ msgstr "" msgid "Unknown" msgstr "" -#: lib/profileaction.php:109 lib/profileaction.php:192 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:194 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Odběry" @@ -6042,23 +6115,23 @@ msgstr "Odběry" msgid "All subscriptions" msgstr "Všechny odběry" -#: lib/profileaction.php:140 lib/profileaction.php:201 lib/subgroupnav.php:90 +#: lib/profileaction.php:142 lib/profileaction.php:203 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Odběratelé" -#: lib/profileaction.php:157 +#: lib/profileaction.php:159 msgid "All subscribers" msgstr "Všichni odběratelé" -#: lib/profileaction.php:178 +#: lib/profileaction.php:180 msgid "User ID" msgstr "" -#: lib/profileaction.php:183 +#: lib/profileaction.php:185 msgid "Member since" msgstr "Členem od" -#: lib/profileaction.php:245 +#: lib/profileaction.php:247 msgid "All groups" msgstr "" @@ -6102,7 +6175,12 @@ msgstr "Odstranit toto oznámení" msgid "Repeat this notice" msgstr "Odstranit toto oznámení" -#: lib/router.php:668 +#: lib/revokeroleform.php:91 +#, fuzzy, php-format +msgid "Revoke the \"%s\" role from this user" +msgstr "Žádný takový uživatel." + +#: lib/router.php:671 msgid "No single user defined for single-user mode." msgstr "" @@ -6264,47 +6342,62 @@ msgstr "Zpráva" msgid "Moderate" msgstr "" -#: lib/util.php:1013 +#: lib/userprofile.php:352 +#, fuzzy +msgid "User role" +msgstr "Uživatel nemá profil." + +#: lib/userprofile.php:354 +msgctxt "role" +msgid "Administrator" +msgstr "" + +#: lib/userprofile.php:355 +msgctxt "role" +msgid "Moderator" +msgstr "" + +#: lib/util.php:1015 msgid "a few seconds ago" msgstr "před pár sekundami" -#: lib/util.php:1015 +#: lib/util.php:1017 msgid "about a minute ago" msgstr "asi před minutou" -#: lib/util.php:1017 +#: lib/util.php:1019 #, php-format msgid "about %d minutes ago" msgstr "asi před %d minutami" -#: lib/util.php:1019 +#: lib/util.php:1021 msgid "about an hour ago" msgstr "asi před hodinou" -#: lib/util.php:1021 +#: lib/util.php:1023 #, php-format msgid "about %d hours ago" msgstr "asi před %d hodinami" -#: lib/util.php:1023 +#: lib/util.php:1025 msgid "about a day ago" msgstr "asi přede dnem" -#: lib/util.php:1025 +#: lib/util.php:1027 #, php-format msgid "about %d days ago" msgstr "před %d dny" -#: lib/util.php:1027 +#: lib/util.php:1029 msgid "about a month ago" msgstr "asi před měsícem" -#: lib/util.php:1029 +#: lib/util.php:1031 #, php-format msgid "about %d months ago" msgstr "asi před %d mesíci" -#: lib/util.php:1031 +#: lib/util.php:1033 msgid "about a year ago" msgstr "asi před rokem" diff --git a/locale/de/LC_MESSAGES/statusnet.po b/locale/de/LC_MESSAGES/statusnet.po index a00ec26113..f71b407d5e 100644 --- a/locale/de/LC_MESSAGES/statusnet.po +++ b/locale/de/LC_MESSAGES/statusnet.po @@ -14,19 +14,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-02 21:02+0000\n" -"PO-Revision-Date: 2010-03-02 21:02:31+0000\n" +"POT-Creation-Date: 2010-03-04 18:55+0000\n" +"PO-Revision-Date: 2010-03-04 18:56:08+0000\n" "Language-Team: German\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. TRANS: Page title -#: actions/accessadminpanel.php:55 +#. TRANS: Menu item for site administration +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 msgid "Access" msgstr "Zugang" @@ -124,7 +125,7 @@ msgstr "%1$s und Freunde, Seite% 2$d" #. TRANS: Page title. %1$s is user nickname #. TRANS: H1 text. %1$s is user nickname -#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -189,7 +190,7 @@ msgstr "" "erregen?" #. TRANS: H1 text -#: actions/all.php:174 +#: actions/all.php:178 msgid "You and friends" msgstr "Du und Freunde" @@ -216,11 +217,11 @@ msgstr "Aktualisierungen von %1$s und Freunden auf %2$s!" #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 -#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 +#: actions/apitimelinegroup.php:160 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:148 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 msgid "API method not found." msgstr "API-Methode nicht gefunden." @@ -581,7 +582,7 @@ msgid "" "give access to your %4$s account to third parties you trust." msgstr "" -#: actions/apioauthauthorize.php:310 +#: actions/apioauthauthorize.php:310 lib/action.php:438 msgid "Account" msgstr "Konto" @@ -672,18 +673,6 @@ msgstr "%s / Favoriten von %s" msgid "%1$s updates favorited by %2$s / %2$s." msgstr "%s Aktualisierung in den Favoriten von %s / %s." -#: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:138 actions/userrss.php:90 -#, php-format -msgid "%s timeline" -msgstr "%s Zeitleiste" - -#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 -#: 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:117 #, php-format msgid "%1$s / Updates mentioning %2$s" @@ -694,12 +683,12 @@ msgstr "%1$s / Aktualisierungen erwähnen %2$s" 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/apitimelinepublic.php:111 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "%s öffentliche Zeitleiste" -#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "%s Nachrichten von allen!" @@ -945,7 +934,7 @@ msgid "Conversation" msgstr "Unterhaltung" #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:216 lib/searchgroupnav.php:82 +#: lib/profileaction.php:218 lib/searchgroupnav.php:82 msgid "Notices" msgstr "Nachrichten" @@ -967,7 +956,7 @@ msgstr "Du bist kein Mitglied dieser Gruppe." #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1228 +#: lib/action.php:1217 msgid "There was a problem with your session token." msgstr "Es gab ein Problem mit deinem Sessiontoken." @@ -1161,8 +1150,9 @@ msgstr "Standard wiederherstellen" #: actions/designadminpanel.php:586 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 +#: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:208 #: actions/tagother.php:154 actions/useradminpanel.php:294 #: lib/applicationeditform.php:333 lib/applicationeditform.php:334 #: lib/designsettings.php:256 lib/groupeditform.php:202 @@ -1281,7 +1271,7 @@ msgstr "Die Beschreibung ist zu lang (max. %d Zeichen)." msgid "Could not update group." msgstr "Konnte Gruppe nicht aktualisieren." -#: actions/editgroup.php:264 classes/User_group.php:478 +#: actions/editgroup.php:264 classes/User_group.php:493 msgid "Could not create aliases." msgstr "Konnte keinen Favoriten erstellen." @@ -1407,7 +1397,7 @@ msgid "Cannot normalize that email address" msgstr "Konnte diese E-Mail-Adresse nicht normalisieren" #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:143 +#: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Ungültige E-Mail-Adresse." @@ -1594,6 +1584,25 @@ msgstr "Datei nicht gefunden." msgid "Cannot read file." msgstr "Datei konnte nicht gelesen werden." +#: actions/grantrole.php:62 actions/revokerole.php:62 +#, fuzzy +msgid "Invalid role." +msgstr "Ungültige Größe." + +#: actions/grantrole.php:66 actions/revokerole.php:66 +msgid "This role is reserved and cannot be set." +msgstr "" + +#: actions/grantrole.php:75 +#, fuzzy +msgid "You cannot grant user roles on this site." +msgstr "Du kannst diesem Benutzer keine Nachricht schicken." + +#: actions/grantrole.php:82 +#, fuzzy +msgid "User already has this role." +msgstr "Nutzer ist bereits ruhig gestellt." + #: actions/groupblock.php:71 actions/groupunblock.php:71 #: actions/makeadmin.php:71 actions/subedit.php:46 #: lib/profileformaction.php:70 @@ -1738,12 +1747,18 @@ msgstr "Zum Admin ernennen" msgid "Make this user an admin" msgstr "Diesen Benutzer zu einem Admin ernennen" +#: actions/grouprss.php:138 actions/userrss.php:90 +#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#, php-format +msgid "%s timeline" +msgstr "%s Zeitleiste" + #: actions/grouprss.php:140 #, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Aktualisierungen von %1$s auf %2$s!" -#: actions/groups.php:62 lib/profileaction.php:210 lib/profileaction.php:230 +#: actions/groups.php:62 lib/profileaction.php:212 lib/profileaction.php:232 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" msgstr "Gruppen" @@ -2369,8 +2384,8 @@ msgstr "Content-Typ " msgid "Only " msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 -#: lib/apiaction.php:1068 lib/apiaction.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1042 +#: lib/apiaction.php:1070 lib/apiaction.php:1179 msgid "Not a supported data format." msgstr "Kein unterstütztes Datenformat." @@ -2514,7 +2529,8 @@ msgstr "Konnte neues Passwort nicht speichern" msgid "Password saved." msgstr "Passwort gespeichert." -#: actions/pathsadminpanel.php:59 +#. TRANS: Menu item for site administration +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 msgid "Paths" msgstr "" @@ -2634,7 +2650,7 @@ msgstr "Hintergrund Verzeichnis" msgid "SSL" msgstr "SSL" -#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 +#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202 msgid "Never" msgstr "Nie" @@ -2690,11 +2706,11 @@ msgstr "Ungültiger Personen-Tag: %s" msgid "Users self-tagged with %1$s - page %2$d" msgstr "Benutzer die sich selbst mit %1$s getagged haben - Seite %2$d" -#: actions/postnotice.php:84 +#: actions/postnotice.php:95 msgid "Invalid notice content" msgstr "Ungültiger Nachrichteninhalt" -#: actions/postnotice.php:90 +#: actions/postnotice.php:101 #, php-format msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" @@ -2777,7 +2793,7 @@ msgstr "" "Tags über dich selbst (Buchstaben, Zahlen, -, ., und _) durch Kommas oder " "Leerzeichen getrennt" -#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 +#: actions/profilesettings.php:151 msgid "Language" msgstr "Sprache" @@ -2805,7 +2821,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "Die Biografie ist zu lang (max. %d Zeichen)" -#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:151 msgid "Timezone not selected." msgstr "Keine Zeitzone ausgewählt." @@ -3115,7 +3131,7 @@ msgid "Same as password above. Required." msgstr "Gleiches Passwort wie zuvor. Pflichteingabe." #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 msgid "Email" msgstr "E-Mail" @@ -3224,7 +3240,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "Profil-URL bei einem anderen kompatiblen Microbloggingdienst" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:368 +#: lib/userprofile.php:394 msgid "Subscribe" msgstr "Abonnieren" @@ -3329,6 +3345,16 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "Antworten an %1$s auf %2$s!" +#: actions/revokerole.php:75 +#, fuzzy +msgid "You cannot revoke user roles on this site." +msgstr "Du kannst Nutzer dieser Seite nicht ruhig stellen." + +#: actions/revokerole.php:82 +#, fuzzy +msgid "User doesn't have this role." +msgstr "Benutzer ohne passendes Profil" + #: actions/rsd.php:146 actions/version.php:157 msgid "StatusNet" msgstr "StatusNet" @@ -3343,7 +3369,9 @@ msgstr "Du kannst diesem Benutzer keine Nachricht schicken." msgid "User is already sandboxed." msgstr "Dieser Benutzer hat dich blockiert." +#. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:390 msgid "Sessions" msgstr "" @@ -3368,7 +3396,7 @@ msgstr "" msgid "Turn on debugging output for sessions." msgstr "" -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "Site-Einstellungen speichern" @@ -3402,8 +3430,8 @@ msgstr "Seitenerstellung" msgid "Description" msgstr "Beschreibung" -#: actions/showapplication.php:192 actions/showgroup.php:437 -#: lib/profileaction.php:174 +#: actions/showapplication.php:192 actions/showgroup.php:438 +#: lib/profileaction.php:176 msgid "Statistics" msgstr "Statistiken" @@ -3537,45 +3565,45 @@ msgstr "" msgid "Group actions" msgstr "Gruppenaktionen" -#: actions/showgroup.php:336 +#: actions/showgroup.php:337 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Nachrichtenfeed der Gruppe %s (RSS 1.0)" -#: actions/showgroup.php:342 +#: actions/showgroup.php:343 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Nachrichtenfeed der Gruppe %s (RSS 2.0)" -#: actions/showgroup.php:348 +#: actions/showgroup.php:349 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "Nachrichtenfeed der Gruppe %s (Atom)" -#: actions/showgroup.php:353 +#: actions/showgroup.php:354 #, php-format msgid "FOAF for %s group" msgstr "Postausgang von %s" -#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 +#: actions/showgroup.php:390 actions/showgroup.php:447 lib/groupnav.php:91 msgid "Members" msgstr "Mitglieder" -#: actions/showgroup.php:394 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 +#: actions/showgroup.php:395 lib/profileaction.php:117 +#: lib/profileaction.php:150 lib/profileaction.php:238 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(Kein)" -#: actions/showgroup.php:400 +#: actions/showgroup.php:401 msgid "All members" msgstr "Alle Mitglieder" -#: actions/showgroup.php:440 +#: actions/showgroup.php:441 msgid "Created" msgstr "Erstellt" -#: actions/showgroup.php:456 +#: actions/showgroup.php:457 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3585,7 +3613,7 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showgroup.php:462 +#: actions/showgroup.php:463 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3598,7 +3626,7 @@ msgstr "" "Freien Software [StatusNet](http://status.net/). Seine Mitglieder erstellen " "kurze Nachrichten über Ihr Leben und Interessen. " -#: actions/showgroup.php:490 +#: actions/showgroup.php:491 msgid "Admins" msgstr "Administratoren" @@ -3716,148 +3744,138 @@ msgid "User is already silenced." msgstr "Nutzer ist bereits ruhig gestellt." #: actions/siteadminpanel.php:69 -msgid "Basic settings for this StatusNet site." +#, fuzzy +msgid "Basic settings for this StatusNet site" msgstr "Grundeinstellungen für diese StatusNet Seite." -#: actions/siteadminpanel.php:132 +#: actions/siteadminpanel.php:133 msgid "Site name must have non-zero length." msgstr "Der Seiten Name darf nicht leer sein." -#: actions/siteadminpanel.php:140 +#: actions/siteadminpanel.php:141 msgid "You must have a valid contact email address." msgstr "Du musst eine gültige E-Mail-Adresse haben." -#: actions/siteadminpanel.php:158 +#: actions/siteadminpanel.php:159 #, php-format msgid "Unknown language \"%s\"." msgstr "Unbekannte Sprache „%s“" #: actions/siteadminpanel.php:165 -msgid "Invalid snapshot report URL." -msgstr "" - -#: actions/siteadminpanel.php:171 -msgid "Invalid snapshot run value." -msgstr "" - -#: actions/siteadminpanel.php:177 -msgid "Snapshot frequency must be a number." -msgstr "" - -#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "Minimale Textlänge ist 140 Zeichen." -#: actions/siteadminpanel.php:189 +#: actions/siteadminpanel.php:171 msgid "Dupe limit must 1 or more seconds." msgstr "" -#: actions/siteadminpanel.php:239 +#: actions/siteadminpanel.php:221 msgid "General" msgstr "" -#: actions/siteadminpanel.php:242 +#: actions/siteadminpanel.php:224 msgid "Site name" msgstr "Seitenname" -#: actions/siteadminpanel.php:243 +#: actions/siteadminpanel.php:225 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "Der Name deiner Seite, sowas wie \"DeinUnternehmen Mircoblog\"" -#: actions/siteadminpanel.php:247 +#: actions/siteadminpanel.php:229 msgid "Brought by" msgstr "" -#: actions/siteadminpanel.php:248 +#: actions/siteadminpanel.php:230 msgid "Text used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:252 +#: actions/siteadminpanel.php:234 msgid "Brought by URL" msgstr "" -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:235 msgid "URL used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:239 msgid "Contact email address for your site" msgstr "Kontakt-E-Mail-Adresse für Deine Site." -#: actions/siteadminpanel.php:263 +#: actions/siteadminpanel.php:245 #, fuzzy msgid "Local" msgstr "Lokale Ansichten" -#: actions/siteadminpanel.php:274 +#: actions/siteadminpanel.php:256 msgid "Default timezone" msgstr "" -#: actions/siteadminpanel.php:275 +#: actions/siteadminpanel.php:257 msgid "Default timezone for the site; usually UTC." msgstr "" -#: actions/siteadminpanel.php:281 +#: actions/siteadminpanel.php:262 #, fuzzy -msgid "Default site language" +msgid "Default language" msgstr "Bevorzugte Sprache" -#: actions/siteadminpanel.php:289 -msgid "Snapshots" +#: actions/siteadminpanel.php:263 +msgid "Site language when autodetection from browser settings is not available" msgstr "" -#: actions/siteadminpanel.php:292 -msgid "Randomly during Web hit" -msgstr "" - -#: actions/siteadminpanel.php:293 -msgid "In a scheduled job" -msgstr "" - -#: actions/siteadminpanel.php:295 -msgid "Data snapshots" -msgstr "" - -#: actions/siteadminpanel.php:296 -msgid "When to send statistical data to status.net servers" -msgstr "" - -#: actions/siteadminpanel.php:301 -msgid "Frequency" -msgstr "Frequenz" - -#: actions/siteadminpanel.php:302 -msgid "Snapshots will be sent once every N web hits" -msgstr "" - -#: actions/siteadminpanel.php:307 -msgid "Report URL" -msgstr "" - -#: actions/siteadminpanel.php:308 -msgid "Snapshots will be sent to this URL" -msgstr "" - -#: actions/siteadminpanel.php:315 +#: actions/siteadminpanel.php:271 msgid "Limits" msgstr "" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Text limit" msgstr "" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Maximum number of characters for notices." msgstr "" -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "Dupe limit" msgstr "" -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" +#: actions/sitenoticeadminpanel.php:56 +#, fuzzy +msgid "Site Notice" +msgstr "Seitennachricht" + +#: actions/sitenoticeadminpanel.php:67 +#, fuzzy +msgid "Edit site-wide message" +msgstr "Neue Nachricht" + +#: actions/sitenoticeadminpanel.php:103 +#, fuzzy +msgid "Unable to save site notice." +msgstr "Konnte Twitter-Einstellungen nicht speichern." + +#: actions/sitenoticeadminpanel.php:113 +msgid "Max length for the site-wide notice is 255 chars" +msgstr "" + +#: actions/sitenoticeadminpanel.php:176 +#, fuzzy +msgid "Site notice text" +msgstr "Seitennachricht" + +#: actions/sitenoticeadminpanel.php:178 +msgid "Site-wide notice text (255 chars max; HTML okay)" +msgstr "" + +#: actions/sitenoticeadminpanel.php:198 +#, fuzzy +msgid "Save site notice" +msgstr "Seitennachricht" + #: actions/smssettings.php:58 #, fuzzy msgid "SMS settings" @@ -3961,6 +3979,66 @@ msgstr "" msgid "No code entered" msgstr "Kein Code eingegeben" +#. TRANS: Menu item for site administration +#: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 +#: lib/adminpanelaction.php:406 +msgid "Snapshots" +msgstr "" + +#: actions/snapshotadminpanel.php:65 +#, fuzzy +msgid "Manage snapshot configuration" +msgstr "Hauptnavigation" + +#: actions/snapshotadminpanel.php:127 +msgid "Invalid snapshot run value." +msgstr "" + +#: actions/snapshotadminpanel.php:133 +msgid "Snapshot frequency must be a number." +msgstr "" + +#: actions/snapshotadminpanel.php:144 +msgid "Invalid snapshot report URL." +msgstr "" + +#: actions/snapshotadminpanel.php:200 +msgid "Randomly during Web hit" +msgstr "" + +#: actions/snapshotadminpanel.php:201 +msgid "In a scheduled job" +msgstr "" + +#: actions/snapshotadminpanel.php:206 +msgid "Data snapshots" +msgstr "" + +#: actions/snapshotadminpanel.php:208 +msgid "When to send statistical data to status.net servers" +msgstr "" + +#: actions/snapshotadminpanel.php:217 +msgid "Frequency" +msgstr "Frequenz" + +#: actions/snapshotadminpanel.php:218 +msgid "Snapshots will be sent once every N web hits" +msgstr "" + +#: actions/snapshotadminpanel.php:226 +msgid "Report URL" +msgstr "" + +#: actions/snapshotadminpanel.php:227 +msgid "Snapshots will be sent to this URL" +msgstr "" + +#: actions/snapshotadminpanel.php:248 +#, fuzzy +msgid "Save snapshot settings" +msgstr "Site-Einstellungen speichern" + #: actions/subedit.php:70 msgid "You are not subscribed to that profile." msgstr "Du hast dieses Profil nicht abonniert." @@ -4168,7 +4246,7 @@ msgstr "Keine Profil-ID in der Anfrage." msgid "Unsubscribed" msgstr "Abbestellt" -#: actions/updateprofile.php:62 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 actions/userauthorization.php:337 #, fuzzy, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -4373,16 +4451,22 @@ msgstr "%s Gruppen-Mitglieder, Seite %d" msgid "Search for more groups" msgstr "Suche nach weiteren Gruppen" -#: actions/usergroups.php:153 +#: actions/usergroups.php:157 #, php-format msgid "%s is not a member of any group." msgstr "%s ist in keiner Gruppe Mitglied." -#: actions/usergroups.php:158 +#: actions/usergroups.php:162 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" +#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: lib/atomusernoticefeed.php:72 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "Aktualisierungen von %1$s auf %2$s!" + #: actions/version.php:73 #, fuzzy, php-format msgid "StatusNet %s" @@ -4426,7 +4510,7 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:196 lib/action.php:778 +#: actions/version.php:196 lib/action.php:767 #, fuzzy msgid "Version" msgstr "Eigene" @@ -4496,22 +4580,22 @@ msgstr "Konnte Nachricht nicht mit neuer URI versehen." msgid "DB error inserting hashtag: %s" msgstr "Datenbankfehler beim Einfügen des Hashtags: %s" -#: classes/Notice.php:239 +#: classes/Notice.php:241 msgid "Problem saving notice. Too long." msgstr "Problem bei Speichern der Nachricht. Sie ist zu lang." -#: classes/Notice.php:243 +#: classes/Notice.php:245 msgid "Problem saving notice. Unknown user." msgstr "Problem bei Speichern der Nachricht. Unbekannter Benutzer." -#: classes/Notice.php:248 +#: classes/Notice.php:250 msgid "" "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." -#: classes/Notice.php:254 +#: classes/Notice.php:256 #, fuzzy msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " @@ -4520,21 +4604,21 @@ msgstr "" "Zu schnell zu viele Nachrichten; atme kurz durch und schicke sie erneut in " "ein paar Minuten ab." -#: classes/Notice.php:260 +#: classes/Notice.php:262 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:326 classes/Notice.php:352 +#: classes/Notice.php:328 classes/Notice.php:354 msgid "Problem saving notice." msgstr "Problem bei Speichern der Nachricht." -#: classes/Notice.php:911 +#: classes/Notice.php:927 #, fuzzy msgid "Problem saving group inbox." msgstr "Problem bei Speichern der Nachricht." -#: classes/Notice.php:1442 +#: classes/Notice.php:1459 #, fuzzy, php-format msgid "RT @%1$s %2$s" msgstr "%1$s (%2$s)" @@ -4561,7 +4645,12 @@ msgstr "Nicht abonniert!" msgid "Couldn't delete self-subscription." msgstr "Konnte Abonnement nicht löschen." -#: classes/Subscription.php:179 lib/subs.php:69 +#: classes/Subscription.php:190 +#, fuzzy +msgid "Couldn't delete subscription OMB token." +msgstr "Konnte Abonnement nicht löschen." + +#: classes/Subscription.php:201 lib/subs.php:69 msgid "Couldn't delete subscription." msgstr "Konnte Abonnement nicht löschen." @@ -4570,20 +4659,20 @@ msgstr "Konnte Abonnement nicht löschen." msgid "Welcome to %1$s, @%2$s!" msgstr "Herzlich willkommen bei %1$s, @%2$s!" -#: classes/User_group.php:462 +#: classes/User_group.php:477 msgid "Could not create group." msgstr "Konnte Gruppe nicht erstellen." -#: classes/User_group.php:471 +#: classes/User_group.php:486 #, fuzzy msgid "Could not set group URI." msgstr "Konnte Gruppenmitgliedschaft nicht setzen." -#: classes/User_group.php:492 +#: classes/User_group.php:507 msgid "Could not set group membership." msgstr "Konnte Gruppenmitgliedschaft nicht setzen." -#: classes/User_group.php:506 +#: classes/User_group.php:521 #, fuzzy msgid "Could not save local group info." msgstr "Konnte Abonnement nicht erstellen." @@ -4626,195 +4715,189 @@ msgstr "%1$s (%2$s)" msgid "Untitled page" msgstr "Seite ohne Titel" -#: lib/action.php:433 +#: lib/action.php:424 msgid "Primary site navigation" msgstr "Hauptnavigation" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:439 +#: lib/action.php:430 #, fuzzy msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Persönliches Profil und Freundes-Zeitleiste" -#: lib/action.php:442 +#: lib/action.php:433 #, fuzzy msgctxt "MENU" msgid "Personal" msgstr "Eigene" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:444 +#: lib/action.php:435 #, fuzzy msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Ändere deine E-Mail, dein Avatar, Passwort, Profil" -#: lib/action.php:447 -#, fuzzy -msgctxt "MENU" -msgid "Account" -msgstr "Konto" - #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:450 +#: lib/action.php:440 #, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Konnte nicht zum Server umleiten: %s" -#: lib/action.php:453 +#: lib/action.php:443 #, fuzzy -msgctxt "MENU" msgid "Connect" msgstr "Verbinden" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:457 +#: lib/action.php:446 #, fuzzy msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Hauptnavigation" -#: lib/action.php:460 +#: lib/action.php:449 #, fuzzy msgctxt "MENU" msgid "Admin" msgstr "Admin" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:464 +#: lib/action.php:453 #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Lade Freunde und Kollegen ein dir auf %s zu folgen" -#: lib/action.php:467 +#: lib/action.php:456 #, fuzzy msgctxt "MENU" msgid "Invite" msgstr "Einladen" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:473 +#: lib/action.php:462 #, fuzzy msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Von der Seite abmelden" -#: lib/action.php:476 +#: lib/action.php:465 #, fuzzy msgctxt "MENU" msgid "Logout" msgstr "Abmelden" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:481 +#: lib/action.php:470 #, fuzzy msgctxt "TOOLTIP" msgid "Create an account" msgstr "Neues Konto erstellen" -#: lib/action.php:484 +#: lib/action.php:473 #, fuzzy msgctxt "MENU" msgid "Register" msgstr "Registrieren" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:487 +#: lib/action.php:476 #, fuzzy msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Auf der Seite anmelden" -#: lib/action.php:490 +#: lib/action.php:479 #, fuzzy msgctxt "MENU" msgid "Login" msgstr "Anmelden" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:493 +#: lib/action.php:482 #, fuzzy msgctxt "TOOLTIP" msgid "Help me!" msgstr "Hilf mir!" -#: lib/action.php:496 +#: lib/action.php:485 #, fuzzy msgctxt "MENU" msgid "Help" msgstr "Hilfe" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:499 +#: lib/action.php:488 #, fuzzy msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Suche nach Leuten oder Text" -#: lib/action.php:502 +#: lib/action.php:491 #, fuzzy msgctxt "MENU" msgid "Search" msgstr "Suchen" #. TRANS: DT element for site notice. String is hidden in default CSS. -#: lib/action.php:524 +#. TRANS: Menu item for site administration +#: lib/action.php:513 lib/adminpanelaction.php:398 msgid "Site notice" msgstr "Seitennachricht" -#: lib/action.php:590 +#: lib/action.php:579 msgid "Local views" msgstr "Lokale Ansichten" -#: lib/action.php:656 +#: lib/action.php:645 msgid "Page notice" msgstr "Neue Nachricht" -#: lib/action.php:758 +#: lib/action.php:747 msgid "Secondary site navigation" msgstr "Unternavigation" -#: lib/action.php:763 +#: lib/action.php:752 msgid "Help" msgstr "Hilfe" -#: lib/action.php:765 +#: lib/action.php:754 msgid "About" msgstr "Über" -#: lib/action.php:767 +#: lib/action.php:756 msgid "FAQ" msgstr "FAQ" -#: lib/action.php:771 +#: lib/action.php:760 msgid "TOS" msgstr "AGB" -#: lib/action.php:774 +#: lib/action.php:763 msgid "Privacy" msgstr "Privatsphäre" -#: lib/action.php:776 +#: lib/action.php:765 msgid "Source" msgstr "Quellcode" -#: lib/action.php:780 +#: lib/action.php:769 msgid "Contact" msgstr "Kontakt" -#: lib/action.php:782 +#: lib/action.php:771 #, fuzzy msgid "Badge" msgstr "Stups" -#: lib/action.php:810 +#: lib/action.php:799 msgid "StatusNet software license" msgstr "StatusNet-Software-Lizenz" -#: lib/action.php:813 +#: lib/action.php:802 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4823,12 +4906,12 @@ msgstr "" "**%%site.name%%** ist ein Microbloggingdienst von [%%site.broughtby%%](%%" "site.broughtbyurl%%)." -#: lib/action.php:815 +#: lib/action.php:804 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** ist ein Microbloggingdienst." -#: lib/action.php:817 +#: lib/action.php:806 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4839,54 +4922,54 @@ msgstr "" "(Version %s) betrieben, die unter der [GNU Affero General Public License]" "(http://www.fsf.org/licensing/licenses/agpl-3.0.html) erhältlich ist." -#: lib/action.php:832 +#: lib/action.php:821 msgid "Site content license" msgstr "StatusNet-Software-Lizenz" -#: lib/action.php:837 +#: lib/action.php:826 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:842 +#: lib/action.php:831 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:845 +#: lib/action.php:834 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" -#: lib/action.php:858 +#: lib/action.php:847 #, fuzzy msgid "All " msgstr "Alle " -#: lib/action.php:864 +#: lib/action.php:853 msgid "license." msgstr "Lizenz." -#: lib/action.php:1163 +#: lib/action.php:1152 msgid "Pagination" msgstr "Seitenerstellung" -#: lib/action.php:1172 +#: lib/action.php:1161 msgid "After" msgstr "Später" -#: lib/action.php:1180 +#: lib/action.php:1169 msgid "Before" msgstr "Vorher" -#: lib/activity.php:449 +#: lib/activity.php:453 msgid "Can't handle remote content yet." msgstr "" -#: lib/activity.php:477 +#: lib/activity.php:481 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activity.php:481 +#: lib/activity.php:485 msgid "Can't handle embedded Base64 content yet." msgstr "" @@ -4903,97 +4986,86 @@ msgid "Changes to that panel are not allowed." msgstr "Registrierung nicht gestattet" #. TRANS: Client error message -#: lib/adminpanelaction.php:211 +#: lib/adminpanelaction.php:229 msgid "showForm() not implemented." msgstr "showForm() noch nicht implementiert." #. TRANS: Client error message -#: lib/adminpanelaction.php:241 +#: lib/adminpanelaction.php:259 msgid "saveSettings() not implemented." msgstr "saveSettings() noch nicht implementiert." #. TRANS: Client error message -#: lib/adminpanelaction.php:265 +#: lib/adminpanelaction.php:283 msgid "Unable to delete design setting." msgstr "Konnte die Design Einstellungen nicht löschen." #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:330 +#: lib/adminpanelaction.php:348 #, fuzzy msgid "Basic site configuration" msgstr "Bestätigung der E-Mail-Adresse" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:332 +#: lib/adminpanelaction.php:350 #, fuzzy msgctxt "MENU" msgid "Site" msgstr "Seite" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:338 +#: lib/adminpanelaction.php:356 #, fuzzy msgid "Design configuration" msgstr "SMS-Konfiguration" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:340 +#: lib/adminpanelaction.php:358 #, fuzzy msgctxt "MENU" msgid "Design" msgstr "Eigene" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:346 +#: lib/adminpanelaction.php:364 #, fuzzy msgid "User configuration" msgstr "SMS-Konfiguration" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:348 -#, fuzzy -msgctxt "MENU" +#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 msgid "User" msgstr "Benutzer" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:354 +#: lib/adminpanelaction.php:372 #, fuzzy msgid "Access configuration" msgstr "SMS-Konfiguration" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:356 -#, fuzzy -msgctxt "MENU" -msgid "Access" -msgstr "Zugang" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:362 +#: lib/adminpanelaction.php:380 #, fuzzy msgid "Paths configuration" msgstr "SMS-Konfiguration" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:364 -#, fuzzy -msgctxt "MENU" -msgid "Paths" -msgstr "Pfad" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:370 +#: lib/adminpanelaction.php:388 #, fuzzy msgid "Sessions configuration" msgstr "SMS-Konfiguration" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:372 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:396 #, fuzzy -msgctxt "MENU" -msgid "Sessions" -msgstr "Eigene" +msgid "Edit site notice" +msgstr "Seitennachricht" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:404 +#, fuzzy +msgid "Snapshots configuration" +msgstr "SMS-Konfiguration" #: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." @@ -5491,6 +5563,11 @@ msgstr "Wähle einen Tag, um die Liste einzuschränken" msgid "Go" msgstr "Los geht's" +#: lib/grantroleform.php:91 +#, php-format +msgid "Grant this user the \"%s\" role" +msgstr "" + #: lib/groupeditform.php:163 #, fuzzy msgid "URL of the homepage or blog of the group or topic" @@ -6086,10 +6163,6 @@ msgstr "Antworten" msgid "Favorites" msgstr "Favoriten" -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "Benutzer" - #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "Posteingang" @@ -6116,7 +6189,7 @@ msgstr "Tags in %ss Nachrichten" msgid "Unknown" msgstr "Unbekannter Befehl" -#: lib/profileaction.php:109 lib/profileaction.php:192 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:194 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Abonnements" @@ -6124,23 +6197,23 @@ msgstr "Abonnements" msgid "All subscriptions" msgstr "Alle Abonnements" -#: lib/profileaction.php:140 lib/profileaction.php:201 lib/subgroupnav.php:90 +#: lib/profileaction.php:142 lib/profileaction.php:203 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Abonnenten" -#: lib/profileaction.php:157 +#: lib/profileaction.php:159 msgid "All subscribers" msgstr "Alle Abonnenten" -#: lib/profileaction.php:178 +#: lib/profileaction.php:180 msgid "User ID" msgstr "Nutzer ID" -#: lib/profileaction.php:183 +#: lib/profileaction.php:185 msgid "Member since" msgstr "Mitglied seit" -#: lib/profileaction.php:245 +#: lib/profileaction.php:247 msgid "All groups" msgstr "Alle Gruppen" @@ -6181,7 +6254,12 @@ msgstr "Diese Nachricht wiederholen?" msgid "Repeat this notice" msgstr "Diese Nachricht wiederholen" -#: lib/router.php:668 +#: lib/revokeroleform.php:91 +#, fuzzy, php-format +msgid "Revoke the \"%s\" role from this user" +msgstr "Diesen Nutzer von der Gruppe sperren" + +#: lib/router.php:671 msgid "No single user defined for single-user mode." msgstr "" @@ -6336,47 +6414,64 @@ msgstr "Nachricht" msgid "Moderate" msgstr "Moderieren" -#: lib/util.php:1013 +#: lib/userprofile.php:352 +#, fuzzy +msgid "User role" +msgstr "Benutzerprofil" + +#: lib/userprofile.php:354 +#, fuzzy +msgctxt "role" +msgid "Administrator" +msgstr "Administratoren" + +#: lib/userprofile.php:355 +#, fuzzy +msgctxt "role" +msgid "Moderator" +msgstr "Moderieren" + +#: lib/util.php:1015 msgid "a few seconds ago" msgstr "vor wenigen Sekunden" -#: lib/util.php:1015 +#: lib/util.php:1017 msgid "about a minute ago" msgstr "vor einer Minute" -#: lib/util.php:1017 +#: lib/util.php:1019 #, php-format msgid "about %d minutes ago" msgstr "vor %d Minuten" -#: lib/util.php:1019 +#: lib/util.php:1021 msgid "about an hour ago" msgstr "vor einer Stunde" -#: lib/util.php:1021 +#: lib/util.php:1023 #, php-format msgid "about %d hours ago" msgstr "vor %d Stunden" -#: lib/util.php:1023 +#: lib/util.php:1025 msgid "about a day ago" msgstr "vor einem Tag" -#: lib/util.php:1025 +#: lib/util.php:1027 #, php-format msgid "about %d days ago" msgstr "vor %d Tagen" -#: lib/util.php:1027 +#: lib/util.php:1029 msgid "about a month ago" msgstr "vor einem Monat" -#: lib/util.php:1029 +#: lib/util.php:1031 #, php-format msgid "about %d months ago" msgstr "vor %d Monaten" -#: lib/util.php:1031 +#: lib/util.php:1033 msgid "about a year ago" msgstr "vor einem Jahr" diff --git a/locale/el/LC_MESSAGES/statusnet.po b/locale/el/LC_MESSAGES/statusnet.po index ed9ab78036..6b5c3973f8 100644 --- a/locale/el/LC_MESSAGES/statusnet.po +++ b/locale/el/LC_MESSAGES/statusnet.po @@ -9,19 +9,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-02 21:02+0000\n" -"PO-Revision-Date: 2010-03-02 21:02:33+0000\n" +"POT-Creation-Date: 2010-03-04 18:55+0000\n" +"PO-Revision-Date: 2010-03-04 18:56:10+0000\n" "Language-Team: Greek\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: el\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. TRANS: Page title -#: actions/accessadminpanel.php:55 +#. TRANS: Menu item for site administration +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 msgid "Access" msgstr "Πρόσβαση" @@ -120,7 +121,7 @@ msgstr "%s και οι φίλοι του/της" #. TRANS: Page title. %1$s is user nickname #. TRANS: H1 text. %1$s is user nickname -#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -175,7 +176,7 @@ msgid "" msgstr "" #. TRANS: H1 text -#: actions/all.php:174 +#: actions/all.php:178 msgid "You and friends" msgstr "Εσείς και οι φίλοι σας" @@ -202,11 +203,11 @@ msgstr "" #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 -#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 +#: actions/apitimelinegroup.php:160 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:148 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 #, fuzzy msgid "API method not found." msgstr "Η μέθοδος του ΑΡΙ δε βρέθηκε!" @@ -570,7 +571,7 @@ msgid "" "give access to your %4$s account to third parties you trust." msgstr "" -#: actions/apioauthauthorize.php:310 +#: actions/apioauthauthorize.php:310 lib/action.php:438 msgid "Account" msgstr "Λογαριασμός" @@ -659,18 +660,6 @@ msgstr "" msgid "%1$s updates favorited by %2$s / %2$s." msgstr "" -#: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:138 actions/userrss.php:90 -#, php-format -msgid "%s timeline" -msgstr "χρονοδιάγραμμα του χρήστη %s" - -#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 -#: actions/userrss.php:92 -#, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "" - #: actions/apitimelinementions.php:117 #, php-format msgid "%1$s / Updates mentioning %2$s" @@ -681,12 +670,12 @@ msgstr "" msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "" -#: actions/apitimelinepublic.php:111 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "" -#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "" @@ -934,7 +923,7 @@ msgid "Conversation" msgstr "Συζήτηση" #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:216 lib/searchgroupnav.php:82 +#: lib/profileaction.php:218 lib/searchgroupnav.php:82 msgid "Notices" msgstr "" @@ -956,7 +945,7 @@ msgstr "Ομάδες με τα περισσότερα μέλη" #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1228 +#: lib/action.php:1217 msgid "There was a problem with your session token." msgstr "" @@ -1152,8 +1141,9 @@ msgstr "" #: actions/designadminpanel.php:586 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 +#: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:208 #: actions/tagother.php:154 actions/useradminpanel.php:294 #: lib/applicationeditform.php:333 lib/applicationeditform.php:334 #: lib/designsettings.php:256 lib/groupeditform.php:202 @@ -1278,7 +1268,7 @@ msgstr "Το βιογραφικό είναι πολύ μεγάλο (μέγιστ msgid "Could not update group." msgstr "Αδύνατη η αποθήκευση του προφίλ." -#: actions/editgroup.php:264 classes/User_group.php:478 +#: actions/editgroup.php:264 classes/User_group.php:493 #, fuzzy msgid "Could not create aliases." msgstr "Αδύνατη η αποθήκευση του προφίλ." @@ -1404,7 +1394,7 @@ msgid "Cannot normalize that email address" msgstr "Αδυναμία κανονικοποίησης αυτής της email διεύθυνσης" #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:143 +#: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "" @@ -1596,6 +1586,24 @@ msgstr "Αδύνατη η αποθήκευση του προφίλ." msgid "Cannot read file." msgstr "Αδύνατη η αποθήκευση του προφίλ." +#: actions/grantrole.php:62 actions/revokerole.php:62 +#, fuzzy +msgid "Invalid role." +msgstr "Μήνυμα" + +#: actions/grantrole.php:66 actions/revokerole.php:66 +msgid "This role is reserved and cannot be set." +msgstr "" + +#: actions/grantrole.php:75 +#, fuzzy +msgid "You cannot grant user roles on this site." +msgstr "Ομάδες με τα περισσότερα μέλη" + +#: actions/grantrole.php:82 +msgid "User already has this role." +msgstr "" + #: actions/groupblock.php:71 actions/groupunblock.php:71 #: actions/makeadmin.php:71 actions/subedit.php:46 #: lib/profileformaction.php:70 @@ -1740,12 +1748,18 @@ msgstr "Διαχειριστής" msgid "Make this user an admin" msgstr "" +#: actions/grouprss.php:138 actions/userrss.php:90 +#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#, php-format +msgid "%s timeline" +msgstr "χρονοδιάγραμμα του χρήστη %s" + #: actions/grouprss.php:140 #, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "" -#: actions/groups.php:62 lib/profileaction.php:210 lib/profileaction.php:230 +#: actions/groups.php:62 lib/profileaction.php:212 lib/profileaction.php:232 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" msgstr "" @@ -2314,8 +2328,8 @@ msgstr "Σύνδεση" msgid "Only " msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 -#: lib/apiaction.php:1068 lib/apiaction.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1042 +#: lib/apiaction.php:1070 lib/apiaction.php:1179 msgid "Not a supported data format." msgstr "" @@ -2461,7 +2475,8 @@ msgstr "Αδύνατη η αποθήκευση του νέου κωδικού" msgid "Password saved." msgstr "Ο κωδικός αποθηκεύτηκε." -#: actions/pathsadminpanel.php:59 +#. TRANS: Menu item for site administration +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 msgid "Paths" msgstr "" @@ -2586,7 +2601,7 @@ msgstr "" msgid "SSL" msgstr "" -#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 +#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202 #, fuzzy msgid "Never" msgstr "Αποχώρηση" @@ -2641,11 +2656,11 @@ msgstr "" msgid "Users self-tagged with %1$s - page %2$d" msgstr "" -#: actions/postnotice.php:84 +#: actions/postnotice.php:95 msgid "Invalid notice content" msgstr "" -#: actions/postnotice.php:90 +#: actions/postnotice.php:101 #, php-format msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" @@ -2722,7 +2737,7 @@ msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" -#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 +#: actions/profilesettings.php:151 msgid "Language" msgstr "" @@ -2751,7 +2766,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "Το βιογραφικό είναι πολύ μεγάλο (μέγιστο 140 χαρακτ.)." -#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:151 msgid "Timezone not selected." msgstr "" @@ -3054,7 +3069,7 @@ msgid "Same as password above. Required." msgstr "" #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 msgid "Email" msgstr "Email" @@ -3159,7 +3174,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:368 +#: lib/userprofile.php:394 msgid "Subscribe" msgstr "" @@ -3260,6 +3275,15 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "" +#: actions/revokerole.php:75 +#, fuzzy +msgid "You cannot revoke user roles on this site." +msgstr "Απέτυχε η ενημέρωση του χρήστη." + +#: actions/revokerole.php:82 +msgid "User doesn't have this role." +msgstr "" + #: actions/rsd.php:146 actions/version.php:157 #, fuzzy msgid "StatusNet" @@ -3273,7 +3297,9 @@ msgstr "" msgid "User is already sandboxed." msgstr "" +#. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:390 msgid "Sessions" msgstr "" @@ -3297,7 +3323,7 @@ msgstr "" msgid "Turn on debugging output for sessions." msgstr "" -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/useradminpanel.php:294 #, fuzzy msgid "Save site settings" @@ -3331,8 +3357,8 @@ msgstr "Προσκλήσεις" msgid "Description" msgstr "Περιγραφή" -#: actions/showapplication.php:192 actions/showgroup.php:437 -#: lib/profileaction.php:174 +#: actions/showapplication.php:192 actions/showgroup.php:438 +#: lib/profileaction.php:176 msgid "Statistics" msgstr "" @@ -3466,45 +3492,45 @@ msgstr "" msgid "Group actions" msgstr "" -#: actions/showgroup.php:336 +#: actions/showgroup.php:337 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "" -#: actions/showgroup.php:342 +#: actions/showgroup.php:343 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "" -#: actions/showgroup.php:348 +#: actions/showgroup.php:349 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "" -#: actions/showgroup.php:353 +#: actions/showgroup.php:354 #, fuzzy, php-format msgid "FOAF for %s group" msgstr "Αδύνατη η αποθήκευση του προφίλ." -#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 +#: actions/showgroup.php:390 actions/showgroup.php:447 lib/groupnav.php:91 msgid "Members" msgstr "Μέλη" -#: actions/showgroup.php:394 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 +#: actions/showgroup.php:395 lib/profileaction.php:117 +#: lib/profileaction.php:150 lib/profileaction.php:238 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "" -#: actions/showgroup.php:400 +#: actions/showgroup.php:401 msgid "All members" msgstr "" -#: actions/showgroup.php:440 +#: actions/showgroup.php:441 msgid "Created" msgstr "Δημιουργημένος" -#: actions/showgroup.php:456 +#: actions/showgroup.php:457 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3514,7 +3540,7 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showgroup.php:462 +#: actions/showgroup.php:463 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3523,7 +3549,7 @@ msgid "" "their life and interests. " msgstr "" -#: actions/showgroup.php:490 +#: actions/showgroup.php:491 msgid "Admins" msgstr "Διαχειριστές" @@ -3634,148 +3660,135 @@ msgid "User is already silenced." msgstr "" #: actions/siteadminpanel.php:69 -msgid "Basic settings for this StatusNet site." +msgid "Basic settings for this StatusNet site" msgstr "" -#: actions/siteadminpanel.php:132 +#: actions/siteadminpanel.php:133 msgid "Site name must have non-zero length." msgstr "" -#: actions/siteadminpanel.php:140 +#: actions/siteadminpanel.php:141 #, fuzzy msgid "You must have a valid contact email address." msgstr "Αδυναμία κανονικοποίησης αυτής της email διεύθυνσης" -#: actions/siteadminpanel.php:158 +#: actions/siteadminpanel.php:159 #, php-format msgid "Unknown language \"%s\"." msgstr "" #: actions/siteadminpanel.php:165 -msgid "Invalid snapshot report URL." -msgstr "" - -#: actions/siteadminpanel.php:171 -msgid "Invalid snapshot run value." -msgstr "" - -#: actions/siteadminpanel.php:177 -msgid "Snapshot frequency must be a number." -msgstr "" - -#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "" -#: actions/siteadminpanel.php:189 +#: actions/siteadminpanel.php:171 msgid "Dupe limit must 1 or more seconds." msgstr "" -#: actions/siteadminpanel.php:239 +#: actions/siteadminpanel.php:221 msgid "General" msgstr "" -#: actions/siteadminpanel.php:242 +#: actions/siteadminpanel.php:224 msgid "Site name" msgstr "" -#: actions/siteadminpanel.php:243 +#: actions/siteadminpanel.php:225 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "" -#: actions/siteadminpanel.php:247 +#: actions/siteadminpanel.php:229 msgid "Brought by" msgstr "" -#: actions/siteadminpanel.php:248 +#: actions/siteadminpanel.php:230 msgid "Text used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:252 +#: actions/siteadminpanel.php:234 msgid "Brought by URL" msgstr "" -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:235 msgid "URL used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:239 #, fuzzy msgid "Contact email address for your site" msgstr "Η διεύθυνση του εισερχόμενου email αφαιρέθηκε." -#: actions/siteadminpanel.php:263 +#: actions/siteadminpanel.php:245 msgid "Local" msgstr "Τοπικός" -#: actions/siteadminpanel.php:274 +#: actions/siteadminpanel.php:256 msgid "Default timezone" msgstr "" -#: actions/siteadminpanel.php:275 +#: actions/siteadminpanel.php:257 msgid "Default timezone for the site; usually UTC." msgstr "" -#: actions/siteadminpanel.php:281 -msgid "Default site language" +#: actions/siteadminpanel.php:262 +msgid "Default language" msgstr "" -#: actions/siteadminpanel.php:289 -msgid "Snapshots" +#: actions/siteadminpanel.php:263 +msgid "Site language when autodetection from browser settings is not available" msgstr "" -#: actions/siteadminpanel.php:292 -msgid "Randomly during Web hit" -msgstr "" - -#: actions/siteadminpanel.php:293 -msgid "In a scheduled job" -msgstr "" - -#: actions/siteadminpanel.php:295 -msgid "Data snapshots" -msgstr "" - -#: actions/siteadminpanel.php:296 -msgid "When to send statistical data to status.net servers" -msgstr "" - -#: actions/siteadminpanel.php:301 -msgid "Frequency" -msgstr "" - -#: actions/siteadminpanel.php:302 -msgid "Snapshots will be sent once every N web hits" -msgstr "" - -#: actions/siteadminpanel.php:307 -msgid "Report URL" -msgstr "" - -#: actions/siteadminpanel.php:308 -msgid "Snapshots will be sent to this URL" -msgstr "" - -#: actions/siteadminpanel.php:315 +#: actions/siteadminpanel.php:271 msgid "Limits" msgstr "" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Text limit" msgstr "" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Maximum number of characters for notices." msgstr "" -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "Dupe limit" msgstr "" -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" +#: actions/sitenoticeadminpanel.php:56 +#, fuzzy +msgid "Site Notice" +msgstr "Διαγραφή μηνύματος" + +#: actions/sitenoticeadminpanel.php:67 +msgid "Edit site-wide message" +msgstr "" + +#: actions/sitenoticeadminpanel.php:103 +msgid "Unable to save site notice." +msgstr "" + +#: actions/sitenoticeadminpanel.php:113 +msgid "Max length for the site-wide notice is 255 chars" +msgstr "" + +#: actions/sitenoticeadminpanel.php:176 +#, fuzzy +msgid "Site notice text" +msgstr "Διαγραφή μηνύματος" + +#: actions/sitenoticeadminpanel.php:178 +msgid "Site-wide notice text (255 chars max; HTML okay)" +msgstr "" + +#: actions/sitenoticeadminpanel.php:198 +#, fuzzy +msgid "Save site notice" +msgstr "Ρυθμίσεις OpenID" + #: actions/smssettings.php:58 #, fuzzy msgid "SMS settings" @@ -3874,6 +3887,66 @@ msgstr "" msgid "No code entered" msgstr "" +#. TRANS: Menu item for site administration +#: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 +#: lib/adminpanelaction.php:406 +msgid "Snapshots" +msgstr "" + +#: actions/snapshotadminpanel.php:65 +#, fuzzy +msgid "Manage snapshot configuration" +msgstr "Επιβεβαίωση διεύθυνσης email" + +#: actions/snapshotadminpanel.php:127 +msgid "Invalid snapshot run value." +msgstr "" + +#: actions/snapshotadminpanel.php:133 +msgid "Snapshot frequency must be a number." +msgstr "" + +#: actions/snapshotadminpanel.php:144 +msgid "Invalid snapshot report URL." +msgstr "" + +#: actions/snapshotadminpanel.php:200 +msgid "Randomly during Web hit" +msgstr "" + +#: actions/snapshotadminpanel.php:201 +msgid "In a scheduled job" +msgstr "" + +#: actions/snapshotadminpanel.php:206 +msgid "Data snapshots" +msgstr "" + +#: actions/snapshotadminpanel.php:208 +msgid "When to send statistical data to status.net servers" +msgstr "" + +#: actions/snapshotadminpanel.php:217 +msgid "Frequency" +msgstr "" + +#: actions/snapshotadminpanel.php:218 +msgid "Snapshots will be sent once every N web hits" +msgstr "" + +#: actions/snapshotadminpanel.php:226 +msgid "Report URL" +msgstr "" + +#: actions/snapshotadminpanel.php:227 +msgid "Snapshots will be sent to this URL" +msgstr "" + +#: actions/snapshotadminpanel.php:248 +#, fuzzy +msgid "Save snapshot settings" +msgstr "Ρυθμίσεις OpenID" + #: actions/subedit.php:70 msgid "You are not subscribed to that profile." msgstr "" @@ -4071,7 +4144,7 @@ msgstr "" msgid "Unsubscribed" msgstr "" -#: actions/updateprofile.php:62 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -4266,16 +4339,22 @@ msgstr "Αδύνατη η αποθήκευση των νέων πληροφορ msgid "Search for more groups" msgstr "" -#: actions/usergroups.php:153 +#: actions/usergroups.php:157 #, php-format msgid "%s is not a member of any group." msgstr "" -#: actions/usergroups.php:158 +#: actions/usergroups.php:162 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" +#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: lib/atomusernoticefeed.php:72 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "" + #: actions/version.php:73 #, php-format msgid "StatusNet %s" @@ -4319,7 +4398,7 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:196 lib/action.php:778 +#: actions/version.php:196 lib/action.php:767 #, fuzzy msgid "Version" msgstr "Προσωπικά" @@ -4387,38 +4466,38 @@ msgstr "" msgid "DB error inserting hashtag: %s" msgstr "Σφάλμα στη βάση δεδομένων κατά την εισαγωγή hashtag: %s" -#: classes/Notice.php:239 +#: classes/Notice.php:241 msgid "Problem saving notice. Too long." msgstr "" -#: classes/Notice.php:243 +#: classes/Notice.php:245 msgid "Problem saving notice. Unknown user." msgstr "" -#: classes/Notice.php:248 +#: classes/Notice.php:250 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: classes/Notice.php:254 +#: classes/Notice.php:256 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." msgstr "" -#: classes/Notice.php:260 +#: classes/Notice.php:262 msgid "You are banned from posting notices on this site." msgstr "" -#: classes/Notice.php:326 classes/Notice.php:352 +#: classes/Notice.php:328 classes/Notice.php:354 msgid "Problem saving notice." msgstr "" -#: classes/Notice.php:911 +#: classes/Notice.php:927 msgid "Problem saving group inbox." msgstr "" -#: classes/Notice.php:1442 +#: classes/Notice.php:1459 #, php-format msgid "RT @%1$s %2$s" msgstr "" @@ -4445,7 +4524,12 @@ msgstr "Απέτυχε η συνδρομή." msgid "Couldn't delete self-subscription." msgstr "Απέτυχε η διαγραφή συνδρομής." -#: classes/Subscription.php:179 lib/subs.php:69 +#: classes/Subscription.php:190 +#, fuzzy +msgid "Couldn't delete subscription OMB token." +msgstr "Απέτυχε η διαγραφή συνδρομής." + +#: classes/Subscription.php:201 lib/subs.php:69 msgid "Couldn't delete subscription." msgstr "Απέτυχε η διαγραφή συνδρομής." @@ -4454,21 +4538,21 @@ msgstr "Απέτυχε η διαγραφή συνδρομής." msgid "Welcome to %1$s, @%2$s!" msgstr "" -#: classes/User_group.php:462 +#: classes/User_group.php:477 msgid "Could not create group." msgstr "Δεν ήταν δυνατή η δημιουργία ομάδας." -#: classes/User_group.php:471 +#: classes/User_group.php:486 #, fuzzy msgid "Could not set group URI." msgstr "Αδύνατη η αποθήκευση των νέων πληροφοριών του προφίλ" -#: classes/User_group.php:492 +#: classes/User_group.php:507 #, fuzzy msgid "Could not set group membership." msgstr "Αδύνατη η αποθήκευση των νέων πληροφοριών του προφίλ" -#: classes/User_group.php:506 +#: classes/User_group.php:521 #, fuzzy msgid "Could not save local group info." msgstr "Αδύνατη η αποθήκευση των νέων πληροφοριών του προφίλ" @@ -4510,189 +4594,183 @@ msgstr "" msgid "Untitled page" msgstr "" -#: lib/action.php:433 +#: lib/action.php:424 msgid "Primary site navigation" msgstr "" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:439 +#: lib/action.php:430 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:442 +#: lib/action.php:433 #, fuzzy msgctxt "MENU" msgid "Personal" msgstr "Προσωπικά" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:444 +#: lib/action.php:435 #, fuzzy msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Αλλάξτε τον κωδικό σας" -#: lib/action.php:447 -#, fuzzy -msgctxt "MENU" -msgid "Account" -msgstr "Λογαριασμός" - #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:450 +#: lib/action.php:440 #, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Αδυναμία ανακατεύθηνσης στο διακομιστή: %s" -#: lib/action.php:453 +#: lib/action.php:443 #, fuzzy -msgctxt "MENU" msgid "Connect" msgstr "Σύνδεση" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:457 +#: lib/action.php:446 #, fuzzy msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Επιβεβαίωση διεύθυνσης email" -#: lib/action.php:460 +#: lib/action.php:449 #, fuzzy msgctxt "MENU" msgid "Admin" msgstr "Διαχειριστής" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:464 +#: lib/action.php:453 #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Προσκάλεσε φίλους και συναδέλφους σου να γίνουν μέλη στο %s" -#: lib/action.php:467 +#: lib/action.php:456 #, fuzzy msgctxt "MENU" msgid "Invite" msgstr "Μήνυμα" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:473 +#: lib/action.php:462 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "" -#: lib/action.php:476 +#: lib/action.php:465 #, fuzzy msgctxt "MENU" msgid "Logout" msgstr "Αποσύνδεση" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:481 +#: lib/action.php:470 #, fuzzy msgctxt "TOOLTIP" msgid "Create an account" msgstr "Δημιουργία ενός λογαριασμού" -#: lib/action.php:484 +#: lib/action.php:473 #, fuzzy msgctxt "MENU" msgid "Register" msgstr "Περιγραφή" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:487 +#: lib/action.php:476 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "" -#: lib/action.php:490 +#: lib/action.php:479 #, fuzzy msgctxt "MENU" msgid "Login" msgstr "Σύνδεση" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:493 +#: lib/action.php:482 #, fuzzy msgctxt "TOOLTIP" msgid "Help me!" msgstr "Βοηθήστε με!" -#: lib/action.php:496 +#: lib/action.php:485 #, fuzzy msgctxt "MENU" msgid "Help" msgstr "Βοήθεια" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:499 +#: lib/action.php:488 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "" -#: lib/action.php:502 +#: lib/action.php:491 msgctxt "MENU" msgid "Search" msgstr "" #. TRANS: DT element for site notice. String is hidden in default CSS. -#: lib/action.php:524 +#. TRANS: Menu item for site administration +#: lib/action.php:513 lib/adminpanelaction.php:398 msgid "Site notice" msgstr "" -#: lib/action.php:590 +#: lib/action.php:579 msgid "Local views" msgstr "" -#: lib/action.php:656 +#: lib/action.php:645 msgid "Page notice" msgstr "" -#: lib/action.php:758 +#: lib/action.php:747 msgid "Secondary site navigation" msgstr "" -#: lib/action.php:763 +#: lib/action.php:752 msgid "Help" msgstr "Βοήθεια" -#: lib/action.php:765 +#: lib/action.php:754 msgid "About" msgstr "Περί" -#: lib/action.php:767 +#: lib/action.php:756 msgid "FAQ" msgstr "Συχνές ερωτήσεις" -#: lib/action.php:771 +#: lib/action.php:760 msgid "TOS" msgstr "" -#: lib/action.php:774 +#: lib/action.php:763 msgid "Privacy" msgstr "" -#: lib/action.php:776 +#: lib/action.php:765 msgid "Source" msgstr "" -#: lib/action.php:780 +#: lib/action.php:769 msgid "Contact" msgstr "Επικοινωνία" -#: lib/action.php:782 +#: lib/action.php:771 msgid "Badge" msgstr "" -#: lib/action.php:810 +#: lib/action.php:799 msgid "StatusNet software license" msgstr "" -#: lib/action.php:813 +#: lib/action.php:802 #, fuzzy, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4701,13 +4779,13 @@ msgstr "" "To **%%site.name%%** είναι μία υπηρεσία microblogging (μικρο-ιστολογίου) που " "έφερε κοντά σας το [%%site.broughtby%%](%%site.broughtbyurl%%). " -#: lib/action.php:815 +#: lib/action.php:804 #, fuzzy, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "" "Το **%%site.name%%** είναι μία υπηρεσία microblogging (μικρο-ιστολογίου). " -#: lib/action.php:817 +#: lib/action.php:806 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4715,53 +4793,53 @@ msgid "" "org/licensing/licenses/agpl-3.0.html)." msgstr "" -#: lib/action.php:832 +#: lib/action.php:821 msgid "Site content license" msgstr "" -#: lib/action.php:837 +#: lib/action.php:826 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:842 +#: lib/action.php:831 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:845 +#: lib/action.php:834 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" -#: lib/action.php:858 +#: lib/action.php:847 msgid "All " msgstr "" -#: lib/action.php:864 +#: lib/action.php:853 msgid "license." msgstr "" -#: lib/action.php:1163 +#: lib/action.php:1152 msgid "Pagination" msgstr "" -#: lib/action.php:1172 +#: lib/action.php:1161 msgid "After" msgstr "" -#: lib/action.php:1180 +#: lib/action.php:1169 msgid "Before" msgstr "" -#: lib/activity.php:449 +#: lib/activity.php:453 msgid "Can't handle remote content yet." msgstr "" -#: lib/activity.php:477 +#: lib/activity.php:481 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activity.php:481 +#: lib/activity.php:485 msgid "Can't handle embedded Base64 content yet." msgstr "" @@ -4776,94 +4854,85 @@ msgid "Changes to that panel are not allowed." msgstr "" #. TRANS: Client error message -#: lib/adminpanelaction.php:211 +#: lib/adminpanelaction.php:229 msgid "showForm() not implemented." msgstr "" #. TRANS: Client error message -#: lib/adminpanelaction.php:241 +#: lib/adminpanelaction.php:259 msgid "saveSettings() not implemented." msgstr "" #. TRANS: Client error message -#: lib/adminpanelaction.php:265 +#: lib/adminpanelaction.php:283 msgid "Unable to delete design setting." msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:330 +#: lib/adminpanelaction.php:348 #, fuzzy msgid "Basic site configuration" msgstr "Επιβεβαίωση διεύθυνσης email" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:332 +#: lib/adminpanelaction.php:350 msgctxt "MENU" msgid "Site" msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:338 +#: lib/adminpanelaction.php:356 #, fuzzy msgid "Design configuration" msgstr "Επιβεβαίωση διεύθυνσης email" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:340 +#: lib/adminpanelaction.php:358 #, fuzzy msgctxt "MENU" msgid "Design" msgstr "Προσωπικά" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:346 +#: lib/adminpanelaction.php:364 #, fuzzy msgid "User configuration" msgstr "Επιβεβαίωση διεύθυνσης email" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:348 -msgctxt "MENU" +#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 msgid "User" msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:354 +#: lib/adminpanelaction.php:372 #, fuzzy msgid "Access configuration" msgstr "Επιβεβαίωση διεύθυνσης email" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:356 -#, fuzzy -msgctxt "MENU" -msgid "Access" -msgstr "Πρόσβαση" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:362 +#: lib/adminpanelaction.php:380 #, fuzzy msgid "Paths configuration" msgstr "Επιβεβαίωση διεύθυνσης email" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:364 -msgctxt "MENU" -msgid "Paths" -msgstr "" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:370 +#: lib/adminpanelaction.php:388 #, fuzzy msgid "Sessions configuration" msgstr "Επιβεβαίωση διεύθυνσης email" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:372 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:396 #, fuzzy -msgctxt "MENU" -msgid "Sessions" -msgstr "Προσωπικά" +msgid "Edit site notice" +msgstr "Διαγραφή μηνύματος" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:404 +#, fuzzy +msgid "Snapshots configuration" +msgstr "Επιβεβαίωση διεύθυνσης email" #: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." @@ -5356,6 +5425,11 @@ msgstr "" msgid "Go" msgstr "" +#: lib/grantroleform.php:91 +#, php-format +msgid "Grant this user the \"%s\" role" +msgstr "" + #: lib/groupeditform.php:163 msgid "URL of the homepage or blog of the group or topic" msgstr "" @@ -5887,10 +5961,6 @@ msgstr "" msgid "Favorites" msgstr "" -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "" - #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "" @@ -5916,7 +5986,7 @@ msgstr "" msgid "Unknown" msgstr "" -#: lib/profileaction.php:109 lib/profileaction.php:192 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:194 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "" @@ -5924,23 +5994,23 @@ msgstr "" msgid "All subscriptions" msgstr "Όλες οι συνδρομές" -#: lib/profileaction.php:140 lib/profileaction.php:201 lib/subgroupnav.php:90 +#: lib/profileaction.php:142 lib/profileaction.php:203 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "" -#: lib/profileaction.php:157 +#: lib/profileaction.php:159 msgid "All subscribers" msgstr "" -#: lib/profileaction.php:178 +#: lib/profileaction.php:180 msgid "User ID" msgstr "" -#: lib/profileaction.php:183 +#: lib/profileaction.php:185 msgid "Member since" msgstr "Μέλος από" -#: lib/profileaction.php:245 +#: lib/profileaction.php:247 msgid "All groups" msgstr "" @@ -5982,7 +6052,12 @@ msgstr "Αδυναμία διαγραφής αυτού του μηνύματος msgid "Repeat this notice" msgstr "Αδυναμία διαγραφής αυτού του μηνύματος." -#: lib/router.php:668 +#: lib/revokeroleform.php:91 +#, php-format +msgid "Revoke the \"%s\" role from this user" +msgstr "" + +#: lib/router.php:671 msgid "No single user defined for single-user mode." msgstr "" @@ -6140,47 +6215,63 @@ msgstr "Μήνυμα" msgid "Moderate" msgstr "" -#: lib/util.php:1013 -msgid "a few seconds ago" +#: lib/userprofile.php:352 +#, fuzzy +msgid "User role" +msgstr "Προφίλ χρήστη" + +#: lib/userprofile.php:354 +#, fuzzy +msgctxt "role" +msgid "Administrator" +msgstr "Διαχειριστές" + +#: lib/userprofile.php:355 +msgctxt "role" +msgid "Moderator" msgstr "" #: lib/util.php:1015 -msgid "about a minute ago" +msgid "a few seconds ago" msgstr "" #: lib/util.php:1017 +msgid "about a minute ago" +msgstr "" + +#: lib/util.php:1019 #, php-format msgid "about %d minutes ago" msgstr "" -#: lib/util.php:1019 +#: lib/util.php:1021 msgid "about an hour ago" msgstr "" -#: lib/util.php:1021 +#: lib/util.php:1023 #, php-format msgid "about %d hours ago" msgstr "" -#: lib/util.php:1023 +#: lib/util.php:1025 msgid "about a day ago" msgstr "" -#: lib/util.php:1025 +#: lib/util.php:1027 #, php-format msgid "about %d days ago" msgstr "" -#: lib/util.php:1027 +#: lib/util.php:1029 msgid "about a month ago" msgstr "" -#: lib/util.php:1029 +#: lib/util.php:1031 #, php-format msgid "about %d months ago" msgstr "" -#: lib/util.php:1031 +#: lib/util.php:1033 msgid "about a year ago" msgstr "" diff --git a/locale/en_GB/LC_MESSAGES/statusnet.po b/locale/en_GB/LC_MESSAGES/statusnet.po index d0ba439baa..cac1893e88 100644 --- a/locale/en_GB/LC_MESSAGES/statusnet.po +++ b/locale/en_GB/LC_MESSAGES/statusnet.po @@ -9,19 +9,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-02 21:02+0000\n" -"PO-Revision-Date: 2010-03-02 21:02:36+0000\n" +"POT-Creation-Date: 2010-03-04 18:55+0000\n" +"PO-Revision-Date: 2010-03-04 18:56:13+0000\n" "Language-Team: British English\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: en-gb\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. TRANS: Page title -#: actions/accessadminpanel.php:55 +#. TRANS: Menu item for site administration +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 msgid "Access" msgstr "Access" @@ -118,7 +119,7 @@ msgstr "%1$s and friends, page %2$d" #. TRANS: Page title. %1$s is user nickname #. TRANS: H1 text. %1$s is user nickname -#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -180,7 +181,7 @@ msgstr "" "post a notice to his or her attention." #. TRANS: H1 text -#: actions/all.php:174 +#: actions/all.php:178 msgid "You and friends" msgstr "You and friends" @@ -207,11 +208,11 @@ msgstr "Updates from %1$s and friends on %2$s!" #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 -#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 +#: actions/apitimelinegroup.php:160 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:148 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 msgid "API method not found." msgstr "API method not found." @@ -574,7 +575,7 @@ msgstr "" "the ability to %3$s your %4$s account data. You should only " "give access to your %4$s account to third parties you trust." -#: actions/apioauthauthorize.php:310 +#: actions/apioauthauthorize.php:310 lib/action.php:438 msgid "Account" msgstr "Account" @@ -661,18 +662,6 @@ msgstr "%1$s / Favourites from %2$s" msgid "%1$s updates favorited by %2$s / %2$s." msgstr "%1$s updates favourited by %2$s / %2$s." -#: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:138 actions/userrss.php:90 -#, php-format -msgid "%s timeline" -msgstr "%s timeline" - -#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 -#: 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:117 #, php-format msgid "%1$s / Updates mentioning %2$s" @@ -683,12 +672,12 @@ msgstr "%1$s / Updates mentioning %2$s" 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/apitimelinepublic.php:111 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "%s public timeline" -#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "%s updates from everyone!" @@ -934,7 +923,7 @@ msgid "Conversation" msgstr "Conversation" #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:216 lib/searchgroupnav.php:82 +#: lib/profileaction.php:218 lib/searchgroupnav.php:82 msgid "Notices" msgstr "Notices" @@ -953,7 +942,7 @@ msgstr "You are not the owner of this application." #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1228 +#: lib/action.php:1217 msgid "There was a problem with your session token." msgstr "There was a problem with your session token." @@ -1149,8 +1138,9 @@ msgstr "Reset back to default" #: actions/designadminpanel.php:586 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 +#: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:208 #: actions/tagother.php:154 actions/useradminpanel.php:294 #: lib/applicationeditform.php:333 lib/applicationeditform.php:334 #: lib/designsettings.php:256 lib/groupeditform.php:202 @@ -1266,7 +1256,7 @@ msgstr "description is too long (max %d chars)." msgid "Could not update group." msgstr "Could not update group." -#: actions/editgroup.php:264 classes/User_group.php:478 +#: actions/editgroup.php:264 classes/User_group.php:493 msgid "Could not create aliases." msgstr "Could not create aliases" @@ -1388,7 +1378,7 @@ msgid "Cannot normalize that email address" msgstr "Cannot normalise that e-mail address" #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:143 +#: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Not a valid e-mail address." @@ -1579,6 +1569,25 @@ msgstr "No such file." msgid "Cannot read file." msgstr "Cannot read file." +#: actions/grantrole.php:62 actions/revokerole.php:62 +#, fuzzy +msgid "Invalid role." +msgstr "Invalid token." + +#: actions/grantrole.php:66 actions/revokerole.php:66 +msgid "This role is reserved and cannot be set." +msgstr "" + +#: actions/grantrole.php:75 +#, fuzzy +msgid "You cannot grant user roles on this site." +msgstr "You cannot sandbox users on this site." + +#: actions/grantrole.php:82 +#, fuzzy +msgid "User already has this role." +msgstr "User is already silenced." + #: actions/groupblock.php:71 actions/groupunblock.php:71 #: actions/makeadmin.php:71 actions/subedit.php:46 #: lib/profileformaction.php:70 @@ -1725,12 +1734,18 @@ msgstr "Make admin" msgid "Make this user an admin" msgstr "Make this user an admin" +#: actions/grouprss.php:138 actions/userrss.php:90 +#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#, php-format +msgid "%s timeline" +msgstr "%s timeline" + #: actions/grouprss.php:140 #, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Updates from members of %1$s on %2$s!" -#: actions/groups.php:62 lib/profileaction.php:210 lib/profileaction.php:230 +#: actions/groups.php:62 lib/profileaction.php:212 lib/profileaction.php:232 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" msgstr "Groups" @@ -2339,8 +2354,8 @@ msgstr "content type " msgid "Only " msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 -#: lib/apiaction.php:1068 lib/apiaction.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1042 +#: lib/apiaction.php:1070 lib/apiaction.php:1179 msgid "Not a supported data format." msgstr "Not a supported data format." @@ -2479,7 +2494,8 @@ msgstr "Can't save new password." msgid "Password saved." msgstr "Password saved." -#: actions/pathsadminpanel.php:59 +#. TRANS: Menu item for site administration +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 msgid "Paths" msgstr "" @@ -2599,7 +2615,7 @@ msgstr "" msgid "SSL" msgstr "SSL" -#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 +#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202 msgid "Never" msgstr "Never" @@ -2654,11 +2670,11 @@ msgstr "Not a valid people tag: %s" msgid "Users self-tagged with %1$s - page %2$d" msgstr "Users self-tagged with %1$s - page %2$d" -#: actions/postnotice.php:84 +#: actions/postnotice.php:95 msgid "Invalid notice content" msgstr "Invalid notice content" -#: actions/postnotice.php:90 +#: actions/postnotice.php:101 #, php-format msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "Notice licence ‘1%$s’ is not compatible with site licence ‘%2$s’." @@ -2736,7 +2752,7 @@ msgid "" msgstr "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" -#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 +#: actions/profilesettings.php:151 msgid "Language" msgstr "Language" @@ -2763,7 +2779,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "Bio is too long (max %d chars)." -#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:151 msgid "Timezone not selected." msgstr "Timezone not selected." @@ -3072,7 +3088,7 @@ msgid "Same as password above. Required." msgstr "Same as password above. Required." #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 msgid "Email" msgstr "E-mail" @@ -3177,7 +3193,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "URL of your profile on another compatible microblogging service" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:368 +#: lib/userprofile.php:394 msgid "Subscribe" msgstr "Subscribe" @@ -3277,6 +3293,16 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "Replies to %1$s on %2$s!" +#: actions/revokerole.php:75 +#, fuzzy +msgid "You cannot revoke user roles on this site." +msgstr "You cannot silence users on this site." + +#: actions/revokerole.php:82 +#, fuzzy +msgid "User doesn't have this role." +msgstr "User without matching profile." + #: actions/rsd.php:146 actions/version.php:157 msgid "StatusNet" msgstr "StatusNet" @@ -3289,7 +3315,9 @@ msgstr "You cannot sandbox users on this site." msgid "User is already sandboxed." msgstr "User is already sandboxed." +#. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:390 msgid "Sessions" msgstr "" @@ -3313,7 +3341,7 @@ msgstr "" msgid "Turn on debugging output for sessions." msgstr "" -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "Save site settings" @@ -3344,8 +3372,8 @@ msgstr "Organization" msgid "Description" msgstr "Description" -#: actions/showapplication.php:192 actions/showgroup.php:437 -#: lib/profileaction.php:174 +#: actions/showapplication.php:192 actions/showgroup.php:438 +#: lib/profileaction.php:176 msgid "Statistics" msgstr "Statistics" @@ -3484,45 +3512,45 @@ msgstr "" msgid "Group actions" msgstr "Group actions" -#: actions/showgroup.php:336 +#: actions/showgroup.php:337 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Notice feed for %s group (RSS 1.0)" -#: actions/showgroup.php:342 +#: actions/showgroup.php:343 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Notice feed for %s group (RSS 2.0)" -#: actions/showgroup.php:348 +#: actions/showgroup.php:349 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "Notice feed for %s group (Atom)" -#: actions/showgroup.php:353 +#: actions/showgroup.php:354 #, php-format msgid "FOAF for %s group" msgstr "Outbox for %s" -#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 +#: actions/showgroup.php:390 actions/showgroup.php:447 lib/groupnav.php:91 msgid "Members" msgstr "Members" -#: actions/showgroup.php:394 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 +#: actions/showgroup.php:395 lib/profileaction.php:117 +#: lib/profileaction.php:150 lib/profileaction.php:238 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(None)" -#: actions/showgroup.php:400 +#: actions/showgroup.php:401 msgid "All members" msgstr "All members" -#: actions/showgroup.php:440 +#: actions/showgroup.php:441 msgid "Created" msgstr "Created" -#: actions/showgroup.php:456 +#: actions/showgroup.php:457 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3537,7 +3565,7 @@ msgstr "" "their life and interests. [Join now](%%%%action.register%%%%) to become part " "of this group and many more! ([Read more](%%%%doc.help%%%%))" -#: actions/showgroup.php:462 +#: actions/showgroup.php:463 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3550,7 +3578,7 @@ msgstr "" "[StatusNet](http://status.net/) tool. Its members share short messages about " "their life and interests. " -#: actions/showgroup.php:490 +#: actions/showgroup.php:491 msgid "Admins" msgstr "Admins" @@ -3665,146 +3693,137 @@ msgid "User is already silenced." msgstr "User is already silenced." #: actions/siteadminpanel.php:69 -msgid "Basic settings for this StatusNet site." -msgstr "" +#, fuzzy +msgid "Basic settings for this StatusNet site" +msgstr "Design settings for this StausNet site." -#: actions/siteadminpanel.php:132 +#: actions/siteadminpanel.php:133 msgid "Site name must have non-zero length." msgstr "" -#: actions/siteadminpanel.php:140 +#: actions/siteadminpanel.php:141 msgid "You must have a valid contact email address." msgstr "You must have a valid contact email address." -#: actions/siteadminpanel.php:158 +#: actions/siteadminpanel.php:159 #, php-format msgid "Unknown language \"%s\"." msgstr "" #: actions/siteadminpanel.php:165 -msgid "Invalid snapshot report URL." -msgstr "" - -#: actions/siteadminpanel.php:171 -msgid "Invalid snapshot run value." -msgstr "" - -#: actions/siteadminpanel.php:177 -msgid "Snapshot frequency must be a number." -msgstr "" - -#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "Minimum text limit is 140 characters." -#: actions/siteadminpanel.php:189 +#: actions/siteadminpanel.php:171 msgid "Dupe limit must 1 or more seconds." msgstr "" -#: actions/siteadminpanel.php:239 +#: actions/siteadminpanel.php:221 msgid "General" msgstr "" -#: actions/siteadminpanel.php:242 +#: actions/siteadminpanel.php:224 msgid "Site name" msgstr "Site name" -#: actions/siteadminpanel.php:243 +#: actions/siteadminpanel.php:225 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "" -#: actions/siteadminpanel.php:247 +#: actions/siteadminpanel.php:229 msgid "Brought by" msgstr "" -#: actions/siteadminpanel.php:248 +#: actions/siteadminpanel.php:230 msgid "Text used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:252 +#: actions/siteadminpanel.php:234 msgid "Brought by URL" msgstr "" -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:235 msgid "URL used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:239 msgid "Contact email address for your site" msgstr "Contact e-mail address for your site" -#: actions/siteadminpanel.php:263 +#: actions/siteadminpanel.php:245 msgid "Local" msgstr "Local" -#: actions/siteadminpanel.php:274 +#: actions/siteadminpanel.php:256 msgid "Default timezone" msgstr "" -#: actions/siteadminpanel.php:275 +#: actions/siteadminpanel.php:257 msgid "Default timezone for the site; usually UTC." msgstr "" -#: actions/siteadminpanel.php:281 -msgid "Default site language" +#: actions/siteadminpanel.php:262 +#, fuzzy +msgid "Default language" msgstr "Default site language" -#: actions/siteadminpanel.php:289 -msgid "Snapshots" +#: actions/siteadminpanel.php:263 +msgid "Site language when autodetection from browser settings is not available" msgstr "" -#: actions/siteadminpanel.php:292 -msgid "Randomly during Web hit" -msgstr "" - -#: actions/siteadminpanel.php:293 -msgid "In a scheduled job" -msgstr "" - -#: actions/siteadminpanel.php:295 -msgid "Data snapshots" -msgstr "" - -#: actions/siteadminpanel.php:296 -msgid "When to send statistical data to status.net servers" -msgstr "" - -#: actions/siteadminpanel.php:301 -msgid "Frequency" -msgstr "" - -#: actions/siteadminpanel.php:302 -msgid "Snapshots will be sent once every N web hits" -msgstr "" - -#: actions/siteadminpanel.php:307 -msgid "Report URL" -msgstr "" - -#: actions/siteadminpanel.php:308 -msgid "Snapshots will be sent to this URL" -msgstr "" - -#: actions/siteadminpanel.php:315 +#: actions/siteadminpanel.php:271 msgid "Limits" msgstr "" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Text limit" msgstr "" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Maximum number of characters for notices." msgstr "" -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "Dupe limit" msgstr "" -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" +#: actions/sitenoticeadminpanel.php:56 +#, fuzzy +msgid "Site Notice" +msgstr "Site notice" + +#: actions/sitenoticeadminpanel.php:67 +#, fuzzy +msgid "Edit site-wide message" +msgstr "New message" + +#: actions/sitenoticeadminpanel.php:103 +#, fuzzy +msgid "Unable to save site notice." +msgstr "Unable to save your design settings!" + +#: actions/sitenoticeadminpanel.php:113 +msgid "Max length for the site-wide notice is 255 chars" +msgstr "" + +#: actions/sitenoticeadminpanel.php:176 +#, fuzzy +msgid "Site notice text" +msgstr "Site notice" + +#: actions/sitenoticeadminpanel.php:178 +msgid "Site-wide notice text (255 chars max; HTML okay)" +msgstr "" + +#: actions/sitenoticeadminpanel.php:198 +#, fuzzy +msgid "Save site notice" +msgstr "Site notice" + #: actions/smssettings.php:58 msgid "SMS settings" msgstr "SMS settings" @@ -3904,6 +3923,66 @@ msgstr "" msgid "No code entered" msgstr "No code entered" +#. TRANS: Menu item for site administration +#: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 +#: lib/adminpanelaction.php:406 +msgid "Snapshots" +msgstr "" + +#: actions/snapshotadminpanel.php:65 +#, fuzzy +msgid "Manage snapshot configuration" +msgstr "Change site configuration" + +#: actions/snapshotadminpanel.php:127 +msgid "Invalid snapshot run value." +msgstr "" + +#: actions/snapshotadminpanel.php:133 +msgid "Snapshot frequency must be a number." +msgstr "" + +#: actions/snapshotadminpanel.php:144 +msgid "Invalid snapshot report URL." +msgstr "" + +#: actions/snapshotadminpanel.php:200 +msgid "Randomly during Web hit" +msgstr "" + +#: actions/snapshotadminpanel.php:201 +msgid "In a scheduled job" +msgstr "" + +#: actions/snapshotadminpanel.php:206 +msgid "Data snapshots" +msgstr "" + +#: actions/snapshotadminpanel.php:208 +msgid "When to send statistical data to status.net servers" +msgstr "" + +#: actions/snapshotadminpanel.php:217 +msgid "Frequency" +msgstr "" + +#: actions/snapshotadminpanel.php:218 +msgid "Snapshots will be sent once every N web hits" +msgstr "" + +#: actions/snapshotadminpanel.php:226 +msgid "Report URL" +msgstr "" + +#: actions/snapshotadminpanel.php:227 +msgid "Snapshots will be sent to this URL" +msgstr "" + +#: actions/snapshotadminpanel.php:248 +#, fuzzy +msgid "Save snapshot settings" +msgstr "Save site settings" + #: actions/subedit.php:70 msgid "You are not subscribed to that profile." msgstr "You are not subscribed to that profile." @@ -4100,7 +4179,7 @@ msgstr "No profile id in request." msgid "Unsubscribed" msgstr "Unsubscribed" -#: actions/updateprofile.php:62 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -4301,16 +4380,22 @@ msgstr "%1$s groups, page %2$d" msgid "Search for more groups" msgstr "Search for more groups" -#: actions/usergroups.php:153 +#: actions/usergroups.php:157 #, php-format msgid "%s is not a member of any group." msgstr "%s is not a member of any group." -#: actions/usergroups.php:158 +#: actions/usergroups.php:162 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" +#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: lib/atomusernoticefeed.php:72 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "Updates from %1$s on %2$s!" + #: actions/version.php:73 #, php-format msgid "StatusNet %s" @@ -4364,7 +4449,7 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:196 lib/action.php:778 +#: actions/version.php:196 lib/action.php:767 msgid "Version" msgstr "Version" @@ -4427,21 +4512,21 @@ msgstr "Could not update message with new URI." msgid "DB error inserting hashtag: %s" msgstr "DB error inserting hashtag: %s" -#: classes/Notice.php:239 +#: classes/Notice.php:241 msgid "Problem saving notice. Too long." msgstr "Problem saving notice. Too long." -#: classes/Notice.php:243 +#: classes/Notice.php:245 msgid "Problem saving notice. Unknown user." msgstr "Problem saving notice. Unknown user." -#: classes/Notice.php:248 +#: classes/Notice.php:250 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." -#: classes/Notice.php:254 +#: classes/Notice.php:256 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." @@ -4449,19 +4534,19 @@ msgstr "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." -#: classes/Notice.php:260 +#: classes/Notice.php:262 msgid "You are banned from posting notices on this site." msgstr "You are banned from posting notices on this site." -#: classes/Notice.php:326 classes/Notice.php:352 +#: classes/Notice.php:328 classes/Notice.php:354 msgid "Problem saving notice." msgstr "Problem saving notice." -#: classes/Notice.php:911 +#: classes/Notice.php:927 msgid "Problem saving group inbox." msgstr "Problem saving group inbox." -#: classes/Notice.php:1442 +#: classes/Notice.php:1459 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -4487,7 +4572,12 @@ msgstr "Not subscribed!" msgid "Couldn't delete self-subscription." msgstr "Couldn't delete self-subscription." -#: classes/Subscription.php:179 lib/subs.php:69 +#: classes/Subscription.php:190 +#, fuzzy +msgid "Couldn't delete subscription OMB token." +msgstr "Couldn't delete subscription." + +#: classes/Subscription.php:201 lib/subs.php:69 msgid "Couldn't delete subscription." msgstr "Couldn't delete subscription." @@ -4496,19 +4586,19 @@ msgstr "Couldn't delete subscription." msgid "Welcome to %1$s, @%2$s!" msgstr "Welcome to %1$s, @%2$s!" -#: classes/User_group.php:462 +#: classes/User_group.php:477 msgid "Could not create group." msgstr "Could not create group." -#: classes/User_group.php:471 +#: classes/User_group.php:486 msgid "Could not set group URI." msgstr "Could not set group URI." -#: classes/User_group.php:492 +#: classes/User_group.php:507 msgid "Could not set group membership." msgstr "Could not set group membership." -#: classes/User_group.php:506 +#: classes/User_group.php:521 msgid "Could not save local group info." msgstr "Could not save local group info." @@ -4549,194 +4639,188 @@ msgstr "%1$s - %2$s" msgid "Untitled page" msgstr "Untitled page" -#: lib/action.php:433 +#: lib/action.php:424 msgid "Primary site navigation" msgstr "Primary site navigation" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:439 +#: lib/action.php:430 #, fuzzy msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Personal profile and friends timeline" -#: lib/action.php:442 +#: lib/action.php:433 #, fuzzy msgctxt "MENU" msgid "Personal" msgstr "Personal" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:444 +#: lib/action.php:435 #, fuzzy msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Change your e-mail, avatar, password, profile" -#: lib/action.php:447 -#, fuzzy -msgctxt "MENU" -msgid "Account" -msgstr "Account" - #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:450 +#: lib/action.php:440 #, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Connect to services" -#: lib/action.php:453 +#: lib/action.php:443 #, fuzzy -msgctxt "MENU" msgid "Connect" msgstr "Connect" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:457 +#: lib/action.php:446 #, fuzzy msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Change site configuration" -#: lib/action.php:460 +#: lib/action.php:449 #, fuzzy msgctxt "MENU" msgid "Admin" msgstr "Admin" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:464 +#: lib/action.php:453 #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Invite friends and colleagues to join you on %s" -#: lib/action.php:467 +#: lib/action.php:456 #, fuzzy msgctxt "MENU" msgid "Invite" msgstr "Invite" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:473 +#: lib/action.php:462 #, fuzzy msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Logout from the site" -#: lib/action.php:476 +#: lib/action.php:465 #, fuzzy msgctxt "MENU" msgid "Logout" msgstr "Logout" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:481 +#: lib/action.php:470 #, fuzzy msgctxt "TOOLTIP" msgid "Create an account" msgstr "Create an account" -#: lib/action.php:484 +#: lib/action.php:473 #, fuzzy msgctxt "MENU" msgid "Register" msgstr "Register" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:487 +#: lib/action.php:476 #, fuzzy msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Login to the site" -#: lib/action.php:490 +#: lib/action.php:479 #, fuzzy msgctxt "MENU" msgid "Login" msgstr "Login" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:493 +#: lib/action.php:482 #, fuzzy msgctxt "TOOLTIP" msgid "Help me!" msgstr "Help me!" -#: lib/action.php:496 +#: lib/action.php:485 #, fuzzy msgctxt "MENU" msgid "Help" msgstr "Help" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:499 +#: lib/action.php:488 #, fuzzy msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Search for people or text" -#: lib/action.php:502 +#: lib/action.php:491 #, fuzzy msgctxt "MENU" msgid "Search" msgstr "Search" #. TRANS: DT element for site notice. String is hidden in default CSS. -#: lib/action.php:524 +#. TRANS: Menu item for site administration +#: lib/action.php:513 lib/adminpanelaction.php:398 msgid "Site notice" msgstr "Site notice" -#: lib/action.php:590 +#: lib/action.php:579 msgid "Local views" msgstr "Local views" -#: lib/action.php:656 +#: lib/action.php:645 msgid "Page notice" msgstr "Page notice" -#: lib/action.php:758 +#: lib/action.php:747 msgid "Secondary site navigation" msgstr "Secondary site navigation" -#: lib/action.php:763 +#: lib/action.php:752 msgid "Help" msgstr "Help" -#: lib/action.php:765 +#: lib/action.php:754 msgid "About" msgstr "About" -#: lib/action.php:767 +#: lib/action.php:756 msgid "FAQ" msgstr "F.A.Q." -#: lib/action.php:771 +#: lib/action.php:760 msgid "TOS" msgstr "" -#: lib/action.php:774 +#: lib/action.php:763 msgid "Privacy" msgstr "Privacy" -#: lib/action.php:776 +#: lib/action.php:765 msgid "Source" msgstr "Source" -#: lib/action.php:780 +#: lib/action.php:769 msgid "Contact" msgstr "Contact" -#: lib/action.php:782 +#: lib/action.php:771 msgid "Badge" msgstr "Badge" -#: lib/action.php:810 +#: lib/action.php:799 msgid "StatusNet software license" msgstr "StatusNet software licence" -#: lib/action.php:813 +#: lib/action.php:802 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4745,12 +4829,12 @@ msgstr "" "**%%site.name%%** is a microblogging service brought to you by [%%site." "broughtby%%](%%site.broughtbyurl%%)." -#: lib/action.php:815 +#: lib/action.php:804 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** is a microblogging service." -#: lib/action.php:817 +#: lib/action.php:806 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4761,53 +4845,53 @@ msgstr "" "s, available under the [GNU Affero General Public Licence](http://www.fsf." "org/licensing/licenses/agpl-3.0.html)." -#: lib/action.php:832 +#: lib/action.php:821 msgid "Site content license" msgstr "Site content license" -#: lib/action.php:837 +#: lib/action.php:826 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:842 +#: lib/action.php:831 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:845 +#: lib/action.php:834 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" -#: lib/action.php:858 +#: lib/action.php:847 msgid "All " msgstr "All " -#: lib/action.php:864 +#: lib/action.php:853 msgid "license." msgstr "licence." -#: lib/action.php:1163 +#: lib/action.php:1152 msgid "Pagination" msgstr "Pagination" -#: lib/action.php:1172 +#: lib/action.php:1161 msgid "After" msgstr "After" -#: lib/action.php:1180 +#: lib/action.php:1169 msgid "Before" msgstr "Before" -#: lib/activity.php:449 +#: lib/activity.php:453 msgid "Can't handle remote content yet." msgstr "" -#: lib/activity.php:477 +#: lib/activity.php:481 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activity.php:481 +#: lib/activity.php:485 msgid "Can't handle embedded Base64 content yet." msgstr "" @@ -4822,90 +4906,80 @@ msgid "Changes to that panel are not allowed." msgstr "Changes to that panel are not allowed." #. TRANS: Client error message -#: lib/adminpanelaction.php:211 +#: lib/adminpanelaction.php:229 msgid "showForm() not implemented." msgstr "showForm() not implemented." #. TRANS: Client error message -#: lib/adminpanelaction.php:241 +#: lib/adminpanelaction.php:259 msgid "saveSettings() not implemented." msgstr "saveSettings() not implemented." #. TRANS: Client error message -#: lib/adminpanelaction.php:265 +#: lib/adminpanelaction.php:283 msgid "Unable to delete design setting." msgstr "Unable to delete design setting." #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:330 +#: lib/adminpanelaction.php:348 msgid "Basic site configuration" msgstr "Basic site configuration" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:332 +#: lib/adminpanelaction.php:350 #, fuzzy msgctxt "MENU" msgid "Site" msgstr "Site" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:338 +#: lib/adminpanelaction.php:356 msgid "Design configuration" msgstr "Design configuration" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:340 +#: lib/adminpanelaction.php:358 #, fuzzy msgctxt "MENU" msgid "Design" msgstr "Design" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:346 +#: lib/adminpanelaction.php:364 msgid "User configuration" msgstr "User configuration" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:348 -#, fuzzy -msgctxt "MENU" +#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 msgid "User" msgstr "User" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:354 +#: lib/adminpanelaction.php:372 msgid "Access configuration" msgstr "Access configuration" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:356 -#, fuzzy -msgctxt "MENU" -msgid "Access" -msgstr "Access" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:362 +#: lib/adminpanelaction.php:380 msgid "Paths configuration" msgstr "Paths configuration" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:364 -msgctxt "MENU" -msgid "Paths" -msgstr "" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:370 +#: lib/adminpanelaction.php:388 msgid "Sessions configuration" msgstr "Sessions configuration" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:372 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:396 #, fuzzy -msgctxt "MENU" -msgid "Sessions" -msgstr "Version" +msgid "Edit site notice" +msgstr "Site notice" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:404 +#, fuzzy +msgid "Snapshots configuration" +msgstr "Paths configuration" #: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." @@ -5387,6 +5461,11 @@ msgstr "Choose a tag to narrow list" msgid "Go" msgstr "Go" +#: lib/grantroleform.php:91 +#, php-format +msgid "Grant this user the \"%s\" role" +msgstr "" + #: 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" @@ -5929,10 +6008,6 @@ msgstr "Replies" msgid "Favorites" msgstr "Favourites" -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "User" - #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "Inbox" @@ -5958,7 +6033,7 @@ msgstr "Tags in %s's notices" msgid "Unknown" msgstr "Unknown" -#: lib/profileaction.php:109 lib/profileaction.php:192 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:194 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Subscriptions" @@ -5966,23 +6041,23 @@ msgstr "Subscriptions" msgid "All subscriptions" msgstr "All subscriptions" -#: lib/profileaction.php:140 lib/profileaction.php:201 lib/subgroupnav.php:90 +#: lib/profileaction.php:142 lib/profileaction.php:203 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Subscribers" -#: lib/profileaction.php:157 +#: lib/profileaction.php:159 msgid "All subscribers" msgstr "All subscribers" -#: lib/profileaction.php:178 +#: lib/profileaction.php:180 msgid "User ID" msgstr "User ID" -#: lib/profileaction.php:183 +#: lib/profileaction.php:185 msgid "Member since" msgstr "Member since" -#: lib/profileaction.php:245 +#: lib/profileaction.php:247 msgid "All groups" msgstr "All groups" @@ -6022,7 +6097,12 @@ msgstr "Repeat this notice?" msgid "Repeat this notice" msgstr "Repeat this notice" -#: lib/router.php:668 +#: lib/revokeroleform.php:91 +#, fuzzy, php-format +msgid "Revoke the \"%s\" role from this user" +msgstr "Block this user from this group" + +#: lib/router.php:671 msgid "No single user defined for single-user mode." msgstr "" @@ -6176,47 +6256,63 @@ msgstr "Message" msgid "Moderate" msgstr "" -#: lib/util.php:1013 +#: lib/userprofile.php:352 +#, fuzzy +msgid "User role" +msgstr "User profile" + +#: lib/userprofile.php:354 +#, fuzzy +msgctxt "role" +msgid "Administrator" +msgstr "Admins" + +#: lib/userprofile.php:355 +msgctxt "role" +msgid "Moderator" +msgstr "" + +#: lib/util.php:1015 msgid "a few seconds ago" msgstr "a few seconds ago" -#: lib/util.php:1015 +#: lib/util.php:1017 msgid "about a minute ago" msgstr "about a minute ago" -#: lib/util.php:1017 +#: lib/util.php:1019 #, php-format msgid "about %d minutes ago" msgstr "about %d minutes ago" -#: lib/util.php:1019 +#: lib/util.php:1021 msgid "about an hour ago" msgstr "about an hour ago" -#: lib/util.php:1021 +#: lib/util.php:1023 #, php-format msgid "about %d hours ago" msgstr "about %d hours ago" -#: lib/util.php:1023 +#: lib/util.php:1025 msgid "about a day ago" msgstr "about a day ago" -#: lib/util.php:1025 +#: lib/util.php:1027 #, php-format msgid "about %d days ago" msgstr "about %d days ago" -#: lib/util.php:1027 +#: lib/util.php:1029 msgid "about a month ago" msgstr "about a month ago" -#: lib/util.php:1029 +#: lib/util.php:1031 #, php-format msgid "about %d months ago" msgstr "about %d months ago" -#: lib/util.php:1031 +#: lib/util.php:1033 msgid "about a year ago" msgstr "about a year ago" diff --git a/locale/es/LC_MESSAGES/statusnet.po b/locale/es/LC_MESSAGES/statusnet.po index fe861905db..4aa92796ab 100644 --- a/locale/es/LC_MESSAGES/statusnet.po +++ b/locale/es/LC_MESSAGES/statusnet.po @@ -13,19 +13,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-02 21:02+0000\n" -"PO-Revision-Date: 2010-03-02 21:02:39+0000\n" +"POT-Creation-Date: 2010-03-04 18:55+0000\n" +"PO-Revision-Date: 2010-03-04 18:56:16+0000\n" "Language-Team: Spanish\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. TRANS: Page title -#: actions/accessadminpanel.php:55 +#. TRANS: Menu item for site administration +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 msgid "Access" msgstr "Acceder" @@ -122,7 +123,7 @@ msgstr "%1$s y amigos, página %2$d" #. TRANS: Page title. %1$s is user nickname #. TRANS: H1 text. %1$s is user nickname -#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -185,7 +186,7 @@ msgstr "" "su atención ](%%%%action.newnotice%%%%?status_textarea=%3$s)." #. TRANS: H1 text -#: actions/all.php:174 +#: actions/all.php:178 msgid "You and friends" msgstr "Tú y amigos" @@ -212,11 +213,11 @@ msgstr "¡Actualizaciones de %1$s y amigos en %2$s!" #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 -#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 +#: actions/apitimelinegroup.php:160 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:148 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 msgid "API method not found." msgstr "Método de API no encontrado." @@ -582,7 +583,7 @@ msgstr "" "permiso para %3$s la información de tu cuenta %4$s. Sólo " "debes dar acceso a tu cuenta %4$s a terceras partes en las que confíes." -#: actions/apioauthauthorize.php:310 +#: actions/apioauthauthorize.php:310 lib/action.php:438 msgid "Account" msgstr "Cuenta" @@ -671,18 +672,6 @@ msgstr "%1$s / Favoritos de %2$s" msgid "%1$s updates favorited by %2$s / %2$s." msgstr "%1$s actualizaciones favoritas de %2$s / %2$s." -#: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:138 actions/userrss.php:90 -#, php-format -msgid "%s timeline" -msgstr "línea temporal de %s" - -#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 -#: actions/userrss.php:92 -#, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "¡Actualizaciones de %1$s en %2$s!" - #: actions/apitimelinementions.php:117 #, php-format msgid "%1$s / Updates mentioning %2$s" @@ -693,12 +682,12 @@ msgstr "%1$s / Actualizaciones que mencionan %2$s" 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/apitimelinepublic.php:111 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "línea temporal pública de %s" -#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "¡Actualizaciones de todos en %s!" @@ -945,7 +934,7 @@ msgid "Conversation" msgstr "Conversación" #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:216 lib/searchgroupnav.php:82 +#: lib/profileaction.php:218 lib/searchgroupnav.php:82 msgid "Notices" msgstr "Avisos" @@ -964,7 +953,7 @@ msgstr "No eres el propietario de esta aplicación." #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1228 +#: lib/action.php:1217 msgid "There was a problem with your session token." msgstr "Hubo problemas con tu clave de sesión." @@ -1160,8 +1149,9 @@ msgstr "Volver a los valores predeterminados" #: actions/designadminpanel.php:586 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 +#: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:208 #: actions/tagother.php:154 actions/useradminpanel.php:294 #: lib/applicationeditform.php:333 lib/applicationeditform.php:334 #: lib/designsettings.php:256 lib/groupeditform.php:202 @@ -1277,7 +1267,7 @@ msgstr "La descripción es muy larga (máx. %d caracteres)." msgid "Could not update group." msgstr "No se pudo actualizar el grupo." -#: actions/editgroup.php:264 classes/User_group.php:478 +#: actions/editgroup.php:264 classes/User_group.php:493 msgid "Could not create aliases." msgstr "No fue posible crear alias." @@ -1402,7 +1392,7 @@ msgid "Cannot normalize that email address" msgstr "No se puede normalizar esta dirección de correo electrónico." #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:143 +#: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Correo electrónico no válido" @@ -1595,6 +1585,25 @@ msgstr "No existe tal archivo." msgid "Cannot read file." msgstr "No se puede leer archivo." +#: actions/grantrole.php:62 actions/revokerole.php:62 +#, fuzzy +msgid "Invalid role." +msgstr "Token inválido." + +#: actions/grantrole.php:66 actions/revokerole.php:66 +msgid "This role is reserved and cannot be set." +msgstr "" + +#: actions/grantrole.php:75 +#, fuzzy +msgid "You cannot grant user roles on this site." +msgstr "No puedes enviar mensaje a este usuario." + +#: actions/grantrole.php:82 +#, fuzzy +msgid "User already has this role." +msgstr "El usuario te ha bloqueado." + #: actions/groupblock.php:71 actions/groupunblock.php:71 #: actions/makeadmin.php:71 actions/subedit.php:46 #: lib/profileformaction.php:70 @@ -1744,12 +1753,18 @@ msgstr "Convertir en administrador" msgid "Make this user an admin" msgstr "Convertir a este usuario en administrador" +#: actions/grouprss.php:138 actions/userrss.php:90 +#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#, php-format +msgid "%s timeline" +msgstr "línea temporal de %s" + #: actions/grouprss.php:140 #, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "¡Actualizaciones de miembros de %1$s en %2$s!" -#: actions/groups.php:62 lib/profileaction.php:210 lib/profileaction.php:230 +#: actions/groups.php:62 lib/profileaction.php:212 lib/profileaction.php:232 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" msgstr "Grupos" @@ -2374,8 +2389,8 @@ msgstr "tipo de contenido " msgid "Only " msgstr "Sólo " -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 -#: lib/apiaction.php:1068 lib/apiaction.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1042 +#: lib/apiaction.php:1070 lib/apiaction.php:1179 msgid "Not a supported data format." msgstr "No es un formato de dato soportado" @@ -2515,7 +2530,8 @@ msgstr "No se puede guardar la nueva contraseña." msgid "Password saved." msgstr "Se guardó Contraseña." -#: actions/pathsadminpanel.php:59 +#. TRANS: Menu item for site administration +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 msgid "Paths" msgstr "Rutas" @@ -2637,7 +2653,7 @@ msgstr "Directorio del fondo" msgid "SSL" msgstr "SSL" -#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 +#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202 msgid "Never" msgstr "Nunca" @@ -2693,11 +2709,11 @@ msgstr "No es una etiqueta válida para personas: %s" msgid "Users self-tagged with %1$s - page %2$d" msgstr "Usuarios auto marcados con %s - página %d" -#: actions/postnotice.php:84 +#: actions/postnotice.php:95 msgid "Invalid notice content" msgstr "El contenido del aviso es inválido" -#: actions/postnotice.php:90 +#: actions/postnotice.php:101 #, php-format msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" @@ -2776,7 +2792,7 @@ msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "Tags para ti (letras, números, -, ., y _), coma - o espacio - separado" -#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 +#: actions/profilesettings.php:151 msgid "Language" msgstr "Idioma" @@ -2804,7 +2820,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "La biografía es muy larga (máx. %d caracteres)." -#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:151 msgid "Timezone not selected." msgstr "Zona horaria no seleccionada" @@ -3121,7 +3137,7 @@ msgid "Same as password above. Required." msgstr "Igual a la contraseña de arriba. Requerida" #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 msgid "Email" msgstr "Correo electrónico" @@ -3228,7 +3244,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "El URL de tu perfil en otro servicio de microblogueo compatible" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:368 +#: lib/userprofile.php:394 msgid "Subscribe" msgstr "Suscribirse" @@ -3326,6 +3342,16 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "Respuestas a %1$s en %2$s!" +#: actions/revokerole.php:75 +#, fuzzy +msgid "You cannot revoke user roles on this site." +msgstr "No puedes enviar mensaje a este usuario." + +#: actions/revokerole.php:82 +#, fuzzy +msgid "User doesn't have this role." +msgstr "Usuario sin perfil coincidente." + #: actions/rsd.php:146 actions/version.php:157 msgid "StatusNet" msgstr "StatusNet" @@ -3340,7 +3366,9 @@ msgstr "No puedes enviar mensaje a este usuario." msgid "User is already sandboxed." msgstr "El usuario te ha bloqueado." +#. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:390 msgid "Sessions" msgstr "Sesiones" @@ -3364,7 +3392,7 @@ msgstr "" msgid "Turn on debugging output for sessions." msgstr "" -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "Guardar la configuración del sitio" @@ -3396,8 +3424,8 @@ msgstr "Organización" msgid "Description" msgstr "Descripción" -#: actions/showapplication.php:192 actions/showgroup.php:437 -#: lib/profileaction.php:174 +#: actions/showapplication.php:192 actions/showgroup.php:438 +#: lib/profileaction.php:176 msgid "Statistics" msgstr "Estadísticas" @@ -3530,46 +3558,46 @@ msgstr "Alias" msgid "Group actions" msgstr "Acciones del grupo" -#: actions/showgroup.php:336 +#: actions/showgroup.php:337 #, fuzzy, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Feed de avisos de grupo %s" -#: actions/showgroup.php:342 +#: actions/showgroup.php:343 #, fuzzy, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Feed de avisos de grupo %s" -#: actions/showgroup.php:348 +#: actions/showgroup.php:349 #, fuzzy, php-format msgid "Notice feed for %s group (Atom)" msgstr "Feed de avisos de grupo %s" -#: actions/showgroup.php:353 +#: actions/showgroup.php:354 #, php-format msgid "FOAF for %s group" msgstr "Bandeja de salida para %s" -#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 +#: actions/showgroup.php:390 actions/showgroup.php:447 lib/groupnav.php:91 #, fuzzy msgid "Members" msgstr "Miembros" -#: actions/showgroup.php:394 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 +#: actions/showgroup.php:395 lib/profileaction.php:117 +#: lib/profileaction.php:150 lib/profileaction.php:238 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(Ninguno)" -#: actions/showgroup.php:400 +#: actions/showgroup.php:401 msgid "All members" msgstr "Todos los miembros" -#: actions/showgroup.php:440 +#: actions/showgroup.php:441 msgid "Created" msgstr "Creado" -#: actions/showgroup.php:456 +#: actions/showgroup.php:457 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3579,7 +3607,7 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showgroup.php:462 +#: actions/showgroup.php:463 #, fuzzy, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3590,7 +3618,7 @@ msgstr "" "**%s** es un grupo de usuarios en %%%%site.name%%%%, un servicio [micro-" "blogging](http://en.wikipedia.org/wiki/Micro-blogging) " -#: actions/showgroup.php:490 +#: actions/showgroup.php:491 msgid "Admins" msgstr "Administradores" @@ -3705,149 +3733,140 @@ msgid "User is already silenced." msgstr "El usuario te ha bloqueado." #: actions/siteadminpanel.php:69 -msgid "Basic settings for this StatusNet site." +#, fuzzy +msgid "Basic settings for this StatusNet site" msgstr "Configuración básica de este sitio StatusNet." -#: actions/siteadminpanel.php:132 +#: actions/siteadminpanel.php:133 msgid "Site name must have non-zero length." msgstr "" -#: actions/siteadminpanel.php:140 +#: actions/siteadminpanel.php:141 #, fuzzy msgid "You must have a valid contact email address." msgstr "No es una dirección de correo electrónico válida" -#: actions/siteadminpanel.php:158 +#: actions/siteadminpanel.php:159 #, php-format msgid "Unknown language \"%s\"." msgstr "Idioma desconocido \"%s\"." #: actions/siteadminpanel.php:165 -msgid "Invalid snapshot report URL." -msgstr "" - -#: actions/siteadminpanel.php:171 -msgid "Invalid snapshot run value." -msgstr "" - -#: actions/siteadminpanel.php:177 -msgid "Snapshot frequency must be a number." -msgstr "La frecuencia de captura debe ser un número." - -#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "" -#: actions/siteadminpanel.php:189 +#: actions/siteadminpanel.php:171 msgid "Dupe limit must 1 or more seconds." msgstr "" -#: actions/siteadminpanel.php:239 +#: actions/siteadminpanel.php:221 msgid "General" msgstr "General" -#: actions/siteadminpanel.php:242 +#: actions/siteadminpanel.php:224 msgid "Site name" msgstr "Nombre del sitio" -#: actions/siteadminpanel.php:243 +#: actions/siteadminpanel.php:225 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "" -#: actions/siteadminpanel.php:247 +#: actions/siteadminpanel.php:229 msgid "Brought by" msgstr "" -#: actions/siteadminpanel.php:248 +#: actions/siteadminpanel.php:230 msgid "Text used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:252 +#: actions/siteadminpanel.php:234 msgid "Brought by URL" msgstr "" -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:235 msgid "URL used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:239 #, fuzzy msgid "Contact email address for your site" msgstr "Nueva dirección de correo para postear a %s" -#: actions/siteadminpanel.php:263 +#: actions/siteadminpanel.php:245 #, fuzzy msgid "Local" msgstr "Vistas locales" -#: actions/siteadminpanel.php:274 +#: actions/siteadminpanel.php:256 msgid "Default timezone" msgstr "Zona horaria predeterminada" -#: actions/siteadminpanel.php:275 +#: actions/siteadminpanel.php:257 msgid "Default timezone for the site; usually UTC." msgstr "Zona horaria predeterminada del sitio; generalmente UTC." -#: actions/siteadminpanel.php:281 -msgid "Default site language" +#: actions/siteadminpanel.php:262 +#, fuzzy +msgid "Default language" msgstr "Idioma predeterminado del sitio" -#: actions/siteadminpanel.php:289 -msgid "Snapshots" -msgstr "Capturas" - -#: actions/siteadminpanel.php:292 -msgid "Randomly during Web hit" +#: actions/siteadminpanel.php:263 +msgid "Site language when autodetection from browser settings is not available" msgstr "" -#: actions/siteadminpanel.php:293 -msgid "In a scheduled job" -msgstr "En un trabajo programado" - -#: actions/siteadminpanel.php:295 -msgid "Data snapshots" -msgstr "Capturas de datos" - -#: actions/siteadminpanel.php:296 -msgid "When to send statistical data to status.net servers" -msgstr "" - -#: actions/siteadminpanel.php:301 -msgid "Frequency" -msgstr "Frecuencia" - -#: actions/siteadminpanel.php:302 -msgid "Snapshots will be sent once every N web hits" -msgstr "" - -#: actions/siteadminpanel.php:307 -msgid "Report URL" -msgstr "" - -#: actions/siteadminpanel.php:308 -msgid "Snapshots will be sent to this URL" -msgstr "Las capturas se enviarán a este URL" - -#: actions/siteadminpanel.php:315 +#: actions/siteadminpanel.php:271 msgid "Limits" msgstr "Límites" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Text limit" msgstr "Límite de texto" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Maximum number of characters for notices." msgstr "Cantidad máxima de caracteres para los mensajes." -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "Dupe limit" msgstr "" -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "Cuántos segundos es necesario esperar para publicar lo mismo de nuevo." +#: actions/sitenoticeadminpanel.php:56 +#, fuzzy +msgid "Site Notice" +msgstr "Aviso de sitio" + +#: actions/sitenoticeadminpanel.php:67 +#, fuzzy +msgid "Edit site-wide message" +msgstr "Nuevo Mensaje " + +#: actions/sitenoticeadminpanel.php:103 +#, fuzzy +msgid "Unable to save site notice." +msgstr "No se pudo grabar tu configuración de diseño." + +#: actions/sitenoticeadminpanel.php:113 +msgid "Max length for the site-wide notice is 255 chars" +msgstr "" + +#: actions/sitenoticeadminpanel.php:176 +#, fuzzy +msgid "Site notice text" +msgstr "Aviso de sitio" + +#: actions/sitenoticeadminpanel.php:178 +msgid "Site-wide notice text (255 chars max; HTML okay)" +msgstr "" + +#: actions/sitenoticeadminpanel.php:198 +#, fuzzy +msgid "Save site notice" +msgstr "Aviso de sitio" + #: actions/smssettings.php:58 msgid "SMS settings" msgstr "Configuración de SMS" @@ -3950,6 +3969,66 @@ msgstr "" msgid "No code entered" msgstr "No ingresó código" +#. TRANS: Menu item for site administration +#: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 +#: lib/adminpanelaction.php:406 +msgid "Snapshots" +msgstr "Capturas" + +#: actions/snapshotadminpanel.php:65 +#, fuzzy +msgid "Manage snapshot configuration" +msgstr "Cambiar la configuración del sitio" + +#: actions/snapshotadminpanel.php:127 +msgid "Invalid snapshot run value." +msgstr "" + +#: actions/snapshotadminpanel.php:133 +msgid "Snapshot frequency must be a number." +msgstr "La frecuencia de captura debe ser un número." + +#: actions/snapshotadminpanel.php:144 +msgid "Invalid snapshot report URL." +msgstr "" + +#: actions/snapshotadminpanel.php:200 +msgid "Randomly during Web hit" +msgstr "" + +#: actions/snapshotadminpanel.php:201 +msgid "In a scheduled job" +msgstr "En un trabajo programado" + +#: actions/snapshotadminpanel.php:206 +msgid "Data snapshots" +msgstr "Capturas de datos" + +#: actions/snapshotadminpanel.php:208 +msgid "When to send statistical data to status.net servers" +msgstr "" + +#: actions/snapshotadminpanel.php:217 +msgid "Frequency" +msgstr "Frecuencia" + +#: actions/snapshotadminpanel.php:218 +msgid "Snapshots will be sent once every N web hits" +msgstr "" + +#: actions/snapshotadminpanel.php:226 +msgid "Report URL" +msgstr "" + +#: actions/snapshotadminpanel.php:227 +msgid "Snapshots will be sent to this URL" +msgstr "Las capturas se enviarán a este URL" + +#: actions/snapshotadminpanel.php:248 +#, fuzzy +msgid "Save snapshot settings" +msgstr "Guardar la configuración del sitio" + #: actions/subedit.php:70 msgid "You are not subscribed to that profile." msgstr "No te has suscrito a ese perfil." @@ -4152,7 +4231,7 @@ msgstr "No hay id de perfil solicitado." msgid "Unsubscribed" msgstr "Desuscrito" -#: actions/updateprofile.php:62 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -4354,16 +4433,22 @@ msgstr "Miembros del grupo %s, página %d" msgid "Search for more groups" msgstr "Buscar más grupos" -#: actions/usergroups.php:153 +#: actions/usergroups.php:157 #, fuzzy, php-format msgid "%s is not a member of any group." msgstr "No eres miembro de ese grupo" -#: actions/usergroups.php:158 +#: actions/usergroups.php:162 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" +#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: lib/atomusernoticefeed.php:72 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "¡Actualizaciones de %1$s en %2$s!" + #: actions/version.php:73 #, fuzzy, php-format msgid "StatusNet %s" @@ -4409,7 +4494,7 @@ msgstr "" msgid "Plugins" msgstr "Complementos" -#: actions/version.php:196 lib/action.php:778 +#: actions/version.php:196 lib/action.php:767 #, fuzzy msgid "Version" msgstr "Sesiones" @@ -4476,22 +4561,22 @@ msgstr "No se pudo actualizar mensaje con nuevo URI." msgid "DB error inserting hashtag: %s" msgstr "Error de la BD al insertar la etiqueta clave: %s" -#: classes/Notice.php:239 +#: classes/Notice.php:241 msgid "Problem saving notice. Too long." msgstr "Ha habido un problema al guardar el mensaje. Es muy largo." -#: classes/Notice.php:243 +#: classes/Notice.php:245 msgid "Problem saving notice. Unknown user." msgstr "Ha habido un problema al guardar el mensaje. Usuario desconocido." -#: classes/Notice.php:248 +#: classes/Notice.php:250 msgid "" "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." -#: classes/Notice.php:254 +#: classes/Notice.php:256 #, fuzzy msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " @@ -4500,20 +4585,20 @@ msgstr "" "Demasiados avisos demasiado rápido; para y publicar nuevamente en unos " "minutos." -#: classes/Notice.php:260 +#: classes/Notice.php:262 msgid "You are banned from posting notices on this site." msgstr "Tienes prohibido publicar avisos en este sitio." -#: classes/Notice.php:326 classes/Notice.php:352 +#: classes/Notice.php:328 classes/Notice.php:354 msgid "Problem saving notice." msgstr "Hubo un problema al guardar el aviso." -#: classes/Notice.php:911 +#: classes/Notice.php:927 #, fuzzy msgid "Problem saving group inbox." msgstr "Hubo un problema al guardar el aviso." -#: classes/Notice.php:1442 +#: classes/Notice.php:1459 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -4540,7 +4625,12 @@ msgstr "¡No estás suscrito!" msgid "Couldn't delete self-subscription." msgstr "No se pudo eliminar la suscripción." -#: classes/Subscription.php:179 lib/subs.php:69 +#: classes/Subscription.php:190 +#, fuzzy +msgid "Couldn't delete subscription OMB token." +msgstr "No se pudo eliminar la suscripción." + +#: classes/Subscription.php:201 lib/subs.php:69 msgid "Couldn't delete subscription." msgstr "No se pudo eliminar la suscripción." @@ -4549,21 +4639,21 @@ msgstr "No se pudo eliminar la suscripción." msgid "Welcome to %1$s, @%2$s!" msgstr "Bienvenido a %1$s, @%2$s!" -#: classes/User_group.php:462 +#: classes/User_group.php:477 msgid "Could not create group." msgstr "No se pudo crear grupo." -#: classes/User_group.php:471 +#: classes/User_group.php:486 #, fuzzy msgid "Could not set group URI." msgstr "No se pudo configurar miembros de grupo." -#: classes/User_group.php:492 +#: classes/User_group.php:507 #, fuzzy msgid "Could not set group membership." msgstr "No se pudo configurar miembros de grupo." -#: classes/User_group.php:506 +#: classes/User_group.php:521 #, fuzzy msgid "Could not save local group info." msgstr "No se ha podido guardar la suscripción." @@ -4605,194 +4695,188 @@ msgstr "%1$s - %2$s" msgid "Untitled page" msgstr "Página sin título" -#: lib/action.php:433 +#: lib/action.php:424 msgid "Primary site navigation" msgstr "Navegación de sitio primario" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:439 +#: lib/action.php:430 #, fuzzy msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Perfil personal y línea de tiempo de amigos" -#: lib/action.php:442 +#: lib/action.php:433 #, fuzzy msgctxt "MENU" msgid "Personal" msgstr "Personal" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:444 +#: lib/action.php:435 #, fuzzy msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Cambia tu correo electrónico, avatar, contraseña, perfil" -#: lib/action.php:447 -#, fuzzy -msgctxt "MENU" -msgid "Account" -msgstr "Cuenta" - #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:450 +#: lib/action.php:440 #, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Conectar a los servicios" -#: lib/action.php:453 +#: lib/action.php:443 #, fuzzy -msgctxt "MENU" msgid "Connect" msgstr "Conectarse" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:457 +#: lib/action.php:446 #, fuzzy msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Cambiar la configuración del sitio" -#: lib/action.php:460 +#: lib/action.php:449 #, fuzzy msgctxt "MENU" msgid "Admin" msgstr "Admin" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:464 +#: lib/action.php:453 #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Invita a amigos y colegas a unirse a %s" -#: lib/action.php:467 +#: lib/action.php:456 #, fuzzy msgctxt "MENU" msgid "Invite" msgstr "Invitar" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:473 +#: lib/action.php:462 #, fuzzy msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Salir de sitio" -#: lib/action.php:476 +#: lib/action.php:465 #, fuzzy msgctxt "MENU" msgid "Logout" msgstr "Salir" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:481 +#: lib/action.php:470 #, fuzzy msgctxt "TOOLTIP" msgid "Create an account" msgstr "Crear una cuenta" -#: lib/action.php:484 +#: lib/action.php:473 #, fuzzy msgctxt "MENU" msgid "Register" msgstr "Registrarse" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:487 +#: lib/action.php:476 #, fuzzy msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Ingresar a sitio" -#: lib/action.php:490 +#: lib/action.php:479 #, fuzzy msgctxt "MENU" msgid "Login" msgstr "Inicio de sesión" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:493 +#: lib/action.php:482 #, fuzzy msgctxt "TOOLTIP" msgid "Help me!" msgstr "Ayúdame!" -#: lib/action.php:496 +#: lib/action.php:485 #, fuzzy msgctxt "MENU" msgid "Help" msgstr "Ayuda" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:499 +#: lib/action.php:488 #, fuzzy msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Buscar personas o texto" -#: lib/action.php:502 +#: lib/action.php:491 #, fuzzy msgctxt "MENU" msgid "Search" msgstr "Buscar" #. TRANS: DT element for site notice. String is hidden in default CSS. -#: lib/action.php:524 +#. TRANS: Menu item for site administration +#: lib/action.php:513 lib/adminpanelaction.php:398 msgid "Site notice" msgstr "Aviso de sitio" -#: lib/action.php:590 +#: lib/action.php:579 msgid "Local views" msgstr "Vistas locales" -#: lib/action.php:656 +#: lib/action.php:645 msgid "Page notice" msgstr "Aviso de página" -#: lib/action.php:758 +#: lib/action.php:747 msgid "Secondary site navigation" msgstr "Navegación de sitio secundario" -#: lib/action.php:763 +#: lib/action.php:752 msgid "Help" msgstr "Ayuda" -#: lib/action.php:765 +#: lib/action.php:754 msgid "About" msgstr "Acerca de" -#: lib/action.php:767 +#: lib/action.php:756 msgid "FAQ" msgstr "Preguntas Frecuentes" -#: lib/action.php:771 +#: lib/action.php:760 msgid "TOS" msgstr "" -#: lib/action.php:774 +#: lib/action.php:763 msgid "Privacy" msgstr "Privacidad" -#: lib/action.php:776 +#: lib/action.php:765 msgid "Source" msgstr "Fuente" -#: lib/action.php:780 +#: lib/action.php:769 msgid "Contact" msgstr "Ponerse en contacto" -#: lib/action.php:782 +#: lib/action.php:771 msgid "Badge" msgstr "Insignia" -#: lib/action.php:810 +#: lib/action.php:799 msgid "StatusNet software license" msgstr "Licencia de software de StatusNet" -#: lib/action.php:813 +#: lib/action.php:802 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4801,12 +4885,12 @@ msgstr "" "**%%site.name%%** es un servicio de microblogueo de [%%site.broughtby%%**](%%" "site.broughtbyurl%%)." -#: lib/action.php:815 +#: lib/action.php:804 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** es un servicio de microblogueo." -#: lib/action.php:817 +#: lib/action.php:806 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4817,55 +4901,55 @@ msgstr "" "disponible bajo la [GNU Affero General Public License](http://www.fsf.org/" "licensing/licenses/agpl-3.0.html)." -#: lib/action.php:832 +#: lib/action.php:821 msgid "Site content license" msgstr "Licencia de contenido del sitio" -#: lib/action.php:837 +#: lib/action.php:826 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:842 +#: lib/action.php:831 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:845 +#: lib/action.php:834 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" "Derechos de autor de contenido y datos por los colaboradores. Todos los " "derechos reservados." -#: lib/action.php:858 +#: lib/action.php:847 msgid "All " msgstr "Todo" -#: lib/action.php:864 +#: lib/action.php:853 msgid "license." msgstr "Licencia." -#: lib/action.php:1163 +#: lib/action.php:1152 msgid "Pagination" msgstr "Paginación" -#: lib/action.php:1172 +#: lib/action.php:1161 msgid "After" msgstr "Después" -#: lib/action.php:1180 +#: lib/action.php:1169 msgid "Before" msgstr "Antes" -#: lib/activity.php:449 +#: lib/activity.php:453 msgid "Can't handle remote content yet." msgstr "" -#: lib/activity.php:477 +#: lib/activity.php:481 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activity.php:481 +#: lib/activity.php:485 msgid "Can't handle embedded Base64 content yet." msgstr "" @@ -4881,95 +4965,84 @@ msgid "Changes to that panel are not allowed." msgstr "Registro de usuario no permitido." #. TRANS: Client error message -#: lib/adminpanelaction.php:211 +#: lib/adminpanelaction.php:229 #, fuzzy msgid "showForm() not implemented." msgstr "Todavía no se implementa comando." #. TRANS: Client error message -#: lib/adminpanelaction.php:241 +#: lib/adminpanelaction.php:259 #, fuzzy msgid "saveSettings() not implemented." msgstr "Todavía no se implementa comando." #. TRANS: Client error message -#: lib/adminpanelaction.php:265 +#: lib/adminpanelaction.php:283 #, fuzzy msgid "Unable to delete design setting." msgstr "¡No se pudo guardar tu configuración de Twitter!" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:330 +#: lib/adminpanelaction.php:348 msgid "Basic site configuration" msgstr "Configuración básica del sitio" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:332 +#: lib/adminpanelaction.php:350 #, fuzzy msgctxt "MENU" msgid "Site" msgstr "Sitio" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:338 +#: lib/adminpanelaction.php:356 msgid "Design configuration" msgstr "Configuración del diseño" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:340 +#: lib/adminpanelaction.php:358 #, fuzzy msgctxt "MENU" msgid "Design" msgstr "Diseño" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:346 +#: lib/adminpanelaction.php:364 msgid "User configuration" msgstr "Configuración de usuario" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:348 -#, fuzzy -msgctxt "MENU" +#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 msgid "User" msgstr "Usuario" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:354 +#: lib/adminpanelaction.php:372 msgid "Access configuration" msgstr "Configuración de acceso" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:356 -#, fuzzy -msgctxt "MENU" -msgid "Access" -msgstr "Acceder" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:362 +#: lib/adminpanelaction.php:380 #, fuzzy msgid "Paths configuration" msgstr "SMS confirmación" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:364 -#, fuzzy -msgctxt "MENU" -msgid "Paths" -msgstr "Rutas" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:370 +#: lib/adminpanelaction.php:388 msgid "Sessions configuration" msgstr "Configuración de sesiones" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:372 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:396 #, fuzzy -msgctxt "MENU" -msgid "Sessions" -msgstr "Sesiones" +msgid "Edit site notice" +msgstr "Aviso de sitio" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:404 +#, fuzzy +msgid "Snapshots configuration" +msgstr "SMS confirmación" #: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." @@ -5462,6 +5535,11 @@ msgstr "Elegir tag para reducir lista" msgid "Go" msgstr "Ir" +#: lib/grantroleform.php:91 +#, php-format +msgid "Grant this user the \"%s\" role" +msgstr "" + #: lib/groupeditform.php:163 #, fuzzy msgid "URL of the homepage or blog of the group or topic" @@ -6012,10 +6090,6 @@ msgstr "Respuestas" msgid "Favorites" msgstr "Favoritos" -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "Usuario" - #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "Bandeja de Entrada" @@ -6042,7 +6116,7 @@ msgstr "Tags en avisos de %s" msgid "Unknown" msgstr "Acción desconocida" -#: lib/profileaction.php:109 lib/profileaction.php:192 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:194 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Suscripciones" @@ -6050,24 +6124,24 @@ msgstr "Suscripciones" msgid "All subscriptions" msgstr "Todas las suscripciones" -#: lib/profileaction.php:140 lib/profileaction.php:201 lib/subgroupnav.php:90 +#: lib/profileaction.php:142 lib/profileaction.php:203 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Suscriptores" -#: lib/profileaction.php:157 +#: lib/profileaction.php:159 #, fuzzy msgid "All subscribers" msgstr "Todos los suscriptores" -#: lib/profileaction.php:178 +#: lib/profileaction.php:180 msgid "User ID" msgstr "ID de usuario" -#: lib/profileaction.php:183 +#: lib/profileaction.php:185 msgid "Member since" msgstr "Miembro desde" -#: lib/profileaction.php:245 +#: lib/profileaction.php:247 msgid "All groups" msgstr "Todos los grupos" @@ -6110,7 +6184,12 @@ msgstr "Responder este aviso." msgid "Repeat this notice" msgstr "Responder este aviso." -#: lib/router.php:668 +#: lib/revokeroleform.php:91 +#, fuzzy, php-format +msgid "Revoke the \"%s\" role from this user" +msgstr "Bloquear este usuario de este grupo" + +#: lib/router.php:671 msgid "No single user defined for single-user mode." msgstr "" @@ -6271,47 +6350,64 @@ msgstr "Mensaje" msgid "Moderate" msgstr "Moderar" -#: lib/util.php:1013 +#: lib/userprofile.php:352 +#, fuzzy +msgid "User role" +msgstr "Perfil de usuario" + +#: lib/userprofile.php:354 +#, fuzzy +msgctxt "role" +msgid "Administrator" +msgstr "Administradores" + +#: lib/userprofile.php:355 +#, fuzzy +msgctxt "role" +msgid "Moderator" +msgstr "Moderar" + +#: lib/util.php:1015 msgid "a few seconds ago" msgstr "hace unos segundos" -#: lib/util.php:1015 +#: lib/util.php:1017 msgid "about a minute ago" msgstr "hace un minuto" -#: lib/util.php:1017 +#: lib/util.php:1019 #, php-format msgid "about %d minutes ago" msgstr "hace %d minutos" -#: lib/util.php:1019 +#: lib/util.php:1021 msgid "about an hour ago" msgstr "hace una hora" -#: lib/util.php:1021 +#: lib/util.php:1023 #, php-format msgid "about %d hours ago" msgstr "hace %d horas" -#: lib/util.php:1023 +#: lib/util.php:1025 msgid "about a day ago" msgstr "hace un día" -#: lib/util.php:1025 +#: lib/util.php:1027 #, php-format msgid "about %d days ago" msgstr "hace %d días" -#: lib/util.php:1027 +#: lib/util.php:1029 msgid "about a month ago" msgstr "hace un mes" -#: lib/util.php:1029 +#: lib/util.php:1031 #, php-format msgid "about %d months ago" msgstr "hace %d meses" -#: lib/util.php:1031 +#: lib/util.php:1033 msgid "about a year ago" msgstr "hace un año" diff --git a/locale/fa/LC_MESSAGES/statusnet.po b/locale/fa/LC_MESSAGES/statusnet.po index bb453f582b..a685686002 100644 --- a/locale/fa/LC_MESSAGES/statusnet.po +++ b/locale/fa/LC_MESSAGES/statusnet.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-02 21:02+0000\n" -"PO-Revision-Date: 2010-03-02 21:02:45+0000\n" +"POT-Creation-Date: 2010-03-04 18:55+0000\n" +"PO-Revision-Date: 2010-03-04 18:56:22+0000\n" "Last-Translator: Ahmad Sufi Mahmudi\n" "Language-Team: Persian\n" "MIME-Version: 1.0\n" @@ -20,11 +20,12 @@ msgstr "" "X-Language-Code: fa\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" #. TRANS: Page title -#: actions/accessadminpanel.php:55 +#. TRANS: Menu item for site administration +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 msgid "Access" msgstr "دسترسی" @@ -124,7 +125,7 @@ msgstr "%s کاربران مسدود شده، صفحه‌ی %d" #. TRANS: Page title. %1$s is user nickname #. TRANS: H1 text. %1$s is user nickname -#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -185,7 +186,7 @@ msgstr "" "را جلب کنید." #. TRANS: H1 text -#: actions/all.php:174 +#: actions/all.php:178 msgid "You and friends" msgstr "شما و دوستان" @@ -212,11 +213,11 @@ msgstr "به روز رسانی از %1$ و دوستان در %2$" #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 -#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 +#: actions/apitimelinegroup.php:160 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:148 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 msgid "API method not found." msgstr "رابط مورد نظر پیدا نشد." @@ -574,7 +575,7 @@ msgid "" "give access to your %4$s account to third parties you trust." msgstr "" -#: actions/apioauthauthorize.php:310 +#: actions/apioauthauthorize.php:310 lib/action.php:438 msgid "Account" msgstr "حساب کاربری" @@ -663,18 +664,6 @@ msgstr "%s / دوست داشتنی از %s" msgid "%1$s updates favorited by %2$s / %2$s." msgstr "%s به روز رسانی های دوست داشتنی %s / %s" -#: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:138 actions/userrss.php:90 -#, php-format -msgid "%s timeline" -msgstr "خط زمانی %s" - -#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 -#: actions/userrss.php:92 -#, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "به روز رسانی‌های %1$s در %2$s" - #: actions/apitimelinementions.php:117 #, php-format msgid "%1$s / Updates mentioning %2$s" @@ -685,12 +674,12 @@ msgstr "%$1s / به روز رسانی های شامل %2$s" msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "%1$s به روز رسانی هایی که در پاسخ به $2$s / %3$s" -#: actions/apitimelinepublic.php:111 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "%s خط‌زمانی عمومی" -#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "%s به روز رسانی های عموم" @@ -939,7 +928,7 @@ msgid "Conversation" msgstr "مکالمه" #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:216 lib/searchgroupnav.php:82 +#: lib/profileaction.php:218 lib/searchgroupnav.php:82 msgid "Notices" msgstr "پیام‌ها" @@ -961,7 +950,7 @@ msgstr "شما یک عضو این گروه نیستید." #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1228 +#: lib/action.php:1217 msgid "There was a problem with your session token." msgstr "" @@ -1160,8 +1149,9 @@ msgstr "برگشت به حالت پیش گزیده" #: actions/designadminpanel.php:586 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 +#: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:208 #: actions/tagother.php:154 actions/useradminpanel.php:294 #: lib/applicationeditform.php:333 lib/applicationeditform.php:334 #: lib/designsettings.php:256 lib/groupeditform.php:202 @@ -1287,7 +1277,7 @@ msgstr "توصیف بسیار زیاد است (حداکثر %d حرف)." msgid "Could not update group." msgstr "نمی‌توان گروه را به‌هنگام‌سازی کرد." -#: actions/editgroup.php:264 classes/User_group.php:478 +#: actions/editgroup.php:264 classes/User_group.php:493 msgid "Could not create aliases." msgstr "نمی‌توان نام‌های مستعار را ساخت." @@ -1410,7 +1400,7 @@ msgid "Cannot normalize that email address" msgstr "نمی‌توان نشانی را قانونی کرد" #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:143 +#: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "یک آدرس ایمیل معتبر نیست." @@ -1600,6 +1590,25 @@ msgstr "چنین پرونده‌ای وجود ندارد." msgid "Cannot read file." msgstr "نمی‌توان پرونده را خواند." +#: actions/grantrole.php:62 actions/revokerole.php:62 +#, fuzzy +msgid "Invalid role." +msgstr "اندازه‌ی نادرست" + +#: actions/grantrole.php:66 actions/revokerole.php:66 +msgid "This role is reserved and cannot be set." +msgstr "" + +#: actions/grantrole.php:75 +#, fuzzy +msgid "You cannot grant user roles on this site." +msgstr "شما نمی توانید کاربری را در این سایت ساکت کنید." + +#: actions/grantrole.php:82 +#, fuzzy +msgid "User already has this role." +msgstr "کاربر قبلا ساکت شده است." + #: actions/groupblock.php:71 actions/groupunblock.php:71 #: actions/makeadmin.php:71 actions/subedit.php:46 #: lib/profileformaction.php:70 @@ -1741,12 +1750,18 @@ msgstr "مدیر شود" msgid "Make this user an admin" msgstr "این کاربر یک مدیر شود" +#: actions/grouprss.php:138 actions/userrss.php:90 +#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#, php-format +msgid "%s timeline" +msgstr "خط زمانی %s" + #: actions/grouprss.php:140 #, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "به روز رسانی کابران %1$s در %2$s" -#: actions/groups.php:62 lib/profileaction.php:210 lib/profileaction.php:230 +#: actions/groups.php:62 lib/profileaction.php:212 lib/profileaction.php:232 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" msgstr "گروه‌ها" @@ -2340,8 +2355,8 @@ msgstr "نوع محتوا " msgid "Only " msgstr " فقط" -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 -#: lib/apiaction.php:1068 lib/apiaction.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1042 +#: lib/apiaction.php:1070 lib/apiaction.php:1179 msgid "Not a supported data format." msgstr "یک قالب دادهٔ پشتیبانی‌شده نیست." @@ -2487,7 +2502,8 @@ msgstr "نمی‌توان گذرواژه جدید را ذخیره کرد." msgid "Password saved." msgstr "گذرواژه ذخیره شد." -#: actions/pathsadminpanel.php:59 +#. TRANS: Menu item for site administration +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 msgid "Paths" msgstr "مسیر ها" @@ -2607,7 +2623,7 @@ msgstr "شاخهٔ تصاویر پیش‌زمینه" msgid "SSL" msgstr "" -#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 +#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202 msgid "Never" msgstr "هیچ وقت" @@ -2663,11 +2679,11 @@ msgstr "یک برچسب کاربری معتبر نیست: %s" msgid "Users self-tagged with %1$s - page %2$d" msgstr "کاربران خود برچسب‌گذاری شده با %s - صفحهٔ %d" -#: actions/postnotice.php:84 +#: actions/postnotice.php:95 msgid "Invalid notice content" msgstr "محتوای آگهی نامعتبر" -#: actions/postnotice.php:90 +#: actions/postnotice.php:101 #, php-format msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" @@ -2745,7 +2761,7 @@ msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" -#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 +#: actions/profilesettings.php:151 msgid "Language" msgstr "زبان" @@ -2771,7 +2787,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "" -#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:151 msgid "Timezone not selected." msgstr "منطقه‌ی زمانی انتخاب نشده است." @@ -3073,7 +3089,7 @@ msgid "Same as password above. Required." msgstr "" #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 msgid "Email" msgstr "پست الکترونیکی" @@ -3161,7 +3177,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:368 +#: lib/userprofile.php:394 msgid "Subscribe" msgstr "" @@ -3259,6 +3275,16 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "" +#: actions/revokerole.php:75 +#, fuzzy +msgid "You cannot revoke user roles on this site." +msgstr "شما نمی توانید کاربری را در این سایت ساکت کنید." + +#: actions/revokerole.php:82 +#, fuzzy +msgid "User doesn't have this role." +msgstr "کاربر بدون مشخصات" + #: actions/rsd.php:146 actions/version.php:157 #, fuzzy msgid "StatusNet" @@ -3272,7 +3298,9 @@ msgstr "" msgid "User is already sandboxed." msgstr "" +#. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:390 msgid "Sessions" msgstr "" @@ -3297,7 +3325,7 @@ msgstr "" msgid "Turn on debugging output for sessions." msgstr "" -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "" @@ -3332,8 +3360,8 @@ msgstr "صفحه بندى" msgid "Description" msgstr "" -#: actions/showapplication.php:192 actions/showgroup.php:437 -#: lib/profileaction.php:174 +#: actions/showapplication.php:192 actions/showgroup.php:438 +#: lib/profileaction.php:176 msgid "Statistics" msgstr "آمار" @@ -3467,45 +3495,45 @@ msgstr "نام های مستعار" msgid "Group actions" msgstr "" -#: actions/showgroup.php:336 +#: actions/showgroup.php:337 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "" -#: actions/showgroup.php:342 +#: actions/showgroup.php:343 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "" -#: actions/showgroup.php:348 +#: actions/showgroup.php:349 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "" -#: actions/showgroup.php:353 +#: actions/showgroup.php:354 #, php-format msgid "FOAF for %s group" msgstr "" -#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 +#: actions/showgroup.php:390 actions/showgroup.php:447 lib/groupnav.php:91 msgid "Members" msgstr "اعضا" -#: actions/showgroup.php:394 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 +#: actions/showgroup.php:395 lib/profileaction.php:117 +#: lib/profileaction.php:150 lib/profileaction.php:238 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "هیچ" -#: actions/showgroup.php:400 +#: actions/showgroup.php:401 msgid "All members" msgstr "همه ی اعضا" -#: actions/showgroup.php:440 +#: actions/showgroup.php:441 msgid "Created" msgstr "ساخته شد" -#: actions/showgroup.php:456 +#: actions/showgroup.php:457 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3515,7 +3543,7 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showgroup.php:462 +#: actions/showgroup.php:463 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3524,7 +3552,7 @@ msgid "" "their life and interests. " msgstr "" -#: actions/showgroup.php:490 +#: actions/showgroup.php:491 msgid "Admins" msgstr "" @@ -3638,149 +3666,140 @@ msgid "User is already silenced." msgstr "کاربر قبلا ساکت شده است." #: actions/siteadminpanel.php:69 -msgid "Basic settings for this StatusNet site." +#, fuzzy +msgid "Basic settings for this StatusNet site" msgstr "تنظیمات پایه ای برای این سایت StatusNet." -#: actions/siteadminpanel.php:132 +#: actions/siteadminpanel.php:133 msgid "Site name must have non-zero length." msgstr "نام سایت باید طولی غیر صفر داشته باشد." -#: actions/siteadminpanel.php:140 +#: actions/siteadminpanel.php:141 #, fuzzy msgid "You must have a valid contact email address." msgstr "شما باید یک آدرس ایمیل قابل قبول برای ارتباط داشته باشید" -#: actions/siteadminpanel.php:158 +#: actions/siteadminpanel.php:159 #, php-format msgid "Unknown language \"%s\"." msgstr "" #: actions/siteadminpanel.php:165 -msgid "Invalid snapshot report URL." -msgstr "" - -#: actions/siteadminpanel.php:171 -msgid "Invalid snapshot run value." -msgstr "" - -#: actions/siteadminpanel.php:177 -msgid "Snapshot frequency must be a number." -msgstr "" - -#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "" -#: actions/siteadminpanel.php:189 +#: actions/siteadminpanel.php:171 msgid "Dupe limit must 1 or more seconds." msgstr "" -#: actions/siteadminpanel.php:239 +#: actions/siteadminpanel.php:221 msgid "General" msgstr "" -#: actions/siteadminpanel.php:242 +#: actions/siteadminpanel.php:224 msgid "Site name" msgstr "نام وب‌گاه" -#: actions/siteadminpanel.php:243 +#: actions/siteadminpanel.php:225 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "نام وب‌گاه شما، مانند «میکروبلاگ شرکت شما»" -#: actions/siteadminpanel.php:247 +#: actions/siteadminpanel.php:229 msgid "Brought by" msgstr "أورده شده به وسیله ی" -#: actions/siteadminpanel.php:248 +#: actions/siteadminpanel.php:230 msgid "Text used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:252 +#: actions/siteadminpanel.php:234 msgid "Brought by URL" msgstr "" -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:235 msgid "URL used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:239 msgid "Contact email address for your site" msgstr "" -#: actions/siteadminpanel.php:263 +#: actions/siteadminpanel.php:245 msgid "Local" msgstr "محلی" -#: actions/siteadminpanel.php:274 +#: actions/siteadminpanel.php:256 msgid "Default timezone" msgstr "منطقه ی زمانی پیش فرض" -#: actions/siteadminpanel.php:275 +#: actions/siteadminpanel.php:257 msgid "Default timezone for the site; usually UTC." msgstr "منظقه ی زمانی پیش فرض برای سایت؛ معمولا UTC." -#: actions/siteadminpanel.php:281 -msgid "Default site language" +#: actions/siteadminpanel.php:262 +#, fuzzy +msgid "Default language" msgstr "زبان پیش فرض سایت" -#: actions/siteadminpanel.php:289 -msgid "Snapshots" +#: actions/siteadminpanel.php:263 +msgid "Site language when autodetection from browser settings is not available" msgstr "" -#: actions/siteadminpanel.php:292 -msgid "Randomly during Web hit" -msgstr "" - -#: actions/siteadminpanel.php:293 -msgid "In a scheduled job" -msgstr "" - -#: actions/siteadminpanel.php:295 -msgid "Data snapshots" -msgstr "" - -#: actions/siteadminpanel.php:296 -msgid "When to send statistical data to status.net servers" -msgstr "" - -#: actions/siteadminpanel.php:301 -msgid "Frequency" -msgstr "" - -#: actions/siteadminpanel.php:302 -msgid "Snapshots will be sent once every N web hits" -msgstr "" - -#: actions/siteadminpanel.php:307 -msgid "Report URL" -msgstr "" - -#: actions/siteadminpanel.php:308 -msgid "Snapshots will be sent to this URL" -msgstr "" - -#: actions/siteadminpanel.php:315 +#: actions/siteadminpanel.php:271 msgid "Limits" msgstr "محدودیت ها" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Text limit" msgstr "محدودیت متن" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Maximum number of characters for notices." msgstr "بیشینهٔ تعداد حروف برای آگهی‌ها" -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "Dupe limit" msgstr "" -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" "چه مدت کاربران باید منتظر بمانند ( به ثانیه ) تا همان چیز را مجددا ارسال " "کنند." +#: actions/sitenoticeadminpanel.php:56 +#, fuzzy +msgid "Site Notice" +msgstr "خبر سایت" + +#: actions/sitenoticeadminpanel.php:67 +#, fuzzy +msgid "Edit site-wide message" +msgstr "پیام جدید" + +#: actions/sitenoticeadminpanel.php:103 +#, fuzzy +msgid "Unable to save site notice." +msgstr "نمی‌توان تنظیمات طرح‌تان را ذخیره کرد." + +#: actions/sitenoticeadminpanel.php:113 +msgid "Max length for the site-wide notice is 255 chars" +msgstr "" + +#: actions/sitenoticeadminpanel.php:176 +#, fuzzy +msgid "Site notice text" +msgstr "خبر سایت" + +#: actions/sitenoticeadminpanel.php:178 +msgid "Site-wide notice text (255 chars max; HTML okay)" +msgstr "" + +#: actions/sitenoticeadminpanel.php:198 +#, fuzzy +msgid "Save site notice" +msgstr "خبر سایت" + #: actions/smssettings.php:58 #, fuzzy msgid "SMS settings" @@ -3877,6 +3896,66 @@ msgstr "" msgid "No code entered" msgstr "کدی وارد نشد" +#. TRANS: Menu item for site administration +#: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 +#: lib/adminpanelaction.php:406 +msgid "Snapshots" +msgstr "" + +#: actions/snapshotadminpanel.php:65 +#, fuzzy +msgid "Manage snapshot configuration" +msgstr "تغییر پیکربندی سایت" + +#: actions/snapshotadminpanel.php:127 +msgid "Invalid snapshot run value." +msgstr "" + +#: actions/snapshotadminpanel.php:133 +msgid "Snapshot frequency must be a number." +msgstr "" + +#: actions/snapshotadminpanel.php:144 +msgid "Invalid snapshot report URL." +msgstr "" + +#: actions/snapshotadminpanel.php:200 +msgid "Randomly during Web hit" +msgstr "" + +#: actions/snapshotadminpanel.php:201 +msgid "In a scheduled job" +msgstr "" + +#: actions/snapshotadminpanel.php:206 +msgid "Data snapshots" +msgstr "" + +#: actions/snapshotadminpanel.php:208 +msgid "When to send statistical data to status.net servers" +msgstr "" + +#: actions/snapshotadminpanel.php:217 +msgid "Frequency" +msgstr "" + +#: actions/snapshotadminpanel.php:218 +msgid "Snapshots will be sent once every N web hits" +msgstr "" + +#: actions/snapshotadminpanel.php:226 +msgid "Report URL" +msgstr "" + +#: actions/snapshotadminpanel.php:227 +msgid "Snapshots will be sent to this URL" +msgstr "" + +#: actions/snapshotadminpanel.php:248 +#, fuzzy +msgid "Save snapshot settings" +msgstr "تنظیمات چهره" + #: actions/subedit.php:70 msgid "You are not subscribed to that profile." msgstr "شما به این پروفيل متعهد نشدید" @@ -4072,7 +4151,7 @@ msgstr "" msgid "Unsubscribed" msgstr "" -#: actions/updateprofile.php:62 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -4263,16 +4342,22 @@ msgstr "اعضای گروه %s، صفحهٔ %d" msgid "Search for more groups" msgstr "جستجو برای گروه های بیشتر" -#: actions/usergroups.php:153 +#: actions/usergroups.php:157 #, php-format msgid "%s is not a member of any group." msgstr "" -#: actions/usergroups.php:158 +#: actions/usergroups.php:162 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" +#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: lib/atomusernoticefeed.php:72 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "به روز رسانی‌های %1$s در %2$s" + #: actions/version.php:73 #, fuzzy, php-format msgid "StatusNet %s" @@ -4316,7 +4401,7 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:196 lib/action.php:778 +#: actions/version.php:196 lib/action.php:767 #, fuzzy msgid "Version" msgstr "شخصی" @@ -4383,22 +4468,22 @@ msgstr "" msgid "DB error inserting hashtag: %s" msgstr "" -#: classes/Notice.php:239 +#: classes/Notice.php:241 msgid "Problem saving notice. Too long." msgstr "مشکل در ذخیره کردن پیام. بسیار طولانی." -#: classes/Notice.php:243 +#: classes/Notice.php:245 msgid "Problem saving notice. Unknown user." msgstr "مشکل در ذخیره کردن پیام. کاربر نا شناخته." -#: classes/Notice.php:248 +#: classes/Notice.php:250 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" "تعداد خیلی زیاد آگهی و بسیار سریع؛ استراحت کنید و مجددا دقایقی دیگر ارسال " "کنید." -#: classes/Notice.php:254 +#: classes/Notice.php:256 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." @@ -4406,20 +4491,20 @@ msgstr "" "تعداد زیاد پیام های دو نسخه ای و بسرعت؛ استراحت کنید و دقایقی دیگر مجددا " "ارسال کنید." -#: classes/Notice.php:260 +#: classes/Notice.php:262 msgid "You are banned from posting notices on this site." msgstr "شما از فرستادن پست در این سایت مردود شدید ." -#: classes/Notice.php:326 classes/Notice.php:352 +#: classes/Notice.php:328 classes/Notice.php:354 msgid "Problem saving notice." msgstr "مشکل در ذخیره کردن آگهی." -#: classes/Notice.php:911 +#: classes/Notice.php:927 #, fuzzy msgid "Problem saving group inbox." msgstr "مشکل در ذخیره کردن آگهی." -#: classes/Notice.php:1442 +#: classes/Notice.php:1459 #, php-format msgid "RT @%1$s %2$s" msgstr "" @@ -4444,7 +4529,12 @@ msgstr "تایید نشده!" msgid "Couldn't delete self-subscription." msgstr "" -#: classes/Subscription.php:179 lib/subs.php:69 +#: classes/Subscription.php:190 +#, fuzzy +msgid "Couldn't delete subscription OMB token." +msgstr "نمی‌توان تصدیق پست الکترونیک را پاک کرد." + +#: classes/Subscription.php:201 lib/subs.php:69 msgid "Couldn't delete subscription." msgstr "" @@ -4453,20 +4543,20 @@ msgstr "" msgid "Welcome to %1$s, @%2$s!" msgstr "خوش امدید به %1$s , @%2$s!" -#: classes/User_group.php:462 +#: classes/User_group.php:477 msgid "Could not create group." msgstr "نمیتوان گروه را تشکیل داد" -#: classes/User_group.php:471 +#: classes/User_group.php:486 #, fuzzy msgid "Could not set group URI." msgstr "نمیتوان گروه را تشکیل داد" -#: classes/User_group.php:492 +#: classes/User_group.php:507 msgid "Could not set group membership." msgstr "" -#: classes/User_group.php:506 +#: classes/User_group.php:521 #, fuzzy msgid "Could not save local group info." msgstr "نمی‌توان شناس‌نامه را ذخیره کرد." @@ -4508,205 +4598,199 @@ msgstr "%s گروه %s را ترک کرد." msgid "Untitled page" msgstr "صفحه ی بدون عنوان" -#: lib/action.php:433 +#: lib/action.php:424 msgid "Primary site navigation" msgstr "" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:439 +#: lib/action.php:430 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:442 +#: lib/action.php:433 #, fuzzy msgctxt "MENU" msgid "Personal" msgstr "شخصی" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:444 +#: lib/action.php:435 #, fuzzy msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "آدرس ایمیل، آواتار، کلمه ی عبور، پروفایل خود را تغییر دهید" -#: lib/action.php:447 -#, fuzzy -msgctxt "MENU" -msgid "Account" -msgstr "حساب کاربری" - #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:450 +#: lib/action.php:440 #, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" msgstr "متصل شدن به خدمات" -#: lib/action.php:453 +#: lib/action.php:443 #, fuzzy -msgctxt "MENU" msgid "Connect" msgstr "وصل‌شدن" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:457 +#: lib/action.php:446 #, fuzzy msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "تغییر پیکربندی سایت" -#: lib/action.php:460 +#: lib/action.php:449 #, fuzzy msgctxt "MENU" msgid "Admin" msgstr "مدیر" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:464 +#: lib/action.php:453 #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr " به شما ملحق شوند %s دوستان و همکاران را دعوت کنید تا در" -#: lib/action.php:467 +#: lib/action.php:456 #, fuzzy msgctxt "MENU" msgid "Invite" msgstr "دعوت‌کردن" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:473 +#: lib/action.php:462 #, fuzzy msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "خارج شدن از سایت ." -#: lib/action.php:476 +#: lib/action.php:465 #, fuzzy msgctxt "MENU" msgid "Logout" msgstr "خروج" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:481 +#: lib/action.php:470 #, fuzzy msgctxt "TOOLTIP" msgid "Create an account" msgstr "یک حساب کاربری بسازید" -#: lib/action.php:484 +#: lib/action.php:473 #, fuzzy msgctxt "MENU" msgid "Register" msgstr "ثبت نام" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:487 +#: lib/action.php:476 #, fuzzy msgctxt "TOOLTIP" msgid "Login to the site" msgstr "ورود به وب‌گاه" -#: lib/action.php:490 +#: lib/action.php:479 #, fuzzy msgctxt "MENU" msgid "Login" msgstr "ورود" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:493 +#: lib/action.php:482 #, fuzzy msgctxt "TOOLTIP" msgid "Help me!" msgstr "به من کمک کنید!" -#: lib/action.php:496 +#: lib/action.php:485 #, fuzzy msgctxt "MENU" msgid "Help" msgstr "کمک" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:499 +#: lib/action.php:488 #, fuzzy msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "جستجو برای شخص با متن" -#: lib/action.php:502 +#: lib/action.php:491 #, fuzzy msgctxt "MENU" msgid "Search" msgstr "جست‌وجو" #. TRANS: DT element for site notice. String is hidden in default CSS. -#: lib/action.php:524 +#. TRANS: Menu item for site administration +#: lib/action.php:513 lib/adminpanelaction.php:398 msgid "Site notice" msgstr "خبر سایت" -#: lib/action.php:590 +#: lib/action.php:579 msgid "Local views" msgstr "دید محلی" -#: lib/action.php:656 +#: lib/action.php:645 msgid "Page notice" msgstr "خبر صفحه" -#: lib/action.php:758 +#: lib/action.php:747 msgid "Secondary site navigation" msgstr "" -#: lib/action.php:763 +#: lib/action.php:752 msgid "Help" msgstr "کمک" -#: lib/action.php:765 +#: lib/action.php:754 msgid "About" msgstr "دربارهٔ" -#: lib/action.php:767 +#: lib/action.php:756 msgid "FAQ" msgstr "سوال‌های رایج" -#: lib/action.php:771 +#: lib/action.php:760 msgid "TOS" msgstr "" -#: lib/action.php:774 +#: lib/action.php:763 msgid "Privacy" msgstr "خصوصی" -#: lib/action.php:776 +#: lib/action.php:765 msgid "Source" msgstr "منبع" -#: lib/action.php:780 +#: lib/action.php:769 msgid "Contact" msgstr "تماس" -#: lib/action.php:782 +#: lib/action.php:771 msgid "Badge" msgstr "" -#: lib/action.php:810 +#: lib/action.php:799 msgid "StatusNet software license" msgstr "StatusNet مجوز نرم افزار" -#: lib/action.php:813 +#: lib/action.php:802 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." "broughtby%%](%%site.broughtbyurl%%). " msgstr "" -#: lib/action.php:815 +#: lib/action.php:804 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "" -#: lib/action.php:817 +#: lib/action.php:806 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4714,53 +4798,53 @@ msgid "" "org/licensing/licenses/agpl-3.0.html)." msgstr "" -#: lib/action.php:832 +#: lib/action.php:821 msgid "Site content license" msgstr "مجوز محتویات سایت" -#: lib/action.php:837 +#: lib/action.php:826 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:842 +#: lib/action.php:831 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:845 +#: lib/action.php:834 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" -#: lib/action.php:858 +#: lib/action.php:847 msgid "All " msgstr "همه " -#: lib/action.php:864 +#: lib/action.php:853 msgid "license." msgstr "مجوز." -#: lib/action.php:1163 +#: lib/action.php:1152 msgid "Pagination" msgstr "صفحه بندى" -#: lib/action.php:1172 +#: lib/action.php:1161 msgid "After" msgstr "بعد از" -#: lib/action.php:1180 +#: lib/action.php:1169 msgid "Before" msgstr "قبل از" -#: lib/activity.php:449 +#: lib/activity.php:453 msgid "Can't handle remote content yet." msgstr "" -#: lib/activity.php:477 +#: lib/activity.php:481 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activity.php:481 +#: lib/activity.php:485 msgid "Can't handle embedded Base64 content yet." msgstr "" @@ -4776,94 +4860,83 @@ msgid "Changes to that panel are not allowed." msgstr "اجازه‌ی ثبت نام داده نشده است." #. TRANS: Client error message -#: lib/adminpanelaction.php:211 +#: lib/adminpanelaction.php:229 msgid "showForm() not implemented." msgstr "" #. TRANS: Client error message -#: lib/adminpanelaction.php:241 +#: lib/adminpanelaction.php:259 msgid "saveSettings() not implemented." msgstr "" #. TRANS: Client error message -#: lib/adminpanelaction.php:265 +#: lib/adminpanelaction.php:283 msgid "Unable to delete design setting." msgstr "نمی توان تنظیمات طراحی شده را پاک کرد ." #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:330 +#: lib/adminpanelaction.php:348 msgid "Basic site configuration" msgstr "پیکره بندی اصلی سایت" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:332 +#: lib/adminpanelaction.php:350 #, fuzzy msgctxt "MENU" msgid "Site" msgstr "سایت" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:338 +#: lib/adminpanelaction.php:356 msgid "Design configuration" msgstr "" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:340 +#: lib/adminpanelaction.php:358 #, fuzzy msgctxt "MENU" msgid "Design" msgstr "طرح" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:346 +#: lib/adminpanelaction.php:364 #, fuzzy msgid "User configuration" msgstr "پیکره بندی اصلی سایت" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:348 -#, fuzzy -msgctxt "MENU" +#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 msgid "User" msgstr "کاربر" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:354 +#: lib/adminpanelaction.php:372 #, fuzzy msgid "Access configuration" msgstr "پیکره بندی اصلی سایت" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:356 -#, fuzzy -msgctxt "MENU" -msgid "Access" -msgstr "دسترسی" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:362 +#: lib/adminpanelaction.php:380 msgid "Paths configuration" msgstr "" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:364 -#, fuzzy -msgctxt "MENU" -msgid "Paths" -msgstr "مسیر ها" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:370 +#: lib/adminpanelaction.php:388 #, fuzzy msgid "Sessions configuration" msgstr "پیکره بندی اصلی سایت" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:372 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:396 #, fuzzy -msgctxt "MENU" -msgid "Sessions" -msgstr "شخصی" +msgid "Edit site notice" +msgstr "خبر سایت" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:404 +#, fuzzy +msgid "Snapshots configuration" +msgstr "پیکره بندی اصلی سایت" #: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." @@ -5354,6 +5427,11 @@ msgstr "" msgid "Go" msgstr "برو" +#: lib/grantroleform.php:91 +#, php-format +msgid "Grant this user the \"%s\" role" +msgstr "" + #: lib/groupeditform.php:163 msgid "URL of the homepage or blog of the group or topic" msgstr "" @@ -5889,10 +5967,6 @@ msgstr "پاسخ ها" msgid "Favorites" msgstr "چیزهای مورد علاقه" -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "کاربر" - #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "صندوق دریافتی" @@ -5918,7 +5992,7 @@ msgstr "" msgid "Unknown" msgstr "" -#: lib/profileaction.php:109 lib/profileaction.php:192 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:194 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "اشتراک‌ها" @@ -5926,23 +6000,23 @@ msgstr "اشتراک‌ها" msgid "All subscriptions" msgstr "تمام اشتراک‌ها" -#: lib/profileaction.php:140 lib/profileaction.php:201 lib/subgroupnav.php:90 +#: lib/profileaction.php:142 lib/profileaction.php:203 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "مشترک‌ها" -#: lib/profileaction.php:157 +#: lib/profileaction.php:159 msgid "All subscribers" msgstr "تمام مشترک‌ها" -#: lib/profileaction.php:178 +#: lib/profileaction.php:180 msgid "User ID" msgstr "شناسه کاربر" -#: lib/profileaction.php:183 +#: lib/profileaction.php:185 msgid "Member since" msgstr "عضو شده از" -#: lib/profileaction.php:245 +#: lib/profileaction.php:247 msgid "All groups" msgstr "تمام گروه‌ها" @@ -5983,7 +6057,12 @@ msgstr "به این آگهی جواب دهید" msgid "Repeat this notice" msgstr "" -#: lib/router.php:668 +#: lib/revokeroleform.php:91 +#, fuzzy, php-format +msgid "Revoke the \"%s\" role from this user" +msgstr "دسترسی کاربر را به گروه مسدود کن" + +#: lib/router.php:671 msgid "No single user defined for single-user mode." msgstr "" @@ -6137,47 +6216,62 @@ msgstr "پیام" msgid "Moderate" msgstr "" -#: lib/util.php:1013 +#: lib/userprofile.php:352 +#, fuzzy +msgid "User role" +msgstr "پروفایل کاربر" + +#: lib/userprofile.php:354 +msgctxt "role" +msgid "Administrator" +msgstr "" + +#: lib/userprofile.php:355 +msgctxt "role" +msgid "Moderator" +msgstr "" + +#: lib/util.php:1015 msgid "a few seconds ago" msgstr "چند ثانیه پیش" -#: lib/util.php:1015 +#: lib/util.php:1017 msgid "about a minute ago" msgstr "حدود یک دقیقه پیش" -#: lib/util.php:1017 +#: lib/util.php:1019 #, php-format msgid "about %d minutes ago" msgstr "حدود %d دقیقه پیش" -#: lib/util.php:1019 +#: lib/util.php:1021 msgid "about an hour ago" msgstr "حدود یک ساعت پیش" -#: lib/util.php:1021 +#: lib/util.php:1023 #, php-format msgid "about %d hours ago" msgstr "حدود %d ساعت پیش" -#: lib/util.php:1023 +#: lib/util.php:1025 msgid "about a day ago" msgstr "حدود یک روز پیش" -#: lib/util.php:1025 +#: lib/util.php:1027 #, php-format msgid "about %d days ago" msgstr "حدود %d روز پیش" -#: lib/util.php:1027 +#: lib/util.php:1029 msgid "about a month ago" msgstr "حدود یک ماه پیش" -#: lib/util.php:1029 +#: lib/util.php:1031 #, php-format msgid "about %d months ago" msgstr "حدود %d ماه پیش" -#: lib/util.php:1031 +#: lib/util.php:1033 msgid "about a year ago" msgstr "حدود یک سال پیش" diff --git a/locale/fi/LC_MESSAGES/statusnet.po b/locale/fi/LC_MESSAGES/statusnet.po index 97ab7038b9..b4978769f3 100644 --- a/locale/fi/LC_MESSAGES/statusnet.po +++ b/locale/fi/LC_MESSAGES/statusnet.po @@ -10,19 +10,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-02 21:02+0000\n" -"PO-Revision-Date: 2010-03-02 21:02:42+0000\n" +"POT-Creation-Date: 2010-03-04 18:55+0000\n" +"PO-Revision-Date: 2010-03-04 18:56:19+0000\n" "Language-Team: Finnish\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. TRANS: Page title -#: actions/accessadminpanel.php:55 +#. TRANS: Menu item for site administration +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 #, fuzzy msgid "Access" msgstr "Hyväksy" @@ -125,7 +126,7 @@ msgstr "%s ja kaverit, sivu %d" #. TRANS: Page title. %1$s is user nickname #. TRANS: H1 text. %1$s is user nickname -#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -186,7 +187,7 @@ msgid "" msgstr "" #. TRANS: H1 text -#: actions/all.php:174 +#: actions/all.php:178 msgid "You and friends" msgstr "Sinä ja kaverit" @@ -213,11 +214,11 @@ msgstr "Käyttäjän %1$s ja kavereiden päivitykset palvelussa %2$s!" #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 -#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 +#: actions/apitimelinegroup.php:160 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:148 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 #, fuzzy msgid "API method not found." msgstr "API-metodia ei löytynyt!" @@ -589,7 +590,7 @@ msgid "" "give access to your %4$s account to third parties you trust." msgstr "" -#: actions/apioauthauthorize.php:310 +#: actions/apioauthauthorize.php:310 lib/action.php:438 msgid "Account" msgstr "Käyttäjätili" @@ -680,18 +681,6 @@ msgstr "%s / Käyttäjän %s suosikit" msgid "%1$s updates favorited by %2$s / %2$s." msgstr " Palvelun %s päivitykset, jotka %s / %s on merkinnyt suosikikseen." -#: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:138 actions/userrss.php:90 -#, php-format -msgid "%s timeline" -msgstr "%s aikajana" - -#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 -#: 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/apitimelinementions.php:117 #, fuzzy, php-format msgid "%1$s / Updates mentioning %2$s" @@ -703,12 +692,12 @@ 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/apitimelinepublic.php:111 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "%s julkinen aikajana" -#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "%s päivitykset kaikilta!" @@ -954,7 +943,7 @@ msgid "Conversation" msgstr "Keskustelu" #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:216 lib/searchgroupnav.php:82 +#: lib/profileaction.php:218 lib/searchgroupnav.php:82 msgid "Notices" msgstr "Päivitykset" @@ -977,7 +966,7 @@ msgstr "Sinä et kuulu tähän ryhmään." #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1228 +#: lib/action.php:1217 msgid "There was a problem with your session token." msgstr "Istuntoavaimesi kanssa oli ongelma." @@ -1178,8 +1167,9 @@ msgstr "" #: actions/designadminpanel.php:586 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 +#: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:208 #: actions/tagother.php:154 actions/useradminpanel.php:294 #: lib/applicationeditform.php:333 lib/applicationeditform.php:334 #: lib/designsettings.php:256 lib/groupeditform.php:202 @@ -1308,7 +1298,7 @@ msgstr "kuvaus on liian pitkä (max %d merkkiä)." msgid "Could not update group." msgstr "Ei voitu päivittää ryhmää." -#: actions/editgroup.php:264 classes/User_group.php:478 +#: actions/editgroup.php:264 classes/User_group.php:493 msgid "Could not create aliases." msgstr "Ei voitu lisätä aliasta." @@ -1435,7 +1425,7 @@ msgid "Cannot normalize that email address" msgstr "Ei voida normalisoida sähköpostiosoitetta" #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:143 +#: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Tuo ei ole kelvollinen sähköpostiosoite." @@ -1629,6 +1619,25 @@ msgstr "Tiedostoa ei ole." msgid "Cannot read file." msgstr "Tiedostoa ei voi lukea." +#: actions/grantrole.php:62 actions/revokerole.php:62 +#, fuzzy +msgid "Invalid role." +msgstr "Koko ei kelpaa." + +#: actions/grantrole.php:66 actions/revokerole.php:66 +msgid "This role is reserved and cannot be set." +msgstr "" + +#: actions/grantrole.php:75 +#, fuzzy +msgid "You cannot grant user roles on this site." +msgstr "Et voi lähettää viestiä tälle käyttäjälle." + +#: actions/grantrole.php:82 +#, fuzzy +msgid "User already has this role." +msgstr "Käyttäjä on asettanut eston sinulle." + #: actions/groupblock.php:71 actions/groupunblock.php:71 #: actions/makeadmin.php:71 actions/subedit.php:46 #: lib/profileformaction.php:70 @@ -1773,12 +1782,18 @@ msgstr "Tee ylläpitäjäksi" msgid "Make this user an admin" msgstr "Tee tästä käyttäjästä ylläpitäjä" +#: actions/grouprss.php:138 actions/userrss.php:90 +#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#, php-format +msgid "%s timeline" +msgstr "%s aikajana" + #: actions/grouprss.php:140 #, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Ryhmän %1$s käyttäjien päivitykset palvelussa %2$s!" -#: actions/groups.php:62 lib/profileaction.php:210 lib/profileaction.php:230 +#: actions/groups.php:62 lib/profileaction.php:212 lib/profileaction.php:232 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" msgstr "Ryhmät" @@ -2403,8 +2418,8 @@ msgstr "Yhdistä" msgid "Only " msgstr "Vain " -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 -#: lib/apiaction.php:1068 lib/apiaction.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1042 +#: lib/apiaction.php:1070 lib/apiaction.php:1179 msgid "Not a supported data format." msgstr "Tuo ei ole tuettu tietomuoto." @@ -2550,7 +2565,8 @@ msgstr "Uutta salasanaa ei voida tallentaa." msgid "Password saved." msgstr "Salasana tallennettu." -#: actions/pathsadminpanel.php:59 +#. TRANS: Menu item for site administration +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 msgid "Paths" msgstr "Polut" @@ -2678,7 +2694,7 @@ msgstr "Taustakuvan hakemisto" msgid "SSL" msgstr "SMS" -#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 +#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202 #, fuzzy msgid "Never" msgstr "Palauta" @@ -2739,11 +2755,11 @@ msgstr "Ei sallittu henkilötagi: %s" msgid "Users self-tagged with %1$s - page %2$d" msgstr "Käyttäjät joilla henkilötagi %s - sivu %d" -#: actions/postnotice.php:84 +#: actions/postnotice.php:95 msgid "Invalid notice content" msgstr "Päivityksen sisältö ei kelpaa" -#: actions/postnotice.php:90 +#: actions/postnotice.php:101 #, php-format msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" @@ -2825,7 +2841,7 @@ 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:151 actions/siteadminpanel.php:280 +#: actions/profilesettings.php:151 msgid "Language" msgstr "Kieli" @@ -2853,7 +2869,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "\"Tietoja\" on liian pitkä (max 140 merkkiä)." -#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:151 msgid "Timezone not selected." msgstr "Aikavyöhykettä ei ole valittu." @@ -3162,7 +3178,7 @@ msgid "Same as password above. Required." msgstr "Sama kuin ylläoleva salasana. Pakollinen." #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 msgid "Email" msgstr "Sähköposti" @@ -3272,7 +3288,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "Profiilisi URL-osoite toisessa yhteensopivassa mikroblogauspalvelussa" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:368 +#: lib/userprofile.php:394 msgid "Subscribe" msgstr "Tilaa" @@ -3382,6 +3398,16 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "Viesti käyttäjälle %1$s, %2$s" +#: actions/revokerole.php:75 +#, fuzzy +msgid "You cannot revoke user roles on this site." +msgstr "Et voi lähettää viestiä tälle käyttäjälle." + +#: actions/revokerole.php:82 +#, fuzzy +msgid "User doesn't have this role." +msgstr "Käyttäjälle ei löydy profiilia" + #: actions/rsd.php:146 actions/version.php:157 #, fuzzy msgid "StatusNet" @@ -3397,7 +3423,9 @@ msgstr "Et voi lähettää viestiä tälle käyttäjälle." msgid "User is already sandboxed." msgstr "Käyttäjä on asettanut eston sinulle." +#. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:390 msgid "Sessions" msgstr "" @@ -3422,7 +3450,7 @@ msgstr "" msgid "Turn on debugging output for sessions." msgstr "" -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/useradminpanel.php:294 #, fuzzy msgid "Save site settings" @@ -3458,8 +3486,8 @@ msgstr "Sivutus" msgid "Description" msgstr "Kuvaus" -#: actions/showapplication.php:192 actions/showgroup.php:437 -#: lib/profileaction.php:174 +#: actions/showapplication.php:192 actions/showgroup.php:438 +#: lib/profileaction.php:176 msgid "Statistics" msgstr "Tilastot" @@ -3592,45 +3620,45 @@ msgstr "Aliakset" msgid "Group actions" msgstr "Ryhmän toiminnot" -#: actions/showgroup.php:336 +#: actions/showgroup.php:337 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Syöte ryhmän %s päivityksille (RSS 1.0)" -#: actions/showgroup.php:342 +#: actions/showgroup.php:343 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Syöte ryhmän %s päivityksille (RSS 2.0)" -#: actions/showgroup.php:348 +#: actions/showgroup.php:349 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "Syöte ryhmän %s päivityksille (Atom)" -#: actions/showgroup.php:353 +#: actions/showgroup.php:354 #, php-format msgid "FOAF for %s group" msgstr "Käyttäjän %s lähetetyt viestit" -#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 +#: actions/showgroup.php:390 actions/showgroup.php:447 lib/groupnav.php:91 msgid "Members" msgstr "Jäsenet" -#: actions/showgroup.php:394 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 +#: actions/showgroup.php:395 lib/profileaction.php:117 +#: lib/profileaction.php:150 lib/profileaction.php:238 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(Tyhjä)" -#: actions/showgroup.php:400 +#: actions/showgroup.php:401 msgid "All members" msgstr "Kaikki jäsenet" -#: actions/showgroup.php:440 +#: actions/showgroup.php:441 msgid "Created" msgstr "Luotu" -#: actions/showgroup.php:456 +#: actions/showgroup.php:457 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3640,7 +3668,7 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showgroup.php:462 +#: actions/showgroup.php:463 #, fuzzy, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3651,7 +3679,7 @@ msgstr "" "**%s** on ryhmä palvelussa %%%%site.name%%%%, joka on [mikroblogauspalvelu]" "(http://en.wikipedia.org/wiki/Micro-blogging)" -#: actions/showgroup.php:490 +#: actions/showgroup.php:491 msgid "Admins" msgstr "Ylläpitäjät" @@ -3769,151 +3797,141 @@ msgid "User is already silenced." msgstr "Käyttäjä on asettanut eston sinulle." #: actions/siteadminpanel.php:69 -msgid "Basic settings for this StatusNet site." -msgstr "" +#, fuzzy +msgid "Basic settings for this StatusNet site" +msgstr "Ulkoasuasetukset tälle StatusNet palvelulle." -#: actions/siteadminpanel.php:132 +#: actions/siteadminpanel.php:133 msgid "Site name must have non-zero length." msgstr "" -#: actions/siteadminpanel.php:140 +#: actions/siteadminpanel.php:141 #, fuzzy msgid "You must have a valid contact email address." msgstr "Tuo ei ole kelvollinen sähköpostiosoite" -#: actions/siteadminpanel.php:158 +#: actions/siteadminpanel.php:159 #, php-format msgid "Unknown language \"%s\"." msgstr "" #: actions/siteadminpanel.php:165 -msgid "Invalid snapshot report URL." -msgstr "" - -#: actions/siteadminpanel.php:171 -msgid "Invalid snapshot run value." -msgstr "" - -#: actions/siteadminpanel.php:177 -msgid "Snapshot frequency must be a number." -msgstr "" - -#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "" -#: actions/siteadminpanel.php:189 +#: actions/siteadminpanel.php:171 msgid "Dupe limit must 1 or more seconds." msgstr "" -#: actions/siteadminpanel.php:239 +#: actions/siteadminpanel.php:221 msgid "General" msgstr "" -#: actions/siteadminpanel.php:242 +#: actions/siteadminpanel.php:224 #, fuzzy msgid "Site name" msgstr "Palvelun ilmoitus" -#: actions/siteadminpanel.php:243 +#: actions/siteadminpanel.php:225 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "" -#: actions/siteadminpanel.php:247 +#: actions/siteadminpanel.php:229 msgid "Brought by" msgstr "" -#: actions/siteadminpanel.php:248 +#: actions/siteadminpanel.php:230 msgid "Text used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:252 +#: actions/siteadminpanel.php:234 msgid "Brought by URL" msgstr "" -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:235 msgid "URL used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:239 #, fuzzy msgid "Contact email address for your site" msgstr "Uusi sähköpostiosoite päivityksien lähettämiseen palveluun %s" -#: actions/siteadminpanel.php:263 +#: actions/siteadminpanel.php:245 #, fuzzy msgid "Local" msgstr "Paikalliset näkymät" -#: actions/siteadminpanel.php:274 +#: actions/siteadminpanel.php:256 msgid "Default timezone" msgstr "" -#: actions/siteadminpanel.php:275 +#: actions/siteadminpanel.php:257 msgid "Default timezone for the site; usually UTC." msgstr "" -#: actions/siteadminpanel.php:281 +#: actions/siteadminpanel.php:262 #, fuzzy -msgid "Default site language" +msgid "Default language" msgstr "Ensisijainen kieli" -#: actions/siteadminpanel.php:289 -msgid "Snapshots" +#: actions/siteadminpanel.php:263 +msgid "Site language when autodetection from browser settings is not available" msgstr "" -#: actions/siteadminpanel.php:292 -msgid "Randomly during Web hit" -msgstr "" - -#: actions/siteadminpanel.php:293 -msgid "In a scheduled job" -msgstr "" - -#: actions/siteadminpanel.php:295 -msgid "Data snapshots" -msgstr "" - -#: actions/siteadminpanel.php:296 -msgid "When to send statistical data to status.net servers" -msgstr "" - -#: actions/siteadminpanel.php:301 -msgid "Frequency" -msgstr "" - -#: actions/siteadminpanel.php:302 -msgid "Snapshots will be sent once every N web hits" -msgstr "" - -#: actions/siteadminpanel.php:307 -msgid "Report URL" -msgstr "" - -#: actions/siteadminpanel.php:308 -msgid "Snapshots will be sent to this URL" -msgstr "" - -#: actions/siteadminpanel.php:315 +#: actions/siteadminpanel.php:271 msgid "Limits" msgstr "" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Text limit" msgstr "" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Maximum number of characters for notices." msgstr "" -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "Dupe limit" msgstr "" -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" +#: actions/sitenoticeadminpanel.php:56 +#, fuzzy +msgid "Site Notice" +msgstr "Palvelun ilmoitus" + +#: actions/sitenoticeadminpanel.php:67 +#, fuzzy +msgid "Edit site-wide message" +msgstr "Uusi viesti" + +#: actions/sitenoticeadminpanel.php:103 +#, fuzzy +msgid "Unable to save site notice." +msgstr "Twitter-asetuksia ei voitu tallentaa!" + +#: actions/sitenoticeadminpanel.php:113 +msgid "Max length for the site-wide notice is 255 chars" +msgstr "" + +#: actions/sitenoticeadminpanel.php:176 +#, fuzzy +msgid "Site notice text" +msgstr "Palvelun ilmoitus" + +#: actions/sitenoticeadminpanel.php:178 +msgid "Site-wide notice text (255 chars max; HTML okay)" +msgstr "" + +#: actions/sitenoticeadminpanel.php:198 +#, fuzzy +msgid "Save site notice" +msgstr "Palvelun ilmoitus" + #: actions/smssettings.php:58 #, fuzzy msgid "SMS settings" @@ -4016,6 +4034,66 @@ msgstr "" msgid "No code entered" msgstr "Koodia ei ole syötetty." +#. TRANS: Menu item for site administration +#: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 +#: lib/adminpanelaction.php:406 +msgid "Snapshots" +msgstr "" + +#: actions/snapshotadminpanel.php:65 +#, fuzzy +msgid "Manage snapshot configuration" +msgstr "Ensisijainen sivunavigointi" + +#: actions/snapshotadminpanel.php:127 +msgid "Invalid snapshot run value." +msgstr "" + +#: actions/snapshotadminpanel.php:133 +msgid "Snapshot frequency must be a number." +msgstr "" + +#: actions/snapshotadminpanel.php:144 +msgid "Invalid snapshot report URL." +msgstr "" + +#: actions/snapshotadminpanel.php:200 +msgid "Randomly during Web hit" +msgstr "" + +#: actions/snapshotadminpanel.php:201 +msgid "In a scheduled job" +msgstr "" + +#: actions/snapshotadminpanel.php:206 +msgid "Data snapshots" +msgstr "" + +#: actions/snapshotadminpanel.php:208 +msgid "When to send statistical data to status.net servers" +msgstr "" + +#: actions/snapshotadminpanel.php:217 +msgid "Frequency" +msgstr "" + +#: actions/snapshotadminpanel.php:218 +msgid "Snapshots will be sent once every N web hits" +msgstr "" + +#: actions/snapshotadminpanel.php:226 +msgid "Report URL" +msgstr "" + +#: actions/snapshotadminpanel.php:227 +msgid "Snapshots will be sent to this URL" +msgstr "" + +#: actions/snapshotadminpanel.php:248 +#, fuzzy +msgid "Save snapshot settings" +msgstr "Profiilikuva-asetukset" + #: 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ä." @@ -4221,7 +4299,7 @@ msgstr "Ei profiili id:tä kyselyssä." msgid "Unsubscribed" msgstr "Tilaus lopetettu" -#: actions/updateprofile.php:62 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -4432,16 +4510,22 @@ msgstr "Ryhmän %s jäsenet, sivu %d" msgid "Search for more groups" msgstr "Hae lisää ryhmiä" -#: actions/usergroups.php:153 +#: actions/usergroups.php:157 #, fuzzy, php-format msgid "%s is not a member of any group." msgstr "Sinä et kuulu tähän ryhmään." -#: actions/usergroups.php:158 +#: actions/usergroups.php:162 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" +#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: lib/atomusernoticefeed.php:72 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "Käyttäjän %1$s päivitykset palvelussa %2$s!" + #: actions/version.php:73 #, fuzzy, php-format msgid "StatusNet %s" @@ -4485,7 +4569,7 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:196 lib/action.php:778 +#: actions/version.php:196 lib/action.php:767 #, fuzzy msgid "Version" msgstr "Omat" @@ -4554,23 +4638,23 @@ msgstr "Viestin päivittäminen uudella URI-osoitteella ei onnistunut." msgid "DB error inserting hashtag: %s" msgstr "Tietokantavirhe tallennettaessa risutagiä: %s" -#: classes/Notice.php:239 +#: classes/Notice.php:241 #, fuzzy msgid "Problem saving notice. Too long." msgstr "Ongelma päivityksen tallentamisessa." -#: classes/Notice.php:243 +#: classes/Notice.php:245 msgid "Problem saving notice. Unknown user." msgstr "Virhe tapahtui päivityksen tallennuksessa. Tuntematon käyttäjä." -#: classes/Notice.php:248 +#: classes/Notice.php:250 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ä." -#: classes/Notice.php:254 +#: classes/Notice.php:256 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." @@ -4578,20 +4662,20 @@ 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:260 +#: classes/Notice.php:262 msgid "You are banned from posting notices on this site." msgstr "Päivityksesi tähän palveluun on estetty." -#: classes/Notice.php:326 classes/Notice.php:352 +#: classes/Notice.php:328 classes/Notice.php:354 msgid "Problem saving notice." msgstr "Ongelma päivityksen tallentamisessa." -#: classes/Notice.php:911 +#: classes/Notice.php:927 #, fuzzy msgid "Problem saving group inbox." msgstr "Ongelma päivityksen tallentamisessa." -#: classes/Notice.php:1442 +#: classes/Notice.php:1459 #, fuzzy, php-format msgid "RT @%1$s %2$s" msgstr "%1$s (%2$s)" @@ -4619,7 +4703,12 @@ msgstr "Ei ole tilattu!." msgid "Couldn't delete self-subscription." msgstr "Ei voitu poistaa tilausta." -#: classes/Subscription.php:179 lib/subs.php:69 +#: classes/Subscription.php:190 +#, fuzzy +msgid "Couldn't delete subscription OMB token." +msgstr "Ei voitu poistaa tilausta." + +#: classes/Subscription.php:201 lib/subs.php:69 msgid "Couldn't delete subscription." msgstr "Ei voitu poistaa tilausta." @@ -4628,20 +4717,20 @@ msgstr "Ei voitu poistaa tilausta." msgid "Welcome to %1$s, @%2$s!" msgstr "Viesti käyttäjälle %1$s, %2$s" -#: classes/User_group.php:462 +#: classes/User_group.php:477 msgid "Could not create group." msgstr "Ryhmän luonti ei onnistunut." -#: classes/User_group.php:471 +#: classes/User_group.php:486 #, fuzzy msgid "Could not set group URI." msgstr "Ryhmän jäsenyystietoja ei voitu asettaa." -#: classes/User_group.php:492 +#: classes/User_group.php:507 msgid "Could not set group membership." msgstr "Ryhmän jäsenyystietoja ei voitu asettaa." -#: classes/User_group.php:506 +#: classes/User_group.php:521 #, fuzzy msgid "Could not save local group info." msgstr "Tilausta ei onnistuttu tallentamaan." @@ -4684,195 +4773,189 @@ msgstr "%1$s (%2$s)" msgid "Untitled page" msgstr "Nimetön sivu" -#: lib/action.php:433 +#: lib/action.php:424 msgid "Primary site navigation" msgstr "Ensisijainen sivunavigointi" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:439 +#: lib/action.php:430 #, fuzzy msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Henkilökohtainen profiili ja kavereiden aikajana" -#: lib/action.php:442 +#: lib/action.php:433 #, fuzzy msgctxt "MENU" msgid "Personal" msgstr "Omat" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:444 +#: lib/action.php:435 #, fuzzy msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Muuta sähköpostiosoitettasi, kuvaasi, salasanaasi, profiiliasi" -#: lib/action.php:447 -#, fuzzy -msgctxt "MENU" -msgid "Account" -msgstr "Käyttäjätili" - #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:450 +#: lib/action.php:440 #, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Ei voitu uudelleenohjata palvelimelle: %s" -#: lib/action.php:453 +#: lib/action.php:443 #, fuzzy -msgctxt "MENU" msgid "Connect" msgstr "Yhdistä" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:457 +#: lib/action.php:446 #, fuzzy msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Ensisijainen sivunavigointi" -#: lib/action.php:460 +#: lib/action.php:449 #, fuzzy msgctxt "MENU" msgid "Admin" msgstr "Ylläpito" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:464 +#: lib/action.php:453 #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Kutsu kavereita ja työkavereita liittymään palveluun %s" -#: lib/action.php:467 +#: lib/action.php:456 #, fuzzy msgctxt "MENU" msgid "Invite" msgstr "Kutsu" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:473 +#: lib/action.php:462 #, fuzzy msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Kirjaudu ulos palvelusta" -#: lib/action.php:476 +#: lib/action.php:465 #, fuzzy msgctxt "MENU" msgid "Logout" msgstr "Kirjaudu ulos" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:481 +#: lib/action.php:470 #, fuzzy msgctxt "TOOLTIP" msgid "Create an account" msgstr "Luo uusi käyttäjätili" -#: lib/action.php:484 +#: lib/action.php:473 #, fuzzy msgctxt "MENU" msgid "Register" msgstr "Rekisteröidy" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:487 +#: lib/action.php:476 #, fuzzy msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Kirjaudu sisään palveluun" -#: lib/action.php:490 +#: lib/action.php:479 #, fuzzy msgctxt "MENU" msgid "Login" msgstr "Kirjaudu sisään" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:493 +#: lib/action.php:482 #, fuzzy msgctxt "TOOLTIP" msgid "Help me!" msgstr "Auta minua!" -#: lib/action.php:496 +#: lib/action.php:485 #, fuzzy msgctxt "MENU" msgid "Help" msgstr "Ohjeet" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:499 +#: lib/action.php:488 #, fuzzy msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Hae ihmisiä tai tekstiä" -#: lib/action.php:502 +#: lib/action.php:491 #, fuzzy msgctxt "MENU" msgid "Search" msgstr "Haku" #. TRANS: DT element for site notice. String is hidden in default CSS. -#: lib/action.php:524 +#. TRANS: Menu item for site administration +#: lib/action.php:513 lib/adminpanelaction.php:398 msgid "Site notice" msgstr "Palvelun ilmoitus" -#: lib/action.php:590 +#: lib/action.php:579 msgid "Local views" msgstr "Paikalliset näkymät" -#: lib/action.php:656 +#: lib/action.php:645 msgid "Page notice" msgstr "Sivuilmoitus" -#: lib/action.php:758 +#: lib/action.php:747 msgid "Secondary site navigation" msgstr "Toissijainen sivunavigointi" -#: lib/action.php:763 +#: lib/action.php:752 msgid "Help" msgstr "Ohjeet" -#: lib/action.php:765 +#: lib/action.php:754 msgid "About" msgstr "Tietoa" -#: lib/action.php:767 +#: lib/action.php:756 msgid "FAQ" msgstr "UKK" -#: lib/action.php:771 +#: lib/action.php:760 msgid "TOS" msgstr "" -#: lib/action.php:774 +#: lib/action.php:763 msgid "Privacy" msgstr "Yksityisyys" -#: lib/action.php:776 +#: lib/action.php:765 msgid "Source" msgstr "Lähdekoodi" -#: lib/action.php:780 +#: lib/action.php:769 msgid "Contact" msgstr "Ota yhteyttä" -#: lib/action.php:782 +#: lib/action.php:771 #, fuzzy msgid "Badge" msgstr "Tönäise" -#: lib/action.php:810 +#: lib/action.php:799 msgid "StatusNet software license" msgstr "StatusNet-ohjelmiston lisenssi" -#: lib/action.php:813 +#: lib/action.php:802 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4881,12 +4964,12 @@ msgstr "" "**%%site.name%%** on mikroblogipalvelu, jonka tarjoaa [%%site.broughtby%%](%%" "site.broughtbyurl%%). " -#: lib/action.php:815 +#: lib/action.php:804 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** on mikroblogipalvelu. " -#: lib/action.php:817 +#: lib/action.php:806 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4897,54 +4980,54 @@ msgstr "" "versio %s, saatavilla lisenssillä [GNU Affero General Public License](http://" "www.fsf.org/licensing/licenses/agpl-3.0.html)." -#: lib/action.php:832 +#: lib/action.php:821 #, fuzzy msgid "Site content license" msgstr "StatusNet-ohjelmiston lisenssi" -#: lib/action.php:837 +#: lib/action.php:826 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:842 +#: lib/action.php:831 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:845 +#: lib/action.php:834 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" -#: lib/action.php:858 +#: lib/action.php:847 msgid "All " msgstr "Kaikki " -#: lib/action.php:864 +#: lib/action.php:853 msgid "license." msgstr "lisenssi." -#: lib/action.php:1163 +#: lib/action.php:1152 msgid "Pagination" msgstr "Sivutus" -#: lib/action.php:1172 +#: lib/action.php:1161 msgid "After" msgstr "Myöhemmin" -#: lib/action.php:1180 +#: lib/action.php:1169 msgid "Before" msgstr "Aiemmin" -#: lib/activity.php:449 +#: lib/activity.php:453 msgid "Can't handle remote content yet." msgstr "" -#: lib/activity.php:477 +#: lib/activity.php:481 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activity.php:481 +#: lib/activity.php:485 msgid "Can't handle embedded Base64 content yet." msgstr "" @@ -4961,100 +5044,89 @@ msgid "Changes to that panel are not allowed." msgstr "Rekisteröityminen ei ole sallittu." #. TRANS: Client error message -#: lib/adminpanelaction.php:211 +#: lib/adminpanelaction.php:229 #, fuzzy msgid "showForm() not implemented." msgstr "Komentoa ei ole vielä toteutettu." #. TRANS: Client error message -#: lib/adminpanelaction.php:241 +#: lib/adminpanelaction.php:259 #, fuzzy msgid "saveSettings() not implemented." msgstr "Komentoa ei ole vielä toteutettu." #. TRANS: Client error message -#: lib/adminpanelaction.php:265 +#: lib/adminpanelaction.php:283 #, fuzzy msgid "Unable to delete design setting." msgstr "Twitter-asetuksia ei voitu tallentaa!" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:330 +#: lib/adminpanelaction.php:348 #, fuzzy msgid "Basic site configuration" msgstr "Sähköpostiosoitteen vahvistus" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:332 +#: lib/adminpanelaction.php:350 #, fuzzy msgctxt "MENU" msgid "Site" msgstr "Kutsu" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:338 +#: lib/adminpanelaction.php:356 #, fuzzy msgid "Design configuration" msgstr "SMS vahvistus" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:340 +#: lib/adminpanelaction.php:358 #, fuzzy msgctxt "MENU" msgid "Design" msgstr "Ulkoasu" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:346 +#: lib/adminpanelaction.php:364 #, fuzzy msgid "User configuration" msgstr "SMS vahvistus" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:348 -#, fuzzy -msgctxt "MENU" +#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 msgid "User" msgstr "Käyttäjä" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:354 +#: lib/adminpanelaction.php:372 #, fuzzy msgid "Access configuration" msgstr "SMS vahvistus" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:356 -#, fuzzy -msgctxt "MENU" -msgid "Access" -msgstr "Hyväksy" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:362 +#: lib/adminpanelaction.php:380 #, fuzzy msgid "Paths configuration" msgstr "SMS vahvistus" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:364 -#, fuzzy -msgctxt "MENU" -msgid "Paths" -msgstr "Polut" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:370 +#: lib/adminpanelaction.php:388 #, fuzzy msgid "Sessions configuration" msgstr "SMS vahvistus" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:372 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:396 #, fuzzy -msgctxt "MENU" -msgid "Sessions" -msgstr "Omat" +msgid "Edit site notice" +msgstr "Palvelun ilmoitus" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:404 +#, fuzzy +msgid "Snapshots configuration" +msgstr "SMS vahvistus" #: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." @@ -5557,6 +5629,11 @@ msgstr "Valitse tagi lyhentääksesi listaa" msgid "Go" msgstr "Mene" +#: lib/grantroleform.php:91 +#, php-format +msgid "Grant this user the \"%s\" role" +msgstr "" + #: 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" @@ -6114,10 +6191,6 @@ msgstr "Vastaukset" msgid "Favorites" msgstr "Suosikit" -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "Käyttäjä" - #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "Saapuneet" @@ -6144,7 +6217,7 @@ msgstr "Tagit käyttäjän %s päivityksissä" msgid "Unknown" msgstr "Tuntematon toiminto" -#: lib/profileaction.php:109 lib/profileaction.php:192 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:194 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Tilaukset" @@ -6152,24 +6225,24 @@ msgstr "Tilaukset" msgid "All subscriptions" msgstr "Kaikki tilaukset" -#: lib/profileaction.php:140 lib/profileaction.php:201 lib/subgroupnav.php:90 +#: lib/profileaction.php:142 lib/profileaction.php:203 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Tilaajat" -#: lib/profileaction.php:157 +#: lib/profileaction.php:159 msgid "All subscribers" msgstr "Kaikki tilaajat" -#: lib/profileaction.php:178 +#: lib/profileaction.php:180 #, fuzzy msgid "User ID" msgstr "Käyttäjä" -#: lib/profileaction.php:183 +#: lib/profileaction.php:185 msgid "Member since" msgstr "Käyttäjänä alkaen" -#: lib/profileaction.php:245 +#: lib/profileaction.php:247 msgid "All groups" msgstr "Kaikki ryhmät" @@ -6212,7 +6285,12 @@ msgstr "Vastaa tähän päivitykseen" msgid "Repeat this notice" msgstr "Vastaa tähän päivitykseen" -#: lib/router.php:668 +#: lib/revokeroleform.php:91 +#, fuzzy, php-format +msgid "Revoke the \"%s\" role from this user" +msgstr "Estä tätä käyttäjää osallistumassa tähän ryhmään" + +#: lib/router.php:671 msgid "No single user defined for single-user mode." msgstr "" @@ -6376,47 +6454,63 @@ msgstr "Viesti" msgid "Moderate" msgstr "" -#: lib/util.php:1013 +#: lib/userprofile.php:352 +#, fuzzy +msgid "User role" +msgstr "Käyttäjän profiili" + +#: lib/userprofile.php:354 +#, fuzzy +msgctxt "role" +msgid "Administrator" +msgstr "Ylläpitäjät" + +#: lib/userprofile.php:355 +msgctxt "role" +msgid "Moderator" +msgstr "" + +#: lib/util.php:1015 msgid "a few seconds ago" msgstr "muutama sekunti sitten" -#: lib/util.php:1015 +#: lib/util.php:1017 msgid "about a minute ago" msgstr "noin minuutti sitten" -#: lib/util.php:1017 +#: lib/util.php:1019 #, php-format msgid "about %d minutes ago" msgstr "noin %d minuuttia sitten" -#: lib/util.php:1019 +#: lib/util.php:1021 msgid "about an hour ago" msgstr "noin tunti sitten" -#: lib/util.php:1021 +#: lib/util.php:1023 #, php-format msgid "about %d hours ago" msgstr "noin %d tuntia sitten" -#: lib/util.php:1023 +#: lib/util.php:1025 msgid "about a day ago" msgstr "noin päivä sitten" -#: lib/util.php:1025 +#: lib/util.php:1027 #, php-format msgid "about %d days ago" msgstr "noin %d päivää sitten" -#: lib/util.php:1027 +#: lib/util.php:1029 msgid "about a month ago" msgstr "noin kuukausi sitten" -#: lib/util.php:1029 +#: lib/util.php:1031 #, php-format msgid "about %d months ago" msgstr "noin %d kuukautta sitten" -#: lib/util.php:1031 +#: lib/util.php:1033 msgid "about a year ago" msgstr "noin vuosi sitten" diff --git a/locale/fr/LC_MESSAGES/statusnet.po b/locale/fr/LC_MESSAGES/statusnet.po index 68e210ff1c..c8d14b83dc 100644 --- a/locale/fr/LC_MESSAGES/statusnet.po +++ b/locale/fr/LC_MESSAGES/statusnet.po @@ -14,19 +14,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-02 21:02+0000\n" -"PO-Revision-Date: 2010-03-02 21:02:48+0000\n" +"POT-Creation-Date: 2010-03-04 18:55+0000\n" +"PO-Revision-Date: 2010-03-04 18:56:25+0000\n" "Language-Team: French\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. TRANS: Page title -#: actions/accessadminpanel.php:55 +#. TRANS: Menu item for site administration +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 msgid "Access" msgstr "Accès" @@ -47,7 +48,6 @@ msgstr "Interdire aux utilisateurs anonymes (non connectés) de voir le site ?" #. TRANS: Checkbox label for prohibiting anonymous users from viewing site. #: actions/accessadminpanel.php:167 -#, fuzzy msgctxt "LABEL" msgid "Private" msgstr "Privé" @@ -78,7 +78,6 @@ msgid "Save access settings" msgstr "Sauvegarder les paramètres d’accès" #: actions/accessadminpanel.php:203 -#, fuzzy msgctxt "BUTTON" msgid "Save" msgstr "Enregistrer" @@ -123,7 +122,7 @@ msgstr "%1$s et ses amis, page %2$d" #. TRANS: Page title. %1$s is user nickname #. TRANS: H1 text. %1$s is user nickname -#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -187,7 +186,7 @@ msgstr "" "un clin d’œil à %s ou poster un avis à son intention." #. TRANS: H1 text -#: actions/all.php:174 +#: actions/all.php:178 msgid "You and friends" msgstr "Vous et vos amis" @@ -214,11 +213,11 @@ msgstr "Statuts de %1$s et ses amis dans %2$s!" #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 -#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 +#: actions/apitimelinegroup.php:160 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:148 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 msgid "API method not found." msgstr "Méthode API non trouvée !" @@ -590,7 +589,7 @@ msgstr "" "devriez donner l’accès à votre compte %4$s qu’aux tiers à qui vous faites " "confiance." -#: actions/apioauthauthorize.php:310 +#: actions/apioauthauthorize.php:310 lib/action.php:438 msgid "Account" msgstr "Compte" @@ -679,18 +678,6 @@ msgstr "%1$s / Favoris de %2$s" msgid "%1$s updates favorited by %2$s / %2$s." msgstr "%1$s statuts favoris de %2$s / %2$s." -#: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:138 actions/userrss.php:90 -#, php-format -msgid "%s timeline" -msgstr "Activité de %s" - -#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 -#: 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:117 #, php-format msgid "%1$s / Updates mentioning %2$s" @@ -701,12 +688,12 @@ msgstr "%1$s / Mises à jour mentionnant %2$s" 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/apitimelinepublic.php:111 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "Activité publique %s" -#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "%s statuts de tout le monde !" @@ -954,7 +941,7 @@ msgid "Conversation" msgstr "Conversation" #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:216 lib/searchgroupnav.php:82 +#: lib/profileaction.php:218 lib/searchgroupnav.php:82 msgid "Notices" msgstr "Avis" @@ -973,7 +960,7 @@ msgstr "Vous n’êtes pas le propriétaire de cette application." #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1228 +#: lib/action.php:1217 msgid "There was a problem with your session token." msgstr "Un problème est survenu avec votre jeton de session." @@ -1169,8 +1156,9 @@ msgstr "Revenir aux valeurs par défaut" #: actions/designadminpanel.php:586 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 +#: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:208 #: actions/tagother.php:154 actions/useradminpanel.php:294 #: lib/applicationeditform.php:333 lib/applicationeditform.php:334 #: lib/designsettings.php:256 lib/groupeditform.php:202 @@ -1286,7 +1274,7 @@ msgstr "la description est trop longue (%d caractères maximum)." msgid "Could not update group." msgstr "Impossible de mettre à jour le groupe." -#: actions/editgroup.php:264 classes/User_group.php:478 +#: actions/editgroup.php:264 classes/User_group.php:493 msgid "Could not create aliases." msgstr "Impossible de créer les alias." @@ -1410,7 +1398,7 @@ msgid "Cannot normalize that email address" msgstr "Impossible d’utiliser cette adresse courriel" #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:143 +#: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Adresse courriel invalide." @@ -1602,6 +1590,26 @@ msgstr "Fichier non trouvé." msgid "Cannot read file." msgstr "Impossible de lire le fichier" +#: actions/grantrole.php:62 actions/revokerole.php:62 +#, fuzzy +msgid "Invalid role." +msgstr "Jeton incorrect." + +#: actions/grantrole.php:66 actions/revokerole.php:66 +msgid "This role is reserved and cannot be set." +msgstr "" + +#: actions/grantrole.php:75 +#, fuzzy +msgid "You cannot grant user roles on this site." +msgstr "" +"Vous ne pouvez pas mettre des utilisateur dans le bac à sable sur ce site." + +#: actions/grantrole.php:82 +#, fuzzy +msgid "User already has this role." +msgstr "Cet utilisateur est déjà réduit au silence." + #: actions/groupblock.php:71 actions/groupunblock.php:71 #: actions/makeadmin.php:71 actions/subedit.php:46 #: lib/profileformaction.php:70 @@ -1750,12 +1758,18 @@ msgstr "Faire un administrateur" msgid "Make this user an admin" msgstr "Faire de cet utilisateur un administrateur" +#: actions/grouprss.php:138 actions/userrss.php:90 +#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#, php-format +msgid "%s timeline" +msgstr "Activité de %s" + #: actions/grouprss.php:140 #, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Mises à jour des membres de %1$s dans %2$s !" -#: actions/groups.php:62 lib/profileaction.php:210 lib/profileaction.php:230 +#: actions/groups.php:62 lib/profileaction.php:212 lib/profileaction.php:232 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" msgstr "Groupes" @@ -2023,7 +2037,6 @@ msgstr "Ajouter un message personnel à l’invitation (optionnel)." #. TRANS: Send button for inviting friends #: actions/invite.php:198 -#, fuzzy msgctxt "BUTTON" msgid "Send" msgstr "Envoyer" @@ -2394,8 +2407,8 @@ msgstr "type de contenu " msgid "Only " msgstr "Seulement " -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 -#: lib/apiaction.php:1068 lib/apiaction.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1042 +#: lib/apiaction.php:1070 lib/apiaction.php:1179 msgid "Not a supported data format." msgstr "Format de données non supporté." @@ -2535,7 +2548,8 @@ msgstr "Impossible de sauvegarder le nouveau mot de passe." msgid "Password saved." msgstr "Mot de passe enregistré." -#: actions/pathsadminpanel.php:59 +#. TRANS: Menu item for site administration +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 msgid "Paths" msgstr "Chemins" @@ -2655,7 +2669,7 @@ msgstr "Dossier des arrière plans" msgid "SSL" msgstr "SSL" -#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 +#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202 msgid "Never" msgstr "Jamais" @@ -2711,11 +2725,11 @@ msgstr "Cette marque est invalide : %s" msgid "Users self-tagged with %1$s - page %2$d" msgstr "Utilisateurs marqués par eux-mêmes avec %1$s - page %2$d" -#: actions/postnotice.php:84 +#: actions/postnotice.php:95 msgid "Invalid notice content" msgstr "Contenu de l’avis invalide" -#: actions/postnotice.php:90 +#: actions/postnotice.php:101 #, php-format msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" @@ -2797,7 +2811,7 @@ msgstr "" "Marques pour vous-même (lettres, chiffres, -, ., et _), séparées par des " "virgules ou des espaces" -#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 +#: actions/profilesettings.php:151 msgid "Language" msgstr "Langue" @@ -2825,7 +2839,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "La bio est trop longue (%d caractères maximum)." -#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:151 msgid "Timezone not selected." msgstr "Aucun fuseau horaire n’a été choisi." @@ -3148,7 +3162,7 @@ msgid "Same as password above. Required." msgstr "Identique au mot de passe ci-dessus. Requis." #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 msgid "Email" msgstr "Courriel" @@ -3257,7 +3271,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "URL de votre profil sur un autre service de micro-blogging compatible" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:368 +#: lib/userprofile.php:394 msgid "Subscribe" msgstr "S’abonner" @@ -3362,6 +3376,16 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "Réponses à %1$s sur %2$s !" +#: actions/revokerole.php:75 +#, fuzzy +msgid "You cannot revoke user roles on this site." +msgstr "Vous ne pouvez pas réduire des utilisateurs au silence sur ce site." + +#: actions/revokerole.php:82 +#, fuzzy +msgid "User doesn't have this role." +msgstr "Utilisateur sans profil correspondant." + #: actions/rsd.php:146 actions/version.php:157 msgid "StatusNet" msgstr "StatusNet" @@ -3375,7 +3399,9 @@ msgstr "" msgid "User is already sandboxed." msgstr "L’utilisateur est déjà dans le bac à sable." +#. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:390 msgid "Sessions" msgstr "Sessions" @@ -3399,7 +3425,7 @@ msgstr "Déboguage de session" msgid "Turn on debugging output for sessions." msgstr "Activer la sortie de déboguage pour les sessions." -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "Sauvegarder les paramètres du site" @@ -3430,8 +3456,8 @@ msgstr "Organisation" msgid "Description" msgstr "Description" -#: actions/showapplication.php:192 actions/showgroup.php:437 -#: lib/profileaction.php:174 +#: actions/showapplication.php:192 actions/showgroup.php:438 +#: lib/profileaction.php:176 msgid "Statistics" msgstr "Statistiques" @@ -3573,45 +3599,45 @@ msgstr "Alias" msgid "Group actions" msgstr "Actions du groupe" -#: actions/showgroup.php:336 +#: actions/showgroup.php:337 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Fil des avis du groupe %s (RSS 1.0)" -#: actions/showgroup.php:342 +#: actions/showgroup.php:343 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Fil des avis du groupe %s (RSS 2.0)" -#: actions/showgroup.php:348 +#: actions/showgroup.php:349 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "Fil des avis du groupe %s (Atom)" -#: actions/showgroup.php:353 +#: actions/showgroup.php:354 #, php-format msgid "FOAF for %s group" msgstr "ami d’un ami pour le groupe %s" -#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 +#: actions/showgroup.php:390 actions/showgroup.php:447 lib/groupnav.php:91 msgid "Members" msgstr "Membres" -#: actions/showgroup.php:394 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 +#: actions/showgroup.php:395 lib/profileaction.php:117 +#: lib/profileaction.php:150 lib/profileaction.php:238 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(aucun)" -#: actions/showgroup.php:400 +#: actions/showgroup.php:401 msgid "All members" msgstr "Tous les membres" -#: actions/showgroup.php:440 +#: actions/showgroup.php:441 msgid "Created" msgstr "Créé" -#: actions/showgroup.php:456 +#: actions/showgroup.php:457 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3627,7 +3653,7 @@ msgstr "" "action.register%%%%) pour devenir membre de ce groupe et bien plus ! ([En " "lire plus](%%%%doc.help%%%%))" -#: actions/showgroup.php:462 +#: actions/showgroup.php:463 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3640,7 +3666,7 @@ msgstr "" "logiciel libre [StatusNet](http://status.net/). Ses membres partagent des " "messages courts à propos de leur vie et leurs intérêts. " -#: actions/showgroup.php:490 +#: actions/showgroup.php:491 msgid "Admins" msgstr "Administrateurs" @@ -3765,148 +3791,139 @@ msgid "User is already silenced." msgstr "Cet utilisateur est déjà réduit au silence." #: actions/siteadminpanel.php:69 -msgid "Basic settings for this StatusNet site." +#, fuzzy +msgid "Basic settings for this StatusNet site" msgstr "Paramètres basiques pour ce site StatusNet." -#: actions/siteadminpanel.php:132 +#: actions/siteadminpanel.php:133 msgid "Site name must have non-zero length." msgstr "Le nom du site ne peut pas être vide." -#: actions/siteadminpanel.php:140 +#: actions/siteadminpanel.php:141 msgid "You must have a valid contact email address." msgstr "Vous devez avoir une adresse électronique de contact valide." -#: actions/siteadminpanel.php:158 +#: actions/siteadminpanel.php:159 #, php-format msgid "Unknown language \"%s\"." msgstr "Langue « %s » inconnue." #: actions/siteadminpanel.php:165 -msgid "Invalid snapshot report URL." -msgstr "URL de rapport d’instantanés invalide." - -#: actions/siteadminpanel.php:171 -msgid "Invalid snapshot run value." -msgstr "Valeur de lancement d’instantanés invalide." - -#: actions/siteadminpanel.php:177 -msgid "Snapshot frequency must be a number." -msgstr "La fréquence des instantanés doit être un nombre." - -#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "La limite minimale de texte est de 140 caractères." -#: actions/siteadminpanel.php:189 +#: actions/siteadminpanel.php:171 msgid "Dupe limit must 1 or more seconds." msgstr "La limite de doublon doit être d’une seconde ou plus." -#: actions/siteadminpanel.php:239 +#: actions/siteadminpanel.php:221 msgid "General" msgstr "Général" -#: actions/siteadminpanel.php:242 +#: actions/siteadminpanel.php:224 msgid "Site name" msgstr "Nom du site" -#: actions/siteadminpanel.php:243 +#: actions/siteadminpanel.php:225 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "Le nom de votre site, comme « Microblog de votre compagnie »" -#: actions/siteadminpanel.php:247 +#: actions/siteadminpanel.php:229 msgid "Brought by" msgstr "Apporté par" -#: actions/siteadminpanel.php:248 +#: actions/siteadminpanel.php:230 msgid "Text used for credits link in footer of each page" msgstr "Texte utilisé pour le lien de crédits au bas de chaque page" -#: actions/siteadminpanel.php:252 +#: actions/siteadminpanel.php:234 msgid "Brought by URL" msgstr "Apporté par URL" -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:235 msgid "URL used for credits link in footer of each page" msgstr "URL utilisée pour le lien de crédits au bas de chaque page" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:239 msgid "Contact email address for your site" msgstr "Adresse de courriel de contact de votre site" -#: actions/siteadminpanel.php:263 +#: actions/siteadminpanel.php:245 msgid "Local" msgstr "Local" -#: actions/siteadminpanel.php:274 +#: actions/siteadminpanel.php:256 msgid "Default timezone" msgstr "Zone horaire par défaut" -#: actions/siteadminpanel.php:275 +#: actions/siteadminpanel.php:257 msgid "Default timezone for the site; usually UTC." msgstr "Zone horaire par défaut pour ce site ; généralement UTC." -#: actions/siteadminpanel.php:281 -msgid "Default site language" +#: actions/siteadminpanel.php:262 +#, fuzzy +msgid "Default language" msgstr "Langue du site par défaut" -#: actions/siteadminpanel.php:289 -msgid "Snapshots" -msgstr "Instantanés" +#: actions/siteadminpanel.php:263 +msgid "Site language when autodetection from browser settings is not available" +msgstr "" -#: actions/siteadminpanel.php:292 -msgid "Randomly during Web hit" -msgstr "Au hasard lors des requêtes web" - -#: actions/siteadminpanel.php:293 -msgid "In a scheduled job" -msgstr "Dans une tâche programée" - -#: actions/siteadminpanel.php:295 -msgid "Data snapshots" -msgstr "Instantanés de données" - -#: actions/siteadminpanel.php:296 -msgid "When to send statistical data to status.net servers" -msgstr "Quand envoyer des données statistiques aux serveurs status.net" - -#: actions/siteadminpanel.php:301 -msgid "Frequency" -msgstr "Fréquence" - -#: actions/siteadminpanel.php:302 -msgid "Snapshots will be sent once every N web hits" -msgstr "Les instantanés seront envoyés une fois tous les N requêtes" - -#: actions/siteadminpanel.php:307 -msgid "Report URL" -msgstr "URL de rapport" - -#: actions/siteadminpanel.php:308 -msgid "Snapshots will be sent to this URL" -msgstr "Les instantanés seront envoyés à cette URL" - -#: actions/siteadminpanel.php:315 +#: actions/siteadminpanel.php:271 msgid "Limits" msgstr "Limites" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Text limit" msgstr "Limite de texte" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Maximum number of characters for notices." msgstr "Nombre maximal de caractères pour les avis." -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "Dupe limit" msgstr "Limite de doublons" -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" "Combien de temps (en secondes) les utilisateurs doivent attendre pour poster " "la même chose de nouveau." +#: actions/sitenoticeadminpanel.php:56 +#, fuzzy +msgid "Site Notice" +msgstr "Notice du site" + +#: actions/sitenoticeadminpanel.php:67 +#, fuzzy +msgid "Edit site-wide message" +msgstr "Nouveau message" + +#: actions/sitenoticeadminpanel.php:103 +#, fuzzy +msgid "Unable to save site notice." +msgstr "Impossible de sauvegarder les parmètres de la conception." + +#: actions/sitenoticeadminpanel.php:113 +msgid "Max length for the site-wide notice is 255 chars" +msgstr "" + +#: actions/sitenoticeadminpanel.php:176 +#, fuzzy +msgid "Site notice text" +msgstr "Notice du site" + +#: actions/sitenoticeadminpanel.php:178 +msgid "Site-wide notice text (255 chars max; HTML okay)" +msgstr "" + +#: actions/sitenoticeadminpanel.php:198 +#, fuzzy +msgid "Save site notice" +msgstr "Notice du site" + #: actions/smssettings.php:58 msgid "SMS settings" msgstr "Paramètres SMS" @@ -4010,6 +4027,66 @@ msgstr "" msgid "No code entered" msgstr "Aucun code entré" +#. TRANS: Menu item for site administration +#: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 +#: lib/adminpanelaction.php:406 +msgid "Snapshots" +msgstr "Instantanés" + +#: actions/snapshotadminpanel.php:65 +#, fuzzy +msgid "Manage snapshot configuration" +msgstr "Modifier la configuration du site" + +#: actions/snapshotadminpanel.php:127 +msgid "Invalid snapshot run value." +msgstr "Valeur de lancement d’instantanés invalide." + +#: actions/snapshotadminpanel.php:133 +msgid "Snapshot frequency must be a number." +msgstr "La fréquence des instantanés doit être un nombre." + +#: actions/snapshotadminpanel.php:144 +msgid "Invalid snapshot report URL." +msgstr "URL de rapport d’instantanés invalide." + +#: actions/snapshotadminpanel.php:200 +msgid "Randomly during Web hit" +msgstr "Au hasard lors des requêtes web" + +#: actions/snapshotadminpanel.php:201 +msgid "In a scheduled job" +msgstr "Dans une tâche programée" + +#: actions/snapshotadminpanel.php:206 +msgid "Data snapshots" +msgstr "Instantanés de données" + +#: actions/snapshotadminpanel.php:208 +msgid "When to send statistical data to status.net servers" +msgstr "Quand envoyer des données statistiques aux serveurs status.net" + +#: actions/snapshotadminpanel.php:217 +msgid "Frequency" +msgstr "Fréquence" + +#: actions/snapshotadminpanel.php:218 +msgid "Snapshots will be sent once every N web hits" +msgstr "Les instantanés seront envoyés une fois tous les N requêtes" + +#: actions/snapshotadminpanel.php:226 +msgid "Report URL" +msgstr "URL de rapport" + +#: actions/snapshotadminpanel.php:227 +msgid "Snapshots will be sent to this URL" +msgstr "Les instantanés seront envoyés à cette URL" + +#: actions/snapshotadminpanel.php:248 +#, fuzzy +msgid "Save snapshot settings" +msgstr "Sauvegarder les paramètres du site" + #: actions/subedit.php:70 msgid "You are not subscribed to that profile." msgstr "Vous n’êtes pas abonné(e) à ce profil." @@ -4220,7 +4297,7 @@ msgstr "Aucune identité de profil dans la requête." msgid "Unsubscribed" msgstr "Désabonné" -#: actions/updateprofile.php:62 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -4230,7 +4307,6 @@ msgstr "" #. TRANS: User admin panel title #: actions/useradminpanel.php:59 -#, fuzzy msgctxt "TITLE" msgid "User" msgstr "Utilisateur" @@ -4427,18 +4503,24 @@ msgstr "Groupes %1$s, page %2$d" msgid "Search for more groups" msgstr "Rechercher pour plus de groupes" -#: actions/usergroups.php:153 +#: actions/usergroups.php:157 #, php-format msgid "%s is not a member of any group." msgstr "%s n’est pas membre d’un groupe." -#: actions/usergroups.php:158 +#: actions/usergroups.php:162 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" "Essayez de [rechercher un groupe](%%action.groupsearch%%) et de vous y " "inscrire." +#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: lib/atomusernoticefeed.php:72 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "Statuts de %1$s dans %2$s!" + #: actions/version.php:73 #, php-format msgid "StatusNet %s" @@ -4494,7 +4576,7 @@ msgstr "" msgid "Plugins" msgstr "Extensions" -#: actions/version.php:196 lib/action.php:778 +#: actions/version.php:196 lib/action.php:767 msgid "Version" msgstr "Version" @@ -4559,22 +4641,22 @@ msgstr "Impossible de mettre à jour le message avec un nouvel URI." msgid "DB error inserting hashtag: %s" msgstr "Erreur de base de donnée en insérant la marque (hashtag) : %s" -#: classes/Notice.php:239 +#: classes/Notice.php:241 msgid "Problem saving notice. Too long." msgstr "Problème lors de l’enregistrement de l’avis ; trop long." -#: classes/Notice.php:243 +#: classes/Notice.php:245 msgid "Problem saving notice. Unknown user." msgstr "Erreur lors de l’enregistrement de l’avis. Utilisateur inconnu." -#: classes/Notice.php:248 +#: classes/Notice.php:250 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" "Trop d’avis, trop vite ! Faites une pause et publiez à nouveau dans quelques " "minutes." -#: classes/Notice.php:254 +#: classes/Notice.php:256 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." @@ -4582,19 +4664,19 @@ msgstr "" "Trop de messages en double trop vite ! Prenez une pause et publiez à nouveau " "dans quelques minutes." -#: classes/Notice.php:260 +#: classes/Notice.php:262 msgid "You are banned from posting notices on this site." msgstr "Il vous est interdit de poster des avis sur ce site." -#: classes/Notice.php:326 classes/Notice.php:352 +#: classes/Notice.php:328 classes/Notice.php:354 msgid "Problem saving notice." msgstr "Problème lors de l’enregistrement de l’avis." -#: classes/Notice.php:911 +#: classes/Notice.php:927 msgid "Problem saving group inbox." msgstr "Problème lors de l’enregistrement de la boîte de réception du groupe." -#: classes/Notice.php:1442 +#: classes/Notice.php:1459 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -4619,7 +4701,12 @@ msgstr "Pas abonné !" msgid "Couldn't delete self-subscription." msgstr "Impossible de supprimer l’abonnement à soi-même." -#: classes/Subscription.php:179 lib/subs.php:69 +#: classes/Subscription.php:190 +#, fuzzy +msgid "Couldn't delete subscription OMB token." +msgstr "Impossible de cesser l’abonnement" + +#: classes/Subscription.php:201 lib/subs.php:69 msgid "Couldn't delete subscription." msgstr "Impossible de cesser l’abonnement" @@ -4628,20 +4715,19 @@ msgstr "Impossible de cesser l’abonnement" msgid "Welcome to %1$s, @%2$s!" msgstr "Bienvenue à %1$s, @%2$s !" -#: classes/User_group.php:462 +#: classes/User_group.php:477 msgid "Could not create group." msgstr "Impossible de créer le groupe." -#: classes/User_group.php:471 -#, fuzzy +#: classes/User_group.php:486 msgid "Could not set group URI." msgstr "Impossible de définir l'URI du groupe." -#: classes/User_group.php:492 +#: classes/User_group.php:507 msgid "Could not set group membership." msgstr "Impossible d’établir l’inscription au groupe." -#: classes/User_group.php:506 +#: classes/User_group.php:521 msgid "Could not save local group info." msgstr "Impossible d’enregistrer les informations du groupe local." @@ -4682,194 +4768,171 @@ msgstr "%1$s - %2$s" msgid "Untitled page" msgstr "Page sans nom" -#: lib/action.php:433 +#: lib/action.php:424 msgid "Primary site navigation" msgstr "Navigation primaire du site" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:439 -#, fuzzy +#: lib/action.php:430 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Profil personnel et flux des amis" -#: lib/action.php:442 -#, fuzzy +#: lib/action.php:433 msgctxt "MENU" msgid "Personal" msgstr "Personnel" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:444 -#, fuzzy +#: lib/action.php:435 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" -msgstr "Modifier votre courriel, avatar, mot de passe, profil" - -#: lib/action.php:447 -#, fuzzy -msgctxt "MENU" -msgid "Account" -msgstr "Compte" +msgstr "Modifier votre adresse électronique, avatar, mot de passe, profil" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:450 -#, fuzzy +#: lib/action.php:440 msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Se connecter aux services" -#: lib/action.php:453 +#: lib/action.php:443 #, fuzzy -msgctxt "MENU" msgid "Connect" msgstr "Connecter" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:457 -#, fuzzy +#: lib/action.php:446 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Modifier la configuration du site" -#: lib/action.php:460 -#, fuzzy +#: lib/action.php:449 msgctxt "MENU" msgid "Admin" msgstr "Administrer" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:464 -#, fuzzy, php-format +#: lib/action.php:453 +#, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" -msgstr "Inviter des amis et collègues à vous rejoindre dans %s" +msgstr "Inviter des amis et collègues à vous rejoindre sur %s" -#: lib/action.php:467 -#, fuzzy +#: lib/action.php:456 msgctxt "MENU" msgid "Invite" msgstr "Inviter" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:473 -#, fuzzy +#: lib/action.php:462 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Fermer la session" -#: lib/action.php:476 -#, fuzzy +#: lib/action.php:465 msgctxt "MENU" msgid "Logout" -msgstr "Fermeture de session" +msgstr "Déconnexion" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:481 -#, fuzzy +#: lib/action.php:470 msgctxt "TOOLTIP" msgid "Create an account" msgstr "Créer un compte" -#: lib/action.php:484 -#, fuzzy +#: lib/action.php:473 msgctxt "MENU" msgid "Register" -msgstr "Créer un compte" +msgstr "S'inscrire" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:487 -#, fuzzy +#: lib/action.php:476 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Ouvrir une session" -#: lib/action.php:490 -#, fuzzy +#: lib/action.php:479 msgctxt "MENU" msgid "Login" -msgstr "Ouvrir une session" +msgstr "Connexion" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:493 -#, fuzzy +#: lib/action.php:482 msgctxt "TOOLTIP" msgid "Help me!" msgstr "À l’aide !" -#: lib/action.php:496 -#, fuzzy +#: lib/action.php:485 msgctxt "MENU" msgid "Help" msgstr "Aide" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:499 -#, fuzzy +#: lib/action.php:488 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Rechercher des personnes ou du texte" -#: lib/action.php:502 -#, fuzzy +#: lib/action.php:491 msgctxt "MENU" msgid "Search" msgstr "Rechercher" #. TRANS: DT element for site notice. String is hidden in default CSS. -#: lib/action.php:524 +#. TRANS: Menu item for site administration +#: lib/action.php:513 lib/adminpanelaction.php:398 msgid "Site notice" msgstr "Notice du site" -#: lib/action.php:590 +#: lib/action.php:579 msgid "Local views" msgstr "Vues locales" -#: lib/action.php:656 +#: lib/action.php:645 msgid "Page notice" msgstr "Avis de la page" -#: lib/action.php:758 +#: lib/action.php:747 msgid "Secondary site navigation" msgstr "Navigation secondaire du site" -#: lib/action.php:763 +#: lib/action.php:752 msgid "Help" msgstr "Aide" -#: lib/action.php:765 +#: lib/action.php:754 msgid "About" msgstr "À propos" -#: lib/action.php:767 +#: lib/action.php:756 msgid "FAQ" msgstr "FAQ" -#: lib/action.php:771 +#: lib/action.php:760 msgid "TOS" msgstr "CGU" -#: lib/action.php:774 +#: lib/action.php:763 msgid "Privacy" msgstr "Confidentialité" -#: lib/action.php:776 +#: lib/action.php:765 msgid "Source" msgstr "Source" -#: lib/action.php:780 +#: lib/action.php:769 msgid "Contact" msgstr "Contact" -#: lib/action.php:782 +#: lib/action.php:771 msgid "Badge" msgstr "Insigne" -#: lib/action.php:810 +#: lib/action.php:799 msgid "StatusNet software license" msgstr "Licence du logiciel StatusNet" -#: lib/action.php:813 +#: lib/action.php:802 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4878,12 +4941,12 @@ msgstr "" "**%%site.name%%** est un service de microblogging qui vous est proposé par " "[%%site.broughtby%%](%%site.broughtbyurl%%)." -#: lib/action.php:815 +#: lib/action.php:804 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** est un service de micro-blogging." -#: lib/action.php:817 +#: lib/action.php:806 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4894,57 +4957,57 @@ msgstr "" "version %s, disponible sous la licence [GNU Affero General Public License] " "(http://www.fsf.org/licensing/licenses/agpl-3.0.html)." -#: lib/action.php:832 +#: lib/action.php:821 msgid "Site content license" msgstr "Licence du contenu du site" -#: lib/action.php:837 +#: lib/action.php:826 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "Le contenu et les données de %1$s sont privés et confidentiels." -#: lib/action.php:842 +#: lib/action.php:831 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" "Le contenu et les données sont sous le droit d’auteur de %1$s. Tous droits " "réservés." -#: lib/action.php:845 +#: lib/action.php:834 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" "Le contenu et les données sont sous le droit d’auteur du contributeur. Tous " "droits réservés." -#: lib/action.php:858 +#: lib/action.php:847 msgid "All " msgstr "Tous " -#: lib/action.php:864 +#: lib/action.php:853 msgid "license." msgstr "licence." -#: lib/action.php:1163 +#: lib/action.php:1152 msgid "Pagination" msgstr "Pagination" -#: lib/action.php:1172 +#: lib/action.php:1161 msgid "After" msgstr "Après" -#: lib/action.php:1180 +#: lib/action.php:1169 msgid "Before" msgstr "Avant" -#: lib/activity.php:449 +#: lib/activity.php:453 msgid "Can't handle remote content yet." msgstr "Impossible de gérer le contenu distant pour le moment." -#: lib/activity.php:477 +#: lib/activity.php:481 msgid "Can't handle embedded XML content yet." msgstr "Impossible de gérer le contenu XML embarqué pour le moment." -#: lib/activity.php:481 +#: lib/activity.php:485 msgid "Can't handle embedded Base64 content yet." msgstr "Impossible de gérer le contenu en Base64 embarqué pour le moment." @@ -4959,91 +5022,78 @@ msgid "Changes to that panel are not allowed." msgstr "La modification de ce panneau n’est pas autorisée." #. TRANS: Client error message -#: lib/adminpanelaction.php:211 +#: lib/adminpanelaction.php:229 msgid "showForm() not implemented." msgstr "showForm() n’a pas été implémentée." #. TRANS: Client error message -#: lib/adminpanelaction.php:241 +#: lib/adminpanelaction.php:259 msgid "saveSettings() not implemented." msgstr "saveSettings() n’a pas été implémentée." #. TRANS: Client error message -#: lib/adminpanelaction.php:265 +#: lib/adminpanelaction.php:283 msgid "Unable to delete design setting." msgstr "Impossible de supprimer les paramètres de conception." #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:330 +#: lib/adminpanelaction.php:348 msgid "Basic site configuration" msgstr "Configuration basique du site" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:332 -#, fuzzy +#: lib/adminpanelaction.php:350 msgctxt "MENU" msgid "Site" msgstr "Site" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:338 +#: lib/adminpanelaction.php:356 msgid "Design configuration" msgstr "Configuration de la conception" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:340 -#, fuzzy +#: lib/adminpanelaction.php:358 msgctxt "MENU" msgid "Design" msgstr "Conception" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:346 +#: lib/adminpanelaction.php:364 msgid "User configuration" msgstr "Configuration utilisateur" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:348 -#, fuzzy -msgctxt "MENU" +#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 msgid "User" msgstr "Utilisateur" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:354 +#: lib/adminpanelaction.php:372 msgid "Access configuration" msgstr "Configuration d’accès" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:356 -#, fuzzy -msgctxt "MENU" -msgid "Access" -msgstr "Accès" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:362 +#: lib/adminpanelaction.php:380 msgid "Paths configuration" msgstr "Configuration des chemins" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:364 -#, fuzzy -msgctxt "MENU" -msgid "Paths" -msgstr "Chemins" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:370 +#: lib/adminpanelaction.php:388 msgid "Sessions configuration" msgstr "Configuration des sessions" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:372 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:396 #, fuzzy -msgctxt "MENU" -msgid "Sessions" -msgstr "Sessions" +msgid "Edit site notice" +msgstr "Notice du site" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:404 +#, fuzzy +msgid "Snapshots configuration" +msgstr "Configuration des chemins" #: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." @@ -5581,6 +5631,11 @@ msgstr "Choissez une marque pour réduire la liste" msgid "Go" msgstr "Aller" +#: lib/grantroleform.php:91 +#, php-format +msgid "Grant this user the \"%s\" role" +msgstr "" + #: 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 " @@ -6075,7 +6130,6 @@ msgid "Available characters" msgstr "Caractères restants" #: lib/messageform.php:178 lib/noticeform.php:236 -#, fuzzy msgctxt "Send button for sending notice" msgid "Send" msgstr "Envoyer" @@ -6202,10 +6256,6 @@ msgstr "Réponses" msgid "Favorites" msgstr "Favoris" -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "Utilisateur" - #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "Boîte de réception" @@ -6231,7 +6281,7 @@ msgstr "Marques dans les avis de %s" msgid "Unknown" msgstr "Inconnu" -#: lib/profileaction.php:109 lib/profileaction.php:192 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:194 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Abonnements" @@ -6239,23 +6289,23 @@ msgstr "Abonnements" msgid "All subscriptions" msgstr "Tous les abonnements" -#: lib/profileaction.php:140 lib/profileaction.php:201 lib/subgroupnav.php:90 +#: lib/profileaction.php:142 lib/profileaction.php:203 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Abonnés" -#: lib/profileaction.php:157 +#: lib/profileaction.php:159 msgid "All subscribers" msgstr "Tous les abonnés" -#: lib/profileaction.php:178 +#: lib/profileaction.php:180 msgid "User ID" msgstr "ID de l’utilisateur" -#: lib/profileaction.php:183 +#: lib/profileaction.php:185 msgid "Member since" msgstr "Membre depuis" -#: lib/profileaction.php:245 +#: lib/profileaction.php:247 msgid "All groups" msgstr "Tous les groupes" @@ -6295,7 +6345,12 @@ msgstr "Reprendre cet avis ?" msgid "Repeat this notice" msgstr "Reprendre cet avis" -#: lib/router.php:668 +#: lib/revokeroleform.php:91 +#, fuzzy, php-format +msgid "Revoke the \"%s\" role from this user" +msgstr "Bloquer cet utilisateur de de groupe" + +#: lib/router.php:671 msgid "No single user defined for single-user mode." msgstr "Aucun utilisateur unique défini pour le mode mono-utilisateur." @@ -6449,47 +6504,64 @@ msgstr "Message" msgid "Moderate" msgstr "Modérer" -#: lib/util.php:1013 +#: lib/userprofile.php:352 +#, fuzzy +msgid "User role" +msgstr "Profil de l’utilisateur" + +#: lib/userprofile.php:354 +#, fuzzy +msgctxt "role" +msgid "Administrator" +msgstr "Administrateurs" + +#: lib/userprofile.php:355 +#, fuzzy +msgctxt "role" +msgid "Moderator" +msgstr "Modérer" + +#: lib/util.php:1015 msgid "a few seconds ago" msgstr "il y a quelques secondes" -#: lib/util.php:1015 +#: lib/util.php:1017 msgid "about a minute ago" msgstr "il y a 1 minute" -#: lib/util.php:1017 +#: lib/util.php:1019 #, php-format msgid "about %d minutes ago" msgstr "il y a %d minutes" -#: lib/util.php:1019 +#: lib/util.php:1021 msgid "about an hour ago" msgstr "il y a 1 heure" -#: lib/util.php:1021 +#: lib/util.php:1023 #, php-format msgid "about %d hours ago" msgstr "il y a %d heures" -#: lib/util.php:1023 +#: lib/util.php:1025 msgid "about a day ago" msgstr "il y a 1 jour" -#: lib/util.php:1025 +#: lib/util.php:1027 #, php-format msgid "about %d days ago" msgstr "il y a %d jours" -#: lib/util.php:1027 +#: lib/util.php:1029 msgid "about a month ago" msgstr "il y a 1 mois" -#: lib/util.php:1029 +#: lib/util.php:1031 #, php-format msgid "about %d months ago" msgstr "il y a %d mois" -#: lib/util.php:1031 +#: lib/util.php:1033 msgid "about a year ago" msgstr "il y a environ 1 an" diff --git a/locale/ga/LC_MESSAGES/statusnet.po b/locale/ga/LC_MESSAGES/statusnet.po index 0b62fe337c..97c3d45f1f 100644 --- a/locale/ga/LC_MESSAGES/statusnet.po +++ b/locale/ga/LC_MESSAGES/statusnet.po @@ -8,12 +8,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-02 21:02+0000\n" -"PO-Revision-Date: 2010-03-02 21:02:51+0000\n" +"POT-Creation-Date: 2010-03-04 18:55+0000\n" +"PO-Revision-Date: 2010-03-04 18:56:28+0000\n" "Language-Team: Irish\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ga\n" "X-Message-Group: out-statusnet\n" @@ -21,7 +21,8 @@ msgstr "" "4;\n" #. TRANS: Page title -#: actions/accessadminpanel.php:55 +#. TRANS: Menu item for site administration +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 #, fuzzy msgid "Access" msgstr "Aceptar" @@ -125,7 +126,7 @@ msgstr "%s e amigos" #. TRANS: Page title. %1$s is user nickname #. TRANS: H1 text. %1$s is user nickname -#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -180,7 +181,7 @@ msgid "" msgstr "" #. TRANS: H1 text -#: actions/all.php:174 +#: actions/all.php:178 #, fuzzy msgid "You and friends" msgstr "%s e amigos" @@ -208,11 +209,11 @@ msgstr "Actualizacións dende %1$s e amigos en %2$s!" #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 -#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 +#: actions/apitimelinegroup.php:160 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:148 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 #, fuzzy msgid "API method not found." msgstr "Método da API non atopado" @@ -585,7 +586,7 @@ msgid "" "give access to your %4$s account to third parties you trust." msgstr "" -#: actions/apioauthauthorize.php:310 +#: actions/apioauthauthorize.php:310 lib/action.php:438 #, fuzzy msgid "Account" msgstr "Sobre" @@ -679,18 +680,6 @@ msgstr "%s / Favoritos dende %s" msgid "%1$s updates favorited by %2$s / %2$s." msgstr "%s updates favorited by %s / %s." -#: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:138 actions/userrss.php:90 -#, php-format -msgid "%s timeline" -msgstr "Liña de tempo de %s" - -#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 -#: 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:117 #, fuzzy, php-format msgid "%1$s / Updates mentioning %2$s" @@ -701,12 +690,12 @@ msgstr "%1$s / Chíos que respostan a %2$s" 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/apitimelinepublic.php:111 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "Liña de tempo pública de %s" -#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "%s chíos de calquera!" @@ -965,7 +954,7 @@ msgid "Conversation" msgstr "Código de confirmación." #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:216 lib/searchgroupnav.php:82 +#: lib/profileaction.php:218 lib/searchgroupnav.php:82 msgid "Notices" msgstr "Chíos" @@ -987,7 +976,7 @@ msgstr "Non estás suscrito a ese perfil" #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1228 +#: lib/action.php:1217 #, fuzzy msgid "There was a problem with your session token." msgstr "Houbo un problema co teu token de sesión. Tentao de novo, anda..." @@ -1196,8 +1185,9 @@ msgstr "" #: actions/designadminpanel.php:586 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 +#: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:208 #: actions/tagother.php:154 actions/useradminpanel.php:294 #: lib/applicationeditform.php:333 lib/applicationeditform.php:334 #: lib/designsettings.php:256 lib/groupeditform.php:202 @@ -1329,7 +1319,7 @@ msgstr "O teu Bio é demasiado longo (max 140 car.)." msgid "Could not update group." msgstr "Non se puido actualizar o usuario." -#: actions/editgroup.php:264 classes/User_group.php:478 +#: actions/editgroup.php:264 classes/User_group.php:493 #, fuzzy msgid "Could not create aliases." msgstr "Non se puido crear o favorito." @@ -1457,7 +1447,7 @@ msgid "Cannot normalize that email address" msgstr "Esa dirección de correo non se pode normalizar " #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:143 +#: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Non é un enderezo de correo válido." @@ -1653,6 +1643,25 @@ msgstr "Ningún chío." msgid "Cannot read file." msgstr "Bloqueo de usuario fallido." +#: actions/grantrole.php:62 actions/revokerole.php:62 +#, fuzzy +msgid "Invalid role." +msgstr "Tamaño inválido." + +#: actions/grantrole.php:66 actions/revokerole.php:66 +msgid "This role is reserved and cannot be set." +msgstr "" + +#: actions/grantrole.php:75 +#, fuzzy +msgid "You cannot grant user roles on this site." +msgstr "Non podes enviar mensaxes a este usurio." + +#: actions/grantrole.php:82 +#, fuzzy +msgid "User already has this role." +msgstr "O usuario bloqueoute." + #: actions/groupblock.php:71 actions/groupunblock.php:71 #: actions/makeadmin.php:71 actions/subedit.php:46 #: lib/profileformaction.php:70 @@ -1807,12 +1816,18 @@ msgstr "" msgid "Make this user an admin" msgstr "" +#: actions/grouprss.php:138 actions/userrss.php:90 +#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#, php-format +msgid "%s timeline" +msgstr "Liña de tempo de %s" + #: actions/grouprss.php:140 #, fuzzy, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Actualizacións dende %1$s en %2$s!" -#: actions/groups.php:62 lib/profileaction.php:210 lib/profileaction.php:230 +#: actions/groups.php:62 lib/profileaction.php:212 lib/profileaction.php:232 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" msgstr "" @@ -2434,8 +2449,8 @@ msgstr "Conectar" msgid "Only " msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 -#: lib/apiaction.php:1068 lib/apiaction.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1042 +#: lib/apiaction.php:1070 lib/apiaction.php:1179 msgid "Not a supported data format." msgstr "Non é un formato de datos soportado." @@ -2583,7 +2598,8 @@ msgstr "Non se pode gardar a contrasinal." msgid "Password saved." msgstr "Contrasinal gardada." -#: actions/pathsadminpanel.php:59 +#. TRANS: Menu item for site administration +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 msgid "Paths" msgstr "" @@ -2711,7 +2727,7 @@ msgstr "" msgid "SSL" msgstr "SMS" -#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 +#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202 #, fuzzy msgid "Never" msgstr "Recuperar" @@ -2770,11 +2786,11 @@ msgstr "%s non é unha etiqueta de xente válida" msgid "Users self-tagged with %1$s - page %2$d" msgstr "Usuarios auto-etiquetados como %s - páxina %d" -#: actions/postnotice.php:84 +#: actions/postnotice.php:95 msgid "Invalid notice content" msgstr "Contido do chío inválido" -#: actions/postnotice.php:90 +#: actions/postnotice.php:101 #, php-format msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" @@ -2857,7 +2873,7 @@ msgstr "" "Etiquetas para o teu usuario (letras, números, -, ., e _), separados por " "coma ou espazo" -#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 +#: actions/profilesettings.php:151 msgid "Language" msgstr "Linguaxe" @@ -2885,7 +2901,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "O teu Bio é demasiado longo (max 140 car.)." -#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:151 msgid "Timezone not selected." msgstr "Fuso Horario non seleccionado" @@ -3205,7 +3221,7 @@ msgid "Same as password above. Required." msgstr "A mesma contrasinal que arriba. Requerido." #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 msgid "Email" msgstr "Correo Electrónico" @@ -3313,7 +3329,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "Enderezo do teu perfil en outro servizo de microblogaxe compatíbel" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:368 +#: lib/userprofile.php:394 msgid "Subscribe" msgstr "Subscribir" @@ -3418,6 +3434,16 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "Mensaxe de %1$s en %2$s" +#: actions/revokerole.php:75 +#, fuzzy +msgid "You cannot revoke user roles on this site." +msgstr "Non podes enviar mensaxes a este usurio." + +#: actions/revokerole.php:82 +#, fuzzy +msgid "User doesn't have this role." +msgstr "Usuario sen un perfil que coincida." + #: actions/rsd.php:146 actions/version.php:157 #, fuzzy msgid "StatusNet" @@ -3433,7 +3459,9 @@ msgstr "Non podes enviar mensaxes a este usurio." msgid "User is already sandboxed." msgstr "O usuario bloqueoute." +#. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:390 msgid "Sessions" msgstr "" @@ -3457,7 +3485,7 @@ msgstr "" msgid "Turn on debugging output for sessions." msgstr "" -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/useradminpanel.php:294 #, fuzzy msgid "Save site settings" @@ -3494,8 +3522,8 @@ msgstr "Invitación(s) enviada(s)." msgid "Description" msgstr "Subscricións" -#: actions/showapplication.php:192 actions/showgroup.php:437 -#: lib/profileaction.php:174 +#: actions/showapplication.php:192 actions/showgroup.php:438 +#: lib/profileaction.php:176 msgid "Statistics" msgstr "Estatísticas" @@ -3631,48 +3659,48 @@ msgstr "" msgid "Group actions" msgstr "Outras opcions" -#: actions/showgroup.php:336 +#: actions/showgroup.php:337 #, fuzzy, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Fonte de chíos para %s" -#: actions/showgroup.php:342 +#: actions/showgroup.php:343 #, fuzzy, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Fonte de chíos para %s" -#: actions/showgroup.php:348 +#: actions/showgroup.php:349 #, fuzzy, php-format msgid "Notice feed for %s group (Atom)" msgstr "Fonte de chíos para %s" -#: actions/showgroup.php:353 +#: actions/showgroup.php:354 #, fuzzy, php-format msgid "FOAF for %s group" msgstr "Band. Saída para %s" -#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 +#: actions/showgroup.php:390 actions/showgroup.php:447 lib/groupnav.php:91 #, fuzzy msgid "Members" msgstr "Membro dende" -#: actions/showgroup.php:394 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 +#: actions/showgroup.php:395 lib/profileaction.php:117 +#: lib/profileaction.php:150 lib/profileaction.php:238 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 #, fuzzy msgid "(None)" msgstr "(nada)" -#: actions/showgroup.php:400 +#: actions/showgroup.php:401 msgid "All members" msgstr "" -#: actions/showgroup.php:440 +#: actions/showgroup.php:441 #, fuzzy msgid "Created" msgstr "Crear" -#: actions/showgroup.php:456 +#: actions/showgroup.php:457 #, fuzzy, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3686,7 +3714,7 @@ msgstr "" "(http://status.net/). [Únete agora](%%action.register%%) para compartir " "chíos cos teus amigos, colegas e familia! ([Ler mais](%%doc.help%%))" -#: actions/showgroup.php:462 +#: actions/showgroup.php:463 #, fuzzy, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3699,7 +3727,7 @@ msgstr "" "(http://status.net/). [Únete agora](%%action.register%%) para compartir " "chíos cos teus amigos, colegas e familia! ([Ler mais](%%doc.help%%))" -#: actions/showgroup.php:490 +#: actions/showgroup.php:491 msgid "Admins" msgstr "" @@ -3820,151 +3848,140 @@ msgid "User is already silenced." msgstr "O usuario bloqueoute." #: actions/siteadminpanel.php:69 -msgid "Basic settings for this StatusNet site." +msgid "Basic settings for this StatusNet site" msgstr "" -#: actions/siteadminpanel.php:132 +#: actions/siteadminpanel.php:133 msgid "Site name must have non-zero length." msgstr "" -#: actions/siteadminpanel.php:140 +#: actions/siteadminpanel.php:141 #, fuzzy msgid "You must have a valid contact email address." msgstr "Non é unha dirección de correo válida" -#: actions/siteadminpanel.php:158 +#: actions/siteadminpanel.php:159 #, php-format msgid "Unknown language \"%s\"." msgstr "" #: actions/siteadminpanel.php:165 -msgid "Invalid snapshot report URL." -msgstr "" - -#: actions/siteadminpanel.php:171 -msgid "Invalid snapshot run value." -msgstr "" - -#: actions/siteadminpanel.php:177 -msgid "Snapshot frequency must be a number." -msgstr "" - -#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "" -#: actions/siteadminpanel.php:189 +#: actions/siteadminpanel.php:171 msgid "Dupe limit must 1 or more seconds." msgstr "" -#: actions/siteadminpanel.php:239 +#: actions/siteadminpanel.php:221 msgid "General" msgstr "" -#: actions/siteadminpanel.php:242 +#: actions/siteadminpanel.php:224 #, fuzzy msgid "Site name" msgstr "Novo chío" -#: actions/siteadminpanel.php:243 +#: actions/siteadminpanel.php:225 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "" -#: actions/siteadminpanel.php:247 +#: actions/siteadminpanel.php:229 msgid "Brought by" msgstr "" -#: actions/siteadminpanel.php:248 +#: actions/siteadminpanel.php:230 msgid "Text used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:252 +#: actions/siteadminpanel.php:234 msgid "Brought by URL" msgstr "" -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:235 msgid "URL used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:239 #, fuzzy msgid "Contact email address for your site" msgstr "Nova dirección de email para posterar en %s" -#: actions/siteadminpanel.php:263 +#: actions/siteadminpanel.php:245 #, fuzzy msgid "Local" msgstr "Localización" -#: actions/siteadminpanel.php:274 +#: actions/siteadminpanel.php:256 msgid "Default timezone" msgstr "" -#: actions/siteadminpanel.php:275 +#: actions/siteadminpanel.php:257 msgid "Default timezone for the site; usually UTC." msgstr "" -#: actions/siteadminpanel.php:281 +#: actions/siteadminpanel.php:262 #, fuzzy -msgid "Default site language" +msgid "Default language" msgstr "Linguaxe preferida" -#: actions/siteadminpanel.php:289 -msgid "Snapshots" +#: actions/siteadminpanel.php:263 +msgid "Site language when autodetection from browser settings is not available" msgstr "" -#: actions/siteadminpanel.php:292 -msgid "Randomly during Web hit" -msgstr "" - -#: actions/siteadminpanel.php:293 -msgid "In a scheduled job" -msgstr "" - -#: actions/siteadminpanel.php:295 -msgid "Data snapshots" -msgstr "" - -#: actions/siteadminpanel.php:296 -msgid "When to send statistical data to status.net servers" -msgstr "" - -#: actions/siteadminpanel.php:301 -msgid "Frequency" -msgstr "" - -#: actions/siteadminpanel.php:302 -msgid "Snapshots will be sent once every N web hits" -msgstr "" - -#: actions/siteadminpanel.php:307 -msgid "Report URL" -msgstr "" - -#: actions/siteadminpanel.php:308 -msgid "Snapshots will be sent to this URL" -msgstr "" - -#: actions/siteadminpanel.php:315 +#: actions/siteadminpanel.php:271 msgid "Limits" msgstr "" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Text limit" msgstr "" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Maximum number of characters for notices." msgstr "" -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "Dupe limit" msgstr "" -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" +#: actions/sitenoticeadminpanel.php:56 +#, fuzzy +msgid "Site Notice" +msgstr "Novo chío" + +#: actions/sitenoticeadminpanel.php:67 +#, fuzzy +msgid "Edit site-wide message" +msgstr "Nova mensaxe" + +#: actions/sitenoticeadminpanel.php:103 +#, fuzzy +msgid "Unable to save site notice." +msgstr "Non se puideron gardar os teus axustes de Twitter!" + +#: actions/sitenoticeadminpanel.php:113 +msgid "Max length for the site-wide notice is 255 chars" +msgstr "" + +#: actions/sitenoticeadminpanel.php:176 +#, fuzzy +msgid "Site notice text" +msgstr "Novo chío" + +#: actions/sitenoticeadminpanel.php:178 +msgid "Site-wide notice text (255 chars max; HTML okay)" +msgstr "" + +#: actions/sitenoticeadminpanel.php:198 +#, fuzzy +msgid "Save site notice" +msgstr "Novo chío" + #: actions/smssettings.php:58 #, fuzzy msgid "SMS settings" @@ -4068,6 +4085,66 @@ msgstr "" msgid "No code entered" msgstr "Non se inseriu ningún código" +#. TRANS: Menu item for site administration +#: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 +#: lib/adminpanelaction.php:406 +msgid "Snapshots" +msgstr "" + +#: actions/snapshotadminpanel.php:65 +#, fuzzy +msgid "Manage snapshot configuration" +msgstr "Navegación de subscricións" + +#: actions/snapshotadminpanel.php:127 +msgid "Invalid snapshot run value." +msgstr "" + +#: actions/snapshotadminpanel.php:133 +msgid "Snapshot frequency must be a number." +msgstr "" + +#: actions/snapshotadminpanel.php:144 +msgid "Invalid snapshot report URL." +msgstr "" + +#: actions/snapshotadminpanel.php:200 +msgid "Randomly during Web hit" +msgstr "" + +#: actions/snapshotadminpanel.php:201 +msgid "In a scheduled job" +msgstr "" + +#: actions/snapshotadminpanel.php:206 +msgid "Data snapshots" +msgstr "" + +#: actions/snapshotadminpanel.php:208 +msgid "When to send statistical data to status.net servers" +msgstr "" + +#: actions/snapshotadminpanel.php:217 +msgid "Frequency" +msgstr "" + +#: actions/snapshotadminpanel.php:218 +msgid "Snapshots will be sent once every N web hits" +msgstr "" + +#: actions/snapshotadminpanel.php:226 +msgid "Report URL" +msgstr "" + +#: actions/snapshotadminpanel.php:227 +msgid "Snapshots will be sent to this URL" +msgstr "" + +#: actions/snapshotadminpanel.php:248 +#, fuzzy +msgid "Save snapshot settings" +msgstr "Configuracións de Twitter" + #: actions/subedit.php:70 msgid "You are not subscribed to that profile." msgstr "Non estás suscrito a ese perfil" @@ -4275,7 +4352,7 @@ msgstr "Non hai identificador de perfil na peticion." msgid "Unsubscribed" msgstr "De-suscribido" -#: actions/updateprofile.php:62 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -4488,16 +4565,22 @@ msgstr "Tódalas subscricións" msgid "Search for more groups" msgstr "" -#: actions/usergroups.php:153 +#: actions/usergroups.php:157 #, fuzzy, php-format msgid "%s is not a member of any group." msgstr "%1s non é unha orixe fiable." -#: actions/usergroups.php:158 +#: actions/usergroups.php:162 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" +#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: lib/atomusernoticefeed.php:72 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "Actualizacións dende %1$s en %2$s!" + #: actions/version.php:73 #, fuzzy, php-format msgid "StatusNet %s" @@ -4541,7 +4624,7 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:196 lib/action.php:778 +#: actions/version.php:196 lib/action.php:767 #, fuzzy msgid "Version" msgstr "Persoal" @@ -4610,23 +4693,23 @@ msgstr "Non se puido actualizar a mensaxe coa nova URI." msgid "DB error inserting hashtag: %s" msgstr "Erro ó inserir o hashtag na BD: %s" -#: classes/Notice.php:239 +#: classes/Notice.php:241 #, fuzzy msgid "Problem saving notice. Too long." msgstr "Aconteceu un erro ó gardar o chío." -#: classes/Notice.php:243 +#: classes/Notice.php:245 msgid "Problem saving notice. Unknown user." msgstr "Aconteceu un erro ó gardar o chío. Usuario descoñecido." -#: classes/Notice.php:248 +#: classes/Notice.php:250 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." -#: classes/Notice.php:254 +#: classes/Notice.php:256 #, fuzzy msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " @@ -4635,20 +4718,20 @@ msgstr "" "Demasiados chíos en pouco tempo; tomate un respiro e envíao de novo dentro " "duns minutos." -#: classes/Notice.php:260 +#: classes/Notice.php:262 msgid "You are banned from posting notices on this site." msgstr "Tes restrinxido o envio de chíos neste sitio." -#: classes/Notice.php:326 classes/Notice.php:352 +#: classes/Notice.php:328 classes/Notice.php:354 msgid "Problem saving notice." msgstr "Aconteceu un erro ó gardar o chío." -#: classes/Notice.php:911 +#: classes/Notice.php:927 #, fuzzy msgid "Problem saving group inbox." msgstr "Aconteceu un erro ó gardar o chío." -#: classes/Notice.php:1442 +#: classes/Notice.php:1459 #, fuzzy, php-format msgid "RT @%1$s %2$s" msgstr "%1$s (%2$s)" @@ -4676,7 +4759,12 @@ msgstr "Non está suscrito!" msgid "Couldn't delete self-subscription." msgstr "Non se pode eliminar a subscrición." -#: classes/Subscription.php:179 lib/subs.php:69 +#: classes/Subscription.php:190 +#, fuzzy +msgid "Couldn't delete subscription OMB token." +msgstr "Non se pode eliminar a subscrición." + +#: classes/Subscription.php:201 lib/subs.php:69 msgid "Couldn't delete subscription." msgstr "Non se pode eliminar a subscrición." @@ -4685,22 +4773,22 @@ msgstr "Non se pode eliminar a subscrición." msgid "Welcome to %1$s, @%2$s!" msgstr "Mensaxe de %1$s en %2$s" -#: classes/User_group.php:462 +#: classes/User_group.php:477 #, fuzzy msgid "Could not create group." msgstr "Non se puido crear o favorito." -#: classes/User_group.php:471 +#: classes/User_group.php:486 #, fuzzy msgid "Could not set group URI." msgstr "Non se pode gardar a subscrición." -#: classes/User_group.php:492 +#: classes/User_group.php:507 #, fuzzy msgid "Could not set group membership." msgstr "Non se pode gardar a subscrición." -#: classes/User_group.php:506 +#: classes/User_group.php:521 #, fuzzy msgid "Could not save local group info." msgstr "Non se pode gardar a subscrición." @@ -4744,62 +4832,55 @@ msgstr "%1$s (%2$s)" msgid "Untitled page" msgstr "" -#: lib/action.php:433 +#: lib/action.php:424 msgid "Primary site navigation" msgstr "" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:439 +#: lib/action.php:430 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:442 +#: lib/action.php:433 #, fuzzy msgctxt "MENU" msgid "Personal" msgstr "Persoal" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:444 +#: lib/action.php:435 #, fuzzy msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Cambiar contrasinal" -#: lib/action.php:447 -#, fuzzy -msgctxt "MENU" -msgid "Account" -msgstr "Sobre" - #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:450 +#: lib/action.php:440 #, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Non se pode redireccionar ao servidor: %s" -#: lib/action.php:453 +#: lib/action.php:443 #, fuzzy -msgctxt "MENU" msgid "Connect" msgstr "Conectar" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:457 +#: lib/action.php:446 #, fuzzy msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Navegación de subscricións" -#: lib/action.php:460 +#: lib/action.php:449 msgctxt "MENU" msgid "Admin" msgstr "" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:464 +#: lib/action.php:453 #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" @@ -4807,131 +4888,132 @@ msgstr "" "Emprega este formulario para invitar ós teus amigos e colegas a empregar " "este servizo." -#: lib/action.php:467 +#: lib/action.php:456 #, fuzzy msgctxt "MENU" msgid "Invite" msgstr "Invitar" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:473 +#: lib/action.php:462 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "" -#: lib/action.php:476 +#: lib/action.php:465 #, fuzzy msgctxt "MENU" msgid "Logout" msgstr "Sair" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:481 +#: lib/action.php:470 #, fuzzy msgctxt "TOOLTIP" msgid "Create an account" msgstr "Crear nova conta" -#: lib/action.php:484 +#: lib/action.php:473 #, fuzzy msgctxt "MENU" msgid "Register" msgstr "Rexistrar" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:487 +#: lib/action.php:476 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "" -#: lib/action.php:490 +#: lib/action.php:479 #, fuzzy msgctxt "MENU" msgid "Login" msgstr "Inicio de sesión" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:493 +#: lib/action.php:482 #, fuzzy msgctxt "TOOLTIP" msgid "Help me!" msgstr "Axuda" -#: lib/action.php:496 +#: lib/action.php:485 #, fuzzy msgctxt "MENU" msgid "Help" msgstr "Axuda" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:499 +#: lib/action.php:488 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "" -#: lib/action.php:502 +#: lib/action.php:491 #, fuzzy msgctxt "MENU" msgid "Search" msgstr "Buscar" #. TRANS: DT element for site notice. String is hidden in default CSS. -#: lib/action.php:524 +#. TRANS: Menu item for site administration +#: lib/action.php:513 lib/adminpanelaction.php:398 #, fuzzy msgid "Site notice" msgstr "Novo chío" -#: lib/action.php:590 +#: lib/action.php:579 msgid "Local views" msgstr "" -#: lib/action.php:656 +#: lib/action.php:645 #, fuzzy msgid "Page notice" msgstr "Novo chío" -#: lib/action.php:758 +#: lib/action.php:747 #, fuzzy msgid "Secondary site navigation" msgstr "Navegación de subscricións" -#: lib/action.php:763 +#: lib/action.php:752 msgid "Help" msgstr "Axuda" -#: lib/action.php:765 +#: lib/action.php:754 msgid "About" msgstr "Sobre" -#: lib/action.php:767 +#: lib/action.php:756 msgid "FAQ" msgstr "Preguntas frecuentes" -#: lib/action.php:771 +#: lib/action.php:760 msgid "TOS" msgstr "" -#: lib/action.php:774 +#: lib/action.php:763 msgid "Privacy" msgstr "Privacidade" -#: lib/action.php:776 +#: lib/action.php:765 msgid "Source" msgstr "Fonte" -#: lib/action.php:780 +#: lib/action.php:769 msgid "Contact" msgstr "Contacto" -#: lib/action.php:782 +#: lib/action.php:771 msgid "Badge" msgstr "" -#: lib/action.php:810 +#: lib/action.php:799 msgid "StatusNet software license" msgstr "" -#: lib/action.php:813 +#: lib/action.php:802 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4940,12 +5022,12 @@ msgstr "" "**%%site.name%%** é un servizo de microbloguexo que che proporciona [%%site." "broughtby%%](%%site.broughtbyurl%%). " -#: lib/action.php:815 +#: lib/action.php:804 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** é un servizo de microbloguexo." -#: lib/action.php:817 +#: lib/action.php:806 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4956,57 +5038,57 @@ msgstr "" "%s, dispoñible baixo licenza [GNU Affero General Public License](http://www." "fsf.org/licensing/licenses/agpl-3.0.html)." -#: lib/action.php:832 +#: lib/action.php:821 #, fuzzy msgid "Site content license" msgstr "Atopar no contido dos chíos" -#: lib/action.php:837 +#: lib/action.php:826 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:842 +#: lib/action.php:831 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:845 +#: lib/action.php:834 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" -#: lib/action.php:858 +#: lib/action.php:847 #, fuzzy msgid "All " msgstr "Todos" -#: lib/action.php:864 +#: lib/action.php:853 msgid "license." msgstr "" -#: lib/action.php:1163 +#: lib/action.php:1152 msgid "Pagination" msgstr "" -#: lib/action.php:1172 +#: lib/action.php:1161 #, fuzzy msgid "After" msgstr "« Despois" -#: lib/action.php:1180 +#: lib/action.php:1169 #, fuzzy msgid "Before" msgstr "Antes »" -#: lib/activity.php:449 +#: lib/activity.php:453 msgid "Can't handle remote content yet." msgstr "" -#: lib/activity.php:477 +#: lib/activity.php:481 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activity.php:481 +#: lib/activity.php:485 msgid "Can't handle embedded Base64 content yet." msgstr "" @@ -5023,99 +5105,89 @@ msgid "Changes to that panel are not allowed." msgstr "Non se permite o rexistro neste intre." #. TRANS: Client error message -#: lib/adminpanelaction.php:211 +#: lib/adminpanelaction.php:229 #, fuzzy msgid "showForm() not implemented." msgstr "Comando non implementado." #. TRANS: Client error message -#: lib/adminpanelaction.php:241 +#: lib/adminpanelaction.php:259 #, fuzzy msgid "saveSettings() not implemented." msgstr "Comando non implementado." #. TRANS: Client error message -#: lib/adminpanelaction.php:265 +#: lib/adminpanelaction.php:283 #, fuzzy msgid "Unable to delete design setting." msgstr "Non se puideron gardar os teus axustes de Twitter!" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:330 +#: lib/adminpanelaction.php:348 #, fuzzy msgid "Basic site configuration" msgstr "Confirmar correo electrónico" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:332 +#: lib/adminpanelaction.php:350 #, fuzzy msgctxt "MENU" msgid "Site" msgstr "Invitar" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:338 +#: lib/adminpanelaction.php:356 #, fuzzy msgid "Design configuration" msgstr "Confirmación de SMS" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:340 +#: lib/adminpanelaction.php:358 #, fuzzy msgctxt "MENU" msgid "Design" msgstr "Persoal" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:346 +#: lib/adminpanelaction.php:364 #, fuzzy msgid "User configuration" msgstr "Confirmación de SMS" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:348 -#, fuzzy -msgctxt "MENU" +#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 msgid "User" msgstr "Usuario" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:354 +#: lib/adminpanelaction.php:372 #, fuzzy msgid "Access configuration" msgstr "Confirmación de SMS" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:356 -#, fuzzy -msgctxt "MENU" -msgid "Access" -msgstr "Aceptar" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:362 +#: lib/adminpanelaction.php:380 #, fuzzy msgid "Paths configuration" msgstr "Confirmación de SMS" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:364 -msgctxt "MENU" -msgid "Paths" -msgstr "" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:370 +#: lib/adminpanelaction.php:388 #, fuzzy msgid "Sessions configuration" msgstr "Confirmación de SMS" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:372 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:396 #, fuzzy -msgctxt "MENU" -msgid "Sessions" -msgstr "Persoal" +msgid "Edit site notice" +msgstr "Novo chío" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:404 +#, fuzzy +msgid "Snapshots configuration" +msgstr "Confirmación de SMS" #: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." @@ -5659,6 +5731,11 @@ msgstr "Elixe unha etiqueta para reducila lista" msgid "Go" msgstr "Ir" +#: lib/grantroleform.php:91 +#, php-format +msgid "Grant this user the \"%s\" role" +msgstr "" + #: lib/groupeditform.php:163 #, fuzzy msgid "URL of the homepage or blog of the group or topic" @@ -6273,10 +6350,6 @@ msgstr "Respostas" msgid "Favorites" msgstr "Favoritos" -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "Usuario" - #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "Band. Entrada" @@ -6303,7 +6376,7 @@ msgstr "O usuario non ten último chio." msgid "Unknown" msgstr "Acción descoñecida" -#: lib/profileaction.php:109 lib/profileaction.php:192 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:194 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Subscricións" @@ -6311,25 +6384,25 @@ msgstr "Subscricións" msgid "All subscriptions" msgstr "Tódalas subscricións" -#: lib/profileaction.php:140 lib/profileaction.php:201 lib/subgroupnav.php:90 +#: lib/profileaction.php:142 lib/profileaction.php:203 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Subscritores" -#: lib/profileaction.php:157 +#: lib/profileaction.php:159 #, fuzzy msgid "All subscribers" msgstr "Subscritores" -#: lib/profileaction.php:178 +#: lib/profileaction.php:180 #, fuzzy msgid "User ID" msgstr "Usuario" -#: lib/profileaction.php:183 +#: lib/profileaction.php:185 msgid "Member since" msgstr "Membro dende" -#: lib/profileaction.php:245 +#: lib/profileaction.php:247 #, fuzzy msgid "All groups" msgstr "Tódalas etiquetas" @@ -6374,7 +6447,12 @@ msgstr "Non se pode eliminar este chíos." msgid "Repeat this notice" msgstr "Non se pode eliminar este chíos." -#: lib/router.php:668 +#: lib/revokeroleform.php:91 +#, php-format +msgid "Revoke the \"%s\" role from this user" +msgstr "" + +#: lib/router.php:671 msgid "No single user defined for single-user mode." msgstr "" @@ -6546,47 +6624,62 @@ msgstr "Nova mensaxe" msgid "Moderate" msgstr "" -#: lib/util.php:1013 +#: lib/userprofile.php:352 +#, fuzzy +msgid "User role" +msgstr "O usuario non ten perfil." + +#: lib/userprofile.php:354 +msgctxt "role" +msgid "Administrator" +msgstr "" + +#: lib/userprofile.php:355 +msgctxt "role" +msgid "Moderator" +msgstr "" + +#: lib/util.php:1015 msgid "a few seconds ago" msgstr "fai uns segundos" -#: lib/util.php:1015 +#: lib/util.php:1017 msgid "about a minute ago" msgstr "fai un minuto" -#: lib/util.php:1017 +#: lib/util.php:1019 #, php-format msgid "about %d minutes ago" msgstr "fai %d minutos" -#: lib/util.php:1019 +#: lib/util.php:1021 msgid "about an hour ago" msgstr "fai unha hora" -#: lib/util.php:1021 +#: lib/util.php:1023 #, php-format msgid "about %d hours ago" msgstr "fai %d horas" -#: lib/util.php:1023 +#: lib/util.php:1025 msgid "about a day ago" msgstr "fai un día" -#: lib/util.php:1025 +#: lib/util.php:1027 #, php-format msgid "about %d days ago" msgstr "fai %d días" -#: lib/util.php:1027 +#: lib/util.php:1029 msgid "about a month ago" msgstr "fai un mes" -#: lib/util.php:1029 +#: lib/util.php:1031 #, php-format msgid "about %d months ago" msgstr "fai %d meses" -#: lib/util.php:1031 +#: lib/util.php:1033 msgid "about a year ago" msgstr "fai un ano" diff --git a/locale/he/LC_MESSAGES/statusnet.po b/locale/he/LC_MESSAGES/statusnet.po index 89fd4dd7ad..ea92756853 100644 --- a/locale/he/LC_MESSAGES/statusnet.po +++ b/locale/he/LC_MESSAGES/statusnet.po @@ -7,19 +7,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-02 21:02+0000\n" -"PO-Revision-Date: 2010-03-02 21:02:54+0000\n" +"POT-Creation-Date: 2010-03-04 18:55+0000\n" +"PO-Revision-Date: 2010-03-04 18:56:31+0000\n" "Language-Team: Hebrew\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. TRANS: Page title -#: actions/accessadminpanel.php:55 +#. TRANS: Menu item for site administration +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 #, fuzzy msgid "Access" msgstr "קבל" @@ -122,7 +123,7 @@ msgstr "%s וחברים" #. TRANS: Page title. %1$s is user nickname #. TRANS: H1 text. %1$s is user nickname -#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -177,7 +178,7 @@ msgid "" msgstr "" #. TRANS: H1 text -#: actions/all.php:174 +#: actions/all.php:178 #, fuzzy msgid "You and friends" msgstr "%s וחברים" @@ -205,11 +206,11 @@ msgstr "" #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 -#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 +#: actions/apitimelinegroup.php:160 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:148 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 #, fuzzy msgid "API method not found." msgstr "קוד האישור לא נמצא." @@ -578,7 +579,7 @@ msgid "" "give access to your %4$s account to third parties you trust." msgstr "" -#: actions/apioauthauthorize.php:310 +#: actions/apioauthauthorize.php:310 lib/action.php:438 #, fuzzy msgid "Account" msgstr "אודות" @@ -670,18 +671,6 @@ msgstr "הסטטוס של %1$s ב-%2$s " msgid "%1$s updates favorited by %2$s / %2$s." msgstr "מיקרובלוג מאת %s" -#: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:138 actions/userrss.php:90 -#, php-format -msgid "%s timeline" -msgstr "" - -#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 -#: actions/userrss.php:92 -#, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "" - #: actions/apitimelinementions.php:117 #, fuzzy, php-format msgid "%1$s / Updates mentioning %2$s" @@ -692,12 +681,12 @@ msgstr "הסטטוס של %1$s ב-%2$s " msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "" -#: actions/apitimelinepublic.php:111 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "" -#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "" @@ -954,7 +943,7 @@ msgid "Conversation" msgstr "מיקום" #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:216 lib/searchgroupnav.php:82 +#: lib/profileaction.php:218 lib/searchgroupnav.php:82 msgid "Notices" msgstr "הודעות" @@ -976,7 +965,7 @@ msgstr "לא שלחנו אלינו את הפרופיל הזה" #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1228 +#: lib/action.php:1217 msgid "There was a problem with your session token." msgstr "" @@ -1180,8 +1169,9 @@ msgstr "" #: actions/designadminpanel.php:586 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 +#: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:208 #: actions/tagother.php:154 actions/useradminpanel.php:294 #: lib/applicationeditform.php:333 lib/applicationeditform.php:334 #: lib/designsettings.php:256 lib/groupeditform.php:202 @@ -1307,7 +1297,7 @@ msgstr "הביוגרפיה ארוכה מידי (לכל היותר 140 אותיו msgid "Could not update group." msgstr "עידכון המשתמש נכשל." -#: actions/editgroup.php:264 classes/User_group.php:478 +#: actions/editgroup.php:264 classes/User_group.php:493 #, fuzzy msgid "Could not create aliases." msgstr "שמירת מידע התמונה נכשל" @@ -1431,7 +1421,7 @@ msgid "Cannot normalize that email address" msgstr "" #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:143 +#: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "" @@ -1626,6 +1616,25 @@ msgstr "אין הודעה כזו." msgid "Cannot read file." msgstr "אין הודעה כזו." +#: actions/grantrole.php:62 actions/revokerole.php:62 +#, fuzzy +msgid "Invalid role." +msgstr "גודל לא חוקי." + +#: actions/grantrole.php:66 actions/revokerole.php:66 +msgid "This role is reserved and cannot be set." +msgstr "" + +#: actions/grantrole.php:75 +#, fuzzy +msgid "You cannot grant user roles on this site." +msgstr "לא שלחנו אלינו את הפרופיל הזה" + +#: actions/grantrole.php:82 +#, fuzzy +msgid "User already has this role." +msgstr "למשתמש אין פרופיל." + #: actions/groupblock.php:71 actions/groupunblock.php:71 #: actions/makeadmin.php:71 actions/subedit.php:46 #: lib/profileformaction.php:70 @@ -1778,12 +1787,18 @@ msgstr "" msgid "Make this user an admin" msgstr "" +#: actions/grouprss.php:138 actions/userrss.php:90 +#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#, php-format +msgid "%s timeline" +msgstr "" + #: actions/grouprss.php:140 #, fuzzy, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "מיקרובלוג מאת %s" -#: actions/groups.php:62 lib/profileaction.php:210 lib/profileaction.php:230 +#: actions/groups.php:62 lib/profileaction.php:212 lib/profileaction.php:232 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" msgstr "קבוצות" @@ -2365,8 +2380,8 @@ msgstr "התחבר" msgid "Only " msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 -#: lib/apiaction.php:1068 lib/apiaction.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1042 +#: lib/apiaction.php:1070 lib/apiaction.php:1179 msgid "Not a supported data format." msgstr "" @@ -2514,7 +2529,8 @@ msgstr "לא ניתן לשמור את הסיסמה" msgid "Password saved." msgstr "הסיסמה נשמרה." -#: actions/pathsadminpanel.php:59 +#. TRANS: Menu item for site administration +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 msgid "Paths" msgstr "" @@ -2641,7 +2657,7 @@ msgstr "" msgid "SSL" msgstr "סמס" -#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 +#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202 #, fuzzy msgid "Never" msgstr "שיחזור" @@ -2700,11 +2716,11 @@ msgstr "לא עומד בכללים ל-OpenID." msgid "Users self-tagged with %1$s - page %2$d" msgstr "מיקרובלוג מאת %s" -#: actions/postnotice.php:84 +#: actions/postnotice.php:95 msgid "Invalid notice content" msgstr "תוכן ההודעה לא חוקי" -#: actions/postnotice.php:90 +#: actions/postnotice.php:101 #, php-format msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" @@ -2782,7 +2798,7 @@ msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" -#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 +#: actions/profilesettings.php:151 msgid "Language" msgstr "שפה" @@ -2808,7 +2824,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "הביוגרפיה ארוכה מידי (לכל היותר 140 אותיות)" -#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:151 msgid "Timezone not selected." msgstr "" @@ -3113,7 +3129,7 @@ msgid "Same as password above. Required." msgstr "" #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 msgid "Email" msgstr "" @@ -3201,7 +3217,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "כתובת הפרופיל שלך בשרות ביקרובלוג תואם אחר" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:368 +#: lib/userprofile.php:394 msgid "Subscribe" msgstr "הירשם כמנוי" @@ -3304,6 +3320,16 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "תגובת עבור %s" +#: actions/revokerole.php:75 +#, fuzzy +msgid "You cannot revoke user roles on this site." +msgstr "לא שלחנו אלינו את הפרופיל הזה" + +#: actions/revokerole.php:82 +#, fuzzy +msgid "User doesn't have this role." +msgstr "למשתמש אין פרופיל." + #: actions/rsd.php:146 actions/version.php:157 #, fuzzy msgid "StatusNet" @@ -3319,7 +3345,9 @@ msgstr "לא שלחנו אלינו את הפרופיל הזה" msgid "User is already sandboxed." msgstr "למשתמש אין פרופיל." +#. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:390 msgid "Sessions" msgstr "" @@ -3343,7 +3371,7 @@ msgstr "" msgid "Turn on debugging output for sessions." msgstr "" -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/useradminpanel.php:294 #, fuzzy msgid "Save site settings" @@ -3379,8 +3407,8 @@ msgstr "מיקום" msgid "Description" msgstr "הרשמות" -#: actions/showapplication.php:192 actions/showgroup.php:437 -#: lib/profileaction.php:174 +#: actions/showapplication.php:192 actions/showgroup.php:438 +#: lib/profileaction.php:176 msgid "Statistics" msgstr "סטטיסטיקה" @@ -3514,47 +3542,47 @@ msgstr "" msgid "Group actions" msgstr "" -#: actions/showgroup.php:336 +#: actions/showgroup.php:337 #, fuzzy, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "הזנת הודעות של %s" -#: actions/showgroup.php:342 +#: actions/showgroup.php:343 #, fuzzy, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "הזנת הודעות של %s" -#: actions/showgroup.php:348 +#: actions/showgroup.php:349 #, fuzzy, php-format msgid "Notice feed for %s group (Atom)" msgstr "הזנת הודעות של %s" -#: actions/showgroup.php:353 +#: actions/showgroup.php:354 #, fuzzy, php-format msgid "FOAF for %s group" msgstr "הזנת הודעות של %s" -#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 +#: actions/showgroup.php:390 actions/showgroup.php:447 lib/groupnav.php:91 #, fuzzy msgid "Members" msgstr "חבר מאז" -#: actions/showgroup.php:394 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 +#: actions/showgroup.php:395 lib/profileaction.php:117 +#: lib/profileaction.php:150 lib/profileaction.php:238 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "" -#: actions/showgroup.php:400 +#: actions/showgroup.php:401 msgid "All members" msgstr "" -#: actions/showgroup.php:440 +#: actions/showgroup.php:441 #, fuzzy msgid "Created" msgstr "צור" -#: actions/showgroup.php:456 +#: actions/showgroup.php:457 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3564,7 +3592,7 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showgroup.php:462 +#: actions/showgroup.php:463 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3573,7 +3601,7 @@ msgid "" "their life and interests. " msgstr "" -#: actions/showgroup.php:490 +#: actions/showgroup.php:491 msgid "Admins" msgstr "" @@ -3685,148 +3713,137 @@ msgid "User is already silenced." msgstr "למשתמש אין פרופיל." #: actions/siteadminpanel.php:69 -msgid "Basic settings for this StatusNet site." +msgid "Basic settings for this StatusNet site" msgstr "" -#: actions/siteadminpanel.php:132 +#: actions/siteadminpanel.php:133 msgid "Site name must have non-zero length." msgstr "" -#: actions/siteadminpanel.php:140 +#: actions/siteadminpanel.php:141 msgid "You must have a valid contact email address." msgstr "" -#: actions/siteadminpanel.php:158 +#: actions/siteadminpanel.php:159 #, php-format msgid "Unknown language \"%s\"." msgstr "" #: actions/siteadminpanel.php:165 -msgid "Invalid snapshot report URL." -msgstr "" - -#: actions/siteadminpanel.php:171 -msgid "Invalid snapshot run value." -msgstr "" - -#: actions/siteadminpanel.php:177 -msgid "Snapshot frequency must be a number." -msgstr "" - -#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "" -#: actions/siteadminpanel.php:189 +#: actions/siteadminpanel.php:171 msgid "Dupe limit must 1 or more seconds." msgstr "" -#: actions/siteadminpanel.php:239 +#: actions/siteadminpanel.php:221 msgid "General" msgstr "" -#: actions/siteadminpanel.php:242 +#: actions/siteadminpanel.php:224 #, fuzzy msgid "Site name" msgstr "הודעה חדשה" -#: actions/siteadminpanel.php:243 +#: actions/siteadminpanel.php:225 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "" -#: actions/siteadminpanel.php:247 +#: actions/siteadminpanel.php:229 msgid "Brought by" msgstr "" -#: actions/siteadminpanel.php:248 +#: actions/siteadminpanel.php:230 msgid "Text used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:252 +#: actions/siteadminpanel.php:234 msgid "Brought by URL" msgstr "" -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:235 msgid "URL used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:239 msgid "Contact email address for your site" msgstr "" -#: actions/siteadminpanel.php:263 +#: actions/siteadminpanel.php:245 #, fuzzy msgid "Local" msgstr "מיקום" -#: actions/siteadminpanel.php:274 +#: actions/siteadminpanel.php:256 msgid "Default timezone" msgstr "" -#: actions/siteadminpanel.php:275 +#: actions/siteadminpanel.php:257 msgid "Default timezone for the site; usually UTC." msgstr "" -#: actions/siteadminpanel.php:281 -msgid "Default site language" +#: actions/siteadminpanel.php:262 +msgid "Default language" msgstr "" -#: actions/siteadminpanel.php:289 -msgid "Snapshots" +#: actions/siteadminpanel.php:263 +msgid "Site language when autodetection from browser settings is not available" msgstr "" -#: actions/siteadminpanel.php:292 -msgid "Randomly during Web hit" -msgstr "" - -#: actions/siteadminpanel.php:293 -msgid "In a scheduled job" -msgstr "" - -#: actions/siteadminpanel.php:295 -msgid "Data snapshots" -msgstr "" - -#: actions/siteadminpanel.php:296 -msgid "When to send statistical data to status.net servers" -msgstr "" - -#: actions/siteadminpanel.php:301 -msgid "Frequency" -msgstr "" - -#: actions/siteadminpanel.php:302 -msgid "Snapshots will be sent once every N web hits" -msgstr "" - -#: actions/siteadminpanel.php:307 -msgid "Report URL" -msgstr "" - -#: actions/siteadminpanel.php:308 -msgid "Snapshots will be sent to this URL" -msgstr "" - -#: actions/siteadminpanel.php:315 +#: actions/siteadminpanel.php:271 msgid "Limits" msgstr "" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Text limit" msgstr "" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Maximum number of characters for notices." msgstr "" -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "Dupe limit" msgstr "" -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" +#: actions/sitenoticeadminpanel.php:56 +#, fuzzy +msgid "Site Notice" +msgstr "הודעה חדשה" + +#: actions/sitenoticeadminpanel.php:67 +#, fuzzy +msgid "Edit site-wide message" +msgstr "הודעה חדשה" + +#: actions/sitenoticeadminpanel.php:103 +#, fuzzy +msgid "Unable to save site notice." +msgstr "בעיה בשמירת ההודעה." + +#: actions/sitenoticeadminpanel.php:113 +msgid "Max length for the site-wide notice is 255 chars" +msgstr "" + +#: actions/sitenoticeadminpanel.php:176 +#, fuzzy +msgid "Site notice text" +msgstr "הודעה חדשה" + +#: actions/sitenoticeadminpanel.php:178 +msgid "Site-wide notice text (255 chars max; HTML okay)" +msgstr "" + +#: actions/sitenoticeadminpanel.php:198 +#, fuzzy +msgid "Save site notice" +msgstr "הודעה חדשה" + #: actions/smssettings.php:58 #, fuzzy msgid "SMS settings" @@ -3922,6 +3939,66 @@ msgstr "" msgid "No code entered" msgstr "" +#. TRANS: Menu item for site administration +#: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 +#: lib/adminpanelaction.php:406 +msgid "Snapshots" +msgstr "" + +#: actions/snapshotadminpanel.php:65 +#, fuzzy +msgid "Manage snapshot configuration" +msgstr "הרשמות" + +#: actions/snapshotadminpanel.php:127 +msgid "Invalid snapshot run value." +msgstr "" + +#: actions/snapshotadminpanel.php:133 +msgid "Snapshot frequency must be a number." +msgstr "" + +#: actions/snapshotadminpanel.php:144 +msgid "Invalid snapshot report URL." +msgstr "" + +#: actions/snapshotadminpanel.php:200 +msgid "Randomly during Web hit" +msgstr "" + +#: actions/snapshotadminpanel.php:201 +msgid "In a scheduled job" +msgstr "" + +#: actions/snapshotadminpanel.php:206 +msgid "Data snapshots" +msgstr "" + +#: actions/snapshotadminpanel.php:208 +msgid "When to send statistical data to status.net servers" +msgstr "" + +#: actions/snapshotadminpanel.php:217 +msgid "Frequency" +msgstr "" + +#: actions/snapshotadminpanel.php:218 +msgid "Snapshots will be sent once every N web hits" +msgstr "" + +#: actions/snapshotadminpanel.php:226 +msgid "Report URL" +msgstr "" + +#: actions/snapshotadminpanel.php:227 +msgid "Snapshots will be sent to this URL" +msgstr "" + +#: actions/snapshotadminpanel.php:248 +#, fuzzy +msgid "Save snapshot settings" +msgstr "הגדרות" + #: actions/subedit.php:70 #, fuzzy msgid "You are not subscribed to that profile." @@ -4130,7 +4207,7 @@ msgstr "השרת לא החזיר כתובת פרופיל" msgid "Unsubscribed" msgstr "בטל מנוי" -#: actions/updateprofile.php:62 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -4337,16 +4414,22 @@ msgstr "כל המנויים" msgid "Search for more groups" msgstr "" -#: actions/usergroups.php:153 +#: actions/usergroups.php:157 #, fuzzy, php-format msgid "%s is not a member of any group." msgstr "לא שלחנו אלינו את הפרופיל הזה" -#: actions/usergroups.php:158 +#: actions/usergroups.php:162 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" +#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: lib/atomusernoticefeed.php:72 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "" + #: actions/version.php:73 #, fuzzy, php-format msgid "StatusNet %s" @@ -4390,7 +4473,7 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:196 lib/action.php:778 +#: actions/version.php:196 lib/action.php:767 #, fuzzy msgid "Version" msgstr "אישי" @@ -4458,41 +4541,41 @@ msgstr "" msgid "DB error inserting hashtag: %s" msgstr "" -#: classes/Notice.php:239 +#: classes/Notice.php:241 #, fuzzy msgid "Problem saving notice. Too long." msgstr "בעיה בשמירת ההודעה." -#: classes/Notice.php:243 +#: classes/Notice.php:245 #, fuzzy msgid "Problem saving notice. Unknown user." msgstr "בעיה בשמירת ההודעה." -#: classes/Notice.php:248 +#: classes/Notice.php:250 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: classes/Notice.php:254 +#: classes/Notice.php:256 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." msgstr "" -#: classes/Notice.php:260 +#: classes/Notice.php:262 msgid "You are banned from posting notices on this site." msgstr "" -#: classes/Notice.php:326 classes/Notice.php:352 +#: classes/Notice.php:328 classes/Notice.php:354 msgid "Problem saving notice." msgstr "בעיה בשמירת ההודעה." -#: classes/Notice.php:911 +#: classes/Notice.php:927 #, fuzzy msgid "Problem saving group inbox." msgstr "בעיה בשמירת ההודעה." -#: classes/Notice.php:1442 +#: classes/Notice.php:1459 #, php-format msgid "RT @%1$s %2$s" msgstr "" @@ -4520,7 +4603,12 @@ msgstr "לא מנוי!" msgid "Couldn't delete self-subscription." msgstr "מחיקת המנוי לא הצליחה." -#: classes/Subscription.php:179 lib/subs.php:69 +#: classes/Subscription.php:190 +#, fuzzy +msgid "Couldn't delete subscription OMB token." +msgstr "מחיקת המנוי לא הצליחה." + +#: classes/Subscription.php:201 lib/subs.php:69 msgid "Couldn't delete subscription." msgstr "מחיקת המנוי לא הצליחה." @@ -4529,22 +4617,22 @@ msgstr "מחיקת המנוי לא הצליחה." msgid "Welcome to %1$s, @%2$s!" msgstr "" -#: classes/User_group.php:462 +#: classes/User_group.php:477 #, fuzzy msgid "Could not create group." msgstr "שמירת מידע התמונה נכשל" -#: classes/User_group.php:471 +#: classes/User_group.php:486 #, fuzzy msgid "Could not set group URI." msgstr "יצירת המנוי נכשלה." -#: classes/User_group.php:492 +#: classes/User_group.php:507 #, fuzzy msgid "Could not set group membership." msgstr "יצירת המנוי נכשלה." -#: classes/User_group.php:506 +#: classes/User_group.php:521 #, fuzzy msgid "Could not save local group info." msgstr "יצירת המנוי נכשלה." @@ -4588,192 +4676,186 @@ msgstr "הסטטוס של %1$s ב-%2$s " msgid "Untitled page" msgstr "" -#: lib/action.php:433 +#: lib/action.php:424 msgid "Primary site navigation" msgstr "" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:439 +#: lib/action.php:430 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:442 +#: lib/action.php:433 #, fuzzy msgctxt "MENU" msgid "Personal" msgstr "אישי" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:444 +#: lib/action.php:435 #, fuzzy msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "שנה סיסמה" -#: lib/action.php:447 -#, fuzzy -msgctxt "MENU" -msgid "Account" -msgstr "אודות" - #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:450 +#: lib/action.php:440 #, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" msgstr "נכשלה ההפניה לשרת: %s" -#: lib/action.php:453 +#: lib/action.php:443 #, fuzzy -msgctxt "MENU" msgid "Connect" msgstr "התחבר" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:457 +#: lib/action.php:446 #, fuzzy msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "הרשמות" -#: lib/action.php:460 +#: lib/action.php:449 msgctxt "MENU" msgid "Admin" msgstr "" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:464 +#: lib/action.php:453 #, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "" -#: lib/action.php:467 +#: lib/action.php:456 #, fuzzy msgctxt "MENU" msgid "Invite" msgstr "גודל לא חוקי." #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:473 +#: lib/action.php:462 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "" -#: lib/action.php:476 +#: lib/action.php:465 #, fuzzy msgctxt "MENU" msgid "Logout" msgstr "צא" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:481 +#: lib/action.php:470 #, fuzzy msgctxt "TOOLTIP" msgid "Create an account" msgstr "צור חשבון חדש" -#: lib/action.php:484 +#: lib/action.php:473 #, fuzzy msgctxt "MENU" msgid "Register" msgstr "הירשם" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:487 +#: lib/action.php:476 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "" -#: lib/action.php:490 +#: lib/action.php:479 #, fuzzy msgctxt "MENU" msgid "Login" msgstr "היכנס" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:493 +#: lib/action.php:482 #, fuzzy msgctxt "TOOLTIP" msgid "Help me!" msgstr "עזרה" -#: lib/action.php:496 +#: lib/action.php:485 #, fuzzy msgctxt "MENU" msgid "Help" msgstr "עזרה" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:499 +#: lib/action.php:488 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "" -#: lib/action.php:502 +#: lib/action.php:491 #, fuzzy msgctxt "MENU" msgid "Search" msgstr "חיפוש" #. TRANS: DT element for site notice. String is hidden in default CSS. -#: lib/action.php:524 +#. TRANS: Menu item for site administration +#: lib/action.php:513 lib/adminpanelaction.php:398 #, fuzzy msgid "Site notice" msgstr "הודעה חדשה" -#: lib/action.php:590 +#: lib/action.php:579 msgid "Local views" msgstr "" -#: lib/action.php:656 +#: lib/action.php:645 #, fuzzy msgid "Page notice" msgstr "הודעה חדשה" -#: lib/action.php:758 +#: lib/action.php:747 #, fuzzy msgid "Secondary site navigation" msgstr "הרשמות" -#: lib/action.php:763 +#: lib/action.php:752 msgid "Help" msgstr "עזרה" -#: lib/action.php:765 +#: lib/action.php:754 msgid "About" msgstr "אודות" -#: lib/action.php:767 +#: lib/action.php:756 msgid "FAQ" msgstr "רשימת שאלות נפוצות" -#: lib/action.php:771 +#: lib/action.php:760 msgid "TOS" msgstr "" -#: lib/action.php:774 +#: lib/action.php:763 msgid "Privacy" msgstr "פרטיות" -#: lib/action.php:776 +#: lib/action.php:765 msgid "Source" msgstr "מקור" -#: lib/action.php:780 +#: lib/action.php:769 msgid "Contact" msgstr "צור קשר" -#: lib/action.php:782 +#: lib/action.php:771 msgid "Badge" msgstr "" -#: lib/action.php:810 +#: lib/action.php:799 msgid "StatusNet software license" msgstr "" -#: lib/action.php:813 +#: lib/action.php:802 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4782,12 +4864,12 @@ msgstr "" "**%%site.name%%** הוא שרות ביקרובלוג הניתן על ידי [%%site.broughtby%%](%%" "site.broughtbyurl%%)." -#: lib/action.php:815 +#: lib/action.php:804 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** הוא שרות ביקרובלוג." -#: lib/action.php:817 +#: lib/action.php:806 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4798,56 +4880,56 @@ msgstr "" "s, המופצת תחת רשיון [GNU Affero General Public License](http://www.fsf.org/" "licensing/licenses/agpl-3.0.html)" -#: lib/action.php:832 +#: lib/action.php:821 #, fuzzy msgid "Site content license" msgstr "הודעה חדשה" -#: lib/action.php:837 +#: lib/action.php:826 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:842 +#: lib/action.php:831 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:845 +#: lib/action.php:834 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" -#: lib/action.php:858 +#: lib/action.php:847 msgid "All " msgstr "" -#: lib/action.php:864 +#: lib/action.php:853 msgid "license." msgstr "" -#: lib/action.php:1163 +#: lib/action.php:1152 msgid "Pagination" msgstr "" -#: lib/action.php:1172 +#: lib/action.php:1161 #, fuzzy msgid "After" msgstr "<< אחרי" -#: lib/action.php:1180 +#: lib/action.php:1169 #, fuzzy msgid "Before" msgstr "לפני >>" -#: lib/activity.php:449 +#: lib/activity.php:453 msgid "Can't handle remote content yet." msgstr "" -#: lib/activity.php:477 +#: lib/activity.php:481 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activity.php:481 +#: lib/activity.php:485 msgid "Can't handle embedded Base64 content yet." msgstr "" @@ -4862,95 +4944,85 @@ msgid "Changes to that panel are not allowed." msgstr "" #. TRANS: Client error message -#: lib/adminpanelaction.php:211 +#: lib/adminpanelaction.php:229 msgid "showForm() not implemented." msgstr "" #. TRANS: Client error message -#: lib/adminpanelaction.php:241 +#: lib/adminpanelaction.php:259 msgid "saveSettings() not implemented." msgstr "" #. TRANS: Client error message -#: lib/adminpanelaction.php:265 +#: lib/adminpanelaction.php:283 msgid "Unable to delete design setting." msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:330 +#: lib/adminpanelaction.php:348 #, fuzzy msgid "Basic site configuration" msgstr "הרשמות" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:332 +#: lib/adminpanelaction.php:350 #, fuzzy msgctxt "MENU" msgid "Site" msgstr "הודעה חדשה" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:338 +#: lib/adminpanelaction.php:356 msgid "Design configuration" msgstr "" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:340 +#: lib/adminpanelaction.php:358 #, fuzzy msgctxt "MENU" msgid "Design" msgstr "אישי" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:346 +#: lib/adminpanelaction.php:364 #, fuzzy msgid "User configuration" msgstr "הרשמות" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:348 -#, fuzzy -msgctxt "MENU" +#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 msgid "User" msgstr "מתשמש" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:354 +#: lib/adminpanelaction.php:372 #, fuzzy msgid "Access configuration" msgstr "הרשמות" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:356 -#, fuzzy -msgctxt "MENU" -msgid "Access" -msgstr "קבל" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:362 +#: lib/adminpanelaction.php:380 #, fuzzy msgid "Paths configuration" msgstr "הרשמות" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:364 -msgctxt "MENU" -msgid "Paths" -msgstr "" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:370 +#: lib/adminpanelaction.php:388 #, fuzzy msgid "Sessions configuration" msgstr "הרשמות" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:372 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:396 #, fuzzy -msgctxt "MENU" -msgid "Sessions" -msgstr "אישי" +msgid "Edit site notice" +msgstr "הודעה חדשה" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:404 +#, fuzzy +msgid "Snapshots configuration" +msgstr "הרשמות" #: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." @@ -5455,6 +5527,11 @@ msgstr "" msgid "Go" msgstr "" +#: lib/grantroleform.php:91 +#, php-format +msgid "Grant this user the \"%s\" role" +msgstr "" + #: lib/groupeditform.php:163 #, fuzzy msgid "URL of the homepage or blog of the group or topic" @@ -6005,10 +6082,6 @@ msgstr "תגובות" msgid "Favorites" msgstr "מועדפים" -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "מתשמש" - #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "" @@ -6034,7 +6107,7 @@ msgstr "" msgid "Unknown" msgstr "" -#: lib/profileaction.php:109 lib/profileaction.php:192 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:194 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "הרשמות" @@ -6042,25 +6115,25 @@ msgstr "הרשמות" msgid "All subscriptions" msgstr "כל המנויים" -#: lib/profileaction.php:140 lib/profileaction.php:201 lib/subgroupnav.php:90 +#: lib/profileaction.php:142 lib/profileaction.php:203 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "מנויים" -#: lib/profileaction.php:157 +#: lib/profileaction.php:159 #, fuzzy msgid "All subscribers" msgstr "מנויים" -#: lib/profileaction.php:178 +#: lib/profileaction.php:180 #, fuzzy msgid "User ID" msgstr "מתשמש" -#: lib/profileaction.php:183 +#: lib/profileaction.php:185 msgid "Member since" msgstr "חבר מאז" -#: lib/profileaction.php:245 +#: lib/profileaction.php:247 msgid "All groups" msgstr "" @@ -6104,7 +6177,12 @@ msgstr "אין הודעה כזו." msgid "Repeat this notice" msgstr "אין הודעה כזו." -#: lib/router.php:668 +#: lib/revokeroleform.php:91 +#, fuzzy, php-format +msgid "Revoke the \"%s\" role from this user" +msgstr "אין משתמש כזה." + +#: lib/router.php:671 msgid "No single user defined for single-user mode." msgstr "" @@ -6269,47 +6347,62 @@ msgstr "הודעה חדשה" msgid "Moderate" msgstr "" -#: lib/util.php:1013 +#: lib/userprofile.php:352 +#, fuzzy +msgid "User role" +msgstr "למשתמש אין פרופיל." + +#: lib/userprofile.php:354 +msgctxt "role" +msgid "Administrator" +msgstr "" + +#: lib/userprofile.php:355 +msgctxt "role" +msgid "Moderator" +msgstr "" + +#: lib/util.php:1015 msgid "a few seconds ago" msgstr "לפני מספר שניות" -#: lib/util.php:1015 +#: lib/util.php:1017 msgid "about a minute ago" msgstr "לפני כדקה" -#: lib/util.php:1017 +#: lib/util.php:1019 #, php-format msgid "about %d minutes ago" msgstr "לפני כ-%d דקות" -#: lib/util.php:1019 +#: lib/util.php:1021 msgid "about an hour ago" msgstr "לפני כשעה" -#: lib/util.php:1021 +#: lib/util.php:1023 #, php-format msgid "about %d hours ago" msgstr "לפני כ-%d שעות" -#: lib/util.php:1023 +#: lib/util.php:1025 msgid "about a day ago" msgstr "לפני כיום" -#: lib/util.php:1025 +#: lib/util.php:1027 #, php-format msgid "about %d days ago" msgstr "לפני כ-%d ימים" -#: lib/util.php:1027 +#: lib/util.php:1029 msgid "about a month ago" msgstr "לפני כחודש" -#: lib/util.php:1029 +#: lib/util.php:1031 #, php-format msgid "about %d months ago" msgstr "לפני כ-%d חודשים" -#: lib/util.php:1031 +#: lib/util.php:1033 msgid "about a year ago" msgstr "לפני כשנה" diff --git a/locale/hsb/LC_MESSAGES/statusnet.po b/locale/hsb/LC_MESSAGES/statusnet.po index f46e7357ad..b4a6ec7a8d 100644 --- a/locale/hsb/LC_MESSAGES/statusnet.po +++ b/locale/hsb/LC_MESSAGES/statusnet.po @@ -9,12 +9,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-02 21:02+0000\n" -"PO-Revision-Date: 2010-03-02 21:02:57+0000\n" +"POT-Creation-Date: 2010-03-04 18:55+0000\n" +"PO-Revision-Date: 2010-03-04 18:56:34+0000\n" "Language-Team: Dutch\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: hsb\n" "X-Message-Group: out-statusnet\n" @@ -22,7 +22,8 @@ msgstr "" "n%100==4) ? 2 : 3)\n" #. TRANS: Page title -#: actions/accessadminpanel.php:55 +#. TRANS: Menu item for site administration +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 msgid "Access" msgstr "Přistup" @@ -122,7 +123,7 @@ msgstr "%1$s a přećeljo, strona %2$d" #. TRANS: Page title. %1$s is user nickname #. TRANS: H1 text. %1$s is user nickname -#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -177,7 +178,7 @@ msgid "" msgstr "" #. TRANS: H1 text -#: actions/all.php:174 +#: actions/all.php:178 msgid "You and friends" msgstr "Ty a přećeljo" @@ -204,11 +205,11 @@ msgstr "" #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 -#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 +#: actions/apitimelinegroup.php:160 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:148 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 msgid "API method not found." msgstr "API-metoda njenamakana." @@ -563,7 +564,7 @@ msgid "" "give access to your %4$s account to third parties you trust." msgstr "" -#: actions/apioauthauthorize.php:310 +#: actions/apioauthauthorize.php:310 lib/action.php:438 msgid "Account" msgstr "Konto" @@ -650,18 +651,6 @@ msgstr "" msgid "%1$s updates favorited by %2$s / %2$s." msgstr "" -#: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:138 actions/userrss.php:90 -#, php-format -msgid "%s timeline" -msgstr "" - -#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 -#: actions/userrss.php:92 -#, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "" - #: actions/apitimelinementions.php:117 #, php-format msgid "%1$s / Updates mentioning %2$s" @@ -672,12 +661,12 @@ msgstr "" msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "" -#: actions/apitimelinepublic.php:111 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "" -#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "" @@ -921,7 +910,7 @@ msgid "Conversation" msgstr "Konwersacija" #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:216 lib/searchgroupnav.php:82 +#: lib/profileaction.php:218 lib/searchgroupnav.php:82 msgid "Notices" msgstr "Zdźělenki" @@ -942,7 +931,7 @@ msgstr "Njejsy wobsedźer tuteje aplikacije." #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1228 +#: lib/action.php:1217 msgid "There was a problem with your session token." msgstr "" @@ -1133,8 +1122,9 @@ msgstr "Na standard wróćo stajić" #: actions/designadminpanel.php:586 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 +#: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:208 #: actions/tagother.php:154 actions/useradminpanel.php:294 #: lib/applicationeditform.php:333 lib/applicationeditform.php:334 #: lib/designsettings.php:256 lib/groupeditform.php:202 @@ -1252,7 +1242,7 @@ msgstr "wopisanje je předołho (maks. %d znamješkow)." msgid "Could not update group." msgstr "Skupina njeje so dała aktualizować." -#: actions/editgroup.php:264 classes/User_group.php:478 +#: actions/editgroup.php:264 classes/User_group.php:493 msgid "Could not create aliases." msgstr "Aliasy njejsu so dali wutworić." @@ -1372,7 +1362,7 @@ msgid "Cannot normalize that email address" msgstr "" #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:143 +#: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Njepłaćiwa e-mejlowa adresa." @@ -1556,6 +1546,25 @@ msgstr "Dataja njeeksistuje." msgid "Cannot read file." msgstr "Dataja njeda so čitać." +#: actions/grantrole.php:62 actions/revokerole.php:62 +#, fuzzy +msgid "Invalid role." +msgstr "Njepłaćiwa wulkosć." + +#: actions/grantrole.php:66 actions/revokerole.php:66 +msgid "This role is reserved and cannot be set." +msgstr "" + +#: actions/grantrole.php:75 +#, fuzzy +msgid "You cannot grant user roles on this site." +msgstr "Njemóžeš tutomu wužiwarju powěsć pósłać." + +#: actions/grantrole.php:82 +#, fuzzy +msgid "User already has this role." +msgstr "Wužiwar nima profil." + #: actions/groupblock.php:71 actions/groupunblock.php:71 #: actions/makeadmin.php:71 actions/subedit.php:46 #: lib/profileformaction.php:70 @@ -1698,12 +1707,18 @@ msgstr "" msgid "Make this user an admin" msgstr "Tutoho wužiwarja k administratorej činić" +#: actions/grouprss.php:138 actions/userrss.php:90 +#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#, php-format +msgid "%s timeline" +msgstr "" + #: actions/grouprss.php:140 #, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "" -#: actions/groups.php:62 lib/profileaction.php:210 lib/profileaction.php:230 +#: actions/groups.php:62 lib/profileaction.php:212 lib/profileaction.php:232 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" msgstr "Skupiny" @@ -2258,8 +2273,8 @@ msgstr "" msgid "Only " msgstr "Jenož " -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 -#: lib/apiaction.php:1068 lib/apiaction.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1042 +#: lib/apiaction.php:1070 lib/apiaction.php:1179 msgid "Not a supported data format." msgstr "Njeje podpěrany datowy format." @@ -2398,7 +2413,8 @@ msgstr "" msgid "Password saved." msgstr "Hesło składowane." -#: actions/pathsadminpanel.php:59 +#. TRANS: Menu item for site administration +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 msgid "Paths" msgstr "Šćežki" @@ -2518,7 +2534,7 @@ msgstr "Pozadkowy zapis" msgid "SSL" msgstr "SSL" -#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 +#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202 msgid "Never" msgstr "Ženje" @@ -2571,11 +2587,11 @@ msgstr "" msgid "Users self-tagged with %1$s - page %2$d" msgstr "" -#: actions/postnotice.php:84 +#: actions/postnotice.php:95 msgid "Invalid notice content" msgstr "Njepłaćiwy wobsah zdźělenki" -#: actions/postnotice.php:90 +#: actions/postnotice.php:101 #, php-format msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" @@ -2651,7 +2667,7 @@ msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" -#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 +#: actions/profilesettings.php:151 msgid "Language" msgstr "Rěč" @@ -2677,7 +2693,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "Biografija je předołha (maks. %d znamješkow)." -#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:151 msgid "Timezone not selected." msgstr "Časowe pasmo njeje wubrane." @@ -2976,7 +2992,7 @@ msgid "Same as password above. Required." msgstr "Jenake kaž hesło horjeka. Trěbne." #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 msgid "Email" msgstr "E-mejl" @@ -3060,7 +3076,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:368 +#: lib/userprofile.php:394 msgid "Subscribe" msgstr "Abonować" @@ -3156,6 +3172,16 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "" +#: actions/revokerole.php:75 +#, fuzzy +msgid "You cannot revoke user roles on this site." +msgstr "Njemóžeš tutomu wužiwarju powěsć pósłać." + +#: actions/revokerole.php:82 +#, fuzzy +msgid "User doesn't have this role." +msgstr "Wužiwar bjez hodźaceho so profila." + #: actions/rsd.php:146 actions/version.php:157 msgid "StatusNet" msgstr "StatusNet" @@ -3168,7 +3194,9 @@ msgstr "" msgid "User is already sandboxed." msgstr "" +#. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:390 msgid "Sessions" msgstr "Posedźenja" @@ -3193,7 +3221,7 @@ msgstr "" msgid "Turn on debugging output for sessions." msgstr "" -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "Sydłowe nastajenja składować" @@ -3224,8 +3252,8 @@ msgstr "Organizacija" msgid "Description" msgstr "Wopisanje" -#: actions/showapplication.php:192 actions/showgroup.php:437 -#: lib/profileaction.php:174 +#: actions/showapplication.php:192 actions/showgroup.php:438 +#: lib/profileaction.php:176 msgid "Statistics" msgstr "Statistika" @@ -3358,45 +3386,45 @@ msgstr "Aliasy" msgid "Group actions" msgstr "Skupinske akcije" -#: actions/showgroup.php:336 +#: actions/showgroup.php:337 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "" -#: actions/showgroup.php:342 +#: actions/showgroup.php:343 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "" -#: actions/showgroup.php:348 +#: actions/showgroup.php:349 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "" -#: actions/showgroup.php:353 +#: actions/showgroup.php:354 #, php-format msgid "FOAF for %s group" msgstr "" -#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 +#: actions/showgroup.php:390 actions/showgroup.php:447 lib/groupnav.php:91 msgid "Members" msgstr "Čłonojo" -#: actions/showgroup.php:394 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 +#: actions/showgroup.php:395 lib/profileaction.php:117 +#: lib/profileaction.php:150 lib/profileaction.php:238 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(Žadyn)" -#: actions/showgroup.php:400 +#: actions/showgroup.php:401 msgid "All members" msgstr "Wšitcy čłonojo" -#: actions/showgroup.php:440 +#: actions/showgroup.php:441 msgid "Created" msgstr "Wutworjeny" -#: actions/showgroup.php:456 +#: actions/showgroup.php:457 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3406,7 +3434,7 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showgroup.php:462 +#: actions/showgroup.php:463 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3415,7 +3443,7 @@ msgid "" "their life and interests. " msgstr "" -#: actions/showgroup.php:490 +#: actions/showgroup.php:491 msgid "Admins" msgstr "Administratorojo" @@ -3525,146 +3553,137 @@ msgid "User is already silenced." msgstr "" #: actions/siteadminpanel.php:69 -msgid "Basic settings for this StatusNet site." -msgstr "" +#, fuzzy +msgid "Basic settings for this StatusNet site" +msgstr "Designowe nastajenja za tute sydło StatusNet." -#: actions/siteadminpanel.php:132 +#: actions/siteadminpanel.php:133 msgid "Site name must have non-zero length." msgstr "" -#: actions/siteadminpanel.php:140 +#: actions/siteadminpanel.php:141 msgid "You must have a valid contact email address." msgstr "Dyrbiš płaćiwu kontaktowu e-mejlowu adresu měć." -#: actions/siteadminpanel.php:158 +#: actions/siteadminpanel.php:159 #, php-format msgid "Unknown language \"%s\"." msgstr "Njeznata rěč \"%s\"." #: actions/siteadminpanel.php:165 -msgid "Invalid snapshot report URL." -msgstr "" - -#: actions/siteadminpanel.php:171 -msgid "Invalid snapshot run value." -msgstr "" - -#: actions/siteadminpanel.php:177 -msgid "Snapshot frequency must be a number." -msgstr "" - -#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "" -#: actions/siteadminpanel.php:189 +#: actions/siteadminpanel.php:171 msgid "Dupe limit must 1 or more seconds." msgstr "" -#: actions/siteadminpanel.php:239 +#: actions/siteadminpanel.php:221 msgid "General" msgstr "Powšitkowny" -#: actions/siteadminpanel.php:242 +#: actions/siteadminpanel.php:224 msgid "Site name" msgstr "Sydłowe mjeno" -#: actions/siteadminpanel.php:243 +#: actions/siteadminpanel.php:225 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "" -#: actions/siteadminpanel.php:247 +#: actions/siteadminpanel.php:229 msgid "Brought by" msgstr "" -#: actions/siteadminpanel.php:248 +#: actions/siteadminpanel.php:230 msgid "Text used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:252 +#: actions/siteadminpanel.php:234 msgid "Brought by URL" msgstr "" -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:235 msgid "URL used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:239 msgid "Contact email address for your site" msgstr "" -#: actions/siteadminpanel.php:263 +#: actions/siteadminpanel.php:245 msgid "Local" msgstr "Lokalny" -#: actions/siteadminpanel.php:274 +#: actions/siteadminpanel.php:256 msgid "Default timezone" msgstr "Standardne časowe pasmo" -#: actions/siteadminpanel.php:275 +#: actions/siteadminpanel.php:257 msgid "Default timezone for the site; usually UTC." msgstr "" -#: actions/siteadminpanel.php:281 -msgid "Default site language" +#: actions/siteadminpanel.php:262 +#, fuzzy +msgid "Default language" msgstr "Standardna sydłowa rěč" -#: actions/siteadminpanel.php:289 -msgid "Snapshots" +#: actions/siteadminpanel.php:263 +msgid "Site language when autodetection from browser settings is not available" msgstr "" -#: actions/siteadminpanel.php:292 -msgid "Randomly during Web hit" -msgstr "" - -#: actions/siteadminpanel.php:293 -msgid "In a scheduled job" -msgstr "" - -#: actions/siteadminpanel.php:295 -msgid "Data snapshots" -msgstr "" - -#: actions/siteadminpanel.php:296 -msgid "When to send statistical data to status.net servers" -msgstr "" - -#: actions/siteadminpanel.php:301 -msgid "Frequency" -msgstr "Frekwenca" - -#: actions/siteadminpanel.php:302 -msgid "Snapshots will be sent once every N web hits" -msgstr "" - -#: actions/siteadminpanel.php:307 -msgid "Report URL" -msgstr "" - -#: actions/siteadminpanel.php:308 -msgid "Snapshots will be sent to this URL" -msgstr "" - -#: actions/siteadminpanel.php:315 +#: actions/siteadminpanel.php:271 msgid "Limits" msgstr "Limity" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Text limit" msgstr "Tekstowy limit" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Maximum number of characters for notices." msgstr "Maksimalna ličba znamješkow za zdźělenki." -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "Dupe limit" msgstr "" -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" +#: actions/sitenoticeadminpanel.php:56 +#, fuzzy +msgid "Site Notice" +msgstr "Zdźělenki" + +#: actions/sitenoticeadminpanel.php:67 +#, fuzzy +msgid "Edit site-wide message" +msgstr "Nowa powěsć" + +#: actions/sitenoticeadminpanel.php:103 +#, fuzzy +msgid "Unable to save site notice." +msgstr "Wužiwar nima poslednju powěsć" + +#: actions/sitenoticeadminpanel.php:113 +msgid "Max length for the site-wide notice is 255 chars" +msgstr "" + +#: actions/sitenoticeadminpanel.php:176 +#, fuzzy +msgid "Site notice text" +msgstr "Njepłaćiwy wobsah zdźělenki" + +#: actions/sitenoticeadminpanel.php:178 +msgid "Site-wide notice text (255 chars max; HTML okay)" +msgstr "" + +#: actions/sitenoticeadminpanel.php:198 +#, fuzzy +msgid "Save site notice" +msgstr "Sydłowe nastajenja składować" + #: actions/smssettings.php:58 msgid "SMS settings" msgstr "SMS-nastajenja" @@ -3757,6 +3776,66 @@ msgstr "" msgid "No code entered" msgstr "Žadyn kod zapodaty" +#. TRANS: Menu item for site administration +#: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 +#: lib/adminpanelaction.php:406 +msgid "Snapshots" +msgstr "" + +#: actions/snapshotadminpanel.php:65 +#, fuzzy +msgid "Manage snapshot configuration" +msgstr "SMS-wobkrućenje" + +#: actions/snapshotadminpanel.php:127 +msgid "Invalid snapshot run value." +msgstr "" + +#: actions/snapshotadminpanel.php:133 +msgid "Snapshot frequency must be a number." +msgstr "" + +#: actions/snapshotadminpanel.php:144 +msgid "Invalid snapshot report URL." +msgstr "" + +#: actions/snapshotadminpanel.php:200 +msgid "Randomly during Web hit" +msgstr "" + +#: actions/snapshotadminpanel.php:201 +msgid "In a scheduled job" +msgstr "" + +#: actions/snapshotadminpanel.php:206 +msgid "Data snapshots" +msgstr "" + +#: actions/snapshotadminpanel.php:208 +msgid "When to send statistical data to status.net servers" +msgstr "" + +#: actions/snapshotadminpanel.php:217 +msgid "Frequency" +msgstr "Frekwenca" + +#: actions/snapshotadminpanel.php:218 +msgid "Snapshots will be sent once every N web hits" +msgstr "" + +#: actions/snapshotadminpanel.php:226 +msgid "Report URL" +msgstr "" + +#: actions/snapshotadminpanel.php:227 +msgid "Snapshots will be sent to this URL" +msgstr "" + +#: actions/snapshotadminpanel.php:248 +#, fuzzy +msgid "Save snapshot settings" +msgstr "Sydłowe nastajenja składować" + #: actions/subedit.php:70 msgid "You are not subscribed to that profile." msgstr "Njejsy tón profil abonował." @@ -3952,7 +4031,7 @@ msgstr "" msgid "Unsubscribed" msgstr "Wotskazany" -#: actions/updateprofile.php:62 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -4143,16 +4222,22 @@ msgstr "%1$s skupinskich čłonow, strona %2$d" msgid "Search for more groups" msgstr "" -#: actions/usergroups.php:153 +#: actions/usergroups.php:157 #, php-format msgid "%s is not a member of any group." msgstr "" -#: actions/usergroups.php:158 +#: actions/usergroups.php:162 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" +#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: lib/atomusernoticefeed.php:72 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "" + #: actions/version.php:73 #, php-format msgid "StatusNet %s" @@ -4196,7 +4281,7 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:196 lib/action.php:778 +#: actions/version.php:196 lib/action.php:767 msgid "Version" msgstr "Wersija" @@ -4260,38 +4345,38 @@ msgstr "" msgid "DB error inserting hashtag: %s" msgstr "" -#: classes/Notice.php:239 +#: classes/Notice.php:241 msgid "Problem saving notice. Too long." msgstr "" -#: classes/Notice.php:243 +#: classes/Notice.php:245 msgid "Problem saving notice. Unknown user." msgstr "" -#: classes/Notice.php:248 +#: classes/Notice.php:250 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: classes/Notice.php:254 +#: classes/Notice.php:256 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." msgstr "" -#: classes/Notice.php:260 +#: classes/Notice.php:262 msgid "You are banned from posting notices on this site." msgstr "" -#: classes/Notice.php:326 classes/Notice.php:352 +#: classes/Notice.php:328 classes/Notice.php:354 msgid "Problem saving notice." msgstr "" -#: classes/Notice.php:911 +#: classes/Notice.php:927 msgid "Problem saving group inbox." msgstr "" -#: classes/Notice.php:1442 +#: classes/Notice.php:1459 #, php-format msgid "RT @%1$s %2$s" msgstr "" @@ -4316,7 +4401,12 @@ msgstr "Njeje abonowany!" msgid "Couldn't delete self-subscription." msgstr "Sebjeabonement njeje so dał zničić." -#: classes/Subscription.php:179 lib/subs.php:69 +#: classes/Subscription.php:190 +#, fuzzy +msgid "Couldn't delete subscription OMB token." +msgstr "Abonoment njeje so dał zničić." + +#: classes/Subscription.php:201 lib/subs.php:69 msgid "Couldn't delete subscription." msgstr "Abonoment njeje so dał zničić." @@ -4325,20 +4415,20 @@ msgstr "Abonoment njeje so dał zničić." msgid "Welcome to %1$s, @%2$s!" msgstr "" -#: classes/User_group.php:462 +#: classes/User_group.php:477 msgid "Could not create group." msgstr "" -#: classes/User_group.php:471 +#: classes/User_group.php:486 #, fuzzy msgid "Could not set group URI." msgstr "Skupina njeje so dała aktualizować." -#: classes/User_group.php:492 +#: classes/User_group.php:507 msgid "Could not set group membership." msgstr "" -#: classes/User_group.php:506 +#: classes/User_group.php:521 #, fuzzy msgid "Could not save local group info." msgstr "Profil njeje so składować dał." @@ -4380,63 +4470,56 @@ msgstr "%1$s - %2$s" msgid "Untitled page" msgstr "Strona bjez titula" -#: lib/action.php:433 +#: lib/action.php:424 msgid "Primary site navigation" msgstr "" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:439 +#: lib/action.php:430 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:442 +#: lib/action.php:433 #, fuzzy msgctxt "MENU" msgid "Personal" msgstr "Wosobinski" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:444 +#: lib/action.php:435 #, fuzzy msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Změń swoje hesło." -#: lib/action.php:447 -#, fuzzy -msgctxt "MENU" -msgid "Account" -msgstr "Konto" - #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:450 +#: lib/action.php:440 #, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Zwiski" -#: lib/action.php:453 +#: lib/action.php:443 #, fuzzy -msgctxt "MENU" msgid "Connect" msgstr "Zwjazać" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:457 +#: lib/action.php:446 #, fuzzy msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "SMS-wobkrućenje" -#: lib/action.php:460 +#: lib/action.php:449 #, fuzzy msgctxt "MENU" msgid "Admin" msgstr "Administrator" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:464 +#: lib/action.php:453 #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" @@ -4444,143 +4527,144 @@ msgstr "" "Wužij tutón formular, zo by swojich přećelow a kolegow přeprosył, zo bychu " "tutu słužbu wužiwali." -#: lib/action.php:467 +#: lib/action.php:456 #, fuzzy msgctxt "MENU" msgid "Invite" msgstr "Přeprosyć" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:473 +#: lib/action.php:462 #, fuzzy msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Šat za sydło." -#: lib/action.php:476 +#: lib/action.php:465 #, fuzzy msgctxt "MENU" msgid "Logout" msgstr "Logo" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:481 +#: lib/action.php:470 #, fuzzy msgctxt "TOOLTIP" msgid "Create an account" msgstr "Konto załožić" -#: lib/action.php:484 +#: lib/action.php:473 #, fuzzy msgctxt "MENU" msgid "Register" msgstr "Registrować" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:487 +#: lib/action.php:476 #, fuzzy msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Při sydle přizjewić" -#: lib/action.php:490 +#: lib/action.php:479 #, fuzzy msgctxt "MENU" msgid "Login" msgstr "Přizjewić" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:493 +#: lib/action.php:482 #, fuzzy msgctxt "TOOLTIP" msgid "Help me!" msgstr "Pomhaj!" -#: lib/action.php:496 +#: lib/action.php:485 #, fuzzy msgctxt "MENU" msgid "Help" msgstr "Pomoc" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:499 +#: lib/action.php:488 #, fuzzy msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Za ludźimi abo tekstom pytać" -#: lib/action.php:502 +#: lib/action.php:491 #, fuzzy msgctxt "MENU" msgid "Search" msgstr "Pytać" #. TRANS: DT element for site notice. String is hidden in default CSS. -#: lib/action.php:524 +#. TRANS: Menu item for site administration +#: lib/action.php:513 lib/adminpanelaction.php:398 msgid "Site notice" msgstr "" -#: lib/action.php:590 +#: lib/action.php:579 msgid "Local views" msgstr "" -#: lib/action.php:656 +#: lib/action.php:645 msgid "Page notice" msgstr "" -#: lib/action.php:758 +#: lib/action.php:747 msgid "Secondary site navigation" msgstr "" -#: lib/action.php:763 +#: lib/action.php:752 msgid "Help" msgstr "Pomoc" -#: lib/action.php:765 +#: lib/action.php:754 msgid "About" msgstr "Wo" -#: lib/action.php:767 +#: lib/action.php:756 msgid "FAQ" msgstr "Huste prašenja" -#: lib/action.php:771 +#: lib/action.php:760 msgid "TOS" msgstr "" -#: lib/action.php:774 +#: lib/action.php:763 msgid "Privacy" msgstr "Priwatnosć" -#: lib/action.php:776 +#: lib/action.php:765 msgid "Source" msgstr "Žórło" -#: lib/action.php:780 +#: lib/action.php:769 msgid "Contact" msgstr "Kontakt" -#: lib/action.php:782 +#: lib/action.php:771 msgid "Badge" msgstr "" -#: lib/action.php:810 +#: lib/action.php:799 msgid "StatusNet software license" msgstr "" -#: lib/action.php:813 +#: lib/action.php:802 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." "broughtby%%](%%site.broughtbyurl%%). " msgstr "" -#: lib/action.php:815 +#: lib/action.php:804 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "" -#: lib/action.php:817 +#: lib/action.php:806 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4588,53 +4672,53 @@ msgid "" "org/licensing/licenses/agpl-3.0.html)." msgstr "" -#: lib/action.php:832 +#: lib/action.php:821 msgid "Site content license" msgstr "" -#: lib/action.php:837 +#: lib/action.php:826 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:842 +#: lib/action.php:831 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:845 +#: lib/action.php:834 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" -#: lib/action.php:858 +#: lib/action.php:847 msgid "All " msgstr "" -#: lib/action.php:864 +#: lib/action.php:853 msgid "license." msgstr "" -#: lib/action.php:1163 +#: lib/action.php:1152 msgid "Pagination" msgstr "" -#: lib/action.php:1172 +#: lib/action.php:1161 msgid "After" msgstr "" -#: lib/action.php:1180 +#: lib/action.php:1169 msgid "Before" msgstr "" -#: lib/activity.php:449 +#: lib/activity.php:453 msgid "Can't handle remote content yet." msgstr "" -#: lib/activity.php:477 +#: lib/activity.php:481 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activity.php:481 +#: lib/activity.php:485 msgid "Can't handle embedded Base64 content yet." msgstr "" @@ -4649,94 +4733,83 @@ msgid "Changes to that panel are not allowed." msgstr "Změny na tutym woknje njejsu dowolene." #. TRANS: Client error message -#: lib/adminpanelaction.php:211 +#: lib/adminpanelaction.php:229 msgid "showForm() not implemented." msgstr "" #. TRANS: Client error message -#: lib/adminpanelaction.php:241 +#: lib/adminpanelaction.php:259 msgid "saveSettings() not implemented." msgstr "" #. TRANS: Client error message -#: lib/adminpanelaction.php:265 +#: lib/adminpanelaction.php:283 msgid "Unable to delete design setting." msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:330 +#: lib/adminpanelaction.php:348 msgid "Basic site configuration" msgstr "" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:332 +#: lib/adminpanelaction.php:350 #, fuzzy msgctxt "MENU" msgid "Site" msgstr "Sydło" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:338 +#: lib/adminpanelaction.php:356 msgid "Design configuration" msgstr "" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:340 +#: lib/adminpanelaction.php:358 #, fuzzy msgctxt "MENU" msgid "Design" msgstr "Design" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:346 +#: lib/adminpanelaction.php:364 #, fuzzy msgid "User configuration" msgstr "SMS-wobkrućenje" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:348 -#, fuzzy -msgctxt "MENU" +#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 msgid "User" msgstr "Wužiwar" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:354 +#: lib/adminpanelaction.php:372 #, fuzzy msgid "Access configuration" msgstr "SMS-wobkrućenje" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:356 -#, fuzzy -msgctxt "MENU" -msgid "Access" -msgstr "Přistup" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:362 +#: lib/adminpanelaction.php:380 msgid "Paths configuration" msgstr "" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:364 -#, fuzzy -msgctxt "MENU" -msgid "Paths" -msgstr "Šćežki" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:370 +#: lib/adminpanelaction.php:388 #, fuzzy msgid "Sessions configuration" msgstr "SMS-wobkrućenje" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:372 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:396 #, fuzzy -msgctxt "MENU" -msgid "Sessions" -msgstr "Posedźenja" +msgid "Edit site notice" +msgstr "Dwójna zdźělenka" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:404 +#, fuzzy +msgid "Snapshots configuration" +msgstr "SMS-wobkrućenje" #: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." @@ -5224,6 +5297,11 @@ msgstr "" msgid "Go" msgstr "" +#: lib/grantroleform.php:91 +#, php-format +msgid "Grant this user the \"%s\" role" +msgstr "" + #: lib/groupeditform.php:163 msgid "URL of the homepage or blog of the group or topic" msgstr "" @@ -5748,10 +5826,6 @@ msgstr "Wotmołwy" msgid "Favorites" msgstr "Fawority" -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "Wužiwar" - #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "" @@ -5777,7 +5851,7 @@ msgstr "" msgid "Unknown" msgstr "Njeznaty" -#: lib/profileaction.php:109 lib/profileaction.php:192 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:194 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Abonementy" @@ -5785,23 +5859,23 @@ msgstr "Abonementy" msgid "All subscriptions" msgstr "Wšě abonementy" -#: lib/profileaction.php:140 lib/profileaction.php:201 lib/subgroupnav.php:90 +#: lib/profileaction.php:142 lib/profileaction.php:203 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Abonenća" -#: lib/profileaction.php:157 +#: lib/profileaction.php:159 msgid "All subscribers" msgstr "Wšitcy abonenća" -#: lib/profileaction.php:178 +#: lib/profileaction.php:180 msgid "User ID" msgstr "Wužiwarski ID" -#: lib/profileaction.php:183 +#: lib/profileaction.php:185 msgid "Member since" msgstr "Čłon wot" -#: lib/profileaction.php:245 +#: lib/profileaction.php:247 msgid "All groups" msgstr "Wšě skupiny" @@ -5841,7 +5915,12 @@ msgstr "Tutu zdźělenku wospjetować?" msgid "Repeat this notice" msgstr "Tutu zdźělenku wospjetować" -#: lib/router.php:668 +#: lib/revokeroleform.php:91 +#, fuzzy, php-format +msgid "Revoke the \"%s\" role from this user" +msgstr "Tutoho wužiwarja za tutu skupinu blokować" + +#: lib/router.php:671 msgid "No single user defined for single-user mode." msgstr "" @@ -5995,47 +6074,63 @@ msgstr "Powěsć" msgid "Moderate" msgstr "" -#: lib/util.php:1013 +#: lib/userprofile.php:352 +#, fuzzy +msgid "User role" +msgstr "Wužiwarski profil" + +#: lib/userprofile.php:354 +#, fuzzy +msgctxt "role" +msgid "Administrator" +msgstr "Administratorojo" + +#: lib/userprofile.php:355 +msgctxt "role" +msgid "Moderator" +msgstr "" + +#: lib/util.php:1015 msgid "a few seconds ago" msgstr "před něšto sekundami" -#: lib/util.php:1015 +#: lib/util.php:1017 msgid "about a minute ago" msgstr "před něhdźe jednej mjeńšinu" -#: lib/util.php:1017 +#: lib/util.php:1019 #, php-format msgid "about %d minutes ago" msgstr "před %d mjeńšinami" -#: lib/util.php:1019 +#: lib/util.php:1021 msgid "about an hour ago" msgstr "před něhdźe jednej hodźinu" -#: lib/util.php:1021 +#: lib/util.php:1023 #, php-format msgid "about %d hours ago" msgstr "před něhdźe %d hodźinami" -#: lib/util.php:1023 +#: lib/util.php:1025 msgid "about a day ago" msgstr "před něhdźe jednym dnjom" -#: lib/util.php:1025 +#: lib/util.php:1027 #, php-format msgid "about %d days ago" msgstr "před něhdźe %d dnjemi" -#: lib/util.php:1027 +#: lib/util.php:1029 msgid "about a month ago" msgstr "před něhdźe jednym měsacom" -#: lib/util.php:1029 +#: lib/util.php:1031 #, php-format msgid "about %d months ago" msgstr "před něhdźe %d měsacami" -#: lib/util.php:1031 +#: lib/util.php:1033 msgid "about a year ago" msgstr "před něhdźe jednym lětom" diff --git a/locale/ia/LC_MESSAGES/statusnet.po b/locale/ia/LC_MESSAGES/statusnet.po index cc6af7f0f7..8f39766738 100644 --- a/locale/ia/LC_MESSAGES/statusnet.po +++ b/locale/ia/LC_MESSAGES/statusnet.po @@ -8,19 +8,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-02 21:02+0000\n" -"PO-Revision-Date: 2010-03-02 21:03:00+0000\n" +"POT-Creation-Date: 2010-03-04 18:55+0000\n" +"PO-Revision-Date: 2010-03-04 18:56:37+0000\n" "Language-Team: Interlingua\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. TRANS: Page title -#: actions/accessadminpanel.php:55 +#. TRANS: Menu item for site administration +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 msgid "Access" msgstr "Accesso" @@ -117,7 +118,7 @@ msgstr "%1$s e amicos, pagina %2$d" #. TRANS: Page title. %1$s is user nickname #. TRANS: H1 text. %1$s is user nickname -#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -180,7 +181,7 @@ msgstr "" "pulsata a %s o publicar un message a su attention." #. TRANS: H1 text -#: actions/all.php:174 +#: actions/all.php:178 msgid "You and friends" msgstr "Tu e amicos" @@ -207,11 +208,11 @@ msgstr "Actualisationes de %1$s e su amicos in %2$s!" #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 -#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 +#: actions/apitimelinegroup.php:160 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:148 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 msgid "API method not found." msgstr "Methodo API non trovate." @@ -575,7 +576,7 @@ msgstr "" "%3$s le datos de tu conto de %4$s. Tu debe solmente dar " "accesso a tu conto de %4$s a tertie personas in le quales tu ha confidentia." -#: actions/apioauthauthorize.php:310 +#: actions/apioauthauthorize.php:310 lib/action.php:438 msgid "Account" msgstr "Conto" @@ -665,18 +666,6 @@ msgstr "%1$s / Favorites de %2$s" msgid "%1$s updates favorited by %2$s / %2$s." msgstr "%1$s actualisationes favoritisate per %2$s / %2$s." -#: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:138 actions/userrss.php:90 -#, php-format -msgid "%s timeline" -msgstr "Chronologia de %s" - -#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 -#: actions/userrss.php:92 -#, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "Actualisationes de %1$s in %2$s!" - #: actions/apitimelinementions.php:117 #, php-format msgid "%1$s / Updates mentioning %2$s" @@ -688,12 +677,12 @@ msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "" "Actualisationes de %1$s que responde al actualisationes de %2$s / %3$s." -#: actions/apitimelinepublic.php:111 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "Chronologia public de %s" -#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "Actualisationes de totes in %s!" @@ -940,7 +929,7 @@ msgid "Conversation" msgstr "Conversation" #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:216 lib/searchgroupnav.php:82 +#: lib/profileaction.php:218 lib/searchgroupnav.php:82 msgid "Notices" msgstr "Notas" @@ -959,7 +948,7 @@ msgstr "Tu non es le proprietario de iste application." #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1228 +#: lib/action.php:1217 msgid "There was a problem with your session token." msgstr "Il habeva un problema con tu indicio de session." @@ -1155,8 +1144,9 @@ msgstr "Revenir al predefinitiones" #: actions/designadminpanel.php:586 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 +#: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:208 #: actions/tagother.php:154 actions/useradminpanel.php:294 #: lib/applicationeditform.php:333 lib/applicationeditform.php:334 #: lib/designsettings.php:256 lib/groupeditform.php:202 @@ -1272,7 +1262,7 @@ msgstr "description es troppo longe (max %d chars)." msgid "Could not update group." msgstr "Non poteva actualisar gruppo." -#: actions/editgroup.php:264 classes/User_group.php:478 +#: actions/editgroup.php:264 classes/User_group.php:493 msgid "Could not create aliases." msgstr "Non poteva crear aliases." @@ -1395,7 +1385,7 @@ msgid "Cannot normalize that email address" msgstr "Non pote normalisar iste adresse de e-mail" #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:143 +#: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Adresse de e-mail invalide." @@ -1587,6 +1577,25 @@ msgstr "File non existe." msgid "Cannot read file." msgstr "Non pote leger file." +#: actions/grantrole.php:62 actions/revokerole.php:62 +#, fuzzy +msgid "Invalid role." +msgstr "Indicio invalide." + +#: actions/grantrole.php:66 actions/revokerole.php:66 +msgid "This role is reserved and cannot be set." +msgstr "" + +#: actions/grantrole.php:75 +#, fuzzy +msgid "You cannot grant user roles on this site." +msgstr "Tu non pote mitter usatores in le cassa de sablo in iste sito." + +#: actions/grantrole.php:82 +#, fuzzy +msgid "User already has this role." +msgstr "Usator es ja silentiate." + #: actions/groupblock.php:71 actions/groupunblock.php:71 #: actions/makeadmin.php:71 actions/subedit.php:46 #: lib/profileformaction.php:70 @@ -1734,12 +1743,18 @@ msgstr "Facer administrator" msgid "Make this user an admin" msgstr "Facer iste usator administrator" +#: actions/grouprss.php:138 actions/userrss.php:90 +#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#, php-format +msgid "%s timeline" +msgstr "Chronologia de %s" + #: actions/grouprss.php:140 #, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Actualisationes de membros de %1$s in %2$s!" -#: actions/groups.php:62 lib/profileaction.php:210 lib/profileaction.php:230 +#: actions/groups.php:62 lib/profileaction.php:212 lib/profileaction.php:232 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" msgstr "Gruppos" @@ -2366,8 +2381,8 @@ msgstr "typo de contento " msgid "Only " msgstr "Solmente " -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 -#: lib/apiaction.php:1068 lib/apiaction.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1042 +#: lib/apiaction.php:1070 lib/apiaction.php:1179 msgid "Not a supported data format." msgstr "Formato de datos non supportate." @@ -2507,7 +2522,8 @@ msgstr "Non pote salveguardar le nove contrasigno." msgid "Password saved." msgstr "Contrasigno salveguardate." -#: actions/pathsadminpanel.php:59 +#. TRANS: Menu item for site administration +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 msgid "Paths" msgstr "Camminos" @@ -2627,7 +2643,7 @@ msgstr "Directorio al fundos" msgid "SSL" msgstr "SSL" -#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 +#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202 msgid "Never" msgstr "Nunquam" @@ -2682,11 +2698,11 @@ msgstr "Etiquetta de personas invalide: %s" msgid "Users self-tagged with %1$s - page %2$d" msgstr "Usatores auto-etiquettate con %1$s - pagina %2$d" -#: actions/postnotice.php:84 +#: actions/postnotice.php:95 msgid "Invalid notice content" msgstr "Le contento del nota es invalide" -#: actions/postnotice.php:90 +#: actions/postnotice.php:101 #, php-format msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" @@ -2768,7 +2784,7 @@ msgstr "" "Etiquettas pro te (litteras, numeros, -, ., e _), separate per commas o " "spatios" -#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 +#: actions/profilesettings.php:151 msgid "Language" msgstr "Lingua" @@ -2795,7 +2811,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "Bio es troppo longe (max %d chars)." -#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:151 msgid "Timezone not selected." msgstr "Fuso horari non seligite." @@ -3112,7 +3128,7 @@ msgid "Same as password above. Required." msgstr "Identic al contrasigno hic supra. Requirite." #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 msgid "Email" msgstr "E-mail" @@ -3219,7 +3235,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "URL de tu profilo in un altere servicio de microblogging compatibile" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:368 +#: lib/userprofile.php:394 msgid "Subscribe" msgstr "Subscriber" @@ -3323,6 +3339,16 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "Responsas a %1$s in %2$s!" +#: actions/revokerole.php:75 +#, fuzzy +msgid "You cannot revoke user roles on this site." +msgstr "Tu non pote silentiar usatores in iste sito." + +#: actions/revokerole.php:82 +#, fuzzy +msgid "User doesn't have this role." +msgstr "Usator sin profilo correspondente" + #: actions/rsd.php:146 actions/version.php:157 msgid "StatusNet" msgstr "StatusNet" @@ -3335,7 +3361,9 @@ msgstr "Tu non pote mitter usatores in le cassa de sablo in iste sito." msgid "User is already sandboxed." msgstr "Usator es ja in cassa de sablo." +#. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:390 msgid "Sessions" msgstr "Sessiones" @@ -3359,7 +3387,7 @@ msgstr "Cercar defectos de session" msgid "Turn on debugging output for sessions." msgstr "Producer informationes technic pro cercar defectos in sessiones." -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "Salveguardar configurationes del sito" @@ -3390,8 +3418,8 @@ msgstr "Organisation" msgid "Description" msgstr "Description" -#: actions/showapplication.php:192 actions/showgroup.php:437 -#: lib/profileaction.php:174 +#: actions/showapplication.php:192 actions/showgroup.php:438 +#: lib/profileaction.php:176 msgid "Statistics" msgstr "Statisticas" @@ -3533,45 +3561,45 @@ msgstr "Aliases" msgid "Group actions" msgstr "Actiones del gruppo" -#: actions/showgroup.php:336 +#: actions/showgroup.php:337 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Syndication de notas pro le gruppo %s (RSS 1.0)" -#: actions/showgroup.php:342 +#: actions/showgroup.php:343 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Syndication de notas pro le gruppo %s (RSS 2.0)" -#: actions/showgroup.php:348 +#: actions/showgroup.php:349 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "Syndication de notas pro le gruppo %s (Atom)" -#: actions/showgroup.php:353 +#: actions/showgroup.php:354 #, php-format msgid "FOAF for %s group" msgstr "Amico de un amico pro le gruppo %s" -#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 +#: actions/showgroup.php:390 actions/showgroup.php:447 lib/groupnav.php:91 msgid "Members" msgstr "Membros" -#: actions/showgroup.php:394 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 +#: actions/showgroup.php:395 lib/profileaction.php:117 +#: lib/profileaction.php:150 lib/profileaction.php:238 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(Nulle)" -#: actions/showgroup.php:400 +#: actions/showgroup.php:401 msgid "All members" msgstr "Tote le membros" -#: actions/showgroup.php:440 +#: actions/showgroup.php:441 msgid "Created" msgstr "Create" -#: actions/showgroup.php:456 +#: actions/showgroup.php:457 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3586,7 +3614,7 @@ msgstr "" "lor vita e interesses. [Crea un conto](%%%%action.register%%%%) pro devenir " "parte de iste gruppo e multe alteres! ([Lege plus](%%%%doc.help%%%%))" -#: actions/showgroup.php:462 +#: actions/showgroup.php:463 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3599,7 +3627,7 @@ msgstr "" "[StatusNet](http://status.net/). Su membros condivide breve messages super " "lor vita e interesses. " -#: actions/showgroup.php:490 +#: actions/showgroup.php:491 msgid "Admins" msgstr "Administratores" @@ -3722,148 +3750,139 @@ msgid "User is already silenced." msgstr "Usator es ja silentiate." #: actions/siteadminpanel.php:69 -msgid "Basic settings for this StatusNet site." +#, fuzzy +msgid "Basic settings for this StatusNet site" msgstr "Configurationes de base pro iste sito de StatusNet." -#: actions/siteadminpanel.php:132 +#: actions/siteadminpanel.php:133 msgid "Site name must have non-zero length." msgstr "Le longitude del nomine del sito debe esser plus que zero." -#: actions/siteadminpanel.php:140 +#: actions/siteadminpanel.php:141 msgid "You must have a valid contact email address." msgstr "Tu debe haber un valide adresse de e-mail pro contacto." -#: actions/siteadminpanel.php:158 +#: actions/siteadminpanel.php:159 #, php-format msgid "Unknown language \"%s\"." msgstr "Lingua \"%s\" incognite." #: actions/siteadminpanel.php:165 -msgid "Invalid snapshot report URL." -msgstr "Le URL pro reportar instantaneos es invalide." - -#: actions/siteadminpanel.php:171 -msgid "Invalid snapshot run value." -msgstr "Valor de execution de instantaneo invalide." - -#: actions/siteadminpanel.php:177 -msgid "Snapshot frequency must be a number." -msgstr "Le frequentia de instantaneos debe esser un numero." - -#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "Le limite minimal del texto es 140 characteres." -#: actions/siteadminpanel.php:189 +#: actions/siteadminpanel.php:171 msgid "Dupe limit must 1 or more seconds." msgstr "Le limite de duplicatos debe esser 1 o plus secundas." -#: actions/siteadminpanel.php:239 +#: actions/siteadminpanel.php:221 msgid "General" msgstr "General" -#: actions/siteadminpanel.php:242 +#: actions/siteadminpanel.php:224 msgid "Site name" msgstr "Nomine del sito" -#: actions/siteadminpanel.php:243 +#: actions/siteadminpanel.php:225 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "Le nomine de tu sito, como \"Le microblog de TuCompania\"" -#: actions/siteadminpanel.php:247 +#: actions/siteadminpanel.php:229 msgid "Brought by" msgstr "Realisate per" -#: actions/siteadminpanel.php:248 +#: actions/siteadminpanel.php:230 msgid "Text used for credits link in footer of each page" msgstr "Le texto usate pro le ligamine al creditos in le pede de cata pagina" -#: actions/siteadminpanel.php:252 +#: actions/siteadminpanel.php:234 msgid "Brought by URL" msgstr "URL pro \"Realisate per\"" -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:235 msgid "URL used for credits link in footer of each page" msgstr "URL usate pro le ligamine al creditos in le pede de cata pagina" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:239 msgid "Contact email address for your site" msgstr "Le adresse de e-mail de contacto pro tu sito" -#: actions/siteadminpanel.php:263 +#: actions/siteadminpanel.php:245 msgid "Local" msgstr "Local" -#: actions/siteadminpanel.php:274 +#: actions/siteadminpanel.php:256 msgid "Default timezone" msgstr "Fuso horari predefinite" -#: actions/siteadminpanel.php:275 +#: actions/siteadminpanel.php:257 msgid "Default timezone for the site; usually UTC." msgstr "Fuso horari predefinite pro le sito; normalmente UTC." -#: actions/siteadminpanel.php:281 -msgid "Default site language" +#: actions/siteadminpanel.php:262 +#, fuzzy +msgid "Default language" msgstr "Lingua predefinite del sito" -#: actions/siteadminpanel.php:289 -msgid "Snapshots" -msgstr "Instantaneos" +#: actions/siteadminpanel.php:263 +msgid "Site language when autodetection from browser settings is not available" +msgstr "" -#: actions/siteadminpanel.php:292 -msgid "Randomly during Web hit" -msgstr "Aleatorimente durante un accesso web" - -#: actions/siteadminpanel.php:293 -msgid "In a scheduled job" -msgstr "In un processo planificate" - -#: actions/siteadminpanel.php:295 -msgid "Data snapshots" -msgstr "Instantaneos de datos" - -#: actions/siteadminpanel.php:296 -msgid "When to send statistical data to status.net servers" -msgstr "Quando inviar datos statistic al servitores de status.net" - -#: actions/siteadminpanel.php:301 -msgid "Frequency" -msgstr "Frequentia" - -#: actions/siteadminpanel.php:302 -msgid "Snapshots will be sent once every N web hits" -msgstr "Un instantaneo essera inviate a cata N accessos web" - -#: actions/siteadminpanel.php:307 -msgid "Report URL" -msgstr "URL pro reporto" - -#: actions/siteadminpanel.php:308 -msgid "Snapshots will be sent to this URL" -msgstr "Le instantaneos essera inviate a iste URL" - -#: actions/siteadminpanel.php:315 +#: actions/siteadminpanel.php:271 msgid "Limits" msgstr "Limites" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Text limit" msgstr "Limite de texto" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Maximum number of characters for notices." msgstr "Numero maximal de characteres pro notas." -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "Dupe limit" msgstr "Limite de duplicatos" -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" "Quante tempore (in secundas) le usatores debe attender ante de poter " "publicar le mesme cosa de novo." +#: actions/sitenoticeadminpanel.php:56 +#, fuzzy +msgid "Site Notice" +msgstr "Aviso del sito" + +#: actions/sitenoticeadminpanel.php:67 +#, fuzzy +msgid "Edit site-wide message" +msgstr "Nove message" + +#: actions/sitenoticeadminpanel.php:103 +#, fuzzy +msgid "Unable to save site notice." +msgstr "Impossibile salveguardar le configurationes del apparentia." + +#: actions/sitenoticeadminpanel.php:113 +msgid "Max length for the site-wide notice is 255 chars" +msgstr "" + +#: actions/sitenoticeadminpanel.php:176 +#, fuzzy +msgid "Site notice text" +msgstr "Aviso del sito" + +#: actions/sitenoticeadminpanel.php:178 +msgid "Site-wide notice text (255 chars max; HTML okay)" +msgstr "" + +#: actions/sitenoticeadminpanel.php:198 +#, fuzzy +msgid "Save site notice" +msgstr "Aviso del sito" + #: actions/smssettings.php:58 msgid "SMS settings" msgstr "Parametros de SMS" @@ -3963,6 +3982,66 @@ msgstr "" msgid "No code entered" msgstr "Nulle codice entrate" +#. TRANS: Menu item for site administration +#: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 +#: lib/adminpanelaction.php:406 +msgid "Snapshots" +msgstr "Instantaneos" + +#: actions/snapshotadminpanel.php:65 +#, fuzzy +msgid "Manage snapshot configuration" +msgstr "Modificar le configuration del sito" + +#: actions/snapshotadminpanel.php:127 +msgid "Invalid snapshot run value." +msgstr "Valor de execution de instantaneo invalide." + +#: actions/snapshotadminpanel.php:133 +msgid "Snapshot frequency must be a number." +msgstr "Le frequentia de instantaneos debe esser un numero." + +#: actions/snapshotadminpanel.php:144 +msgid "Invalid snapshot report URL." +msgstr "Le URL pro reportar instantaneos es invalide." + +#: actions/snapshotadminpanel.php:200 +msgid "Randomly during Web hit" +msgstr "Aleatorimente durante un accesso web" + +#: actions/snapshotadminpanel.php:201 +msgid "In a scheduled job" +msgstr "In un processo planificate" + +#: actions/snapshotadminpanel.php:206 +msgid "Data snapshots" +msgstr "Instantaneos de datos" + +#: actions/snapshotadminpanel.php:208 +msgid "When to send statistical data to status.net servers" +msgstr "Quando inviar datos statistic al servitores de status.net" + +#: actions/snapshotadminpanel.php:217 +msgid "Frequency" +msgstr "Frequentia" + +#: actions/snapshotadminpanel.php:218 +msgid "Snapshots will be sent once every N web hits" +msgstr "Un instantaneo essera inviate a cata N accessos web" + +#: actions/snapshotadminpanel.php:226 +msgid "Report URL" +msgstr "URL pro reporto" + +#: actions/snapshotadminpanel.php:227 +msgid "Snapshots will be sent to this URL" +msgstr "Le instantaneos essera inviate a iste URL" + +#: actions/snapshotadminpanel.php:248 +#, fuzzy +msgid "Save snapshot settings" +msgstr "Salveguardar configurationes del sito" + #: actions/subedit.php:70 msgid "You are not subscribed to that profile." msgstr "Tu non es subscribite a iste profilo." @@ -4173,7 +4252,7 @@ msgstr "Nulle ID de profilo in requesta." msgid "Unsubscribed" msgstr "Subscription cancellate" -#: actions/updateprofile.php:62 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -4376,17 +4455,23 @@ msgstr "Gruppos %1$s, pagina %2$d" msgid "Search for more groups" msgstr "Cercar altere gruppos" -#: actions/usergroups.php:153 +#: actions/usergroups.php:157 #, php-format msgid "%s is not a member of any group." msgstr "%s non es membro de alcun gruppo." -#: actions/usergroups.php:158 +#: actions/usergroups.php:162 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" "Tenta [cercar gruppos](%%action.groupsearch%%) e facer te membro de illos." +#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: lib/atomusernoticefeed.php:72 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "Actualisationes de %1$s in %2$s!" + #: actions/version.php:73 #, php-format msgid "StatusNet %s" @@ -4442,7 +4527,7 @@ msgstr "" msgid "Plugins" msgstr "Plug-ins" -#: actions/version.php:196 lib/action.php:778 +#: actions/version.php:196 lib/action.php:767 msgid "Version" msgstr "Version" @@ -4508,22 +4593,22 @@ msgstr "Non poteva actualisar message con nove URI." msgid "DB error inserting hashtag: %s" msgstr "Error in base de datos durante insertion del marca (hashtag): %s" -#: classes/Notice.php:239 +#: classes/Notice.php:241 msgid "Problem saving notice. Too long." msgstr "Problema salveguardar nota. Troppo longe." -#: classes/Notice.php:243 +#: classes/Notice.php:245 msgid "Problem saving notice. Unknown user." msgstr "Problema salveguardar nota. Usator incognite." -#: classes/Notice.php:248 +#: classes/Notice.php:250 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" "Troppo de notas troppo rapidemente; face un pausa e publica de novo post " "alcun minutas." -#: classes/Notice.php:254 +#: classes/Notice.php:256 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." @@ -4531,19 +4616,19 @@ msgstr "" "Troppo de messages duplicate troppo rapidemente; face un pausa e publica de " "novo post alcun minutas." -#: classes/Notice.php:260 +#: classes/Notice.php:262 msgid "You are banned from posting notices on this site." msgstr "Il te es prohibite publicar notas in iste sito." -#: classes/Notice.php:326 classes/Notice.php:352 +#: classes/Notice.php:328 classes/Notice.php:354 msgid "Problem saving notice." msgstr "Problema salveguardar nota." -#: classes/Notice.php:911 +#: classes/Notice.php:927 msgid "Problem saving group inbox." msgstr "Problema salveguardar le cassa de entrata del gruppo." -#: classes/Notice.php:1442 +#: classes/Notice.php:1459 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -4568,7 +4653,12 @@ msgstr "Non subscribite!" msgid "Couldn't delete self-subscription." msgstr "Non poteva deler auto-subscription." -#: classes/Subscription.php:179 lib/subs.php:69 +#: classes/Subscription.php:190 +#, fuzzy +msgid "Couldn't delete subscription OMB token." +msgstr "Non poteva deler subscription." + +#: classes/Subscription.php:201 lib/subs.php:69 msgid "Couldn't delete subscription." msgstr "Non poteva deler subscription." @@ -4577,20 +4667,20 @@ msgstr "Non poteva deler subscription." msgid "Welcome to %1$s, @%2$s!" msgstr "Benvenite a %1$s, @%2$s!" -#: classes/User_group.php:462 +#: classes/User_group.php:477 msgid "Could not create group." msgstr "Non poteva crear gruppo." -#: classes/User_group.php:471 +#: classes/User_group.php:486 #, fuzzy msgid "Could not set group URI." msgstr "Non poteva configurar le membrato del gruppo." -#: classes/User_group.php:492 +#: classes/User_group.php:507 msgid "Could not set group membership." msgstr "Non poteva configurar le membrato del gruppo." -#: classes/User_group.php:506 +#: classes/User_group.php:521 #, fuzzy msgid "Could not save local group info." msgstr "Non poteva salveguardar le subscription." @@ -4632,194 +4722,188 @@ msgstr "%1$s - %2$s" msgid "Untitled page" msgstr "Pagina sin titulo" -#: lib/action.php:433 +#: lib/action.php:424 msgid "Primary site navigation" msgstr "Navigation primari del sito" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:439 +#: lib/action.php:430 #, fuzzy msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Profilo personal e chronologia de amicos" -#: lib/action.php:442 +#: lib/action.php:433 #, fuzzy msgctxt "MENU" msgid "Personal" msgstr "Personal" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:444 +#: lib/action.php:435 #, fuzzy msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Cambiar tu e-mail, avatar, contrasigno, profilo" -#: lib/action.php:447 -#, fuzzy -msgctxt "MENU" -msgid "Account" -msgstr "Conto" - #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:450 +#: lib/action.php:440 #, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Connecter con servicios" -#: lib/action.php:453 +#: lib/action.php:443 #, fuzzy -msgctxt "MENU" msgid "Connect" msgstr "Connecter" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:457 +#: lib/action.php:446 #, fuzzy msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Modificar le configuration del sito" -#: lib/action.php:460 +#: lib/action.php:449 #, fuzzy msgctxt "MENU" msgid "Admin" msgstr "Administrator" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:464 +#: lib/action.php:453 #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Invitar amicos e collegas a accompaniar te in %s" -#: lib/action.php:467 +#: lib/action.php:456 #, fuzzy msgctxt "MENU" msgid "Invite" msgstr "Invitar" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:473 +#: lib/action.php:462 #, fuzzy msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Terminar le session del sito" -#: lib/action.php:476 +#: lib/action.php:465 #, fuzzy msgctxt "MENU" msgid "Logout" msgstr "Clauder session" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:481 +#: lib/action.php:470 #, fuzzy msgctxt "TOOLTIP" msgid "Create an account" msgstr "Crear un conto" -#: lib/action.php:484 +#: lib/action.php:473 #, fuzzy msgctxt "MENU" msgid "Register" msgstr "Crear conto" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:487 +#: lib/action.php:476 #, fuzzy msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Identificar te a iste sito" -#: lib/action.php:490 +#: lib/action.php:479 #, fuzzy msgctxt "MENU" msgid "Login" msgstr "Aperir session" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:493 +#: lib/action.php:482 #, fuzzy msgctxt "TOOLTIP" msgid "Help me!" msgstr "Adjuta me!" -#: lib/action.php:496 +#: lib/action.php:485 #, fuzzy msgctxt "MENU" msgid "Help" msgstr "Adjuta" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:499 +#: lib/action.php:488 #, fuzzy msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Cercar personas o texto" -#: lib/action.php:502 +#: lib/action.php:491 #, fuzzy msgctxt "MENU" msgid "Search" msgstr "Cercar" #. TRANS: DT element for site notice. String is hidden in default CSS. -#: lib/action.php:524 +#. TRANS: Menu item for site administration +#: lib/action.php:513 lib/adminpanelaction.php:398 msgid "Site notice" msgstr "Aviso del sito" -#: lib/action.php:590 +#: lib/action.php:579 msgid "Local views" msgstr "Vistas local" -#: lib/action.php:656 +#: lib/action.php:645 msgid "Page notice" msgstr "Aviso de pagina" -#: lib/action.php:758 +#: lib/action.php:747 msgid "Secondary site navigation" msgstr "Navigation secundari del sito" -#: lib/action.php:763 +#: lib/action.php:752 msgid "Help" msgstr "Adjuta" -#: lib/action.php:765 +#: lib/action.php:754 msgid "About" msgstr "A proposito" -#: lib/action.php:767 +#: lib/action.php:756 msgid "FAQ" msgstr "FAQ" -#: lib/action.php:771 +#: lib/action.php:760 msgid "TOS" msgstr "CdS" -#: lib/action.php:774 +#: lib/action.php:763 msgid "Privacy" msgstr "Confidentialitate" -#: lib/action.php:776 +#: lib/action.php:765 msgid "Source" msgstr "Fonte" -#: lib/action.php:780 +#: lib/action.php:769 msgid "Contact" msgstr "Contacto" -#: lib/action.php:782 +#: lib/action.php:771 msgid "Badge" msgstr "Insignia" -#: lib/action.php:810 +#: lib/action.php:799 msgid "StatusNet software license" msgstr "Licentia del software StatusNet" -#: lib/action.php:813 +#: lib/action.php:802 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4828,12 +4912,12 @@ msgstr "" "**%%site.name%%** es un servicio de microblog offerite per [%%site.broughtby%" "%](%%site.broughtbyurl%%). " -#: lib/action.php:815 +#: lib/action.php:804 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** es un servicio de microblog. " -#: lib/action.php:817 +#: lib/action.php:806 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4844,54 +4928,54 @@ msgstr "" "net/), version %s, disponibile sub le [GNU Affero General Public License]" "(http://www.fsf.org/licensing/licenses/agpl-3.0.html)." -#: lib/action.php:832 +#: lib/action.php:821 msgid "Site content license" msgstr "Licentia del contento del sito" -#: lib/action.php:837 +#: lib/action.php:826 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "Le contento e datos de %1$s es private e confidential." -#: lib/action.php:842 +#: lib/action.php:831 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "Contento e datos sub copyright de %1$s. Tote le derectos reservate." -#: lib/action.php:845 +#: lib/action.php:834 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" "Contento e datos sub copyright del contributores. Tote le derectos reservate." -#: lib/action.php:858 +#: lib/action.php:847 msgid "All " msgstr "Totes " -#: lib/action.php:864 +#: lib/action.php:853 msgid "license." msgstr "licentia." -#: lib/action.php:1163 +#: lib/action.php:1152 msgid "Pagination" msgstr "Pagination" -#: lib/action.php:1172 +#: lib/action.php:1161 msgid "After" msgstr "Post" -#: lib/action.php:1180 +#: lib/action.php:1169 msgid "Before" msgstr "Ante" -#: lib/activity.php:449 +#: lib/activity.php:453 msgid "Can't handle remote content yet." msgstr "" -#: lib/activity.php:477 +#: lib/activity.php:481 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activity.php:481 +#: lib/activity.php:485 msgid "Can't handle embedded Base64 content yet." msgstr "" @@ -4906,91 +4990,80 @@ msgid "Changes to that panel are not allowed." msgstr "Le modification de iste pannello non es permittite." #. TRANS: Client error message -#: lib/adminpanelaction.php:211 +#: lib/adminpanelaction.php:229 msgid "showForm() not implemented." msgstr "showForm() non implementate." #. TRANS: Client error message -#: lib/adminpanelaction.php:241 +#: lib/adminpanelaction.php:259 msgid "saveSettings() not implemented." msgstr "saveSettings() non implementate." #. TRANS: Client error message -#: lib/adminpanelaction.php:265 +#: lib/adminpanelaction.php:283 msgid "Unable to delete design setting." msgstr "Impossibile deler configuration de apparentia." #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:330 +#: lib/adminpanelaction.php:348 msgid "Basic site configuration" msgstr "Configuration basic del sito" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:332 +#: lib/adminpanelaction.php:350 #, fuzzy msgctxt "MENU" msgid "Site" msgstr "Sito" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:338 +#: lib/adminpanelaction.php:356 msgid "Design configuration" msgstr "Configuration del apparentia" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:340 +#: lib/adminpanelaction.php:358 #, fuzzy msgctxt "MENU" msgid "Design" msgstr "Apparentia" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:346 +#: lib/adminpanelaction.php:364 msgid "User configuration" msgstr "Configuration del usator" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:348 -#, fuzzy -msgctxt "MENU" +#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 msgid "User" msgstr "Usator" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:354 +#: lib/adminpanelaction.php:372 msgid "Access configuration" msgstr "Configuration del accesso" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:356 -#, fuzzy -msgctxt "MENU" -msgid "Access" -msgstr "Accesso" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:362 +#: lib/adminpanelaction.php:380 msgid "Paths configuration" msgstr "Configuration del camminos" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:364 -#, fuzzy -msgctxt "MENU" -msgid "Paths" -msgstr "Camminos" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:370 +#: lib/adminpanelaction.php:388 msgid "Sessions configuration" msgstr "Configuration del sessiones" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:372 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:396 #, fuzzy -msgctxt "MENU" -msgid "Sessions" -msgstr "Sessiones" +msgid "Edit site notice" +msgstr "Aviso del sito" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:404 +#, fuzzy +msgid "Snapshots configuration" +msgstr "Configuration del camminos" #: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." @@ -5522,6 +5595,11 @@ msgstr "Selige etiquetta pro reducer lista" msgid "Go" msgstr "Ir" +#: lib/grantroleform.php:91 +#, php-format +msgid "Grant this user the \"%s\" role" +msgstr "" + #: lib/groupeditform.php:163 msgid "URL of the homepage or blog of the group or topic" msgstr "URL del pagina initial o blog del gruppo o topico" @@ -6140,10 +6218,6 @@ msgstr "Responsas" msgid "Favorites" msgstr "Favorites" -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "Usator" - #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "Cassa de entrata" @@ -6169,7 +6243,7 @@ msgstr "Etiquettas in le notas de %s" msgid "Unknown" msgstr "Incognite" -#: lib/profileaction.php:109 lib/profileaction.php:192 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:194 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Subscriptiones" @@ -6177,23 +6251,23 @@ msgstr "Subscriptiones" msgid "All subscriptions" msgstr "Tote le subscriptiones" -#: lib/profileaction.php:140 lib/profileaction.php:201 lib/subgroupnav.php:90 +#: lib/profileaction.php:142 lib/profileaction.php:203 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Subscriptores" -#: lib/profileaction.php:157 +#: lib/profileaction.php:159 msgid "All subscribers" msgstr "Tote le subscriptores" -#: lib/profileaction.php:178 +#: lib/profileaction.php:180 msgid "User ID" msgstr "ID del usator" -#: lib/profileaction.php:183 +#: lib/profileaction.php:185 msgid "Member since" msgstr "Membro depost" -#: lib/profileaction.php:245 +#: lib/profileaction.php:247 msgid "All groups" msgstr "Tote le gruppos" @@ -6233,7 +6307,12 @@ msgstr "Repeter iste nota?" msgid "Repeat this notice" msgstr "Repeter iste nota" -#: lib/router.php:668 +#: lib/revokeroleform.php:91 +#, fuzzy, php-format +msgid "Revoke the \"%s\" role from this user" +msgstr "Blocar iste usator de iste gruppo" + +#: lib/router.php:671 msgid "No single user defined for single-user mode." msgstr "Nulle signule usator definite pro le modo de singule usator." @@ -6387,47 +6466,64 @@ msgstr "Message" msgid "Moderate" msgstr "Moderar" -#: lib/util.php:1013 +#: lib/userprofile.php:352 +#, fuzzy +msgid "User role" +msgstr "Profilo del usator" + +#: lib/userprofile.php:354 +#, fuzzy +msgctxt "role" +msgid "Administrator" +msgstr "Administratores" + +#: lib/userprofile.php:355 +#, fuzzy +msgctxt "role" +msgid "Moderator" +msgstr "Moderar" + +#: lib/util.php:1015 msgid "a few seconds ago" msgstr "alcun secundas retro" -#: lib/util.php:1015 +#: lib/util.php:1017 msgid "about a minute ago" msgstr "circa un minuta retro" -#: lib/util.php:1017 +#: lib/util.php:1019 #, php-format msgid "about %d minutes ago" msgstr "circa %d minutas retro" -#: lib/util.php:1019 +#: lib/util.php:1021 msgid "about an hour ago" msgstr "circa un hora retro" -#: lib/util.php:1021 +#: lib/util.php:1023 #, php-format msgid "about %d hours ago" msgstr "circa %d horas retro" -#: lib/util.php:1023 +#: lib/util.php:1025 msgid "about a day ago" msgstr "circa un die retro" -#: lib/util.php:1025 +#: lib/util.php:1027 #, php-format msgid "about %d days ago" msgstr "circa %d dies retro" -#: lib/util.php:1027 +#: lib/util.php:1029 msgid "about a month ago" msgstr "circa un mense retro" -#: lib/util.php:1029 +#: lib/util.php:1031 #, php-format msgid "about %d months ago" msgstr "circa %d menses retro" -#: lib/util.php:1031 +#: lib/util.php:1033 msgid "about a year ago" msgstr "circa un anno retro" diff --git a/locale/is/LC_MESSAGES/statusnet.po b/locale/is/LC_MESSAGES/statusnet.po index aaf79c8f7f..84a90d7d82 100644 --- a/locale/is/LC_MESSAGES/statusnet.po +++ b/locale/is/LC_MESSAGES/statusnet.po @@ -8,12 +8,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-02 21:02+0000\n" -"PO-Revision-Date: 2010-03-02 21:03:04+0000\n" +"POT-Creation-Date: 2010-03-04 18:55+0000\n" +"PO-Revision-Date: 2010-03-04 18:56:39+0000\n" "Language-Team: Icelandic\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: is\n" "X-Message-Group: out-statusnet\n" @@ -22,7 +22,8 @@ msgstr "" "n % 100 != 81 && n % 100 != 91);\n" #. TRANS: Page title -#: actions/accessadminpanel.php:55 +#. TRANS: Menu item for site administration +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 #, fuzzy msgid "Access" msgstr "Samþykkja" @@ -125,7 +126,7 @@ msgstr "%s og vinirnir, síða %d" #. TRANS: Page title. %1$s is user nickname #. TRANS: H1 text. %1$s is user nickname -#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -180,7 +181,7 @@ msgid "" msgstr "" #. TRANS: H1 text -#: actions/all.php:174 +#: actions/all.php:178 msgid "You and friends" msgstr "" @@ -207,11 +208,11 @@ msgstr "Færslur frá %1$s og vinum á %2$s!" #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 -#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 +#: actions/apitimelinegroup.php:160 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:148 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 #, fuzzy msgid "API method not found." msgstr "Aðferð í forritsskilum fannst ekki!" @@ -580,7 +581,7 @@ msgid "" "give access to your %4$s account to third parties you trust." msgstr "" -#: actions/apioauthauthorize.php:310 +#: actions/apioauthauthorize.php:310 lib/action.php:438 msgid "Account" msgstr "Aðgangur" @@ -671,18 +672,6 @@ msgstr "%s / Uppáhaldsbabl frá %s" msgid "%1$s updates favorited by %2$s / %2$s." msgstr "%s færslur gerðar að uppáhaldsbabli af %s / %s." -#: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:138 actions/userrss.php:90 -#, php-format -msgid "%s timeline" -msgstr "Rás %s" - -#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 -#: actions/userrss.php:92 -#, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "Færslur frá %1$s á %2$s!" - #: actions/apitimelinementions.php:117 #, php-format msgid "%1$s / Updates mentioning %2$s" @@ -693,12 +682,12 @@ msgstr "" 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/apitimelinepublic.php:111 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "Almenningsrás %s" -#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "%s færslur frá öllum!" @@ -947,7 +936,7 @@ msgid "Conversation" msgstr "" #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:216 lib/searchgroupnav.php:82 +#: lib/profileaction.php:218 lib/searchgroupnav.php:82 msgid "Notices" msgstr "Babl" @@ -969,7 +958,7 @@ msgstr "Þú ert ekki meðlimur í þessum hópi." #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1228 +#: lib/action.php:1217 msgid "There was a problem with your session token." msgstr "Það komu upp vandamál varðandi setutókann þinn." @@ -1169,8 +1158,9 @@ msgstr "" #: actions/designadminpanel.php:586 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 +#: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:208 #: actions/tagother.php:154 actions/useradminpanel.php:294 #: lib/applicationeditform.php:333 lib/applicationeditform.php:334 #: lib/designsettings.php:256 lib/groupeditform.php:202 @@ -1298,7 +1288,7 @@ msgstr "Lýsing er of löng (í mesta lagi 140 tákn)." msgid "Could not update group." msgstr "Gat ekki uppfært hóp." -#: actions/editgroup.php:264 classes/User_group.php:478 +#: actions/editgroup.php:264 classes/User_group.php:493 msgid "Could not create aliases." msgstr "" @@ -1422,7 +1412,7 @@ msgid "Cannot normalize that email address" msgstr "Get ekki staðlað þetta tölvupóstfang" #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:143 +#: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Ekki tækt tölvupóstfang." @@ -1618,6 +1608,25 @@ msgstr "Ekkert svoleiðis babl." msgid "Cannot read file." msgstr "Týndum skránni okkar" +#: actions/grantrole.php:62 actions/revokerole.php:62 +#, fuzzy +msgid "Invalid role." +msgstr "Ótæk stærð." + +#: actions/grantrole.php:66 actions/revokerole.php:66 +msgid "This role is reserved and cannot be set." +msgstr "" + +#: actions/grantrole.php:75 +#, fuzzy +msgid "You cannot grant user roles on this site." +msgstr "Þú getur ekki sent þessum notanda skilaboð." + +#: actions/grantrole.php:82 +#, fuzzy +msgid "User already has this role." +msgstr "Notandi hefur enga persónulega síðu." + #: actions/groupblock.php:71 actions/groupunblock.php:71 #: actions/makeadmin.php:71 actions/subedit.php:46 #: lib/profileformaction.php:70 @@ -1760,12 +1769,18 @@ msgstr "" msgid "Make this user an admin" msgstr "" +#: actions/grouprss.php:138 actions/userrss.php:90 +#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#, php-format +msgid "%s timeline" +msgstr "Rás %s" + #: actions/grouprss.php:140 #, fuzzy, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Færslur frá %1$s á %2$s!" -#: actions/groups.php:62 lib/profileaction.php:210 lib/profileaction.php:230 +#: actions/groups.php:62 lib/profileaction.php:212 lib/profileaction.php:232 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" msgstr "Hópar" @@ -2385,8 +2400,8 @@ msgstr "" msgid "Only " msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 -#: lib/apiaction.php:1068 lib/apiaction.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1042 +#: lib/apiaction.php:1070 lib/apiaction.php:1179 msgid "Not a supported data format." msgstr "Enginn stuðningur við gagnasnið." @@ -2533,7 +2548,8 @@ msgstr "Get ekki vistað nýja lykilorðið." msgid "Password saved." msgstr "Lykilorð vistað." -#: actions/pathsadminpanel.php:59 +#. TRANS: Menu item for site administration +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 msgid "Paths" msgstr "" @@ -2660,7 +2676,7 @@ msgstr "" msgid "SSL" msgstr "SMS" -#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 +#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202 #, fuzzy msgid "Never" msgstr "Endurheimta" @@ -2719,11 +2735,11 @@ msgstr "Ekki gilt persónumerki: %s" msgid "Users self-tagged with %1$s - page %2$d" msgstr "Notendur sjálfmerktir með %s - síða %d" -#: actions/postnotice.php:84 +#: actions/postnotice.php:95 msgid "Invalid notice content" msgstr "Ótækt bablinnihald" -#: actions/postnotice.php:90 +#: actions/postnotice.php:101 #, php-format msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" @@ -2806,7 +2822,7 @@ msgstr "" "Merki fyrir þig (bókstafir, tölustafir, -, ., og _), aðskilin með kommu eða " "bili" -#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 +#: actions/profilesettings.php:151 msgid "Language" msgstr "Tungumál" @@ -2834,7 +2850,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "Lýsingin er of löng (í mesta lagi 140 tákn)." -#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:151 msgid "Timezone not selected." msgstr "Tímabelti ekki valið." @@ -3138,7 +3154,7 @@ msgid "Same as password above. Required." msgstr "Sama og lykilorðið hér fyrir ofan. Nauðsynlegt." #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 msgid "Email" msgstr "Tölvupóstur" @@ -3243,7 +3259,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "Veffang persónulegrar síðu á samvirkandi örbloggsþjónustu" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:368 +#: lib/userprofile.php:394 msgid "Subscribe" msgstr "Gerast áskrifandi" @@ -3349,6 +3365,16 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "Skilaboð til %1$s á %2$s" +#: actions/revokerole.php:75 +#, fuzzy +msgid "You cannot revoke user roles on this site." +msgstr "Þú getur ekki sent þessum notanda skilaboð." + +#: actions/revokerole.php:82 +#, fuzzy +msgid "User doesn't have this role." +msgstr "Notandi með enga persónulega síðu sem passar við" + #: actions/rsd.php:146 actions/version.php:157 #, fuzzy msgid "StatusNet" @@ -3363,7 +3389,9 @@ msgstr "Þú getur ekki sent þessum notanda skilaboð." msgid "User is already sandboxed." msgstr "" +#. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:390 msgid "Sessions" msgstr "" @@ -3387,7 +3415,7 @@ msgstr "" msgid "Turn on debugging output for sessions." msgstr "" -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/useradminpanel.php:294 #, fuzzy msgid "Save site settings" @@ -3423,8 +3451,8 @@ msgstr "Uppröðun" msgid "Description" msgstr "Lýsing" -#: actions/showapplication.php:192 actions/showgroup.php:437 -#: lib/profileaction.php:174 +#: actions/showapplication.php:192 actions/showgroup.php:438 +#: lib/profileaction.php:176 msgid "Statistics" msgstr "Tölfræði" @@ -3557,45 +3585,45 @@ msgstr "" msgid "Group actions" msgstr "Hópsaðgerðir" -#: actions/showgroup.php:336 +#: actions/showgroup.php:337 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "" -#: actions/showgroup.php:342 +#: actions/showgroup.php:343 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "" -#: actions/showgroup.php:348 +#: actions/showgroup.php:349 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "" -#: actions/showgroup.php:353 +#: actions/showgroup.php:354 #, fuzzy, php-format msgid "FOAF for %s group" msgstr "%s hópurinn" -#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 +#: actions/showgroup.php:390 actions/showgroup.php:447 lib/groupnav.php:91 msgid "Members" msgstr "Meðlimir" -#: actions/showgroup.php:394 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 +#: actions/showgroup.php:395 lib/profileaction.php:117 +#: lib/profileaction.php:150 lib/profileaction.php:238 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(Ekkert)" -#: actions/showgroup.php:400 +#: actions/showgroup.php:401 msgid "All members" msgstr "Allir meðlimir" -#: actions/showgroup.php:440 +#: actions/showgroup.php:441 msgid "Created" msgstr "" -#: actions/showgroup.php:456 +#: actions/showgroup.php:457 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3605,7 +3633,7 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showgroup.php:462 +#: actions/showgroup.php:463 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3614,7 +3642,7 @@ msgid "" "their life and interests. " msgstr "" -#: actions/showgroup.php:490 +#: actions/showgroup.php:491 msgid "Admins" msgstr "" @@ -3726,151 +3754,140 @@ msgid "User is already silenced." msgstr "" #: actions/siteadminpanel.php:69 -msgid "Basic settings for this StatusNet site." +msgid "Basic settings for this StatusNet site" msgstr "" -#: actions/siteadminpanel.php:132 +#: actions/siteadminpanel.php:133 msgid "Site name must have non-zero length." msgstr "" -#: actions/siteadminpanel.php:140 +#: actions/siteadminpanel.php:141 #, fuzzy msgid "You must have a valid contact email address." msgstr "Ekki tækt tölvupóstfang" -#: actions/siteadminpanel.php:158 +#: actions/siteadminpanel.php:159 #, php-format msgid "Unknown language \"%s\"." msgstr "" #: actions/siteadminpanel.php:165 -msgid "Invalid snapshot report URL." -msgstr "" - -#: actions/siteadminpanel.php:171 -msgid "Invalid snapshot run value." -msgstr "" - -#: actions/siteadminpanel.php:177 -msgid "Snapshot frequency must be a number." -msgstr "" - -#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "" -#: actions/siteadminpanel.php:189 +#: actions/siteadminpanel.php:171 msgid "Dupe limit must 1 or more seconds." msgstr "" -#: actions/siteadminpanel.php:239 +#: actions/siteadminpanel.php:221 msgid "General" msgstr "" -#: actions/siteadminpanel.php:242 +#: actions/siteadminpanel.php:224 #, fuzzy msgid "Site name" msgstr "Babl vefsíðunnar" -#: actions/siteadminpanel.php:243 +#: actions/siteadminpanel.php:225 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "" -#: actions/siteadminpanel.php:247 +#: actions/siteadminpanel.php:229 msgid "Brought by" msgstr "" -#: actions/siteadminpanel.php:248 +#: actions/siteadminpanel.php:230 msgid "Text used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:252 +#: actions/siteadminpanel.php:234 msgid "Brought by URL" msgstr "" -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:235 msgid "URL used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:239 #, fuzzy msgid "Contact email address for your site" msgstr "Nýtt tölvupóstfang til að senda á %s" -#: actions/siteadminpanel.php:263 +#: actions/siteadminpanel.php:245 #, fuzzy msgid "Local" msgstr "Staðbundin sýn" -#: actions/siteadminpanel.php:274 +#: actions/siteadminpanel.php:256 msgid "Default timezone" msgstr "" -#: actions/siteadminpanel.php:275 +#: actions/siteadminpanel.php:257 msgid "Default timezone for the site; usually UTC." msgstr "" -#: actions/siteadminpanel.php:281 +#: actions/siteadminpanel.php:262 #, fuzzy -msgid "Default site language" +msgid "Default language" msgstr "Tungumál (ákjósanlegt)" -#: actions/siteadminpanel.php:289 -msgid "Snapshots" +#: actions/siteadminpanel.php:263 +msgid "Site language when autodetection from browser settings is not available" msgstr "" -#: actions/siteadminpanel.php:292 -msgid "Randomly during Web hit" -msgstr "" - -#: actions/siteadminpanel.php:293 -msgid "In a scheduled job" -msgstr "" - -#: actions/siteadminpanel.php:295 -msgid "Data snapshots" -msgstr "" - -#: actions/siteadminpanel.php:296 -msgid "When to send statistical data to status.net servers" -msgstr "" - -#: actions/siteadminpanel.php:301 -msgid "Frequency" -msgstr "" - -#: actions/siteadminpanel.php:302 -msgid "Snapshots will be sent once every N web hits" -msgstr "" - -#: actions/siteadminpanel.php:307 -msgid "Report URL" -msgstr "" - -#: actions/siteadminpanel.php:308 -msgid "Snapshots will be sent to this URL" -msgstr "" - -#: actions/siteadminpanel.php:315 +#: actions/siteadminpanel.php:271 msgid "Limits" msgstr "" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Text limit" msgstr "" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Maximum number of characters for notices." msgstr "" -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "Dupe limit" msgstr "" -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" +#: actions/sitenoticeadminpanel.php:56 +#, fuzzy +msgid "Site Notice" +msgstr "Babl vefsíðunnar" + +#: actions/sitenoticeadminpanel.php:67 +#, fuzzy +msgid "Edit site-wide message" +msgstr "Ný skilaboð" + +#: actions/sitenoticeadminpanel.php:103 +#, fuzzy +msgid "Unable to save site notice." +msgstr "Vandamál komu upp við að vista babl." + +#: actions/sitenoticeadminpanel.php:113 +msgid "Max length for the site-wide notice is 255 chars" +msgstr "" + +#: actions/sitenoticeadminpanel.php:176 +#, fuzzy +msgid "Site notice text" +msgstr "Babl vefsíðunnar" + +#: actions/sitenoticeadminpanel.php:178 +msgid "Site-wide notice text (255 chars max; HTML okay)" +msgstr "" + +#: actions/sitenoticeadminpanel.php:198 +#, fuzzy +msgid "Save site notice" +msgstr "Babl vefsíðunnar" + #: actions/smssettings.php:58 #, fuzzy msgid "SMS settings" @@ -3971,6 +3988,66 @@ msgstr "" msgid "No code entered" msgstr "Enginn lykill sleginn inn" +#. TRANS: Menu item for site administration +#: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 +#: lib/adminpanelaction.php:406 +msgid "Snapshots" +msgstr "" + +#: actions/snapshotadminpanel.php:65 +#, fuzzy +msgid "Manage snapshot configuration" +msgstr "Stikl aðalsíðu" + +#: actions/snapshotadminpanel.php:127 +msgid "Invalid snapshot run value." +msgstr "" + +#: actions/snapshotadminpanel.php:133 +msgid "Snapshot frequency must be a number." +msgstr "" + +#: actions/snapshotadminpanel.php:144 +msgid "Invalid snapshot report URL." +msgstr "" + +#: actions/snapshotadminpanel.php:200 +msgid "Randomly during Web hit" +msgstr "" + +#: actions/snapshotadminpanel.php:201 +msgid "In a scheduled job" +msgstr "" + +#: actions/snapshotadminpanel.php:206 +msgid "Data snapshots" +msgstr "" + +#: actions/snapshotadminpanel.php:208 +msgid "When to send statistical data to status.net servers" +msgstr "" + +#: actions/snapshotadminpanel.php:217 +msgid "Frequency" +msgstr "" + +#: actions/snapshotadminpanel.php:218 +msgid "Snapshots will be sent once every N web hits" +msgstr "" + +#: actions/snapshotadminpanel.php:226 +msgid "Report URL" +msgstr "" + +#: actions/snapshotadminpanel.php:227 +msgid "Snapshots will be sent to this URL" +msgstr "" + +#: actions/snapshotadminpanel.php:248 +#, fuzzy +msgid "Save snapshot settings" +msgstr "Stillingar fyrir mynd" + #: actions/subedit.php:70 msgid "You are not subscribed to that profile." msgstr "Þú ert ekki áskrifandi." @@ -4176,7 +4253,7 @@ msgstr "Ekkert einkenni persónulegrar síðu í beiðni." msgid "Unsubscribed" msgstr "Ekki lengur áskrifandi" -#: actions/updateprofile.php:62 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -4385,16 +4462,22 @@ msgstr "Hópmeðlimir %s, síða %d" msgid "Search for more groups" msgstr "" -#: actions/usergroups.php:153 +#: actions/usergroups.php:157 #, php-format msgid "%s is not a member of any group." msgstr "" -#: actions/usergroups.php:158 +#: actions/usergroups.php:162 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" +#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: lib/atomusernoticefeed.php:72 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "Færslur frá %1$s á %2$s!" + #: actions/version.php:73 #, fuzzy, php-format msgid "StatusNet %s" @@ -4438,7 +4521,7 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:196 lib/action.php:778 +#: actions/version.php:196 lib/action.php:767 #, fuzzy msgid "Version" msgstr "Persónulegt" @@ -4507,41 +4590,41 @@ msgstr "Gat ekki uppfært skilaboð með nýju veffangi." msgid "DB error inserting hashtag: %s" msgstr "Gagnagrunnsvilla við innsetningu myllumerkis: %s" -#: classes/Notice.php:239 +#: classes/Notice.php:241 msgid "Problem saving notice. Too long." msgstr "" -#: classes/Notice.php:243 +#: classes/Notice.php:245 msgid "Problem saving notice. Unknown user." msgstr "Gat ekki vistað babl. Óþekktur notandi." -#: classes/Notice.php:248 +#: classes/Notice.php:250 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." -#: classes/Notice.php:254 +#: classes/Notice.php:256 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." msgstr "" -#: classes/Notice.php:260 +#: classes/Notice.php:262 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:326 classes/Notice.php:352 +#: classes/Notice.php:328 classes/Notice.php:354 msgid "Problem saving notice." msgstr "Vandamál komu upp við að vista babl." -#: classes/Notice.php:911 +#: classes/Notice.php:927 #, fuzzy msgid "Problem saving group inbox." msgstr "Vandamál komu upp við að vista babl." -#: classes/Notice.php:1442 +#: classes/Notice.php:1459 #, fuzzy, php-format msgid "RT @%1$s %2$s" msgstr "%1$s (%2$s)" @@ -4569,7 +4652,12 @@ msgstr "Ekki í áskrift!" msgid "Couldn't delete self-subscription." msgstr "Gat ekki eytt áskrift." -#: classes/Subscription.php:179 lib/subs.php:69 +#: classes/Subscription.php:190 +#, fuzzy +msgid "Couldn't delete subscription OMB token." +msgstr "Gat ekki eytt áskrift." + +#: classes/Subscription.php:201 lib/subs.php:69 msgid "Couldn't delete subscription." msgstr "Gat ekki eytt áskrift." @@ -4578,20 +4666,20 @@ msgstr "Gat ekki eytt áskrift." msgid "Welcome to %1$s, @%2$s!" msgstr "" -#: classes/User_group.php:462 +#: classes/User_group.php:477 msgid "Could not create group." msgstr "Gat ekki búið til hóp." -#: classes/User_group.php:471 +#: classes/User_group.php:486 #, fuzzy msgid "Could not set group URI." msgstr "Gat ekki skráð hópmeðlimi." -#: classes/User_group.php:492 +#: classes/User_group.php:507 msgid "Could not set group membership." msgstr "Gat ekki skráð hópmeðlimi." -#: classes/User_group.php:506 +#: classes/User_group.php:521 #, fuzzy msgid "Could not save local group info." msgstr "Gat ekki vistað áskrift." @@ -4633,25 +4721,25 @@ msgstr "%1$s (%2$s)" msgid "Untitled page" msgstr "Ónafngreind síða" -#: lib/action.php:433 +#: lib/action.php:424 msgid "Primary site navigation" msgstr "Stikl aðalsíðu" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:439 +#: lib/action.php:430 #, fuzzy msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Persónuleg síða og vinarás" -#: lib/action.php:442 +#: lib/action.php:433 #, fuzzy msgctxt "MENU" msgid "Personal" msgstr "Persónulegt" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:444 +#: lib/action.php:435 #, fuzzy msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" @@ -4659,170 +4747,164 @@ msgstr "" "Breyttu tölvupóstinum þínum, einkennismyndinni þinni, lykilorðinu þínu, " "persónulegu síðunni þinni" -#: lib/action.php:447 -#, fuzzy -msgctxt "MENU" -msgid "Account" -msgstr "Aðgangur" - #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:450 +#: lib/action.php:440 #, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Gat ekki framsent til vefþjóns: %s" -#: lib/action.php:453 +#: lib/action.php:443 #, fuzzy -msgctxt "MENU" msgid "Connect" msgstr "Tengjast" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:457 +#: lib/action.php:446 #, fuzzy msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Stikl aðalsíðu" -#: lib/action.php:460 +#: lib/action.php:449 #, fuzzy msgctxt "MENU" msgid "Admin" msgstr "Stjórnandi" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:464 +#: lib/action.php:453 #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Bjóða vinum og vandamönnum að slást í hópinn á %s" -#: lib/action.php:467 +#: lib/action.php:456 #, fuzzy msgctxt "MENU" msgid "Invite" msgstr "Bjóða" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:473 +#: lib/action.php:462 #, fuzzy msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Skrá þig út af síðunni" -#: lib/action.php:476 +#: lib/action.php:465 #, fuzzy msgctxt "MENU" msgid "Logout" msgstr "Útskráning" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:481 +#: lib/action.php:470 #, fuzzy msgctxt "TOOLTIP" msgid "Create an account" msgstr "Búa til aðgang" -#: lib/action.php:484 +#: lib/action.php:473 #, fuzzy msgctxt "MENU" msgid "Register" msgstr "Nýskrá" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:487 +#: lib/action.php:476 #, fuzzy msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Skrá þig inn á síðuna" -#: lib/action.php:490 +#: lib/action.php:479 #, fuzzy msgctxt "MENU" msgid "Login" msgstr "Innskráning" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:493 +#: lib/action.php:482 #, fuzzy msgctxt "TOOLTIP" msgid "Help me!" msgstr "Hjálp!" -#: lib/action.php:496 +#: lib/action.php:485 #, fuzzy msgctxt "MENU" msgid "Help" msgstr "Hjálp" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:499 +#: lib/action.php:488 #, fuzzy msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Leita að fólki eða texta" -#: lib/action.php:502 +#: lib/action.php:491 #, fuzzy msgctxt "MENU" msgid "Search" msgstr "Leita" #. TRANS: DT element for site notice. String is hidden in default CSS. -#: lib/action.php:524 +#. TRANS: Menu item for site administration +#: lib/action.php:513 lib/adminpanelaction.php:398 msgid "Site notice" msgstr "Babl vefsíðunnar" -#: lib/action.php:590 +#: lib/action.php:579 msgid "Local views" msgstr "Staðbundin sýn" -#: lib/action.php:656 +#: lib/action.php:645 msgid "Page notice" msgstr "Babl síðunnar" -#: lib/action.php:758 +#: lib/action.php:747 msgid "Secondary site navigation" msgstr "Stikl undirsíðu" -#: lib/action.php:763 +#: lib/action.php:752 msgid "Help" msgstr "Hjálp" -#: lib/action.php:765 +#: lib/action.php:754 msgid "About" msgstr "Um" -#: lib/action.php:767 +#: lib/action.php:756 msgid "FAQ" msgstr "Spurt og svarað" -#: lib/action.php:771 +#: lib/action.php:760 msgid "TOS" msgstr "" -#: lib/action.php:774 +#: lib/action.php:763 msgid "Privacy" msgstr "Friðhelgi" -#: lib/action.php:776 +#: lib/action.php:765 msgid "Source" msgstr "Frumþula" -#: lib/action.php:780 +#: lib/action.php:769 msgid "Contact" msgstr "Tengiliður" -#: lib/action.php:782 +#: lib/action.php:771 msgid "Badge" msgstr "" -#: lib/action.php:810 +#: lib/action.php:799 msgid "StatusNet software license" msgstr "Hugbúnaðarleyfi StatusNet" -#: lib/action.php:813 +#: lib/action.php:802 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4831,12 +4913,12 @@ msgstr "" "**%%site.name%%** er örbloggsþjónusta í boði [%%site.broughtby%%](%%site." "broughtbyurl%%). " -#: lib/action.php:815 +#: lib/action.php:804 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** er örbloggsþjónusta." -#: lib/action.php:817 +#: lib/action.php:806 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4847,54 +4929,54 @@ msgstr "" "sem er gefinn út undir [GNU Affero almenningsleyfinu](http://www.fsf.org/" "licensing/licenses/agpl-3.0.html)." -#: lib/action.php:832 +#: lib/action.php:821 #, fuzzy msgid "Site content license" msgstr "Hugbúnaðarleyfi StatusNet" -#: lib/action.php:837 +#: lib/action.php:826 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:842 +#: lib/action.php:831 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:845 +#: lib/action.php:834 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" -#: lib/action.php:858 +#: lib/action.php:847 msgid "All " msgstr "Allt " -#: lib/action.php:864 +#: lib/action.php:853 msgid "license." msgstr "leyfi." -#: lib/action.php:1163 +#: lib/action.php:1152 msgid "Pagination" msgstr "Uppröðun" -#: lib/action.php:1172 +#: lib/action.php:1161 msgid "After" msgstr "Eftir" -#: lib/action.php:1180 +#: lib/action.php:1169 msgid "Before" msgstr "Áður" -#: lib/activity.php:449 +#: lib/activity.php:453 msgid "Can't handle remote content yet." msgstr "" -#: lib/activity.php:477 +#: lib/activity.php:481 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activity.php:481 +#: lib/activity.php:485 msgid "Can't handle embedded Base64 content yet." msgstr "" @@ -4911,98 +4993,88 @@ msgid "Changes to that panel are not allowed." msgstr "Nýskráning ekki leyfð." #. TRANS: Client error message -#: lib/adminpanelaction.php:211 +#: lib/adminpanelaction.php:229 #, fuzzy msgid "showForm() not implemented." msgstr "Skipun hefur ekki verið fullbúin" #. TRANS: Client error message -#: lib/adminpanelaction.php:241 +#: lib/adminpanelaction.php:259 #, fuzzy msgid "saveSettings() not implemented." msgstr "Skipun hefur ekki verið fullbúin" #. TRANS: Client error message -#: lib/adminpanelaction.php:265 +#: lib/adminpanelaction.php:283 msgid "Unable to delete design setting." msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:330 +#: lib/adminpanelaction.php:348 #, fuzzy msgid "Basic site configuration" msgstr "Staðfesting tölvupóstfangs" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:332 +#: lib/adminpanelaction.php:350 #, fuzzy msgctxt "MENU" msgid "Site" msgstr "Bjóða" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:338 +#: lib/adminpanelaction.php:356 #, fuzzy msgid "Design configuration" msgstr "SMS staðfesting" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:340 +#: lib/adminpanelaction.php:358 #, fuzzy msgctxt "MENU" msgid "Design" msgstr "Persónulegt" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:346 +#: lib/adminpanelaction.php:364 #, fuzzy msgid "User configuration" msgstr "SMS staðfesting" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:348 -#, fuzzy -msgctxt "MENU" +#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 msgid "User" msgstr "Notandi" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:354 +#: lib/adminpanelaction.php:372 #, fuzzy msgid "Access configuration" msgstr "SMS staðfesting" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:356 -#, fuzzy -msgctxt "MENU" -msgid "Access" -msgstr "Samþykkja" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:362 +#: lib/adminpanelaction.php:380 #, fuzzy msgid "Paths configuration" msgstr "SMS staðfesting" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:364 -msgctxt "MENU" -msgid "Paths" -msgstr "" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:370 +#: lib/adminpanelaction.php:388 #, fuzzy msgid "Sessions configuration" msgstr "SMS staðfesting" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:372 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:396 #, fuzzy -msgctxt "MENU" -msgid "Sessions" -msgstr "Persónulegt" +msgid "Edit site notice" +msgstr "Babl vefsíðunnar" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:404 +#, fuzzy +msgid "Snapshots configuration" +msgstr "SMS staðfesting" #: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." @@ -5503,6 +5575,11 @@ msgstr "Veldu merki til að þrengja lista" msgid "Go" msgstr "Áfram" +#: lib/grantroleform.php:91 +#, php-format +msgid "Grant this user the \"%s\" role" +msgstr "" + #: 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" @@ -6047,10 +6124,6 @@ msgstr "Svör" msgid "Favorites" msgstr "Uppáhald" -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "Notandi" - #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "Innhólf" @@ -6077,7 +6150,7 @@ msgstr "Merki í babli %s" msgid "Unknown" msgstr "Óþekkt aðgerð" -#: lib/profileaction.php:109 lib/profileaction.php:192 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:194 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Áskriftir" @@ -6085,23 +6158,23 @@ msgstr "Áskriftir" msgid "All subscriptions" msgstr "Allar áskriftir" -#: lib/profileaction.php:140 lib/profileaction.php:201 lib/subgroupnav.php:90 +#: lib/profileaction.php:142 lib/profileaction.php:203 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Áskrifendur" -#: lib/profileaction.php:157 +#: lib/profileaction.php:159 msgid "All subscribers" msgstr "Allir áskrifendur" -#: lib/profileaction.php:178 +#: lib/profileaction.php:180 msgid "User ID" msgstr "" -#: lib/profileaction.php:183 +#: lib/profileaction.php:185 msgid "Member since" msgstr "Meðlimur síðan" -#: lib/profileaction.php:245 +#: lib/profileaction.php:247 msgid "All groups" msgstr "Allir hópar" @@ -6144,7 +6217,12 @@ msgstr "Svara þessu babli" msgid "Repeat this notice" msgstr "Svara þessu babli" -#: lib/router.php:668 +#: lib/revokeroleform.php:91 +#, php-format +msgid "Revoke the \"%s\" role from this user" +msgstr "" + +#: lib/router.php:671 msgid "No single user defined for single-user mode." msgstr "" @@ -6304,47 +6382,62 @@ msgstr "Skilaboð" msgid "Moderate" msgstr "" -#: lib/util.php:1013 +#: lib/userprofile.php:352 +#, fuzzy +msgid "User role" +msgstr "Persónuleg síða notanda" + +#: lib/userprofile.php:354 +msgctxt "role" +msgid "Administrator" +msgstr "" + +#: lib/userprofile.php:355 +msgctxt "role" +msgid "Moderator" +msgstr "" + +#: lib/util.php:1015 msgid "a few seconds ago" msgstr "fyrir nokkrum sekúndum" -#: lib/util.php:1015 +#: lib/util.php:1017 msgid "about a minute ago" msgstr "fyrir um einni mínútu síðan" -#: lib/util.php:1017 +#: lib/util.php:1019 #, php-format msgid "about %d minutes ago" msgstr "fyrir um %d mínútum síðan" -#: lib/util.php:1019 +#: lib/util.php:1021 msgid "about an hour ago" msgstr "fyrir um einum klukkutíma síðan" -#: lib/util.php:1021 +#: lib/util.php:1023 #, php-format msgid "about %d hours ago" msgstr "fyrir um %d klukkutímum síðan" -#: lib/util.php:1023 +#: lib/util.php:1025 msgid "about a day ago" msgstr "fyrir um einum degi síðan" -#: lib/util.php:1025 +#: lib/util.php:1027 #, php-format msgid "about %d days ago" msgstr "fyrir um %d dögum síðan" -#: lib/util.php:1027 +#: lib/util.php:1029 msgid "about a month ago" msgstr "fyrir um einum mánuði síðan" -#: lib/util.php:1029 +#: lib/util.php:1031 #, php-format msgid "about %d months ago" msgstr "fyrir um %d mánuðum síðan" -#: lib/util.php:1031 +#: lib/util.php:1033 msgid "about a year ago" msgstr "fyrir um einu ári síðan" diff --git a/locale/it/LC_MESSAGES/statusnet.po b/locale/it/LC_MESSAGES/statusnet.po index 61d4cfaf91..5f72eb1a77 100644 --- a/locale/it/LC_MESSAGES/statusnet.po +++ b/locale/it/LC_MESSAGES/statusnet.po @@ -9,19 +9,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-02 21:02+0000\n" -"PO-Revision-Date: 2010-03-02 21:03:07+0000\n" +"POT-Creation-Date: 2010-03-04 18:55+0000\n" +"PO-Revision-Date: 2010-03-04 18:56:42+0000\n" "Language-Team: Italian\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: it\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. TRANS: Page title -#: actions/accessadminpanel.php:55 +#. TRANS: Menu item for site administration +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 msgid "Access" msgstr "Accesso" @@ -120,7 +121,7 @@ msgstr "%1$s e amici, pagina %2$d" #. TRANS: Page title. %1$s is user nickname #. TRANS: H1 text. %1$s is user nickname -#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -184,7 +185,7 @@ msgstr "" "un messaggio alla sua attenzione." #. TRANS: H1 text -#: actions/all.php:174 +#: actions/all.php:178 msgid "You and friends" msgstr "Tu e i tuoi amici" @@ -211,11 +212,11 @@ msgstr "Messaggi da %1$s e amici su %2$s!" #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 -#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 +#: actions/apitimelinegroup.php:160 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:148 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 msgid "API method not found." msgstr "Metodo delle API non trovato." @@ -579,7 +580,7 @@ msgstr "" "%3$s ai dati del tuo account %4$s. È consigliato fornire " "accesso al proprio account %4$s solo ad applicazioni di cui ci si può fidare." -#: actions/apioauthauthorize.php:310 +#: actions/apioauthauthorize.php:310 lib/action.php:438 msgid "Account" msgstr "Account" @@ -667,18 +668,6 @@ msgstr "%1$s / Preferiti da %2$s" msgid "%1$s updates favorited by %2$s / %2$s." msgstr "%1$s aggiornamenti preferiti da %2$s / %3$s" -#: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:138 actions/userrss.php:90 -#, php-format -msgid "%s timeline" -msgstr "Attività di %s" - -#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 -#: actions/userrss.php:92 -#, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "Messaggi da %1$s su %2$s!" - #: actions/apitimelinementions.php:117 #, php-format msgid "%1$s / Updates mentioning %2$s" @@ -689,12 +678,12 @@ msgstr "%1$s / Messaggi che citano %2$s" msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "%1$s messaggi in risposta a quelli da %2$s / %3$s" -#: actions/apitimelinepublic.php:111 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "Attività pubblica di %s" -#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "Aggiornamenti di %s da tutti!" @@ -941,7 +930,7 @@ msgid "Conversation" msgstr "Conversazione" #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:216 lib/searchgroupnav.php:82 +#: lib/profileaction.php:218 lib/searchgroupnav.php:82 msgid "Notices" msgstr "Messaggi" @@ -960,7 +949,7 @@ msgstr "Questa applicazione non è di tua proprietà." #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1228 +#: lib/action.php:1217 msgid "There was a problem with your session token." msgstr "Si è verificato un problema con il tuo token di sessione." @@ -1155,8 +1144,9 @@ msgstr "Reimposta i valori predefiniti" #: actions/designadminpanel.php:586 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 +#: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:208 #: actions/tagother.php:154 actions/useradminpanel.php:294 #: lib/applicationeditform.php:333 lib/applicationeditform.php:334 #: lib/designsettings.php:256 lib/groupeditform.php:202 @@ -1272,7 +1262,7 @@ msgstr "La descrizione è troppo lunga (max %d caratteri)." msgid "Could not update group." msgstr "Impossibile aggiornare il gruppo." -#: actions/editgroup.php:264 classes/User_group.php:478 +#: actions/editgroup.php:264 classes/User_group.php:493 msgid "Could not create aliases." msgstr "Impossibile creare gli alias." @@ -1398,7 +1388,7 @@ msgid "Cannot normalize that email address" msgstr "Impossibile normalizzare quell'indirizzo email" #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:143 +#: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Non è un indirizzo email valido." @@ -1591,6 +1581,25 @@ msgstr "Nessun file." msgid "Cannot read file." msgstr "Impossibile leggere il file." +#: actions/grantrole.php:62 actions/revokerole.php:62 +#, fuzzy +msgid "Invalid role." +msgstr "Token non valido." + +#: actions/grantrole.php:66 actions/revokerole.php:66 +msgid "This role is reserved and cannot be set." +msgstr "" + +#: actions/grantrole.php:75 +#, fuzzy +msgid "You cannot grant user roles on this site." +msgstr "Non puoi mettere in \"sandbox\" gli utenti su questo sito." + +#: actions/grantrole.php:82 +#, fuzzy +msgid "User already has this role." +msgstr "L'utente è già stato zittito." + #: actions/groupblock.php:71 actions/groupunblock.php:71 #: actions/makeadmin.php:71 actions/subedit.php:46 #: lib/profileformaction.php:70 @@ -1738,12 +1747,18 @@ msgstr "Rendi amm." msgid "Make this user an admin" msgstr "Rende questo utente un amministratore" +#: actions/grouprss.php:138 actions/userrss.php:90 +#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#, php-format +msgid "%s timeline" +msgstr "Attività di %s" + #: actions/grouprss.php:140 #, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Messaggi dai membri di %1$s su %2$s!" -#: actions/groups.php:62 lib/profileaction.php:210 lib/profileaction.php:230 +#: actions/groups.php:62 lib/profileaction.php:212 lib/profileaction.php:232 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" msgstr "Gruppi" @@ -2363,8 +2378,8 @@ msgstr "tipo di contenuto " msgid "Only " msgstr "Solo " -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 -#: lib/apiaction.php:1068 lib/apiaction.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1042 +#: lib/apiaction.php:1070 lib/apiaction.php:1179 msgid "Not a supported data format." msgstr "Non è un formato di dati supportato." @@ -2505,7 +2520,8 @@ msgstr "Impossibile salvare la nuova password." msgid "Password saved." msgstr "Password salvata." -#: actions/pathsadminpanel.php:59 +#. TRANS: Menu item for site administration +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 msgid "Paths" msgstr "Percorsi" @@ -2625,7 +2641,7 @@ msgstr "Directory dello sfondo" msgid "SSL" msgstr "SSL" -#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 +#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202 msgid "Never" msgstr "Mai" @@ -2680,11 +2696,11 @@ msgstr "Non è un'etichetta valida di persona: %s" msgid "Users self-tagged with %1$s - page %2$d" msgstr "Utenti auto-etichettati con %1$s - pagina %2$d" -#: actions/postnotice.php:84 +#: actions/postnotice.php:95 msgid "Invalid notice content" msgstr "Contenuto del messaggio non valido" -#: actions/postnotice.php:90 +#: actions/postnotice.php:101 #, php-format msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" @@ -2766,7 +2782,7 @@ msgid "" msgstr "" "Le tue etichette (lettere, numeri, -, . e _), separate da virgole o spazi" -#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 +#: actions/profilesettings.php:151 msgid "Language" msgstr "Lingua" @@ -2794,7 +2810,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "La biografia è troppo lunga (max %d caratteri)." -#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:151 msgid "Timezone not selected." msgstr "Fuso orario non selezionato" @@ -3111,7 +3127,7 @@ msgid "Same as password above. Required." msgstr "Stessa password di sopra; richiesta" #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 msgid "Email" msgstr "Email" @@ -3218,7 +3234,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "URL del tuo profilo su un altro servizio di microblog compatibile" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:368 +#: lib/userprofile.php:394 msgid "Subscribe" msgstr "Abbonati" @@ -3322,6 +3338,16 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "Risposte a %1$s su %2$s!" +#: actions/revokerole.php:75 +#, fuzzy +msgid "You cannot revoke user roles on this site." +msgstr "Non puoi zittire gli utenti su questo sito." + +#: actions/revokerole.php:82 +#, fuzzy +msgid "User doesn't have this role." +msgstr "Utente senza profilo corrispondente." + #: actions/rsd.php:146 actions/version.php:157 msgid "StatusNet" msgstr "StatusNet" @@ -3334,7 +3360,9 @@ msgstr "Non puoi mettere in \"sandbox\" gli utenti su questo sito." msgid "User is already sandboxed." msgstr "L'utente è già nella \"sandbox\"." +#. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:390 msgid "Sessions" msgstr "Sessioni" @@ -3358,7 +3386,7 @@ msgstr "Debug delle sessioni" msgid "Turn on debugging output for sessions." msgstr "Abilita il debug per le sessioni" -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "Salva impostazioni" @@ -3389,8 +3417,8 @@ msgstr "Organizzazione" msgid "Description" msgstr "Descrizione" -#: actions/showapplication.php:192 actions/showgroup.php:437 -#: lib/profileaction.php:174 +#: actions/showapplication.php:192 actions/showgroup.php:438 +#: lib/profileaction.php:176 msgid "Statistics" msgstr "Statistiche" @@ -3531,45 +3559,45 @@ msgstr "Alias" msgid "Group actions" msgstr "Azioni dei gruppi" -#: actions/showgroup.php:336 +#: actions/showgroup.php:337 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Feed dei messaggi per il gruppo %s (RSS 1.0)" -#: actions/showgroup.php:342 +#: actions/showgroup.php:343 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Feed dei messaggi per il gruppo %s (RSS 2.0)" -#: actions/showgroup.php:348 +#: actions/showgroup.php:349 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "Feed dei messaggi per il gruppo %s (Atom)" -#: actions/showgroup.php:353 +#: actions/showgroup.php:354 #, php-format msgid "FOAF for %s group" msgstr "FOAF per il gruppo %s" -#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 +#: actions/showgroup.php:390 actions/showgroup.php:447 lib/groupnav.php:91 msgid "Members" msgstr "Membri" -#: actions/showgroup.php:394 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 +#: actions/showgroup.php:395 lib/profileaction.php:117 +#: lib/profileaction.php:150 lib/profileaction.php:238 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(nessuno)" -#: actions/showgroup.php:400 +#: actions/showgroup.php:401 msgid "All members" msgstr "Tutti i membri" -#: actions/showgroup.php:440 +#: actions/showgroup.php:441 msgid "Created" msgstr "Creato" -#: actions/showgroup.php:456 +#: actions/showgroup.php:457 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3585,7 +3613,7 @@ msgstr "" "stesso](%%%%action.register%%%%) per far parte di questo gruppo e di molti " "altri! ([Maggiori informazioni](%%%%doc.help%%%%))" -#: actions/showgroup.php:462 +#: actions/showgroup.php:463 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3597,7 +3625,7 @@ msgstr "" "(http://it.wikipedia.org/wiki/Microblogging) basato sul software libero " "[StatusNet](http://status.net/)." -#: actions/showgroup.php:490 +#: actions/showgroup.php:491 msgid "Admins" msgstr "Amministratori" @@ -3719,148 +3747,139 @@ msgid "User is already silenced." msgstr "L'utente è già stato zittito." #: actions/siteadminpanel.php:69 -msgid "Basic settings for this StatusNet site." +#, fuzzy +msgid "Basic settings for this StatusNet site" msgstr "Impostazioni di base per questo sito StatusNet." -#: actions/siteadminpanel.php:132 +#: actions/siteadminpanel.php:133 msgid "Site name must have non-zero length." msgstr "Il nome del sito non deve avere lunghezza parti a zero." -#: actions/siteadminpanel.php:140 +#: actions/siteadminpanel.php:141 msgid "You must have a valid contact email address." msgstr "Devi avere un'email di contatto valida." -#: actions/siteadminpanel.php:158 +#: actions/siteadminpanel.php:159 #, php-format msgid "Unknown language \"%s\"." msgstr "Lingua \"%s\" sconosciuta." #: actions/siteadminpanel.php:165 -msgid "Invalid snapshot report URL." -msgstr "URL di segnalazione snapshot non valido." - -#: actions/siteadminpanel.php:171 -msgid "Invalid snapshot run value." -msgstr "Valore di esecuzione dello snapshot non valido." - -#: actions/siteadminpanel.php:177 -msgid "Snapshot frequency must be a number." -msgstr "La frequenza degli snapshot deve essere un numero." - -#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "Il limite minimo del testo è di 140 caratteri." -#: actions/siteadminpanel.php:189 +#: actions/siteadminpanel.php:171 msgid "Dupe limit must 1 or more seconds." msgstr "Il limite per i duplicati deve essere di 1 o più secondi." -#: actions/siteadminpanel.php:239 +#: actions/siteadminpanel.php:221 msgid "General" msgstr "Generale" -#: actions/siteadminpanel.php:242 +#: actions/siteadminpanel.php:224 msgid "Site name" msgstr "Nome del sito" -#: actions/siteadminpanel.php:243 +#: actions/siteadminpanel.php:225 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "Il nome del tuo sito, topo \"Acme Microblog\"" -#: actions/siteadminpanel.php:247 +#: actions/siteadminpanel.php:229 msgid "Brought by" msgstr "Offerto da" -#: actions/siteadminpanel.php:248 +#: actions/siteadminpanel.php:230 msgid "Text used for credits link in footer of each page" msgstr "Testo usato per i crediti nel piè di pagina di ogni pagina" -#: actions/siteadminpanel.php:252 +#: actions/siteadminpanel.php:234 msgid "Brought by URL" msgstr "URL per offerto da" -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:235 msgid "URL used for credits link in footer of each page" msgstr "URL usato per i crediti nel piè di pagina di ogni pagina" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:239 msgid "Contact email address for your site" msgstr "Indirizzo email di contatto per il sito" -#: actions/siteadminpanel.php:263 +#: actions/siteadminpanel.php:245 msgid "Local" msgstr "Locale" -#: actions/siteadminpanel.php:274 +#: actions/siteadminpanel.php:256 msgid "Default timezone" msgstr "Fuso orario predefinito" -#: actions/siteadminpanel.php:275 +#: actions/siteadminpanel.php:257 msgid "Default timezone for the site; usually UTC." msgstr "Fuso orario predefinito; tipicamente UTC" -#: actions/siteadminpanel.php:281 -msgid "Default site language" +#: actions/siteadminpanel.php:262 +#, fuzzy +msgid "Default language" msgstr "Lingua predefinita" -#: actions/siteadminpanel.php:289 -msgid "Snapshots" -msgstr "Snapshot" +#: actions/siteadminpanel.php:263 +msgid "Site language when autodetection from browser settings is not available" +msgstr "" -#: actions/siteadminpanel.php:292 -msgid "Randomly during Web hit" -msgstr "A caso quando avviene un web hit" - -#: actions/siteadminpanel.php:293 -msgid "In a scheduled job" -msgstr "In un job pianificato" - -#: actions/siteadminpanel.php:295 -msgid "Data snapshots" -msgstr "Snapshot dei dati" - -#: actions/siteadminpanel.php:296 -msgid "When to send statistical data to status.net servers" -msgstr "Quando inviare dati statistici a status.net" - -#: actions/siteadminpanel.php:301 -msgid "Frequency" -msgstr "Frequenza" - -#: actions/siteadminpanel.php:302 -msgid "Snapshots will be sent once every N web hits" -msgstr "Gli snapshot verranno inviati ogni N web hit" - -#: actions/siteadminpanel.php:307 -msgid "Report URL" -msgstr "URL per la segnalazione" - -#: actions/siteadminpanel.php:308 -msgid "Snapshots will be sent to this URL" -msgstr "Gli snapshot verranno inviati a questo URL" - -#: actions/siteadminpanel.php:315 +#: actions/siteadminpanel.php:271 msgid "Limits" msgstr "Limiti" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Text limit" msgstr "Limiti del testo" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Maximum number of characters for notices." msgstr "Numero massimo di caratteri per messaggo" -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "Dupe limit" msgstr "Limite duplicati" -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" "Quanto tempo gli utenti devono attendere (in secondi) prima di inviare " "nuovamente lo stesso messaggio" +#: actions/sitenoticeadminpanel.php:56 +#, fuzzy +msgid "Site Notice" +msgstr "Messaggio del sito" + +#: actions/sitenoticeadminpanel.php:67 +#, fuzzy +msgid "Edit site-wide message" +msgstr "Nuovo messaggio" + +#: actions/sitenoticeadminpanel.php:103 +#, fuzzy +msgid "Unable to save site notice." +msgstr "Impossibile salvare la impostazioni dell'aspetto." + +#: actions/sitenoticeadminpanel.php:113 +msgid "Max length for the site-wide notice is 255 chars" +msgstr "" + +#: actions/sitenoticeadminpanel.php:176 +#, fuzzy +msgid "Site notice text" +msgstr "Messaggio del sito" + +#: actions/sitenoticeadminpanel.php:178 +msgid "Site-wide notice text (255 chars max; HTML okay)" +msgstr "" + +#: actions/sitenoticeadminpanel.php:198 +#, fuzzy +msgid "Save site notice" +msgstr "Messaggio del sito" + #: actions/smssettings.php:58 msgid "SMS settings" msgstr "Impostazioni SMS" @@ -3960,6 +3979,66 @@ msgstr "" msgid "No code entered" msgstr "Nessun codice inserito" +#. TRANS: Menu item for site administration +#: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 +#: lib/adminpanelaction.php:406 +msgid "Snapshots" +msgstr "Snapshot" + +#: actions/snapshotadminpanel.php:65 +#, fuzzy +msgid "Manage snapshot configuration" +msgstr "Modifica la configurazione del sito" + +#: actions/snapshotadminpanel.php:127 +msgid "Invalid snapshot run value." +msgstr "Valore di esecuzione dello snapshot non valido." + +#: actions/snapshotadminpanel.php:133 +msgid "Snapshot frequency must be a number." +msgstr "La frequenza degli snapshot deve essere un numero." + +#: actions/snapshotadminpanel.php:144 +msgid "Invalid snapshot report URL." +msgstr "URL di segnalazione snapshot non valido." + +#: actions/snapshotadminpanel.php:200 +msgid "Randomly during Web hit" +msgstr "A caso quando avviene un web hit" + +#: actions/snapshotadminpanel.php:201 +msgid "In a scheduled job" +msgstr "In un job pianificato" + +#: actions/snapshotadminpanel.php:206 +msgid "Data snapshots" +msgstr "Snapshot dei dati" + +#: actions/snapshotadminpanel.php:208 +msgid "When to send statistical data to status.net servers" +msgstr "Quando inviare dati statistici a status.net" + +#: actions/snapshotadminpanel.php:217 +msgid "Frequency" +msgstr "Frequenza" + +#: actions/snapshotadminpanel.php:218 +msgid "Snapshots will be sent once every N web hits" +msgstr "Gli snapshot verranno inviati ogni N web hit" + +#: actions/snapshotadminpanel.php:226 +msgid "Report URL" +msgstr "URL per la segnalazione" + +#: actions/snapshotadminpanel.php:227 +msgid "Snapshots will be sent to this URL" +msgstr "Gli snapshot verranno inviati a questo URL" + +#: actions/snapshotadminpanel.php:248 +#, fuzzy +msgid "Save snapshot settings" +msgstr "Salva impostazioni" + #: actions/subedit.php:70 msgid "You are not subscribed to that profile." msgstr "Non hai una abbonamento a quel profilo." @@ -4169,7 +4248,7 @@ msgstr "Nessun ID di profilo nella richiesta." msgid "Unsubscribed" msgstr "Abbonamento annullato" -#: actions/updateprofile.php:62 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -4373,16 +4452,22 @@ msgstr "Gruppi di %1$s, pagina %2$d" msgid "Search for more groups" msgstr "Cerca altri gruppi" -#: actions/usergroups.php:153 +#: actions/usergroups.php:157 #, php-format msgid "%s is not a member of any group." msgstr "%s non fa parte di alcun gruppo." -#: actions/usergroups.php:158 +#: actions/usergroups.php:162 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "Prova a [cercare dei gruppi](%%action.groupsearch%%) e iscriviti." +#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: lib/atomusernoticefeed.php:72 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "Messaggi da %1$s su %2$s!" + #: actions/version.php:73 #, php-format msgid "StatusNet %s" @@ -4438,7 +4523,7 @@ msgstr "" msgid "Plugins" msgstr "Plugin" -#: actions/version.php:196 lib/action.php:778 +#: actions/version.php:196 lib/action.php:767 msgid "Version" msgstr "Versione" @@ -4505,22 +4590,22 @@ msgstr "Impossibile aggiornare il messaggio con il nuovo URI." msgid "DB error inserting hashtag: %s" msgstr "Errore del DB nell'inserire un hashtag: %s" -#: classes/Notice.php:239 +#: classes/Notice.php:241 msgid "Problem saving notice. Too long." msgstr "Problema nel salvare il messaggio. Troppo lungo." -#: classes/Notice.php:243 +#: classes/Notice.php:245 msgid "Problem saving notice. Unknown user." msgstr "Problema nel salvare il messaggio. Utente sconosciuto." -#: classes/Notice.php:248 +#: classes/Notice.php:250 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:254 +#: classes/Notice.php:256 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." @@ -4528,19 +4613,19 @@ msgstr "" "Troppi messaggi duplicati troppo velocemente; fai una pausa e scrivi di " "nuovo tra qualche minuto." -#: classes/Notice.php:260 +#: classes/Notice.php:262 msgid "You are banned from posting notices on this site." msgstr "Ti è proibito inviare messaggi su questo sito." -#: classes/Notice.php:326 classes/Notice.php:352 +#: classes/Notice.php:328 classes/Notice.php:354 msgid "Problem saving notice." msgstr "Problema nel salvare il messaggio." -#: classes/Notice.php:911 +#: classes/Notice.php:927 msgid "Problem saving group inbox." msgstr "Problema nel salvare la casella della posta del gruppo." -#: classes/Notice.php:1442 +#: classes/Notice.php:1459 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -4565,7 +4650,12 @@ msgstr "Non hai l'abbonamento!" msgid "Couldn't delete self-subscription." msgstr "Impossibile eliminare l'auto-abbonamento." -#: classes/Subscription.php:179 lib/subs.php:69 +#: classes/Subscription.php:190 +#, fuzzy +msgid "Couldn't delete subscription OMB token." +msgstr "Impossibile eliminare l'abbonamento." + +#: classes/Subscription.php:201 lib/subs.php:69 msgid "Couldn't delete subscription." msgstr "Impossibile eliminare l'abbonamento." @@ -4574,19 +4664,19 @@ msgstr "Impossibile eliminare l'abbonamento." msgid "Welcome to %1$s, @%2$s!" msgstr "Benvenuti su %1$s, @%2$s!" -#: classes/User_group.php:462 +#: classes/User_group.php:477 msgid "Could not create group." msgstr "Impossibile creare il gruppo." -#: classes/User_group.php:471 +#: classes/User_group.php:486 msgid "Could not set group URI." msgstr "Impossibile impostare l'URI del gruppo." -#: classes/User_group.php:492 +#: classes/User_group.php:507 msgid "Could not set group membership." msgstr "Impossibile impostare la membership al gruppo." -#: classes/User_group.php:506 +#: classes/User_group.php:521 msgid "Could not save local group info." msgstr "Impossibile salvare le informazioni del gruppo locale." @@ -4627,194 +4717,188 @@ msgstr "%1$s - %2$s" msgid "Untitled page" msgstr "Pagina senza nome" -#: lib/action.php:433 +#: lib/action.php:424 msgid "Primary site navigation" msgstr "Esplorazione sito primaria" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:439 +#: lib/action.php:430 #, fuzzy msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Profilo personale e attività degli amici" -#: lib/action.php:442 +#: lib/action.php:433 #, fuzzy msgctxt "MENU" msgid "Personal" msgstr "Personale" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:444 +#: lib/action.php:435 #, fuzzy msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Modifica la tua email, immagine, password o il tuo profilo" -#: lib/action.php:447 -#, fuzzy -msgctxt "MENU" -msgid "Account" -msgstr "Account" - #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:450 +#: lib/action.php:440 #, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Connettiti con altri servizi" -#: lib/action.php:453 +#: lib/action.php:443 #, fuzzy -msgctxt "MENU" msgid "Connect" msgstr "Connetti" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:457 +#: lib/action.php:446 #, fuzzy msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Modifica la configurazione del sito" -#: lib/action.php:460 +#: lib/action.php:449 #, fuzzy msgctxt "MENU" msgid "Admin" msgstr "Amministra" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:464 +#: lib/action.php:453 #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Invita amici e colleghi a seguirti su %s" -#: lib/action.php:467 +#: lib/action.php:456 #, fuzzy msgctxt "MENU" msgid "Invite" msgstr "Invita" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:473 +#: lib/action.php:462 #, fuzzy msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Termina la tua sessione sul sito" -#: lib/action.php:476 +#: lib/action.php:465 #, fuzzy msgctxt "MENU" msgid "Logout" msgstr "Esci" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:481 +#: lib/action.php:470 #, fuzzy msgctxt "TOOLTIP" msgid "Create an account" msgstr "Crea un account" -#: lib/action.php:484 +#: lib/action.php:473 #, fuzzy msgctxt "MENU" msgid "Register" msgstr "Registrati" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:487 +#: lib/action.php:476 #, fuzzy msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Accedi al sito" -#: lib/action.php:490 +#: lib/action.php:479 #, fuzzy msgctxt "MENU" msgid "Login" msgstr "Accedi" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:493 +#: lib/action.php:482 #, fuzzy msgctxt "TOOLTIP" msgid "Help me!" msgstr "Aiutami!" -#: lib/action.php:496 +#: lib/action.php:485 #, fuzzy msgctxt "MENU" msgid "Help" msgstr "Aiuto" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:499 +#: lib/action.php:488 #, fuzzy msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Cerca persone o del testo" -#: lib/action.php:502 +#: lib/action.php:491 #, fuzzy msgctxt "MENU" msgid "Search" msgstr "Cerca" #. TRANS: DT element for site notice. String is hidden in default CSS. -#: lib/action.php:524 +#. TRANS: Menu item for site administration +#: lib/action.php:513 lib/adminpanelaction.php:398 msgid "Site notice" msgstr "Messaggio del sito" -#: lib/action.php:590 +#: lib/action.php:579 msgid "Local views" msgstr "Viste locali" -#: lib/action.php:656 +#: lib/action.php:645 msgid "Page notice" msgstr "Pagina messaggio" -#: lib/action.php:758 +#: lib/action.php:747 msgid "Secondary site navigation" msgstr "Esplorazione secondaria del sito" -#: lib/action.php:763 +#: lib/action.php:752 msgid "Help" msgstr "Aiuto" -#: lib/action.php:765 +#: lib/action.php:754 msgid "About" msgstr "Informazioni" -#: lib/action.php:767 +#: lib/action.php:756 msgid "FAQ" msgstr "FAQ" -#: lib/action.php:771 +#: lib/action.php:760 msgid "TOS" msgstr "TOS" -#: lib/action.php:774 +#: lib/action.php:763 msgid "Privacy" msgstr "Privacy" -#: lib/action.php:776 +#: lib/action.php:765 msgid "Source" msgstr "Sorgenti" -#: lib/action.php:780 +#: lib/action.php:769 msgid "Contact" msgstr "Contatti" -#: lib/action.php:782 +#: lib/action.php:771 msgid "Badge" msgstr "Badge" -#: lib/action.php:810 +#: lib/action.php:799 msgid "StatusNet software license" msgstr "Licenza del software StatusNet" -#: lib/action.php:813 +#: lib/action.php:802 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4823,12 +4907,12 @@ msgstr "" "**%%site.name%%** è un servizio di microblog offerto da [%%site.broughtby%%]" "(%%site.broughtbyurl%%). " -#: lib/action.php:815 +#: lib/action.php:804 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** è un servizio di microblog. " -#: lib/action.php:817 +#: lib/action.php:806 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4839,56 +4923,56 @@ msgstr "" "s, disponibile nei termini della licenza [GNU Affero General Public License]" "(http://www.fsf.org/licensing/licenses/agpl-3.0.html)." -#: lib/action.php:832 +#: lib/action.php:821 msgid "Site content license" msgstr "Licenza del contenuto del sito" -#: lib/action.php:837 +#: lib/action.php:826 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "I contenuti e i dati di %1$s sono privati e confidenziali." -#: lib/action.php:842 +#: lib/action.php:831 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" "I contenuti e i dati sono copyright di %1$s. Tutti i diritti riservati." -#: lib/action.php:845 +#: lib/action.php:834 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" "I contenuti e i dati sono forniti dai collaboratori. Tutti i diritti " "riservati." -#: lib/action.php:858 +#: lib/action.php:847 msgid "All " msgstr "Tutti " -#: lib/action.php:864 +#: lib/action.php:853 msgid "license." msgstr "licenza." -#: lib/action.php:1163 +#: lib/action.php:1152 msgid "Pagination" msgstr "Paginazione" -#: lib/action.php:1172 +#: lib/action.php:1161 msgid "After" msgstr "Successivi" -#: lib/action.php:1180 +#: lib/action.php:1169 msgid "Before" msgstr "Precedenti" -#: lib/activity.php:449 +#: lib/activity.php:453 msgid "Can't handle remote content yet." msgstr "Impossibile gestire contenuti remoti." -#: lib/activity.php:477 +#: lib/activity.php:481 msgid "Can't handle embedded XML content yet." msgstr "Impossibile gestire contenuti XML incorporati." -#: lib/activity.php:481 +#: lib/activity.php:485 msgid "Can't handle embedded Base64 content yet." msgstr "Impossibile gestire contenuti Base64." @@ -4903,91 +4987,80 @@ msgid "Changes to that panel are not allowed." msgstr "Le modifiche al pannello non sono consentite." #. TRANS: Client error message -#: lib/adminpanelaction.php:211 +#: lib/adminpanelaction.php:229 msgid "showForm() not implemented." msgstr "showForm() non implementata." #. TRANS: Client error message -#: lib/adminpanelaction.php:241 +#: lib/adminpanelaction.php:259 msgid "saveSettings() not implemented." msgstr "saveSettings() non implementata." #. TRANS: Client error message -#: lib/adminpanelaction.php:265 +#: lib/adminpanelaction.php:283 msgid "Unable to delete design setting." msgstr "Impossibile eliminare le impostazioni dell'aspetto." #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:330 +#: lib/adminpanelaction.php:348 msgid "Basic site configuration" msgstr "Configurazione di base" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:332 +#: lib/adminpanelaction.php:350 #, fuzzy msgctxt "MENU" msgid "Site" msgstr "Sito" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:338 +#: lib/adminpanelaction.php:356 msgid "Design configuration" msgstr "Configurazione aspetto" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:340 +#: lib/adminpanelaction.php:358 #, fuzzy msgctxt "MENU" msgid "Design" msgstr "Aspetto" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:346 +#: lib/adminpanelaction.php:364 msgid "User configuration" msgstr "Configurazione utente" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:348 -#, fuzzy -msgctxt "MENU" +#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 msgid "User" msgstr "Utente" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:354 +#: lib/adminpanelaction.php:372 msgid "Access configuration" msgstr "Configurazione di accesso" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:356 -#, fuzzy -msgctxt "MENU" -msgid "Access" -msgstr "Accesso" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:362 +#: lib/adminpanelaction.php:380 msgid "Paths configuration" msgstr "Configurazione percorsi" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:364 -#, fuzzy -msgctxt "MENU" -msgid "Paths" -msgstr "Percorsi" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:370 +#: lib/adminpanelaction.php:388 msgid "Sessions configuration" msgstr "Configurazione sessioni" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:372 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:396 #, fuzzy -msgctxt "MENU" -msgid "Sessions" -msgstr "Sessioni" +msgid "Edit site notice" +msgstr "Messaggio del sito" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:404 +#, fuzzy +msgid "Snapshots configuration" +msgstr "Configurazione percorsi" #: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." @@ -5522,6 +5595,11 @@ msgstr "Scegli un'etichetta per ridurre l'elenco" msgid "Go" msgstr "Vai" +#: lib/grantroleform.php:91 +#, php-format +msgid "Grant this user the \"%s\" role" +msgstr "" + #: lib/groupeditform.php:163 msgid "URL of the homepage or blog of the group or topic" msgstr "URL della pagina web, blog del gruppo o l'argomento" @@ -6137,10 +6215,6 @@ msgstr "Risposte" msgid "Favorites" msgstr "Preferiti" -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "Utente" - #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "In arrivo" @@ -6166,7 +6240,7 @@ msgstr "Etichette nei messaggi di %s" msgid "Unknown" msgstr "Sconosciuto" -#: lib/profileaction.php:109 lib/profileaction.php:192 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:194 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Abbonamenti" @@ -6174,23 +6248,23 @@ msgstr "Abbonamenti" msgid "All subscriptions" msgstr "Tutti gli abbonamenti" -#: lib/profileaction.php:140 lib/profileaction.php:201 lib/subgroupnav.php:90 +#: lib/profileaction.php:142 lib/profileaction.php:203 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Abbonati" -#: lib/profileaction.php:157 +#: lib/profileaction.php:159 msgid "All subscribers" msgstr "Tutti gli abbonati" -#: lib/profileaction.php:178 +#: lib/profileaction.php:180 msgid "User ID" msgstr "ID utente" -#: lib/profileaction.php:183 +#: lib/profileaction.php:185 msgid "Member since" msgstr "Membro dal" -#: lib/profileaction.php:245 +#: lib/profileaction.php:247 msgid "All groups" msgstr "Tutti i gruppi" @@ -6230,7 +6304,12 @@ msgstr "Ripetere questo messaggio?" msgid "Repeat this notice" msgstr "Ripeti questo messaggio" -#: lib/router.php:668 +#: lib/revokeroleform.php:91 +#, fuzzy, php-format +msgid "Revoke the \"%s\" role from this user" +msgstr "Blocca l'utente da questo gruppo" + +#: lib/router.php:671 msgid "No single user defined for single-user mode." msgstr "Nessun utente singolo definito per la modalità single-user." @@ -6384,47 +6463,64 @@ msgstr "Messaggio" msgid "Moderate" msgstr "Modera" -#: lib/util.php:1013 +#: lib/userprofile.php:352 +#, fuzzy +msgid "User role" +msgstr "Profilo utente" + +#: lib/userprofile.php:354 +#, fuzzy +msgctxt "role" +msgid "Administrator" +msgstr "Amministratori" + +#: lib/userprofile.php:355 +#, fuzzy +msgctxt "role" +msgid "Moderator" +msgstr "Modera" + +#: lib/util.php:1015 msgid "a few seconds ago" msgstr "pochi secondi fa" -#: lib/util.php:1015 +#: lib/util.php:1017 msgid "about a minute ago" msgstr "circa un minuto fa" -#: lib/util.php:1017 +#: lib/util.php:1019 #, php-format msgid "about %d minutes ago" msgstr "circa %d minuti fa" -#: lib/util.php:1019 +#: lib/util.php:1021 msgid "about an hour ago" msgstr "circa un'ora fa" -#: lib/util.php:1021 +#: lib/util.php:1023 #, php-format msgid "about %d hours ago" msgstr "circa %d ore fa" -#: lib/util.php:1023 +#: lib/util.php:1025 msgid "about a day ago" msgstr "circa un giorno fa" -#: lib/util.php:1025 +#: lib/util.php:1027 #, php-format msgid "about %d days ago" msgstr "circa %d giorni fa" -#: lib/util.php:1027 +#: lib/util.php:1029 msgid "about a month ago" msgstr "circa un mese fa" -#: lib/util.php:1029 +#: lib/util.php:1031 #, php-format msgid "about %d months ago" msgstr "circa %d mesi fa" -#: lib/util.php:1031 +#: lib/util.php:1033 msgid "about a year ago" msgstr "circa un anno fa" diff --git a/locale/ja/LC_MESSAGES/statusnet.po b/locale/ja/LC_MESSAGES/statusnet.po index acbcb457d3..def1722500 100644 --- a/locale/ja/LC_MESSAGES/statusnet.po +++ b/locale/ja/LC_MESSAGES/statusnet.po @@ -11,19 +11,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-02 21:02+0000\n" -"PO-Revision-Date: 2010-03-02 21:03:10+0000\n" +"POT-Creation-Date: 2010-03-04 18:55+0000\n" +"PO-Revision-Date: 2010-03-04 18:56:45+0000\n" "Language-Team: Japanese\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=1; plural=0;\n" #. TRANS: Page title -#: actions/accessadminpanel.php:55 +#. TRANS: Menu item for site administration +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 msgid "Access" msgstr "アクセス" @@ -120,7 +121,7 @@ msgstr "%1$s と友人、ページ %2$d" #. TRANS: Page title. %1$s is user nickname #. TRANS: H1 text. %1$s is user nickname -#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -181,7 +182,7 @@ msgstr "" "せを送ってみませんか。" #. TRANS: H1 text -#: actions/all.php:174 +#: actions/all.php:178 msgid "You and friends" msgstr "あなたと友人" @@ -208,11 +209,11 @@ msgstr "%2$s に %1$s と友人からの更新があります!" #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 -#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 +#: actions/apitimelinegroup.php:160 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:148 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 msgid "API method not found." msgstr "API メソッドが見つかりません。" @@ -573,7 +574,7 @@ msgid "" "give access to your %4$s account to third parties you trust." msgstr "" -#: actions/apioauthauthorize.php:310 +#: actions/apioauthauthorize.php:310 lib/action.php:438 msgid "Account" msgstr "アカウント" @@ -660,18 +661,6 @@ msgstr "%1$s / %2$s からのお気に入り" msgid "%1$s updates favorited by %2$s / %2$s." msgstr "%1$s は %2$s でお気に入りを更新しました / %2$s。" -#: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:138 actions/userrss.php:90 -#, php-format -msgid "%s timeline" -msgstr "%s のタイムライン" - -#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 -#: actions/userrss.php:92 -#, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "%1$s から %2$s 上の更新をしました!" - #: actions/apitimelinementions.php:117 #, php-format msgid "%1$s / Updates mentioning %2$s" @@ -682,12 +671,12 @@ msgstr "%1$s / %2$s について更新" msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "%2$s からアップデートに答える %1$s アップデート" -#: actions/apitimelinepublic.php:111 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "%s のパブリックタイムライン" -#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "皆からの %s アップデート!" @@ -934,7 +923,7 @@ msgid "Conversation" msgstr "会話" #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:216 lib/searchgroupnav.php:82 +#: lib/profileaction.php:218 lib/searchgroupnav.php:82 msgid "Notices" msgstr "つぶやき" @@ -953,7 +942,7 @@ msgstr "このアプリケーションのオーナーではありません。" #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1228 +#: lib/action.php:1217 msgid "There was a problem with your session token." msgstr "あなたのセッショントークンに関する問題がありました。" @@ -1149,8 +1138,9 @@ msgstr "デフォルトへリセットする" #: actions/designadminpanel.php:586 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 +#: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:208 #: actions/tagother.php:154 actions/useradminpanel.php:294 #: lib/applicationeditform.php:333 lib/applicationeditform.php:334 #: lib/designsettings.php:256 lib/groupeditform.php:202 @@ -1266,7 +1256,7 @@ msgstr "記述が長すぎます。(最長 %d 字)" msgid "Could not update group." msgstr "グループを更新できません。" -#: actions/editgroup.php:264 classes/User_group.php:478 +#: actions/editgroup.php:264 classes/User_group.php:493 msgid "Could not create aliases." msgstr "別名を作成できません。" @@ -1391,7 +1381,7 @@ msgid "Cannot normalize that email address" msgstr "そのメールアドレスを正規化できません" #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:143 +#: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "有効なメールアドレスではありません。" @@ -1585,6 +1575,25 @@ msgstr "そのようなファイルはありません。" msgid "Cannot read file." msgstr "ファイルを読み込めません。" +#: actions/grantrole.php:62 actions/revokerole.php:62 +#, fuzzy +msgid "Invalid role." +msgstr "不正なトークン。" + +#: actions/grantrole.php:66 actions/revokerole.php:66 +msgid "This role is reserved and cannot be set." +msgstr "" + +#: actions/grantrole.php:75 +#, fuzzy +msgid "You cannot grant user roles on this site." +msgstr "あなたはこのサイトのサンドボックスユーザができません。" + +#: actions/grantrole.php:82 +#, fuzzy +msgid "User already has this role." +msgstr "ユーザは既に黙っています。" + #: actions/groupblock.php:71 actions/groupunblock.php:71 #: actions/makeadmin.php:71 actions/subedit.php:46 #: lib/profileformaction.php:70 @@ -1731,12 +1740,18 @@ msgstr "管理者にする" msgid "Make this user an admin" msgstr "このユーザを管理者にする" +#: actions/grouprss.php:138 actions/userrss.php:90 +#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#, php-format +msgid "%s timeline" +msgstr "%s のタイムライン" + #: actions/grouprss.php:140 #, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "%2$s 上の %1$s のメンバーから更新する" -#: actions/groups.php:62 lib/profileaction.php:210 lib/profileaction.php:230 +#: actions/groups.php:62 lib/profileaction.php:212 lib/profileaction.php:232 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" msgstr "グループ" @@ -2355,8 +2370,8 @@ msgstr "内容種別 " msgid "Only " msgstr "だけ " -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 -#: lib/apiaction.php:1068 lib/apiaction.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1042 +#: lib/apiaction.php:1070 lib/apiaction.php:1179 msgid "Not a supported data format." msgstr "サポートされていないデータ形式。" @@ -2497,7 +2512,8 @@ msgstr "新しいパスワードを保存できません。" msgid "Password saved." msgstr "パスワードが保存されました。" -#: actions/pathsadminpanel.php:59 +#. TRANS: Menu item for site administration +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 msgid "Paths" msgstr "パス" @@ -2617,7 +2633,7 @@ msgstr "バックグラウンドディレクトリ" msgid "SSL" msgstr "SSL" -#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 +#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202 msgid "Never" msgstr "" @@ -2672,11 +2688,11 @@ msgstr "正しいタグではありません: %s" msgid "Users self-tagged with %1$s - page %2$d" msgstr "ユーザ自身がつけたタグ %1$s - ページ %2$d" -#: actions/postnotice.php:84 +#: actions/postnotice.php:95 msgid "Invalid notice content" msgstr "不正なつぶやき内容" -#: actions/postnotice.php:90 +#: actions/postnotice.php:101 #, php-format msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" @@ -2757,7 +2773,7 @@ msgstr "" "自分自身についてのタグ (アルファベット、数字、-、.、_)、カンマまたは空白区切" "りで" -#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 +#: actions/profilesettings.php:151 msgid "Language" msgstr "言語" @@ -2783,7 +2799,7 @@ msgstr "自分をフォローしている者を自動的にフォローする (B msgid "Bio is too long (max %d chars)." msgstr "自己紹介が長すぎます (最長140文字)。" -#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:151 msgid "Timezone not selected." msgstr "タイムゾーンが選ばれていません。" @@ -3101,7 +3117,7 @@ msgid "Same as password above. Required." msgstr "上のパスワードと同じです。 必須。" #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 msgid "Email" msgstr "メール" @@ -3205,7 +3221,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "プロファイルサービスまたはマイクロブロギングサービスのURL" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:368 +#: lib/userprofile.php:394 msgid "Subscribe" msgstr "フォロー" @@ -3310,6 +3326,16 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "%2$s 上の %1$s への返信!" +#: actions/revokerole.php:75 +#, fuzzy +msgid "You cannot revoke user roles on this site." +msgstr "あなたはこのサイトでユーザを黙らせることができません。" + +#: actions/revokerole.php:82 +#, fuzzy +msgid "User doesn't have this role." +msgstr "合っているプロフィールのないユーザ" + #: actions/rsd.php:146 actions/version.php:157 msgid "StatusNet" msgstr "StatusNet" @@ -3322,7 +3348,9 @@ msgstr "あなたはこのサイトのサンドボックスユーザができま msgid "User is already sandboxed." msgstr "ユーザはすでにサンドボックスです。" +#. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:390 msgid "Sessions" msgstr "セッション" @@ -3346,7 +3374,7 @@ msgstr "セッションデバッグ" msgid "Turn on debugging output for sessions." msgstr "セッションのためのデバッグ出力をオン。" -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "サイト設定の保存" @@ -3377,8 +3405,8 @@ msgstr "組織" msgid "Description" msgstr "概要" -#: actions/showapplication.php:192 actions/showgroup.php:437 -#: lib/profileaction.php:174 +#: actions/showapplication.php:192 actions/showgroup.php:438 +#: lib/profileaction.php:176 msgid "Statistics" msgstr "統計データ" @@ -3521,45 +3549,45 @@ msgstr "別名" msgid "Group actions" msgstr "グループアクション" -#: actions/showgroup.php:336 +#: actions/showgroup.php:337 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "%s グループのつぶやきフィード (RSS 1.0)" -#: actions/showgroup.php:342 +#: actions/showgroup.php:343 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "%s グループのつぶやきフィード (RSS 2.0)" -#: actions/showgroup.php:348 +#: actions/showgroup.php:349 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "%s グループのつぶやきフィード (Atom)" -#: actions/showgroup.php:353 +#: actions/showgroup.php:354 #, php-format msgid "FOAF for %s group" msgstr "%s グループの FOAF" -#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 +#: actions/showgroup.php:390 actions/showgroup.php:447 lib/groupnav.php:91 msgid "Members" msgstr "メンバー" -#: actions/showgroup.php:394 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 +#: actions/showgroup.php:395 lib/profileaction.php:117 +#: lib/profileaction.php:150 lib/profileaction.php:238 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(なし)" -#: actions/showgroup.php:400 +#: actions/showgroup.php:401 msgid "All members" msgstr "全てのメンバー" -#: actions/showgroup.php:440 +#: actions/showgroup.php:441 msgid "Created" msgstr "作成日" -#: actions/showgroup.php:456 +#: actions/showgroup.php:457 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3574,7 +3602,7 @@ msgstr "" "する短いメッセージを共有します。[今すぐ参加](%%%%action.register%%%%) してこ" "のグループの一員になりましょう! ([もっと読む](%%%%doc.help%%%%))" -#: actions/showgroup.php:462 +#: actions/showgroup.php:463 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3587,7 +3615,7 @@ msgstr "" "wikipedia.org/wiki/Micro-blogging) サービス。メンバーは彼らの暮らしと興味に関" "する短いメッセージを共有します。" -#: actions/showgroup.php:490 +#: actions/showgroup.php:491 msgid "Admins" msgstr "管理者" @@ -3709,151 +3737,142 @@ msgid "User is already silenced." msgstr "ユーザは既に黙っています。" #: actions/siteadminpanel.php:69 -msgid "Basic settings for this StatusNet site." +#, fuzzy +msgid "Basic settings for this StatusNet site" msgstr "この StatusNet サイトの基本設定。" -#: actions/siteadminpanel.php:132 +#: actions/siteadminpanel.php:133 msgid "Site name must have non-zero length." msgstr "サイト名は長さ0ではいけません。" -#: actions/siteadminpanel.php:140 +#: actions/siteadminpanel.php:141 msgid "You must have a valid contact email address." msgstr "有効な連絡用メールアドレスがなければなりません。" -#: actions/siteadminpanel.php:158 +#: actions/siteadminpanel.php:159 #, php-format msgid "Unknown language \"%s\"." msgstr "不明な言語 \"%s\"" #: actions/siteadminpanel.php:165 -msgid "Invalid snapshot report URL." -msgstr "不正なスナップショットレポートURL。" - -#: actions/siteadminpanel.php:171 -msgid "Invalid snapshot run value." -msgstr "不正なスナップショットランバリュー" - -#: actions/siteadminpanel.php:177 -msgid "Snapshot frequency must be a number." -msgstr "スナップショット頻度は数でなければなりません。" - -#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "最小のテキスト制限は140字です。" -#: actions/siteadminpanel.php:189 +#: actions/siteadminpanel.php:171 msgid "Dupe limit must 1 or more seconds." msgstr "デュープ制限は1秒以上でなければなりません。" -#: actions/siteadminpanel.php:239 +#: actions/siteadminpanel.php:221 msgid "General" msgstr "一般" -#: actions/siteadminpanel.php:242 +#: actions/siteadminpanel.php:224 msgid "Site name" msgstr "サイト名" -#: actions/siteadminpanel.php:243 +#: actions/siteadminpanel.php:225 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "あなたのサイトの名前、\"Yourcompany Microblog\"のような。" -#: actions/siteadminpanel.php:247 +#: actions/siteadminpanel.php:229 msgid "Brought by" msgstr "持って来られます" -#: actions/siteadminpanel.php:248 +#: actions/siteadminpanel.php:230 msgid "Text used for credits link in footer of each page" msgstr "" "クレジットに使用されるテキストは、それぞれのページのフッターでリンクされま" "す。" -#: actions/siteadminpanel.php:252 +#: actions/siteadminpanel.php:234 msgid "Brought by URL" msgstr "URLで、持って来られます" -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:235 msgid "URL used for credits link in footer of each page" msgstr "" "クレジットに使用されるURLは、それぞれのページのフッターでリンクされます。" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:239 msgid "Contact email address for your site" msgstr "あなたのサイトにコンタクトするメールアドレス" -#: actions/siteadminpanel.php:263 +#: actions/siteadminpanel.php:245 msgid "Local" msgstr "ローカル" -#: actions/siteadminpanel.php:274 +#: actions/siteadminpanel.php:256 msgid "Default timezone" msgstr "デフォルトタイムゾーン" -#: actions/siteadminpanel.php:275 +#: actions/siteadminpanel.php:257 msgid "Default timezone for the site; usually UTC." msgstr "サイトのデフォルトタイムゾーン; 通常UTC。" -#: actions/siteadminpanel.php:281 -msgid "Default site language" +#: actions/siteadminpanel.php:262 +#, fuzzy +msgid "Default language" msgstr "デフォルトサイト言語" -#: actions/siteadminpanel.php:289 -msgid "Snapshots" -msgstr "スナップショット" - -#: actions/siteadminpanel.php:292 -msgid "Randomly during Web hit" +#: actions/siteadminpanel.php:263 +msgid "Site language when autodetection from browser settings is not available" msgstr "" -#: actions/siteadminpanel.php:293 -msgid "In a scheduled job" -msgstr "予定されているジョブで" - -#: actions/siteadminpanel.php:295 -msgid "Data snapshots" -msgstr "データスナップショット" - -#: actions/siteadminpanel.php:296 -msgid "When to send statistical data to status.net servers" -msgstr "いつ status.net サーバに統計データを送りますか" - -#: actions/siteadminpanel.php:301 -msgid "Frequency" -msgstr "頻度" - -#: actions/siteadminpanel.php:302 -msgid "Snapshots will be sent once every N web hits" -msgstr "レポート URL" - -#: actions/siteadminpanel.php:307 -msgid "Report URL" -msgstr "レポート URL" - -#: actions/siteadminpanel.php:308 -msgid "Snapshots will be sent to this URL" -msgstr "このURLにスナップショットを送るでしょう" - -#: actions/siteadminpanel.php:315 +#: actions/siteadminpanel.php:271 msgid "Limits" msgstr "制限" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Text limit" msgstr "テキスト制限" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Maximum number of characters for notices." msgstr "つぶやきの文字の最大数" -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "Dupe limit" msgstr "デュープ制限" -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" "どれくらい長い間(秒)、ユーザは、再び同じものを投稿するのを待たなければならな" "いか。" +#: actions/sitenoticeadminpanel.php:56 +#, fuzzy +msgid "Site Notice" +msgstr "サイトつぶやき" + +#: actions/sitenoticeadminpanel.php:67 +#, fuzzy +msgid "Edit site-wide message" +msgstr "新しいメッセージ" + +#: actions/sitenoticeadminpanel.php:103 +#, fuzzy +msgid "Unable to save site notice." +msgstr "あなたのデザイン設定を保存できません。" + +#: actions/sitenoticeadminpanel.php:113 +msgid "Max length for the site-wide notice is 255 chars" +msgstr "" + +#: actions/sitenoticeadminpanel.php:176 +#, fuzzy +msgid "Site notice text" +msgstr "サイトつぶやき" + +#: actions/sitenoticeadminpanel.php:178 +msgid "Site-wide notice text (255 chars max; HTML okay)" +msgstr "" + +#: actions/sitenoticeadminpanel.php:198 +#, fuzzy +msgid "Save site notice" +msgstr "サイトつぶやき" + #: actions/smssettings.php:58 msgid "SMS settings" msgstr "SMS 設定" @@ -3954,6 +3973,66 @@ msgstr "" msgid "No code entered" msgstr "コードが入力されていません" +#. TRANS: Menu item for site administration +#: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 +#: lib/adminpanelaction.php:406 +msgid "Snapshots" +msgstr "スナップショット" + +#: actions/snapshotadminpanel.php:65 +#, fuzzy +msgid "Manage snapshot configuration" +msgstr "サイト設定の変更" + +#: actions/snapshotadminpanel.php:127 +msgid "Invalid snapshot run value." +msgstr "不正なスナップショットランバリュー" + +#: actions/snapshotadminpanel.php:133 +msgid "Snapshot frequency must be a number." +msgstr "スナップショット頻度は数でなければなりません。" + +#: actions/snapshotadminpanel.php:144 +msgid "Invalid snapshot report URL." +msgstr "不正なスナップショットレポートURL。" + +#: actions/snapshotadminpanel.php:200 +msgid "Randomly during Web hit" +msgstr "" + +#: actions/snapshotadminpanel.php:201 +msgid "In a scheduled job" +msgstr "予定されているジョブで" + +#: actions/snapshotadminpanel.php:206 +msgid "Data snapshots" +msgstr "データスナップショット" + +#: actions/snapshotadminpanel.php:208 +msgid "When to send statistical data to status.net servers" +msgstr "いつ status.net サーバに統計データを送りますか" + +#: actions/snapshotadminpanel.php:217 +msgid "Frequency" +msgstr "頻度" + +#: actions/snapshotadminpanel.php:218 +msgid "Snapshots will be sent once every N web hits" +msgstr "レポート URL" + +#: actions/snapshotadminpanel.php:226 +msgid "Report URL" +msgstr "レポート URL" + +#: actions/snapshotadminpanel.php:227 +msgid "Snapshots will be sent to this URL" +msgstr "このURLにスナップショットを送るでしょう" + +#: actions/snapshotadminpanel.php:248 +#, fuzzy +msgid "Save snapshot settings" +msgstr "サイト設定の保存" + #: actions/subedit.php:70 msgid "You are not subscribed to that profile." msgstr "あなたはそのプロファイルにフォローされていません。" @@ -4162,7 +4241,7 @@ msgstr "リクエスト内にプロファイルIDがありません。" msgid "Unsubscribed" msgstr "フォロー解除済み" -#: actions/updateprofile.php:62 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -4366,16 +4445,22 @@ msgstr "%1$s グループ、ページ %2$d" msgid "Search for more groups" msgstr "もっとグループを検索" -#: actions/usergroups.php:153 +#: actions/usergroups.php:157 #, php-format msgid "%s is not a member of any group." msgstr "%s はどのグループのメンバーでもありません。" -#: actions/usergroups.php:158 +#: actions/usergroups.php:162 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "[グループを探して](%%action.groupsearch%%)それに加入してください。" +#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: lib/atomusernoticefeed.php:72 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "%1$s から %2$s 上の更新をしました!" + #: actions/version.php:73 #, php-format msgid "StatusNet %s" @@ -4421,7 +4506,7 @@ msgstr "" msgid "Plugins" msgstr "プラグイン" -#: actions/version.php:196 lib/action.php:778 +#: actions/version.php:196 lib/action.php:767 msgid "Version" msgstr "バージョン" @@ -4490,21 +4575,21 @@ msgstr "新しいURIでメッセージをアップデートできませんでし msgid "DB error inserting hashtag: %s" msgstr "ハッシュタグ追加 DB エラー: %s" -#: classes/Notice.php:239 +#: classes/Notice.php:241 msgid "Problem saving notice. Too long." msgstr "つぶやきを保存する際に問題が発生しました。長すぎです。" -#: classes/Notice.php:243 +#: classes/Notice.php:245 msgid "Problem saving notice. Unknown user." msgstr "つぶやきを保存する際に問題が発生しました。不明なユーザです。" -#: classes/Notice.php:248 +#: classes/Notice.php:250 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" "多すぎるつぶやきが速すぎます; 数分間の休みを取ってから再投稿してください。" -#: classes/Notice.php:254 +#: classes/Notice.php:256 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." @@ -4512,19 +4597,19 @@ msgstr "" "多すぎる重複メッセージが速すぎます; 数分間休みを取ってから再度投稿してくださ" "い。" -#: classes/Notice.php:260 +#: classes/Notice.php:262 msgid "You are banned from posting notices on this site." msgstr "あなたはこのサイトでつぶやきを投稿するのが禁止されています。" -#: classes/Notice.php:326 classes/Notice.php:352 +#: classes/Notice.php:328 classes/Notice.php:354 msgid "Problem saving notice." msgstr "つぶやきを保存する際に問題が発生しました。" -#: classes/Notice.php:911 +#: classes/Notice.php:927 msgid "Problem saving group inbox." msgstr "グループ受信箱を保存する際に問題が発生しました。" -#: classes/Notice.php:1442 +#: classes/Notice.php:1459 #, php-format msgid "RT @%1$s %2$s" msgstr "" @@ -4549,7 +4634,12 @@ msgstr "フォローしていません!" msgid "Couldn't delete self-subscription." msgstr "自己フォローを削除できません。" -#: classes/Subscription.php:179 lib/subs.php:69 +#: classes/Subscription.php:190 +#, fuzzy +msgid "Couldn't delete subscription OMB token." +msgstr "フォローを削除できません" + +#: classes/Subscription.php:201 lib/subs.php:69 msgid "Couldn't delete subscription." msgstr "フォローを削除できません" @@ -4558,20 +4648,20 @@ msgstr "フォローを削除できません" msgid "Welcome to %1$s, @%2$s!" msgstr "ようこそ %1$s、@%2$s!" -#: classes/User_group.php:462 +#: classes/User_group.php:477 msgid "Could not create group." msgstr "グループを作成できません。" -#: classes/User_group.php:471 +#: classes/User_group.php:486 #, fuzzy msgid "Could not set group URI." msgstr "グループメンバーシップをセットできません。" -#: classes/User_group.php:492 +#: classes/User_group.php:507 msgid "Could not set group membership." msgstr "グループメンバーシップをセットできません。" -#: classes/User_group.php:506 +#: classes/User_group.php:521 #, fuzzy msgid "Could not save local group info." msgstr "フォローを保存できません。" @@ -4613,194 +4703,188 @@ msgstr "" msgid "Untitled page" msgstr "名称未設定ページ" -#: lib/action.php:433 +#: lib/action.php:424 msgid "Primary site navigation" msgstr "プライマリサイトナビゲーション" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:439 +#: lib/action.php:430 #, fuzzy msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "パーソナルプロファイルと友人のタイムライン" -#: lib/action.php:442 +#: lib/action.php:433 #, fuzzy msgctxt "MENU" msgid "Personal" msgstr "パーソナル" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:444 +#: lib/action.php:435 #, fuzzy msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "メールアドレス、アバター、パスワード、プロパティの変更" -#: lib/action.php:447 -#, fuzzy -msgctxt "MENU" -msgid "Account" -msgstr "アカウント" - #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:450 +#: lib/action.php:440 #, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" msgstr "サービスへ接続" -#: lib/action.php:453 +#: lib/action.php:443 #, fuzzy -msgctxt "MENU" msgid "Connect" msgstr "接続" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:457 +#: lib/action.php:446 #, fuzzy msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "サイト設定の変更" -#: lib/action.php:460 +#: lib/action.php:449 #, fuzzy msgctxt "MENU" msgid "Admin" msgstr "管理者" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:464 +#: lib/action.php:453 #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "友人や同僚が %s で加わるよう誘ってください。" -#: lib/action.php:467 +#: lib/action.php:456 #, fuzzy msgctxt "MENU" msgid "Invite" msgstr "招待" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:473 +#: lib/action.php:462 #, fuzzy msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "サイトからログアウト" -#: lib/action.php:476 +#: lib/action.php:465 #, fuzzy msgctxt "MENU" msgid "Logout" msgstr "ログアウト" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:481 +#: lib/action.php:470 #, fuzzy msgctxt "TOOLTIP" msgid "Create an account" msgstr "アカウントを作成" -#: lib/action.php:484 +#: lib/action.php:473 #, fuzzy msgctxt "MENU" msgid "Register" msgstr "登録" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:487 +#: lib/action.php:476 #, fuzzy msgctxt "TOOLTIP" msgid "Login to the site" msgstr "サイトへログイン" -#: lib/action.php:490 +#: lib/action.php:479 #, fuzzy msgctxt "MENU" msgid "Login" msgstr "ログイン" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:493 +#: lib/action.php:482 #, fuzzy msgctxt "TOOLTIP" msgid "Help me!" msgstr "助けて!" -#: lib/action.php:496 +#: lib/action.php:485 #, fuzzy msgctxt "MENU" msgid "Help" msgstr "ヘルプ" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:499 +#: lib/action.php:488 #, fuzzy msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "人々かテキストを検索" -#: lib/action.php:502 +#: lib/action.php:491 #, fuzzy msgctxt "MENU" msgid "Search" msgstr "検索" #. TRANS: DT element for site notice. String is hidden in default CSS. -#: lib/action.php:524 +#. TRANS: Menu item for site administration +#: lib/action.php:513 lib/adminpanelaction.php:398 msgid "Site notice" msgstr "サイトつぶやき" -#: lib/action.php:590 +#: lib/action.php:579 msgid "Local views" msgstr "ローカルビュー" -#: lib/action.php:656 +#: lib/action.php:645 msgid "Page notice" msgstr "ページつぶやき" -#: lib/action.php:758 +#: lib/action.php:747 msgid "Secondary site navigation" msgstr "セカンダリサイトナビゲーション" -#: lib/action.php:763 +#: lib/action.php:752 msgid "Help" msgstr "ヘルプ" -#: lib/action.php:765 +#: lib/action.php:754 msgid "About" msgstr "About" -#: lib/action.php:767 +#: lib/action.php:756 msgid "FAQ" msgstr "よくある質問" -#: lib/action.php:771 +#: lib/action.php:760 msgid "TOS" msgstr "" -#: lib/action.php:774 +#: lib/action.php:763 msgid "Privacy" msgstr "プライバシー" -#: lib/action.php:776 +#: lib/action.php:765 msgid "Source" msgstr "ソース" -#: lib/action.php:780 +#: lib/action.php:769 msgid "Contact" msgstr "連絡先" -#: lib/action.php:782 +#: lib/action.php:771 msgid "Badge" msgstr "バッジ" -#: lib/action.php:810 +#: lib/action.php:799 msgid "StatusNet software license" msgstr "StatusNet ソフトウェアライセンス" -#: lib/action.php:813 +#: lib/action.php:802 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4809,12 +4893,12 @@ msgstr "" "**%%site.name%%** は [%%site.broughtby%%](%%site.broughtbyurl%%) が提供するマ" "イクロブログサービスです。 " -#: lib/action.php:815 +#: lib/action.php:804 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** はマイクロブログサービスです。 " -#: lib/action.php:817 +#: lib/action.php:806 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4825,53 +4909,53 @@ msgstr "" "いています。 ライセンス [GNU Affero General Public License](http://www.fsf." "org/licensing/licenses/agpl-3.0.html)。" -#: lib/action.php:832 +#: lib/action.php:821 msgid "Site content license" msgstr "サイト内容ライセンス" -#: lib/action.php:837 +#: lib/action.php:826 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:842 +#: lib/action.php:831 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:845 +#: lib/action.php:834 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" -#: lib/action.php:858 +#: lib/action.php:847 msgid "All " msgstr "全て " -#: lib/action.php:864 +#: lib/action.php:853 msgid "license." msgstr "ライセンス。" -#: lib/action.php:1163 +#: lib/action.php:1152 msgid "Pagination" msgstr "ページ化" -#: lib/action.php:1172 +#: lib/action.php:1161 msgid "After" msgstr "<<後" -#: lib/action.php:1180 +#: lib/action.php:1169 msgid "Before" msgstr "前>>" -#: lib/activity.php:449 +#: lib/activity.php:453 msgid "Can't handle remote content yet." msgstr "" -#: lib/activity.php:477 +#: lib/activity.php:481 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activity.php:481 +#: lib/activity.php:485 msgid "Can't handle embedded Base64 content yet." msgstr "" @@ -4886,91 +4970,80 @@ msgid "Changes to that panel are not allowed." msgstr "そのパネルへの変更は許可されていません。" #. TRANS: Client error message -#: lib/adminpanelaction.php:211 +#: lib/adminpanelaction.php:229 msgid "showForm() not implemented." msgstr "showForm() は実装されていません。" #. TRANS: Client error message -#: lib/adminpanelaction.php:241 +#: lib/adminpanelaction.php:259 msgid "saveSettings() not implemented." msgstr "saveSettings() は実装されていません。" #. TRANS: Client error message -#: lib/adminpanelaction.php:265 +#: lib/adminpanelaction.php:283 msgid "Unable to delete design setting." msgstr "デザイン設定を削除できません。" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:330 +#: lib/adminpanelaction.php:348 msgid "Basic site configuration" msgstr "基本サイト設定" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:332 +#: lib/adminpanelaction.php:350 #, fuzzy msgctxt "MENU" msgid "Site" msgstr "サイト" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:338 +#: lib/adminpanelaction.php:356 msgid "Design configuration" msgstr "デザイン設定" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:340 +#: lib/adminpanelaction.php:358 #, fuzzy msgctxt "MENU" msgid "Design" msgstr "デザイン" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:346 +#: lib/adminpanelaction.php:364 msgid "User configuration" msgstr "ユーザ設定" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:348 -#, fuzzy -msgctxt "MENU" +#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 msgid "User" msgstr "ユーザ" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:354 +#: lib/adminpanelaction.php:372 msgid "Access configuration" msgstr "アクセス設定" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:356 -#, fuzzy -msgctxt "MENU" -msgid "Access" -msgstr "アクセス" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:362 +#: lib/adminpanelaction.php:380 msgid "Paths configuration" msgstr "パス設定" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:364 -#, fuzzy -msgctxt "MENU" -msgid "Paths" -msgstr "パス" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:370 +#: lib/adminpanelaction.php:388 msgid "Sessions configuration" msgstr "セッション設定" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:372 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:396 #, fuzzy -msgctxt "MENU" -msgid "Sessions" -msgstr "セッション" +msgid "Edit site notice" +msgstr "サイトつぶやき" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:404 +#, fuzzy +msgid "Snapshots configuration" +msgstr "パス設定" #: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." @@ -5460,6 +5533,11 @@ msgstr "タグを選んで、リストを狭くしてください" msgid "Go" msgstr "移動" +#: lib/grantroleform.php:91 +#, php-format +msgid "Grant this user the \"%s\" role" +msgstr "" + #: lib/groupeditform.php:163 msgid "URL of the homepage or blog of the group or topic" msgstr "グループやトピックのホームページやブログの URL" @@ -6081,10 +6159,6 @@ msgstr "返信" msgid "Favorites" msgstr "お気に入り" -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "ユーザ" - #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "受信箱" @@ -6110,7 +6184,7 @@ msgstr "%s のつぶやきのタグ" msgid "Unknown" msgstr "不明" -#: lib/profileaction.php:109 lib/profileaction.php:192 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:194 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "フォロー" @@ -6118,23 +6192,23 @@ msgstr "フォロー" msgid "All subscriptions" msgstr "すべてのフォロー" -#: lib/profileaction.php:140 lib/profileaction.php:201 lib/subgroupnav.php:90 +#: lib/profileaction.php:142 lib/profileaction.php:203 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "フォローされている" -#: lib/profileaction.php:157 +#: lib/profileaction.php:159 msgid "All subscribers" msgstr "すべてのフォローされている" -#: lib/profileaction.php:178 +#: lib/profileaction.php:180 msgid "User ID" msgstr "ユーザID" -#: lib/profileaction.php:183 +#: lib/profileaction.php:185 msgid "Member since" msgstr "利用開始日" -#: lib/profileaction.php:245 +#: lib/profileaction.php:247 msgid "All groups" msgstr "全てのグループ" @@ -6174,7 +6248,12 @@ msgstr "このつぶやきを繰り返しますか?" msgid "Repeat this notice" msgstr "このつぶやきを繰り返す" -#: lib/router.php:668 +#: lib/revokeroleform.php:91 +#, fuzzy, php-format +msgid "Revoke the \"%s\" role from this user" +msgstr "このグループからこのユーザをブロック" + +#: lib/router.php:671 msgid "No single user defined for single-user mode." msgstr "single-user モードのためのシングルユーザが定義されていません。" @@ -6329,47 +6408,64 @@ msgstr "メッセージ" msgid "Moderate" msgstr "管理" -#: lib/util.php:1013 +#: lib/userprofile.php:352 +#, fuzzy +msgid "User role" +msgstr "ユーザプロファイル" + +#: lib/userprofile.php:354 +#, fuzzy +msgctxt "role" +msgid "Administrator" +msgstr "管理者" + +#: lib/userprofile.php:355 +#, fuzzy +msgctxt "role" +msgid "Moderator" +msgstr "管理" + +#: lib/util.php:1015 msgid "a few seconds ago" msgstr "数秒前" -#: lib/util.php:1015 +#: lib/util.php:1017 msgid "about a minute ago" msgstr "約 1 分前" -#: lib/util.php:1017 +#: lib/util.php:1019 #, php-format msgid "about %d minutes ago" msgstr "約 %d 分前" -#: lib/util.php:1019 +#: lib/util.php:1021 msgid "about an hour ago" msgstr "約 1 時間前" -#: lib/util.php:1021 +#: lib/util.php:1023 #, php-format msgid "about %d hours ago" msgstr "約 %d 時間前" -#: lib/util.php:1023 +#: lib/util.php:1025 msgid "about a day ago" msgstr "約 1 日前" -#: lib/util.php:1025 +#: lib/util.php:1027 #, php-format msgid "about %d days ago" msgstr "約 %d 日前" -#: lib/util.php:1027 +#: lib/util.php:1029 msgid "about a month ago" msgstr "約 1 ヵ月前" -#: lib/util.php:1029 +#: lib/util.php:1031 #, php-format msgid "about %d months ago" msgstr "約 %d ヵ月前" -#: lib/util.php:1031 +#: lib/util.php:1033 msgid "about a year ago" msgstr "約 1 年前" diff --git a/locale/ko/LC_MESSAGES/statusnet.po b/locale/ko/LC_MESSAGES/statusnet.po index aca8a093ad..fa8b672393 100644 --- a/locale/ko/LC_MESSAGES/statusnet.po +++ b/locale/ko/LC_MESSAGES/statusnet.po @@ -7,19 +7,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-02 21:02+0000\n" -"PO-Revision-Date: 2010-03-02 21:03:13+0000\n" +"POT-Creation-Date: 2010-03-04 18:55+0000\n" +"PO-Revision-Date: 2010-03-04 18:56:48+0000\n" "Language-Team: Korean\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ko\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=1; plural=0;\n" #. TRANS: Page title -#: actions/accessadminpanel.php:55 +#. TRANS: Menu item for site administration +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 #, fuzzy msgid "Access" msgstr "수락" @@ -123,7 +124,7 @@ msgstr "%s 와 친구들, %d 페이지" #. TRANS: Page title. %1$s is user nickname #. TRANS: H1 text. %1$s is user nickname -#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -178,7 +179,7 @@ msgid "" msgstr "" #. TRANS: H1 text -#: actions/all.php:174 +#: actions/all.php:178 #, fuzzy msgid "You and friends" msgstr "%s 및 친구들" @@ -206,11 +207,11 @@ msgstr "%1$s 및 %2$s에 있는 친구들의 업데이트!" #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 -#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 +#: actions/apitimelinegroup.php:160 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:148 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 #, fuzzy msgid "API method not found." msgstr "API 메서드를 찾을 수 없습니다." @@ -583,7 +584,7 @@ msgid "" "give access to your %4$s account to third parties you trust." msgstr "" -#: actions/apioauthauthorize.php:310 +#: actions/apioauthauthorize.php:310 lib/action.php:438 msgid "Account" msgstr "계정" @@ -675,18 +676,6 @@ msgstr "%s / %s의 좋아하는 글들" msgid "%1$s updates favorited by %2$s / %2$s." msgstr "%s 좋아하는 글이 업데이트 됐습니다. %S에 의해 / %s." -#: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:138 actions/userrss.php:90 -#, php-format -msgid "%s timeline" -msgstr "%s 타임라인" - -#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 -#: actions/userrss.php:92 -#, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "%2$s에 있는 %1$s의 업데이트!" - #: actions/apitimelinementions.php:117 #, fuzzy, php-format msgid "%1$s / Updates mentioning %2$s" @@ -697,12 +686,12 @@ msgstr "%1$s / %2$s에게 답신 업데이트" msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "%1$s님이 %2$s/%3$s의 업데이트에 답변했습니다." -#: actions/apitimelinepublic.php:111 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "%s 공개 타임라인" -#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "모두로부터의 업데이트 %s개!" @@ -954,7 +943,7 @@ msgid "Conversation" msgstr "인증 코드" #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:216 lib/searchgroupnav.php:82 +#: lib/profileaction.php:218 lib/searchgroupnav.php:82 msgid "Notices" msgstr "통지" @@ -976,7 +965,7 @@ msgstr "당신은 해당 그룹의 멤버가 아닙니다." #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1228 +#: lib/action.php:1217 msgid "There was a problem with your session token." msgstr "당신의 세션토큰관련 문제가 있습니다." @@ -1183,8 +1172,9 @@ msgstr "" #: actions/designadminpanel.php:586 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 +#: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:208 #: actions/tagother.php:154 actions/useradminpanel.php:294 #: lib/applicationeditform.php:333 lib/applicationeditform.php:334 #: lib/designsettings.php:256 lib/groupeditform.php:202 @@ -1312,7 +1302,7 @@ msgstr "설명이 너무 길어요. (최대 140글자)" msgid "Could not update group." msgstr "그룹을 업데이트 할 수 없습니다." -#: actions/editgroup.php:264 classes/User_group.php:478 +#: actions/editgroup.php:264 classes/User_group.php:493 #, fuzzy msgid "Could not create aliases." msgstr "좋아하는 게시글을 생성할 수 없습니다." @@ -1438,7 +1428,7 @@ msgid "Cannot normalize that email address" msgstr "그 이메일 주소를 정규화 할 수 없습니다." #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:143 +#: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "유효한 이메일 주소가 아닙니다." @@ -1634,6 +1624,25 @@ msgstr "그러한 통지는 없습니다." msgid "Cannot read file." msgstr "파일을 잃어버렸습니다." +#: actions/grantrole.php:62 actions/revokerole.php:62 +#, fuzzy +msgid "Invalid role." +msgstr "옳지 않은 크기" + +#: actions/grantrole.php:66 actions/revokerole.php:66 +msgid "This role is reserved and cannot be set." +msgstr "" + +#: actions/grantrole.php:75 +#, fuzzy +msgid "You cannot grant user roles on this site." +msgstr "당신은 이 사용자에게 메시지를 보낼 수 없습니다." + +#: actions/grantrole.php:82 +#, fuzzy +msgid "User already has this role." +msgstr "회원이 당신을 차단해왔습니다." + #: actions/groupblock.php:71 actions/groupunblock.php:71 #: actions/makeadmin.php:71 actions/subedit.php:46 #: lib/profileformaction.php:70 @@ -1789,12 +1798,18 @@ msgstr "관리자" msgid "Make this user an admin" msgstr "" +#: actions/grouprss.php:138 actions/userrss.php:90 +#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#, php-format +msgid "%s timeline" +msgstr "%s 타임라인" + #: actions/grouprss.php:140 #, fuzzy, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "%2$s에 있는 %1$s의 업데이트!" -#: actions/groups.php:62 lib/profileaction.php:210 lib/profileaction.php:230 +#: actions/groups.php:62 lib/profileaction.php:212 lib/profileaction.php:232 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" msgstr "그룹" @@ -2403,8 +2418,8 @@ msgstr "연결" msgid "Only " msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 -#: lib/apiaction.php:1068 lib/apiaction.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1042 +#: lib/apiaction.php:1070 lib/apiaction.php:1179 msgid "Not a supported data format." msgstr "지원하는 형식의 데이터가 아닙니다." @@ -2550,7 +2565,8 @@ msgstr "새 비밀번호를 저장 할 수 없습니다." msgid "Password saved." msgstr "비밀 번호 저장" -#: actions/pathsadminpanel.php:59 +#. TRANS: Menu item for site administration +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 msgid "Paths" msgstr "" @@ -2678,7 +2694,7 @@ msgstr "" msgid "SSL" msgstr "SMS" -#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 +#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202 #, fuzzy msgid "Never" msgstr "복구" @@ -2737,11 +2753,11 @@ msgstr "유효한 태그가 아닙니다: %s" msgid "Users self-tagged with %1$s - page %2$d" msgstr "이용자 셀프 테크 %s - %d 페이지" -#: actions/postnotice.php:84 +#: actions/postnotice.php:95 msgid "Invalid notice content" msgstr "옳지 않은 통지 내용" -#: actions/postnotice.php:90 +#: actions/postnotice.php:101 #, php-format msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" @@ -2820,7 +2836,7 @@ msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "당신을 위한 태그, (문자,숫자,-, ., _로 구성) 콤마 혹은 공백으로 구분." -#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 +#: actions/profilesettings.php:151 msgid "Language" msgstr "언어" @@ -2846,7 +2862,7 @@ msgstr "나에게 구독하는 사람에게 자동 구독 신청" msgid "Bio is too long (max %d chars)." msgstr "자기소개가 너무 깁니다. (최대 140글자)" -#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:151 msgid "Timezone not selected." msgstr "타임존이 설정 되지 않았습니다." @@ -3154,7 +3170,7 @@ msgid "Same as password above. Required." msgstr "위와 같은 비밀 번호. 필수 사항." #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 msgid "Email" msgstr "이메일" @@ -3259,7 +3275,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "다른 마이크로블로깅 서비스의 귀하의 프로필 URL" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:368 +#: lib/userprofile.php:394 msgid "Subscribe" msgstr "구독" @@ -3364,6 +3380,16 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "%2$s에서 %1$s까지 메시지" +#: actions/revokerole.php:75 +#, fuzzy +msgid "You cannot revoke user roles on this site." +msgstr "당신은 이 사용자에게 메시지를 보낼 수 없습니다." + +#: actions/revokerole.php:82 +#, fuzzy +msgid "User doesn't have this role." +msgstr "프로필 매칭이 없는 사용자" + #: actions/rsd.php:146 actions/version.php:157 #, fuzzy msgid "StatusNet" @@ -3379,7 +3405,9 @@ msgstr "당신은 이 사용자에게 메시지를 보낼 수 없습니다." msgid "User is already sandboxed." msgstr "회원이 당신을 차단해왔습니다." +#. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:390 msgid "Sessions" msgstr "" @@ -3403,7 +3431,7 @@ msgstr "" msgid "Turn on debugging output for sessions." msgstr "" -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/useradminpanel.php:294 #, fuzzy msgid "Save site settings" @@ -3439,8 +3467,8 @@ msgstr "페이지수" msgid "Description" msgstr "설명" -#: actions/showapplication.php:192 actions/showgroup.php:437 -#: lib/profileaction.php:174 +#: actions/showapplication.php:192 actions/showgroup.php:438 +#: lib/profileaction.php:176 msgid "Statistics" msgstr "통계" @@ -3573,46 +3601,46 @@ msgstr "" msgid "Group actions" msgstr "그룹 행동" -#: actions/showgroup.php:336 +#: actions/showgroup.php:337 #, fuzzy, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "%s 그룹을 위한 공지피드" -#: actions/showgroup.php:342 +#: actions/showgroup.php:343 #, fuzzy, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "%s 그룹을 위한 공지피드" -#: actions/showgroup.php:348 +#: actions/showgroup.php:349 #, fuzzy, php-format msgid "Notice feed for %s group (Atom)" msgstr "%s 그룹을 위한 공지피드" -#: actions/showgroup.php:353 +#: actions/showgroup.php:354 #, php-format msgid "FOAF for %s group" msgstr "%s의 보낸쪽지함" -#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 +#: actions/showgroup.php:390 actions/showgroup.php:447 lib/groupnav.php:91 msgid "Members" msgstr "회원" -#: actions/showgroup.php:394 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 +#: actions/showgroup.php:395 lib/profileaction.php:117 +#: lib/profileaction.php:150 lib/profileaction.php:238 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(없습니다.)" -#: actions/showgroup.php:400 +#: actions/showgroup.php:401 msgid "All members" msgstr "모든 회원" -#: actions/showgroup.php:440 +#: actions/showgroup.php:441 #, fuzzy msgid "Created" msgstr "생성" -#: actions/showgroup.php:456 +#: actions/showgroup.php:457 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3622,7 +3650,7 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showgroup.php:462 +#: actions/showgroup.php:463 #, fuzzy, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3633,7 +3661,7 @@ msgstr "" "**%s** 는 %%%%site.name%%%% [마이크로블로깅)(http://en.wikipedia.org/wiki/" "Micro-blogging)의 사용자 그룹입니다. " -#: actions/showgroup.php:490 +#: actions/showgroup.php:491 #, fuzzy msgid "Admins" msgstr "관리자" @@ -3749,151 +3777,140 @@ msgid "User is already silenced." msgstr "회원이 당신을 차단해왔습니다." #: actions/siteadminpanel.php:69 -msgid "Basic settings for this StatusNet site." +msgid "Basic settings for this StatusNet site" msgstr "" -#: actions/siteadminpanel.php:132 +#: actions/siteadminpanel.php:133 msgid "Site name must have non-zero length." msgstr "" -#: actions/siteadminpanel.php:140 +#: actions/siteadminpanel.php:141 #, fuzzy msgid "You must have a valid contact email address." msgstr "유효한 이메일 주소가 아닙니다." -#: actions/siteadminpanel.php:158 +#: actions/siteadminpanel.php:159 #, php-format msgid "Unknown language \"%s\"." msgstr "" #: actions/siteadminpanel.php:165 -msgid "Invalid snapshot report URL." -msgstr "" - -#: actions/siteadminpanel.php:171 -msgid "Invalid snapshot run value." -msgstr "" - -#: actions/siteadminpanel.php:177 -msgid "Snapshot frequency must be a number." -msgstr "" - -#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "" -#: actions/siteadminpanel.php:189 +#: actions/siteadminpanel.php:171 msgid "Dupe limit must 1 or more seconds." msgstr "" -#: actions/siteadminpanel.php:239 +#: actions/siteadminpanel.php:221 msgid "General" msgstr "" -#: actions/siteadminpanel.php:242 +#: actions/siteadminpanel.php:224 #, fuzzy msgid "Site name" msgstr "사이트 공지" -#: actions/siteadminpanel.php:243 +#: actions/siteadminpanel.php:225 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "" -#: actions/siteadminpanel.php:247 +#: actions/siteadminpanel.php:229 msgid "Brought by" msgstr "" -#: actions/siteadminpanel.php:248 +#: actions/siteadminpanel.php:230 msgid "Text used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:252 +#: actions/siteadminpanel.php:234 msgid "Brought by URL" msgstr "" -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:235 msgid "URL used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:239 #, fuzzy msgid "Contact email address for your site" msgstr "%s에 포스팅 할 새로운 이메일 주소" -#: actions/siteadminpanel.php:263 +#: actions/siteadminpanel.php:245 #, fuzzy msgid "Local" msgstr "로컬 뷰" -#: actions/siteadminpanel.php:274 +#: actions/siteadminpanel.php:256 msgid "Default timezone" msgstr "" -#: actions/siteadminpanel.php:275 +#: actions/siteadminpanel.php:257 msgid "Default timezone for the site; usually UTC." msgstr "" -#: actions/siteadminpanel.php:281 +#: actions/siteadminpanel.php:262 #, fuzzy -msgid "Default site language" +msgid "Default language" msgstr "언어 설정" -#: actions/siteadminpanel.php:289 -msgid "Snapshots" +#: actions/siteadminpanel.php:263 +msgid "Site language when autodetection from browser settings is not available" msgstr "" -#: actions/siteadminpanel.php:292 -msgid "Randomly during Web hit" -msgstr "" - -#: actions/siteadminpanel.php:293 -msgid "In a scheduled job" -msgstr "" - -#: actions/siteadminpanel.php:295 -msgid "Data snapshots" -msgstr "" - -#: actions/siteadminpanel.php:296 -msgid "When to send statistical data to status.net servers" -msgstr "" - -#: actions/siteadminpanel.php:301 -msgid "Frequency" -msgstr "" - -#: actions/siteadminpanel.php:302 -msgid "Snapshots will be sent once every N web hits" -msgstr "" - -#: actions/siteadminpanel.php:307 -msgid "Report URL" -msgstr "" - -#: actions/siteadminpanel.php:308 -msgid "Snapshots will be sent to this URL" -msgstr "" - -#: actions/siteadminpanel.php:315 +#: actions/siteadminpanel.php:271 msgid "Limits" msgstr "" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Text limit" msgstr "" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Maximum number of characters for notices." msgstr "" -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "Dupe limit" msgstr "" -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" +#: actions/sitenoticeadminpanel.php:56 +#, fuzzy +msgid "Site Notice" +msgstr "사이트 공지" + +#: actions/sitenoticeadminpanel.php:67 +#, fuzzy +msgid "Edit site-wide message" +msgstr "새로운 메시지입니다." + +#: actions/sitenoticeadminpanel.php:103 +#, fuzzy +msgid "Unable to save site notice." +msgstr "트위터 환경설정을 저장할 수 없습니다." + +#: actions/sitenoticeadminpanel.php:113 +msgid "Max length for the site-wide notice is 255 chars" +msgstr "" + +#: actions/sitenoticeadminpanel.php:176 +#, fuzzy +msgid "Site notice text" +msgstr "사이트 공지" + +#: actions/sitenoticeadminpanel.php:178 +msgid "Site-wide notice text (255 chars max; HTML okay)" +msgstr "" + +#: actions/sitenoticeadminpanel.php:198 +#, fuzzy +msgid "Save site notice" +msgstr "사이트 공지" + #: actions/smssettings.php:58 #, fuzzy msgid "SMS settings" @@ -3995,6 +4012,66 @@ msgstr "귀하의 휴대폰의 통신회사는 무엇입니까?" msgid "No code entered" msgstr "코드가 입력 되지 않았습니다." +#. TRANS: Menu item for site administration +#: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 +#: lib/adminpanelaction.php:406 +msgid "Snapshots" +msgstr "" + +#: actions/snapshotadminpanel.php:65 +#, fuzzy +msgid "Manage snapshot configuration" +msgstr "주 사이트 네비게이션" + +#: actions/snapshotadminpanel.php:127 +msgid "Invalid snapshot run value." +msgstr "" + +#: actions/snapshotadminpanel.php:133 +msgid "Snapshot frequency must be a number." +msgstr "" + +#: actions/snapshotadminpanel.php:144 +msgid "Invalid snapshot report URL." +msgstr "" + +#: actions/snapshotadminpanel.php:200 +msgid "Randomly during Web hit" +msgstr "" + +#: actions/snapshotadminpanel.php:201 +msgid "In a scheduled job" +msgstr "" + +#: actions/snapshotadminpanel.php:206 +msgid "Data snapshots" +msgstr "" + +#: actions/snapshotadminpanel.php:208 +msgid "When to send statistical data to status.net servers" +msgstr "" + +#: actions/snapshotadminpanel.php:217 +msgid "Frequency" +msgstr "" + +#: actions/snapshotadminpanel.php:218 +msgid "Snapshots will be sent once every N web hits" +msgstr "" + +#: actions/snapshotadminpanel.php:226 +msgid "Report URL" +msgstr "" + +#: actions/snapshotadminpanel.php:227 +msgid "Snapshots will be sent to this URL" +msgstr "" + +#: actions/snapshotadminpanel.php:248 +#, fuzzy +msgid "Save snapshot settings" +msgstr "아바타 설정" + #: actions/subedit.php:70 msgid "You are not subscribed to that profile." msgstr "당신은 이 프로필에 구독되지 않고있습니다." @@ -4197,7 +4274,7 @@ msgstr "요청한 프로필id가 없습니다." msgid "Unsubscribed" msgstr "구독취소 되었습니다." -#: actions/updateprofile.php:62 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -4406,16 +4483,22 @@ msgstr "%s 그룹 회원, %d페이지" msgid "Search for more groups" msgstr "프로필이나 텍스트 검색" -#: actions/usergroups.php:153 +#: actions/usergroups.php:157 #, fuzzy, php-format msgid "%s is not a member of any group." msgstr "당신은 해당 그룹의 멤버가 아닙니다." -#: actions/usergroups.php:158 +#: actions/usergroups.php:162 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" +#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: lib/atomusernoticefeed.php:72 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "%2$s에 있는 %1$s의 업데이트!" + #: actions/version.php:73 #, fuzzy, php-format msgid "StatusNet %s" @@ -4459,7 +4542,7 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:196 lib/action.php:778 +#: actions/version.php:196 lib/action.php:767 #, fuzzy msgid "Version" msgstr "개인적인" @@ -4528,23 +4611,23 @@ msgstr "새 URI와 함께 메시지를 업데이트할 수 없습니다." msgid "DB error inserting hashtag: %s" msgstr "해쉬테그를 추가 할 때에 데이타베이스 에러 : %s" -#: classes/Notice.php:239 +#: classes/Notice.php:241 #, fuzzy msgid "Problem saving notice. Too long." msgstr "통지를 저장하는데 문제가 발생했습니다." -#: classes/Notice.php:243 +#: classes/Notice.php:245 msgid "Problem saving notice. Unknown user." msgstr "게시글 저장문제. 알려지지않은 회원" -#: classes/Notice.php:248 +#: classes/Notice.php:250 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" "너무 많은 게시글이 너무 빠르게 올라옵니다. 한숨고르고 몇분후에 다시 포스트를 " "해보세요." -#: classes/Notice.php:254 +#: classes/Notice.php:256 #, fuzzy msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " @@ -4553,20 +4636,20 @@ msgstr "" "너무 많은 게시글이 너무 빠르게 올라옵니다. 한숨고르고 몇분후에 다시 포스트를 " "해보세요." -#: classes/Notice.php:260 +#: classes/Notice.php:262 msgid "You are banned from posting notices on this site." msgstr "이 사이트에 게시글 포스팅으로부터 당신은 금지되었습니다." -#: classes/Notice.php:326 classes/Notice.php:352 +#: classes/Notice.php:328 classes/Notice.php:354 msgid "Problem saving notice." msgstr "통지를 저장하는데 문제가 발생했습니다." -#: classes/Notice.php:911 +#: classes/Notice.php:927 #, fuzzy msgid "Problem saving group inbox." msgstr "통지를 저장하는데 문제가 발생했습니다." -#: classes/Notice.php:1442 +#: classes/Notice.php:1459 #, fuzzy, php-format msgid "RT @%1$s %2$s" msgstr "%1$s (%2$s)" @@ -4594,7 +4677,12 @@ msgstr "구독하고 있지 않습니다!" msgid "Couldn't delete self-subscription." msgstr "예약 구독을 삭제 할 수 없습니다." -#: classes/Subscription.php:179 lib/subs.php:69 +#: classes/Subscription.php:190 +#, fuzzy +msgid "Couldn't delete subscription OMB token." +msgstr "예약 구독을 삭제 할 수 없습니다." + +#: classes/Subscription.php:201 lib/subs.php:69 msgid "Couldn't delete subscription." msgstr "예약 구독을 삭제 할 수 없습니다." @@ -4603,20 +4691,20 @@ msgstr "예약 구독을 삭제 할 수 없습니다." msgid "Welcome to %1$s, @%2$s!" msgstr "%2$s에서 %1$s까지 메시지" -#: classes/User_group.php:462 +#: classes/User_group.php:477 msgid "Could not create group." msgstr "새 그룹을 만들 수 없습니다." -#: classes/User_group.php:471 +#: classes/User_group.php:486 #, fuzzy msgid "Could not set group URI." msgstr "그룹 맴버십을 세팅할 수 없습니다." -#: classes/User_group.php:492 +#: classes/User_group.php:507 msgid "Could not set group membership." msgstr "그룹 맴버십을 세팅할 수 없습니다." -#: classes/User_group.php:506 +#: classes/User_group.php:521 #, fuzzy msgid "Could not save local group info." msgstr "구독을 저장할 수 없습니다." @@ -4659,195 +4747,189 @@ msgstr "%1$s (%2$s)" msgid "Untitled page" msgstr "제목없는 페이지" -#: lib/action.php:433 +#: lib/action.php:424 msgid "Primary site navigation" msgstr "주 사이트 네비게이션" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:439 +#: lib/action.php:430 #, fuzzy msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "개인 프로필과 친구 타임라인" -#: lib/action.php:442 +#: lib/action.php:433 #, fuzzy msgctxt "MENU" msgid "Personal" msgstr "개인적인" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:444 +#: lib/action.php:435 #, fuzzy msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "당신의 이메일, 아바타, 비밀 번호, 프로필을 변경하세요." -#: lib/action.php:447 -#, fuzzy -msgctxt "MENU" -msgid "Account" -msgstr "계정" - #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:450 +#: lib/action.php:440 #, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" msgstr "서버에 재접속 할 수 없습니다 : %s" -#: lib/action.php:453 +#: lib/action.php:443 #, fuzzy -msgctxt "MENU" msgid "Connect" msgstr "연결" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:457 +#: lib/action.php:446 #, fuzzy msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "주 사이트 네비게이션" -#: lib/action.php:460 +#: lib/action.php:449 #, fuzzy msgctxt "MENU" msgid "Admin" msgstr "관리자" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:464 +#: lib/action.php:453 #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "%s에 친구를 가입시키기 위해 친구와 동료를 초대합니다." -#: lib/action.php:467 +#: lib/action.php:456 #, fuzzy msgctxt "MENU" msgid "Invite" msgstr "초대" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:473 +#: lib/action.php:462 #, fuzzy msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "이 사이트로부터 로그아웃" -#: lib/action.php:476 +#: lib/action.php:465 #, fuzzy msgctxt "MENU" msgid "Logout" msgstr "로그아웃" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:481 +#: lib/action.php:470 #, fuzzy msgctxt "TOOLTIP" msgid "Create an account" msgstr "계정 만들기" -#: lib/action.php:484 +#: lib/action.php:473 #, fuzzy msgctxt "MENU" msgid "Register" msgstr "회원가입" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:487 +#: lib/action.php:476 #, fuzzy msgctxt "TOOLTIP" msgid "Login to the site" msgstr "이 사이트 로그인" -#: lib/action.php:490 +#: lib/action.php:479 #, fuzzy msgctxt "MENU" msgid "Login" msgstr "로그인" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:493 +#: lib/action.php:482 #, fuzzy msgctxt "TOOLTIP" msgid "Help me!" msgstr "도움이 필요해!" -#: lib/action.php:496 +#: lib/action.php:485 #, fuzzy msgctxt "MENU" msgid "Help" msgstr "도움말" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:499 +#: lib/action.php:488 #, fuzzy msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "프로필이나 텍스트 검색" -#: lib/action.php:502 +#: lib/action.php:491 #, fuzzy msgctxt "MENU" msgid "Search" msgstr "검색" #. TRANS: DT element for site notice. String is hidden in default CSS. -#: lib/action.php:524 +#. TRANS: Menu item for site administration +#: lib/action.php:513 lib/adminpanelaction.php:398 msgid "Site notice" msgstr "사이트 공지" -#: lib/action.php:590 +#: lib/action.php:579 msgid "Local views" msgstr "로컬 뷰" -#: lib/action.php:656 +#: lib/action.php:645 msgid "Page notice" msgstr "페이지 공지" -#: lib/action.php:758 +#: lib/action.php:747 msgid "Secondary site navigation" msgstr "보조 사이트 네비게이션" -#: lib/action.php:763 +#: lib/action.php:752 msgid "Help" msgstr "도움말" -#: lib/action.php:765 +#: lib/action.php:754 msgid "About" msgstr "정보" -#: lib/action.php:767 +#: lib/action.php:756 msgid "FAQ" msgstr "자주 묻는 질문" -#: lib/action.php:771 +#: lib/action.php:760 msgid "TOS" msgstr "" -#: lib/action.php:774 +#: lib/action.php:763 msgid "Privacy" msgstr "개인정보 취급방침" -#: lib/action.php:776 +#: lib/action.php:765 msgid "Source" msgstr "소스 코드" -#: lib/action.php:780 +#: lib/action.php:769 msgid "Contact" msgstr "연락하기" -#: lib/action.php:782 +#: lib/action.php:771 #, fuzzy msgid "Badge" msgstr "찔러 보기" -#: lib/action.php:810 +#: lib/action.php:799 msgid "StatusNet software license" msgstr "라코니카 소프트웨어 라이선스" -#: lib/action.php:813 +#: lib/action.php:802 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4856,12 +4938,12 @@ msgstr "" "**%%site.name%%** 는 [%%site.broughtby%%](%%site.broughtbyurl%%)가 제공하는 " "마이크로블로깅서비스입니다." -#: lib/action.php:815 +#: lib/action.php:804 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** 는 마이크로블로깅서비스입니다." -#: lib/action.php:817 +#: lib/action.php:806 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4872,54 +4954,54 @@ msgstr "" "을 사용합니다. StatusNet는 [GNU Affero General Public License](http://www." "fsf.org/licensing/licenses/agpl-3.0.html) 라이선스에 따라 사용할 수 있습니다." -#: lib/action.php:832 +#: lib/action.php:821 #, fuzzy msgid "Site content license" msgstr "라코니카 소프트웨어 라이선스" -#: lib/action.php:837 +#: lib/action.php:826 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:842 +#: lib/action.php:831 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:845 +#: lib/action.php:834 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" -#: lib/action.php:858 +#: lib/action.php:847 msgid "All " msgstr "모든 것" -#: lib/action.php:864 +#: lib/action.php:853 msgid "license." msgstr "라이선스" -#: lib/action.php:1163 +#: lib/action.php:1152 msgid "Pagination" msgstr "페이지수" -#: lib/action.php:1172 +#: lib/action.php:1161 msgid "After" msgstr "뒷 페이지" -#: lib/action.php:1180 +#: lib/action.php:1169 msgid "Before" msgstr "앞 페이지" -#: lib/activity.php:449 +#: lib/activity.php:453 msgid "Can't handle remote content yet." msgstr "" -#: lib/activity.php:477 +#: lib/activity.php:481 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activity.php:481 +#: lib/activity.php:485 msgid "Can't handle embedded Base64 content yet." msgstr "" @@ -4936,99 +5018,89 @@ msgid "Changes to that panel are not allowed." msgstr "가입이 허용되지 않습니다." #. TRANS: Client error message -#: lib/adminpanelaction.php:211 +#: lib/adminpanelaction.php:229 #, fuzzy msgid "showForm() not implemented." msgstr "명령이 아직 실행되지 않았습니다." #. TRANS: Client error message -#: lib/adminpanelaction.php:241 +#: lib/adminpanelaction.php:259 #, fuzzy msgid "saveSettings() not implemented." msgstr "명령이 아직 실행되지 않았습니다." #. TRANS: Client error message -#: lib/adminpanelaction.php:265 +#: lib/adminpanelaction.php:283 #, fuzzy msgid "Unable to delete design setting." msgstr "트위터 환경설정을 저장할 수 없습니다." #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:330 +#: lib/adminpanelaction.php:348 #, fuzzy msgid "Basic site configuration" msgstr "이메일 주소 확인서" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:332 +#: lib/adminpanelaction.php:350 #, fuzzy msgctxt "MENU" msgid "Site" msgstr "초대" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:338 +#: lib/adminpanelaction.php:356 #, fuzzy msgid "Design configuration" msgstr "SMS 인증" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:340 +#: lib/adminpanelaction.php:358 #, fuzzy msgctxt "MENU" msgid "Design" msgstr "개인적인" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:346 +#: lib/adminpanelaction.php:364 #, fuzzy msgid "User configuration" msgstr "SMS 인증" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:348 -#, fuzzy -msgctxt "MENU" +#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 msgid "User" msgstr "이용자" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:354 +#: lib/adminpanelaction.php:372 #, fuzzy msgid "Access configuration" msgstr "SMS 인증" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:356 -#, fuzzy -msgctxt "MENU" -msgid "Access" -msgstr "수락" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:362 +#: lib/adminpanelaction.php:380 #, fuzzy msgid "Paths configuration" msgstr "SMS 인증" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:364 -msgctxt "MENU" -msgid "Paths" -msgstr "" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:370 +#: lib/adminpanelaction.php:388 #, fuzzy msgid "Sessions configuration" msgstr "SMS 인증" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:372 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:396 #, fuzzy -msgctxt "MENU" -msgid "Sessions" -msgstr "개인적인" +msgid "Edit site notice" +msgstr "사이트 공지" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:404 +#, fuzzy +msgid "Snapshots configuration" +msgstr "SMS 인증" #: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." @@ -5528,6 +5600,11 @@ msgstr "좁은 리스트에서 태그 선택하기" msgid "Go" msgstr "Go " +#: lib/grantroleform.php:91 +#, php-format +msgid "Grant this user the \"%s\" role" +msgstr "" + #: lib/groupeditform.php:163 msgid "URL of the homepage or blog of the group or topic" msgstr "그룹 혹은 토픽의 홈페이지나 블로그 URL" @@ -6071,10 +6148,6 @@ msgstr "답신" msgid "Favorites" msgstr "좋아하는 글들" -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "이용자" - #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "받은 쪽지함" @@ -6101,7 +6174,7 @@ msgstr "%s의 게시글의 태그" msgid "Unknown" msgstr "알려지지 않은 행동" -#: lib/profileaction.php:109 lib/profileaction.php:192 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:194 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "구독" @@ -6109,24 +6182,24 @@ msgstr "구독" msgid "All subscriptions" msgstr "모든 예약 구독" -#: lib/profileaction.php:140 lib/profileaction.php:201 lib/subgroupnav.php:90 +#: lib/profileaction.php:142 lib/profileaction.php:203 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "구독자" -#: lib/profileaction.php:157 +#: lib/profileaction.php:159 msgid "All subscribers" msgstr "모든 구독자" -#: lib/profileaction.php:178 +#: lib/profileaction.php:180 #, fuzzy msgid "User ID" msgstr "이용자" -#: lib/profileaction.php:183 +#: lib/profileaction.php:185 msgid "Member since" msgstr "가입한 때" -#: lib/profileaction.php:245 +#: lib/profileaction.php:247 msgid "All groups" msgstr "모든 그룹" @@ -6169,7 +6242,12 @@ msgstr "이 게시글에 대해 답장하기" msgid "Repeat this notice" msgstr "이 게시글에 대해 답장하기" -#: lib/router.php:668 +#: lib/revokeroleform.php:91 +#, fuzzy, php-format +msgid "Revoke the \"%s\" role from this user" +msgstr "이 그룹의 회원리스트" + +#: lib/router.php:671 msgid "No single user defined for single-user mode." msgstr "" @@ -6333,47 +6411,63 @@ msgstr "메시지" msgid "Moderate" msgstr "" -#: lib/util.php:1013 +#: lib/userprofile.php:352 +#, fuzzy +msgid "User role" +msgstr "이용자 프로필" + +#: lib/userprofile.php:354 +#, fuzzy +msgctxt "role" +msgid "Administrator" +msgstr "관리자" + +#: lib/userprofile.php:355 +msgctxt "role" +msgid "Moderator" +msgstr "" + +#: lib/util.php:1015 msgid "a few seconds ago" msgstr "몇 초 전" -#: lib/util.php:1015 +#: lib/util.php:1017 msgid "about a minute ago" msgstr "1분 전" -#: lib/util.php:1017 +#: lib/util.php:1019 #, php-format msgid "about %d minutes ago" msgstr "%d분 전" -#: lib/util.php:1019 +#: lib/util.php:1021 msgid "about an hour ago" msgstr "1시간 전" -#: lib/util.php:1021 +#: lib/util.php:1023 #, php-format msgid "about %d hours ago" msgstr "%d시간 전" -#: lib/util.php:1023 +#: lib/util.php:1025 msgid "about a day ago" msgstr "하루 전" -#: lib/util.php:1025 +#: lib/util.php:1027 #, php-format msgid "about %d days ago" msgstr "%d일 전" -#: lib/util.php:1027 +#: lib/util.php:1029 msgid "about a month ago" msgstr "1달 전" -#: lib/util.php:1029 +#: lib/util.php:1031 #, php-format msgid "about %d months ago" msgstr "%d달 전" -#: lib/util.php:1031 +#: lib/util.php:1033 msgid "about a year ago" msgstr "1년 전" diff --git a/locale/mk/LC_MESSAGES/statusnet.po b/locale/mk/LC_MESSAGES/statusnet.po index b80b0c905e..60e5a3c293 100644 --- a/locale/mk/LC_MESSAGES/statusnet.po +++ b/locale/mk/LC_MESSAGES/statusnet.po @@ -9,19 +9,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-02 21:02+0000\n" -"PO-Revision-Date: 2010-03-02 21:03:16+0000\n" +"POT-Creation-Date: 2010-03-04 18:55+0000\n" +"PO-Revision-Date: 2010-03-04 18:56:50+0000\n" "Language-Team: Macedonian\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=2; plural= n==1 || n%10==1 ? 0 : 1;\n" #. TRANS: Page title -#: actions/accessadminpanel.php:55 +#. TRANS: Menu item for site administration +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 msgid "Access" msgstr "Пристап" @@ -44,10 +45,9 @@ msgstr "" #. TRANS: Checkbox label for prohibiting anonymous users from viewing site. #: actions/accessadminpanel.php:167 -#, fuzzy msgctxt "LABEL" msgid "Private" -msgstr "Приватен" +msgstr "Приватно" #. TRANS: Checkbox instructions for admin setting "Invite only" #: actions/accessadminpanel.php:174 @@ -75,7 +75,6 @@ msgid "Save access settings" msgstr "Зачувај нагодувања на пристап" #: actions/accessadminpanel.php:203 -#, fuzzy msgctxt "BUTTON" msgid "Save" msgstr "Зачувај" @@ -120,7 +119,7 @@ msgstr "%1$s и пријателите, стр. %2$d" #. TRANS: Page title. %1$s is user nickname #. TRANS: H1 text. %1$s is user nickname -#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -184,7 +183,7 @@ msgstr "" "прочита." #. TRANS: H1 text -#: actions/all.php:174 +#: actions/all.php:178 msgid "You and friends" msgstr "Вие и пријателите" @@ -211,11 +210,11 @@ msgstr "Подновувања од %1$s и пријатели на %2$s!" #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 -#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 +#: actions/apitimelinegroup.php:160 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:148 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 msgid "API method not found." msgstr "API методот не е пронајден." @@ -579,7 +578,7 @@ msgstr "" "%3$s податоците за Вашата %4$s сметка. Треба да дозволувате " "пристап до Вашата %4$s сметка само на трети страни на кои им верувате." -#: actions/apioauthauthorize.php:310 +#: actions/apioauthauthorize.php:310 lib/action.php:438 msgid "Account" msgstr "Сметка" @@ -668,18 +667,6 @@ msgstr "%1$s / Омилени од %2$s" msgid "%1$s updates favorited by %2$s / %2$s." msgstr "Подновувања на %1$s омилени на %2$s / %2$s." -#: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:138 actions/userrss.php:90 -#, php-format -msgid "%s timeline" -msgstr "Историја на %s" - -#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 -#: actions/userrss.php:92 -#, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "Подновувања од %1$s на %2$s!" - #: actions/apitimelinementions.php:117 #, php-format msgid "%1$s / Updates mentioning %2$s" @@ -690,12 +677,12 @@ msgstr "%1$s / Подновувања кои споменуваат %2$s" msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "%1$s подновувања коишто се одговор на подновувањата од %2$s / %3$s." -#: actions/apitimelinepublic.php:111 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "Јавна историја на %s" -#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "%s подновуввања од сите!" @@ -944,7 +931,7 @@ msgid "Conversation" msgstr "Разговор" #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:216 lib/searchgroupnav.php:82 +#: lib/profileaction.php:218 lib/searchgroupnav.php:82 msgid "Notices" msgstr "Забелешки" @@ -963,7 +950,7 @@ msgstr "Не сте сопственик на овој програм." #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1228 +#: lib/action.php:1217 msgid "There was a problem with your session token." msgstr "Се појави проблем со Вашиот сесиски жетон." @@ -1159,8 +1146,9 @@ msgstr "Врати по основно" #: actions/designadminpanel.php:586 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 +#: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:208 #: actions/tagother.php:154 actions/useradminpanel.php:294 #: lib/applicationeditform.php:333 lib/applicationeditform.php:334 #: lib/designsettings.php:256 lib/groupeditform.php:202 @@ -1276,7 +1264,7 @@ msgstr "описот е предолг (максимум %d знаци)" msgid "Could not update group." msgstr "Не можев да ја подновам групата." -#: actions/editgroup.php:264 classes/User_group.php:478 +#: actions/editgroup.php:264 classes/User_group.php:493 msgid "Could not create aliases." msgstr "Не можеше да се создадат алијаси." @@ -1401,7 +1389,7 @@ msgid "Cannot normalize that email address" msgstr "Неможам да ја нормализирам таа е-поштенска адреса" #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:143 +#: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Неправилна адреса за е-пошта." @@ -1594,6 +1582,25 @@ msgstr "Нема таква податотека." msgid "Cannot read file." msgstr "Податотеката не може да се прочита." +#: actions/grantrole.php:62 actions/revokerole.php:62 +#, fuzzy +msgid "Invalid role." +msgstr "Погрешен жетон." + +#: actions/grantrole.php:66 actions/revokerole.php:66 +msgid "This role is reserved and cannot be set." +msgstr "" + +#: actions/grantrole.php:75 +#, fuzzy +msgid "You cannot grant user roles on this site." +msgstr "Не можете да ставате корисници во песочен режим на оваа веб-страница." + +#: actions/grantrole.php:82 +#, fuzzy +msgid "User already has this role." +msgstr "Корисникот е веќе замолчен." + #: actions/groupblock.php:71 actions/groupunblock.php:71 #: actions/makeadmin.php:71 actions/subedit.php:46 #: lib/profileformaction.php:70 @@ -1743,12 +1750,18 @@ msgstr "Направи го/ја администратор" msgid "Make this user an admin" msgstr "Направи го корисникот администратор" +#: actions/grouprss.php:138 actions/userrss.php:90 +#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#, php-format +msgid "%s timeline" +msgstr "Историја на %s" + #: actions/grouprss.php:140 #, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Подновувања од членови на %1$s на %2$s!" -#: actions/groups.php:62 lib/profileaction.php:210 lib/profileaction.php:230 +#: actions/groups.php:62 lib/profileaction.php:212 lib/profileaction.php:232 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" msgstr "Групи" @@ -2011,7 +2024,6 @@ msgstr "Можете да додадете и лична порака во по #. TRANS: Send button for inviting friends #: actions/invite.php:198 -#, fuzzy msgctxt "BUTTON" msgid "Send" msgstr "Испрати" @@ -2373,8 +2385,8 @@ msgstr "тип на содржини " msgid "Only " msgstr "Само " -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 -#: lib/apiaction.php:1068 lib/apiaction.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1042 +#: lib/apiaction.php:1070 lib/apiaction.php:1179 msgid "Not a supported data format." msgstr "Ова не е поддржан формат на податотека." @@ -2515,7 +2527,8 @@ msgstr "Не можам да ја зачувам новата лозинка." msgid "Password saved." msgstr "Лозинката е зачувана." -#: actions/pathsadminpanel.php:59 +#. TRANS: Menu item for site administration +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 msgid "Paths" msgstr "Патеки" @@ -2635,7 +2648,7 @@ msgstr "Директориум на позадината" msgid "SSL" msgstr "SSL" -#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 +#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202 msgid "Never" msgstr "Никогаш" @@ -2691,11 +2704,11 @@ msgstr "Не е важечка ознака за луѓе: %s" msgid "Users self-tagged with %1$s - page %2$d" msgstr "Користници самоозначени со %1$s - стр. %2$d" -#: actions/postnotice.php:84 +#: actions/postnotice.php:95 msgid "Invalid notice content" msgstr "Неважечка содржина на забелешката" -#: actions/postnotice.php:90 +#: actions/postnotice.php:101 #, php-format msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" @@ -2777,7 +2790,7 @@ msgstr "" "Ознаки за Вас самите (букви, бројки, -, . и _), одделени со запирка или " "празно место" -#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 +#: actions/profilesettings.php:151 msgid "Language" msgstr "Јазик" @@ -2805,7 +2818,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "Биографијата е преголема (највеќе до %d знаци)." -#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:151 msgid "Timezone not selected." msgstr "Не е избрана часовна зона." @@ -3126,7 +3139,7 @@ msgid "Same as password above. Required." msgstr "Исто што и лозинката погоре. Задолжително поле." #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 msgid "Email" msgstr "Е-пошта" @@ -3233,7 +3246,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "URL на Вашиот профил на друга компатибилна служба за микроблогирање." #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:368 +#: lib/userprofile.php:394 msgid "Subscribe" msgstr "Претплати се" @@ -3337,6 +3350,16 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "Одговори на %1$s на %2$s!" +#: actions/revokerole.php:75 +#, fuzzy +msgid "You cannot revoke user roles on this site." +msgstr "Не можете да замолчувате корисници на оваа веб-страница." + +#: actions/revokerole.php:82 +#, fuzzy +msgid "User doesn't have this role." +msgstr "Корисник без соодветен профил." + #: actions/rsd.php:146 actions/version.php:157 msgid "StatusNet" msgstr "StatusNet" @@ -3349,7 +3372,9 @@ msgstr "Не можете да ставате корисници во песоч msgid "User is already sandboxed." msgstr "Корисникот е веќе во песочен режим." +#. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:390 msgid "Sessions" msgstr "Сесии" @@ -3373,7 +3398,7 @@ msgstr "Поправка на грешки во сесија" msgid "Turn on debugging output for sessions." msgstr "Вклучи извод од поправка на грешки за сесии." -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "Зачувај нагодувања на веб-страницата" @@ -3404,8 +3429,8 @@ msgstr "Организација" msgid "Description" msgstr "Опис" -#: actions/showapplication.php:192 actions/showgroup.php:437 -#: lib/profileaction.php:174 +#: actions/showapplication.php:192 actions/showgroup.php:438 +#: lib/profileaction.php:176 msgid "Statistics" msgstr "Статистики" @@ -3549,45 +3574,45 @@ msgstr "Алијаси" msgid "Group actions" msgstr "Групни дејства" -#: actions/showgroup.php:336 +#: actions/showgroup.php:337 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Канал со забелешки за групата %s (RSS 1.0)" -#: actions/showgroup.php:342 +#: actions/showgroup.php:343 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Канал со забелешки за групата %s (RSS 2.0)" -#: actions/showgroup.php:348 +#: actions/showgroup.php:349 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "Канал со забелешки за групата%s (Atom)" -#: actions/showgroup.php:353 +#: actions/showgroup.php:354 #, php-format msgid "FOAF for %s group" msgstr "FOAF за групата %s" -#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 +#: actions/showgroup.php:390 actions/showgroup.php:447 lib/groupnav.php:91 msgid "Members" msgstr "Членови" -#: actions/showgroup.php:394 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 +#: actions/showgroup.php:395 lib/profileaction.php:117 +#: lib/profileaction.php:150 lib/profileaction.php:238 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(Нема)" -#: actions/showgroup.php:400 +#: actions/showgroup.php:401 msgid "All members" msgstr "Сите членови" -#: actions/showgroup.php:440 +#: actions/showgroup.php:441 msgid "Created" msgstr "Создадено" -#: actions/showgroup.php:456 +#: actions/showgroup.php:457 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3603,7 +3628,7 @@ msgstr "" "се](%%%%action.register%%%%) за да станете дел од оваа група и многу повеќе! " "([Прочитајте повеќе](%%%%doc.help%%%%))" -#: actions/showgroup.php:462 +#: actions/showgroup.php:463 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3616,7 +3641,7 @@ msgstr "" "слободната програмска алатка [StatusNet](http://status.net/). Нејзините " "членови си разменуваат кратки пораки за нивниот живот и интереси. " -#: actions/showgroup.php:490 +#: actions/showgroup.php:491 msgid "Admins" msgstr "Администратори" @@ -3738,152 +3763,143 @@ msgid "User is already silenced." msgstr "Корисникот е веќе замолчен." #: actions/siteadminpanel.php:69 -msgid "Basic settings for this StatusNet site." +#, fuzzy +msgid "Basic settings for this StatusNet site" msgstr "Основни нагодувања за оваа StatusNet веб-страница." -#: actions/siteadminpanel.php:132 +#: actions/siteadminpanel.php:133 msgid "Site name must have non-zero length." msgstr "Должината на името на веб-страницата не може да изнесува нула." -#: actions/siteadminpanel.php:140 +#: actions/siteadminpanel.php:141 msgid "You must have a valid contact email address." msgstr "Мора да имате важечка контактна е-поштенска адреса." -#: actions/siteadminpanel.php:158 +#: actions/siteadminpanel.php:159 #, php-format msgid "Unknown language \"%s\"." msgstr "Непознат јазик „%s“" #: actions/siteadminpanel.php:165 -msgid "Invalid snapshot report URL." -msgstr "Неважечки URL за извештај од снимката." - -#: actions/siteadminpanel.php:171 -msgid "Invalid snapshot run value." -msgstr "Неважечка вредност на пуштањето на снимката." - -#: actions/siteadminpanel.php:177 -msgid "Snapshot frequency must be a number." -msgstr "Честотата на снимките мора да биде бројка." - -#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "Минималното ограничување на текстот изнесува 140 знаци." -#: actions/siteadminpanel.php:189 +#: actions/siteadminpanel.php:171 msgid "Dupe limit must 1 or more seconds." msgstr "Ограничувањето на дуплирањето мора да изнесува барем 1 секунда." -#: actions/siteadminpanel.php:239 +#: actions/siteadminpanel.php:221 msgid "General" msgstr "Општи" -#: actions/siteadminpanel.php:242 +#: actions/siteadminpanel.php:224 msgid "Site name" msgstr "Име на веб-страницата" -#: actions/siteadminpanel.php:243 +#: actions/siteadminpanel.php:225 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "Името на Вашата веб-страница, како на пр. „Микроблог на Вашафирма“" -#: actions/siteadminpanel.php:247 +#: actions/siteadminpanel.php:229 msgid "Brought by" msgstr "Овозможено од" -#: actions/siteadminpanel.php:248 +#: actions/siteadminpanel.php:230 msgid "Text used for credits link in footer of each page" msgstr "" "Текст за врската за наведување на авторите во долната колонцифра на секоја " "страница" -#: actions/siteadminpanel.php:252 +#: actions/siteadminpanel.php:234 msgid "Brought by URL" msgstr "URL-адреса на овозможувачот на услугите" -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:235 msgid "URL used for credits link in footer of each page" msgstr "" "URL-адресата која е користи за врски за автори во долната колоцифра на " "секоја страница" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:239 msgid "Contact email address for your site" msgstr "Контактна е-пошта за Вашата веб-страница" -#: actions/siteadminpanel.php:263 +#: actions/siteadminpanel.php:245 msgid "Local" msgstr "Локално" -#: actions/siteadminpanel.php:274 +#: actions/siteadminpanel.php:256 msgid "Default timezone" msgstr "Основна часовна зона" -#: actions/siteadminpanel.php:275 +#: actions/siteadminpanel.php:257 msgid "Default timezone for the site; usually UTC." msgstr "Матична часовна зона за веб-страницата; обично UTC." -#: actions/siteadminpanel.php:281 -msgid "Default site language" +#: actions/siteadminpanel.php:262 +#, fuzzy +msgid "Default language" msgstr "Основен јазик" -#: actions/siteadminpanel.php:289 -msgid "Snapshots" -msgstr "Снимки" +#: actions/siteadminpanel.php:263 +msgid "Site language when autodetection from browser settings is not available" +msgstr "" -#: actions/siteadminpanel.php:292 -msgid "Randomly during Web hit" -msgstr "По случајност во текот на посета" - -#: actions/siteadminpanel.php:293 -msgid "In a scheduled job" -msgstr "Во зададена задача" - -#: actions/siteadminpanel.php:295 -msgid "Data snapshots" -msgstr "Снимки од податоци" - -#: actions/siteadminpanel.php:296 -msgid "When to send statistical data to status.net servers" -msgstr "Кога да им се испраќаат статистички податоци на status.net серверите" - -#: actions/siteadminpanel.php:301 -msgid "Frequency" -msgstr "Честота" - -#: actions/siteadminpanel.php:302 -msgid "Snapshots will be sent once every N web hits" -msgstr "Ќе се испраќаат снимки на секои N посети" - -#: actions/siteadminpanel.php:307 -msgid "Report URL" -msgstr "URL на извештајот" - -#: actions/siteadminpanel.php:308 -msgid "Snapshots will be sent to this URL" -msgstr "Снимките ќе се испраќаат на оваа URL-адреса" - -#: actions/siteadminpanel.php:315 +#: actions/siteadminpanel.php:271 msgid "Limits" msgstr "Ограничувања" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Text limit" msgstr "Ограничување на текстот" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Maximum number of characters for notices." msgstr "Максимален број на знаци за забелешки." -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "Dupe limit" msgstr "Ограничување на дуплирањето" -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" "Колку долго треба да почекаат корисниците (во секунди) за да можат повторно " "да го објават истото." +#: actions/sitenoticeadminpanel.php:56 +#, fuzzy +msgid "Site Notice" +msgstr "Напомена за веб-страницата" + +#: actions/sitenoticeadminpanel.php:67 +#, fuzzy +msgid "Edit site-wide message" +msgstr "Нова порака" + +#: actions/sitenoticeadminpanel.php:103 +#, fuzzy +msgid "Unable to save site notice." +msgstr "Не можам да ги зачувам Вашите нагодувања за изглед." + +#: actions/sitenoticeadminpanel.php:113 +msgid "Max length for the site-wide notice is 255 chars" +msgstr "" + +#: actions/sitenoticeadminpanel.php:176 +#, fuzzy +msgid "Site notice text" +msgstr "Напомена за веб-страницата" + +#: actions/sitenoticeadminpanel.php:178 +msgid "Site-wide notice text (255 chars max; HTML okay)" +msgstr "" + +#: actions/sitenoticeadminpanel.php:198 +#, fuzzy +msgid "Save site notice" +msgstr "Напомена за веб-страницата" + #: actions/smssettings.php:58 msgid "SMS settings" msgstr "Нагодувања за СМС" @@ -3983,6 +3999,66 @@ msgstr "" msgid "No code entered" msgstr "Нема внесено код" +#. TRANS: Menu item for site administration +#: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 +#: lib/adminpanelaction.php:406 +msgid "Snapshots" +msgstr "Снимки" + +#: actions/snapshotadminpanel.php:65 +#, fuzzy +msgid "Manage snapshot configuration" +msgstr "Промена на поставките на веб-страницата" + +#: actions/snapshotadminpanel.php:127 +msgid "Invalid snapshot run value." +msgstr "Неважечка вредност на пуштањето на снимката." + +#: actions/snapshotadminpanel.php:133 +msgid "Snapshot frequency must be a number." +msgstr "Честотата на снимките мора да биде бројка." + +#: actions/snapshotadminpanel.php:144 +msgid "Invalid snapshot report URL." +msgstr "Неважечки URL за извештај од снимката." + +#: actions/snapshotadminpanel.php:200 +msgid "Randomly during Web hit" +msgstr "По случајност во текот на посета" + +#: actions/snapshotadminpanel.php:201 +msgid "In a scheduled job" +msgstr "Во зададена задача" + +#: actions/snapshotadminpanel.php:206 +msgid "Data snapshots" +msgstr "Снимки од податоци" + +#: actions/snapshotadminpanel.php:208 +msgid "When to send statistical data to status.net servers" +msgstr "Кога да им се испраќаат статистички податоци на status.net серверите" + +#: actions/snapshotadminpanel.php:217 +msgid "Frequency" +msgstr "Честота" + +#: actions/snapshotadminpanel.php:218 +msgid "Snapshots will be sent once every N web hits" +msgstr "Ќе се испраќаат снимки на секои N посети" + +#: actions/snapshotadminpanel.php:226 +msgid "Report URL" +msgstr "URL на извештајот" + +#: actions/snapshotadminpanel.php:227 +msgid "Snapshots will be sent to this URL" +msgstr "Снимките ќе се испраќаат на оваа URL-адреса" + +#: actions/snapshotadminpanel.php:248 +#, fuzzy +msgid "Save snapshot settings" +msgstr "Зачувај нагодувања на веб-страницата" + #: actions/subedit.php:70 msgid "You are not subscribed to that profile." msgstr "Не сте претплатени на тој профил." @@ -4190,7 +4266,7 @@ msgstr "Во барањето нема id на профилот." msgid "Unsubscribed" msgstr "Претплатата е откажана" -#: actions/updateprofile.php:62 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -4200,7 +4276,6 @@ msgstr "" #. TRANS: User admin panel title #: actions/useradminpanel.php:59 -#, fuzzy msgctxt "TITLE" msgid "User" msgstr "Корисник" @@ -4394,18 +4469,24 @@ msgstr "Групи %1$s, стр. %2$d" msgid "Search for more groups" msgstr "Пребарај уште групи" -#: actions/usergroups.php:153 +#: actions/usergroups.php:157 #, php-format msgid "%s is not a member of any group." msgstr "%s не членува во ниедна група." -#: actions/usergroups.php:158 +#: actions/usergroups.php:162 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" "Обидете се со [пребарување на групи](%%action.groupsearch%%) и придружете им " "се." +#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: lib/atomusernoticefeed.php:72 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "Подновувања од %1$s на %2$s!" + #: actions/version.php:73 #, php-format msgid "StatusNet %s" @@ -4461,7 +4542,7 @@ msgstr "" msgid "Plugins" msgstr "Приклучоци" -#: actions/version.php:196 lib/action.php:778 +#: actions/version.php:196 lib/action.php:767 msgid "Version" msgstr "Верзија" @@ -4527,22 +4608,22 @@ msgstr "Не можев да ја подновам пораката со нов msgid "DB error inserting hashtag: %s" msgstr "Грешка во базата на податоци при вметнувањето на хеш-ознака: %s" -#: classes/Notice.php:239 +#: classes/Notice.php:241 msgid "Problem saving notice. Too long." msgstr "Проблем со зачувувањето на белешката. Премногу долго." -#: classes/Notice.php:243 +#: classes/Notice.php:245 msgid "Problem saving notice. Unknown user." msgstr "Проблем со зачувувањето на белешката. Непознат корисник." -#: classes/Notice.php:248 +#: classes/Notice.php:250 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" "Премногу забелњшки за прекратко време; здивнете малку и продолжете за " "неколку минути." -#: classes/Notice.php:254 +#: classes/Notice.php:256 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." @@ -4550,19 +4631,19 @@ msgstr "" "Премногу дуплирани пораки во прекратко време; здивнете малку и продолжете за " "неколку минути." -#: classes/Notice.php:260 +#: classes/Notice.php:262 msgid "You are banned from posting notices on this site." msgstr "Забрането Ви е да објавувате забелешки на оваа веб-страница." -#: classes/Notice.php:326 classes/Notice.php:352 +#: classes/Notice.php:328 classes/Notice.php:354 msgid "Problem saving notice." msgstr "Проблем во зачувувањето на белешката." -#: classes/Notice.php:911 +#: classes/Notice.php:927 msgid "Problem saving group inbox." msgstr "Проблем при зачувувањето на групното приемно сандаче." -#: classes/Notice.php:1442 +#: classes/Notice.php:1459 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -4588,7 +4669,12 @@ msgstr "Не сте претплатени!" msgid "Couldn't delete self-subscription." msgstr "Не можам да ја избришам самопретплатата." -#: classes/Subscription.php:179 lib/subs.php:69 +#: classes/Subscription.php:190 +#, fuzzy +msgid "Couldn't delete subscription OMB token." +msgstr "Претплата не може да се избрише." + +#: classes/Subscription.php:201 lib/subs.php:69 msgid "Couldn't delete subscription." msgstr "Претплата не може да се избрише." @@ -4597,19 +4683,19 @@ msgstr "Претплата не може да се избрише." msgid "Welcome to %1$s, @%2$s!" msgstr "Добредојдовте на %1$s, @%2$s!" -#: classes/User_group.php:462 +#: classes/User_group.php:477 msgid "Could not create group." msgstr "Не можев да ја создадам групата." -#: classes/User_group.php:471 +#: classes/User_group.php:486 msgid "Could not set group URI." msgstr "Не можев да поставам URI на групата." -#: classes/User_group.php:492 +#: classes/User_group.php:507 msgid "Could not set group membership." msgstr "Не можев да назначам членство во групата." -#: classes/User_group.php:506 +#: classes/User_group.php:521 msgid "Could not save local group info." msgstr "Не можев да ги зачувам информациите за локалните групи." @@ -4650,194 +4736,171 @@ msgstr "%1$s - %2$s" msgid "Untitled page" msgstr "Страница без наслов" -#: lib/action.php:433 +#: lib/action.php:424 msgid "Primary site navigation" msgstr "Главна навигација" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:439 -#, fuzzy +#: lib/action.php:430 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" -msgstr "Личен профил и историја на пријатели" +msgstr "Личен профил и хронологија на пријатели" -#: lib/action.php:442 -#, fuzzy +#: lib/action.php:433 msgctxt "MENU" msgid "Personal" -msgstr "Личен" +msgstr "Лично" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:444 -#, fuzzy +#: lib/action.php:435 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Промена на е-пошта, аватар, лозинка, профил" -#: lib/action.php:447 -#, fuzzy -msgctxt "MENU" -msgid "Account" -msgstr "Сметка" - #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:450 -#, fuzzy +#: lib/action.php:440 msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Поврзи се со услуги" -#: lib/action.php:453 +#: lib/action.php:443 #, fuzzy -msgctxt "MENU" msgid "Connect" msgstr "Поврзи се" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:457 -#, fuzzy +#: lib/action.php:446 msgctxt "TOOLTIP" msgid "Change site configuration" -msgstr "Промена на конфигурацијата на веб-страницата" +msgstr "Промена на поставките на веб-страницата" -#: lib/action.php:460 -#, fuzzy +#: lib/action.php:449 msgctxt "MENU" msgid "Admin" -msgstr "Администратор" +msgstr "Админ" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:464 -#, fuzzy, php-format +#: lib/action.php:453 +#, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Поканете пријатели и колеги да Ви се придружат на %s" -#: lib/action.php:467 -#, fuzzy +#: lib/action.php:456 msgctxt "MENU" msgid "Invite" msgstr "Покани" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:473 -#, fuzzy +#: lib/action.php:462 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Одјава" -#: lib/action.php:476 -#, fuzzy +#: lib/action.php:465 msgctxt "MENU" msgid "Logout" -msgstr "Одјави се" +msgstr "Одјава" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:481 -#, fuzzy +#: lib/action.php:470 msgctxt "TOOLTIP" msgid "Create an account" msgstr "Создај сметка" -#: lib/action.php:484 -#, fuzzy +#: lib/action.php:473 msgctxt "MENU" msgid "Register" -msgstr "Регистрирај се" +msgstr "Регистрација" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:487 -#, fuzzy +#: lib/action.php:476 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Најава" -#: lib/action.php:490 -#, fuzzy +#: lib/action.php:479 msgctxt "MENU" msgid "Login" msgstr "Најава" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:493 -#, fuzzy +#: lib/action.php:482 msgctxt "TOOLTIP" msgid "Help me!" msgstr "Напомош!" -#: lib/action.php:496 -#, fuzzy +#: lib/action.php:485 msgctxt "MENU" msgid "Help" msgstr "Помош" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:499 -#, fuzzy +#: lib/action.php:488 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Пребарајте луѓе или текст" -#: lib/action.php:502 -#, fuzzy +#: lib/action.php:491 msgctxt "MENU" msgid "Search" msgstr "Барај" #. TRANS: DT element for site notice. String is hidden in default CSS. -#: lib/action.php:524 +#. TRANS: Menu item for site administration +#: lib/action.php:513 lib/adminpanelaction.php:398 msgid "Site notice" msgstr "Напомена за веб-страницата" -#: lib/action.php:590 +#: lib/action.php:579 msgid "Local views" msgstr "Локални прегледи" -#: lib/action.php:656 +#: lib/action.php:645 msgid "Page notice" msgstr "Напомена за страницата" -#: lib/action.php:758 +#: lib/action.php:747 msgid "Secondary site navigation" msgstr "Споредна навигација" -#: lib/action.php:763 +#: lib/action.php:752 msgid "Help" msgstr "Помош" -#: lib/action.php:765 +#: lib/action.php:754 msgid "About" msgstr "За" -#: lib/action.php:767 +#: lib/action.php:756 msgid "FAQ" msgstr "ЧПП" -#: lib/action.php:771 +#: lib/action.php:760 msgid "TOS" msgstr "Услови" -#: lib/action.php:774 +#: lib/action.php:763 msgid "Privacy" msgstr "Приватност" -#: lib/action.php:776 +#: lib/action.php:765 msgid "Source" msgstr "Изворен код" -#: lib/action.php:780 +#: lib/action.php:769 msgid "Contact" msgstr "Контакт" -#: lib/action.php:782 +#: lib/action.php:771 msgid "Badge" msgstr "Значка" -#: lib/action.php:810 +#: lib/action.php:799 msgid "StatusNet software license" msgstr "Лиценца на програмот StatusNet" -#: lib/action.php:813 +#: lib/action.php:802 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4846,12 +4909,12 @@ msgstr "" "**%%site.name%%** е сервис за микроблогирање што ви го овозможува [%%site." "broughtby%%](%%site.broughtbyurl%%). " -#: lib/action.php:815 +#: lib/action.php:804 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** е сервис за микроблогирање." -#: lib/action.php:817 +#: lib/action.php:806 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4862,57 +4925,57 @@ msgstr "" "верзија %s, достапен пд [GNU Affero General Public License](http://www.fsf." "org/licensing/licenses/agpl-3.0.html)." -#: lib/action.php:832 +#: lib/action.php:821 msgid "Site content license" msgstr "Лиценца на содржините на веб-страницата" -#: lib/action.php:837 +#: lib/action.php:826 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "Содржината и податоците на %1$s се лични и доверливи." -#: lib/action.php:842 +#: lib/action.php:831 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" "Авторските права на содржината и податоците се во сопственост на %1$s. Сите " "права задржани." -#: lib/action.php:845 +#: lib/action.php:834 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" "Авторските права на содржината и податоците им припаѓаат на учесниците. Сите " "права задржани." -#: lib/action.php:858 +#: lib/action.php:847 msgid "All " msgstr "Сите " -#: lib/action.php:864 +#: lib/action.php:853 msgid "license." msgstr "лиценца." -#: lib/action.php:1163 +#: lib/action.php:1152 msgid "Pagination" msgstr "Прелом на страници" -#: lib/action.php:1172 +#: lib/action.php:1161 msgid "After" msgstr "По" -#: lib/action.php:1180 +#: lib/action.php:1169 msgid "Before" msgstr "Пред" -#: lib/activity.php:449 +#: lib/activity.php:453 msgid "Can't handle remote content yet." msgstr "Сè уште не е поддржана обработката на оддалечена содржина." -#: lib/activity.php:477 +#: lib/activity.php:481 msgid "Can't handle embedded XML content yet." msgstr "Сè уште не е поддржана обработката на XML содржина." -#: lib/activity.php:481 +#: lib/activity.php:485 msgid "Can't handle embedded Base64 content yet." msgstr "Сè уште не е достапна обработката на вметната Base64 содржина." @@ -4927,91 +4990,78 @@ msgid "Changes to that panel are not allowed." msgstr "Менувањето на тој алатник не е дозволено." #. TRANS: Client error message -#: lib/adminpanelaction.php:211 +#: lib/adminpanelaction.php:229 msgid "showForm() not implemented." msgstr "showForm() не е имплементирано." #. TRANS: Client error message -#: lib/adminpanelaction.php:241 +#: lib/adminpanelaction.php:259 msgid "saveSettings() not implemented." msgstr "saveSettings() не е имплементирано." #. TRANS: Client error message -#: lib/adminpanelaction.php:265 +#: lib/adminpanelaction.php:283 msgid "Unable to delete design setting." msgstr "Не можам да ги избришам нагодувањата за изглед." #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:330 +#: lib/adminpanelaction.php:348 msgid "Basic site configuration" msgstr "Основни нагодувања на веб-страницата" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:332 -#, fuzzy +#: lib/adminpanelaction.php:350 msgctxt "MENU" msgid "Site" msgstr "Веб-страница" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:338 +#: lib/adminpanelaction.php:356 msgid "Design configuration" msgstr "Конфигурација на изгледот" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:340 -#, fuzzy +#: lib/adminpanelaction.php:358 msgctxt "MENU" msgid "Design" msgstr "Изглед" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:346 +#: lib/adminpanelaction.php:364 msgid "User configuration" msgstr "Конфигурација на корисник" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:348 -#, fuzzy -msgctxt "MENU" +#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 msgid "User" msgstr "Корисник" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:354 +#: lib/adminpanelaction.php:372 msgid "Access configuration" msgstr "Конфигурација на пристапот" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:356 -#, fuzzy -msgctxt "MENU" -msgid "Access" -msgstr "Пристап" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:362 +#: lib/adminpanelaction.php:380 msgid "Paths configuration" msgstr "Конфигурација на патеки" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:364 -#, fuzzy -msgctxt "MENU" -msgid "Paths" -msgstr "Патеки" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:370 +#: lib/adminpanelaction.php:388 msgid "Sessions configuration" msgstr "Конфигурација на сесиите" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:372 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:396 #, fuzzy -msgctxt "MENU" -msgid "Sessions" -msgstr "Сесии" +msgid "Edit site notice" +msgstr "Напомена за веб-страницата" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:404 +#, fuzzy +msgid "Snapshots configuration" +msgstr "Конфигурација на патеки" #: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." @@ -5540,6 +5590,11 @@ msgstr "Одберете ознака за да ја уточните листа msgid "Go" msgstr "Оди" +#: lib/grantroleform.php:91 +#, php-format +msgid "Grant this user the \"%s\" role" +msgstr "" + #: lib/groupeditform.php:163 msgid "URL of the homepage or blog of the group or topic" msgstr "URL на страницата или блогот на групата или темата" @@ -6161,10 +6216,6 @@ msgstr "Одговори" msgid "Favorites" msgstr "Омилени" -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "Корисник" - #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "Примени" @@ -6190,7 +6241,7 @@ msgstr "Ознаки во забелешките на %s" msgid "Unknown" msgstr "Непознато" -#: lib/profileaction.php:109 lib/profileaction.php:192 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:194 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Претплати" @@ -6198,23 +6249,23 @@ msgstr "Претплати" msgid "All subscriptions" msgstr "Сите претплати" -#: lib/profileaction.php:140 lib/profileaction.php:201 lib/subgroupnav.php:90 +#: lib/profileaction.php:142 lib/profileaction.php:203 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Претплатници" -#: lib/profileaction.php:157 +#: lib/profileaction.php:159 msgid "All subscribers" msgstr "Сите претплатници" -#: lib/profileaction.php:178 +#: lib/profileaction.php:180 msgid "User ID" msgstr "Кориснички ID" -#: lib/profileaction.php:183 +#: lib/profileaction.php:185 msgid "Member since" msgstr "Член од" -#: lib/profileaction.php:245 +#: lib/profileaction.php:247 msgid "All groups" msgstr "Сите групи" @@ -6254,7 +6305,12 @@ msgstr "Да ја повторам белешкава?" msgid "Repeat this notice" msgstr "Повтори ја забелешкава" -#: lib/router.php:668 +#: lib/revokeroleform.php:91 +#, fuzzy, php-format +msgid "Revoke the \"%s\" role from this user" +msgstr "Блокирај го овој корисник од оваа група" + +#: lib/router.php:671 msgid "No single user defined for single-user mode." msgstr "Не е зададен корисник за еднокорисничкиот режим." @@ -6408,47 +6464,64 @@ msgstr "Порака" msgid "Moderate" msgstr "Модерирај" -#: lib/util.php:1013 +#: lib/userprofile.php:352 +#, fuzzy +msgid "User role" +msgstr "Кориснички профил" + +#: lib/userprofile.php:354 +#, fuzzy +msgctxt "role" +msgid "Administrator" +msgstr "Администратори" + +#: lib/userprofile.php:355 +#, fuzzy +msgctxt "role" +msgid "Moderator" +msgstr "Модерирај" + +#: lib/util.php:1015 msgid "a few seconds ago" msgstr "пред неколку секунди" -#: lib/util.php:1015 +#: lib/util.php:1017 msgid "about a minute ago" msgstr "пред една минута" -#: lib/util.php:1017 +#: lib/util.php:1019 #, php-format msgid "about %d minutes ago" msgstr "пред %d минути" -#: lib/util.php:1019 +#: lib/util.php:1021 msgid "about an hour ago" msgstr "пред еден час" -#: lib/util.php:1021 +#: lib/util.php:1023 #, php-format msgid "about %d hours ago" msgstr "пред %d часа" -#: lib/util.php:1023 +#: lib/util.php:1025 msgid "about a day ago" msgstr "пред еден ден" -#: lib/util.php:1025 +#: lib/util.php:1027 #, php-format msgid "about %d days ago" msgstr "пред %d денови" -#: lib/util.php:1027 +#: lib/util.php:1029 msgid "about a month ago" msgstr "пред еден месец" -#: lib/util.php:1029 +#: lib/util.php:1031 #, php-format msgid "about %d months ago" msgstr "пред %d месеца" -#: lib/util.php:1031 +#: lib/util.php:1033 msgid "about a year ago" msgstr "пред една година" diff --git a/locale/nb/LC_MESSAGES/statusnet.po b/locale/nb/LC_MESSAGES/statusnet.po index a3e64e0cb7..305303deaf 100644 --- a/locale/nb/LC_MESSAGES/statusnet.po +++ b/locale/nb/LC_MESSAGES/statusnet.po @@ -9,19 +9,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-02 21:02+0000\n" -"PO-Revision-Date: 2010-03-02 21:03:19+0000\n" +"POT-Creation-Date: 2010-03-04 18:55+0000\n" +"PO-Revision-Date: 2010-03-04 18:56:53+0000\n" "Language-Team: Norwegian (bokmål)‬\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. TRANS: Page title -#: actions/accessadminpanel.php:55 +#. TRANS: Menu item for site administration +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 msgid "Access" msgstr "Tilgang" @@ -118,7 +119,7 @@ msgstr "%1$s og venner, side %2$d" #. TRANS: Page title. %1$s is user nickname #. TRANS: H1 text. %1$s is user nickname -#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -180,7 +181,7 @@ msgstr "" "eller post en notis for å få hans eller hennes oppmerksomhet." #. TRANS: H1 text -#: actions/all.php:174 +#: actions/all.php:178 msgid "You and friends" msgstr "Du og venner" @@ -207,11 +208,11 @@ msgstr "Oppdateringer fra %1$s og venner på %2$s!" #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 -#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 +#: actions/apitimelinegroup.php:160 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:148 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 #, fuzzy msgid "API method not found." msgstr "API-metode ikke funnet!" @@ -572,7 +573,7 @@ msgstr "" "%3$s dine %4$s-kontodata. Du bør bare gi tilgang til din %4" "$s-konto til tredjeparter du stoler på." -#: actions/apioauthauthorize.php:310 +#: actions/apioauthauthorize.php:310 lib/action.php:438 msgid "Account" msgstr "Konto" @@ -659,18 +660,6 @@ msgstr "%1$s / Favoritter fra %2$s" msgid "%1$s updates favorited by %2$s / %2$s." msgstr "%1$s oppdateringer markert som favoritt av %2$s / %2$s." -#: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:138 actions/userrss.php:90 -#, php-format -msgid "%s timeline" -msgstr "%s tidslinje" - -#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 -#: actions/userrss.php:92 -#, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "Oppdateringar fra %1$s på %2$s!" - #: actions/apitimelinementions.php:117 #, php-format msgid "%1$s / Updates mentioning %2$s" @@ -681,12 +670,12 @@ msgstr "%1$s / Oppdateringer som nevner %2$s" 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/apitimelinepublic.php:111 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "%s offentlig tidslinje" -#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "%s oppdateringer fra alle sammen!" @@ -932,7 +921,7 @@ msgid "Conversation" msgstr "Samtale" #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:216 lib/searchgroupnav.php:82 +#: lib/profileaction.php:218 lib/searchgroupnav.php:82 msgid "Notices" msgstr "Notiser" @@ -951,7 +940,7 @@ msgstr "Du er ikke eieren av dette programmet." #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1228 +#: lib/action.php:1217 msgid "There was a problem with your session token." msgstr "" @@ -1147,8 +1136,9 @@ msgstr "Tilbakestill til standardverdier" #: actions/designadminpanel.php:586 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 +#: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:208 #: actions/tagother.php:154 actions/useradminpanel.php:294 #: lib/applicationeditform.php:333 lib/applicationeditform.php:334 #: lib/designsettings.php:256 lib/groupeditform.php:202 @@ -1265,7 +1255,7 @@ msgstr "beskrivelse er for lang (maks %d tegn)" msgid "Could not update group." msgstr "Kunne ikke oppdatere gruppe." -#: actions/editgroup.php:264 classes/User_group.php:478 +#: actions/editgroup.php:264 classes/User_group.php:493 msgid "Could not create aliases." msgstr "Kunne ikke opprette alias." @@ -1387,7 +1377,7 @@ msgid "Cannot normalize that email address" msgstr "Klarer ikke normalisere epostadressen" #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:143 +#: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Ugyldig e-postadresse." @@ -1575,6 +1565,25 @@ msgstr "Ingen slik fil." msgid "Cannot read file." msgstr "Kan ikke lese fil." +#: actions/grantrole.php:62 actions/revokerole.php:62 +#, fuzzy +msgid "Invalid role." +msgstr "Ugyldig symbol." + +#: actions/grantrole.php:66 actions/revokerole.php:66 +msgid "This role is reserved and cannot be set." +msgstr "" + +#: actions/grantrole.php:75 +#, fuzzy +msgid "You cannot grant user roles on this site." +msgstr "Du er allerede logget inn!" + +#: actions/grantrole.php:82 +#, fuzzy +msgid "User already has this role." +msgstr "Du er allerede logget inn!" + #: actions/groupblock.php:71 actions/groupunblock.php:71 #: actions/makeadmin.php:71 actions/subedit.php:46 #: lib/profileformaction.php:70 @@ -1718,12 +1727,18 @@ msgstr "Gjør til administrator" msgid "Make this user an admin" msgstr "Gjør denne brukeren til administrator" +#: actions/grouprss.php:138 actions/userrss.php:90 +#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#, php-format +msgid "%s timeline" +msgstr "%s tidslinje" + #: actions/grouprss.php:140 #, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Oppdateringer fra medlemmer av %1$s på %2$s!" -#: actions/groups.php:62 lib/profileaction.php:210 lib/profileaction.php:230 +#: actions/groups.php:62 lib/profileaction.php:212 lib/profileaction.php:232 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" msgstr "Grupper" @@ -2307,8 +2322,8 @@ msgstr "innholdstype " msgid "Only " msgstr "Bare " -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 -#: lib/apiaction.php:1068 lib/apiaction.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1042 +#: lib/apiaction.php:1070 lib/apiaction.php:1179 msgid "Not a supported data format." msgstr "" @@ -2451,7 +2466,8 @@ msgstr "Klarer ikke å lagre nytt passord." msgid "Password saved." msgstr "Passordet ble lagret" -#: actions/pathsadminpanel.php:59 +#. TRANS: Menu item for site administration +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 msgid "Paths" msgstr "" @@ -2575,7 +2591,7 @@ msgstr "" msgid "SSL" msgstr "SSL" -#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 +#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202 msgid "Never" msgstr "Aldri" @@ -2629,11 +2645,11 @@ msgstr "Ugyldig e-postadresse" msgid "Users self-tagged with %1$s - page %2$d" msgstr "Mikroblogg av %s" -#: actions/postnotice.php:84 +#: actions/postnotice.php:95 msgid "Invalid notice content" msgstr "" -#: actions/postnotice.php:90 +#: actions/postnotice.php:101 #, php-format msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" @@ -2710,7 +2726,7 @@ msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" -#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 +#: actions/profilesettings.php:151 msgid "Language" msgstr "Språk" @@ -2737,7 +2753,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "«Om meg» er for lang (maks %d tegn)." -#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:151 msgid "Timezone not selected." msgstr "Tidssone ikke valgt." @@ -3041,7 +3057,7 @@ msgid "Same as password above. Required." msgstr "Samme som passord over. Kreves." #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 msgid "Email" msgstr "E-post" @@ -3143,7 +3159,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:368 +#: lib/userprofile.php:394 msgid "Subscribe" msgstr "" @@ -3244,6 +3260,16 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "Svar til %1$s på %2$s!" +#: actions/revokerole.php:75 +#, fuzzy +msgid "You cannot revoke user roles on this site." +msgstr "Du er allerede logget inn!" + +#: actions/revokerole.php:82 +#, fuzzy +msgid "User doesn't have this role." +msgstr "Brukeren har ingen profil." + #: actions/rsd.php:146 actions/version.php:157 msgid "StatusNet" msgstr "StatusNet" @@ -3258,7 +3284,9 @@ msgstr "Du er allerede logget inn!" msgid "User is already sandboxed." msgstr "Du er allerede logget inn!" +#. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:390 msgid "Sessions" msgstr "" @@ -3282,7 +3310,7 @@ msgstr "" msgid "Turn on debugging output for sessions." msgstr "" -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/useradminpanel.php:294 #, fuzzy msgid "Save site settings" @@ -3314,8 +3342,8 @@ msgstr "Organisasjon" msgid "Description" msgstr "Beskrivelse" -#: actions/showapplication.php:192 actions/showgroup.php:437 -#: lib/profileaction.php:174 +#: actions/showapplication.php:192 actions/showgroup.php:438 +#: lib/profileaction.php:176 msgid "Statistics" msgstr "Statistikk" @@ -3449,47 +3477,47 @@ msgstr "" msgid "Group actions" msgstr "" -#: actions/showgroup.php:336 +#: actions/showgroup.php:337 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "" -#: actions/showgroup.php:342 +#: actions/showgroup.php:343 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "" -#: actions/showgroup.php:348 +#: actions/showgroup.php:349 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "" -#: actions/showgroup.php:353 +#: actions/showgroup.php:354 #, fuzzy, php-format msgid "FOAF for %s group" msgstr "Klarte ikke å lagre profil." -#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 +#: actions/showgroup.php:390 actions/showgroup.php:447 lib/groupnav.php:91 #, fuzzy msgid "Members" msgstr "Medlem siden" -#: actions/showgroup.php:394 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 +#: actions/showgroup.php:395 lib/profileaction.php:117 +#: lib/profileaction.php:150 lib/profileaction.php:238 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "" -#: actions/showgroup.php:400 +#: actions/showgroup.php:401 msgid "All members" msgstr "" -#: actions/showgroup.php:440 +#: actions/showgroup.php:441 #, fuzzy msgid "Created" msgstr "Opprett" -#: actions/showgroup.php:456 +#: actions/showgroup.php:457 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3499,7 +3527,7 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showgroup.php:462 +#: actions/showgroup.php:463 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3508,7 +3536,7 @@ msgid "" "their life and interests. " msgstr "" -#: actions/showgroup.php:490 +#: actions/showgroup.php:491 msgid "Admins" msgstr "" @@ -3622,147 +3650,136 @@ msgid "User is already silenced." msgstr "Du er allerede logget inn!" #: actions/siteadminpanel.php:69 -msgid "Basic settings for this StatusNet site." +msgid "Basic settings for this StatusNet site" msgstr "" -#: actions/siteadminpanel.php:132 +#: actions/siteadminpanel.php:133 msgid "Site name must have non-zero length." msgstr "" -#: actions/siteadminpanel.php:140 +#: actions/siteadminpanel.php:141 #, fuzzy msgid "You must have a valid contact email address." msgstr "Ugyldig e-postadresse" -#: actions/siteadminpanel.php:158 +#: actions/siteadminpanel.php:159 #, php-format msgid "Unknown language \"%s\"." msgstr "" #: actions/siteadminpanel.php:165 -msgid "Invalid snapshot report URL." -msgstr "" - -#: actions/siteadminpanel.php:171 -msgid "Invalid snapshot run value." -msgstr "" - -#: actions/siteadminpanel.php:177 -msgid "Snapshot frequency must be a number." -msgstr "" - -#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "" -#: actions/siteadminpanel.php:189 +#: actions/siteadminpanel.php:171 msgid "Dupe limit must 1 or more seconds." msgstr "" -#: actions/siteadminpanel.php:239 +#: actions/siteadminpanel.php:221 msgid "General" msgstr "" -#: actions/siteadminpanel.php:242 +#: actions/siteadminpanel.php:224 msgid "Site name" msgstr "" -#: actions/siteadminpanel.php:243 +#: actions/siteadminpanel.php:225 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "" -#: actions/siteadminpanel.php:247 +#: actions/siteadminpanel.php:229 msgid "Brought by" msgstr "" -#: actions/siteadminpanel.php:248 +#: actions/siteadminpanel.php:230 msgid "Text used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:252 +#: actions/siteadminpanel.php:234 msgid "Brought by URL" msgstr "" -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:235 msgid "URL used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:239 msgid "Contact email address for your site" msgstr "" -#: actions/siteadminpanel.php:263 +#: actions/siteadminpanel.php:245 msgid "Local" msgstr "" -#: actions/siteadminpanel.php:274 +#: actions/siteadminpanel.php:256 msgid "Default timezone" msgstr "" -#: actions/siteadminpanel.php:275 +#: actions/siteadminpanel.php:257 msgid "Default timezone for the site; usually UTC." msgstr "" -#: actions/siteadminpanel.php:281 -msgid "Default site language" +#: actions/siteadminpanel.php:262 +#, fuzzy +msgid "Default language" +msgstr "Foretrukket språk" + +#: actions/siteadminpanel.php:263 +msgid "Site language when autodetection from browser settings is not available" msgstr "" -#: actions/siteadminpanel.php:289 -msgid "Snapshots" -msgstr "" - -#: actions/siteadminpanel.php:292 -msgid "Randomly during Web hit" -msgstr "" - -#: actions/siteadminpanel.php:293 -msgid "In a scheduled job" -msgstr "" - -#: actions/siteadminpanel.php:295 -msgid "Data snapshots" -msgstr "" - -#: actions/siteadminpanel.php:296 -msgid "When to send statistical data to status.net servers" -msgstr "" - -#: actions/siteadminpanel.php:301 -msgid "Frequency" -msgstr "" - -#: actions/siteadminpanel.php:302 -msgid "Snapshots will be sent once every N web hits" -msgstr "" - -#: actions/siteadminpanel.php:307 -msgid "Report URL" -msgstr "" - -#: actions/siteadminpanel.php:308 -msgid "Snapshots will be sent to this URL" -msgstr "" - -#: actions/siteadminpanel.php:315 +#: actions/siteadminpanel.php:271 msgid "Limits" msgstr "" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Text limit" msgstr "" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Maximum number of characters for notices." msgstr "" -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "Dupe limit" msgstr "" -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" +#: actions/sitenoticeadminpanel.php:56 +#, fuzzy +msgid "Site Notice" +msgstr "Notiser" + +#: actions/sitenoticeadminpanel.php:67 +msgid "Edit site-wide message" +msgstr "" + +#: actions/sitenoticeadminpanel.php:103 +#, fuzzy +msgid "Unable to save site notice." +msgstr "Kunne ikke lagre dine innstillinger for utseende." + +#: actions/sitenoticeadminpanel.php:113 +msgid "Max length for the site-wide notice is 255 chars" +msgstr "" + +#: actions/sitenoticeadminpanel.php:176 +#, fuzzy +msgid "Site notice text" +msgstr "Slett notis" + +#: actions/sitenoticeadminpanel.php:178 +msgid "Site-wide notice text (255 chars max; HTML okay)" +msgstr "" + +#: actions/sitenoticeadminpanel.php:198 +#, fuzzy +msgid "Save site notice" +msgstr "Innstillinger for IM" + #: actions/smssettings.php:58 #, fuzzy msgid "SMS settings" @@ -3860,6 +3877,65 @@ msgstr "" msgid "No code entered" msgstr "" +#. TRANS: Menu item for site administration +#: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 +#: lib/adminpanelaction.php:406 +msgid "Snapshots" +msgstr "" + +#: actions/snapshotadminpanel.php:65 +msgid "Manage snapshot configuration" +msgstr "" + +#: actions/snapshotadminpanel.php:127 +msgid "Invalid snapshot run value." +msgstr "" + +#: actions/snapshotadminpanel.php:133 +msgid "Snapshot frequency must be a number." +msgstr "" + +#: actions/snapshotadminpanel.php:144 +msgid "Invalid snapshot report URL." +msgstr "" + +#: actions/snapshotadminpanel.php:200 +msgid "Randomly during Web hit" +msgstr "" + +#: actions/snapshotadminpanel.php:201 +msgid "In a scheduled job" +msgstr "" + +#: actions/snapshotadminpanel.php:206 +msgid "Data snapshots" +msgstr "" + +#: actions/snapshotadminpanel.php:208 +msgid "When to send statistical data to status.net servers" +msgstr "" + +#: actions/snapshotadminpanel.php:217 +msgid "Frequency" +msgstr "" + +#: actions/snapshotadminpanel.php:218 +msgid "Snapshots will be sent once every N web hits" +msgstr "" + +#: actions/snapshotadminpanel.php:226 +msgid "Report URL" +msgstr "" + +#: actions/snapshotadminpanel.php:227 +msgid "Snapshots will be sent to this URL" +msgstr "" + +#: actions/snapshotadminpanel.php:248 +#, fuzzy +msgid "Save snapshot settings" +msgstr "Innstillinger for IM" + #: actions/subedit.php:70 msgid "You are not subscribed to that profile." msgstr "" @@ -4060,7 +4136,7 @@ msgstr "" msgid "Unsubscribed" msgstr "" -#: actions/updateprofile.php:62 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -4257,16 +4333,22 @@ msgstr "Alle abonnementer" msgid "Search for more groups" msgstr "" -#: actions/usergroups.php:153 +#: actions/usergroups.php:157 #, fuzzy, php-format msgid "%s is not a member of any group." msgstr "Du er allerede logget inn!" -#: actions/usergroups.php:158 +#: actions/usergroups.php:162 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" +#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: lib/atomusernoticefeed.php:72 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "Oppdateringar fra %1$s på %2$s!" + #: actions/version.php:73 #, fuzzy, php-format msgid "StatusNet %s" @@ -4310,7 +4392,7 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:196 lib/action.php:778 +#: actions/version.php:196 lib/action.php:767 #, fuzzy msgid "Version" msgstr "Personlig" @@ -4378,38 +4460,38 @@ msgstr "" msgid "DB error inserting hashtag: %s" msgstr "" -#: classes/Notice.php:239 +#: classes/Notice.php:241 msgid "Problem saving notice. Too long." msgstr "" -#: classes/Notice.php:243 +#: classes/Notice.php:245 msgid "Problem saving notice. Unknown user." msgstr "" -#: classes/Notice.php:248 +#: classes/Notice.php:250 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: classes/Notice.php:254 +#: classes/Notice.php:256 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." msgstr "" -#: classes/Notice.php:260 +#: classes/Notice.php:262 msgid "You are banned from posting notices on this site." msgstr "" -#: classes/Notice.php:326 classes/Notice.php:352 +#: classes/Notice.php:328 classes/Notice.php:354 msgid "Problem saving notice." msgstr "" -#: classes/Notice.php:911 +#: classes/Notice.php:927 msgid "Problem saving group inbox." msgstr "" -#: classes/Notice.php:1442 +#: classes/Notice.php:1459 #, php-format msgid "RT @%1$s %2$s" msgstr "" @@ -4436,7 +4518,12 @@ msgstr "Alle abonnementer" msgid "Couldn't delete self-subscription." msgstr "Klarte ikke å lagre avatar-informasjonen" -#: classes/Subscription.php:179 lib/subs.php:69 +#: classes/Subscription.php:190 +#, fuzzy +msgid "Couldn't delete subscription OMB token." +msgstr "Klarte ikke å lagre avatar-informasjonen" + +#: classes/Subscription.php:201 lib/subs.php:69 msgid "Couldn't delete subscription." msgstr "" @@ -4445,22 +4532,22 @@ msgstr "" msgid "Welcome to %1$s, @%2$s!" msgstr "" -#: classes/User_group.php:462 +#: classes/User_group.php:477 #, fuzzy msgid "Could not create group." msgstr "Klarte ikke å lagre avatar-informasjonen" -#: classes/User_group.php:471 +#: classes/User_group.php:486 #, fuzzy msgid "Could not set group URI." msgstr "Klarte ikke å lagre avatar-informasjonen" -#: classes/User_group.php:492 +#: classes/User_group.php:507 #, fuzzy msgid "Could not set group membership." msgstr "Klarte ikke å lagre avatar-informasjonen" -#: classes/User_group.php:506 +#: classes/User_group.php:521 #, fuzzy msgid "Could not save local group info." msgstr "Klarte ikke å lagre avatar-informasjonen" @@ -4503,191 +4590,185 @@ msgstr "%1$s sin status på %2$s" msgid "Untitled page" msgstr "" -#: lib/action.php:433 +#: lib/action.php:424 msgid "Primary site navigation" msgstr "" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:439 +#: lib/action.php:430 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:442 +#: lib/action.php:433 #, fuzzy msgctxt "MENU" msgid "Personal" msgstr "Personlig" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:444 +#: lib/action.php:435 #, fuzzy msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Endre passordet ditt" -#: lib/action.php:447 -#, fuzzy -msgctxt "MENU" -msgid "Account" -msgstr "Konto" - #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:450 +#: lib/action.php:440 #, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Koble til" -#: lib/action.php:453 +#: lib/action.php:443 #, fuzzy -msgctxt "MENU" msgid "Connect" msgstr "Koble til" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:457 +#: lib/action.php:446 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "" -#: lib/action.php:460 +#: lib/action.php:449 #, fuzzy msgctxt "MENU" msgid "Admin" msgstr "Administrator" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:464 +#: lib/action.php:453 #, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "" -#: lib/action.php:467 +#: lib/action.php:456 #, fuzzy msgctxt "MENU" msgid "Invite" msgstr "Kun invitasjon" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:473 +#: lib/action.php:462 #, fuzzy msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Tema for nettstedet." -#: lib/action.php:476 +#: lib/action.php:465 #, fuzzy msgctxt "MENU" msgid "Logout" msgstr "Logg ut" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:481 +#: lib/action.php:470 #, fuzzy msgctxt "TOOLTIP" msgid "Create an account" msgstr "Opprett en ny konto" -#: lib/action.php:484 +#: lib/action.php:473 #, fuzzy msgctxt "MENU" msgid "Register" msgstr "Registrering" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:487 +#: lib/action.php:476 #, fuzzy msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Tema for nettstedet." -#: lib/action.php:490 +#: lib/action.php:479 #, fuzzy msgctxt "MENU" msgid "Login" msgstr "Logg inn" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:493 +#: lib/action.php:482 #, fuzzy msgctxt "TOOLTIP" msgid "Help me!" msgstr "Hjelp" -#: lib/action.php:496 +#: lib/action.php:485 #, fuzzy msgctxt "MENU" msgid "Help" msgstr "Hjelp" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:499 +#: lib/action.php:488 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "" -#: lib/action.php:502 +#: lib/action.php:491 #, fuzzy msgctxt "MENU" msgid "Search" msgstr "Søk" #. TRANS: DT element for site notice. String is hidden in default CSS. -#: lib/action.php:524 +#. TRANS: Menu item for site administration +#: lib/action.php:513 lib/adminpanelaction.php:398 msgid "Site notice" msgstr "" -#: lib/action.php:590 +#: lib/action.php:579 msgid "Local views" msgstr "" -#: lib/action.php:656 +#: lib/action.php:645 msgid "Page notice" msgstr "" -#: lib/action.php:758 +#: lib/action.php:747 msgid "Secondary site navigation" msgstr "" -#: lib/action.php:763 +#: lib/action.php:752 msgid "Help" msgstr "Hjelp" -#: lib/action.php:765 +#: lib/action.php:754 msgid "About" msgstr "Om" -#: lib/action.php:767 +#: lib/action.php:756 msgid "FAQ" msgstr "OSS/FAQ" -#: lib/action.php:771 +#: lib/action.php:760 msgid "TOS" msgstr "" -#: lib/action.php:774 +#: lib/action.php:763 msgid "Privacy" msgstr "" -#: lib/action.php:776 +#: lib/action.php:765 msgid "Source" msgstr "Kilde" -#: lib/action.php:780 +#: lib/action.php:769 msgid "Contact" msgstr "Kontakt" -#: lib/action.php:782 +#: lib/action.php:771 msgid "Badge" msgstr "" -#: lib/action.php:810 +#: lib/action.php:799 msgid "StatusNet software license" msgstr "" -#: lib/action.php:813 +#: lib/action.php:802 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4696,12 +4777,12 @@ msgstr "" "**%%site.name%%** er en mikrobloggingtjeneste av [%%site.broughtby%%](%%site." "broughtbyurl%%). " -#: lib/action.php:815 +#: lib/action.php:804 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** er en mikrobloggingtjeneste. " -#: lib/action.php:817 +#: lib/action.php:806 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4709,54 +4790,54 @@ msgid "" "org/licensing/licenses/agpl-3.0.html)." msgstr "" -#: lib/action.php:832 +#: lib/action.php:821 msgid "Site content license" msgstr "" -#: lib/action.php:837 +#: lib/action.php:826 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:842 +#: lib/action.php:831 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:845 +#: lib/action.php:834 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" -#: lib/action.php:858 +#: lib/action.php:847 msgid "All " msgstr "" -#: lib/action.php:864 +#: lib/action.php:853 msgid "license." msgstr "" -#: lib/action.php:1163 +#: lib/action.php:1152 msgid "Pagination" msgstr "" -#: lib/action.php:1172 +#: lib/action.php:1161 msgid "After" msgstr "" -#: lib/action.php:1180 +#: lib/action.php:1169 #, fuzzy msgid "Before" msgstr "Tidligere »" -#: lib/activity.php:449 +#: lib/activity.php:453 msgid "Can't handle remote content yet." msgstr "" -#: lib/activity.php:477 +#: lib/activity.php:481 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activity.php:481 +#: lib/activity.php:485 msgid "Can't handle embedded Base64 content yet." msgstr "" @@ -4771,89 +4852,79 @@ msgid "Changes to that panel are not allowed." msgstr "" #. TRANS: Client error message -#: lib/adminpanelaction.php:211 +#: lib/adminpanelaction.php:229 msgid "showForm() not implemented." msgstr "" #. TRANS: Client error message -#: lib/adminpanelaction.php:241 +#: lib/adminpanelaction.php:259 msgid "saveSettings() not implemented." msgstr "" #. TRANS: Client error message -#: lib/adminpanelaction.php:265 +#: lib/adminpanelaction.php:283 msgid "Unable to delete design setting." msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:330 +#: lib/adminpanelaction.php:348 msgid "Basic site configuration" msgstr "" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:332 +#: lib/adminpanelaction.php:350 #, fuzzy msgctxt "MENU" msgid "Site" msgstr "Nettstedslogo" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:338 +#: lib/adminpanelaction.php:356 msgid "Design configuration" msgstr "" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:340 +#: lib/adminpanelaction.php:358 #, fuzzy msgctxt "MENU" msgid "Design" msgstr "Personlig" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:346 +#: lib/adminpanelaction.php:364 msgid "User configuration" msgstr "" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:348 -msgctxt "MENU" +#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 msgid "User" msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:354 +#: lib/adminpanelaction.php:372 msgid "Access configuration" msgstr "" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:356 -#, fuzzy -msgctxt "MENU" -msgid "Access" -msgstr "Tilgang" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:362 +#: lib/adminpanelaction.php:380 msgid "Paths configuration" msgstr "" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:364 -msgctxt "MENU" -msgid "Paths" -msgstr "" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:370 +#: lib/adminpanelaction.php:388 msgid "Sessions configuration" msgstr "" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:372 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:396 #, fuzzy -msgctxt "MENU" -msgid "Sessions" -msgstr "Personlig" +msgid "Edit site notice" +msgstr "Slett notis" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:404 +msgid "Snapshots configuration" +msgstr "" #: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." @@ -5354,6 +5425,11 @@ msgstr "" msgid "Go" msgstr "" +#: lib/grantroleform.php:91 +#, php-format +msgid "Grant this user the \"%s\" role" +msgstr "" + #: lib/groupeditform.php:163 #, fuzzy msgid "URL of the homepage or blog of the group or topic" @@ -5900,10 +5976,6 @@ msgstr "Svar" msgid "Favorites" msgstr "" -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "" - #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "" @@ -5929,7 +6001,7 @@ msgstr "" msgid "Unknown" msgstr "" -#: lib/profileaction.php:109 lib/profileaction.php:192 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:194 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "" @@ -5937,24 +6009,24 @@ msgstr "" msgid "All subscriptions" msgstr "Alle abonnementer" -#: lib/profileaction.php:140 lib/profileaction.php:201 lib/subgroupnav.php:90 +#: lib/profileaction.php:142 lib/profileaction.php:203 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "" -#: lib/profileaction.php:157 +#: lib/profileaction.php:159 #, fuzzy msgid "All subscribers" msgstr "Alle abonnementer" -#: lib/profileaction.php:178 +#: lib/profileaction.php:180 msgid "User ID" msgstr "" -#: lib/profileaction.php:183 +#: lib/profileaction.php:185 msgid "Member since" msgstr "Medlem siden" -#: lib/profileaction.php:245 +#: lib/profileaction.php:247 msgid "All groups" msgstr "" @@ -5998,7 +6070,12 @@ msgstr "Kan ikke slette notisen." msgid "Repeat this notice" msgstr "Kan ikke slette notisen." -#: lib/router.php:668 +#: lib/revokeroleform.php:91 +#, php-format +msgid "Revoke the \"%s\" role from this user" +msgstr "" + +#: lib/router.php:671 msgid "No single user defined for single-user mode." msgstr "" @@ -6160,47 +6237,62 @@ msgstr "" msgid "Moderate" msgstr "" -#: lib/util.php:1013 +#: lib/userprofile.php:352 +#, fuzzy +msgid "User role" +msgstr "Klarte ikke å lagre profil." + +#: lib/userprofile.php:354 +msgctxt "role" +msgid "Administrator" +msgstr "" + +#: lib/userprofile.php:355 +msgctxt "role" +msgid "Moderator" +msgstr "" + +#: lib/util.php:1015 msgid "a few seconds ago" msgstr "noen få sekunder siden" -#: lib/util.php:1015 +#: lib/util.php:1017 msgid "about a minute ago" msgstr "omtrent ett minutt siden" -#: lib/util.php:1017 +#: lib/util.php:1019 #, php-format msgid "about %d minutes ago" msgstr "omtrent %d minutter siden" -#: lib/util.php:1019 +#: lib/util.php:1021 msgid "about an hour ago" msgstr "omtrent én time siden" -#: lib/util.php:1021 +#: lib/util.php:1023 #, php-format msgid "about %d hours ago" msgstr "omtrent %d timer siden" -#: lib/util.php:1023 +#: lib/util.php:1025 msgid "about a day ago" msgstr "omtrent én dag siden" -#: lib/util.php:1025 +#: lib/util.php:1027 #, php-format msgid "about %d days ago" msgstr "omtrent %d dager siden" -#: lib/util.php:1027 +#: lib/util.php:1029 msgid "about a month ago" msgstr "omtrent én måned siden" -#: lib/util.php:1029 +#: lib/util.php:1031 #, php-format msgid "about %d months ago" msgstr "omtrent %d måneder siden" -#: lib/util.php:1031 +#: lib/util.php:1033 msgid "about a year ago" msgstr "omtrent ett år siden" diff --git a/locale/nl/LC_MESSAGES/statusnet.po b/locale/nl/LC_MESSAGES/statusnet.po index a9e7579564..1f2a549701 100644 --- a/locale/nl/LC_MESSAGES/statusnet.po +++ b/locale/nl/LC_MESSAGES/statusnet.po @@ -10,19 +10,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-02 21:02+0000\n" -"PO-Revision-Date: 2010-03-02 21:03:32+0000\n" +"POT-Creation-Date: 2010-03-04 18:55+0000\n" +"PO-Revision-Date: 2010-03-04 18:56:59+0000\n" "Language-Team: Dutch\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. TRANS: Page title -#: actions/accessadminpanel.php:55 +#. TRANS: Menu item for site administration +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 msgid "Access" msgstr "Toegang" @@ -43,10 +44,9 @@ msgstr "Mogen anonieme gebruikers (niet aangemeld) de website bekijken?" #. TRANS: Checkbox label for prohibiting anonymous users from viewing site. #: actions/accessadminpanel.php:167 -#, fuzzy msgctxt "LABEL" msgid "Private" -msgstr "Privé" +msgstr "Geen anonieme toegang" #. TRANS: Checkbox instructions for admin setting "Invite only" #: actions/accessadminpanel.php:174 @@ -74,7 +74,6 @@ msgid "Save access settings" msgstr "Toegangsinstellingen opslaan" #: actions/accessadminpanel.php:203 -#, fuzzy msgctxt "BUTTON" msgid "Save" msgstr "Opslaan" @@ -119,7 +118,7 @@ msgstr "%1$s en vrienden, pagina %2$d" #. TRANS: Page title. %1$s is user nickname #. TRANS: H1 text. %1$s is user nickname -#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -183,7 +182,7 @@ msgstr "" "een bericht sturen." #. TRANS: H1 text -#: actions/all.php:174 +#: actions/all.php:178 msgid "You and friends" msgstr "U en vrienden" @@ -210,11 +209,11 @@ msgstr "Updates van %1$s en vrienden op %2$s." #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 -#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 +#: actions/apitimelinegroup.php:160 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:148 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 msgid "API method not found." msgstr "De API-functie is niet aangetroffen." @@ -589,7 +588,7 @@ msgstr "" "van het type \"%3$s tot uw gebruikersgegevens. Geef alleen " "toegang tot uw gebruiker bij %4$s aan derde partijen die u vertrouwt." -#: actions/apioauthauthorize.php:310 +#: actions/apioauthauthorize.php:310 lib/action.php:438 msgid "Account" msgstr "Gebruiker" @@ -678,18 +677,6 @@ msgstr "%1$s / Favorieten van %2$s" msgid "%1$s updates favorited by %2$s / %2$s." msgstr "%1$s updates op de favorietenlijst geplaatst door %2$s / %3$s" -#: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:138 actions/userrss.php:90 -#, php-format -msgid "%s timeline" -msgstr "%s tijdlijn" - -#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 -#: actions/userrss.php:92 -#, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "Updates van %1$s op %2$s." - #: actions/apitimelinementions.php:117 #, php-format msgid "%1$s / Updates mentioning %2$s" @@ -700,12 +687,12 @@ msgstr "%1$s / Updates over %2$s" 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/apitimelinepublic.php:111 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "%s publieke tijdlijn" -#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "%s updates van iedereen" @@ -953,7 +940,7 @@ msgid "Conversation" msgstr "Dialoog" #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:216 lib/searchgroupnav.php:82 +#: lib/profileaction.php:218 lib/searchgroupnav.php:82 msgid "Notices" msgstr "Mededelingen" @@ -972,7 +959,7 @@ msgstr "U bent niet de eigenaar van deze applicatie." #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1228 +#: lib/action.php:1217 msgid "There was a problem with your session token." msgstr "Er is een probleem met uw sessietoken." @@ -1169,8 +1156,9 @@ msgstr "Standaardinstellingen toepassen" #: actions/designadminpanel.php:586 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 +#: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:208 #: actions/tagother.php:154 actions/useradminpanel.php:294 #: lib/applicationeditform.php:333 lib/applicationeditform.php:334 #: lib/designsettings.php:256 lib/groupeditform.php:202 @@ -1286,7 +1274,7 @@ msgstr "de beschrijving is te lang (maximaal %d tekens)" msgid "Could not update group." msgstr "Het was niet mogelijk de groep bij te werken." -#: actions/editgroup.php:264 classes/User_group.php:478 +#: actions/editgroup.php:264 classes/User_group.php:493 msgid "Could not create aliases." msgstr "Het was niet mogelijk de aliassen aan te maken." @@ -1410,7 +1398,7 @@ msgid "Cannot normalize that email address" msgstr "Kan het emailadres niet normaliseren" #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:143 +#: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Geen geldig e-mailadres." @@ -1608,6 +1596,25 @@ msgstr "Het bestand bestaat niet." msgid "Cannot read file." msgstr "Het bestand kon niet gelezen worden." +#: actions/grantrole.php:62 actions/revokerole.php:62 +#, fuzzy +msgid "Invalid role." +msgstr "Ongeldig token." + +#: actions/grantrole.php:66 actions/revokerole.php:66 +msgid "This role is reserved and cannot be set." +msgstr "" + +#: actions/grantrole.php:75 +#, fuzzy +msgid "You cannot grant user roles on this site." +msgstr "Op deze website kunt u gebruikers niet in de zandbak plaatsen." + +#: actions/grantrole.php:82 +#, fuzzy +msgid "User already has this role." +msgstr "Deze gebruiker is al gemuilkorfd." + #: actions/groupblock.php:71 actions/groupunblock.php:71 #: actions/makeadmin.php:71 actions/subedit.php:46 #: lib/profileformaction.php:70 @@ -1757,12 +1764,18 @@ msgstr "Beheerder maken" msgid "Make this user an admin" msgstr "Deze gebruiker beheerder maken" +#: actions/grouprss.php:138 actions/userrss.php:90 +#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#, php-format +msgid "%s timeline" +msgstr "%s tijdlijn" + #: actions/grouprss.php:140 #, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Updates voor leden van %1$s op %2$s." -#: actions/groups.php:62 lib/profileaction.php:210 lib/profileaction.php:230 +#: actions/groups.php:62 lib/profileaction.php:212 lib/profileaction.php:232 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" msgstr "Groepen" @@ -2027,7 +2040,6 @@ msgstr "Persoonlijk bericht bij de uitnodiging (optioneel)." #. TRANS: Send button for inviting friends #: actions/invite.php:198 -#, fuzzy msgctxt "BUTTON" msgid "Send" msgstr "Verzenden" @@ -2392,8 +2404,8 @@ msgstr "inhoudstype " msgid "Only " msgstr "Alleen " -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 -#: lib/apiaction.php:1068 lib/apiaction.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1042 +#: lib/apiaction.php:1070 lib/apiaction.php:1179 msgid "Not a supported data format." msgstr "Geen ondersteund gegevensformaat." @@ -2532,7 +2544,8 @@ msgstr "Het was niet mogelijk het nieuwe wachtwoord op te slaan." msgid "Password saved." msgstr "Het wachtwoord is opgeslagen." -#: actions/pathsadminpanel.php:59 +#. TRANS: Menu item for site administration +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 msgid "Paths" msgstr "Paden" @@ -2652,7 +2665,7 @@ msgstr "Achtergrondenmap" msgid "SSL" msgstr "SSL" -#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 +#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202 msgid "Never" msgstr "Nooit" @@ -2708,11 +2721,11 @@ msgstr "Geen geldig gebruikerslabel: %s" msgid "Users self-tagged with %1$s - page %2$d" msgstr "Gebruikers die zichzelf met %1$s hebben gelabeld - pagina %2$d" -#: actions/postnotice.php:84 +#: actions/postnotice.php:95 msgid "Invalid notice content" msgstr "Ongeldige mededelinginhoud" -#: actions/postnotice.php:90 +#: actions/postnotice.php:101 #, php-format msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" @@ -2794,7 +2807,7 @@ msgstr "" "Eigen labels (letter, getallen, -, ., en _). Gescheiden door komma's of " "spaties" -#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 +#: actions/profilesettings.php:151 msgid "Language" msgstr "Taal" @@ -2822,7 +2835,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "De beschrijving is te lang (maximaal %d tekens)." -#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:151 msgid "Timezone not selected." msgstr "Er is geen tijdzone geselecteerd." @@ -3147,7 +3160,7 @@ msgid "Same as password above. Required." msgstr "Gelijk aan het wachtwoord hierboven. Verplicht" #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 msgid "Email" msgstr "E-mail" @@ -3254,7 +3267,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "De URL van uw profiel bij een andere, compatibele microblogdienst" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:368 +#: lib/userprofile.php:394 msgid "Subscribe" msgstr "Abonneren" @@ -3358,6 +3371,16 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "Antwoorden aan %1$s op %2$s." +#: actions/revokerole.php:75 +#, fuzzy +msgid "You cannot revoke user roles on this site." +msgstr "U kunt gebruikers op deze website niet muilkorven." + +#: actions/revokerole.php:82 +#, fuzzy +msgid "User doesn't have this role." +msgstr "Gebruiker zonder bijbehorend profiel." + #: actions/rsd.php:146 actions/version.php:157 msgid "StatusNet" msgstr "StatusNet" @@ -3370,7 +3393,9 @@ msgstr "Op deze website kunt u gebruikers niet in de zandbak plaatsen." msgid "User is already sandboxed." msgstr "Deze gebruiker is al in de zandbak geplaatst." +#. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:390 msgid "Sessions" msgstr "Sessies" @@ -3394,7 +3419,7 @@ msgstr "Sessies debuggen" msgid "Turn on debugging output for sessions." msgstr "Debuguitvoer voor sessies inschakelen." -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "Websiteinstellingen opslaan" @@ -3425,8 +3450,8 @@ msgstr "Organisatie" msgid "Description" msgstr "Beschrijving" -#: actions/showapplication.php:192 actions/showgroup.php:437 -#: lib/profileaction.php:174 +#: actions/showapplication.php:192 actions/showgroup.php:438 +#: lib/profileaction.php:176 msgid "Statistics" msgstr "Statistieken" @@ -3570,45 +3595,45 @@ msgstr "Aliassen" msgid "Group actions" msgstr "Groepshandelingen" -#: actions/showgroup.php:336 +#: actions/showgroup.php:337 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Mededelingenfeed voor groep %s (RSS 1.0)" -#: actions/showgroup.php:342 +#: actions/showgroup.php:343 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Mededelingenfeed voor groep %s (RSS 2.0)" -#: actions/showgroup.php:348 +#: actions/showgroup.php:349 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "Mededelingenfeed voor groep %s (Atom)" -#: actions/showgroup.php:353 +#: actions/showgroup.php:354 #, php-format msgid "FOAF for %s group" msgstr "Vriend van een vriend voor de groep %s" -#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 +#: actions/showgroup.php:390 actions/showgroup.php:447 lib/groupnav.php:91 msgid "Members" msgstr "Leden" -#: actions/showgroup.php:394 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 +#: actions/showgroup.php:395 lib/profileaction.php:117 +#: lib/profileaction.php:150 lib/profileaction.php:238 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(geen)" -#: actions/showgroup.php:400 +#: actions/showgroup.php:401 msgid "All members" msgstr "Alle leden" -#: actions/showgroup.php:440 +#: actions/showgroup.php:441 msgid "Created" msgstr "Aangemaakt" -#: actions/showgroup.php:456 +#: actions/showgroup.php:457 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3624,7 +3649,7 @@ msgstr "" "lid te worden van deze groep en nog veel meer! [Meer lezen...](%%%%doc.help%%" "%%)" -#: actions/showgroup.php:462 +#: actions/showgroup.php:463 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3637,7 +3662,7 @@ msgstr "" "[StatusNet](http://status.net/). De leden wisselen korte mededelingen uit " "over hun ervaringen en interesses. " -#: actions/showgroup.php:490 +#: actions/showgroup.php:491 msgid "Admins" msgstr "Beheerders" @@ -3760,154 +3785,144 @@ msgid "User is already silenced." msgstr "Deze gebruiker is al gemuilkorfd." #: actions/siteadminpanel.php:69 -msgid "Basic settings for this StatusNet site." +#, fuzzy +msgid "Basic settings for this StatusNet site" msgstr "Basisinstellingen voor deze StatusNet-website." -#: actions/siteadminpanel.php:132 +#: actions/siteadminpanel.php:133 msgid "Site name must have non-zero length." msgstr "De sitenaam moet ingevoerd worden en mag niet leeg zijn." -#: actions/siteadminpanel.php:140 +#: actions/siteadminpanel.php:141 msgid "You must have a valid contact email address." msgstr "" "U moet een geldig e-mailadres opgeven waarop contact opgenomen kan worden." -#: actions/siteadminpanel.php:158 +#: actions/siteadminpanel.php:159 #, php-format msgid "Unknown language \"%s\"." msgstr "De taal \"%s\" is niet bekend." #: actions/siteadminpanel.php:165 -msgid "Invalid snapshot report URL." -msgstr "De rapportage-URL voor snapshots is ongeldig." - -#: actions/siteadminpanel.php:171 -msgid "Invalid snapshot run value." -msgstr "De waarde voor het uitvoeren van snapshots is ongeldig." - -#: actions/siteadminpanel.php:177 -msgid "Snapshot frequency must be a number." -msgstr "De snapshotfrequentie moet een getal zijn." - -#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "De minimale tekstlimiet is 140 tekens." -#: actions/siteadminpanel.php:189 +#: actions/siteadminpanel.php:171 msgid "Dupe limit must 1 or more seconds." msgstr "De duplicaatlimiet moet één of meer seconden zijn." -#: actions/siteadminpanel.php:239 +#: actions/siteadminpanel.php:221 msgid "General" msgstr "Algemeen" -#: actions/siteadminpanel.php:242 +#: actions/siteadminpanel.php:224 msgid "Site name" msgstr "Websitenaam" -#: actions/siteadminpanel.php:243 +#: actions/siteadminpanel.php:225 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "De naam van de website, zoals \"UwBedrijf Microblog\"" -#: actions/siteadminpanel.php:247 +#: actions/siteadminpanel.php:229 msgid "Brought by" msgstr "Mogelijk gemaakt door" -#: actions/siteadminpanel.php:248 +#: actions/siteadminpanel.php:230 msgid "Text used for credits link in footer of each page" msgstr "" "De tekst die gebruikt worden in de \"creditsverwijzing\" in de voettekst van " "iedere pagina" -#: actions/siteadminpanel.php:252 +#: actions/siteadminpanel.php:234 msgid "Brought by URL" msgstr "\"Mogelijk gemaakt door\"-URL" -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:235 msgid "URL used for credits link in footer of each page" msgstr "" "URL die wordt gebruikt voor de verwijzing naar de hoster en dergelijke in de " "voettekst van iedere pagina" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:239 msgid "Contact email address for your site" msgstr "E-mailadres om contact op te nemen met de websitebeheerder" -#: actions/siteadminpanel.php:263 +#: actions/siteadminpanel.php:245 msgid "Local" msgstr "Lokaal" -#: actions/siteadminpanel.php:274 +#: actions/siteadminpanel.php:256 msgid "Default timezone" msgstr "Standaardtijdzone" -#: actions/siteadminpanel.php:275 +#: actions/siteadminpanel.php:257 msgid "Default timezone for the site; usually UTC." msgstr "Standaardtijdzone voor de website. Meestal UTC." -#: actions/siteadminpanel.php:281 -msgid "Default site language" +#: actions/siteadminpanel.php:262 +#, fuzzy +msgid "Default language" msgstr "Standaardtaal" -#: actions/siteadminpanel.php:289 -msgid "Snapshots" -msgstr "Snapshots" - -#: actions/siteadminpanel.php:292 -msgid "Randomly during Web hit" -msgstr "Willekeurig tijdens een websitehit" - -#: actions/siteadminpanel.php:293 -msgid "In a scheduled job" -msgstr "Als geplande taak" - -#: actions/siteadminpanel.php:295 -msgid "Data snapshots" -msgstr "Snapshots van gegevens" - -#: actions/siteadminpanel.php:296 -msgid "When to send statistical data to status.net servers" +#: actions/siteadminpanel.php:263 +msgid "Site language when autodetection from browser settings is not available" msgstr "" -"Wanneer statistische gegevens naar de status.net-servers verzonden worden" -#: actions/siteadminpanel.php:301 -msgid "Frequency" -msgstr "Frequentie" - -#: actions/siteadminpanel.php:302 -msgid "Snapshots will be sent once every N web hits" -msgstr "Iedere zoveel websitehits wordt een snapshot verzonden" - -#: actions/siteadminpanel.php:307 -msgid "Report URL" -msgstr "Rapportage-URL" - -#: actions/siteadminpanel.php:308 -msgid "Snapshots will be sent to this URL" -msgstr "Snapshots worden naar deze URL verzonden" - -#: actions/siteadminpanel.php:315 +#: actions/siteadminpanel.php:271 msgid "Limits" msgstr "Limieten" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Text limit" msgstr "Tekstlimiet" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Maximum number of characters for notices." msgstr "Maximaal aantal te gebruiken tekens voor mededelingen." -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "Dupe limit" msgstr "Duplicaatlimiet" -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" "Hoe lang gebruikers moeten wachten (in seconden) voor ze hetzelfde kunnen " "zenden." +#: actions/sitenoticeadminpanel.php:56 +#, fuzzy +msgid "Site Notice" +msgstr "Mededeling van de website" + +#: actions/sitenoticeadminpanel.php:67 +#, fuzzy +msgid "Edit site-wide message" +msgstr "Nieuw bericht" + +#: actions/sitenoticeadminpanel.php:103 +#, fuzzy +msgid "Unable to save site notice." +msgstr "Het was niet mogelijk om uw ontwerpinstellingen op te slaan." + +#: actions/sitenoticeadminpanel.php:113 +msgid "Max length for the site-wide notice is 255 chars" +msgstr "" + +#: actions/sitenoticeadminpanel.php:176 +#, fuzzy +msgid "Site notice text" +msgstr "Mededeling van de website" + +#: actions/sitenoticeadminpanel.php:178 +msgid "Site-wide notice text (255 chars max; HTML okay)" +msgstr "" + +#: actions/sitenoticeadminpanel.php:198 +#, fuzzy +msgid "Save site notice" +msgstr "Mededeling van de website" + #: actions/smssettings.php:58 msgid "SMS settings" msgstr "SMS-instellingen" @@ -4007,6 +4022,67 @@ msgstr "" msgid "No code entered" msgstr "Er is geen code ingevoerd" +#. TRANS: Menu item for site administration +#: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 +#: lib/adminpanelaction.php:406 +msgid "Snapshots" +msgstr "Snapshots" + +#: actions/snapshotadminpanel.php:65 +#, fuzzy +msgid "Manage snapshot configuration" +msgstr "Websiteinstellingen wijzigen" + +#: actions/snapshotadminpanel.php:127 +msgid "Invalid snapshot run value." +msgstr "De waarde voor het uitvoeren van snapshots is ongeldig." + +#: actions/snapshotadminpanel.php:133 +msgid "Snapshot frequency must be a number." +msgstr "De snapshotfrequentie moet een getal zijn." + +#: actions/snapshotadminpanel.php:144 +msgid "Invalid snapshot report URL." +msgstr "De rapportage-URL voor snapshots is ongeldig." + +#: actions/snapshotadminpanel.php:200 +msgid "Randomly during Web hit" +msgstr "Willekeurig tijdens een websitehit" + +#: actions/snapshotadminpanel.php:201 +msgid "In a scheduled job" +msgstr "Als geplande taak" + +#: actions/snapshotadminpanel.php:206 +msgid "Data snapshots" +msgstr "Snapshots van gegevens" + +#: actions/snapshotadminpanel.php:208 +msgid "When to send statistical data to status.net servers" +msgstr "" +"Wanneer statistische gegevens naar de status.net-servers verzonden worden" + +#: actions/snapshotadminpanel.php:217 +msgid "Frequency" +msgstr "Frequentie" + +#: actions/snapshotadminpanel.php:218 +msgid "Snapshots will be sent once every N web hits" +msgstr "Iedere zoveel websitehits wordt een snapshot verzonden" + +#: actions/snapshotadminpanel.php:226 +msgid "Report URL" +msgstr "Rapportage-URL" + +#: actions/snapshotadminpanel.php:227 +msgid "Snapshots will be sent to this URL" +msgstr "Snapshots worden naar deze URL verzonden" + +#: actions/snapshotadminpanel.php:248 +#, fuzzy +msgid "Save snapshot settings" +msgstr "Websiteinstellingen opslaan" + #: actions/subedit.php:70 msgid "You are not subscribed to that profile." msgstr "U bent niet geabonneerd op dat profiel." @@ -4218,7 +4294,7 @@ msgstr "Het profiel-ID was niet aanwezig in het verzoek." msgid "Unsubscribed" msgstr "Het abonnement is opgezegd" -#: actions/updateprofile.php:62 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -4228,7 +4304,6 @@ msgstr "" #. TRANS: User admin panel title #: actions/useradminpanel.php:59 -#, fuzzy msgctxt "TITLE" msgid "User" msgstr "Gebruiker" @@ -4423,17 +4498,23 @@ msgstr "Groepen voor %1$s, pagina %2$d" msgid "Search for more groups" msgstr "Meer groepen zoeken" -#: actions/usergroups.php:153 +#: actions/usergroups.php:157 #, php-format msgid "%s is not a member of any group." msgstr "%s is van geen enkele groep lid." -#: actions/usergroups.php:158 +#: actions/usergroups.php:162 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" "U kunt [naar groepen zoeken](%%action.groupsearch%%) en daar lid van worden." +#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: lib/atomusernoticefeed.php:72 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "Updates van %1$s op %2$s." + #: actions/version.php:73 #, php-format msgid "StatusNet %s" @@ -4489,7 +4570,7 @@ msgstr "" msgid "Plugins" msgstr "Plug-ins" -#: actions/version.php:196 lib/action.php:778 +#: actions/version.php:196 lib/action.php:767 msgid "Version" msgstr "Versie" @@ -4556,26 +4637,26 @@ msgstr "Het was niet mogelijk het bericht bij te werken met de nieuwe URI." msgid "DB error inserting hashtag: %s" msgstr "Er is een databasefout opgetreden bij de invoer van de hashtag: %s" -#: classes/Notice.php:239 +#: classes/Notice.php:241 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:243 +#: classes/Notice.php:245 msgid "Problem saving notice. Unknown user." msgstr "" "Er was een probleem bij het opslaan van de mededeling. De gebruiker is " "onbekend." -#: classes/Notice.php:248 +#: classes/Notice.php:250 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" "U hebt te snel te veel mededelingen verstuurd. Kom even op adem en probeer " "het over enige tijd weer." -#: classes/Notice.php:254 +#: classes/Notice.php:256 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." @@ -4583,22 +4664,22 @@ msgstr "" "Te veel duplicaatberichten te snel achter elkaar. Neem een adempauze en " "plaats over een aantal minuten pas weer een bericht." -#: classes/Notice.php:260 +#: classes/Notice.php:262 msgid "You are banned from posting notices on this site." msgstr "" "U bent geblokkeerd en mag geen mededelingen meer achterlaten op deze site." -#: classes/Notice.php:326 classes/Notice.php:352 +#: classes/Notice.php:328 classes/Notice.php:354 msgid "Problem saving notice." msgstr "Er is een probleem opgetreden bij het opslaan van de mededeling." -#: classes/Notice.php:911 +#: classes/Notice.php:927 msgid "Problem saving group inbox." msgstr "" "Er is een probleem opgetreden bij het opslaan van het Postvak IN van de " "groep." -#: classes/Notice.php:1442 +#: classes/Notice.php:1459 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -4623,7 +4704,12 @@ msgstr "Niet geabonneerd!" msgid "Couldn't delete self-subscription." msgstr "Het was niet mogelijk het abonnement op uzelf te verwijderen." -#: classes/Subscription.php:179 lib/subs.php:69 +#: classes/Subscription.php:190 +#, fuzzy +msgid "Couldn't delete subscription OMB token." +msgstr "Kon abonnement niet verwijderen." + +#: classes/Subscription.php:201 lib/subs.php:69 msgid "Couldn't delete subscription." msgstr "Kon abonnement niet verwijderen." @@ -4632,19 +4718,19 @@ msgstr "Kon abonnement niet verwijderen." msgid "Welcome to %1$s, @%2$s!" msgstr "Welkom bij %1$s, @%2$s!" -#: classes/User_group.php:462 +#: classes/User_group.php:477 msgid "Could not create group." msgstr "Het was niet mogelijk de groep aan te maken." -#: classes/User_group.php:471 +#: classes/User_group.php:486 msgid "Could not set group URI." msgstr "Het was niet mogelijk de groeps-URI in te stellen." -#: classes/User_group.php:492 +#: classes/User_group.php:507 msgid "Could not set group membership." msgstr "Het was niet mogelijk het groepslidmaatschap in te stellen." -#: classes/User_group.php:506 +#: classes/User_group.php:521 msgid "Could not save local group info." msgstr "Het was niet mogelijk de lokale groepsinformatie op te slaan." @@ -4685,194 +4771,171 @@ msgstr "%1$s - %2$s" msgid "Untitled page" msgstr "Naamloze pagina" -#: lib/action.php:433 +#: lib/action.php:424 msgid "Primary site navigation" msgstr "Primaire sitenavigatie" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:439 -#, fuzzy +#: lib/action.php:430 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Persoonlijk profiel en tijdlijn van vrienden" -#: lib/action.php:442 -#, fuzzy +#: lib/action.php:433 msgctxt "MENU" msgid "Personal" msgstr "Persoonlijk" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:444 -#, fuzzy +#: lib/action.php:435 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Uw e-mailadres, avatar, wachtwoord of profiel wijzigen" -#: lib/action.php:447 -#, fuzzy -msgctxt "MENU" -msgid "Account" -msgstr "Gebruiker" - #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:450 -#, fuzzy +#: lib/action.php:440 msgctxt "TOOLTIP" msgid "Connect to services" -msgstr "Met diensten verbinden" +msgstr "Met andere diensten koppelen" -#: lib/action.php:453 +#: lib/action.php:443 #, fuzzy -msgctxt "MENU" msgid "Connect" -msgstr "Koppelen" +msgstr "Koppelingen" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:457 -#, fuzzy +#: lib/action.php:446 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Websiteinstellingen wijzigen" -#: lib/action.php:460 -#, fuzzy +#: lib/action.php:449 msgctxt "MENU" msgid "Admin" -msgstr "Beheerder" +msgstr "Beheer" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:464 -#, fuzzy, php-format +#: lib/action.php:453 +#, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Vrienden en collega's uitnodigen om u te vergezellen op %s" -#: lib/action.php:467 -#, fuzzy +#: lib/action.php:456 msgctxt "MENU" msgid "Invite" -msgstr "Uitnodigen" +msgstr "Uitnodigingen" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:473 -#, fuzzy +#: lib/action.php:462 msgctxt "TOOLTIP" msgid "Logout from the site" -msgstr "Van de site afmelden" +msgstr "Gebruiker afmelden" -#: lib/action.php:476 -#, fuzzy +#: lib/action.php:465 msgctxt "MENU" msgid "Logout" msgstr "Afmelden" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:481 -#, fuzzy +#: lib/action.php:470 msgctxt "TOOLTIP" msgid "Create an account" msgstr "Gebruiker aanmaken" -#: lib/action.php:484 -#, fuzzy +#: lib/action.php:473 msgctxt "MENU" msgid "Register" msgstr "Registreren" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:487 -#, fuzzy +#: lib/action.php:476 msgctxt "TOOLTIP" msgid "Login to the site" -msgstr "Bij de site aanmelden" +msgstr "Gebruiker aanmelden" -#: lib/action.php:490 -#, fuzzy +#: lib/action.php:479 msgctxt "MENU" msgid "Login" msgstr "Aanmelden" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:493 -#, fuzzy +#: lib/action.php:482 msgctxt "TOOLTIP" msgid "Help me!" msgstr "Help me!" -#: lib/action.php:496 -#, fuzzy +#: lib/action.php:485 msgctxt "MENU" msgid "Help" msgstr "Help" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:499 -#, fuzzy +#: lib/action.php:488 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Naar gebruikers of tekst zoeken" -#: lib/action.php:502 -#, fuzzy +#: lib/action.php:491 msgctxt "MENU" msgid "Search" msgstr "Zoeken" #. TRANS: DT element for site notice. String is hidden in default CSS. -#: lib/action.php:524 +#. TRANS: Menu item for site administration +#: lib/action.php:513 lib/adminpanelaction.php:398 msgid "Site notice" msgstr "Mededeling van de website" -#: lib/action.php:590 +#: lib/action.php:579 msgid "Local views" msgstr "Lokale weergaven" -#: lib/action.php:656 +#: lib/action.php:645 msgid "Page notice" msgstr "Mededeling van de pagina" -#: lib/action.php:758 +#: lib/action.php:747 msgid "Secondary site navigation" msgstr "Secundaire sitenavigatie" -#: lib/action.php:763 +#: lib/action.php:752 msgid "Help" msgstr "Help" -#: lib/action.php:765 +#: lib/action.php:754 msgid "About" msgstr "Over" -#: lib/action.php:767 +#: lib/action.php:756 msgid "FAQ" msgstr "Veel gestelde vragen" -#: lib/action.php:771 +#: lib/action.php:760 msgid "TOS" msgstr "Gebruiksvoorwaarden" -#: lib/action.php:774 +#: lib/action.php:763 msgid "Privacy" msgstr "Privacy" -#: lib/action.php:776 +#: lib/action.php:765 msgid "Source" msgstr "Broncode" -#: lib/action.php:780 +#: lib/action.php:769 msgid "Contact" msgstr "Contact" -#: lib/action.php:782 +#: lib/action.php:771 msgid "Badge" msgstr "Widget" -#: lib/action.php:810 +#: lib/action.php:799 msgid "StatusNet software license" msgstr "Licentie van de StatusNet-software" -#: lib/action.php:813 +#: lib/action.php:802 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4881,12 +4944,12 @@ msgstr "" "**%%site.name%%** is een microblogdienst van [%%site.broughtby%%](%%site." "broughtbyurl%%). " -#: lib/action.php:815 +#: lib/action.php:804 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** is een microblogdienst. " -#: lib/action.php:817 +#: lib/action.php:806 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4897,57 +4960,57 @@ msgstr "" "versie %s, beschikbaar onder de [GNU Affero General Public License](http://" "www.fsf.org/licensing/licenses/agpl-3.0.html)." -#: lib/action.php:832 +#: lib/action.php:821 msgid "Site content license" msgstr "Licentie voor siteinhoud" -#: lib/action.php:837 +#: lib/action.php:826 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "Inhoud en gegevens van %1$s zijn persoonlijk en vertrouwelijk." -#: lib/action.php:842 +#: lib/action.php:831 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" "Auteursrechten op inhoud en gegevens rusten bij %1$s. Alle rechten " "voorbehouden." -#: lib/action.php:845 +#: lib/action.php:834 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" "Auteursrechten op inhoud en gegevens rusten bij de respectievelijke " "gebruikers. Alle rechten voorbehouden." -#: lib/action.php:858 +#: lib/action.php:847 msgid "All " msgstr "Alle " -#: lib/action.php:864 +#: lib/action.php:853 msgid "license." msgstr "licentie." -#: lib/action.php:1163 +#: lib/action.php:1152 msgid "Pagination" msgstr "Paginering" -#: lib/action.php:1172 +#: lib/action.php:1161 msgid "After" msgstr "Later" -#: lib/action.php:1180 +#: lib/action.php:1169 msgid "Before" msgstr "Eerder" -#: lib/activity.php:449 +#: lib/activity.php:453 msgid "Can't handle remote content yet." msgstr "Het is nog niet mogelijk inhoud uit andere omgevingen te verwerken." -#: lib/activity.php:477 +#: lib/activity.php:481 msgid "Can't handle embedded XML content yet." msgstr "Het is nog niet mogelijk ingebedde XML-inhoud te verwerken" -#: lib/activity.php:481 +#: lib/activity.php:485 msgid "Can't handle embedded Base64 content yet." msgstr "Het is nog niet mogelijk ingebedde Base64-inhoud te verwerken" @@ -4962,91 +5025,78 @@ msgid "Changes to that panel are not allowed." msgstr "Wijzigingen aan dat venster zijn niet toegestaan." #. TRANS: Client error message -#: lib/adminpanelaction.php:211 +#: lib/adminpanelaction.php:229 msgid "showForm() not implemented." msgstr "showForm() is niet geïmplementeerd." #. TRANS: Client error message -#: lib/adminpanelaction.php:241 +#: lib/adminpanelaction.php:259 msgid "saveSettings() not implemented." msgstr "saveSettings() is nog niet geïmplementeerd." #. TRANS: Client error message -#: lib/adminpanelaction.php:265 +#: lib/adminpanelaction.php:283 msgid "Unable to delete design setting." msgstr "Het was niet mogelijk om de ontwerpinstellingen te verwijderen." #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:330 +#: lib/adminpanelaction.php:348 msgid "Basic site configuration" msgstr "Basisinstellingen voor de website" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:332 -#, fuzzy +#: lib/adminpanelaction.php:350 msgctxt "MENU" msgid "Site" msgstr "Website" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:338 +#: lib/adminpanelaction.php:356 msgid "Design configuration" msgstr "Instellingen vormgeving" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:340 -#, fuzzy +#: lib/adminpanelaction.php:358 msgctxt "MENU" msgid "Design" msgstr "Uiterlijk" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:346 +#: lib/adminpanelaction.php:364 msgid "User configuration" msgstr "Gebruikersinstellingen" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:348 -#, fuzzy -msgctxt "MENU" +#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 msgid "User" msgstr "Gebruiker" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:354 +#: lib/adminpanelaction.php:372 msgid "Access configuration" msgstr "Toegangsinstellingen" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:356 -#, fuzzy -msgctxt "MENU" -msgid "Access" -msgstr "Toegang" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:362 +#: lib/adminpanelaction.php:380 msgid "Paths configuration" msgstr "Padinstellingen" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:364 -#, fuzzy -msgctxt "MENU" -msgid "Paths" -msgstr "Paden" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:370 +#: lib/adminpanelaction.php:388 msgid "Sessions configuration" msgstr "Sessieinstellingen" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:372 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:396 #, fuzzy -msgctxt "MENU" -msgid "Sessions" -msgstr "Sessies" +msgid "Edit site notice" +msgstr "Mededeling van de website" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:404 +#, fuzzy +msgid "Snapshots configuration" +msgstr "Padinstellingen" #: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." @@ -5584,6 +5634,11 @@ msgstr "Kies een label om de lijst kleiner te maken" msgid "Go" msgstr "OK" +#: lib/grantroleform.php:91 +#, php-format +msgid "Grant this user the \"%s\" role" +msgstr "" + #: 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" @@ -6205,10 +6260,6 @@ msgstr "Antwoorden" msgid "Favorites" msgstr "Favorieten" -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "Gebruiker" - #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "Postvak IN" @@ -6234,7 +6285,7 @@ msgstr "Labels in de mededelingen van %s" msgid "Unknown" msgstr "Onbekend" -#: lib/profileaction.php:109 lib/profileaction.php:192 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:194 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Abonnementen" @@ -6242,23 +6293,23 @@ msgstr "Abonnementen" msgid "All subscriptions" msgstr "Alle abonnementen" -#: lib/profileaction.php:140 lib/profileaction.php:201 lib/subgroupnav.php:90 +#: lib/profileaction.php:142 lib/profileaction.php:203 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Abonnees" -#: lib/profileaction.php:157 +#: lib/profileaction.php:159 msgid "All subscribers" msgstr "Alle abonnees" -#: lib/profileaction.php:178 +#: lib/profileaction.php:180 msgid "User ID" msgstr "Gebruikers-ID" -#: lib/profileaction.php:183 +#: lib/profileaction.php:185 msgid "Member since" msgstr "Lid sinds" -#: lib/profileaction.php:245 +#: lib/profileaction.php:247 msgid "All groups" msgstr "Alle groepen" @@ -6298,7 +6349,12 @@ msgstr "Deze mededeling herhalen?" msgid "Repeat this notice" msgstr "Deze mededeling herhalen" -#: lib/router.php:668 +#: lib/revokeroleform.php:91 +#, fuzzy, php-format +msgid "Revoke the \"%s\" role from this user" +msgstr "Deze gebruiker de toegang tot deze groep ontzeggen" + +#: lib/router.php:671 msgid "No single user defined for single-user mode." msgstr "Er is geen gebruiker gedefinieerd voor single-usermodus." @@ -6452,47 +6508,64 @@ msgstr "Bericht" msgid "Moderate" msgstr "Modereren" -#: lib/util.php:1013 +#: lib/userprofile.php:352 +#, fuzzy +msgid "User role" +msgstr "Gebruikersprofiel" + +#: lib/userprofile.php:354 +#, fuzzy +msgctxt "role" +msgid "Administrator" +msgstr "Beheerders" + +#: lib/userprofile.php:355 +#, fuzzy +msgctxt "role" +msgid "Moderator" +msgstr "Modereren" + +#: lib/util.php:1015 msgid "a few seconds ago" msgstr "een paar seconden geleden" -#: lib/util.php:1015 +#: lib/util.php:1017 msgid "about a minute ago" msgstr "ongeveer een minuut geleden" -#: lib/util.php:1017 +#: lib/util.php:1019 #, php-format msgid "about %d minutes ago" msgstr "ongeveer %d minuten geleden" -#: lib/util.php:1019 +#: lib/util.php:1021 msgid "about an hour ago" msgstr "ongeveer een uur geleden" -#: lib/util.php:1021 +#: lib/util.php:1023 #, php-format msgid "about %d hours ago" msgstr "ongeveer %d uur geleden" -#: lib/util.php:1023 +#: lib/util.php:1025 msgid "about a day ago" msgstr "ongeveer een dag geleden" -#: lib/util.php:1025 +#: lib/util.php:1027 #, php-format msgid "about %d days ago" msgstr "ongeveer %d dagen geleden" -#: lib/util.php:1027 +#: lib/util.php:1029 msgid "about a month ago" msgstr "ongeveer een maand geleden" -#: lib/util.php:1029 +#: lib/util.php:1031 #, php-format msgid "about %d months ago" msgstr "ongeveer %d maanden geleden" -#: lib/util.php:1031 +#: lib/util.php:1033 msgid "about a year ago" msgstr "ongeveer een jaar geleden" diff --git a/locale/nn/LC_MESSAGES/statusnet.po b/locale/nn/LC_MESSAGES/statusnet.po index ddd183e870..c6576fbcf1 100644 --- a/locale/nn/LC_MESSAGES/statusnet.po +++ b/locale/nn/LC_MESSAGES/statusnet.po @@ -7,19 +7,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-02 21:02+0000\n" -"PO-Revision-Date: 2010-03-02 21:03:22+0000\n" +"POT-Creation-Date: 2010-03-04 18:55+0000\n" +"PO-Revision-Date: 2010-03-04 18:56:56+0000\n" "Language-Team: Norwegian Nynorsk\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nn\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. TRANS: Page title -#: actions/accessadminpanel.php:55 +#. TRANS: Menu item for site administration +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 #, fuzzy msgid "Access" msgstr "Godta" @@ -123,7 +124,7 @@ msgstr "%s med vener, side %d" #. TRANS: Page title. %1$s is user nickname #. TRANS: H1 text. %1$s is user nickname -#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -178,7 +179,7 @@ msgid "" msgstr "" #. TRANS: H1 text -#: actions/all.php:174 +#: actions/all.php:178 #, fuzzy msgid "You and friends" msgstr "%s med vener" @@ -206,11 +207,11 @@ msgstr "Oppdateringar frå %1$s og vener på %2$s!" #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 -#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 +#: actions/apitimelinegroup.php:160 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:148 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 #, fuzzy msgid "API method not found." msgstr "Fann ikkje API-metode." @@ -581,7 +582,7 @@ msgid "" "give access to your %4$s account to third parties you trust." msgstr "" -#: actions/apioauthauthorize.php:310 +#: actions/apioauthauthorize.php:310 lib/action.php:438 msgid "Account" msgstr "Konto" @@ -673,18 +674,6 @@ msgstr "%s / Favorittar frå %s" msgid "%1$s updates favorited by %2$s / %2$s." msgstr "%s oppdateringar favorisert av %s / %s." -#: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:138 actions/userrss.php:90 -#, php-format -msgid "%s timeline" -msgstr "%s tidsline" - -#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 -#: 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:117 #, fuzzy, php-format msgid "%1$s / Updates mentioning %2$s" @@ -695,12 +684,12 @@ msgstr "%1$s / Oppdateringar som svarar til %2$s" 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/apitimelinepublic.php:111 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "%s offentleg tidsline" -#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "%s oppdateringar frå alle saman!" @@ -952,7 +941,7 @@ msgid "Conversation" msgstr "Stadfestingskode" #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:216 lib/searchgroupnav.php:82 +#: lib/profileaction.php:218 lib/searchgroupnav.php:82 msgid "Notices" msgstr "Notisar" @@ -974,7 +963,7 @@ msgstr "Du er ikkje medlem av den gruppa." #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1228 +#: lib/action.php:1217 msgid "There was a problem with your session token." msgstr "Det var eit problem med sesjons billetten din." @@ -1182,8 +1171,9 @@ msgstr "" #: actions/designadminpanel.php:586 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 +#: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:208 #: actions/tagother.php:154 actions/useradminpanel.php:294 #: lib/applicationeditform.php:333 lib/applicationeditform.php:334 #: lib/designsettings.php:256 lib/groupeditform.php:202 @@ -1311,7 +1301,7 @@ msgstr "skildringa er for lang (maks 140 teikn)." msgid "Could not update group." msgstr "Kann ikkje oppdatera gruppa." -#: actions/editgroup.php:264 classes/User_group.php:478 +#: actions/editgroup.php:264 classes/User_group.php:493 #, fuzzy msgid "Could not create aliases." msgstr "Kunne ikkje lagre favoritt." @@ -1438,7 +1428,7 @@ msgid "Cannot normalize that email address" msgstr "Klarar ikkje normalisera epostadressa" #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:143 +#: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Ikkje ei gyldig epostadresse." @@ -1634,6 +1624,25 @@ msgstr "Denne notisen finst ikkje." msgid "Cannot read file." msgstr "Mista fila vår." +#: actions/grantrole.php:62 actions/revokerole.php:62 +#, fuzzy +msgid "Invalid role." +msgstr "Ugyldig storleik." + +#: actions/grantrole.php:66 actions/revokerole.php:66 +msgid "This role is reserved and cannot be set." +msgstr "" + +#: actions/grantrole.php:75 +#, fuzzy +msgid "You cannot grant user roles on this site." +msgstr "Du kan ikkje sende melding til denne brukaren." + +#: actions/grantrole.php:82 +#, fuzzy +msgid "User already has this role." +msgstr "Brukar har blokkert deg." + #: actions/groupblock.php:71 actions/groupunblock.php:71 #: actions/makeadmin.php:71 actions/subedit.php:46 #: lib/profileformaction.php:70 @@ -1789,12 +1798,18 @@ msgstr "Administrator" msgid "Make this user an admin" msgstr "" +#: actions/grouprss.php:138 actions/userrss.php:90 +#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#, php-format +msgid "%s timeline" +msgstr "%s tidsline" + #: actions/grouprss.php:140 #, fuzzy, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Oppdateringar frå %1$s på %2$s!" -#: actions/groups.php:62 lib/profileaction.php:210 lib/profileaction.php:230 +#: actions/groups.php:62 lib/profileaction.php:212 lib/profileaction.php:232 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" msgstr "Grupper" @@ -2408,8 +2423,8 @@ msgstr "Kopla til" msgid "Only " msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 -#: lib/apiaction.php:1068 lib/apiaction.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1042 +#: lib/apiaction.php:1070 lib/apiaction.php:1179 msgid "Not a supported data format." msgstr "Ikkje eit støtta dataformat." @@ -2555,7 +2570,8 @@ msgstr "Klarar ikkje lagra nytt passord." msgid "Password saved." msgstr "Lagra passord." -#: actions/pathsadminpanel.php:59 +#. TRANS: Menu item for site administration +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 msgid "Paths" msgstr "" @@ -2683,7 +2699,7 @@ msgstr "" msgid "SSL" msgstr "SMS" -#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 +#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202 #, fuzzy msgid "Never" msgstr "Gjenopprett" @@ -2742,11 +2758,11 @@ msgstr "Ikkje gyldig merkelapp: %s" msgid "Users self-tagged with %1$s - page %2$d" msgstr "Brukarar sjølv-merka med %s, side %d" -#: actions/postnotice.php:84 +#: actions/postnotice.php:95 msgid "Invalid notice content" msgstr "Ugyldig notisinnhald" -#: actions/postnotice.php:90 +#: actions/postnotice.php:101 #, php-format msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" @@ -2828,7 +2844,7 @@ msgstr "" "merkelappar for deg sjølv ( bokstavar, nummer, -, ., og _ ), komma eller " "mellomroms separert." -#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 +#: actions/profilesettings.php:151 msgid "Language" msgstr "Språk" @@ -2855,7 +2871,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "«Om meg» er for lang (maks 140 " -#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:151 msgid "Timezone not selected." msgstr "Tidssone er ikkje valt." @@ -3164,7 +3180,7 @@ msgid "Same as password above. Required." msgstr "Samme som passord over. Påkrevd." #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 msgid "Email" msgstr "Epost" @@ -3272,7 +3288,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "URL til profilsida di på ei anna kompatibel mikrobloggingteneste." #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:368 +#: lib/userprofile.php:394 msgid "Subscribe" msgstr "Ting" @@ -3377,6 +3393,16 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "Melding til %1$s på %2$s" +#: actions/revokerole.php:75 +#, fuzzy +msgid "You cannot revoke user roles on this site." +msgstr "Du kan ikkje sende melding til denne brukaren." + +#: actions/revokerole.php:82 +#, fuzzy +msgid "User doesn't have this role." +msgstr "Kan ikkje finne brukar" + #: actions/rsd.php:146 actions/version.php:157 #, fuzzy msgid "StatusNet" @@ -3392,7 +3418,9 @@ msgstr "Du kan ikkje sende melding til denne brukaren." msgid "User is already sandboxed." msgstr "Brukar har blokkert deg." +#. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:390 msgid "Sessions" msgstr "" @@ -3416,7 +3444,7 @@ msgstr "" msgid "Turn on debugging output for sessions." msgstr "" -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/useradminpanel.php:294 #, fuzzy msgid "Save site settings" @@ -3452,8 +3480,8 @@ msgstr "Paginering" msgid "Description" msgstr "Beskriving" -#: actions/showapplication.php:192 actions/showgroup.php:437 -#: lib/profileaction.php:174 +#: actions/showapplication.php:192 actions/showgroup.php:438 +#: lib/profileaction.php:176 msgid "Statistics" msgstr "Statistikk" @@ -3586,46 +3614,46 @@ msgstr "" msgid "Group actions" msgstr "Gruppe handlingar" -#: actions/showgroup.php:336 +#: actions/showgroup.php:337 #, fuzzy, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Notisstraum for %s gruppa" -#: actions/showgroup.php:342 +#: actions/showgroup.php:343 #, fuzzy, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Notisstraum for %s gruppa" -#: actions/showgroup.php:348 +#: actions/showgroup.php:349 #, fuzzy, php-format msgid "Notice feed for %s group (Atom)" msgstr "Notisstraum for %s gruppa" -#: actions/showgroup.php:353 +#: actions/showgroup.php:354 #, php-format msgid "FOAF for %s group" msgstr "Utboks for %s" -#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 +#: actions/showgroup.php:390 actions/showgroup.php:447 lib/groupnav.php:91 msgid "Members" msgstr "Medlemmar" -#: actions/showgroup.php:394 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 +#: actions/showgroup.php:395 lib/profileaction.php:117 +#: lib/profileaction.php:150 lib/profileaction.php:238 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(Ingen)" -#: actions/showgroup.php:400 +#: actions/showgroup.php:401 msgid "All members" msgstr "Alle medlemmar" -#: actions/showgroup.php:440 +#: actions/showgroup.php:441 #, fuzzy msgid "Created" msgstr "Lag" -#: actions/showgroup.php:456 +#: actions/showgroup.php:457 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3635,7 +3663,7 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showgroup.php:462 +#: actions/showgroup.php:463 #, fuzzy, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3646,7 +3674,7 @@ msgstr "" "**%s** er ei brukargruppe på %%%%site.name%%%%, ei [mikroblogging](http://en." "wikipedia.org/wiki/Micro-blogging)-teneste" -#: actions/showgroup.php:490 +#: actions/showgroup.php:491 #, fuzzy msgid "Admins" msgstr "Administrator" @@ -3762,151 +3790,140 @@ msgid "User is already silenced." msgstr "Brukar har blokkert deg." #: actions/siteadminpanel.php:69 -msgid "Basic settings for this StatusNet site." +msgid "Basic settings for this StatusNet site" msgstr "" -#: actions/siteadminpanel.php:132 +#: actions/siteadminpanel.php:133 msgid "Site name must have non-zero length." msgstr "" -#: actions/siteadminpanel.php:140 +#: actions/siteadminpanel.php:141 #, fuzzy msgid "You must have a valid contact email address." msgstr "Ikkje ei gyldig epostadresse" -#: actions/siteadminpanel.php:158 +#: actions/siteadminpanel.php:159 #, php-format msgid "Unknown language \"%s\"." msgstr "" #: actions/siteadminpanel.php:165 -msgid "Invalid snapshot report URL." -msgstr "" - -#: actions/siteadminpanel.php:171 -msgid "Invalid snapshot run value." -msgstr "" - -#: actions/siteadminpanel.php:177 -msgid "Snapshot frequency must be a number." -msgstr "" - -#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "" -#: actions/siteadminpanel.php:189 +#: actions/siteadminpanel.php:171 msgid "Dupe limit must 1 or more seconds." msgstr "" -#: actions/siteadminpanel.php:239 +#: actions/siteadminpanel.php:221 msgid "General" msgstr "" -#: actions/siteadminpanel.php:242 +#: actions/siteadminpanel.php:224 #, fuzzy msgid "Site name" msgstr "Statusmelding" -#: actions/siteadminpanel.php:243 +#: actions/siteadminpanel.php:225 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "" -#: actions/siteadminpanel.php:247 +#: actions/siteadminpanel.php:229 msgid "Brought by" msgstr "" -#: actions/siteadminpanel.php:248 +#: actions/siteadminpanel.php:230 msgid "Text used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:252 +#: actions/siteadminpanel.php:234 msgid "Brought by URL" msgstr "" -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:235 msgid "URL used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:239 #, fuzzy msgid "Contact email address for your site" msgstr "Ny epostadresse for å oppdatera %s" -#: actions/siteadminpanel.php:263 +#: actions/siteadminpanel.php:245 #, fuzzy msgid "Local" msgstr "Lokale syningar" -#: actions/siteadminpanel.php:274 +#: actions/siteadminpanel.php:256 msgid "Default timezone" msgstr "" -#: actions/siteadminpanel.php:275 +#: actions/siteadminpanel.php:257 msgid "Default timezone for the site; usually UTC." msgstr "" -#: actions/siteadminpanel.php:281 +#: actions/siteadminpanel.php:262 #, fuzzy -msgid "Default site language" +msgid "Default language" msgstr "Foretrukke språk" -#: actions/siteadminpanel.php:289 -msgid "Snapshots" +#: actions/siteadminpanel.php:263 +msgid "Site language when autodetection from browser settings is not available" msgstr "" -#: actions/siteadminpanel.php:292 -msgid "Randomly during Web hit" -msgstr "" - -#: actions/siteadminpanel.php:293 -msgid "In a scheduled job" -msgstr "" - -#: actions/siteadminpanel.php:295 -msgid "Data snapshots" -msgstr "" - -#: actions/siteadminpanel.php:296 -msgid "When to send statistical data to status.net servers" -msgstr "" - -#: actions/siteadminpanel.php:301 -msgid "Frequency" -msgstr "" - -#: actions/siteadminpanel.php:302 -msgid "Snapshots will be sent once every N web hits" -msgstr "" - -#: actions/siteadminpanel.php:307 -msgid "Report URL" -msgstr "" - -#: actions/siteadminpanel.php:308 -msgid "Snapshots will be sent to this URL" -msgstr "" - -#: actions/siteadminpanel.php:315 +#: actions/siteadminpanel.php:271 msgid "Limits" msgstr "" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Text limit" msgstr "" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Maximum number of characters for notices." msgstr "" -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "Dupe limit" msgstr "" -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" +#: actions/sitenoticeadminpanel.php:56 +#, fuzzy +msgid "Site Notice" +msgstr "Statusmelding" + +#: actions/sitenoticeadminpanel.php:67 +#, fuzzy +msgid "Edit site-wide message" +msgstr "Ny melding" + +#: actions/sitenoticeadminpanel.php:103 +#, fuzzy +msgid "Unable to save site notice." +msgstr "Klarte ikkje å lagra Twitter-innstillingane dine!" + +#: actions/sitenoticeadminpanel.php:113 +msgid "Max length for the site-wide notice is 255 chars" +msgstr "" + +#: actions/sitenoticeadminpanel.php:176 +#, fuzzy +msgid "Site notice text" +msgstr "Statusmelding" + +#: actions/sitenoticeadminpanel.php:178 +msgid "Site-wide notice text (255 chars max; HTML okay)" +msgstr "" + +#: actions/sitenoticeadminpanel.php:198 +#, fuzzy +msgid "Save site notice" +msgstr "Statusmelding" + #: actions/smssettings.php:58 #, fuzzy msgid "SMS settings" @@ -4009,6 +4026,66 @@ msgstr "" msgid "No code entered" msgstr "Ingen innskriven kode" +#. TRANS: Menu item for site administration +#: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 +#: lib/adminpanelaction.php:406 +msgid "Snapshots" +msgstr "" + +#: actions/snapshotadminpanel.php:65 +#, fuzzy +msgid "Manage snapshot configuration" +msgstr "Navigasjon for hovudsida" + +#: actions/snapshotadminpanel.php:127 +msgid "Invalid snapshot run value." +msgstr "" + +#: actions/snapshotadminpanel.php:133 +msgid "Snapshot frequency must be a number." +msgstr "" + +#: actions/snapshotadminpanel.php:144 +msgid "Invalid snapshot report URL." +msgstr "" + +#: actions/snapshotadminpanel.php:200 +msgid "Randomly during Web hit" +msgstr "" + +#: actions/snapshotadminpanel.php:201 +msgid "In a scheduled job" +msgstr "" + +#: actions/snapshotadminpanel.php:206 +msgid "Data snapshots" +msgstr "" + +#: actions/snapshotadminpanel.php:208 +msgid "When to send statistical data to status.net servers" +msgstr "" + +#: actions/snapshotadminpanel.php:217 +msgid "Frequency" +msgstr "" + +#: actions/snapshotadminpanel.php:218 +msgid "Snapshots will be sent once every N web hits" +msgstr "" + +#: actions/snapshotadminpanel.php:226 +msgid "Report URL" +msgstr "" + +#: actions/snapshotadminpanel.php:227 +msgid "Snapshots will be sent to this URL" +msgstr "" + +#: actions/snapshotadminpanel.php:248 +#, fuzzy +msgid "Save snapshot settings" +msgstr "Avatar-innstillingar" + #: actions/subedit.php:70 msgid "You are not subscribed to that profile." msgstr "Du tingar ikkje oppdateringar til den profilen." @@ -4214,7 +4291,7 @@ msgstr "Ingen profil-ID i førespurnaden." msgid "Unsubscribed" msgstr "Fjerna tinging" -#: actions/updateprofile.php:62 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -4425,16 +4502,22 @@ msgstr "%s medlemmar i gruppa, side %d" msgid "Search for more groups" msgstr "Søk etter folk eller innhald" -#: actions/usergroups.php:153 +#: actions/usergroups.php:157 #, fuzzy, php-format msgid "%s is not a member of any group." msgstr "Du er ikkje medlem av den gruppa." -#: actions/usergroups.php:158 +#: actions/usergroups.php:162 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" +#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: lib/atomusernoticefeed.php:72 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "Oppdateringar frå %1$s på %2$s!" + #: actions/version.php:73 #, fuzzy, php-format msgid "StatusNet %s" @@ -4478,7 +4561,7 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:196 lib/action.php:778 +#: actions/version.php:196 lib/action.php:767 #, fuzzy msgid "Version" msgstr "Personleg" @@ -4547,22 +4630,22 @@ msgstr "Kunne ikkje oppdatere melding med ny URI." msgid "DB error inserting hashtag: %s" msgstr "databasefeil ved innsetjing av skigardmerkelapp (#merkelapp): %s" -#: classes/Notice.php:239 +#: classes/Notice.php:241 #, fuzzy msgid "Problem saving notice. Too long." msgstr "Eit problem oppstod ved lagring av notis." -#: classes/Notice.php:243 +#: classes/Notice.php:245 msgid "Problem saving notice. Unknown user." msgstr "Feil ved lagring av notis. Ukjend brukar." -#: classes/Notice.php:248 +#: classes/Notice.php:250 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." -#: classes/Notice.php:254 +#: classes/Notice.php:256 #, fuzzy msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " @@ -4570,20 +4653,20 @@ msgid "" msgstr "" "For mange notisar for raskt; tek ei pause, og prøv igjen om eit par minutt." -#: classes/Notice.php:260 +#: classes/Notice.php:262 msgid "You are banned from posting notices on this site." msgstr "Du kan ikkje lengre legge inn notisar på denne sida." -#: classes/Notice.php:326 classes/Notice.php:352 +#: classes/Notice.php:328 classes/Notice.php:354 msgid "Problem saving notice." msgstr "Eit problem oppstod ved lagring av notis." -#: classes/Notice.php:911 +#: classes/Notice.php:927 #, fuzzy msgid "Problem saving group inbox." msgstr "Eit problem oppstod ved lagring av notis." -#: classes/Notice.php:1442 +#: classes/Notice.php:1459 #, fuzzy, php-format msgid "RT @%1$s %2$s" msgstr "%1$s (%2$s)" @@ -4611,7 +4694,12 @@ msgstr "Ikkje tinga." msgid "Couldn't delete self-subscription." msgstr "Kan ikkje sletta tinging." -#: classes/Subscription.php:179 lib/subs.php:69 +#: classes/Subscription.php:190 +#, fuzzy +msgid "Couldn't delete subscription OMB token." +msgstr "Kan ikkje sletta tinging." + +#: classes/Subscription.php:201 lib/subs.php:69 msgid "Couldn't delete subscription." msgstr "Kan ikkje sletta tinging." @@ -4620,20 +4708,20 @@ msgstr "Kan ikkje sletta tinging." msgid "Welcome to %1$s, @%2$s!" msgstr "Melding til %1$s på %2$s" -#: classes/User_group.php:462 +#: classes/User_group.php:477 msgid "Could not create group." msgstr "Kunne ikkje laga gruppa." -#: classes/User_group.php:471 +#: classes/User_group.php:486 #, fuzzy msgid "Could not set group URI." msgstr "Kunne ikkje bli med i gruppa." -#: classes/User_group.php:492 +#: classes/User_group.php:507 msgid "Could not set group membership." msgstr "Kunne ikkje bli med i gruppa." -#: classes/User_group.php:506 +#: classes/User_group.php:521 #, fuzzy msgid "Could not save local group info." msgstr "Kunne ikkje lagra abonnement." @@ -4676,195 +4764,189 @@ msgstr "%1$s (%2$s)" msgid "Untitled page" msgstr "Ingen tittel" -#: lib/action.php:433 +#: lib/action.php:424 msgid "Primary site navigation" msgstr "Navigasjon for hovudsida" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:439 +#: lib/action.php:430 #, fuzzy msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Personleg profil og oversyn over vener" -#: lib/action.php:442 +#: lib/action.php:433 #, fuzzy msgctxt "MENU" msgid "Personal" msgstr "Personleg" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:444 +#: lib/action.php:435 #, fuzzy msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Endra e-posten, avataren, passordet eller profilen" -#: lib/action.php:447 -#, fuzzy -msgctxt "MENU" -msgid "Account" -msgstr "Konto" - #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:450 +#: lib/action.php:440 #, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Klarte ikkje å omdirigera til tenaren: %s" -#: lib/action.php:453 +#: lib/action.php:443 #, fuzzy -msgctxt "MENU" msgid "Connect" msgstr "Kopla til" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:457 +#: lib/action.php:446 #, fuzzy msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Navigasjon for hovudsida" -#: lib/action.php:460 +#: lib/action.php:449 #, fuzzy msgctxt "MENU" msgid "Admin" msgstr "Administrator" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:464 +#: lib/action.php:453 #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Inviter vennar og kollega til å bli med deg på %s" -#: lib/action.php:467 +#: lib/action.php:456 #, fuzzy msgctxt "MENU" msgid "Invite" msgstr "Invitér" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:473 +#: lib/action.php:462 #, fuzzy msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Logg ut or sida" -#: lib/action.php:476 +#: lib/action.php:465 #, fuzzy msgctxt "MENU" msgid "Logout" msgstr "Logg ut" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:481 +#: lib/action.php:470 #, fuzzy msgctxt "TOOLTIP" msgid "Create an account" msgstr "Opprett ny konto" -#: lib/action.php:484 +#: lib/action.php:473 #, fuzzy msgctxt "MENU" msgid "Register" msgstr "Registrér" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:487 +#: lib/action.php:476 #, fuzzy msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Logg inn or sida" -#: lib/action.php:490 +#: lib/action.php:479 #, fuzzy msgctxt "MENU" msgid "Login" msgstr "Logg inn" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:493 +#: lib/action.php:482 #, fuzzy msgctxt "TOOLTIP" msgid "Help me!" msgstr "Hjelp meg!" -#: lib/action.php:496 +#: lib/action.php:485 #, fuzzy msgctxt "MENU" msgid "Help" msgstr "Hjelp" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:499 +#: lib/action.php:488 #, fuzzy msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Søk etter folk eller innhald" -#: lib/action.php:502 +#: lib/action.php:491 #, fuzzy msgctxt "MENU" msgid "Search" msgstr "Søk" #. TRANS: DT element for site notice. String is hidden in default CSS. -#: lib/action.php:524 +#. TRANS: Menu item for site administration +#: lib/action.php:513 lib/adminpanelaction.php:398 msgid "Site notice" msgstr "Statusmelding" -#: lib/action.php:590 +#: lib/action.php:579 msgid "Local views" msgstr "Lokale syningar" -#: lib/action.php:656 +#: lib/action.php:645 msgid "Page notice" msgstr "Sidenotis" -#: lib/action.php:758 +#: lib/action.php:747 msgid "Secondary site navigation" msgstr "Andrenivås side navigasjon" -#: lib/action.php:763 +#: lib/action.php:752 msgid "Help" msgstr "Hjelp" -#: lib/action.php:765 +#: lib/action.php:754 msgid "About" msgstr "Om" -#: lib/action.php:767 +#: lib/action.php:756 msgid "FAQ" msgstr "OSS" -#: lib/action.php:771 +#: lib/action.php:760 msgid "TOS" msgstr "" -#: lib/action.php:774 +#: lib/action.php:763 msgid "Privacy" msgstr "Personvern" -#: lib/action.php:776 +#: lib/action.php:765 msgid "Source" msgstr "Kjeldekode" -#: lib/action.php:780 +#: lib/action.php:769 msgid "Contact" msgstr "Kontakt" -#: lib/action.php:782 +#: lib/action.php:771 #, fuzzy msgid "Badge" msgstr "Dult" -#: lib/action.php:810 +#: lib/action.php:799 msgid "StatusNet software license" msgstr "StatusNets programvarelisens" -#: lib/action.php:813 +#: lib/action.php:802 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4873,12 +4955,12 @@ msgstr "" "**%%site.name%%** er ei mikrobloggingteneste av [%%site.broughtby%%](%%site." "broughtbyurl%%). " -#: lib/action.php:815 +#: lib/action.php:804 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** er ei mikrobloggingteneste. " -#: lib/action.php:817 +#: lib/action.php:806 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4889,54 +4971,54 @@ msgstr "" "%s, tilgjengeleg under [GNU Affero General Public License](http://www.fsf." "org/licensing/licenses/agpl-3.0.html)." -#: lib/action.php:832 +#: lib/action.php:821 #, fuzzy msgid "Site content license" msgstr "StatusNets programvarelisens" -#: lib/action.php:837 +#: lib/action.php:826 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:842 +#: lib/action.php:831 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:845 +#: lib/action.php:834 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" -#: lib/action.php:858 +#: lib/action.php:847 msgid "All " msgstr "Alle" -#: lib/action.php:864 +#: lib/action.php:853 msgid "license." msgstr "lisens." -#: lib/action.php:1163 +#: lib/action.php:1152 msgid "Pagination" msgstr "Paginering" -#: lib/action.php:1172 +#: lib/action.php:1161 msgid "After" msgstr "« Etter" -#: lib/action.php:1180 +#: lib/action.php:1169 msgid "Before" msgstr "Før »" -#: lib/activity.php:449 +#: lib/activity.php:453 msgid "Can't handle remote content yet." msgstr "" -#: lib/activity.php:477 +#: lib/activity.php:481 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activity.php:481 +#: lib/activity.php:485 msgid "Can't handle embedded Base64 content yet." msgstr "" @@ -4953,99 +5035,89 @@ msgid "Changes to that panel are not allowed." msgstr "Registrering ikkje tillatt." #. TRANS: Client error message -#: lib/adminpanelaction.php:211 +#: lib/adminpanelaction.php:229 #, fuzzy msgid "showForm() not implemented." msgstr "Kommando ikkje implementert." #. TRANS: Client error message -#: lib/adminpanelaction.php:241 +#: lib/adminpanelaction.php:259 #, fuzzy msgid "saveSettings() not implemented." msgstr "Kommando ikkje implementert." #. TRANS: Client error message -#: lib/adminpanelaction.php:265 +#: lib/adminpanelaction.php:283 #, fuzzy msgid "Unable to delete design setting." msgstr "Klarte ikkje å lagra Twitter-innstillingane dine!" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:330 +#: lib/adminpanelaction.php:348 #, fuzzy msgid "Basic site configuration" msgstr "Stadfesting av epostadresse" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:332 +#: lib/adminpanelaction.php:350 #, fuzzy msgctxt "MENU" msgid "Site" msgstr "Invitér" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:338 +#: lib/adminpanelaction.php:356 #, fuzzy msgid "Design configuration" msgstr "SMS bekreftelse" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:340 +#: lib/adminpanelaction.php:358 #, fuzzy msgctxt "MENU" msgid "Design" msgstr "Personleg" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:346 +#: lib/adminpanelaction.php:364 #, fuzzy msgid "User configuration" msgstr "SMS bekreftelse" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:348 -#, fuzzy -msgctxt "MENU" +#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 msgid "User" msgstr "Brukar" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:354 +#: lib/adminpanelaction.php:372 #, fuzzy msgid "Access configuration" msgstr "SMS bekreftelse" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:356 -#, fuzzy -msgctxt "MENU" -msgid "Access" -msgstr "Godta" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:362 +#: lib/adminpanelaction.php:380 #, fuzzy msgid "Paths configuration" msgstr "SMS bekreftelse" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:364 -msgctxt "MENU" -msgid "Paths" -msgstr "" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:370 +#: lib/adminpanelaction.php:388 #, fuzzy msgid "Sessions configuration" msgstr "SMS bekreftelse" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:372 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:396 #, fuzzy -msgctxt "MENU" -msgid "Sessions" -msgstr "Personleg" +msgid "Edit site notice" +msgstr "Statusmelding" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:404 +#, fuzzy +msgid "Snapshots configuration" +msgstr "SMS bekreftelse" #: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." @@ -5548,6 +5620,11 @@ msgstr "Velg ein merkelapp for å begrense lista" msgid "Go" msgstr "Gå" +#: lib/grantroleform.php:91 +#, php-format +msgid "Grant this user the \"%s\" role" +msgstr "" + #: 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" @@ -6098,10 +6175,6 @@ msgstr "Svar" msgid "Favorites" msgstr "Favorittar" -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "Brukar" - #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "Innboks" @@ -6128,7 +6201,7 @@ msgstr "Merkelappar i %s sine notisar" msgid "Unknown" msgstr "Uventa handling." -#: lib/profileaction.php:109 lib/profileaction.php:192 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:194 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Tingingar" @@ -6136,24 +6209,24 @@ msgstr "Tingingar" msgid "All subscriptions" msgstr "Alle tingingar" -#: lib/profileaction.php:140 lib/profileaction.php:201 lib/subgroupnav.php:90 +#: lib/profileaction.php:142 lib/profileaction.php:203 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Tingarar" -#: lib/profileaction.php:157 +#: lib/profileaction.php:159 msgid "All subscribers" msgstr "Tingarar" -#: lib/profileaction.php:178 +#: lib/profileaction.php:180 #, fuzzy msgid "User ID" msgstr "Brukar" -#: lib/profileaction.php:183 +#: lib/profileaction.php:185 msgid "Member since" msgstr "Medlem sidan" -#: lib/profileaction.php:245 +#: lib/profileaction.php:247 msgid "All groups" msgstr "Alle gruppar" @@ -6196,7 +6269,12 @@ msgstr "Svar på denne notisen" msgid "Repeat this notice" msgstr "Svar på denne notisen" -#: lib/router.php:668 +#: lib/revokeroleform.php:91 +#, fuzzy, php-format +msgid "Revoke the \"%s\" role from this user" +msgstr "Ei liste over brukarane i denne gruppa." + +#: lib/router.php:671 msgid "No single user defined for single-user mode." msgstr "" @@ -6360,47 +6438,63 @@ msgstr "Melding" msgid "Moderate" msgstr "" -#: lib/util.php:1013 +#: lib/userprofile.php:352 +#, fuzzy +msgid "User role" +msgstr "Brukarprofil" + +#: lib/userprofile.php:354 +#, fuzzy +msgctxt "role" +msgid "Administrator" +msgstr "Administrator" + +#: lib/userprofile.php:355 +msgctxt "role" +msgid "Moderator" +msgstr "" + +#: lib/util.php:1015 msgid "a few seconds ago" msgstr "eit par sekund sidan" -#: lib/util.php:1015 +#: lib/util.php:1017 msgid "about a minute ago" msgstr "omtrent eitt minutt sidan" -#: lib/util.php:1017 +#: lib/util.php:1019 #, php-format msgid "about %d minutes ago" msgstr "~%d minutt sidan" -#: lib/util.php:1019 +#: lib/util.php:1021 msgid "about an hour ago" msgstr "omtrent ein time sidan" -#: lib/util.php:1021 +#: lib/util.php:1023 #, php-format msgid "about %d hours ago" msgstr "~%d timar sidan" -#: lib/util.php:1023 +#: lib/util.php:1025 msgid "about a day ago" msgstr "omtrent ein dag sidan" -#: lib/util.php:1025 +#: lib/util.php:1027 #, php-format msgid "about %d days ago" msgstr "~%d dagar sidan" -#: lib/util.php:1027 +#: lib/util.php:1029 msgid "about a month ago" msgstr "omtrent ein månad sidan" -#: lib/util.php:1029 +#: lib/util.php:1031 #, php-format msgid "about %d months ago" msgstr "~%d månadar sidan" -#: lib/util.php:1031 +#: lib/util.php:1033 msgid "about a year ago" msgstr "omtrent eitt år sidan" diff --git a/locale/pl/LC_MESSAGES/statusnet.po b/locale/pl/LC_MESSAGES/statusnet.po index a8cef8d36c..402bd78afe 100644 --- a/locale/pl/LC_MESSAGES/statusnet.po +++ b/locale/pl/LC_MESSAGES/statusnet.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-02 21:02+0000\n" -"PO-Revision-Date: 2010-03-02 21:03:35+0000\n" +"POT-Creation-Date: 2010-03-04 18:55+0000\n" +"PO-Revision-Date: 2010-03-04 18:57:02+0000\n" "Last-Translator: Piotr Drąg \n" "Language-Team: Polish \n" "MIME-Version: 1.0\n" @@ -19,13 +19,14 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2);\n" -"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pl\n" "X-Message-Group: out-statusnet\n" #. TRANS: Page title -#: actions/accessadminpanel.php:55 +#. TRANS: Menu item for site administration +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 msgid "Access" msgstr "Dostęp" @@ -122,7 +123,7 @@ msgstr "%1$s i przyjaciele, strona %2$d" #. TRANS: Page title. %1$s is user nickname #. TRANS: H1 text. %1$s is user nickname -#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -186,7 +187,7 @@ msgstr "" "szturchniesz użytkownika %s lub wyślesz wpis wymagającego jego uwagi." #. TRANS: H1 text -#: actions/all.php:174 +#: actions/all.php:178 msgid "You and friends" msgstr "Ty i przyjaciele" @@ -213,11 +214,11 @@ msgstr "Aktualizacje z %1$s i przyjaciół na %2$s." #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 -#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 +#: actions/apitimelinegroup.php:160 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:148 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 msgid "API method not found." msgstr "Nie odnaleziono metody API." @@ -579,7 +580,7 @@ msgstr "" "uzyskać możliwość %3$s danych konta %4$s. Dostęp do konta %4" "$s powinien być udostępniany tylko zaufanym osobom trzecim." -#: actions/apioauthauthorize.php:310 +#: actions/apioauthauthorize.php:310 lib/action.php:438 msgid "Account" msgstr "Konto" @@ -666,18 +667,6 @@ msgstr "%1$s/ulubione wpisy od %2$s" msgid "%1$s updates favorited by %2$s / %2$s." msgstr "Użytkownik %1$s aktualizuje ulubione według %2$s/%2$s." -#: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:138 actions/userrss.php:90 -#, php-format -msgid "%s timeline" -msgstr "Oś czasu użytkownika %s" - -#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 -#: actions/userrss.php:92 -#, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "Aktualizacje z %1$s na %2$s." - #: actions/apitimelinementions.php:117 #, php-format msgid "%1$s / Updates mentioning %2$s" @@ -688,12 +677,12 @@ msgstr "%1$s/aktualizacje wspominające %2$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/apitimelinepublic.php:111 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "Publiczna oś czasu użytkownika %s" -#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "Użytkownik %s aktualizuje od każdego." @@ -939,7 +928,7 @@ msgid "Conversation" msgstr "Rozmowa" #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:216 lib/searchgroupnav.php:82 +#: lib/profileaction.php:218 lib/searchgroupnav.php:82 msgid "Notices" msgstr "Wpisy" @@ -958,7 +947,7 @@ msgstr "Nie jesteś właścicielem tej aplikacji." #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1228 +#: lib/action.php:1217 msgid "There was a problem with your session token." msgstr "Wystąpił problem z tokenem sesji." @@ -1151,8 +1140,9 @@ msgstr "Przywróć domyślne ustawienia" #: actions/designadminpanel.php:586 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 +#: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:208 #: actions/tagother.php:154 actions/useradminpanel.php:294 #: lib/applicationeditform.php:333 lib/applicationeditform.php:334 #: lib/designsettings.php:256 lib/groupeditform.php:202 @@ -1268,7 +1258,7 @@ msgstr "opis jest za długi (maksymalnie %d znaków)." msgid "Could not update group." msgstr "Nie można zaktualizować grupy." -#: actions/editgroup.php:264 classes/User_group.php:478 +#: actions/editgroup.php:264 classes/User_group.php:493 msgid "Could not create aliases." msgstr "Nie można utworzyć aliasów." @@ -1391,7 +1381,7 @@ msgid "Cannot normalize that email address" msgstr "Nie można znormalizować tego adresu e-mail" #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:143 +#: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "To nie jest prawidłowy adres e-mail." @@ -1584,6 +1574,25 @@ msgstr "Nie ma takiego pliku." msgid "Cannot read file." msgstr "Nie można odczytać pliku." +#: actions/grantrole.php:62 actions/revokerole.php:62 +#, fuzzy +msgid "Invalid role." +msgstr "Nieprawidłowy token." + +#: actions/grantrole.php:66 actions/revokerole.php:66 +msgid "This role is reserved and cannot be set." +msgstr "" + +#: actions/grantrole.php:75 +#, fuzzy +msgid "You cannot grant user roles on this site." +msgstr "Nie można ograniczać użytkowników na tej witrynie." + +#: actions/grantrole.php:82 +#, fuzzy +msgid "User already has this role." +msgstr "Użytkownik jest już wyciszony." + #: actions/groupblock.php:71 actions/groupunblock.php:71 #: actions/makeadmin.php:71 actions/subedit.php:46 #: lib/profileformaction.php:70 @@ -1727,12 +1736,18 @@ msgstr "Uczyń administratorem" msgid "Make this user an admin" msgstr "Uczyń tego użytkownika administratorem" +#: actions/grouprss.php:138 actions/userrss.php:90 +#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#, php-format +msgid "%s timeline" +msgstr "Oś czasu użytkownika %s" + #: actions/grouprss.php:140 #, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Aktualizacje od członków %1$s na %2$s." -#: actions/groups.php:62 lib/profileaction.php:210 lib/profileaction.php:230 +#: actions/groups.php:62 lib/profileaction.php:212 lib/profileaction.php:232 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" msgstr "Grupy" @@ -2352,8 +2367,8 @@ msgstr "typ zawartości " msgid "Only " msgstr "Tylko " -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 -#: lib/apiaction.php:1068 lib/apiaction.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1042 +#: lib/apiaction.php:1070 lib/apiaction.php:1179 msgid "Not a supported data format." msgstr "To nie jest obsługiwany format danych." @@ -2492,7 +2507,8 @@ msgstr "Nie można zapisać nowego hasła." msgid "Password saved." msgstr "Zapisano hasło." -#: actions/pathsadminpanel.php:59 +#. TRANS: Menu item for site administration +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 msgid "Paths" msgstr "Ścieżki" @@ -2614,7 +2630,7 @@ msgstr "Katalog tła" msgid "SSL" msgstr "SSL" -#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 +#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202 msgid "Never" msgstr "Nigdy" @@ -2670,11 +2686,11 @@ msgstr "Nieprawidłowy znacznik osób: %s" msgid "Users self-tagged with %1$s - page %2$d" msgstr "Użytkownicy używający znacznika %1$s - strona %2$d" -#: actions/postnotice.php:84 +#: actions/postnotice.php:95 msgid "Invalid notice content" msgstr "Nieprawidłowa zawartość wpisu" -#: actions/postnotice.php:90 +#: actions/postnotice.php:101 #, php-format msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "Licencja wpisu \"%1$s\" nie jest zgodna z licencją witryny \"%2$s\"." @@ -2754,7 +2770,7 @@ msgstr "" "Znaczniki dla siebie (litery, liczby, -, . i _), oddzielone przecinkami lub " "spacjami" -#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 +#: actions/profilesettings.php:151 msgid "Language" msgstr "Język" @@ -2781,7 +2797,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "Wpis \"O mnie\" jest za długi (maksymalnie %d znaków)." -#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:151 msgid "Timezone not selected." msgstr "Nie wybrano strefy czasowej." @@ -3100,7 +3116,7 @@ msgid "Same as password above. Required." msgstr "Takie samo jak powyższe hasło. Wymagane." #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 msgid "Email" msgstr "E-mail" @@ -3206,7 +3222,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "Adres URL profilu na innej, zgodnej usłudze mikroblogowania" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:368 +#: lib/userprofile.php:394 msgid "Subscribe" msgstr "Subskrybuj" @@ -3310,6 +3326,16 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "odpowiedzi dla użytkownika %1$s na %2$s." +#: actions/revokerole.php:75 +#, fuzzy +msgid "You cannot revoke user roles on this site." +msgstr "Nie można wyciszać użytkowników na tej witrynie." + +#: actions/revokerole.php:82 +#, fuzzy +msgid "User doesn't have this role." +msgstr "Użytkownik bez odpowiadającego profilu." + #: actions/rsd.php:146 actions/version.php:157 msgid "StatusNet" msgstr "StatusNet" @@ -3322,7 +3348,9 @@ msgstr "Nie można ograniczać użytkowników na tej witrynie." msgid "User is already sandboxed." msgstr "Użytkownik jest już ograniczony." +#. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:390 msgid "Sessions" msgstr "Sesje" @@ -3346,7 +3374,7 @@ msgstr "Debugowanie sesji" msgid "Turn on debugging output for sessions." msgstr "Włącza wyjście debugowania dla sesji." -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "Zapisz ustawienia witryny" @@ -3377,8 +3405,8 @@ msgstr "Organizacja" msgid "Description" msgstr "Opis" -#: actions/showapplication.php:192 actions/showgroup.php:437 -#: lib/profileaction.php:174 +#: actions/showapplication.php:192 actions/showgroup.php:438 +#: lib/profileaction.php:176 msgid "Statistics" msgstr "Statystyki" @@ -3520,45 +3548,45 @@ msgstr "Aliasy" msgid "Group actions" msgstr "Działania grupy" -#: actions/showgroup.php:336 +#: actions/showgroup.php:337 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Kanał wpisów dla grupy %s (RSS 1.0)" -#: actions/showgroup.php:342 +#: actions/showgroup.php:343 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Kanał wpisów dla grupy %s (RSS 2.0)" -#: actions/showgroup.php:348 +#: actions/showgroup.php:349 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "Kanał wpisów dla grupy %s (Atom)" -#: actions/showgroup.php:353 +#: actions/showgroup.php:354 #, php-format msgid "FOAF for %s group" msgstr "FOAF dla grupy %s" -#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 +#: actions/showgroup.php:390 actions/showgroup.php:447 lib/groupnav.php:91 msgid "Members" msgstr "Członkowie" -#: actions/showgroup.php:394 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 +#: actions/showgroup.php:395 lib/profileaction.php:117 +#: lib/profileaction.php:150 lib/profileaction.php:238 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(Brak)" -#: actions/showgroup.php:400 +#: actions/showgroup.php:401 msgid "All members" msgstr "Wszyscy członkowie" -#: actions/showgroup.php:440 +#: actions/showgroup.php:441 msgid "Created" msgstr "Utworzono" -#: actions/showgroup.php:456 +#: actions/showgroup.php:457 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3574,7 +3602,7 @@ msgstr "" "action.register%%%%), aby stać się częścią tej grupy i wiele więcej. " "([Przeczytaj więcej](%%%%doc.help%%%%))" -#: actions/showgroup.php:462 +#: actions/showgroup.php:463 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3587,7 +3615,7 @@ msgstr "" "narzędziu [StatusNet](http://status.net/). Jej członkowie dzielą się " "krótkimi wiadomościami o swoim życiu i zainteresowaniach. " -#: actions/showgroup.php:490 +#: actions/showgroup.php:491 msgid "Admins" msgstr "Administratorzy" @@ -3710,148 +3738,139 @@ msgid "User is already silenced." msgstr "Użytkownik jest już wyciszony." #: actions/siteadminpanel.php:69 -msgid "Basic settings for this StatusNet site." +#, fuzzy +msgid "Basic settings for this StatusNet site" msgstr "Podstawowe ustawienia tej witryny StatusNet." -#: actions/siteadminpanel.php:132 +#: actions/siteadminpanel.php:133 msgid "Site name must have non-zero length." msgstr "Nazwa witryny nie może mieć zerową długość." -#: actions/siteadminpanel.php:140 +#: actions/siteadminpanel.php:141 msgid "You must have a valid contact email address." msgstr "Należy posiadać prawidłowy kontaktowy adres e-mail." -#: actions/siteadminpanel.php:158 +#: actions/siteadminpanel.php:159 #, php-format msgid "Unknown language \"%s\"." msgstr "Nieznany język \"%s\"." #: actions/siteadminpanel.php:165 -msgid "Invalid snapshot report URL." -msgstr "Nieprawidłowy adres URL zgłaszania migawek." - -#: actions/siteadminpanel.php:171 -msgid "Invalid snapshot run value." -msgstr "Nieprawidłowa wartość wykonania migawki." - -#: actions/siteadminpanel.php:177 -msgid "Snapshot frequency must be a number." -msgstr "Częstotliwość migawek musi być liczbą." - -#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "Maksymalne ograniczenie tekstu to 14 znaków." -#: actions/siteadminpanel.php:189 +#: actions/siteadminpanel.php:171 msgid "Dupe limit must 1 or more seconds." msgstr "Ograniczenie duplikatów musi wynosić jedną lub więcej sekund." -#: actions/siteadminpanel.php:239 +#: actions/siteadminpanel.php:221 msgid "General" msgstr "Ogólne" -#: actions/siteadminpanel.php:242 +#: actions/siteadminpanel.php:224 msgid "Site name" msgstr "Nazwa witryny" -#: actions/siteadminpanel.php:243 +#: actions/siteadminpanel.php:225 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "Nazwa strony, taka jak \"Mikroblog firmy X\"" -#: actions/siteadminpanel.php:247 +#: actions/siteadminpanel.php:229 msgid "Brought by" msgstr "Dostarczane przez" -#: actions/siteadminpanel.php:248 +#: actions/siteadminpanel.php:230 msgid "Text used for credits link in footer of each page" msgstr "Tekst używany do odnośnika do zasług w stopce każdej strony" -#: actions/siteadminpanel.php:252 +#: actions/siteadminpanel.php:234 msgid "Brought by URL" msgstr "Adres URL \"Dostarczane przez\"" -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:235 msgid "URL used for credits link in footer of each page" msgstr "Adres URL używany do odnośnika do zasług w stopce każdej strony" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:239 msgid "Contact email address for your site" msgstr "Kontaktowy adres e-mail witryny" -#: actions/siteadminpanel.php:263 +#: actions/siteadminpanel.php:245 msgid "Local" msgstr "Lokalne" -#: actions/siteadminpanel.php:274 +#: actions/siteadminpanel.php:256 msgid "Default timezone" msgstr "Domyślna strefa czasowa" -#: actions/siteadminpanel.php:275 +#: actions/siteadminpanel.php:257 msgid "Default timezone for the site; usually UTC." msgstr "Domyśla strefa czasowa witryny, zwykle UTC." -#: actions/siteadminpanel.php:281 -msgid "Default site language" +#: actions/siteadminpanel.php:262 +#, fuzzy +msgid "Default language" msgstr "Domyślny język witryny" -#: actions/siteadminpanel.php:289 -msgid "Snapshots" -msgstr "Migawki" +#: actions/siteadminpanel.php:263 +msgid "Site language when autodetection from browser settings is not available" +msgstr "" -#: actions/siteadminpanel.php:292 -msgid "Randomly during Web hit" -msgstr "Losowo podczas trafienia WWW" - -#: actions/siteadminpanel.php:293 -msgid "In a scheduled job" -msgstr "Jako zaplanowane zadanie" - -#: actions/siteadminpanel.php:295 -msgid "Data snapshots" -msgstr "Migawki danych" - -#: actions/siteadminpanel.php:296 -msgid "When to send statistical data to status.net servers" -msgstr "Kiedy wysyłać dane statystyczne na serwery status.net" - -#: actions/siteadminpanel.php:301 -msgid "Frequency" -msgstr "Częstotliwość" - -#: actions/siteadminpanel.php:302 -msgid "Snapshots will be sent once every N web hits" -msgstr "Migawki będą wysyłane co N trafień WWW" - -#: actions/siteadminpanel.php:307 -msgid "Report URL" -msgstr "Adres URL zgłaszania" - -#: actions/siteadminpanel.php:308 -msgid "Snapshots will be sent to this URL" -msgstr "Migawki będą wysyłane na ten adres URL" - -#: actions/siteadminpanel.php:315 +#: actions/siteadminpanel.php:271 msgid "Limits" msgstr "Ograniczenia" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Text limit" msgstr "Ograniczenie tekstu" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Maximum number of characters for notices." msgstr "Maksymalna liczba znaków wpisów." -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "Dupe limit" msgstr "Ograniczenie duplikatów" -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" "Ile czasu użytkownicy muszą czekać (w sekundach), aby ponownie wysłać to " "samo." +#: actions/sitenoticeadminpanel.php:56 +#, fuzzy +msgid "Site Notice" +msgstr "Wpis witryny" + +#: actions/sitenoticeadminpanel.php:67 +#, fuzzy +msgid "Edit site-wide message" +msgstr "Nowa wiadomość" + +#: actions/sitenoticeadminpanel.php:103 +#, fuzzy +msgid "Unable to save site notice." +msgstr "Nie można zapisać ustawień wyglądu." + +#: actions/sitenoticeadminpanel.php:113 +msgid "Max length for the site-wide notice is 255 chars" +msgstr "" + +#: actions/sitenoticeadminpanel.php:176 +#, fuzzy +msgid "Site notice text" +msgstr "Wpis witryny" + +#: actions/sitenoticeadminpanel.php:178 +msgid "Site-wide notice text (255 chars max; HTML okay)" +msgstr "" + +#: actions/sitenoticeadminpanel.php:198 +#, fuzzy +msgid "Save site notice" +msgstr "Wpis witryny" + #: actions/smssettings.php:58 msgid "SMS settings" msgstr "Ustawienia SMS" @@ -3951,6 +3970,66 @@ msgstr "" msgid "No code entered" msgstr "Nie podano kodu" +#. TRANS: Menu item for site administration +#: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 +#: lib/adminpanelaction.php:406 +msgid "Snapshots" +msgstr "Migawki" + +#: actions/snapshotadminpanel.php:65 +#, fuzzy +msgid "Manage snapshot configuration" +msgstr "Zmień konfigurację witryny" + +#: actions/snapshotadminpanel.php:127 +msgid "Invalid snapshot run value." +msgstr "Nieprawidłowa wartość wykonania migawki." + +#: actions/snapshotadminpanel.php:133 +msgid "Snapshot frequency must be a number." +msgstr "Częstotliwość migawek musi być liczbą." + +#: actions/snapshotadminpanel.php:144 +msgid "Invalid snapshot report URL." +msgstr "Nieprawidłowy adres URL zgłaszania migawek." + +#: actions/snapshotadminpanel.php:200 +msgid "Randomly during Web hit" +msgstr "Losowo podczas trafienia WWW" + +#: actions/snapshotadminpanel.php:201 +msgid "In a scheduled job" +msgstr "Jako zaplanowane zadanie" + +#: actions/snapshotadminpanel.php:206 +msgid "Data snapshots" +msgstr "Migawki danych" + +#: actions/snapshotadminpanel.php:208 +msgid "When to send statistical data to status.net servers" +msgstr "Kiedy wysyłać dane statystyczne na serwery status.net" + +#: actions/snapshotadminpanel.php:217 +msgid "Frequency" +msgstr "Częstotliwość" + +#: actions/snapshotadminpanel.php:218 +msgid "Snapshots will be sent once every N web hits" +msgstr "Migawki będą wysyłane co N trafień WWW" + +#: actions/snapshotadminpanel.php:226 +msgid "Report URL" +msgstr "Adres URL zgłaszania" + +#: actions/snapshotadminpanel.php:227 +msgid "Snapshots will be sent to this URL" +msgstr "Migawki będą wysyłane na ten adres URL" + +#: actions/snapshotadminpanel.php:248 +#, fuzzy +msgid "Save snapshot settings" +msgstr "Zapisz ustawienia witryny" + #: actions/subedit.php:70 msgid "You are not subscribed to that profile." msgstr "Nie jesteś subskrybowany do tego profilu." @@ -4161,7 +4240,7 @@ msgstr "Brak identyfikatora profilu w żądaniu." msgid "Unsubscribed" msgstr "Zrezygnowano z subskrypcji" -#: actions/updateprofile.php:62 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -4362,16 +4441,22 @@ msgstr "Grupy użytkownika %1$s, strona %2$d" msgid "Search for more groups" msgstr "Wyszukaj więcej grup" -#: actions/usergroups.php:153 +#: actions/usergroups.php:157 #, 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 +#: actions/usergroups.php:162 #, 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/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: lib/atomusernoticefeed.php:72 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "Aktualizacje z %1$s na %2$s." + #: actions/version.php:73 #, php-format msgid "StatusNet %s" @@ -4429,7 +4514,7 @@ msgstr "" msgid "Plugins" msgstr "Wtyczki" -#: actions/version.php:196 lib/action.php:778 +#: actions/version.php:196 lib/action.php:767 msgid "Version" msgstr "Wersja" @@ -4497,22 +4582,22 @@ msgstr "Nie można zaktualizować wiadomości za pomocą nowego adresu URL." msgid "DB error inserting hashtag: %s" msgstr "Błąd bazy danych podczas wprowadzania znacznika mieszania: %s" -#: classes/Notice.php:239 +#: classes/Notice.php:241 msgid "Problem saving notice. Too long." msgstr "Problem podczas zapisywania wpisu. Za długi." -#: classes/Notice.php:243 +#: classes/Notice.php:245 msgid "Problem saving notice. Unknown user." msgstr "Problem podczas zapisywania wpisu. Nieznany użytkownik." -#: classes/Notice.php:248 +#: classes/Notice.php:250 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." -#: classes/Notice.php:254 +#: classes/Notice.php:256 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." @@ -4520,19 +4605,19 @@ msgstr "" "Za dużo takich samych wiadomości w za krótkim czasie, weź głęboki oddech i " "wyślij ponownie za kilka minut." -#: classes/Notice.php:260 +#: classes/Notice.php:262 msgid "You are banned from posting notices on this site." msgstr "Zabroniono ci wysyłania wpisów na tej witrynie." -#: classes/Notice.php:326 classes/Notice.php:352 +#: classes/Notice.php:328 classes/Notice.php:354 msgid "Problem saving notice." msgstr "Problem podczas zapisywania wpisu." -#: classes/Notice.php:911 +#: classes/Notice.php:927 msgid "Problem saving group inbox." msgstr "Problem podczas zapisywania skrzynki odbiorczej grupy." -#: classes/Notice.php:1442 +#: classes/Notice.php:1459 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -4557,7 +4642,12 @@ msgstr "Niesubskrybowane." msgid "Couldn't delete self-subscription." msgstr "Nie można usunąć autosubskrypcji." -#: classes/Subscription.php:179 lib/subs.php:69 +#: classes/Subscription.php:190 +#, fuzzy +msgid "Couldn't delete subscription OMB token." +msgstr "Nie można usunąć subskrypcji." + +#: classes/Subscription.php:201 lib/subs.php:69 msgid "Couldn't delete subscription." msgstr "Nie można usunąć subskrypcji." @@ -4566,19 +4656,19 @@ msgstr "Nie można usunąć subskrypcji." msgid "Welcome to %1$s, @%2$s!" msgstr "Witaj w %1$s, @%2$s." -#: classes/User_group.php:462 +#: classes/User_group.php:477 msgid "Could not create group." msgstr "Nie można utworzyć grupy." -#: classes/User_group.php:471 +#: classes/User_group.php:486 msgid "Could not set group URI." msgstr "Nie można ustawić adresu URI grupy." -#: classes/User_group.php:492 +#: classes/User_group.php:507 msgid "Could not set group membership." msgstr "Nie można ustawić członkostwa w grupie." -#: classes/User_group.php:506 +#: classes/User_group.php:521 msgid "Could not save local group info." msgstr "Nie można zapisać informacji o lokalnej grupie." @@ -4619,194 +4709,188 @@ msgstr "%1$s - %2$s" msgid "Untitled page" msgstr "Strona bez nazwy" -#: lib/action.php:433 +#: lib/action.php:424 msgid "Primary site navigation" msgstr "Główna nawigacja witryny" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:439 +#: lib/action.php:430 #, fuzzy msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Profil osobisty i oś czasu przyjaciół" -#: lib/action.php:442 +#: lib/action.php:433 #, fuzzy msgctxt "MENU" msgid "Personal" msgstr "Osobiste" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:444 +#: lib/action.php:435 #, fuzzy msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Zmień adres e-mail, awatar, hasło, profil" -#: lib/action.php:447 -#, fuzzy -msgctxt "MENU" -msgid "Account" -msgstr "Konto" - #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:450 +#: lib/action.php:440 #, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Połącz z serwisami" -#: lib/action.php:453 +#: lib/action.php:443 #, fuzzy -msgctxt "MENU" msgid "Connect" msgstr "Połącz" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:457 +#: lib/action.php:446 #, fuzzy msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Zmień konfigurację witryny" -#: lib/action.php:460 +#: lib/action.php:449 #, fuzzy msgctxt "MENU" msgid "Admin" msgstr "Administrator" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:464 +#: lib/action.php:453 #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Zaproś przyjaciół i kolegów do dołączenia do ciebie na %s" -#: lib/action.php:467 +#: lib/action.php:456 #, fuzzy msgctxt "MENU" msgid "Invite" msgstr "Zaproś" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:473 +#: lib/action.php:462 #, fuzzy msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Wyloguj się z witryny" -#: lib/action.php:476 +#: lib/action.php:465 #, fuzzy msgctxt "MENU" msgid "Logout" msgstr "Wyloguj się" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:481 +#: lib/action.php:470 #, fuzzy msgctxt "TOOLTIP" msgid "Create an account" msgstr "Utwórz konto" -#: lib/action.php:484 +#: lib/action.php:473 #, fuzzy msgctxt "MENU" msgid "Register" msgstr "Zarejestruj się" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:487 +#: lib/action.php:476 #, fuzzy msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Zaloguj się na witrynie" -#: lib/action.php:490 +#: lib/action.php:479 #, fuzzy msgctxt "MENU" msgid "Login" msgstr "Zaloguj się" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:493 +#: lib/action.php:482 #, fuzzy msgctxt "TOOLTIP" msgid "Help me!" msgstr "Pomóż mi." -#: lib/action.php:496 +#: lib/action.php:485 #, fuzzy msgctxt "MENU" msgid "Help" msgstr "Pomoc" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:499 +#: lib/action.php:488 #, fuzzy msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Wyszukaj osoby lub tekst" -#: lib/action.php:502 +#: lib/action.php:491 #, fuzzy msgctxt "MENU" msgid "Search" msgstr "Wyszukaj" #. TRANS: DT element for site notice. String is hidden in default CSS. -#: lib/action.php:524 +#. TRANS: Menu item for site administration +#: lib/action.php:513 lib/adminpanelaction.php:398 msgid "Site notice" msgstr "Wpis witryny" -#: lib/action.php:590 +#: lib/action.php:579 msgid "Local views" msgstr "Lokalne widoki" -#: lib/action.php:656 +#: lib/action.php:645 msgid "Page notice" msgstr "Wpis strony" -#: lib/action.php:758 +#: lib/action.php:747 msgid "Secondary site navigation" msgstr "Druga nawigacja witryny" -#: lib/action.php:763 +#: lib/action.php:752 msgid "Help" msgstr "Pomoc" -#: lib/action.php:765 +#: lib/action.php:754 msgid "About" msgstr "O usłudze" -#: lib/action.php:767 +#: lib/action.php:756 msgid "FAQ" msgstr "FAQ" -#: lib/action.php:771 +#: lib/action.php:760 msgid "TOS" msgstr "TOS" -#: lib/action.php:774 +#: lib/action.php:763 msgid "Privacy" msgstr "Prywatność" -#: lib/action.php:776 +#: lib/action.php:765 msgid "Source" msgstr "Kod źródłowy" -#: lib/action.php:780 +#: lib/action.php:769 msgid "Contact" msgstr "Kontakt" -#: lib/action.php:782 +#: lib/action.php:771 msgid "Badge" msgstr "Odznaka" -#: lib/action.php:810 +#: lib/action.php:799 msgid "StatusNet software license" msgstr "Licencja oprogramowania StatusNet" -#: lib/action.php:813 +#: lib/action.php:802 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4815,12 +4899,12 @@ msgstr "" "**%%site.name%%** jest usługą mikroblogowania prowadzoną przez [%%site." "broughtby%%](%%site.broughtbyurl%%). " -#: lib/action.php:815 +#: lib/action.php:804 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** jest usługą mikroblogowania. " -#: lib/action.php:817 +#: lib/action.php:806 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4831,57 +4915,57 @@ msgstr "" "status.net/) w wersji %s, dostępnego na [Powszechnej Licencji Publicznej GNU " "Affero](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." -#: lib/action.php:832 +#: lib/action.php:821 msgid "Site content license" msgstr "Licencja zawartości witryny" -#: lib/action.php:837 +#: lib/action.php:826 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "Treść i dane %1$s są prywatne i poufne." -#: lib/action.php:842 +#: lib/action.php:831 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" "Prawa autorskie do treści i danych są własnością %1$s. Wszystkie prawa " "zastrzeżone." -#: lib/action.php:845 +#: lib/action.php:834 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" "Prawa autorskie do treści i danych są własnością współtwórców. Wszystkie " "prawa zastrzeżone." -#: lib/action.php:858 +#: lib/action.php:847 msgid "All " msgstr "Wszystko " -#: lib/action.php:864 +#: lib/action.php:853 msgid "license." msgstr "licencja." -#: lib/action.php:1163 +#: lib/action.php:1152 msgid "Pagination" msgstr "Paginacja" -#: lib/action.php:1172 +#: lib/action.php:1161 msgid "After" msgstr "Później" -#: lib/action.php:1180 +#: lib/action.php:1169 msgid "Before" msgstr "Wcześniej" -#: lib/activity.php:449 +#: lib/activity.php:453 msgid "Can't handle remote content yet." msgstr "Nie można jeszcze obsługiwać zdalnej treści." -#: lib/activity.php:477 +#: lib/activity.php:481 msgid "Can't handle embedded XML content yet." msgstr "Nie można jeszcze obsługiwać zagnieżdżonej treści XML." -#: lib/activity.php:481 +#: lib/activity.php:485 msgid "Can't handle embedded Base64 content yet." msgstr "Nie można jeszcze obsługiwać zagnieżdżonej treści Base64." @@ -4896,91 +4980,80 @@ msgid "Changes to that panel are not allowed." msgstr "Zmiany w tym panelu nie są dozwolone." #. TRANS: Client error message -#: lib/adminpanelaction.php:211 +#: lib/adminpanelaction.php:229 msgid "showForm() not implemented." msgstr "showForm() nie jest zaimplementowane." #. TRANS: Client error message -#: lib/adminpanelaction.php:241 +#: lib/adminpanelaction.php:259 msgid "saveSettings() not implemented." msgstr "saveSettings() nie jest zaimplementowane." #. TRANS: Client error message -#: lib/adminpanelaction.php:265 +#: lib/adminpanelaction.php:283 msgid "Unable to delete design setting." msgstr "Nie można usunąć ustawienia wyglądu." #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:330 +#: lib/adminpanelaction.php:348 msgid "Basic site configuration" msgstr "Podstawowa konfiguracja witryny" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:332 +#: lib/adminpanelaction.php:350 #, fuzzy msgctxt "MENU" msgid "Site" msgstr "Witryny" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:338 +#: lib/adminpanelaction.php:356 msgid "Design configuration" msgstr "Konfiguracja wyglądu" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:340 +#: lib/adminpanelaction.php:358 #, fuzzy msgctxt "MENU" msgid "Design" msgstr "Wygląd" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:346 +#: lib/adminpanelaction.php:364 msgid "User configuration" msgstr "Konfiguracja użytkownika" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:348 -#, fuzzy -msgctxt "MENU" +#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 msgid "User" msgstr "Użytkownik" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:354 +#: lib/adminpanelaction.php:372 msgid "Access configuration" msgstr "Konfiguracja dostępu" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:356 -#, fuzzy -msgctxt "MENU" -msgid "Access" -msgstr "Dostęp" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:362 +#: lib/adminpanelaction.php:380 msgid "Paths configuration" msgstr "Konfiguracja ścieżek" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:364 -#, fuzzy -msgctxt "MENU" -msgid "Paths" -msgstr "Ścieżki" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:370 +#: lib/adminpanelaction.php:388 msgid "Sessions configuration" msgstr "Konfiguracja sesji" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:372 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:396 #, fuzzy -msgctxt "MENU" -msgid "Sessions" -msgstr "Sesje" +msgid "Edit site notice" +msgstr "Wpis witryny" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:404 +#, fuzzy +msgid "Snapshots configuration" +msgstr "Konfiguracja ścieżek" #: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." @@ -5514,6 +5587,11 @@ msgstr "Wybierz znacznik do ograniczonej listy" msgid "Go" msgstr "Przejdź" +#: lib/grantroleform.php:91 +#, php-format +msgid "Grant this user the \"%s\" role" +msgstr "" + #: 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" @@ -6131,10 +6209,6 @@ msgstr "Odpowiedzi" msgid "Favorites" msgstr "Ulubione" -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "Użytkownik" - #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "Odebrane" @@ -6160,7 +6234,7 @@ msgstr "Znaczniki we wpisach użytkownika %s" msgid "Unknown" msgstr "Nieznane" -#: lib/profileaction.php:109 lib/profileaction.php:192 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:194 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Subskrypcje" @@ -6168,23 +6242,23 @@ msgstr "Subskrypcje" msgid "All subscriptions" msgstr "Wszystkie subskrypcje" -#: lib/profileaction.php:140 lib/profileaction.php:201 lib/subgroupnav.php:90 +#: lib/profileaction.php:142 lib/profileaction.php:203 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Subskrybenci" -#: lib/profileaction.php:157 +#: lib/profileaction.php:159 msgid "All subscribers" msgstr "Wszyscy subskrybenci" -#: lib/profileaction.php:178 +#: lib/profileaction.php:180 msgid "User ID" msgstr "Identyfikator użytkownika" -#: lib/profileaction.php:183 +#: lib/profileaction.php:185 msgid "Member since" msgstr "Członek od" -#: lib/profileaction.php:245 +#: lib/profileaction.php:247 msgid "All groups" msgstr "Wszystkie grupy" @@ -6224,7 +6298,12 @@ msgstr "Powtórzyć ten wpis?" msgid "Repeat this notice" msgstr "Powtórz ten wpis" -#: lib/router.php:668 +#: lib/revokeroleform.php:91 +#, fuzzy, php-format +msgid "Revoke the \"%s\" role from this user" +msgstr "Zablokuj tego użytkownika w tej grupie" + +#: lib/router.php:671 msgid "No single user defined for single-user mode." msgstr "" "Nie określono pojedynczego użytkownika dla trybu pojedynczego użytkownika." @@ -6379,47 +6458,64 @@ msgstr "Wiadomość" msgid "Moderate" msgstr "Moderuj" -#: lib/util.php:1013 +#: lib/userprofile.php:352 +#, fuzzy +msgid "User role" +msgstr "Profil użytkownika" + +#: lib/userprofile.php:354 +#, fuzzy +msgctxt "role" +msgid "Administrator" +msgstr "Administratorzy" + +#: lib/userprofile.php:355 +#, fuzzy +msgctxt "role" +msgid "Moderator" +msgstr "Moderuj" + +#: lib/util.php:1015 msgid "a few seconds ago" msgstr "kilka sekund temu" -#: lib/util.php:1015 +#: lib/util.php:1017 msgid "about a minute ago" msgstr "około minutę temu" -#: lib/util.php:1017 +#: lib/util.php:1019 #, php-format msgid "about %d minutes ago" msgstr "około %d minut temu" -#: lib/util.php:1019 +#: lib/util.php:1021 msgid "about an hour ago" msgstr "około godzinę temu" -#: lib/util.php:1021 +#: lib/util.php:1023 #, php-format msgid "about %d hours ago" msgstr "około %d godzin temu" -#: lib/util.php:1023 +#: lib/util.php:1025 msgid "about a day ago" msgstr "blisko dzień temu" -#: lib/util.php:1025 +#: lib/util.php:1027 #, php-format msgid "about %d days ago" msgstr "około %d dni temu" -#: lib/util.php:1027 +#: lib/util.php:1029 msgid "about a month ago" msgstr "około miesiąc temu" -#: lib/util.php:1029 +#: lib/util.php:1031 #, php-format msgid "about %d months ago" msgstr "około %d miesięcy temu" -#: lib/util.php:1031 +#: lib/util.php:1033 msgid "about a year ago" msgstr "około rok temu" diff --git a/locale/pt/LC_MESSAGES/statusnet.po b/locale/pt/LC_MESSAGES/statusnet.po index 2598008d9b..8dd23b1629 100644 --- a/locale/pt/LC_MESSAGES/statusnet.po +++ b/locale/pt/LC_MESSAGES/statusnet.po @@ -9,19 +9,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-02 21:02+0000\n" -"PO-Revision-Date: 2010-03-02 21:03:38+0000\n" +"POT-Creation-Date: 2010-03-04 18:55+0000\n" +"PO-Revision-Date: 2010-03-04 18:57:05+0000\n" "Language-Team: Portuguese\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. TRANS: Page title -#: actions/accessadminpanel.php:55 +#. TRANS: Menu item for site administration +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 msgid "Access" msgstr "Acesso" @@ -121,7 +122,7 @@ msgstr "Perfis bloqueados de %1$s, página %2$d" #. TRANS: Page title. %1$s is user nickname #. TRANS: H1 text. %1$s is user nickname -#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -183,7 +184,7 @@ msgstr "" "publicar uma nota à sua atenção." #. TRANS: H1 text -#: actions/all.php:174 +#: actions/all.php:178 msgid "You and friends" msgstr "Você e seus amigos" @@ -210,11 +211,11 @@ msgstr "Actualizações de %1$s e amigos no %2$s!" #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 -#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 +#: actions/apitimelinegroup.php:160 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:148 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 msgid "API method not found." msgstr "Método da API não encontrado." @@ -575,7 +576,7 @@ msgid "" "give access to your %4$s account to third parties you trust." msgstr "" -#: actions/apioauthauthorize.php:310 +#: actions/apioauthauthorize.php:310 lib/action.php:438 msgid "Account" msgstr "Conta" @@ -664,18 +665,6 @@ msgstr "%1$s / Favoritas de %2$s" msgid "%1$s updates favorited by %2$s / %2$s." msgstr "%1$s actualizações preferidas por %2$s / %2$s." -#: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:138 actions/userrss.php:90 -#, php-format -msgid "%s timeline" -msgstr "Notas de %s" - -#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 -#: actions/userrss.php:92 -#, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "Actualizações de %1#s a %2$s!" - #: actions/apitimelinementions.php:117 #, php-format msgid "%1$s / Updates mentioning %2$s" @@ -686,12 +675,12 @@ msgstr "%1$s / Actualizações que mencionam %2$s" msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "%1$s actualizações em resposta a actualizações de %2$s / %3$s." -#: actions/apitimelinepublic.php:111 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "Notas públicas de %s" -#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "%s actualizações de todos!" @@ -938,7 +927,7 @@ msgid "Conversation" msgstr "Conversação" #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:216 lib/searchgroupnav.php:82 +#: lib/profileaction.php:218 lib/searchgroupnav.php:82 msgid "Notices" msgstr "Notas" @@ -960,7 +949,7 @@ msgstr "Não é membro deste grupo." #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1228 +#: lib/action.php:1217 msgid "There was a problem with your session token." msgstr "Ocorreu um problema com a sua sessão." @@ -1159,8 +1148,9 @@ msgstr "Repor predefinição" #: actions/designadminpanel.php:586 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 +#: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:208 #: actions/tagother.php:154 actions/useradminpanel.php:294 #: lib/applicationeditform.php:333 lib/applicationeditform.php:334 #: lib/designsettings.php:256 lib/groupeditform.php:202 @@ -1288,7 +1278,7 @@ msgstr "descrição é demasiada extensa (máx. %d caracteres)." msgid "Could not update group." msgstr "Não foi possível actualizar o grupo." -#: actions/editgroup.php:264 classes/User_group.php:478 +#: actions/editgroup.php:264 classes/User_group.php:493 msgid "Could not create aliases." msgstr "Não foi possível criar sinónimos." @@ -1415,7 +1405,7 @@ msgid "Cannot normalize that email address" msgstr "Não é possível normalizar esse endereço electrónico" #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:143 +#: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Correio electrónico é inválido." @@ -1607,6 +1597,25 @@ msgstr "Ficheiro não foi encontrado." msgid "Cannot read file." msgstr "Não foi possível ler o ficheiro." +#: actions/grantrole.php:62 actions/revokerole.php:62 +#, fuzzy +msgid "Invalid role." +msgstr "Tamanho inválido." + +#: actions/grantrole.php:66 actions/revokerole.php:66 +msgid "This role is reserved and cannot be set." +msgstr "" + +#: actions/grantrole.php:75 +#, fuzzy +msgid "You cannot grant user roles on this site." +msgstr "Não pode impedir notas públicas neste site." + +#: actions/grantrole.php:82 +#, fuzzy +msgid "User already has this role." +msgstr "O utilizador já está silenciado." + #: actions/groupblock.php:71 actions/groupunblock.php:71 #: actions/makeadmin.php:71 actions/subedit.php:46 #: lib/profileformaction.php:70 @@ -1754,12 +1763,18 @@ msgstr "Tornar Gestor" msgid "Make this user an admin" msgstr "Tornar este utilizador um gestor" +#: actions/grouprss.php:138 actions/userrss.php:90 +#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#, php-format +msgid "%s timeline" +msgstr "Notas de %s" + #: actions/grouprss.php:140 #, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Actualizações dos membros de %1$s em %2$s!" -#: actions/groups.php:62 lib/profileaction.php:210 lib/profileaction.php:230 +#: actions/groups.php:62 lib/profileaction.php:212 lib/profileaction.php:232 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" msgstr "Grupos" @@ -2386,8 +2401,8 @@ msgstr "tipo de conteúdo " msgid "Only " msgstr "Apenas " -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 -#: lib/apiaction.php:1068 lib/apiaction.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1042 +#: lib/apiaction.php:1070 lib/apiaction.php:1179 msgid "Not a supported data format." msgstr "Formato de dados não suportado." @@ -2533,7 +2548,8 @@ msgstr "Não é possível guardar a nova senha." msgid "Password saved." msgstr "Senha gravada." -#: actions/pathsadminpanel.php:59 +#. TRANS: Menu item for site administration +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 msgid "Paths" msgstr "Localizações" @@ -2653,7 +2669,7 @@ msgstr "Directório dos fundos" msgid "SSL" msgstr "SSL" -#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 +#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202 msgid "Never" msgstr "Nunca" @@ -2709,11 +2725,11 @@ msgstr "Categoria de pessoas inválida: %s" msgid "Users self-tagged with %1$s - page %2$d" msgstr "Utilizadores auto-categorizados com %1$s - página %2$d" -#: actions/postnotice.php:84 +#: actions/postnotice.php:95 msgid "Invalid notice content" msgstr "Conteúdo da nota é inválido" -#: actions/postnotice.php:90 +#: actions/postnotice.php:101 #, php-format msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" @@ -2794,7 +2810,7 @@ msgstr "" "Categorias para si (letras, números, -, ., _), separadas por vírgulas ou " "espaços" -#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 +#: actions/profilesettings.php:151 msgid "Language" msgstr "Idioma" @@ -2820,7 +2836,7 @@ msgstr "Subscrever automaticamente quem me subscreva (óptimo para não-humanos) msgid "Bio is too long (max %d chars)." msgstr "Biografia demasiado extensa (máx. %d caracteres)." -#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:151 msgid "Timezone not selected." msgstr "Fuso horário não foi seleccionado." @@ -3142,7 +3158,7 @@ msgid "Same as password above. Required." msgstr "Repita a senha acima. Obrigatório." #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 msgid "Email" msgstr "Correio" @@ -3248,7 +3264,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "URL do seu perfil noutro serviço de microblogues compatível" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:368 +#: lib/userprofile.php:394 msgid "Subscribe" msgstr "Subscrever" @@ -3352,6 +3368,16 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "Respostas a %1$s em %2$s!" +#: actions/revokerole.php:75 +#, fuzzy +msgid "You cannot revoke user roles on this site." +msgstr "Não pode silenciar utilizadores neste site." + +#: actions/revokerole.php:82 +#, fuzzy +msgid "User doesn't have this role." +msgstr "Utilizador sem perfil correspondente." + #: actions/rsd.php:146 actions/version.php:157 msgid "StatusNet" msgstr "StatusNet" @@ -3364,7 +3390,9 @@ msgstr "Não pode impedir notas públicas neste site." msgid "User is already sandboxed." msgstr "Utilizador já está impedido de criar notas públicas." +#. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:390 msgid "Sessions" msgstr "Sessões" @@ -3389,7 +3417,7 @@ msgstr "Depuração de sessões" msgid "Turn on debugging output for sessions." msgstr "Ligar a impressão de dados de depuração, para sessões." -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "Gravar configurações do site" @@ -3423,8 +3451,8 @@ msgstr "Paginação" msgid "Description" msgstr "Descrição" -#: actions/showapplication.php:192 actions/showgroup.php:437 -#: lib/profileaction.php:174 +#: actions/showapplication.php:192 actions/showgroup.php:438 +#: lib/profileaction.php:176 msgid "Statistics" msgstr "Estatísticas" @@ -3566,45 +3594,45 @@ msgstr "Sinónimos" msgid "Group actions" msgstr "Acções do grupo" -#: actions/showgroup.php:336 +#: actions/showgroup.php:337 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Fonte de notas do grupo %s (RSS 1.0)" -#: actions/showgroup.php:342 +#: actions/showgroup.php:343 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Fonte de notas do grupo %s (RSS 2.0)" -#: actions/showgroup.php:348 +#: actions/showgroup.php:349 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "Fonte de notas do grupo %s (Atom)" -#: actions/showgroup.php:353 +#: actions/showgroup.php:354 #, php-format msgid "FOAF for %s group" msgstr "FOAF do grupo %s" -#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 +#: actions/showgroup.php:390 actions/showgroup.php:447 lib/groupnav.php:91 msgid "Members" msgstr "Membros" -#: actions/showgroup.php:394 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 +#: actions/showgroup.php:395 lib/profileaction.php:117 +#: lib/profileaction.php:150 lib/profileaction.php:238 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(Nenhum)" -#: actions/showgroup.php:400 +#: actions/showgroup.php:401 msgid "All members" msgstr "Todos os membros" -#: actions/showgroup.php:440 +#: actions/showgroup.php:441 msgid "Created" msgstr "Criado" -#: actions/showgroup.php:456 +#: actions/showgroup.php:457 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3620,7 +3648,7 @@ msgstr "" "[Registe-se agora](%%action.register%%) para se juntar a este grupo e a " "muitos mais! ([Saber mais](%%doc.help%%))" -#: actions/showgroup.php:462 +#: actions/showgroup.php:463 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3633,7 +3661,7 @@ msgstr "" "programa de Software Livre [StatusNet](http://status.net/). Os membros deste " "grupo partilham mensagens curtas acerca das suas vidas e interesses. " -#: actions/showgroup.php:490 +#: actions/showgroup.php:491 msgid "Admins" msgstr "Gestores" @@ -3755,148 +3783,139 @@ msgid "User is already silenced." msgstr "O utilizador já está silenciado." #: actions/siteadminpanel.php:69 -msgid "Basic settings for this StatusNet site." +#, fuzzy +msgid "Basic settings for this StatusNet site" msgstr "Configurações básicas para este site StatusNet." -#: actions/siteadminpanel.php:132 +#: actions/siteadminpanel.php:133 msgid "Site name must have non-zero length." msgstr "Nome do site não pode ter comprimento zero." -#: actions/siteadminpanel.php:140 +#: actions/siteadminpanel.php:141 msgid "You must have a valid contact email address." msgstr "Tem de ter um endereço válido para o correio electrónico de contacto." -#: actions/siteadminpanel.php:158 +#: actions/siteadminpanel.php:159 #, php-format msgid "Unknown language \"%s\"." msgstr "Língua desconhecida \"%s\"." #: actions/siteadminpanel.php:165 -msgid "Invalid snapshot report URL." -msgstr "URL para onde enviar instantâneos é inválida" - -#: actions/siteadminpanel.php:171 -msgid "Invalid snapshot run value." -msgstr "Valor de criação do instantâneo é inválido." - -#: actions/siteadminpanel.php:177 -msgid "Snapshot frequency must be a number." -msgstr "Frequência dos instantâneos estatísticos tem de ser um número." - -#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "O valor mínimo de limite para o texto é 140 caracteres." -#: actions/siteadminpanel.php:189 +#: actions/siteadminpanel.php:171 msgid "Dupe limit must 1 or more seconds." msgstr "O limite de duplicados tem de ser 1 ou mais segundos." -#: actions/siteadminpanel.php:239 +#: actions/siteadminpanel.php:221 msgid "General" msgstr "Geral" -#: actions/siteadminpanel.php:242 +#: actions/siteadminpanel.php:224 msgid "Site name" msgstr "Nome do site" -#: actions/siteadminpanel.php:243 +#: actions/siteadminpanel.php:225 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "O nome do seu site, por exemplo \"Microblogue NomeDaEmpresa\"" -#: actions/siteadminpanel.php:247 +#: actions/siteadminpanel.php:229 msgid "Brought by" msgstr "Disponibilizado por" -#: actions/siteadminpanel.php:248 +#: actions/siteadminpanel.php:230 msgid "Text used for credits link in footer of each page" msgstr "Texto usado para a ligação de atribuição no rodapé de cada página" -#: actions/siteadminpanel.php:252 +#: actions/siteadminpanel.php:234 msgid "Brought by URL" msgstr "URL da atribuição" -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:235 msgid "URL used for credits link in footer of each page" msgstr "URL usada para a ligação de atribuição no rodapé de cada página" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:239 msgid "Contact email address for your site" msgstr "Endereço de correio electrónico de contacto para o site" -#: actions/siteadminpanel.php:263 +#: actions/siteadminpanel.php:245 msgid "Local" msgstr "Local" -#: actions/siteadminpanel.php:274 +#: actions/siteadminpanel.php:256 msgid "Default timezone" msgstr "Fuso horário, por omissão" -#: actions/siteadminpanel.php:275 +#: actions/siteadminpanel.php:257 msgid "Default timezone for the site; usually UTC." msgstr "Fuso horário por omissão, para o site; normalmente, UTC." -#: actions/siteadminpanel.php:281 -msgid "Default site language" +#: actions/siteadminpanel.php:262 +#, fuzzy +msgid "Default language" msgstr "Idioma do site, por omissão" -#: actions/siteadminpanel.php:289 -msgid "Snapshots" -msgstr "Instantâneos" +#: actions/siteadminpanel.php:263 +msgid "Site language when autodetection from browser settings is not available" +msgstr "" -#: actions/siteadminpanel.php:292 -msgid "Randomly during Web hit" -msgstr "Aleatoriamente, durante o acesso pela internet" - -#: actions/siteadminpanel.php:293 -msgid "In a scheduled job" -msgstr "Num processo agendado" - -#: actions/siteadminpanel.php:295 -msgid "Data snapshots" -msgstr "Instantâneos dos dados" - -#: actions/siteadminpanel.php:296 -msgid "When to send statistical data to status.net servers" -msgstr "Quando enviar dados estatísticos para os servidores do status.net" - -#: actions/siteadminpanel.php:301 -msgid "Frequency" -msgstr "Frequência" - -#: actions/siteadminpanel.php:302 -msgid "Snapshots will be sent once every N web hits" -msgstr "Instantâneos serão enviados uma vez a cada N acessos da internet" - -#: actions/siteadminpanel.php:307 -msgid "Report URL" -msgstr "URL para relatórios" - -#: actions/siteadminpanel.php:308 -msgid "Snapshots will be sent to this URL" -msgstr "Instantâneos serão enviados para esta URL" - -#: actions/siteadminpanel.php:315 +#: actions/siteadminpanel.php:271 msgid "Limits" msgstr "Limites" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Text limit" msgstr "Limite de texto" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Maximum number of characters for notices." msgstr "Número máximo de caracteres nas notas." -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "Dupe limit" msgstr "Limite de duplicações" -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" "Quanto tempo os utilizadores terão de esperar (em segundos) para publicar a " "mesma coisa outra vez." +#: actions/sitenoticeadminpanel.php:56 +#, fuzzy +msgid "Site Notice" +msgstr "Aviso do site" + +#: actions/sitenoticeadminpanel.php:67 +#, fuzzy +msgid "Edit site-wide message" +msgstr "Mensagem nova" + +#: actions/sitenoticeadminpanel.php:103 +#, fuzzy +msgid "Unable to save site notice." +msgstr "Não foi possível gravar as configurações do estilo." + +#: actions/sitenoticeadminpanel.php:113 +msgid "Max length for the site-wide notice is 255 chars" +msgstr "" + +#: actions/sitenoticeadminpanel.php:176 +#, fuzzy +msgid "Site notice text" +msgstr "Aviso do site" + +#: actions/sitenoticeadminpanel.php:178 +msgid "Site-wide notice text (255 chars max; HTML okay)" +msgstr "" + +#: actions/sitenoticeadminpanel.php:198 +#, fuzzy +msgid "Save site notice" +msgstr "Aviso do site" + #: actions/smssettings.php:58 msgid "SMS settings" msgstr "Configurações de SMS" @@ -3997,6 +4016,66 @@ msgstr "" msgid "No code entered" msgstr "Nenhum código introduzido" +#. TRANS: Menu item for site administration +#: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 +#: lib/adminpanelaction.php:406 +msgid "Snapshots" +msgstr "Instantâneos" + +#: actions/snapshotadminpanel.php:65 +#, fuzzy +msgid "Manage snapshot configuration" +msgstr "Alterar a configuração do site" + +#: actions/snapshotadminpanel.php:127 +msgid "Invalid snapshot run value." +msgstr "Valor de criação do instantâneo é inválido." + +#: actions/snapshotadminpanel.php:133 +msgid "Snapshot frequency must be a number." +msgstr "Frequência dos instantâneos estatísticos tem de ser um número." + +#: actions/snapshotadminpanel.php:144 +msgid "Invalid snapshot report URL." +msgstr "URL para onde enviar instantâneos é inválida" + +#: actions/snapshotadminpanel.php:200 +msgid "Randomly during Web hit" +msgstr "Aleatoriamente, durante o acesso pela internet" + +#: actions/snapshotadminpanel.php:201 +msgid "In a scheduled job" +msgstr "Num processo agendado" + +#: actions/snapshotadminpanel.php:206 +msgid "Data snapshots" +msgstr "Instantâneos dos dados" + +#: actions/snapshotadminpanel.php:208 +msgid "When to send statistical data to status.net servers" +msgstr "Quando enviar dados estatísticos para os servidores do status.net" + +#: actions/snapshotadminpanel.php:217 +msgid "Frequency" +msgstr "Frequência" + +#: actions/snapshotadminpanel.php:218 +msgid "Snapshots will be sent once every N web hits" +msgstr "Instantâneos serão enviados uma vez a cada N acessos da internet" + +#: actions/snapshotadminpanel.php:226 +msgid "Report URL" +msgstr "URL para relatórios" + +#: actions/snapshotadminpanel.php:227 +msgid "Snapshots will be sent to this URL" +msgstr "Instantâneos serão enviados para esta URL" + +#: actions/snapshotadminpanel.php:248 +#, fuzzy +msgid "Save snapshot settings" +msgstr "Gravar configurações do site" + #: actions/subedit.php:70 msgid "You are not subscribed to that profile." msgstr "Não subscreveu esse perfil." @@ -4206,7 +4285,7 @@ msgstr "O pedido não tem a identificação do perfil." msgid "Unsubscribed" msgstr "Subscrição cancelada" -#: actions/updateprofile.php:62 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -4410,16 +4489,22 @@ msgstr "Membros do grupo %1$s, página %2$d" msgid "Search for more groups" msgstr "Procurar mais grupos" -#: actions/usergroups.php:153 +#: actions/usergroups.php:157 #, php-format msgid "%s is not a member of any group." msgstr "%s não é membro de nenhum grupo." -#: actions/usergroups.php:158 +#: actions/usergroups.php:162 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "Tente [pesquisar grupos](%%action.groupsearch%%) e juntar-se a eles." +#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: lib/atomusernoticefeed.php:72 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "Actualizações de %1#s a %2$s!" + #: actions/version.php:73 #, php-format msgid "StatusNet %s" @@ -4474,7 +4559,7 @@ msgstr "" msgid "Plugins" msgstr "Plugins" -#: actions/version.php:196 lib/action.php:778 +#: actions/version.php:196 lib/action.php:767 msgid "Version" msgstr "Versão" @@ -4544,22 +4629,22 @@ msgstr "Não foi possível actualizar a mensagem com a nova URI." msgid "DB error inserting hashtag: %s" msgstr "Erro na base de dados ao inserir a marca: %s" -#: classes/Notice.php:239 +#: classes/Notice.php:241 msgid "Problem saving notice. Too long." msgstr "Problema na gravação da nota. Demasiado longa." -#: classes/Notice.php:243 +#: classes/Notice.php:245 msgid "Problem saving notice. Unknown user." msgstr "Problema na gravação da nota. Utilizador desconhecido." -#: classes/Notice.php:248 +#: classes/Notice.php:250 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" "Demasiadas notas, demasiado rápido; descanse e volte a publicar daqui a " "alguns minutos." -#: classes/Notice.php:254 +#: classes/Notice.php:256 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." @@ -4567,20 +4652,20 @@ msgstr "" "Demasiadas mensagens duplicadas, demasiado rápido; descanse e volte a " "publicar daqui a alguns minutos." -#: classes/Notice.php:260 +#: classes/Notice.php:262 msgid "You are banned from posting notices on this site." msgstr "Está proibido de publicar notas neste site." -#: classes/Notice.php:326 classes/Notice.php:352 +#: classes/Notice.php:328 classes/Notice.php:354 msgid "Problem saving notice." msgstr "Problema na gravação da nota." -#: classes/Notice.php:911 +#: classes/Notice.php:927 #, fuzzy msgid "Problem saving group inbox." msgstr "Problema na gravação da nota." -#: classes/Notice.php:1442 +#: classes/Notice.php:1459 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -4605,7 +4690,12 @@ msgstr "Não subscrito!" msgid "Couldn't delete self-subscription." msgstr "Não foi possível apagar a auto-subscrição." -#: classes/Subscription.php:179 lib/subs.php:69 +#: classes/Subscription.php:190 +#, fuzzy +msgid "Couldn't delete subscription OMB token." +msgstr "Não foi possível apagar a subscrição." + +#: classes/Subscription.php:201 lib/subs.php:69 msgid "Couldn't delete subscription." msgstr "Não foi possível apagar a subscrição." @@ -4614,20 +4704,20 @@ msgstr "Não foi possível apagar a subscrição." msgid "Welcome to %1$s, @%2$s!" msgstr "%1$s dá-lhe as boas-vindas, @%2$s!" -#: classes/User_group.php:462 +#: classes/User_group.php:477 msgid "Could not create group." msgstr "Não foi possível criar o grupo." -#: classes/User_group.php:471 +#: classes/User_group.php:486 #, fuzzy msgid "Could not set group URI." msgstr "Não foi possível configurar membros do grupo." -#: classes/User_group.php:492 +#: classes/User_group.php:507 msgid "Could not set group membership." msgstr "Não foi possível configurar membros do grupo." -#: classes/User_group.php:506 +#: classes/User_group.php:521 #, fuzzy msgid "Could not save local group info." msgstr "Não foi possível gravar a subscrição." @@ -4669,194 +4759,188 @@ msgstr "%1$s (%2$s)" msgid "Untitled page" msgstr "Página sem título" -#: lib/action.php:433 +#: lib/action.php:424 msgid "Primary site navigation" msgstr "Navegação primária deste site" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:439 +#: lib/action.php:430 #, fuzzy msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Perfil pessoal e notas dos amigos" -#: lib/action.php:442 +#: lib/action.php:433 #, fuzzy msgctxt "MENU" msgid "Personal" msgstr "Pessoal" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:444 +#: lib/action.php:435 #, fuzzy msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Altere o seu endereço electrónico, avatar, senha, perfil" -#: lib/action.php:447 -#, fuzzy -msgctxt "MENU" -msgid "Account" -msgstr "Conta" - #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:450 +#: lib/action.php:440 #, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Ligar aos serviços" -#: lib/action.php:453 +#: lib/action.php:443 #, fuzzy -msgctxt "MENU" msgid "Connect" msgstr "Ligar" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:457 +#: lib/action.php:446 #, fuzzy msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Alterar a configuração do site" -#: lib/action.php:460 +#: lib/action.php:449 #, fuzzy msgctxt "MENU" msgid "Admin" msgstr "Gestor" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:464 +#: lib/action.php:453 #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Convidar amigos e colegas para se juntarem a si em %s" -#: lib/action.php:467 +#: lib/action.php:456 #, fuzzy msgctxt "MENU" msgid "Invite" msgstr "Convidar" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:473 +#: lib/action.php:462 #, fuzzy msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Terminar esta sessão" -#: lib/action.php:476 +#: lib/action.php:465 #, fuzzy msgctxt "MENU" msgid "Logout" msgstr "Sair" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:481 +#: lib/action.php:470 #, fuzzy msgctxt "TOOLTIP" msgid "Create an account" msgstr "Criar uma conta" -#: lib/action.php:484 +#: lib/action.php:473 #, fuzzy msgctxt "MENU" msgid "Register" msgstr "Registar" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:487 +#: lib/action.php:476 #, fuzzy msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Iniciar uma sessão" -#: lib/action.php:490 +#: lib/action.php:479 #, fuzzy msgctxt "MENU" msgid "Login" msgstr "Entrar" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:493 +#: lib/action.php:482 #, fuzzy msgctxt "TOOLTIP" msgid "Help me!" msgstr "Ajudem-me!" -#: lib/action.php:496 +#: lib/action.php:485 #, fuzzy msgctxt "MENU" msgid "Help" msgstr "Ajuda" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:499 +#: lib/action.php:488 #, fuzzy msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Procurar pessoas ou pesquisar texto" -#: lib/action.php:502 +#: lib/action.php:491 #, fuzzy msgctxt "MENU" msgid "Search" msgstr "Pesquisa" #. TRANS: DT element for site notice. String is hidden in default CSS. -#: lib/action.php:524 +#. TRANS: Menu item for site administration +#: lib/action.php:513 lib/adminpanelaction.php:398 msgid "Site notice" msgstr "Aviso do site" -#: lib/action.php:590 +#: lib/action.php:579 msgid "Local views" msgstr "Vistas locais" -#: lib/action.php:656 +#: lib/action.php:645 msgid "Page notice" msgstr "Aviso da página" -#: lib/action.php:758 +#: lib/action.php:747 msgid "Secondary site navigation" msgstr "Navegação secundária deste site" -#: lib/action.php:763 +#: lib/action.php:752 msgid "Help" msgstr "Ajuda" -#: lib/action.php:765 +#: lib/action.php:754 msgid "About" msgstr "Sobre" -#: lib/action.php:767 +#: lib/action.php:756 msgid "FAQ" msgstr "FAQ" -#: lib/action.php:771 +#: lib/action.php:760 msgid "TOS" msgstr "Termos" -#: lib/action.php:774 +#: lib/action.php:763 msgid "Privacy" msgstr "Privacidade" -#: lib/action.php:776 +#: lib/action.php:765 msgid "Source" msgstr "Código" -#: lib/action.php:780 +#: lib/action.php:769 msgid "Contact" msgstr "Contacto" -#: lib/action.php:782 +#: lib/action.php:771 msgid "Badge" msgstr "Emblema" -#: lib/action.php:810 +#: lib/action.php:799 msgid "StatusNet software license" msgstr "Licença de software do StatusNet" -#: lib/action.php:813 +#: lib/action.php:802 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4865,12 +4949,12 @@ msgstr "" "**%%site.name%%** é um serviço de microblogues disponibilizado por [%%site." "broughtby%%](%%site.broughtbyurl%%). " -#: lib/action.php:815 +#: lib/action.php:804 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** é um serviço de microblogues. " -#: lib/action.php:817 +#: lib/action.php:806 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4881,53 +4965,53 @@ msgstr "" "disponibilizado nos termos da [GNU Affero General Public License](http://www." "fsf.org/licensing/licenses/agpl-3.0.html)." -#: lib/action.php:832 +#: lib/action.php:821 msgid "Site content license" msgstr "Licença de conteúdos do site" -#: lib/action.php:837 +#: lib/action.php:826 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:842 +#: lib/action.php:831 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:845 +#: lib/action.php:834 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" -#: lib/action.php:858 +#: lib/action.php:847 msgid "All " msgstr "Tudo " -#: lib/action.php:864 +#: lib/action.php:853 msgid "license." msgstr "licença." -#: lib/action.php:1163 +#: lib/action.php:1152 msgid "Pagination" msgstr "Paginação" -#: lib/action.php:1172 +#: lib/action.php:1161 msgid "After" msgstr "Posteriores" -#: lib/action.php:1180 +#: lib/action.php:1169 msgid "Before" msgstr "Anteriores" -#: lib/activity.php:449 +#: lib/activity.php:453 msgid "Can't handle remote content yet." msgstr "" -#: lib/activity.php:477 +#: lib/activity.php:481 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activity.php:481 +#: lib/activity.php:485 msgid "Can't handle embedded Base64 content yet." msgstr "" @@ -4942,94 +5026,83 @@ msgid "Changes to that panel are not allowed." msgstr "Não são permitidas alterações a esse painel." #. TRANS: Client error message -#: lib/adminpanelaction.php:211 +#: lib/adminpanelaction.php:229 msgid "showForm() not implemented." msgstr "showForm() não implementado." #. TRANS: Client error message -#: lib/adminpanelaction.php:241 +#: lib/adminpanelaction.php:259 msgid "saveSettings() not implemented." msgstr "saveSettings() não implementado." #. TRANS: Client error message -#: lib/adminpanelaction.php:265 +#: lib/adminpanelaction.php:283 msgid "Unable to delete design setting." msgstr "Não foi possível apagar a configuração do estilo." #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:330 +#: lib/adminpanelaction.php:348 msgid "Basic site configuration" msgstr "Configuração básica do site" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:332 +#: lib/adminpanelaction.php:350 #, fuzzy msgctxt "MENU" msgid "Site" msgstr "Site" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:338 +#: lib/adminpanelaction.php:356 msgid "Design configuration" msgstr "Configuração do estilo" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:340 +#: lib/adminpanelaction.php:358 #, fuzzy msgctxt "MENU" msgid "Design" msgstr "Estilo" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:346 +#: lib/adminpanelaction.php:364 #, fuzzy msgid "User configuration" msgstr "Configuração das localizações" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:348 -#, fuzzy -msgctxt "MENU" +#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 msgid "User" msgstr "Utilizador" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:354 +#: lib/adminpanelaction.php:372 #, fuzzy msgid "Access configuration" msgstr "Configuração do estilo" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:356 -#, fuzzy -msgctxt "MENU" -msgid "Access" -msgstr "Acesso" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:362 +#: lib/adminpanelaction.php:380 msgid "Paths configuration" msgstr "Configuração das localizações" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:364 -#, fuzzy -msgctxt "MENU" -msgid "Paths" -msgstr "Localizações" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:370 +#: lib/adminpanelaction.php:388 #, fuzzy msgid "Sessions configuration" msgstr "Configuração do estilo" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:372 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:396 #, fuzzy -msgctxt "MENU" -msgid "Sessions" -msgstr "Sessões" +msgid "Edit site notice" +msgstr "Aviso do site" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:404 +#, fuzzy +msgid "Snapshots configuration" +msgstr "Configuração das localizações" #: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." @@ -5562,6 +5635,11 @@ msgstr "Escolha uma categoria para reduzir a lista" msgid "Go" msgstr "Prosseguir" +#: lib/grantroleform.php:91 +#, php-format +msgid "Grant this user the \"%s\" role" +msgstr "" + #: lib/groupeditform.php:163 msgid "URL of the homepage or blog of the group or topic" msgstr "URL da página ou do blogue, deste grupo ou assunto" @@ -6178,10 +6256,6 @@ msgstr "Respostas" msgid "Favorites" msgstr "Favoritas" -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "Utilizador" - #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "Recebidas" @@ -6207,7 +6281,7 @@ msgstr "Categorias nas notas de %s" msgid "Unknown" msgstr "Desconhecida" -#: lib/profileaction.php:109 lib/profileaction.php:192 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:194 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Subscrições" @@ -6215,23 +6289,23 @@ msgstr "Subscrições" msgid "All subscriptions" msgstr "Todas as subscrições" -#: lib/profileaction.php:140 lib/profileaction.php:201 lib/subgroupnav.php:90 +#: lib/profileaction.php:142 lib/profileaction.php:203 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Subscritores" -#: lib/profileaction.php:157 +#: lib/profileaction.php:159 msgid "All subscribers" msgstr "Todos os subscritores" -#: lib/profileaction.php:178 +#: lib/profileaction.php:180 msgid "User ID" msgstr "ID do utilizador" -#: lib/profileaction.php:183 +#: lib/profileaction.php:185 msgid "Member since" msgstr "Membro desde" -#: lib/profileaction.php:245 +#: lib/profileaction.php:247 msgid "All groups" msgstr "Todos os grupos" @@ -6271,7 +6345,12 @@ msgstr "Repetir esta nota?" msgid "Repeat this notice" msgstr "Repetir esta nota" -#: lib/router.php:668 +#: lib/revokeroleform.php:91 +#, fuzzy, php-format +msgid "Revoke the \"%s\" role from this user" +msgstr "Bloquear acesso deste utilizador a este grupo" + +#: lib/router.php:671 msgid "No single user defined for single-user mode." msgstr "" @@ -6425,47 +6504,64 @@ msgstr "Mensagem" msgid "Moderate" msgstr "Moderar" -#: lib/util.php:1013 +#: lib/userprofile.php:352 +#, fuzzy +msgid "User role" +msgstr "Perfil" + +#: lib/userprofile.php:354 +#, fuzzy +msgctxt "role" +msgid "Administrator" +msgstr "Gestores" + +#: lib/userprofile.php:355 +#, fuzzy +msgctxt "role" +msgid "Moderator" +msgstr "Moderar" + +#: lib/util.php:1015 msgid "a few seconds ago" msgstr "há alguns segundos" -#: lib/util.php:1015 +#: lib/util.php:1017 msgid "about a minute ago" msgstr "há cerca de um minuto" -#: lib/util.php:1017 +#: lib/util.php:1019 #, php-format msgid "about %d minutes ago" msgstr "há cerca de %d minutos" -#: lib/util.php:1019 +#: lib/util.php:1021 msgid "about an hour ago" msgstr "há cerca de uma hora" -#: lib/util.php:1021 +#: lib/util.php:1023 #, php-format msgid "about %d hours ago" msgstr "há cerca de %d horas" -#: lib/util.php:1023 +#: lib/util.php:1025 msgid "about a day ago" msgstr "há cerca de um dia" -#: lib/util.php:1025 +#: lib/util.php:1027 #, php-format msgid "about %d days ago" msgstr "há cerca de %d dias" -#: lib/util.php:1027 +#: lib/util.php:1029 msgid "about a month ago" msgstr "há cerca de um mês" -#: lib/util.php:1029 +#: lib/util.php:1031 #, php-format msgid "about %d months ago" msgstr "há cerca de %d meses" -#: lib/util.php:1031 +#: lib/util.php:1033 msgid "about a year ago" msgstr "há cerca de um ano" diff --git a/locale/pt_BR/LC_MESSAGES/statusnet.po b/locale/pt_BR/LC_MESSAGES/statusnet.po index 041a2d4a3f..7ba00b7172 100644 --- a/locale/pt_BR/LC_MESSAGES/statusnet.po +++ b/locale/pt_BR/LC_MESSAGES/statusnet.po @@ -11,19 +11,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-02 21:02+0000\n" -"PO-Revision-Date: 2010-03-02 21:03:41+0000\n" +"POT-Creation-Date: 2010-03-04 18:55+0000\n" +"PO-Revision-Date: 2010-03-04 18:57:07+0000\n" "Language-Team: Brazilian Portuguese\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. TRANS: Page title -#: actions/accessadminpanel.php:55 +#. TRANS: Menu item for site administration +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 msgid "Access" msgstr "Acesso" @@ -120,7 +121,7 @@ msgstr "%1$s e amigos, pág. %2$d" #. TRANS: Page title. %1$s is user nickname #. TRANS: H1 text. %1$s is user nickname -#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -184,7 +185,7 @@ msgstr "" "atenção de %s ou publicar uma mensagem para sua atenção." #. TRANS: H1 text -#: actions/all.php:174 +#: actions/all.php:178 msgid "You and friends" msgstr "Você e amigos" @@ -211,11 +212,11 @@ msgstr "Atualizações de %1$s e amigos no %2$s!" #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 -#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 +#: actions/apitimelinegroup.php:160 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:148 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 msgid "API method not found." msgstr "O método da API não foi encontrado!" @@ -584,7 +585,7 @@ msgstr "" "fornecer acesso à sua conta %4$s somente para terceiros nos quais você " "confia." -#: actions/apioauthauthorize.php:310 +#: actions/apioauthauthorize.php:310 lib/action.php:438 msgid "Account" msgstr "Conta" @@ -671,18 +672,6 @@ msgstr "%1$s / Favoritas de %2$s" msgid "%1$s updates favorited by %2$s / %2$s." msgstr "%1$s marcadas como favoritas por %2$s / %2$s." -#: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:138 actions/userrss.php:90 -#, php-format -msgid "%s timeline" -msgstr "Mensagens de %s" - -#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 -#: actions/userrss.php:92 -#, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "Mensagens de %1$s no %2$s!" - #: actions/apitimelinementions.php:117 #, php-format msgid "%1$s / Updates mentioning %2$s" @@ -693,12 +682,12 @@ msgstr "%1$s / Mensagens mencionando %2$s" msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "%1$s mensagens em resposta a mensagens de %2$s / %3$s." -#: actions/apitimelinepublic.php:111 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "Mensagens públicas de %s" -#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "%s mensagens de todo mundo!" @@ -946,7 +935,7 @@ msgid "Conversation" msgstr "Conversa" #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:216 lib/searchgroupnav.php:82 +#: lib/profileaction.php:218 lib/searchgroupnav.php:82 msgid "Notices" msgstr "Mensagens" @@ -965,7 +954,7 @@ msgstr "Você não é o dono desta aplicação." #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1228 +#: lib/action.php:1217 msgid "There was a problem with your session token." msgstr "Ocorreu um problema com o seu token de sessão." @@ -1161,8 +1150,9 @@ msgstr "Restaura de volta ao padrão" #: actions/designadminpanel.php:586 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 +#: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:208 #: actions/tagother.php:154 actions/useradminpanel.php:294 #: lib/applicationeditform.php:333 lib/applicationeditform.php:334 #: lib/designsettings.php:256 lib/groupeditform.php:202 @@ -1278,7 +1268,7 @@ msgstr "descrição muito extensa (máximo %d caracteres)." msgid "Could not update group." msgstr "Não foi possível atualizar o grupo." -#: actions/editgroup.php:264 classes/User_group.php:478 +#: actions/editgroup.php:264 classes/User_group.php:493 msgid "Could not create aliases." msgstr "Não foi possível criar os apelidos." @@ -1404,7 +1394,7 @@ msgid "Cannot normalize that email address" msgstr "Não foi possível normalizar este endereço de e-mail" #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:143 +#: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Não é um endereço de e-mail válido." @@ -1598,6 +1588,25 @@ msgstr "Esse arquivo não existe." msgid "Cannot read file." msgstr "Não foi possível ler o arquivo." +#: actions/grantrole.php:62 actions/revokerole.php:62 +#, fuzzy +msgid "Invalid role." +msgstr "Token inválido." + +#: actions/grantrole.php:66 actions/revokerole.php:66 +msgid "This role is reserved and cannot be set." +msgstr "" + +#: actions/grantrole.php:75 +#, fuzzy +msgid "You cannot grant user roles on this site." +msgstr "Você não pode colocar usuários deste site em isolamento." + +#: actions/grantrole.php:82 +#, fuzzy +msgid "User already has this role." +msgstr "O usuário já está silenciado." + #: actions/groupblock.php:71 actions/groupunblock.php:71 #: actions/makeadmin.php:71 actions/subedit.php:46 #: lib/profileformaction.php:70 @@ -1746,12 +1755,18 @@ msgstr "Tornar administrador" msgid "Make this user an admin" msgstr "Torna este usuário um administrador" +#: actions/grouprss.php:138 actions/userrss.php:90 +#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#, php-format +msgid "%s timeline" +msgstr "Mensagens de %s" + #: actions/grouprss.php:140 #, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Atualizações dos membros de %1$s no %2$s!" -#: actions/groups.php:62 lib/profileaction.php:210 lib/profileaction.php:230 +#: actions/groups.php:62 lib/profileaction.php:212 lib/profileaction.php:232 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" msgstr "Grupos" @@ -2381,8 +2396,8 @@ msgstr "tipo de conteúdo " msgid "Only " msgstr "Apenas " -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 -#: lib/apiaction.php:1068 lib/apiaction.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1042 +#: lib/apiaction.php:1070 lib/apiaction.php:1179 msgid "Not a supported data format." msgstr "Não é um formato de dados suportado." @@ -2523,7 +2538,8 @@ msgstr "Não é possível salvar a nova senha." msgid "Password saved." msgstr "A senha foi salva." -#: actions/pathsadminpanel.php:59 +#. TRANS: Menu item for site administration +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 msgid "Paths" msgstr "Caminhos" @@ -2644,7 +2660,7 @@ msgstr "Diretório das imagens de fundo" msgid "SSL" msgstr "SSL" -#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 +#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202 msgid "Never" msgstr "Nunca" @@ -2699,11 +2715,11 @@ msgstr "Não é uma etiqueta de pessoa válida: %s" msgid "Users self-tagged with %1$s - page %2$d" msgstr "Usuários auto-etiquetados com %1$s - pág. %2$d" -#: actions/postnotice.php:84 +#: actions/postnotice.php:95 msgid "Invalid notice content" msgstr "O conteúdo da mensagem é inválido" -#: actions/postnotice.php:90 +#: actions/postnotice.php:101 #, php-format msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" @@ -2784,7 +2800,7 @@ msgstr "" "Suas etiquetas (letras, números, -, ., e _), separadas por vírgulas ou " "espaços" -#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 +#: actions/profilesettings.php:151 msgid "Language" msgstr "Idioma" @@ -2811,7 +2827,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "A descrição é muito extensa (máximo %d caracteres)." -#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:151 msgid "Timezone not selected." msgstr "O fuso horário não foi selecionado." @@ -3134,7 +3150,7 @@ msgid "Same as password above. Required." msgstr "Igual à senha acima. Obrigatório." #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 msgid "Email" msgstr "E-mail" @@ -3240,7 +3256,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "URL do seu perfil em outro serviço de microblog compatível" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:368 +#: lib/userprofile.php:394 msgid "Subscribe" msgstr "Assinar" @@ -3344,6 +3360,16 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "Respostas para %1$s no %2$s" +#: actions/revokerole.php:75 +#, fuzzy +msgid "You cannot revoke user roles on this site." +msgstr "Você não pode silenciar os usuários neste site." + +#: actions/revokerole.php:82 +#, fuzzy +msgid "User doesn't have this role." +msgstr "Usuário sem um perfil correspondente" + #: actions/rsd.php:146 actions/version.php:157 msgid "StatusNet" msgstr "StatusNet" @@ -3356,7 +3382,9 @@ msgstr "Você não pode colocar usuários deste site em isolamento." msgid "User is already sandboxed." msgstr "O usuário já está em isolamento." +#. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:390 msgid "Sessions" msgstr "Sessões" @@ -3380,7 +3408,7 @@ msgstr "Depuração da sessão" msgid "Turn on debugging output for sessions." msgstr "Ativa a saída de depuração para as sessões." -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "Salvar as configurações do site" @@ -3411,8 +3439,8 @@ msgstr "Organização" msgid "Description" msgstr "Descrição" -#: actions/showapplication.php:192 actions/showgroup.php:437 -#: lib/profileaction.php:174 +#: actions/showapplication.php:192 actions/showgroup.php:438 +#: lib/profileaction.php:176 msgid "Statistics" msgstr "Estatísticas" @@ -3554,45 +3582,45 @@ msgstr "Apelidos" msgid "Group actions" msgstr "Ações do grupo" -#: actions/showgroup.php:336 +#: actions/showgroup.php:337 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Fonte de mensagens do grupo %s (RSS 1.0)" -#: actions/showgroup.php:342 +#: actions/showgroup.php:343 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Fonte de mensagens do grupo %s (RSS 2.0)" -#: actions/showgroup.php:348 +#: actions/showgroup.php:349 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "Fonte de mensagens do grupo %s (Atom)" -#: actions/showgroup.php:353 +#: actions/showgroup.php:354 #, php-format msgid "FOAF for %s group" msgstr "FOAF para o grupo %s" -#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 +#: actions/showgroup.php:390 actions/showgroup.php:447 lib/groupnav.php:91 msgid "Members" msgstr "Membros" -#: actions/showgroup.php:394 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 +#: actions/showgroup.php:395 lib/profileaction.php:117 +#: lib/profileaction.php:150 lib/profileaction.php:238 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(Nenhum)" -#: actions/showgroup.php:400 +#: actions/showgroup.php:401 msgid "All members" msgstr "Todos os membros" -#: actions/showgroup.php:440 +#: actions/showgroup.php:441 msgid "Created" msgstr "Criado" -#: actions/showgroup.php:456 +#: actions/showgroup.php:457 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3608,7 +3636,7 @@ msgstr "" "para se tornar parte deste grupo e muito mais! ([Saiba mais](%%%%doc.help%%%" "%))" -#: actions/showgroup.php:462 +#: actions/showgroup.php:463 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3621,7 +3649,7 @@ msgstr "" "[StatusNet](http://status.net/). Seus membros compartilham mensagens curtas " "sobre suas vidas e interesses. " -#: actions/showgroup.php:490 +#: actions/showgroup.php:491 msgid "Admins" msgstr "Administradores" @@ -3745,148 +3773,139 @@ msgid "User is already silenced." msgstr "O usuário já está silenciado." #: actions/siteadminpanel.php:69 -msgid "Basic settings for this StatusNet site." +#, fuzzy +msgid "Basic settings for this StatusNet site" msgstr "Configurações básicas para esta instância do StatusNet." -#: actions/siteadminpanel.php:132 +#: actions/siteadminpanel.php:133 msgid "Site name must have non-zero length." msgstr "Você deve digitar alguma coisa para o nome do site." -#: actions/siteadminpanel.php:140 +#: actions/siteadminpanel.php:141 msgid "You must have a valid contact email address." msgstr "Você deve ter um endereço de e-mail para contato válido." -#: actions/siteadminpanel.php:158 +#: actions/siteadminpanel.php:159 #, php-format msgid "Unknown language \"%s\"." msgstr "Idioma \"%s\" desconhecido." #: actions/siteadminpanel.php:165 -msgid "Invalid snapshot report URL." -msgstr "A URL para o envio das estatísticas é inválida." - -#: actions/siteadminpanel.php:171 -msgid "Invalid snapshot run value." -msgstr "O valor de execução da obtenção das estatísticas é inválido." - -#: actions/siteadminpanel.php:177 -msgid "Snapshot frequency must be a number." -msgstr "A frequência de geração de estatísticas deve ser um número." - -#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "O comprimento máximo do texto é de 140 caracteres." -#: actions/siteadminpanel.php:189 +#: actions/siteadminpanel.php:171 msgid "Dupe limit must 1 or more seconds." msgstr "O limite de duplicatas deve ser de um ou mais segundos." -#: actions/siteadminpanel.php:239 +#: actions/siteadminpanel.php:221 msgid "General" msgstr "Geral" -#: actions/siteadminpanel.php:242 +#: actions/siteadminpanel.php:224 msgid "Site name" msgstr "Nome do site" -#: actions/siteadminpanel.php:243 +#: actions/siteadminpanel.php:225 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "O nome do seu site, por exemplo \"Microblog da Sua Empresa\"" -#: actions/siteadminpanel.php:247 +#: actions/siteadminpanel.php:229 msgid "Brought by" msgstr "Disponibilizado por" -#: actions/siteadminpanel.php:248 +#: actions/siteadminpanel.php:230 msgid "Text used for credits link in footer of each page" msgstr "Texto utilizado para o link de créditos no rodapé de cada página" -#: actions/siteadminpanel.php:252 +#: actions/siteadminpanel.php:234 msgid "Brought by URL" msgstr "URL do disponibilizado por" -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:235 msgid "URL used for credits link in footer of each page" msgstr "URL utilizada para o link de créditos no rodapé de cada página" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:239 msgid "Contact email address for your site" msgstr "Endereço de e-mail para contatos do seu site" -#: actions/siteadminpanel.php:263 +#: actions/siteadminpanel.php:245 msgid "Local" msgstr "Local" -#: actions/siteadminpanel.php:274 +#: actions/siteadminpanel.php:256 msgid "Default timezone" msgstr "Fuso horário padrão" -#: actions/siteadminpanel.php:275 +#: actions/siteadminpanel.php:257 msgid "Default timezone for the site; usually UTC." msgstr "Fuso horário padrão para o seu site; geralmente UTC." -#: actions/siteadminpanel.php:281 -msgid "Default site language" +#: actions/siteadminpanel.php:262 +#, fuzzy +msgid "Default language" msgstr "Idioma padrão do site" -#: actions/siteadminpanel.php:289 -msgid "Snapshots" -msgstr "Estatísticas" +#: actions/siteadminpanel.php:263 +msgid "Site language when autodetection from browser settings is not available" +msgstr "" -#: actions/siteadminpanel.php:292 -msgid "Randomly during Web hit" -msgstr "Aleatoriamente durante o funcionamento" - -#: actions/siteadminpanel.php:293 -msgid "In a scheduled job" -msgstr "Em horários pré-definidos" - -#: actions/siteadminpanel.php:295 -msgid "Data snapshots" -msgstr "Estatísticas dos dados" - -#: actions/siteadminpanel.php:296 -msgid "When to send statistical data to status.net servers" -msgstr "Quando enviar dados estatísticos para os servidores status.net" - -#: actions/siteadminpanel.php:301 -msgid "Frequency" -msgstr "Frequentemente" - -#: actions/siteadminpanel.php:302 -msgid "Snapshots will be sent once every N web hits" -msgstr "As estatísticas serão enviadas uma vez a cada N usos da web" - -#: actions/siteadminpanel.php:307 -msgid "Report URL" -msgstr "URL para envio" - -#: actions/siteadminpanel.php:308 -msgid "Snapshots will be sent to this URL" -msgstr "As estatísticas serão enviadas para esta URL" - -#: actions/siteadminpanel.php:315 +#: actions/siteadminpanel.php:271 msgid "Limits" msgstr "Limites" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Text limit" msgstr "Limite do texto" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Maximum number of characters for notices." msgstr "Número máximo de caracteres para as mensagens." -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "Dupe limit" msgstr "Limite de duplicatas" -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" "Quanto tempo (em segundos) os usuários devem esperar para publicar a mesma " "coisa novamente." +#: actions/sitenoticeadminpanel.php:56 +#, fuzzy +msgid "Site Notice" +msgstr "Mensagem do site" + +#: actions/sitenoticeadminpanel.php:67 +#, fuzzy +msgid "Edit site-wide message" +msgstr "Nova mensagem" + +#: actions/sitenoticeadminpanel.php:103 +#, fuzzy +msgid "Unable to save site notice." +msgstr "Não foi possível salvar suas configurações de aparência." + +#: actions/sitenoticeadminpanel.php:113 +msgid "Max length for the site-wide notice is 255 chars" +msgstr "" + +#: actions/sitenoticeadminpanel.php:176 +#, fuzzy +msgid "Site notice text" +msgstr "Mensagem do site" + +#: actions/sitenoticeadminpanel.php:178 +msgid "Site-wide notice text (255 chars max; HTML okay)" +msgstr "" + +#: actions/sitenoticeadminpanel.php:198 +#, fuzzy +msgid "Save site notice" +msgstr "Mensagem do site" + #: actions/smssettings.php:58 msgid "SMS settings" msgstr "Configuração do SMS" @@ -3985,6 +4004,66 @@ msgstr "" msgid "No code entered" msgstr "Não foi digitado nenhum código" +#. TRANS: Menu item for site administration +#: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 +#: lib/adminpanelaction.php:406 +msgid "Snapshots" +msgstr "Estatísticas" + +#: actions/snapshotadminpanel.php:65 +#, fuzzy +msgid "Manage snapshot configuration" +msgstr "Mude as configurações do site" + +#: actions/snapshotadminpanel.php:127 +msgid "Invalid snapshot run value." +msgstr "O valor de execução da obtenção das estatísticas é inválido." + +#: actions/snapshotadminpanel.php:133 +msgid "Snapshot frequency must be a number." +msgstr "A frequência de geração de estatísticas deve ser um número." + +#: actions/snapshotadminpanel.php:144 +msgid "Invalid snapshot report URL." +msgstr "A URL para o envio das estatísticas é inválida." + +#: actions/snapshotadminpanel.php:200 +msgid "Randomly during Web hit" +msgstr "Aleatoriamente durante o funcionamento" + +#: actions/snapshotadminpanel.php:201 +msgid "In a scheduled job" +msgstr "Em horários pré-definidos" + +#: actions/snapshotadminpanel.php:206 +msgid "Data snapshots" +msgstr "Estatísticas dos dados" + +#: actions/snapshotadminpanel.php:208 +msgid "When to send statistical data to status.net servers" +msgstr "Quando enviar dados estatísticos para os servidores status.net" + +#: actions/snapshotadminpanel.php:217 +msgid "Frequency" +msgstr "Frequentemente" + +#: actions/snapshotadminpanel.php:218 +msgid "Snapshots will be sent once every N web hits" +msgstr "As estatísticas serão enviadas uma vez a cada N usos da web" + +#: actions/snapshotadminpanel.php:226 +msgid "Report URL" +msgstr "URL para envio" + +#: actions/snapshotadminpanel.php:227 +msgid "Snapshots will be sent to this URL" +msgstr "As estatísticas serão enviadas para esta URL" + +#: actions/snapshotadminpanel.php:248 +#, fuzzy +msgid "Save snapshot settings" +msgstr "Salvar as configurações do site" + #: actions/subedit.php:70 msgid "You are not subscribed to that profile." msgstr "Você não está assinando esse perfil." @@ -4194,7 +4273,7 @@ msgstr "Nenhuma ID de perfil na requisição." msgid "Unsubscribed" msgstr "Cancelado" -#: actions/updateprofile.php:62 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -4399,18 +4478,24 @@ msgstr "Grupos de %1$s, pág. %2$d" msgid "Search for more groups" msgstr "Procurar por outros grupos" -#: actions/usergroups.php:153 +#: actions/usergroups.php:157 #, php-format msgid "%s is not a member of any group." msgstr "%s não é membro de nenhum grupo." -#: actions/usergroups.php:158 +#: actions/usergroups.php:162 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" "Experimente [procurar por grupos](%%action.groupsearch%%) e associar-se à " "eles." +#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: lib/atomusernoticefeed.php:72 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "Mensagens de %1$s no %2$s!" + #: actions/version.php:73 #, php-format msgid "StatusNet %s" @@ -4466,7 +4551,7 @@ msgstr "" msgid "Plugins" msgstr "Plugins" -#: actions/version.php:196 lib/action.php:778 +#: actions/version.php:196 lib/action.php:767 msgid "Version" msgstr "Versão" @@ -4532,22 +4617,22 @@ msgstr "Não foi possível atualizar a mensagem com a nova URI." msgid "DB error inserting hashtag: %s" msgstr "Erro no banco de dados durante a inserção da hashtag: %s" -#: classes/Notice.php:239 +#: classes/Notice.php:241 msgid "Problem saving notice. Too long." msgstr "Problema no salvamento da mensagem. Ela é muito extensa." -#: classes/Notice.php:243 +#: classes/Notice.php:245 msgid "Problem saving notice. Unknown user." msgstr "Problema no salvamento da mensagem. Usuário desconhecido." -#: classes/Notice.php:248 +#: classes/Notice.php:250 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." -#: classes/Notice.php:254 +#: classes/Notice.php:256 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." @@ -4555,19 +4640,19 @@ msgstr "" "Muitas mensagens duplicadas em um período curto de tempo; dê uma respirada e " "publique novamente daqui a alguns minutos." -#: classes/Notice.php:260 +#: classes/Notice.php:262 msgid "You are banned from posting notices on this site." msgstr "Você está proibido de publicar mensagens neste site." -#: classes/Notice.php:326 classes/Notice.php:352 +#: classes/Notice.php:328 classes/Notice.php:354 msgid "Problem saving notice." msgstr "Problema no salvamento da mensagem." -#: classes/Notice.php:911 +#: classes/Notice.php:927 msgid "Problem saving group inbox." msgstr "Problema no salvamento das mensagens recebidas do grupo." -#: classes/Notice.php:1442 +#: classes/Notice.php:1459 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -4592,7 +4677,12 @@ msgstr "Não assinado!" msgid "Couldn't delete self-subscription." msgstr "Não foi possível excluir a auto-assinatura." -#: classes/Subscription.php:179 lib/subs.php:69 +#: classes/Subscription.php:190 +#, fuzzy +msgid "Couldn't delete subscription OMB token." +msgstr "Não foi possível excluir a assinatura." + +#: classes/Subscription.php:201 lib/subs.php:69 msgid "Couldn't delete subscription." msgstr "Não foi possível excluir a assinatura." @@ -4601,20 +4691,20 @@ msgstr "Não foi possível excluir a assinatura." msgid "Welcome to %1$s, @%2$s!" msgstr "Bem vindo(a) a %1$s, @%2$s!" -#: classes/User_group.php:462 +#: classes/User_group.php:477 msgid "Could not create group." msgstr "Não foi possível criar o grupo." -#: classes/User_group.php:471 +#: classes/User_group.php:486 #, fuzzy msgid "Could not set group URI." msgstr "Não foi possível configurar a associação ao grupo." -#: classes/User_group.php:492 +#: classes/User_group.php:507 msgid "Could not set group membership." msgstr "Não foi possível configurar a associação ao grupo." -#: classes/User_group.php:506 +#: classes/User_group.php:521 #, fuzzy msgid "Could not save local group info." msgstr "Não foi possível salvar a assinatura." @@ -4656,194 +4746,188 @@ msgstr "%1$s - %2$s" msgid "Untitled page" msgstr "Página sem título" -#: lib/action.php:433 +#: lib/action.php:424 msgid "Primary site navigation" msgstr "Navegação primária no site" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:439 +#: lib/action.php:430 #, fuzzy msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Perfil pessoal e fluxo de mensagens dos amigos" -#: lib/action.php:442 +#: lib/action.php:433 #, fuzzy msgctxt "MENU" msgid "Personal" msgstr "Pessoal" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:444 +#: lib/action.php:435 #, fuzzy msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Mude seu e-mail, avatar, senha, perfil" -#: lib/action.php:447 -#, fuzzy -msgctxt "MENU" -msgid "Account" -msgstr "Conta" - #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:450 +#: lib/action.php:440 #, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Conecte-se a outros serviços" -#: lib/action.php:453 +#: lib/action.php:443 #, fuzzy -msgctxt "MENU" msgid "Connect" msgstr "Conectar" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:457 +#: lib/action.php:446 #, fuzzy msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Mude as configurações do site" -#: lib/action.php:460 +#: lib/action.php:449 #, fuzzy msgctxt "MENU" msgid "Admin" msgstr "Admin" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:464 +#: lib/action.php:453 #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Convide seus amigos e colegas para unir-se a você no %s" -#: lib/action.php:467 +#: lib/action.php:456 #, fuzzy msgctxt "MENU" msgid "Invite" msgstr "Convidar" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:473 +#: lib/action.php:462 #, fuzzy msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Sai do site" -#: lib/action.php:476 +#: lib/action.php:465 #, fuzzy msgctxt "MENU" msgid "Logout" msgstr "Sair" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:481 +#: lib/action.php:470 #, fuzzy msgctxt "TOOLTIP" msgid "Create an account" msgstr "Cria uma conta" -#: lib/action.php:484 +#: lib/action.php:473 #, fuzzy msgctxt "MENU" msgid "Register" msgstr "Registrar-se" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:487 +#: lib/action.php:476 #, fuzzy msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Autentique-se no site" -#: lib/action.php:490 +#: lib/action.php:479 #, fuzzy msgctxt "MENU" msgid "Login" msgstr "Entrar" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:493 +#: lib/action.php:482 #, fuzzy msgctxt "TOOLTIP" msgid "Help me!" msgstr "Ajudem-me!" -#: lib/action.php:496 +#: lib/action.php:485 #, fuzzy msgctxt "MENU" msgid "Help" msgstr "Ajuda" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:499 +#: lib/action.php:488 #, fuzzy msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Procura por pessoas ou textos" -#: lib/action.php:502 +#: lib/action.php:491 #, fuzzy msgctxt "MENU" msgid "Search" msgstr "Procurar" #. TRANS: DT element for site notice. String is hidden in default CSS. -#: lib/action.php:524 +#. TRANS: Menu item for site administration +#: lib/action.php:513 lib/adminpanelaction.php:398 msgid "Site notice" msgstr "Mensagem do site" -#: lib/action.php:590 +#: lib/action.php:579 msgid "Local views" msgstr "Visualizações locais" -#: lib/action.php:656 +#: lib/action.php:645 msgid "Page notice" msgstr "Notícia da página" -#: lib/action.php:758 +#: lib/action.php:747 msgid "Secondary site navigation" msgstr "Navegação secundária no site" -#: lib/action.php:763 +#: lib/action.php:752 msgid "Help" msgstr "Ajuda" -#: lib/action.php:765 +#: lib/action.php:754 msgid "About" msgstr "Sobre" -#: lib/action.php:767 +#: lib/action.php:756 msgid "FAQ" msgstr "FAQ" -#: lib/action.php:771 +#: lib/action.php:760 msgid "TOS" msgstr "Termos de uso" -#: lib/action.php:774 +#: lib/action.php:763 msgid "Privacy" msgstr "Privacidade" -#: lib/action.php:776 +#: lib/action.php:765 msgid "Source" msgstr "Fonte" -#: lib/action.php:780 +#: lib/action.php:769 msgid "Contact" msgstr "Contato" -#: lib/action.php:782 +#: lib/action.php:771 msgid "Badge" msgstr "Mini-aplicativo" -#: lib/action.php:810 +#: lib/action.php:799 msgid "StatusNet software license" msgstr "Licença do software StatusNet" -#: lib/action.php:813 +#: lib/action.php:802 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4852,12 +4936,12 @@ msgstr "" "**%%site.name%%** é um serviço de microblog disponibilizado por [%%site." "broughtby%%](%%site.broughtbyurl%%). " -#: lib/action.php:815 +#: lib/action.php:804 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** é um serviço de microblog. " -#: lib/action.php:817 +#: lib/action.php:806 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4868,55 +4952,55 @@ msgstr "" "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:832 +#: lib/action.php:821 msgid "Site content license" msgstr "Licença do conteúdo do site" -#: lib/action.php:837 +#: lib/action.php:826 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "O conteúdo e os dados de %1$s são privados e confidenciais." -#: lib/action.php:842 +#: lib/action.php:831 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "Conteúdo e dados licenciados sob %1$s. Todos os direitos reservados." -#: lib/action.php:845 +#: lib/action.php:834 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" "Conteúdo e dados licenciados pelos colaboradores. Todos os direitos " "reservados." -#: lib/action.php:858 +#: lib/action.php:847 msgid "All " msgstr "Todas " -#: lib/action.php:864 +#: lib/action.php:853 msgid "license." msgstr "licença." -#: lib/action.php:1163 +#: lib/action.php:1152 msgid "Pagination" msgstr "Paginação" -#: lib/action.php:1172 +#: lib/action.php:1161 msgid "After" msgstr "Próximo" -#: lib/action.php:1180 +#: lib/action.php:1169 msgid "Before" msgstr "Anterior" -#: lib/activity.php:449 +#: lib/activity.php:453 msgid "Can't handle remote content yet." msgstr "" -#: lib/activity.php:477 +#: lib/activity.php:481 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activity.php:481 +#: lib/activity.php:485 msgid "Can't handle embedded Base64 content yet." msgstr "" @@ -4931,91 +5015,80 @@ msgid "Changes to that panel are not allowed." msgstr "Não são permitidas alterações a esse painel." #. TRANS: Client error message -#: lib/adminpanelaction.php:211 +#: lib/adminpanelaction.php:229 msgid "showForm() not implemented." msgstr "showForm() não implementado." #. TRANS: Client error message -#: lib/adminpanelaction.php:241 +#: lib/adminpanelaction.php:259 msgid "saveSettings() not implemented." msgstr "saveSettings() não implementado." #. TRANS: Client error message -#: lib/adminpanelaction.php:265 +#: lib/adminpanelaction.php:283 msgid "Unable to delete design setting." msgstr "Não foi possível excluir as configurações da aparência." #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:330 +#: lib/adminpanelaction.php:348 msgid "Basic site configuration" msgstr "Configuração básica do site" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:332 +#: lib/adminpanelaction.php:350 #, fuzzy msgctxt "MENU" msgid "Site" msgstr "Site" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:338 +#: lib/adminpanelaction.php:356 msgid "Design configuration" msgstr "Configuração da aparência" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:340 +#: lib/adminpanelaction.php:358 #, fuzzy msgctxt "MENU" msgid "Design" msgstr "Aparência" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:346 +#: lib/adminpanelaction.php:364 msgid "User configuration" msgstr "Configuração do usuário" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:348 -#, fuzzy -msgctxt "MENU" +#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 msgid "User" msgstr "Usuário" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:354 +#: lib/adminpanelaction.php:372 msgid "Access configuration" msgstr "Configuração do acesso" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:356 -#, fuzzy -msgctxt "MENU" -msgid "Access" -msgstr "Acesso" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:362 +#: lib/adminpanelaction.php:380 msgid "Paths configuration" msgstr "Configuração dos caminhos" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:364 -#, fuzzy -msgctxt "MENU" -msgid "Paths" -msgstr "Caminhos" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:370 +#: lib/adminpanelaction.php:388 msgid "Sessions configuration" msgstr "Configuração das sessões" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:372 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:396 #, fuzzy -msgctxt "MENU" -msgid "Sessions" -msgstr "Sessões" +msgid "Edit site notice" +msgstr "Mensagem do site" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:404 +#, fuzzy +msgid "Snapshots configuration" +msgstr "Configuração dos caminhos" #: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." @@ -5548,6 +5621,11 @@ msgstr "Selecione uma etiqueta para reduzir a lista" msgid "Go" msgstr "Ir" +#: lib/grantroleform.php:91 +#, php-format +msgid "Grant this user the \"%s\" role" +msgstr "" + #: lib/groupeditform.php:163 msgid "URL of the homepage or blog of the group or topic" msgstr "URL para o site ou blog do grupo ou tópico" @@ -6168,10 +6246,6 @@ msgstr "Respostas" msgid "Favorites" msgstr "Favoritas" -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "Usuário" - #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "Recebidas" @@ -6197,7 +6271,7 @@ msgstr "Etiquetas nas mensagens de %s" msgid "Unknown" msgstr "Desconhecido" -#: lib/profileaction.php:109 lib/profileaction.php:192 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:194 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Assinaturas" @@ -6205,23 +6279,23 @@ msgstr "Assinaturas" msgid "All subscriptions" msgstr "Todas as assinaturas" -#: lib/profileaction.php:140 lib/profileaction.php:201 lib/subgroupnav.php:90 +#: lib/profileaction.php:142 lib/profileaction.php:203 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Assinantes" -#: lib/profileaction.php:157 +#: lib/profileaction.php:159 msgid "All subscribers" msgstr "Todos os assinantes" -#: lib/profileaction.php:178 +#: lib/profileaction.php:180 msgid "User ID" msgstr "ID do usuário" -#: lib/profileaction.php:183 +#: lib/profileaction.php:185 msgid "Member since" msgstr "Membro desde" -#: lib/profileaction.php:245 +#: lib/profileaction.php:247 msgid "All groups" msgstr "Todos os grupos" @@ -6261,7 +6335,12 @@ msgstr "Repetir esta mensagem?" msgid "Repeat this notice" msgstr "Repetir esta mensagem" -#: lib/router.php:668 +#: lib/revokeroleform.php:91 +#, fuzzy, php-format +msgid "Revoke the \"%s\" role from this user" +msgstr "Bloquear este usuário neste grupo" + +#: lib/router.php:671 msgid "No single user defined for single-user mode." msgstr "Nenhum usuário definido para o modo de usuário único." @@ -6415,47 +6494,64 @@ msgstr "Mensagem" msgid "Moderate" msgstr "Moderar" -#: lib/util.php:1013 +#: lib/userprofile.php:352 +#, fuzzy +msgid "User role" +msgstr "Perfil do usuário" + +#: lib/userprofile.php:354 +#, fuzzy +msgctxt "role" +msgid "Administrator" +msgstr "Administradores" + +#: lib/userprofile.php:355 +#, fuzzy +msgctxt "role" +msgid "Moderator" +msgstr "Moderar" + +#: lib/util.php:1015 msgid "a few seconds ago" msgstr "alguns segundos atrás" -#: lib/util.php:1015 +#: lib/util.php:1017 msgid "about a minute ago" msgstr "cerca de 1 minuto atrás" -#: lib/util.php:1017 +#: lib/util.php:1019 #, php-format msgid "about %d minutes ago" msgstr "cerca de %d minutos atrás" -#: lib/util.php:1019 +#: lib/util.php:1021 msgid "about an hour ago" msgstr "cerca de 1 hora atrás" -#: lib/util.php:1021 +#: lib/util.php:1023 #, php-format msgid "about %d hours ago" msgstr "cerca de %d horas atrás" -#: lib/util.php:1023 +#: lib/util.php:1025 msgid "about a day ago" msgstr "cerca de 1 dia atrás" -#: lib/util.php:1025 +#: lib/util.php:1027 #, php-format msgid "about %d days ago" msgstr "cerca de %d dias atrás" -#: lib/util.php:1027 +#: lib/util.php:1029 msgid "about a month ago" msgstr "cerca de 1 mês atrás" -#: lib/util.php:1029 +#: lib/util.php:1031 #, php-format msgid "about %d months ago" msgstr "cerca de %d meses atrás" -#: lib/util.php:1031 +#: lib/util.php:1033 msgid "about a year ago" msgstr "cerca de 1 ano atrás" diff --git a/locale/ru/LC_MESSAGES/statusnet.po b/locale/ru/LC_MESSAGES/statusnet.po index 4db3b06846..c97bb5461d 100644 --- a/locale/ru/LC_MESSAGES/statusnet.po +++ b/locale/ru/LC_MESSAGES/statusnet.po @@ -12,12 +12,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-02 21:02+0000\n" -"PO-Revision-Date: 2010-03-02 21:03:44+0000\n" +"POT-Creation-Date: 2010-03-04 18:55+0000\n" +"PO-Revision-Date: 2010-03-04 18:57:17+0000\n" "Language-Team: Russian\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: out-statusnet\n" @@ -25,7 +25,8 @@ msgstr "" "10< =4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #. TRANS: Page title -#: actions/accessadminpanel.php:55 +#. TRANS: Menu item for site administration +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 msgid "Access" msgstr "Принять" @@ -47,7 +48,6 @@ msgstr "" #. TRANS: Checkbox label for prohibiting anonymous users from viewing site. #: actions/accessadminpanel.php:167 -#, fuzzy msgctxt "LABEL" msgid "Private" msgstr "Личное" @@ -78,7 +78,6 @@ msgid "Save access settings" msgstr "Сохранить настройки доступа" #: actions/accessadminpanel.php:203 -#, fuzzy msgctxt "BUTTON" msgid "Save" msgstr "Сохранить" @@ -123,7 +122,7 @@ msgstr "%1$s и друзья, страница %2$d" #. TRANS: Page title. %1$s is user nickname #. TRANS: H1 text. %1$s is user nickname -#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -185,7 +184,7 @@ msgstr "" "s или отправить запись для привлечения его или её внимания?" #. TRANS: H1 text -#: actions/all.php:174 +#: actions/all.php:178 msgid "You and friends" msgstr "Вы и друзья" @@ -212,11 +211,11 @@ msgstr "Обновлено от %1$s и его друзей на %2$s!" #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 -#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 +#: actions/apitimelinegroup.php:160 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:148 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 msgid "API method not found." msgstr "Метод API не найден." @@ -582,7 +581,7 @@ msgstr "" "предоставлять разрешение на доступ к вашей учётной записи %4$s только тем " "сторонним приложениям, которым вы доверяете." -#: actions/apioauthauthorize.php:310 +#: actions/apioauthauthorize.php:310 lib/action.php:438 msgid "Account" msgstr "Настройки" @@ -669,18 +668,6 @@ msgstr "%1$s / Любимое от %2$s" msgid "%1$s updates favorited by %2$s / %2$s." msgstr "Обновления %1$s, отмеченные как любимые %2$s / %2$s." -#: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:138 actions/userrss.php:90 -#, php-format -msgid "%s timeline" -msgstr "Лента %s" - -#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 -#: actions/userrss.php:92 -#, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "Обновлено от %1$s на %2$s!" - #: actions/apitimelinementions.php:117 #, php-format msgid "%1$s / Updates mentioning %2$s" @@ -691,12 +678,12 @@ msgstr "%1$s / Обновления, упоминающие %2$s" msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "%1$s обновил этот ответ на сообщение: %2$s / %3$s." -#: actions/apitimelinepublic.php:111 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "Общая лента %s" -#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "Обновления %s от всех!" @@ -943,7 +930,7 @@ msgid "Conversation" msgstr "Дискуссия" #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:216 lib/searchgroupnav.php:82 +#: lib/profileaction.php:218 lib/searchgroupnav.php:82 msgid "Notices" msgstr "Записи" @@ -962,7 +949,7 @@ msgstr "Вы не являетесь владельцем этого прило #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1228 +#: lib/action.php:1217 msgid "There was a problem with your session token." msgstr "Проблема с Вашей сессией. Попробуйте ещё раз, пожалуйста." @@ -1158,8 +1145,9 @@ msgstr "Восстановить значения по умолчанию" #: actions/designadminpanel.php:586 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 +#: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:208 #: actions/tagother.php:154 actions/useradminpanel.php:294 #: lib/applicationeditform.php:333 lib/applicationeditform.php:334 #: lib/designsettings.php:256 lib/groupeditform.php:202 @@ -1275,7 +1263,7 @@ msgstr "Слишком длинное описание (максимум %d си msgid "Could not update group." msgstr "Не удаётся обновить информацию о группе." -#: actions/editgroup.php:264 classes/User_group.php:478 +#: actions/editgroup.php:264 classes/User_group.php:493 msgid "Could not create aliases." msgstr "Не удаётся создать алиасы." @@ -1407,7 +1395,7 @@ msgid "Cannot normalize that email address" msgstr "Не удаётся стандартизировать этот электронный адрес" #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:143 +#: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Неверный электронный адрес." @@ -1600,6 +1588,26 @@ msgstr "Нет такого файла." msgid "Cannot read file." msgstr "Не удалось прочесть файл." +#: actions/grantrole.php:62 actions/revokerole.php:62 +#, fuzzy +msgid "Invalid role." +msgstr "Неправильный токен" + +#: actions/grantrole.php:66 actions/revokerole.php:66 +msgid "This role is reserved and cannot be set." +msgstr "" + +#: actions/grantrole.php:75 +#, fuzzy +msgid "You cannot grant user roles on this site." +msgstr "" +"Вы не можете устанавливать режим песочницы для пользователей этого сайта." + +#: actions/grantrole.php:82 +#, fuzzy +msgid "User already has this role." +msgstr "Пользователь уже заглушён." + #: actions/groupblock.php:71 actions/groupunblock.php:71 #: actions/makeadmin.php:71 actions/subedit.php:46 #: lib/profileformaction.php:70 @@ -1747,12 +1755,18 @@ msgstr "Сделать администратором" msgid "Make this user an admin" msgstr "Сделать этого пользователя администратором" +#: actions/grouprss.php:138 actions/userrss.php:90 +#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#, php-format +msgid "%s timeline" +msgstr "Лента %s" + #: actions/grouprss.php:140 #, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Обновления участников %1$s на %2$s!" -#: actions/groups.php:62 lib/profileaction.php:210 lib/profileaction.php:230 +#: actions/groups.php:62 lib/profileaction.php:212 lib/profileaction.php:232 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" msgstr "Группы" @@ -2015,7 +2029,6 @@ msgstr "Можно добавить к приглашению личное со #. TRANS: Send button for inviting friends #: actions/invite.php:198 -#, fuzzy msgctxt "BUTTON" msgid "Send" msgstr "Отправить" @@ -2372,8 +2385,8 @@ msgstr "тип содержимого " msgid "Only " msgstr "Только " -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 -#: lib/apiaction.php:1068 lib/apiaction.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1042 +#: lib/apiaction.php:1070 lib/apiaction.php:1179 msgid "Not a supported data format." msgstr "Неподдерживаемый формат данных." @@ -2514,7 +2527,8 @@ msgstr "Не удаётся сохранить новый пароль." msgid "Password saved." msgstr "Пароль сохранён." -#: actions/pathsadminpanel.php:59 +#. TRANS: Menu item for site administration +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 msgid "Paths" msgstr "Пути" @@ -2634,7 +2648,7 @@ msgstr "Директория фонового изображения" msgid "SSL" msgstr "SSL" -#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 +#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202 msgid "Never" msgstr "Никогда" @@ -2689,11 +2703,11 @@ msgstr "Неверный тег человека: %s" msgid "Users self-tagged with %1$s - page %2$d" msgstr "Пользователи, установившие себе тег %1$s — страница %2$d" -#: actions/postnotice.php:84 +#: actions/postnotice.php:95 msgid "Invalid notice content" msgstr "Неверный контент записи" -#: actions/postnotice.php:90 +#: actions/postnotice.php:101 #, php-format msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "Лицензия записи «%1$s» не совместима с лицензией сайта «%2$s»." @@ -2773,7 +2787,7 @@ msgstr "" "Теги для самого себя (буквы, цифры, -, ., и _), разделенные запятой или " "пробелом" -#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 +#: actions/profilesettings.php:151 msgid "Language" msgstr "Язык" @@ -2799,7 +2813,7 @@ msgstr "Автоматически подписываться на всех, к msgid "Bio is too long (max %d chars)." msgstr "Слишком длинная биография (максимум %d символов)." -#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:151 msgid "Timezone not selected." msgstr "Часовой пояс не выбран." @@ -3120,7 +3134,7 @@ msgid "Same as password above. Required." msgstr "Тот же пароль что и сверху. Обязательное поле." #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 msgid "Email" msgstr "Email" @@ -3225,7 +3239,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "Адрес URL твоего профиля на другом подходящем сервисе микроблогинга" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:368 +#: lib/userprofile.php:394 msgid "Subscribe" msgstr "Подписаться" @@ -3327,6 +3341,16 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "Ответы на записи %1$s на %2$s!" +#: actions/revokerole.php:75 +#, fuzzy +msgid "You cannot revoke user roles on this site." +msgstr "Вы не можете заглушать пользователей на этом сайте." + +#: actions/revokerole.php:82 +#, fuzzy +msgid "User doesn't have this role." +msgstr "Пользователь без соответствующего профиля." + #: actions/rsd.php:146 actions/version.php:157 msgid "StatusNet" msgstr "StatusNet" @@ -3340,7 +3364,9 @@ msgstr "" msgid "User is already sandboxed." msgstr "Пользователь уже в режиме песочницы." +#. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:390 msgid "Sessions" msgstr "Сессии" @@ -3364,7 +3390,7 @@ msgstr "Отладка сессий" msgid "Turn on debugging output for sessions." msgstr "Включить отладочный вывод для сессий." -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "Сохранить настройки сайта" @@ -3395,8 +3421,8 @@ msgstr "Организация" msgid "Description" msgstr "Описание" -#: actions/showapplication.php:192 actions/showgroup.php:437 -#: lib/profileaction.php:174 +#: actions/showapplication.php:192 actions/showgroup.php:438 +#: lib/profileaction.php:176 msgid "Statistics" msgstr "Статистика" @@ -3538,45 +3564,45 @@ msgstr "Алиасы" msgid "Group actions" msgstr "Действия группы" -#: actions/showgroup.php:336 +#: actions/showgroup.php:337 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Лента записей группы %s (RSS 1.0)" -#: actions/showgroup.php:342 +#: actions/showgroup.php:343 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Лента записей группы %s (RSS 2.0)" -#: actions/showgroup.php:348 +#: actions/showgroup.php:349 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "Лента записей группы %s (Atom)" -#: actions/showgroup.php:353 +#: actions/showgroup.php:354 #, php-format msgid "FOAF for %s group" msgstr "FOAF для группы %s" -#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 +#: actions/showgroup.php:390 actions/showgroup.php:447 lib/groupnav.php:91 msgid "Members" msgstr "Участники" -#: actions/showgroup.php:394 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 +#: actions/showgroup.php:395 lib/profileaction.php:117 +#: lib/profileaction.php:150 lib/profileaction.php:238 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(пока ничего нет)" -#: actions/showgroup.php:400 +#: actions/showgroup.php:401 msgid "All members" msgstr "Все участники" -#: actions/showgroup.php:440 +#: actions/showgroup.php:441 msgid "Created" msgstr "Создано" -#: actions/showgroup.php:456 +#: actions/showgroup.php:457 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3592,7 +3618,7 @@ msgstr "" "action.register%%%%), чтобы стать участником группы и получить множество " "других возможностей! ([Читать далее](%%%%doc.help%%%%))" -#: actions/showgroup.php:462 +#: actions/showgroup.php:463 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3605,7 +3631,7 @@ msgstr "" "обеспечении [StatusNet](http://status.net/). Участники обмениваются " "короткими сообщениями о своей жизни и интересах. " -#: actions/showgroup.php:490 +#: actions/showgroup.php:491 msgid "Admins" msgstr "Администраторы" @@ -3730,149 +3756,140 @@ msgid "User is already silenced." msgstr "Пользователь уже заглушён." #: actions/siteadminpanel.php:69 -msgid "Basic settings for this StatusNet site." +#, fuzzy +msgid "Basic settings for this StatusNet site" msgstr "Основные настройки для этого сайта StatusNet." -#: actions/siteadminpanel.php:132 +#: actions/siteadminpanel.php:133 msgid "Site name must have non-zero length." msgstr "Имя сайта должно быть ненулевой длины." -#: actions/siteadminpanel.php:140 +#: actions/siteadminpanel.php:141 msgid "You must have a valid contact email address." msgstr "У вас должен быть действительный контактный email-адрес." -#: actions/siteadminpanel.php:158 +#: actions/siteadminpanel.php:159 #, php-format msgid "Unknown language \"%s\"." msgstr "Неизвестный язык «%s»." #: actions/siteadminpanel.php:165 -msgid "Invalid snapshot report URL." -msgstr "Неверный URL отчёта снимка." - -#: actions/siteadminpanel.php:171 -msgid "Invalid snapshot run value." -msgstr "Неверное значение запуска снимка." - -#: actions/siteadminpanel.php:177 -msgid "Snapshot frequency must be a number." -msgstr "Частота снимков должна быть числом." - -#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "Минимальное ограничение текста составляет 140 символов." -#: actions/siteadminpanel.php:189 +#: actions/siteadminpanel.php:171 msgid "Dupe limit must 1 or more seconds." msgstr "Ограничение дублирования должно составлять 1 или более секунд." -#: actions/siteadminpanel.php:239 +#: actions/siteadminpanel.php:221 msgid "General" msgstr "Базовые" -#: actions/siteadminpanel.php:242 +#: actions/siteadminpanel.php:224 msgid "Site name" msgstr "Имя сайта" -#: actions/siteadminpanel.php:243 +#: actions/siteadminpanel.php:225 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "Имя вашего сайта, например, «Yourcompany Microblog»" -#: actions/siteadminpanel.php:247 +#: actions/siteadminpanel.php:229 msgid "Brought by" msgstr "Предоставлено" -#: actions/siteadminpanel.php:248 +#: actions/siteadminpanel.php:230 msgid "Text used for credits link in footer of each page" msgstr "" "Текст, используемый для указания авторов в нижнем колонтитуле каждой страницы" -#: actions/siteadminpanel.php:252 +#: actions/siteadminpanel.php:234 msgid "Brought by URL" msgstr "URL-адрес поставщика услуг" -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:235 msgid "URL used for credits link in footer of each page" msgstr "" "URL, используемый для ссылки на авторов в нижнем колонтитуле каждой страницы" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:239 msgid "Contact email address for your site" msgstr "Контактный email-адрес для вашего сайта" -#: actions/siteadminpanel.php:263 +#: actions/siteadminpanel.php:245 msgid "Local" msgstr "Внутренние настройки" -#: actions/siteadminpanel.php:274 +#: actions/siteadminpanel.php:256 msgid "Default timezone" msgstr "Часовой пояс по умолчанию" -#: actions/siteadminpanel.php:275 +#: actions/siteadminpanel.php:257 msgid "Default timezone for the site; usually UTC." msgstr "Часовой пояс по умолчанию для сайта; обычно UTC." -#: actions/siteadminpanel.php:281 -msgid "Default site language" +#: actions/siteadminpanel.php:262 +#, fuzzy +msgid "Default language" msgstr "Язык сайта по умолчанию" -#: actions/siteadminpanel.php:289 -msgid "Snapshots" -msgstr "Снимки" +#: actions/siteadminpanel.php:263 +msgid "Site language when autodetection from browser settings is not available" +msgstr "" -#: actions/siteadminpanel.php:292 -msgid "Randomly during Web hit" -msgstr "При случайном посещении" - -#: actions/siteadminpanel.php:293 -msgid "In a scheduled job" -msgstr "По заданному графику" - -#: actions/siteadminpanel.php:295 -msgid "Data snapshots" -msgstr "Снимки данных" - -#: actions/siteadminpanel.php:296 -msgid "When to send statistical data to status.net servers" -msgstr "Когда отправлять статистические данные на сервера status.net" - -#: actions/siteadminpanel.php:301 -msgid "Frequency" -msgstr "Частота" - -#: actions/siteadminpanel.php:302 -msgid "Snapshots will be sent once every N web hits" -msgstr "Снимки будут отправляться каждые N посещений" - -#: actions/siteadminpanel.php:307 -msgid "Report URL" -msgstr "URL отчёта" - -#: actions/siteadminpanel.php:308 -msgid "Snapshots will be sent to this URL" -msgstr "Снимки будут отправляться по этому URL-адресу" - -#: actions/siteadminpanel.php:315 +#: actions/siteadminpanel.php:271 msgid "Limits" msgstr "Границы" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Text limit" msgstr "Границы текста" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Maximum number of characters for notices." msgstr "Максимальное число символов для записей." -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "Dupe limit" msgstr "Предел дубликатов" -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" "Сколько нужно ждать пользователям (в секундах) для отправки того же ещё раз." +#: actions/sitenoticeadminpanel.php:56 +#, fuzzy +msgid "Site Notice" +msgstr "Новая запись" + +#: actions/sitenoticeadminpanel.php:67 +#, fuzzy +msgid "Edit site-wide message" +msgstr "Новое сообщение" + +#: actions/sitenoticeadminpanel.php:103 +#, fuzzy +msgid "Unable to save site notice." +msgstr "Не удаётся сохранить ваши настройки оформления!" + +#: actions/sitenoticeadminpanel.php:113 +msgid "Max length for the site-wide notice is 255 chars" +msgstr "" + +#: actions/sitenoticeadminpanel.php:176 +#, fuzzy +msgid "Site notice text" +msgstr "Новая запись" + +#: actions/sitenoticeadminpanel.php:178 +msgid "Site-wide notice text (255 chars max; HTML okay)" +msgstr "" + +#: actions/sitenoticeadminpanel.php:198 +#, fuzzy +msgid "Save site notice" +msgstr "Новая запись" + #: actions/smssettings.php:58 msgid "SMS settings" msgstr "Установки СМС" @@ -3974,6 +3991,66 @@ msgstr "" msgid "No code entered" msgstr "Код не введён" +#. TRANS: Menu item for site administration +#: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 +#: lib/adminpanelaction.php:406 +msgid "Snapshots" +msgstr "Снимки" + +#: actions/snapshotadminpanel.php:65 +#, fuzzy +msgid "Manage snapshot configuration" +msgstr "Изменить конфигурацию сайта" + +#: actions/snapshotadminpanel.php:127 +msgid "Invalid snapshot run value." +msgstr "Неверное значение запуска снимка." + +#: actions/snapshotadminpanel.php:133 +msgid "Snapshot frequency must be a number." +msgstr "Частота снимков должна быть числом." + +#: actions/snapshotadminpanel.php:144 +msgid "Invalid snapshot report URL." +msgstr "Неверный URL отчёта снимка." + +#: actions/snapshotadminpanel.php:200 +msgid "Randomly during Web hit" +msgstr "При случайном посещении" + +#: actions/snapshotadminpanel.php:201 +msgid "In a scheduled job" +msgstr "По заданному графику" + +#: actions/snapshotadminpanel.php:206 +msgid "Data snapshots" +msgstr "Снимки данных" + +#: actions/snapshotadminpanel.php:208 +msgid "When to send statistical data to status.net servers" +msgstr "Когда отправлять статистические данные на сервера status.net" + +#: actions/snapshotadminpanel.php:217 +msgid "Frequency" +msgstr "Частота" + +#: actions/snapshotadminpanel.php:218 +msgid "Snapshots will be sent once every N web hits" +msgstr "Снимки будут отправляться каждые N посещений" + +#: actions/snapshotadminpanel.php:226 +msgid "Report URL" +msgstr "URL отчёта" + +#: actions/snapshotadminpanel.php:227 +msgid "Snapshots will be sent to this URL" +msgstr "Снимки будут отправляться по этому URL-адресу" + +#: actions/snapshotadminpanel.php:248 +#, fuzzy +msgid "Save snapshot settings" +msgstr "Сохранить настройки сайта" + #: actions/subedit.php:70 msgid "You are not subscribed to that profile." msgstr "Вы не подписаны на этот профиль." @@ -4184,7 +4261,7 @@ msgstr "Нет ID профиля в запросе." msgid "Unsubscribed" msgstr "Отписано" -#: actions/updateprofile.php:62 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -4193,7 +4270,6 @@ msgstr "" #. TRANS: User admin panel title #: actions/useradminpanel.php:59 -#, fuzzy msgctxt "TITLE" msgid "User" msgstr "Пользователь" @@ -4386,17 +4462,23 @@ msgstr "Группы %1$s, страница %2$d" msgid "Search for more groups" msgstr "Искать другие группы" -#: actions/usergroups.php:153 +#: actions/usergroups.php:157 #, php-format msgid "%s is not a member of any group." msgstr "%s не состоит ни в одной группе." -#: actions/usergroups.php:158 +#: actions/usergroups.php:162 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" "Попробуйте [найти группы](%%action.groupsearch%%) и присоединиться к ним." +#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: lib/atomusernoticefeed.php:72 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "Обновлено от %1$s на %2$s!" + #: actions/version.php:73 #, php-format msgid "StatusNet %s" @@ -4452,7 +4534,7 @@ msgstr "" msgid "Plugins" msgstr "Плагины" -#: actions/version.php:196 lib/action.php:778 +#: actions/version.php:196 lib/action.php:767 msgid "Version" msgstr "Версия" @@ -4517,22 +4599,22 @@ msgstr "Не удаётся обновить сообщение с новым UR msgid "DB error inserting hashtag: %s" msgstr "Ошибка баз данных при вставке хеш-тегов для %s" -#: classes/Notice.php:239 +#: classes/Notice.php:241 msgid "Problem saving notice. Too long." msgstr "Проблемы с сохранением записи. Слишком длинно." -#: classes/Notice.php:243 +#: classes/Notice.php:245 msgid "Problem saving notice. Unknown user." msgstr "Проблема при сохранении записи. Неизвестный пользователь." -#: classes/Notice.php:248 +#: classes/Notice.php:250 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" "Слишком много записей за столь короткий срок; передохните немного и " "попробуйте вновь через пару минут." -#: classes/Notice.php:254 +#: classes/Notice.php:256 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." @@ -4540,19 +4622,19 @@ msgstr "" "Слишком много одинаковых записей за столь короткий срок; передохните немного " "и попробуйте вновь через пару минут." -#: classes/Notice.php:260 +#: classes/Notice.php:262 msgid "You are banned from posting notices on this site." msgstr "Вам запрещено поститься на этом сайте (бан)" -#: classes/Notice.php:326 classes/Notice.php:352 +#: classes/Notice.php:328 classes/Notice.php:354 msgid "Problem saving notice." msgstr "Проблемы с сохранением записи." -#: classes/Notice.php:911 +#: classes/Notice.php:927 msgid "Problem saving group inbox." msgstr "Проблемы с сохранением входящих сообщений группы." -#: classes/Notice.php:1442 +#: classes/Notice.php:1459 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -4577,7 +4659,12 @@ msgstr "Не подписаны!" msgid "Couldn't delete self-subscription." msgstr "Невозможно удалить самоподписку." -#: classes/Subscription.php:179 lib/subs.php:69 +#: classes/Subscription.php:190 +#, fuzzy +msgid "Couldn't delete subscription OMB token." +msgstr "Не удаётся удалить подписку." + +#: classes/Subscription.php:201 lib/subs.php:69 msgid "Couldn't delete subscription." msgstr "Не удаётся удалить подписку." @@ -4586,19 +4673,19 @@ msgstr "Не удаётся удалить подписку." msgid "Welcome to %1$s, @%2$s!" msgstr "Добро пожаловать на %1$s, @%2$s!" -#: classes/User_group.php:462 +#: classes/User_group.php:477 msgid "Could not create group." msgstr "Не удаётся создать группу." -#: classes/User_group.php:471 +#: classes/User_group.php:486 msgid "Could not set group URI." msgstr "Не удаётся назначить URI группы." -#: classes/User_group.php:492 +#: classes/User_group.php:507 msgid "Could not set group membership." msgstr "Не удаётся назначить членство в группе." -#: classes/User_group.php:506 +#: classes/User_group.php:521 msgid "Could not save local group info." msgstr "Не удаётся сохранить информацию о локальной группе." @@ -4639,194 +4726,171 @@ msgstr "%1$s — %2$s" msgid "Untitled page" msgstr "Страница без названия" -#: lib/action.php:433 +#: lib/action.php:424 msgid "Primary site navigation" msgstr "Главная навигация" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:439 -#, fuzzy +#: lib/action.php:430 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Личный профиль и лента друзей" -#: lib/action.php:442 -#, fuzzy +#: lib/action.php:433 msgctxt "MENU" msgid "Personal" msgstr "Личное" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:444 -#, fuzzy +#: lib/action.php:435 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" -msgstr "Изменить ваш email, аватару, пароль, профиль" - -#: lib/action.php:447 -#, fuzzy -msgctxt "MENU" -msgid "Account" -msgstr "Настройки" +msgstr "Изменить ваш email, аватар, пароль, профиль" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:450 -#, fuzzy +#: lib/action.php:440 msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Соединить с сервисами" -#: lib/action.php:453 +#: lib/action.php:443 #, fuzzy -msgctxt "MENU" msgid "Connect" msgstr "Соединить" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:457 -#, fuzzy +#: lib/action.php:446 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Изменить конфигурацию сайта" -#: lib/action.php:460 -#, fuzzy +#: lib/action.php:449 msgctxt "MENU" msgid "Admin" msgstr "Настройки" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:464 -#, fuzzy, php-format +#: lib/action.php:453 +#, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" -msgstr "Пригласите друзей и коллег стать такими же как вы участниками %s" +msgstr "Пригласите друзей и коллег стать такими же как Вы участниками %s" -#: lib/action.php:467 -#, fuzzy +#: lib/action.php:456 msgctxt "MENU" msgid "Invite" msgstr "Пригласить" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:473 -#, fuzzy +#: lib/action.php:462 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Выйти" -#: lib/action.php:476 -#, fuzzy +#: lib/action.php:465 msgctxt "MENU" msgid "Logout" msgstr "Выход" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:481 -#, fuzzy +#: lib/action.php:470 msgctxt "TOOLTIP" msgid "Create an account" msgstr "Создать новый аккаунт" -#: lib/action.php:484 -#, fuzzy +#: lib/action.php:473 msgctxt "MENU" msgid "Register" msgstr "Регистрация" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:487 -#, fuzzy +#: lib/action.php:476 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Войти" -#: lib/action.php:490 -#, fuzzy +#: lib/action.php:479 msgctxt "MENU" msgid "Login" msgstr "Вход" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:493 -#, fuzzy +#: lib/action.php:482 msgctxt "TOOLTIP" msgid "Help me!" msgstr "Помощь" -#: lib/action.php:496 -#, fuzzy +#: lib/action.php:485 msgctxt "MENU" msgid "Help" msgstr "Помощь" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:499 -#, fuzzy +#: lib/action.php:488 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Искать людей или текст" -#: lib/action.php:502 -#, fuzzy +#: lib/action.php:491 msgctxt "MENU" msgid "Search" msgstr "Поиск" #. TRANS: DT element for site notice. String is hidden in default CSS. -#: lib/action.php:524 +#. TRANS: Menu item for site administration +#: lib/action.php:513 lib/adminpanelaction.php:398 msgid "Site notice" msgstr "Новая запись" -#: lib/action.php:590 +#: lib/action.php:579 msgid "Local views" msgstr "Локальные виды" -#: lib/action.php:656 +#: lib/action.php:645 msgid "Page notice" msgstr "Новая запись" -#: lib/action.php:758 +#: lib/action.php:747 msgid "Secondary site navigation" msgstr "Навигация по подпискам" -#: lib/action.php:763 +#: lib/action.php:752 msgid "Help" msgstr "Помощь" -#: lib/action.php:765 +#: lib/action.php:754 msgid "About" msgstr "О проекте" -#: lib/action.php:767 +#: lib/action.php:756 msgid "FAQ" msgstr "ЧаВо" -#: lib/action.php:771 +#: lib/action.php:760 msgid "TOS" msgstr "TOS" -#: lib/action.php:774 +#: lib/action.php:763 msgid "Privacy" msgstr "Пользовательское соглашение" -#: lib/action.php:776 +#: lib/action.php:765 msgid "Source" msgstr "Исходный код" -#: lib/action.php:780 +#: lib/action.php:769 msgid "Contact" msgstr "Контактная информация" -#: lib/action.php:782 +#: lib/action.php:771 msgid "Badge" msgstr "Бедж" -#: lib/action.php:810 +#: lib/action.php:799 msgid "StatusNet software license" msgstr "StatusNet лицензия" -#: lib/action.php:813 +#: lib/action.php:802 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4835,12 +4899,12 @@ msgstr "" "**%%site.name%%** — это сервис микроблогинга, созданный для вас при помощи [%" "%site.broughtby%%](%%site.broughtbyurl%%). " -#: lib/action.php:815 +#: lib/action.php:804 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** — сервис микроблогинга. " -#: lib/action.php:817 +#: lib/action.php:806 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4852,56 +4916,56 @@ msgstr "" "лицензией [GNU Affero General Public License](http://www.fsf.org/licensing/" "licenses/agpl-3.0.html)." -#: lib/action.php:832 +#: lib/action.php:821 msgid "Site content license" msgstr "Лицензия содержимого сайта" -#: lib/action.php:837 +#: lib/action.php:826 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "Содержание и данные %1$s являются личными и конфиденциальными." -#: lib/action.php:842 +#: lib/action.php:831 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" "Авторские права на содержание и данные принадлежат %1$s. Все права защищены." -#: lib/action.php:845 +#: lib/action.php:834 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" "Авторские права на содержание и данные принадлежат разработчикам. Все права " "защищены." -#: lib/action.php:858 +#: lib/action.php:847 msgid "All " msgstr "All " -#: lib/action.php:864 +#: lib/action.php:853 msgid "license." msgstr "license." -#: lib/action.php:1163 +#: lib/action.php:1152 msgid "Pagination" msgstr "Разбиение на страницы" -#: lib/action.php:1172 +#: lib/action.php:1161 msgid "After" msgstr "Сюда" -#: lib/action.php:1180 +#: lib/action.php:1169 msgid "Before" msgstr "Туда" -#: lib/activity.php:449 +#: lib/activity.php:453 msgid "Can't handle remote content yet." msgstr "Пока ещё нельзя обрабатывать удалённое содержимое." -#: lib/activity.php:477 +#: lib/activity.php:481 msgid "Can't handle embedded XML content yet." msgstr "Пока ещё нельзя обрабатывать встроенный XML." -#: lib/activity.php:481 +#: lib/activity.php:485 msgid "Can't handle embedded Base64 content yet." msgstr "Пока ещё нельзя обрабатывать встроенное содержание Base64." @@ -4916,91 +4980,78 @@ msgid "Changes to that panel are not allowed." msgstr "Изменения для этой панели недопустимы." #. TRANS: Client error message -#: lib/adminpanelaction.php:211 +#: lib/adminpanelaction.php:229 msgid "showForm() not implemented." msgstr "showForm() не реализована." #. TRANS: Client error message -#: lib/adminpanelaction.php:241 +#: lib/adminpanelaction.php:259 msgid "saveSettings() not implemented." msgstr "saveSettings() не реализована." #. TRANS: Client error message -#: lib/adminpanelaction.php:265 +#: lib/adminpanelaction.php:283 msgid "Unable to delete design setting." msgstr "Не удаётся удалить настройки оформления." #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:330 +#: lib/adminpanelaction.php:348 msgid "Basic site configuration" msgstr "Основная конфигурация сайта" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:332 -#, fuzzy +#: lib/adminpanelaction.php:350 msgctxt "MENU" msgid "Site" msgstr "Сайт" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:338 +#: lib/adminpanelaction.php:356 msgid "Design configuration" msgstr "Конфигурация оформления" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:340 -#, fuzzy +#: lib/adminpanelaction.php:358 msgctxt "MENU" msgid "Design" msgstr "Оформление" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:346 +#: lib/adminpanelaction.php:364 msgid "User configuration" msgstr "Конфигурация пользователя" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:348 -#, fuzzy -msgctxt "MENU" +#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 msgid "User" msgstr "Пользователь" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:354 +#: lib/adminpanelaction.php:372 msgid "Access configuration" msgstr "Конфигурация доступа" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:356 -#, fuzzy -msgctxt "MENU" -msgid "Access" -msgstr "Принять" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:362 +#: lib/adminpanelaction.php:380 msgid "Paths configuration" msgstr "Конфигурация путей" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:364 -#, fuzzy -msgctxt "MENU" -msgid "Paths" -msgstr "Пути" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:370 +#: lib/adminpanelaction.php:388 msgid "Sessions configuration" msgstr "Конфигурация сессий" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:372 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:396 #, fuzzy -msgctxt "MENU" -msgid "Sessions" -msgstr "Сессии" +msgid "Edit site notice" +msgstr "Новая запись" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:404 +#, fuzzy +msgid "Snapshots configuration" +msgstr "Конфигурация путей" #: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." @@ -5532,6 +5583,11 @@ msgstr "Выберите тег из выпадающего списка" msgid "Go" msgstr "Перейти" +#: lib/grantroleform.php:91 +#, php-format +msgid "Grant this user the \"%s\" role" +msgstr "" + #: lib/groupeditform.php:163 msgid "URL of the homepage or blog of the group or topic" msgstr "Адрес страницы, дневника или профиля группы на другом портале" @@ -6148,10 +6204,6 @@ msgstr "Ответы" msgid "Favorites" msgstr "Любимое" -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "Пользователь" - #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "Входящие" @@ -6177,7 +6229,7 @@ msgstr "Теги записей пользователя %s" msgid "Unknown" msgstr "Неизвестно" -#: lib/profileaction.php:109 lib/profileaction.php:192 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:194 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Подписки" @@ -6185,23 +6237,23 @@ msgstr "Подписки" msgid "All subscriptions" msgstr "Все подписки." -#: lib/profileaction.php:140 lib/profileaction.php:201 lib/subgroupnav.php:90 +#: lib/profileaction.php:142 lib/profileaction.php:203 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Подписчики" -#: lib/profileaction.php:157 +#: lib/profileaction.php:159 msgid "All subscribers" msgstr "Все подписчики" -#: lib/profileaction.php:178 +#: lib/profileaction.php:180 msgid "User ID" msgstr "ID пользователя" -#: lib/profileaction.php:183 +#: lib/profileaction.php:185 msgid "Member since" msgstr "Регистрация" -#: lib/profileaction.php:245 +#: lib/profileaction.php:247 msgid "All groups" msgstr "Все группы" @@ -6241,7 +6293,12 @@ msgstr "Повторить эту запись?" msgid "Repeat this notice" msgstr "Повторить эту запись" -#: lib/router.php:668 +#: lib/revokeroleform.php:91 +#, fuzzy, php-format +msgid "Revoke the \"%s\" role from this user" +msgstr "Заблокировать этого пользователя из этой группы" + +#: lib/router.php:671 msgid "No single user defined for single-user mode." msgstr "Ни задан пользователь для однопользовательского режима." @@ -6395,47 +6452,64 @@ msgstr "Сообщение" msgid "Moderate" msgstr "Модерировать" -#: lib/util.php:1013 +#: lib/userprofile.php:352 +#, fuzzy +msgid "User role" +msgstr "Профиль пользователя" + +#: lib/userprofile.php:354 +#, fuzzy +msgctxt "role" +msgid "Administrator" +msgstr "Администраторы" + +#: lib/userprofile.php:355 +#, fuzzy +msgctxt "role" +msgid "Moderator" +msgstr "Модерировать" + +#: lib/util.php:1015 msgid "a few seconds ago" msgstr "пару секунд назад" -#: lib/util.php:1015 +#: lib/util.php:1017 msgid "about a minute ago" msgstr "около минуты назад" -#: lib/util.php:1017 +#: lib/util.php:1019 #, php-format msgid "about %d minutes ago" msgstr "около %d минут(ы) назад" -#: lib/util.php:1019 +#: lib/util.php:1021 msgid "about an hour ago" msgstr "около часа назад" -#: lib/util.php:1021 +#: lib/util.php:1023 #, php-format msgid "about %d hours ago" msgstr "около %d часа(ов) назад" -#: lib/util.php:1023 +#: lib/util.php:1025 msgid "about a day ago" msgstr "около дня назад" -#: lib/util.php:1025 +#: lib/util.php:1027 #, php-format msgid "about %d days ago" msgstr "около %d дня(ей) назад" -#: lib/util.php:1027 +#: lib/util.php:1029 msgid "about a month ago" msgstr "около месяца назад" -#: lib/util.php:1029 +#: lib/util.php:1031 #, php-format msgid "about %d months ago" msgstr "около %d месяца(ев) назад" -#: lib/util.php:1031 +#: lib/util.php:1033 msgid "about a year ago" msgstr "около года назад" diff --git a/locale/statusnet.po b/locale/statusnet.po index 3f4ad499f7..b7a421fd47 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: 2010-03-02 21:02+0000\n" +"POT-Creation-Date: 2010-03-04 18:55+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -18,7 +18,8 @@ msgstr "" "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" #. TRANS: Page title -#: actions/accessadminpanel.php:55 +#. TRANS: Menu item for site administration +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 msgid "Access" msgstr "" @@ -113,7 +114,7 @@ msgstr "" #. TRANS: Page title. %1$s is user nickname #. TRANS: H1 text. %1$s is user nickname -#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -168,7 +169,7 @@ msgid "" msgstr "" #. TRANS: H1 text -#: actions/all.php:174 +#: actions/all.php:178 msgid "You and friends" msgstr "" @@ -195,11 +196,11 @@ msgstr "" #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 -#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 +#: actions/apitimelinegroup.php:160 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:148 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 msgid "API method not found." msgstr "" @@ -551,7 +552,7 @@ msgid "" "give access to your %4$s account to third parties you trust." msgstr "" -#: actions/apioauthauthorize.php:310 +#: actions/apioauthauthorize.php:310 lib/action.php:438 msgid "Account" msgstr "" @@ -638,18 +639,6 @@ msgstr "" msgid "%1$s updates favorited by %2$s / %2$s." msgstr "" -#: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:138 actions/userrss.php:90 -#, php-format -msgid "%s timeline" -msgstr "" - -#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 -#: actions/userrss.php:92 -#, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "" - #: actions/apitimelinementions.php:117 #, php-format msgid "%1$s / Updates mentioning %2$s" @@ -660,12 +649,12 @@ msgstr "" msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "" -#: actions/apitimelinepublic.php:111 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "" -#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "" @@ -908,7 +897,7 @@ msgid "Conversation" msgstr "" #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:216 lib/searchgroupnav.php:82 +#: lib/profileaction.php:218 lib/searchgroupnav.php:82 msgid "Notices" msgstr "" @@ -927,7 +916,7 @@ msgstr "" #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1228 +#: lib/action.php:1217 msgid "There was a problem with your session token." msgstr "" @@ -1114,8 +1103,9 @@ msgstr "" #: actions/designadminpanel.php:586 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 +#: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:208 #: actions/tagother.php:154 actions/useradminpanel.php:294 #: lib/applicationeditform.php:333 lib/applicationeditform.php:334 #: lib/designsettings.php:256 lib/groupeditform.php:202 @@ -1231,7 +1221,7 @@ msgstr "" msgid "Could not update group." msgstr "" -#: actions/editgroup.php:264 classes/User_group.php:478 +#: actions/editgroup.php:264 classes/User_group.php:493 msgid "Could not create aliases." msgstr "" @@ -1351,7 +1341,7 @@ msgid "Cannot normalize that email address" msgstr "" #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:143 +#: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "" @@ -1535,6 +1525,22 @@ msgstr "" msgid "Cannot read file." msgstr "" +#: actions/grantrole.php:62 actions/revokerole.php:62 +msgid "Invalid role." +msgstr "" + +#: actions/grantrole.php:66 actions/revokerole.php:66 +msgid "This role is reserved and cannot be set." +msgstr "" + +#: actions/grantrole.php:75 +msgid "You cannot grant user roles on this site." +msgstr "" + +#: actions/grantrole.php:82 +msgid "User already has this role." +msgstr "" + #: actions/groupblock.php:71 actions/groupunblock.php:71 #: actions/makeadmin.php:71 actions/subedit.php:46 #: lib/profileformaction.php:70 @@ -1675,12 +1681,18 @@ msgstr "" msgid "Make this user an admin" msgstr "" +#: actions/grouprss.php:138 actions/userrss.php:90 +#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#, php-format +msgid "%s timeline" +msgstr "" + #: actions/grouprss.php:140 #, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "" -#: actions/groups.php:62 lib/profileaction.php:210 lib/profileaction.php:230 +#: actions/groups.php:62 lib/profileaction.php:212 lib/profileaction.php:232 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" msgstr "" @@ -2230,8 +2242,8 @@ msgstr "" msgid "Only " msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 -#: lib/apiaction.php:1068 lib/apiaction.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1042 +#: lib/apiaction.php:1070 lib/apiaction.php:1179 msgid "Not a supported data format." msgstr "" @@ -2370,7 +2382,8 @@ msgstr "" msgid "Password saved." msgstr "" -#: actions/pathsadminpanel.php:59 +#. TRANS: Menu item for site administration +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 msgid "Paths" msgstr "" @@ -2490,7 +2503,7 @@ msgstr "" msgid "SSL" msgstr "" -#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 +#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202 msgid "Never" msgstr "" @@ -2543,11 +2556,11 @@ msgstr "" msgid "Users self-tagged with %1$s - page %2$d" msgstr "" -#: actions/postnotice.php:84 +#: actions/postnotice.php:95 msgid "Invalid notice content" msgstr "" -#: actions/postnotice.php:90 +#: actions/postnotice.php:101 #, php-format msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" @@ -2623,7 +2636,7 @@ msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" -#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 +#: actions/profilesettings.php:151 msgid "Language" msgstr "" @@ -2649,7 +2662,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "" -#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:151 msgid "Timezone not selected." msgstr "" @@ -2947,7 +2960,7 @@ msgid "Same as password above. Required." msgstr "" #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 msgid "Email" msgstr "" @@ -3031,7 +3044,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:368 +#: lib/userprofile.php:394 msgid "Subscribe" msgstr "" @@ -3127,6 +3140,14 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "" +#: actions/revokerole.php:75 +msgid "You cannot revoke user roles on this site." +msgstr "" + +#: actions/revokerole.php:82 +msgid "User doesn't have this role." +msgstr "" + #: actions/rsd.php:146 actions/version.php:157 msgid "StatusNet" msgstr "" @@ -3139,7 +3160,9 @@ msgstr "" msgid "User is already sandboxed." msgstr "" +#. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:390 msgid "Sessions" msgstr "" @@ -3163,7 +3186,7 @@ msgstr "" msgid "Turn on debugging output for sessions." msgstr "" -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "" @@ -3194,8 +3217,8 @@ msgstr "" msgid "Description" msgstr "" -#: actions/showapplication.php:192 actions/showgroup.php:437 -#: lib/profileaction.php:174 +#: actions/showapplication.php:192 actions/showgroup.php:438 +#: lib/profileaction.php:176 msgid "Statistics" msgstr "" @@ -3327,45 +3350,45 @@ msgstr "" msgid "Group actions" msgstr "" -#: actions/showgroup.php:336 +#: actions/showgroup.php:337 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "" -#: actions/showgroup.php:342 +#: actions/showgroup.php:343 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "" -#: actions/showgroup.php:348 +#: actions/showgroup.php:349 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "" -#: actions/showgroup.php:353 +#: actions/showgroup.php:354 #, php-format msgid "FOAF for %s group" msgstr "" -#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 +#: actions/showgroup.php:390 actions/showgroup.php:447 lib/groupnav.php:91 msgid "Members" msgstr "" -#: actions/showgroup.php:394 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 +#: actions/showgroup.php:395 lib/profileaction.php:117 +#: lib/profileaction.php:150 lib/profileaction.php:238 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "" -#: actions/showgroup.php:400 +#: actions/showgroup.php:401 msgid "All members" msgstr "" -#: actions/showgroup.php:440 +#: actions/showgroup.php:441 msgid "Created" msgstr "" -#: actions/showgroup.php:456 +#: actions/showgroup.php:457 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3375,7 +3398,7 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showgroup.php:462 +#: actions/showgroup.php:463 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3384,7 +3407,7 @@ msgid "" "their life and interests. " msgstr "" -#: actions/showgroup.php:490 +#: actions/showgroup.php:491 msgid "Admins" msgstr "" @@ -3494,146 +3517,130 @@ msgid "User is already silenced." msgstr "" #: actions/siteadminpanel.php:69 -msgid "Basic settings for this StatusNet site." +msgid "Basic settings for this StatusNet site" msgstr "" -#: actions/siteadminpanel.php:132 +#: actions/siteadminpanel.php:133 msgid "Site name must have non-zero length." msgstr "" -#: actions/siteadminpanel.php:140 +#: actions/siteadminpanel.php:141 msgid "You must have a valid contact email address." msgstr "" -#: actions/siteadminpanel.php:158 +#: actions/siteadminpanel.php:159 #, php-format msgid "Unknown language \"%s\"." msgstr "" #: actions/siteadminpanel.php:165 -msgid "Invalid snapshot report URL." -msgstr "" - -#: actions/siteadminpanel.php:171 -msgid "Invalid snapshot run value." -msgstr "" - -#: actions/siteadminpanel.php:177 -msgid "Snapshot frequency must be a number." -msgstr "" - -#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "" -#: actions/siteadminpanel.php:189 +#: actions/siteadminpanel.php:171 msgid "Dupe limit must 1 or more seconds." msgstr "" -#: actions/siteadminpanel.php:239 +#: actions/siteadminpanel.php:221 msgid "General" msgstr "" -#: actions/siteadminpanel.php:242 +#: actions/siteadminpanel.php:224 msgid "Site name" msgstr "" -#: actions/siteadminpanel.php:243 +#: actions/siteadminpanel.php:225 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "" -#: actions/siteadminpanel.php:247 +#: actions/siteadminpanel.php:229 msgid "Brought by" msgstr "" -#: actions/siteadminpanel.php:248 +#: actions/siteadminpanel.php:230 msgid "Text used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:252 +#: actions/siteadminpanel.php:234 msgid "Brought by URL" msgstr "" -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:235 msgid "URL used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:239 msgid "Contact email address for your site" msgstr "" -#: actions/siteadminpanel.php:263 +#: actions/siteadminpanel.php:245 msgid "Local" msgstr "" -#: actions/siteadminpanel.php:274 +#: actions/siteadminpanel.php:256 msgid "Default timezone" msgstr "" -#: actions/siteadminpanel.php:275 +#: actions/siteadminpanel.php:257 msgid "Default timezone for the site; usually UTC." msgstr "" -#: actions/siteadminpanel.php:281 -msgid "Default site language" +#: actions/siteadminpanel.php:262 +msgid "Default language" msgstr "" -#: actions/siteadminpanel.php:289 -msgid "Snapshots" +#: actions/siteadminpanel.php:263 +msgid "Site language when autodetection from browser settings is not available" msgstr "" -#: actions/siteadminpanel.php:292 -msgid "Randomly during Web hit" -msgstr "" - -#: actions/siteadminpanel.php:293 -msgid "In a scheduled job" -msgstr "" - -#: actions/siteadminpanel.php:295 -msgid "Data snapshots" -msgstr "" - -#: actions/siteadminpanel.php:296 -msgid "When to send statistical data to status.net servers" -msgstr "" - -#: actions/siteadminpanel.php:301 -msgid "Frequency" -msgstr "" - -#: actions/siteadminpanel.php:302 -msgid "Snapshots will be sent once every N web hits" -msgstr "" - -#: actions/siteadminpanel.php:307 -msgid "Report URL" -msgstr "" - -#: actions/siteadminpanel.php:308 -msgid "Snapshots will be sent to this URL" -msgstr "" - -#: actions/siteadminpanel.php:315 +#: actions/siteadminpanel.php:271 msgid "Limits" msgstr "" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Text limit" msgstr "" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Maximum number of characters for notices." msgstr "" -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "Dupe limit" msgstr "" -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" +#: actions/sitenoticeadminpanel.php:56 +msgid "Site Notice" +msgstr "" + +#: actions/sitenoticeadminpanel.php:67 +msgid "Edit site-wide message" +msgstr "" + +#: actions/sitenoticeadminpanel.php:103 +msgid "Unable to save site notice." +msgstr "" + +#: actions/sitenoticeadminpanel.php:113 +msgid "Max length for the site-wide notice is 255 chars" +msgstr "" + +#: actions/sitenoticeadminpanel.php:176 +msgid "Site notice text" +msgstr "" + +#: actions/sitenoticeadminpanel.php:178 +msgid "Site-wide notice text (255 chars max; HTML okay)" +msgstr "" + +#: actions/sitenoticeadminpanel.php:198 +msgid "Save site notice" +msgstr "" + #: actions/smssettings.php:58 msgid "SMS settings" msgstr "" @@ -3726,6 +3733,64 @@ msgstr "" msgid "No code entered" msgstr "" +#. TRANS: Menu item for site administration +#: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 +#: lib/adminpanelaction.php:406 +msgid "Snapshots" +msgstr "" + +#: actions/snapshotadminpanel.php:65 +msgid "Manage snapshot configuration" +msgstr "" + +#: actions/snapshotadminpanel.php:127 +msgid "Invalid snapshot run value." +msgstr "" + +#: actions/snapshotadminpanel.php:133 +msgid "Snapshot frequency must be a number." +msgstr "" + +#: actions/snapshotadminpanel.php:144 +msgid "Invalid snapshot report URL." +msgstr "" + +#: actions/snapshotadminpanel.php:200 +msgid "Randomly during Web hit" +msgstr "" + +#: actions/snapshotadminpanel.php:201 +msgid "In a scheduled job" +msgstr "" + +#: actions/snapshotadminpanel.php:206 +msgid "Data snapshots" +msgstr "" + +#: actions/snapshotadminpanel.php:208 +msgid "When to send statistical data to status.net servers" +msgstr "" + +#: actions/snapshotadminpanel.php:217 +msgid "Frequency" +msgstr "" + +#: actions/snapshotadminpanel.php:218 +msgid "Snapshots will be sent once every N web hits" +msgstr "" + +#: actions/snapshotadminpanel.php:226 +msgid "Report URL" +msgstr "" + +#: actions/snapshotadminpanel.php:227 +msgid "Snapshots will be sent to this URL" +msgstr "" + +#: actions/snapshotadminpanel.php:248 +msgid "Save snapshot settings" +msgstr "" + #: actions/subedit.php:70 msgid "You are not subscribed to that profile." msgstr "" @@ -3919,7 +3984,7 @@ msgstr "" msgid "Unsubscribed" msgstr "" -#: actions/updateprofile.php:62 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -4109,16 +4174,22 @@ msgstr "" msgid "Search for more groups" msgstr "" -#: actions/usergroups.php:153 +#: actions/usergroups.php:157 #, php-format msgid "%s is not a member of any group." msgstr "" -#: actions/usergroups.php:158 +#: actions/usergroups.php:162 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" +#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: lib/atomusernoticefeed.php:72 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "" + #: actions/version.php:73 #, php-format msgid "StatusNet %s" @@ -4162,7 +4233,7 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:196 lib/action.php:778 +#: actions/version.php:196 lib/action.php:767 msgid "Version" msgstr "" @@ -4225,38 +4296,38 @@ msgstr "" msgid "DB error inserting hashtag: %s" msgstr "" -#: classes/Notice.php:239 +#: classes/Notice.php:241 msgid "Problem saving notice. Too long." msgstr "" -#: classes/Notice.php:243 +#: classes/Notice.php:245 msgid "Problem saving notice. Unknown user." msgstr "" -#: classes/Notice.php:248 +#: classes/Notice.php:250 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: classes/Notice.php:254 +#: classes/Notice.php:256 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." msgstr "" -#: classes/Notice.php:260 +#: classes/Notice.php:262 msgid "You are banned from posting notices on this site." msgstr "" -#: classes/Notice.php:326 classes/Notice.php:352 +#: classes/Notice.php:328 classes/Notice.php:354 msgid "Problem saving notice." msgstr "" -#: classes/Notice.php:911 +#: classes/Notice.php:927 msgid "Problem saving group inbox." msgstr "" -#: classes/Notice.php:1442 +#: classes/Notice.php:1459 #, php-format msgid "RT @%1$s %2$s" msgstr "" @@ -4281,7 +4352,11 @@ msgstr "" msgid "Couldn't delete self-subscription." msgstr "" -#: classes/Subscription.php:179 lib/subs.php:69 +#: classes/Subscription.php:190 +msgid "Couldn't delete subscription OMB token." +msgstr "" + +#: classes/Subscription.php:201 lib/subs.php:69 msgid "Couldn't delete subscription." msgstr "" @@ -4290,19 +4365,19 @@ msgstr "" msgid "Welcome to %1$s, @%2$s!" msgstr "" -#: classes/User_group.php:462 +#: classes/User_group.php:477 msgid "Could not create group." msgstr "" -#: classes/User_group.php:471 +#: classes/User_group.php:486 msgid "Could not set group URI." msgstr "" -#: classes/User_group.php:492 +#: classes/User_group.php:507 msgid "Could not set group membership." msgstr "" -#: classes/User_group.php:506 +#: classes/User_group.php:521 msgid "Could not save local group info." msgstr "" @@ -4343,187 +4418,182 @@ msgstr "" msgid "Untitled page" msgstr "" -#: lib/action.php:433 +#: lib/action.php:424 msgid "Primary site navigation" msgstr "" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:439 +#: lib/action.php:430 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:442 +#: lib/action.php:433 msgctxt "MENU" msgid "Personal" msgstr "" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:444 +#: lib/action.php:435 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "" -#: lib/action.php:447 -msgctxt "MENU" -msgid "Account" -msgstr "" - #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:450 +#: lib/action.php:440 msgctxt "TOOLTIP" msgid "Connect to services" msgstr "" -#: lib/action.php:453 -msgctxt "MENU" +#: lib/action.php:443 msgid "Connect" msgstr "" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:457 +#: lib/action.php:446 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "" -#: lib/action.php:460 +#: lib/action.php:449 msgctxt "MENU" msgid "Admin" msgstr "" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:464 +#: lib/action.php:453 #, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "" -#: lib/action.php:467 +#: lib/action.php:456 msgctxt "MENU" msgid "Invite" msgstr "" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:473 +#: lib/action.php:462 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "" -#: lib/action.php:476 +#: lib/action.php:465 msgctxt "MENU" msgid "Logout" msgstr "" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:481 +#: lib/action.php:470 msgctxt "TOOLTIP" msgid "Create an account" msgstr "" -#: lib/action.php:484 +#: lib/action.php:473 msgctxt "MENU" msgid "Register" msgstr "" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:487 +#: lib/action.php:476 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "" -#: lib/action.php:490 +#: lib/action.php:479 msgctxt "MENU" msgid "Login" msgstr "" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:493 +#: lib/action.php:482 msgctxt "TOOLTIP" msgid "Help me!" msgstr "" -#: lib/action.php:496 +#: lib/action.php:485 msgctxt "MENU" msgid "Help" msgstr "" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:499 +#: lib/action.php:488 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "" -#: lib/action.php:502 +#: lib/action.php:491 msgctxt "MENU" msgid "Search" msgstr "" #. TRANS: DT element for site notice. String is hidden in default CSS. -#: lib/action.php:524 +#. TRANS: Menu item for site administration +#: lib/action.php:513 lib/adminpanelaction.php:398 msgid "Site notice" msgstr "" -#: lib/action.php:590 +#: lib/action.php:579 msgid "Local views" msgstr "" -#: lib/action.php:656 +#: lib/action.php:645 msgid "Page notice" msgstr "" -#: lib/action.php:758 +#: lib/action.php:747 msgid "Secondary site navigation" msgstr "" -#: lib/action.php:763 +#: lib/action.php:752 msgid "Help" msgstr "" -#: lib/action.php:765 +#: lib/action.php:754 msgid "About" msgstr "" -#: lib/action.php:767 +#: lib/action.php:756 msgid "FAQ" msgstr "" -#: lib/action.php:771 +#: lib/action.php:760 msgid "TOS" msgstr "" -#: lib/action.php:774 +#: lib/action.php:763 msgid "Privacy" msgstr "" -#: lib/action.php:776 +#: lib/action.php:765 msgid "Source" msgstr "" -#: lib/action.php:780 +#: lib/action.php:769 msgid "Contact" msgstr "" -#: lib/action.php:782 +#: lib/action.php:771 msgid "Badge" msgstr "" -#: lib/action.php:810 +#: lib/action.php:799 msgid "StatusNet software license" msgstr "" -#: lib/action.php:813 +#: lib/action.php:802 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." "broughtby%%](%%site.broughtbyurl%%). " msgstr "" -#: lib/action.php:815 +#: lib/action.php:804 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "" -#: lib/action.php:817 +#: lib/action.php:806 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4531,53 +4601,53 @@ msgid "" "org/licensing/licenses/agpl-3.0.html)." msgstr "" -#: lib/action.php:832 +#: lib/action.php:821 msgid "Site content license" msgstr "" -#: lib/action.php:837 +#: lib/action.php:826 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:842 +#: lib/action.php:831 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:845 +#: lib/action.php:834 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" -#: lib/action.php:858 +#: lib/action.php:847 msgid "All " msgstr "" -#: lib/action.php:864 +#: lib/action.php:853 msgid "license." msgstr "" -#: lib/action.php:1163 +#: lib/action.php:1152 msgid "Pagination" msgstr "" -#: lib/action.php:1172 +#: lib/action.php:1161 msgid "After" msgstr "" -#: lib/action.php:1180 +#: lib/action.php:1169 msgid "Before" msgstr "" -#: lib/activity.php:449 +#: lib/activity.php:453 msgid "Can't handle remote content yet." msgstr "" -#: lib/activity.php:477 +#: lib/activity.php:481 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activity.php:481 +#: lib/activity.php:485 msgid "Can't handle embedded Base64 content yet." msgstr "" @@ -4592,84 +4662,75 @@ msgid "Changes to that panel are not allowed." msgstr "" #. TRANS: Client error message -#: lib/adminpanelaction.php:211 +#: lib/adminpanelaction.php:229 msgid "showForm() not implemented." msgstr "" #. TRANS: Client error message -#: lib/adminpanelaction.php:241 +#: lib/adminpanelaction.php:259 msgid "saveSettings() not implemented." msgstr "" #. TRANS: Client error message -#: lib/adminpanelaction.php:265 +#: lib/adminpanelaction.php:283 msgid "Unable to delete design setting." msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:330 +#: lib/adminpanelaction.php:348 msgid "Basic site configuration" msgstr "" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:332 +#: lib/adminpanelaction.php:350 msgctxt "MENU" msgid "Site" msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:338 +#: lib/adminpanelaction.php:356 msgid "Design configuration" msgstr "" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:340 +#: lib/adminpanelaction.php:358 msgctxt "MENU" msgid "Design" msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:346 +#: lib/adminpanelaction.php:364 msgid "User configuration" msgstr "" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:348 -msgctxt "MENU" +#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 msgid "User" msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:354 +#: lib/adminpanelaction.php:372 msgid "Access configuration" msgstr "" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:356 -msgctxt "MENU" -msgid "Access" -msgstr "" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:362 +#: lib/adminpanelaction.php:380 msgid "Paths configuration" msgstr "" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:364 -msgctxt "MENU" -msgid "Paths" -msgstr "" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:370 +#: lib/adminpanelaction.php:388 msgid "Sessions configuration" msgstr "" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:372 -msgctxt "MENU" -msgid "Sessions" +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:396 +msgid "Edit site notice" +msgstr "" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:404 +msgid "Snapshots configuration" msgstr "" #: lib/apiauth.php:94 @@ -5151,6 +5212,11 @@ msgstr "" msgid "Go" msgstr "" +#: lib/grantroleform.php:91 +#, php-format +msgid "Grant this user the \"%s\" role" +msgstr "" + #: lib/groupeditform.php:163 msgid "URL of the homepage or blog of the group or topic" msgstr "" @@ -5674,10 +5740,6 @@ msgstr "" msgid "Favorites" msgstr "" -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "" - #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "" @@ -5703,7 +5765,7 @@ msgstr "" msgid "Unknown" msgstr "" -#: lib/profileaction.php:109 lib/profileaction.php:192 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:194 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "" @@ -5711,23 +5773,23 @@ msgstr "" msgid "All subscriptions" msgstr "" -#: lib/profileaction.php:140 lib/profileaction.php:201 lib/subgroupnav.php:90 +#: lib/profileaction.php:142 lib/profileaction.php:203 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "" -#: lib/profileaction.php:157 +#: lib/profileaction.php:159 msgid "All subscribers" msgstr "" -#: lib/profileaction.php:178 +#: lib/profileaction.php:180 msgid "User ID" msgstr "" -#: lib/profileaction.php:183 +#: lib/profileaction.php:185 msgid "Member since" msgstr "" -#: lib/profileaction.php:245 +#: lib/profileaction.php:247 msgid "All groups" msgstr "" @@ -5767,7 +5829,12 @@ msgstr "" msgid "Repeat this notice" msgstr "" -#: lib/router.php:668 +#: lib/revokeroleform.php:91 +#, php-format +msgid "Revoke the \"%s\" role from this user" +msgstr "" + +#: lib/router.php:671 msgid "No single user defined for single-user mode." msgstr "" @@ -5921,47 +5988,61 @@ msgstr "" msgid "Moderate" msgstr "" -#: lib/util.php:1013 -msgid "a few seconds ago" +#: lib/userprofile.php:352 +msgid "User role" +msgstr "" + +#: lib/userprofile.php:354 +msgctxt "role" +msgid "Administrator" +msgstr "" + +#: lib/userprofile.php:355 +msgctxt "role" +msgid "Moderator" msgstr "" #: lib/util.php:1015 -msgid "about a minute ago" +msgid "a few seconds ago" msgstr "" #: lib/util.php:1017 +msgid "about a minute ago" +msgstr "" + +#: lib/util.php:1019 #, php-format msgid "about %d minutes ago" msgstr "" -#: lib/util.php:1019 +#: lib/util.php:1021 msgid "about an hour ago" msgstr "" -#: lib/util.php:1021 +#: lib/util.php:1023 #, php-format msgid "about %d hours ago" msgstr "" -#: lib/util.php:1023 +#: lib/util.php:1025 msgid "about a day ago" msgstr "" -#: lib/util.php:1025 +#: lib/util.php:1027 #, php-format msgid "about %d days ago" msgstr "" -#: lib/util.php:1027 +#: lib/util.php:1029 msgid "about a month ago" msgstr "" -#: lib/util.php:1029 +#: lib/util.php:1031 #, php-format msgid "about %d months ago" msgstr "" -#: lib/util.php:1031 +#: lib/util.php:1033 msgid "about a year ago" msgstr "" diff --git a/locale/sv/LC_MESSAGES/statusnet.po b/locale/sv/LC_MESSAGES/statusnet.po index b1ac66f651..b9f921c7f6 100644 --- a/locale/sv/LC_MESSAGES/statusnet.po +++ b/locale/sv/LC_MESSAGES/statusnet.po @@ -9,19 +9,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-02 21:02+0000\n" -"PO-Revision-Date: 2010-03-02 21:03:47+0000\n" +"POT-Creation-Date: 2010-03-04 18:55+0000\n" +"PO-Revision-Date: 2010-03-04 18:57:20+0000\n" "Language-Team: Swedish\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. TRANS: Page title -#: actions/accessadminpanel.php:55 +#. TRANS: Menu item for site administration +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 msgid "Access" msgstr "Åtkomst" @@ -43,7 +44,6 @@ msgstr "" #. TRANS: Checkbox label for prohibiting anonymous users from viewing site. #: actions/accessadminpanel.php:167 -#, fuzzy msgctxt "LABEL" msgid "Private" msgstr "Privat" @@ -74,7 +74,6 @@ msgid "Save access settings" msgstr "Spara inställningar för åtkomst" #: actions/accessadminpanel.php:203 -#, fuzzy msgctxt "BUTTON" msgid "Save" msgstr "Spara" @@ -119,7 +118,7 @@ msgstr "%1$s och vänner, sida %2$d" #. TRANS: Page title. %1$s is user nickname #. TRANS: H1 text. %1$s is user nickname -#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -181,7 +180,7 @@ msgstr "" "%s eller skriva en notis för hans eller hennes uppmärksamhet." #. TRANS: H1 text -#: actions/all.php:174 +#: actions/all.php:178 msgid "You and friends" msgstr "Du och vänner" @@ -208,11 +207,11 @@ msgstr "Uppdateringar från %1$s och vänner på %2$s!" #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 -#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 +#: actions/apitimelinegroup.php:160 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:148 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 msgid "API method not found." msgstr "API-metod hittades inte." @@ -570,7 +569,7 @@ msgstr "" "möjligheten att %3$s din %4$s kontoinformation. Du bör bara " "ge tillgång till ditt %4$s-konto till tredje-parter du litar på." -#: actions/apioauthauthorize.php:310 +#: actions/apioauthauthorize.php:310 lib/action.php:438 msgid "Account" msgstr "Konto" @@ -657,18 +656,6 @@ msgstr "%1$s / Favoriter från %2$s" msgid "%1$s updates favorited by %2$s / %2$s." msgstr "%1$s uppdateringar markerade som favorit av %2$s / %2$s." -#: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:138 actions/userrss.php:90 -#, php-format -msgid "%s timeline" -msgstr "%s tidslinje" - -#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 -#: actions/userrss.php:92 -#, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "Uppdateringar från %1$s på %2$s!" - #: actions/apitimelinementions.php:117 #, php-format msgid "%1$s / Updates mentioning %2$s" @@ -679,12 +666,12 @@ msgstr "%1$s / Uppdateringar som nämner %2$s" msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "%1$s uppdateringar med svar på uppdatering från %2$s / %3$s." -#: actions/apitimelinepublic.php:111 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "%s publika tidslinje" -#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "%s uppdateringar från alla!" @@ -932,7 +919,7 @@ msgid "Conversation" msgstr "Konversationer" #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:216 lib/searchgroupnav.php:82 +#: lib/profileaction.php:218 lib/searchgroupnav.php:82 msgid "Notices" msgstr "Notiser" @@ -951,7 +938,7 @@ msgstr "Du är inte ägaren av denna applikation." #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1228 +#: lib/action.php:1217 msgid "There was a problem with your session token." msgstr "Det var ett problem med din sessions-token." @@ -1147,8 +1134,9 @@ msgstr "Återställ till standardvärde" #: actions/designadminpanel.php:586 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 +#: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:208 #: actions/tagother.php:154 actions/useradminpanel.php:294 #: lib/applicationeditform.php:333 lib/applicationeditform.php:334 #: lib/designsettings.php:256 lib/groupeditform.php:202 @@ -1264,7 +1252,7 @@ msgstr "beskrivning är för lång (max %d tecken)." msgid "Could not update group." msgstr "Kunde inte uppdatera grupp." -#: actions/editgroup.php:264 classes/User_group.php:478 +#: actions/editgroup.php:264 classes/User_group.php:493 msgid "Could not create aliases." msgstr "Kunde inte skapa alias." @@ -1387,7 +1375,7 @@ msgid "Cannot normalize that email address" msgstr "Kan inte normalisera den e-postadressen" #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:143 +#: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Inte en giltig e-postadress." @@ -1580,6 +1568,25 @@ msgstr "Ingen sådan fil." msgid "Cannot read file." msgstr "Kan inte läsa fil." +#: actions/grantrole.php:62 actions/revokerole.php:62 +#, fuzzy +msgid "Invalid role." +msgstr "Ogiltig token." + +#: actions/grantrole.php:66 actions/revokerole.php:66 +msgid "This role is reserved and cannot be set." +msgstr "" + +#: actions/grantrole.php:75 +#, fuzzy +msgid "You cannot grant user roles on this site." +msgstr "Du kan inte flytta användare till sandlådan på denna webbplats." + +#: actions/grantrole.php:82 +#, fuzzy +msgid "User already has this role." +msgstr "Användaren är redan nedtystad." + #: actions/groupblock.php:71 actions/groupunblock.php:71 #: actions/makeadmin.php:71 actions/subedit.php:46 #: lib/profileformaction.php:70 @@ -1726,12 +1733,18 @@ msgstr "Gör till administratör" msgid "Make this user an admin" msgstr "Gör denna användare till administratör" +#: actions/grouprss.php:138 actions/userrss.php:90 +#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#, php-format +msgid "%s timeline" +msgstr "%s tidslinje" + #: actions/grouprss.php:140 #, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Uppdateringar från medlemmar i %1$s på %2$s!" -#: actions/groups.php:62 lib/profileaction.php:210 lib/profileaction.php:230 +#: actions/groups.php:62 lib/profileaction.php:212 lib/profileaction.php:232 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" msgstr "Grupper" @@ -1993,7 +2006,6 @@ msgstr "Om du vill, skriv ett personligt meddelande till inbjudan." #. TRANS: Send button for inviting friends #: actions/invite.php:198 -#, fuzzy msgctxt "BUTTON" msgid "Send" msgstr "Skicka" @@ -2352,8 +2364,8 @@ msgstr "innehållstyp " msgid "Only " msgstr "Bara " -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 -#: lib/apiaction.php:1068 lib/apiaction.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1042 +#: lib/apiaction.php:1070 lib/apiaction.php:1179 msgid "Not a supported data format." msgstr "Ett dataformat som inte stödjs" @@ -2492,7 +2504,8 @@ msgstr "Kan inte spara nytt lösenord." msgid "Password saved." msgstr "Lösenord sparat." -#: actions/pathsadminpanel.php:59 +#. TRANS: Menu item for site administration +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 msgid "Paths" msgstr "Sökvägar" @@ -2613,7 +2626,7 @@ msgstr "Katalog med bakgrunder" msgid "SSL" msgstr "SSL" -#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 +#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202 msgid "Never" msgstr "Aldrig" @@ -2668,11 +2681,11 @@ msgstr "Inte en giltig persontagg: %s" msgid "Users self-tagged with %1$s - page %2$d" msgstr "Användare som taggat sig själv med %1$s - sida %2$d" -#: actions/postnotice.php:84 +#: actions/postnotice.php:95 msgid "Invalid notice content" msgstr "Ogiltigt notisinnehåll" -#: actions/postnotice.php:90 +#: actions/postnotice.php:101 #, php-format msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "Licensen för notiser ‘%1$s’ är inte förenlig webbplatslicensen ‘%2$s’." @@ -2752,7 +2765,7 @@ msgstr "" "Taggar för dig själv (bokstäver, nummer, -, ., och _), separerade med " "kommatecken eller mellanslag" -#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 +#: actions/profilesettings.php:151 msgid "Language" msgstr "Språk" @@ -2780,7 +2793,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "Biografin är för lång (max %d tecken)." -#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:151 msgid "Timezone not selected." msgstr "Tidszon inte valt." @@ -3100,7 +3113,7 @@ msgid "Same as password above. Required." msgstr "Samma som lösenordet ovan. Måste fyllas i." #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 msgid "Email" msgstr "E-post" @@ -3208,7 +3221,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "URL till din profil på en annan kompatibel mikrobloggtjänst" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:368 +#: lib/userprofile.php:394 msgid "Subscribe" msgstr "Prenumerera" @@ -3312,6 +3325,16 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "Svar till %1$s på %2$s" +#: actions/revokerole.php:75 +#, fuzzy +msgid "You cannot revoke user roles on this site." +msgstr "Du kan inte tysta ned användare på denna webbplats." + +#: actions/revokerole.php:82 +#, fuzzy +msgid "User doesn't have this role." +msgstr "Användare utan matchande profil." + #: actions/rsd.php:146 actions/version.php:157 msgid "StatusNet" msgstr "StatusNet" @@ -3324,7 +3347,9 @@ msgstr "Du kan inte flytta användare till sandlådan på denna webbplats." msgid "User is already sandboxed." msgstr "Användare är redan flyttad till sandlådan." +#. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:390 msgid "Sessions" msgstr "Sessioner" @@ -3348,7 +3373,7 @@ msgstr "Sessionsfelsökning" msgid "Turn on debugging output for sessions." msgstr "Sätt på felsökningsutdata för sessioner." -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "Spara webbplatsinställningar" @@ -3379,8 +3404,8 @@ msgstr "Organisation" msgid "Description" msgstr "Beskrivning" -#: actions/showapplication.php:192 actions/showgroup.php:437 -#: lib/profileaction.php:174 +#: actions/showapplication.php:192 actions/showgroup.php:438 +#: lib/profileaction.php:176 msgid "Statistics" msgstr "Statistik" @@ -3523,45 +3548,45 @@ msgstr "Alias" msgid "Group actions" msgstr "Åtgärder för grupp" -#: actions/showgroup.php:336 +#: actions/showgroup.php:337 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Flöde av notiser för %s grupp (RSS 1.0)" -#: actions/showgroup.php:342 +#: actions/showgroup.php:343 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Flöde av notiser för %s grupp (RSS 2.0)" -#: actions/showgroup.php:348 +#: actions/showgroup.php:349 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "Flöde av notiser för %s grupp (Atom)" -#: actions/showgroup.php:353 +#: actions/showgroup.php:354 #, php-format msgid "FOAF for %s group" msgstr "FOAF för %s grupp" -#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 +#: actions/showgroup.php:390 actions/showgroup.php:447 lib/groupnav.php:91 msgid "Members" msgstr "Medlemmar" -#: actions/showgroup.php:394 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 +#: actions/showgroup.php:395 lib/profileaction.php:117 +#: lib/profileaction.php:150 lib/profileaction.php:238 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(Ingen)" -#: actions/showgroup.php:400 +#: actions/showgroup.php:401 msgid "All members" msgstr "Alla medlemmar" -#: actions/showgroup.php:440 +#: actions/showgroup.php:441 msgid "Created" msgstr "Skapad" -#: actions/showgroup.php:456 +#: actions/showgroup.php:457 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3576,7 +3601,7 @@ msgstr "" "sina liv och intressen. [Gå med nu](%%%%action.register%%%%) för att bli en " "del av denna grupp och många fler! ([Läs mer](%%%%doc.help%%%%))" -#: actions/showgroup.php:462 +#: actions/showgroup.php:463 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3589,7 +3614,7 @@ msgstr "" "[StatusNet](http://status.net/). Dess medlemmar delar korta meddelande om " "sina liv och intressen. " -#: actions/showgroup.php:490 +#: actions/showgroup.php:491 msgid "Admins" msgstr "Administratörer" @@ -3710,147 +3735,138 @@ msgid "User is already silenced." msgstr "Användaren är redan nedtystad." #: actions/siteadminpanel.php:69 -msgid "Basic settings for this StatusNet site." +#, fuzzy +msgid "Basic settings for this StatusNet site" msgstr "Grundinställningar för din StatusNet-webbplats" -#: actions/siteadminpanel.php:132 +#: actions/siteadminpanel.php:133 msgid "Site name must have non-zero length." msgstr "Webbplatsnamnet måste vara minst ett tecken långt." -#: actions/siteadminpanel.php:140 +#: actions/siteadminpanel.php:141 msgid "You must have a valid contact email address." msgstr "Du måste ha en giltig e-postadress." -#: actions/siteadminpanel.php:158 +#: actions/siteadminpanel.php:159 #, php-format msgid "Unknown language \"%s\"." msgstr "Okänt språk \"%s\"." #: actions/siteadminpanel.php:165 -msgid "Invalid snapshot report URL." -msgstr "Ogiltig rapport-URL för ögonblicksbild" - -#: actions/siteadminpanel.php:171 -msgid "Invalid snapshot run value." -msgstr "Ogiltigt körvärde för ögonblicksbild." - -#: actions/siteadminpanel.php:177 -msgid "Snapshot frequency must be a number." -msgstr "Frekvens för ögonblicksbilder måste vara ett nummer." - -#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "Minsta textbegränsning är 140 tecken." -#: actions/siteadminpanel.php:189 +#: actions/siteadminpanel.php:171 msgid "Dupe limit must 1 or more seconds." msgstr "Begränsning av duplikat måste vara en eller fler sekuner." -#: actions/siteadminpanel.php:239 +#: actions/siteadminpanel.php:221 msgid "General" msgstr "Allmänt" -#: actions/siteadminpanel.php:242 +#: actions/siteadminpanel.php:224 msgid "Site name" msgstr "Webbplatsnamn" -#: actions/siteadminpanel.php:243 +#: actions/siteadminpanel.php:225 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "Namnet på din webbplats, t.ex. \"Företagsnamn mikroblogg\"" -#: actions/siteadminpanel.php:247 +#: actions/siteadminpanel.php:229 msgid "Brought by" msgstr "Tillhandahållen av" -#: actions/siteadminpanel.php:248 +#: actions/siteadminpanel.php:230 msgid "Text used for credits link in footer of each page" msgstr "Text som används för tillskrivningslänkar i sidfoten på varje sida." -#: actions/siteadminpanel.php:252 +#: actions/siteadminpanel.php:234 msgid "Brought by URL" msgstr "Tillhandahållen av URL" -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:235 msgid "URL used for credits link in footer of each page" msgstr "URL som används för tillskrivningslänkar i sidfoten på varje sida" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:239 msgid "Contact email address for your site" msgstr "Kontakte-postadress för din webbplats" -#: actions/siteadminpanel.php:263 +#: actions/siteadminpanel.php:245 msgid "Local" msgstr "Lokal" -#: actions/siteadminpanel.php:274 +#: actions/siteadminpanel.php:256 msgid "Default timezone" msgstr "Standardtidszon" -#: actions/siteadminpanel.php:275 +#: actions/siteadminpanel.php:257 msgid "Default timezone for the site; usually UTC." msgstr "Standardtidzon för denna webbplats; vanligtvis UTC." -#: actions/siteadminpanel.php:281 -msgid "Default site language" +#: actions/siteadminpanel.php:262 +#, fuzzy +msgid "Default language" msgstr "Webbplatsens standardspråk" -#: actions/siteadminpanel.php:289 -msgid "Snapshots" -msgstr "Ögonblicksbild" +#: actions/siteadminpanel.php:263 +msgid "Site language when autodetection from browser settings is not available" +msgstr "" -#: actions/siteadminpanel.php:292 -msgid "Randomly during Web hit" -msgstr "Slumpmässigt vid webbförfrågningar" - -#: actions/siteadminpanel.php:293 -msgid "In a scheduled job" -msgstr "I ett schemalagt jobb" - -#: actions/siteadminpanel.php:295 -msgid "Data snapshots" -msgstr "Ögonblicksbild av data" - -#: actions/siteadminpanel.php:296 -msgid "When to send statistical data to status.net servers" -msgstr "När statistikdata skall skickas till status.net-servrar" - -#: actions/siteadminpanel.php:301 -msgid "Frequency" -msgstr "Frekvens" - -#: actions/siteadminpanel.php:302 -msgid "Snapshots will be sent once every N web hits" -msgstr "Ögonblicksbild kommer skickas var N:te webbträff" - -#: actions/siteadminpanel.php:307 -msgid "Report URL" -msgstr "URL för rapport" - -#: actions/siteadminpanel.php:308 -msgid "Snapshots will be sent to this URL" -msgstr "Ögonblicksbild kommer skickat till denna URL" - -#: actions/siteadminpanel.php:315 +#: actions/siteadminpanel.php:271 msgid "Limits" msgstr "Begränsningar" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Text limit" msgstr "Textbegränsning" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Maximum number of characters for notices." msgstr "Maximala antalet tecken för notiser." -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "Dupe limit" msgstr "Duplikatbegränsning" -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" "Hur länge användare måste vänta (i sekunder) för att posta samma sak igen." +#: actions/sitenoticeadminpanel.php:56 +#, fuzzy +msgid "Site Notice" +msgstr "Webbplatsnotis" + +#: actions/sitenoticeadminpanel.php:67 +#, fuzzy +msgid "Edit site-wide message" +msgstr "Nytt meddelande" + +#: actions/sitenoticeadminpanel.php:103 +#, fuzzy +msgid "Unable to save site notice." +msgstr "Kunde inte spara dina utseendeinställningar." + +#: actions/sitenoticeadminpanel.php:113 +msgid "Max length for the site-wide notice is 255 chars" +msgstr "" + +#: actions/sitenoticeadminpanel.php:176 +#, fuzzy +msgid "Site notice text" +msgstr "Webbplatsnotis" + +#: actions/sitenoticeadminpanel.php:178 +msgid "Site-wide notice text (255 chars max; HTML okay)" +msgstr "" + +#: actions/sitenoticeadminpanel.php:198 +#, fuzzy +msgid "Save site notice" +msgstr "Webbplatsnotis" + #: actions/smssettings.php:58 msgid "SMS settings" msgstr "Inställningar för SMS" @@ -3950,6 +3966,66 @@ msgstr "" msgid "No code entered" msgstr "Ingen kod ifylld" +#. TRANS: Menu item for site administration +#: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 +#: lib/adminpanelaction.php:406 +msgid "Snapshots" +msgstr "Ögonblicksbild" + +#: actions/snapshotadminpanel.php:65 +#, fuzzy +msgid "Manage snapshot configuration" +msgstr "Ändra webbplatskonfiguration" + +#: actions/snapshotadminpanel.php:127 +msgid "Invalid snapshot run value." +msgstr "Ogiltigt körvärde för ögonblicksbild." + +#: actions/snapshotadminpanel.php:133 +msgid "Snapshot frequency must be a number." +msgstr "Frekvens för ögonblicksbilder måste vara ett nummer." + +#: actions/snapshotadminpanel.php:144 +msgid "Invalid snapshot report URL." +msgstr "Ogiltig rapport-URL för ögonblicksbild" + +#: actions/snapshotadminpanel.php:200 +msgid "Randomly during Web hit" +msgstr "Slumpmässigt vid webbförfrågningar" + +#: actions/snapshotadminpanel.php:201 +msgid "In a scheduled job" +msgstr "I ett schemalagt jobb" + +#: actions/snapshotadminpanel.php:206 +msgid "Data snapshots" +msgstr "Ögonblicksbild av data" + +#: actions/snapshotadminpanel.php:208 +msgid "When to send statistical data to status.net servers" +msgstr "När statistikdata skall skickas till status.net-servrar" + +#: actions/snapshotadminpanel.php:217 +msgid "Frequency" +msgstr "Frekvens" + +#: actions/snapshotadminpanel.php:218 +msgid "Snapshots will be sent once every N web hits" +msgstr "Ögonblicksbild kommer skickas var N:te webbträff" + +#: actions/snapshotadminpanel.php:226 +msgid "Report URL" +msgstr "URL för rapport" + +#: actions/snapshotadminpanel.php:227 +msgid "Snapshots will be sent to this URL" +msgstr "Ögonblicksbild kommer skickat till denna URL" + +#: actions/snapshotadminpanel.php:248 +#, fuzzy +msgid "Save snapshot settings" +msgstr "Spara webbplatsinställningar" + #: actions/subedit.php:70 msgid "You are not subscribed to that profile." msgstr "Du är inte prenumerat hos den profilen." @@ -4158,7 +4234,7 @@ msgstr "Ingen profil-ID i begäran." msgid "Unsubscribed" msgstr "Prenumeration avslutad" -#: actions/updateprofile.php:62 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -4168,7 +4244,6 @@ msgstr "" #. TRANS: User admin panel title #: actions/useradminpanel.php:59 -#, fuzzy msgctxt "TITLE" msgid "User" msgstr "Användare" @@ -4363,17 +4438,23 @@ msgstr "%1$s grupper, sida %2$d" msgid "Search for more groups" msgstr "Sök efter fler grupper" -#: actions/usergroups.php:153 +#: actions/usergroups.php:157 #, php-format msgid "%s is not a member of any group." msgstr "%s är inte en medlem i någon grupp." -#: actions/usergroups.php:158 +#: actions/usergroups.php:162 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" "Prova att [söka efter grupper](%%action.groupsearch%%) och gå med i dem." +#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: lib/atomusernoticefeed.php:72 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "Uppdateringar från %1$s på %2$s!" + #: actions/version.php:73 #, php-format msgid "StatusNet %s" @@ -4429,7 +4510,7 @@ msgstr "" msgid "Plugins" msgstr "Insticksmoduler" -#: actions/version.php:196 lib/action.php:778 +#: actions/version.php:196 lib/action.php:767 msgid "Version" msgstr "Version" @@ -4494,22 +4575,22 @@ msgstr "Kunde inte uppdatera meddelande med ny URI." msgid "DB error inserting hashtag: %s" msgstr "Databasfel vid infogning av hashtag: %s" -#: classes/Notice.php:239 +#: classes/Notice.php:241 msgid "Problem saving notice. Too long." msgstr "Problem vid sparande av notis. För långt." -#: classes/Notice.php:243 +#: classes/Notice.php:245 msgid "Problem saving notice. Unknown user." msgstr "Problem vid sparande av notis. Okänd användare." -#: classes/Notice.php:248 +#: classes/Notice.php:250 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" "För många notiser för snabbt; ta en vilopaus och posta igen om ett par " "minuter." -#: classes/Notice.php:254 +#: classes/Notice.php:256 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." @@ -4517,19 +4598,19 @@ msgstr "" "För många duplicerade meddelanden för snabbt; ta en vilopaus och posta igen " "om ett par minuter." -#: classes/Notice.php:260 +#: classes/Notice.php:262 msgid "You are banned from posting notices on this site." msgstr "Du är utestängd från att posta notiser på denna webbplats." -#: classes/Notice.php:326 classes/Notice.php:352 +#: classes/Notice.php:328 classes/Notice.php:354 msgid "Problem saving notice." msgstr "Problem med att spara notis." -#: classes/Notice.php:911 +#: classes/Notice.php:927 msgid "Problem saving group inbox." msgstr "Problem med att spara gruppinkorg." -#: classes/Notice.php:1442 +#: classes/Notice.php:1459 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -4554,7 +4635,12 @@ msgstr "Inte prenumerant!" msgid "Couldn't delete self-subscription." msgstr "Kunde inte ta bort själv-prenumeration." -#: classes/Subscription.php:179 lib/subs.php:69 +#: classes/Subscription.php:190 +#, fuzzy +msgid "Couldn't delete subscription OMB token." +msgstr "Kunde inte ta bort prenumeration." + +#: classes/Subscription.php:201 lib/subs.php:69 msgid "Couldn't delete subscription." msgstr "Kunde inte ta bort prenumeration." @@ -4563,19 +4649,19 @@ msgstr "Kunde inte ta bort prenumeration." msgid "Welcome to %1$s, @%2$s!" msgstr "Välkommen till %1$s, @%2$s!" -#: classes/User_group.php:462 +#: classes/User_group.php:477 msgid "Could not create group." msgstr "Kunde inte skapa grupp." -#: classes/User_group.php:471 +#: classes/User_group.php:486 msgid "Could not set group URI." msgstr "Kunde inte ställa in grupp-URI." -#: classes/User_group.php:492 +#: classes/User_group.php:507 msgid "Could not set group membership." msgstr "Kunde inte ställa in gruppmedlemskap." -#: classes/User_group.php:506 +#: classes/User_group.php:521 msgid "Could not save local group info." msgstr "Kunde inte spara lokal gruppinformation." @@ -4616,194 +4702,171 @@ msgstr "%1$s - %2$s" msgid "Untitled page" msgstr "Namnlös sida" -#: lib/action.php:433 +#: lib/action.php:424 msgid "Primary site navigation" msgstr "Primär webbplatsnavigation" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:439 -#, fuzzy +#: lib/action.php:430 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Personlig profil och vänners tidslinje" -#: lib/action.php:442 -#, fuzzy +#: lib/action.php:433 msgctxt "MENU" msgid "Personal" msgstr "Personligt" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:444 -#, fuzzy +#: lib/action.php:435 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Ändra din e-post, avatar, lösenord, profil" -#: lib/action.php:447 -#, fuzzy -msgctxt "MENU" -msgid "Account" -msgstr "Konto" - #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:450 -#, fuzzy +#: lib/action.php:440 msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Anslut till tjänster" -#: lib/action.php:453 +#: lib/action.php:443 #, fuzzy -msgctxt "MENU" msgid "Connect" msgstr "Anslut" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:457 -#, fuzzy +#: lib/action.php:446 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Ändra webbplatskonfiguration" -#: lib/action.php:460 -#, fuzzy +#: lib/action.php:449 msgctxt "MENU" msgid "Admin" msgstr "Administratör" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:464 -#, fuzzy, php-format +#: lib/action.php:453 +#, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Bjud in vänner och kollegor att gå med dig på %s" -#: lib/action.php:467 -#, fuzzy +#: lib/action.php:456 msgctxt "MENU" msgid "Invite" msgstr "Bjud in" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:473 -#, fuzzy +#: lib/action.php:462 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Logga ut från webbplatsen" -#: lib/action.php:476 -#, fuzzy +#: lib/action.php:465 msgctxt "MENU" msgid "Logout" msgstr "Logga ut" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:481 -#, fuzzy +#: lib/action.php:470 msgctxt "TOOLTIP" msgid "Create an account" msgstr "Skapa ett konto" -#: lib/action.php:484 -#, fuzzy +#: lib/action.php:473 msgctxt "MENU" msgid "Register" msgstr "Registrera" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:487 -#, fuzzy +#: lib/action.php:476 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Logga in på webbplatsen" -#: lib/action.php:490 -#, fuzzy +#: lib/action.php:479 msgctxt "MENU" msgid "Login" msgstr "Logga in" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:493 -#, fuzzy +#: lib/action.php:482 msgctxt "TOOLTIP" msgid "Help me!" msgstr "Hjälp mig!" -#: lib/action.php:496 -#, fuzzy +#: lib/action.php:485 msgctxt "MENU" msgid "Help" msgstr "Hjälp" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:499 -#, fuzzy +#: lib/action.php:488 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Sök efter personer eller text" -#: lib/action.php:502 -#, fuzzy +#: lib/action.php:491 msgctxt "MENU" msgid "Search" msgstr "Sök" #. TRANS: DT element for site notice. String is hidden in default CSS. -#: lib/action.php:524 +#. TRANS: Menu item for site administration +#: lib/action.php:513 lib/adminpanelaction.php:398 msgid "Site notice" msgstr "Webbplatsnotis" -#: lib/action.php:590 +#: lib/action.php:579 msgid "Local views" msgstr "Lokala vyer" -#: lib/action.php:656 +#: lib/action.php:645 msgid "Page notice" msgstr "Sidnotis" -#: lib/action.php:758 +#: lib/action.php:747 msgid "Secondary site navigation" msgstr "Sekundär webbplatsnavigation" -#: lib/action.php:763 +#: lib/action.php:752 msgid "Help" msgstr "Hjälp" -#: lib/action.php:765 +#: lib/action.php:754 msgid "About" msgstr "Om" -#: lib/action.php:767 +#: lib/action.php:756 msgid "FAQ" msgstr "Frågor & svar" -#: lib/action.php:771 +#: lib/action.php:760 msgid "TOS" msgstr "Användarvillkor" -#: lib/action.php:774 +#: lib/action.php:763 msgid "Privacy" msgstr "Sekretess" -#: lib/action.php:776 +#: lib/action.php:765 msgid "Source" msgstr "Källa" -#: lib/action.php:780 +#: lib/action.php:769 msgid "Contact" msgstr "Kontakt" -#: lib/action.php:782 +#: lib/action.php:771 msgid "Badge" msgstr "Emblem" -#: lib/action.php:810 +#: lib/action.php:799 msgid "StatusNet software license" msgstr "Programvarulicens för StatusNet" -#: lib/action.php:813 +#: lib/action.php:802 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4812,12 +4875,12 @@ msgstr "" "**%%site.name%%** är en mikrobloggtjänst tillhandahållen av [%%site.broughtby" "%%](%%site.broughtbyurl%%). " -#: lib/action.php:815 +#: lib/action.php:804 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** är en mikrobloggtjänst. " -#: lib/action.php:817 +#: lib/action.php:806 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4828,54 +4891,54 @@ msgstr "" "version %s, tillgänglig under [GNU Affero General Public License](http://www." "fsf.org/licensing/licenses/agpl-3.0.html)." -#: lib/action.php:832 +#: lib/action.php:821 msgid "Site content license" msgstr "Licens för webbplatsinnehåll" -#: lib/action.php:837 +#: lib/action.php:826 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "Innehåll och data av %1$s är privat och konfidensiell." -#: lib/action.php:842 +#: lib/action.php:831 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "Innehåll och data copyright av %1$s. Alla rättigheter reserverade." -#: lib/action.php:845 +#: lib/action.php:834 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" "Innehåll och data copyright av medarbetare. Alla rättigheter reserverade." -#: lib/action.php:858 +#: lib/action.php:847 msgid "All " msgstr "Alla " -#: lib/action.php:864 +#: lib/action.php:853 msgid "license." msgstr "licens." -#: lib/action.php:1163 +#: lib/action.php:1152 msgid "Pagination" msgstr "Numrering av sidor" -#: lib/action.php:1172 +#: lib/action.php:1161 msgid "After" msgstr "Senare" -#: lib/action.php:1180 +#: lib/action.php:1169 msgid "Before" msgstr "Tidigare" -#: lib/activity.php:449 +#: lib/activity.php:453 msgid "Can't handle remote content yet." msgstr "Kan inte hantera fjärrinnehåll ännu." -#: lib/activity.php:477 +#: lib/activity.php:481 msgid "Can't handle embedded XML content yet." msgstr "Kan inte hantera inbäddat XML-innehåll ännu." -#: lib/activity.php:481 +#: lib/activity.php:485 msgid "Can't handle embedded Base64 content yet." msgstr "Kan inte hantera inbäddat Base64-innehåll ännu." @@ -4890,91 +4953,78 @@ msgid "Changes to that panel are not allowed." msgstr "Ändringar av den panelen tillåts inte." #. TRANS: Client error message -#: lib/adminpanelaction.php:211 +#: lib/adminpanelaction.php:229 msgid "showForm() not implemented." msgstr "showForm() är inte implementerat." #. TRANS: Client error message -#: lib/adminpanelaction.php:241 +#: lib/adminpanelaction.php:259 msgid "saveSettings() not implemented." msgstr "saveSetting() är inte implementerat." #. TRANS: Client error message -#: lib/adminpanelaction.php:265 +#: lib/adminpanelaction.php:283 msgid "Unable to delete design setting." msgstr "Kunde inte ta bort utseendeinställning." #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:330 +#: lib/adminpanelaction.php:348 msgid "Basic site configuration" msgstr "Grundläggande webbplatskonfiguration" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:332 -#, fuzzy +#: lib/adminpanelaction.php:350 msgctxt "MENU" msgid "Site" msgstr "Webbplats" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:338 +#: lib/adminpanelaction.php:356 msgid "Design configuration" msgstr "Konfiguration av utseende" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:340 -#, fuzzy +#: lib/adminpanelaction.php:358 msgctxt "MENU" msgid "Design" msgstr "Utseende" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:346 +#: lib/adminpanelaction.php:364 msgid "User configuration" msgstr "Konfiguration av användare" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:348 -#, fuzzy -msgctxt "MENU" +#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 msgid "User" msgstr "Användare" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:354 +#: lib/adminpanelaction.php:372 msgid "Access configuration" msgstr "Konfiguration av åtkomst" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:356 -#, fuzzy -msgctxt "MENU" -msgid "Access" -msgstr "Åtkomst" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:362 +#: lib/adminpanelaction.php:380 msgid "Paths configuration" msgstr "Konfiguration av sökvägar" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:364 -#, fuzzy -msgctxt "MENU" -msgid "Paths" -msgstr "Sökvägar" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:370 +#: lib/adminpanelaction.php:388 msgid "Sessions configuration" msgstr "Konfiguration av sessioner" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:372 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:396 #, fuzzy -msgctxt "MENU" -msgid "Sessions" -msgstr "Sessioner" +msgid "Edit site notice" +msgstr "Webbplatsnotis" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:404 +#, fuzzy +msgid "Snapshots configuration" +msgstr "Konfiguration av sökvägar" #: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." @@ -5503,6 +5553,11 @@ msgstr "Välj en tagg för att begränsa lista" msgid "Go" msgstr "Gå" +#: lib/grantroleform.php:91 +#, php-format +msgid "Grant this user the \"%s\" role" +msgstr "" + #: lib/groupeditform.php:163 msgid "URL of the homepage or blog of the group or topic" msgstr "URL till gruppen eller ämnets hemsida eller blogg" @@ -6117,10 +6172,6 @@ msgstr "Svar" msgid "Favorites" msgstr "Favoriter" -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "Användare" - #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "Inkorg" @@ -6146,7 +6197,7 @@ msgstr "Taggar i %ss notiser" msgid "Unknown" msgstr "Okänd" -#: lib/profileaction.php:109 lib/profileaction.php:192 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:194 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Prenumerationer" @@ -6154,23 +6205,23 @@ msgstr "Prenumerationer" msgid "All subscriptions" msgstr "Alla prenumerationer" -#: lib/profileaction.php:140 lib/profileaction.php:201 lib/subgroupnav.php:90 +#: lib/profileaction.php:142 lib/profileaction.php:203 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Prenumeranter" -#: lib/profileaction.php:157 +#: lib/profileaction.php:159 msgid "All subscribers" msgstr "Alla prenumeranter" -#: lib/profileaction.php:178 +#: lib/profileaction.php:180 msgid "User ID" msgstr "Användar-ID" -#: lib/profileaction.php:183 +#: lib/profileaction.php:185 msgid "Member since" msgstr "Medlem sedan" -#: lib/profileaction.php:245 +#: lib/profileaction.php:247 msgid "All groups" msgstr "Alla grupper" @@ -6210,7 +6261,12 @@ msgstr "Upprepa denna notis?" msgid "Repeat this notice" msgstr "Upprepa denna notis" -#: lib/router.php:668 +#: lib/revokeroleform.php:91 +#, fuzzy, php-format +msgid "Revoke the \"%s\" role from this user" +msgstr "Blockera denna användare från denna grupp" + +#: lib/router.php:671 msgid "No single user defined for single-user mode." msgstr "Ingen enskild användare definierad för enanvändarläge." @@ -6364,47 +6420,64 @@ msgstr "Meddelande" msgid "Moderate" msgstr "Moderera" -#: lib/util.php:1013 +#: lib/userprofile.php:352 +#, fuzzy +msgid "User role" +msgstr "Användarprofil" + +#: lib/userprofile.php:354 +#, fuzzy +msgctxt "role" +msgid "Administrator" +msgstr "Administratörer" + +#: lib/userprofile.php:355 +#, fuzzy +msgctxt "role" +msgid "Moderator" +msgstr "Moderera" + +#: lib/util.php:1015 msgid "a few seconds ago" msgstr "ett par sekunder sedan" -#: lib/util.php:1015 +#: lib/util.php:1017 msgid "about a minute ago" msgstr "för nån minut sedan" -#: lib/util.php:1017 +#: lib/util.php:1019 #, php-format msgid "about %d minutes ago" msgstr "för %d minuter sedan" -#: lib/util.php:1019 +#: lib/util.php:1021 msgid "about an hour ago" msgstr "för en timma sedan" -#: lib/util.php:1021 +#: lib/util.php:1023 #, php-format msgid "about %d hours ago" msgstr "för %d timmar sedan" -#: lib/util.php:1023 +#: lib/util.php:1025 msgid "about a day ago" msgstr "för en dag sedan" -#: lib/util.php:1025 +#: lib/util.php:1027 #, php-format msgid "about %d days ago" msgstr "för %d dagar sedan" -#: lib/util.php:1027 +#: lib/util.php:1029 msgid "about a month ago" msgstr "för en månad sedan" -#: lib/util.php:1029 +#: lib/util.php:1031 #, php-format msgid "about %d months ago" msgstr "för %d månader sedan" -#: lib/util.php:1031 +#: lib/util.php:1033 msgid "about a year ago" msgstr "för ett år sedan" diff --git a/locale/te/LC_MESSAGES/statusnet.po b/locale/te/LC_MESSAGES/statusnet.po index f0527f3fa9..f2e49f9347 100644 --- a/locale/te/LC_MESSAGES/statusnet.po +++ b/locale/te/LC_MESSAGES/statusnet.po @@ -9,19 +9,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-02 21:02+0000\n" -"PO-Revision-Date: 2010-03-02 21:03:50+0000\n" +"POT-Creation-Date: 2010-03-04 18:55+0000\n" +"PO-Revision-Date: 2010-03-04 18:57:23+0000\n" "Language-Team: Telugu\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: te\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. TRANS: Page title -#: actions/accessadminpanel.php:55 +#. TRANS: Menu item for site administration +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 #, fuzzy msgid "Access" msgstr "అంగీకరించు" @@ -121,7 +122,7 @@ msgstr "%1$s మరియు మిత్రులు, పేజీ %2$d" #. TRANS: Page title. %1$s is user nickname #. TRANS: H1 text. %1$s is user nickname -#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -176,7 +177,7 @@ msgid "" msgstr "" #. TRANS: H1 text -#: actions/all.php:174 +#: actions/all.php:178 msgid "You and friends" msgstr "మీరు మరియు మీ స్నేహితులు" @@ -203,11 +204,11 @@ msgstr "" #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 -#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 +#: actions/apitimelinegroup.php:160 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:148 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 #, fuzzy msgid "API method not found." msgstr "నిర్ధారణ సంకేతం కనబడలేదు." @@ -569,7 +570,7 @@ msgid "" "give access to your %4$s account to third parties you trust." msgstr "" -#: actions/apioauthauthorize.php:310 +#: actions/apioauthauthorize.php:310 lib/action.php:438 msgid "Account" msgstr "ఖాతా" @@ -656,18 +657,6 @@ msgstr "" msgid "%1$s updates favorited by %2$s / %2$s." msgstr "%s యొక్క మైక్రోబ్లాగు" -#: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:138 actions/userrss.php:90 -#, php-format -msgid "%s timeline" -msgstr "%s కాలరేఖ" - -#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 -#: actions/userrss.php:92 -#, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "" - #: actions/apitimelinementions.php:117 #, php-format msgid "%1$s / Updates mentioning %2$s" @@ -678,12 +667,12 @@ msgstr "" msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "" -#: actions/apitimelinepublic.php:111 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "%s బహిరంగ కాలరేఖ" -#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "అందరి నుండి %s తాజాకరణలు!" @@ -929,7 +918,7 @@ msgid "Conversation" msgstr "సంభాషణ" #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:216 lib/searchgroupnav.php:82 +#: lib/profileaction.php:218 lib/searchgroupnav.php:82 msgid "Notices" msgstr "సందేశాలు" @@ -948,7 +937,7 @@ msgstr "మీరు ఈ ఉపకరణం యొక్క యజమాని #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1228 +#: lib/action.php:1217 msgid "There was a problem with your session token." msgstr "" @@ -1139,8 +1128,9 @@ msgstr "" #: actions/designadminpanel.php:586 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 +#: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:208 #: actions/tagother.php:154 actions/useradminpanel.php:294 #: lib/applicationeditform.php:333 lib/applicationeditform.php:334 #: lib/designsettings.php:256 lib/groupeditform.php:202 @@ -1260,7 +1250,7 @@ msgstr "వివరణ చాలా పెద్దదిగా ఉంది (1 msgid "Could not update group." msgstr "గుంపుని తాజాకరించలేకున్నాం." -#: actions/editgroup.php:264 classes/User_group.php:478 +#: actions/editgroup.php:264 classes/User_group.php:493 msgid "Could not create aliases." msgstr "మారుపేర్లని సృష్టించలేకపోయాం." @@ -1380,7 +1370,7 @@ msgid "Cannot normalize that email address" msgstr "" #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:143 +#: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "సరైన ఈమెయిల్ చిరునామా కాదు:" @@ -1565,6 +1555,25 @@ msgstr "అటువంటి ఫైలు లేదు." msgid "Cannot read file." msgstr "ఫైలుని చదవలేకపోతున్నాం." +#: actions/grantrole.php:62 actions/revokerole.php:62 +#, fuzzy +msgid "Invalid role." +msgstr "తప్పుడు పరిమాణం." + +#: actions/grantrole.php:66 actions/revokerole.php:66 +msgid "This role is reserved and cannot be set." +msgstr "" + +#: actions/grantrole.php:75 +#, fuzzy +msgid "You cannot grant user roles on this site." +msgstr "మీరు ఇప్పటికే లోనికి ప్రవేశించారు!" + +#: actions/grantrole.php:82 +#, fuzzy +msgid "User already has this role." +msgstr "వాడుకరిని ఇప్పటికే గుంపునుండి నిరోధించారు." + #: actions/groupblock.php:71 actions/groupunblock.php:71 #: actions/makeadmin.php:71 actions/subedit.php:46 #: lib/profileformaction.php:70 @@ -1710,12 +1719,18 @@ msgstr "నిర్వాహకున్ని చేయి" msgid "Make this user an admin" msgstr "ఈ వాడుకరిని నిర్వాహకున్ని చేయి" +#: actions/grouprss.php:138 actions/userrss.php:90 +#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#, php-format +msgid "%s timeline" +msgstr "%s కాలరేఖ" + #: actions/grouprss.php:140 #, fuzzy, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "%s యొక్క మైక్రోబ్లాగు" -#: actions/groups.php:62 lib/profileaction.php:210 lib/profileaction.php:230 +#: actions/groups.php:62 lib/profileaction.php:212 lib/profileaction.php:232 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" msgstr "గుంపులు" @@ -2285,8 +2300,8 @@ msgstr "విషయ రకం " msgid "Only " msgstr "మాత్రమే " -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 -#: lib/apiaction.php:1068 lib/apiaction.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1042 +#: lib/apiaction.php:1070 lib/apiaction.php:1179 msgid "Not a supported data format." msgstr "" @@ -2430,7 +2445,8 @@ msgstr "కొత్త సంకేతపదాన్ని భద్రపర msgid "Password saved." msgstr "సంకేతపదం భద్రమయ్యింది." -#: actions/pathsadminpanel.php:59 +#. TRANS: Menu item for site administration +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 msgid "Paths" msgstr "" @@ -2553,7 +2569,7 @@ msgstr "నేపథ్యాల సంచయం" msgid "SSL" msgstr "" -#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 +#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202 #, fuzzy msgid "Never" msgstr "వైదొలగు" @@ -2611,11 +2627,11 @@ msgstr "సరైన ఈమెయిల్ చిరునామా కాదు msgid "Users self-tagged with %1$s - page %2$d" msgstr "%s యొక్క మైక్రోబ్లాగు" -#: actions/postnotice.php:84 +#: actions/postnotice.php:95 msgid "Invalid notice content" msgstr "సందేశపు విషయం సరైనది కాదు" -#: actions/postnotice.php:90 +#: actions/postnotice.php:101 #, php-format msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" @@ -2693,7 +2709,7 @@ msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" -#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 +#: actions/profilesettings.php:151 msgid "Language" msgstr "భాష" @@ -2719,7 +2735,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "స్వపరిచయం చాలా పెద్దగా ఉంది (%d అక్షరాలు గరిష్ఠం)." -#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:151 msgid "Timezone not selected." msgstr "కాలమండలాన్ని ఎంచుకోలేదు." @@ -3025,7 +3041,7 @@ msgid "Same as password above. Required." msgstr "పై సంకేతపదం మరోసారి. తప్పనిసరి." #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 msgid "Email" msgstr "ఈమెయిల్" @@ -3122,7 +3138,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:368 +#: lib/userprofile.php:394 msgid "Subscribe" msgstr "చందాచేరు" @@ -3225,6 +3241,16 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "%sకి స్పందనలు" +#: actions/revokerole.php:75 +#, fuzzy +msgid "You cannot revoke user roles on this site." +msgstr "మీరు ఇప్పటికే లోనికి ప్రవేశించారు!" + +#: actions/revokerole.php:82 +#, fuzzy +msgid "User doesn't have this role." +msgstr "వాడుకరికి ప్రొఫైలు లేదు." + #: actions/rsd.php:146 actions/version.php:157 msgid "StatusNet" msgstr "స్టేటస్‌నెట్" @@ -3239,7 +3265,9 @@ msgstr "మీరు ఇప్పటికే లోనికి ప్రవే msgid "User is already sandboxed." msgstr "వాడుకరిని ఇప్పటికే గుంపునుండి నిరోధించారు." +#. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:390 msgid "Sessions" msgstr "" @@ -3264,7 +3292,7 @@ msgstr "" msgid "Turn on debugging output for sessions." msgstr "" -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "సైటు అమరికలను భద్రపరచు" @@ -3296,8 +3324,8 @@ msgstr "సంస్ధ" msgid "Description" msgstr "వివరణ" -#: actions/showapplication.php:192 actions/showgroup.php:437 -#: lib/profileaction.php:174 +#: actions/showapplication.php:192 actions/showgroup.php:438 +#: lib/profileaction.php:176 msgid "Statistics" msgstr "గణాంకాలు" @@ -3431,45 +3459,45 @@ msgstr "మారుపేర్లు" msgid "Group actions" msgstr "గుంపు చర్యలు" -#: actions/showgroup.php:336 +#: actions/showgroup.php:337 #, fuzzy, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "%s యొక్క సందేశముల ఫీడు" -#: actions/showgroup.php:342 +#: actions/showgroup.php:343 #, fuzzy, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "%s యొక్క సందేశముల ఫీడు" -#: actions/showgroup.php:348 +#: actions/showgroup.php:349 #, fuzzy, php-format msgid "Notice feed for %s group (Atom)" msgstr "%s యొక్క సందేశముల ఫీడు" -#: actions/showgroup.php:353 +#: actions/showgroup.php:354 #, php-format msgid "FOAF for %s group" msgstr "%s గుంపు" -#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 +#: actions/showgroup.php:390 actions/showgroup.php:447 lib/groupnav.php:91 msgid "Members" msgstr "సభ్యులు" -#: actions/showgroup.php:394 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 +#: actions/showgroup.php:395 lib/profileaction.php:117 +#: lib/profileaction.php:150 lib/profileaction.php:238 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(ఏమీలేదు)" -#: actions/showgroup.php:400 +#: actions/showgroup.php:401 msgid "All members" msgstr "అందరు సభ్యులూ" -#: actions/showgroup.php:440 +#: actions/showgroup.php:441 msgid "Created" msgstr "సృష్టితం" -#: actions/showgroup.php:456 +#: actions/showgroup.php:457 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3479,7 +3507,7 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showgroup.php:462 +#: actions/showgroup.php:463 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3488,7 +3516,7 @@ msgid "" "their life and interests. " msgstr "" -#: actions/showgroup.php:490 +#: actions/showgroup.php:491 msgid "Admins" msgstr "నిర్వాహకులు" @@ -3600,147 +3628,138 @@ msgid "User is already silenced." msgstr "వాడుకరిని ఇప్పటికే గుంపునుండి నిరోధించారు." #: actions/siteadminpanel.php:69 -msgid "Basic settings for this StatusNet site." +#, fuzzy +msgid "Basic settings for this StatusNet site" msgstr "ఈ స్టేటస్‌నెట్ సైటుకి ప్రాధమిక అమరికలు." -#: actions/siteadminpanel.php:132 +#: actions/siteadminpanel.php:133 msgid "Site name must have non-zero length." msgstr "సైటు పేరు తప్పనిసరిగా సున్నా కంటే ఎక్కువ పొడవుండాలి." -#: actions/siteadminpanel.php:140 +#: actions/siteadminpanel.php:141 msgid "You must have a valid contact email address." msgstr "మీకు సరైన సంప్రదింపు ఈమెయిలు చిరునామా ఉండాలి." -#: actions/siteadminpanel.php:158 +#: actions/siteadminpanel.php:159 #, php-format msgid "Unknown language \"%s\"." msgstr "గుర్తు తెలియని భాష \"%s\"." #: actions/siteadminpanel.php:165 -msgid "Invalid snapshot report URL." -msgstr "" - -#: actions/siteadminpanel.php:171 -msgid "Invalid snapshot run value." -msgstr "" - -#: actions/siteadminpanel.php:177 -msgid "Snapshot frequency must be a number." -msgstr "" - -#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "కనిష్ఠ పాఠ్య పరిమితి 140 అక్షరాలు." -#: actions/siteadminpanel.php:189 +#: actions/siteadminpanel.php:171 msgid "Dupe limit must 1 or more seconds." msgstr "" -#: actions/siteadminpanel.php:239 +#: actions/siteadminpanel.php:221 msgid "General" msgstr "సాధారణ" -#: actions/siteadminpanel.php:242 +#: actions/siteadminpanel.php:224 msgid "Site name" msgstr "సైటు పేరు" -#: actions/siteadminpanel.php:243 +#: actions/siteadminpanel.php:225 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "మీ సైటు యొక్క పేరు, ఇలా \"మీకంపెనీ మైక్రోబ్లాగు\"" -#: actions/siteadminpanel.php:247 +#: actions/siteadminpanel.php:229 msgid "Brought by" msgstr "" -#: actions/siteadminpanel.php:248 +#: actions/siteadminpanel.php:230 msgid "Text used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:252 +#: actions/siteadminpanel.php:234 msgid "Brought by URL" msgstr "" -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:235 msgid "URL used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:239 #, fuzzy msgid "Contact email address for your site" msgstr "ఈ వాడుకరికై నమోదైన ఈమెయిల్ చిరునామాలు ఏమీ లేవు." -#: actions/siteadminpanel.php:263 +#: actions/siteadminpanel.php:245 msgid "Local" msgstr "స్థానిక" -#: actions/siteadminpanel.php:274 +#: actions/siteadminpanel.php:256 msgid "Default timezone" msgstr "అప్రమేయ కాలమండలం" -#: actions/siteadminpanel.php:275 +#: actions/siteadminpanel.php:257 msgid "Default timezone for the site; usually UTC." msgstr "" -#: actions/siteadminpanel.php:281 -msgid "Default site language" +#: actions/siteadminpanel.php:262 +#, fuzzy +msgid "Default language" msgstr "అప్రమేయ సైటు భాష" -#: actions/siteadminpanel.php:289 -msgid "Snapshots" +#: actions/siteadminpanel.php:263 +msgid "Site language when autodetection from browser settings is not available" msgstr "" -#: actions/siteadminpanel.php:292 -msgid "Randomly during Web hit" -msgstr "" - -#: actions/siteadminpanel.php:293 -msgid "In a scheduled job" -msgstr "" - -#: actions/siteadminpanel.php:295 -msgid "Data snapshots" -msgstr "" - -#: actions/siteadminpanel.php:296 -msgid "When to send statistical data to status.net servers" -msgstr "" - -#: actions/siteadminpanel.php:301 -msgid "Frequency" -msgstr "తరచుదనం" - -#: actions/siteadminpanel.php:302 -msgid "Snapshots will be sent once every N web hits" -msgstr "" - -#: actions/siteadminpanel.php:307 -msgid "Report URL" -msgstr "" - -#: actions/siteadminpanel.php:308 -msgid "Snapshots will be sent to this URL" -msgstr "" - -#: actions/siteadminpanel.php:315 +#: actions/siteadminpanel.php:271 msgid "Limits" msgstr "పరిమితులు" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Text limit" msgstr "పాఠ్యపు పరిమితి" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Maximum number of characters for notices." msgstr "సందేశాలలోని అక్షరాల గరిష్ఠ సంఖ్య." -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "Dupe limit" msgstr "" -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" +#: actions/sitenoticeadminpanel.php:56 +#, fuzzy +msgid "Site Notice" +msgstr "సైటు గమనిక" + +#: actions/sitenoticeadminpanel.php:67 +#, fuzzy +msgid "Edit site-wide message" +msgstr "కొత్త సందేశం" + +#: actions/sitenoticeadminpanel.php:103 +#, fuzzy +msgid "Unable to save site notice." +msgstr "సందేశాన్ని భద్రపరచడంలో పొరపాటు." + +#: actions/sitenoticeadminpanel.php:113 +msgid "Max length for the site-wide notice is 255 chars" +msgstr "" + +#: actions/sitenoticeadminpanel.php:176 +#, fuzzy +msgid "Site notice text" +msgstr "సైటు గమనిక" + +#: actions/sitenoticeadminpanel.php:178 +msgid "Site-wide notice text (255 chars max; HTML okay)" +msgstr "" + +#: actions/sitenoticeadminpanel.php:198 +#, fuzzy +msgid "Save site notice" +msgstr "సైటు గమనిక" + #: actions/smssettings.php:58 msgid "SMS settings" msgstr "SMS అమరికలు" @@ -3835,6 +3854,66 @@ msgstr "" msgid "No code entered" msgstr "" +#. TRANS: Menu item for site administration +#: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 +#: lib/adminpanelaction.php:406 +msgid "Snapshots" +msgstr "" + +#: actions/snapshotadminpanel.php:65 +#, fuzzy +msgid "Manage snapshot configuration" +msgstr "చందాలు" + +#: actions/snapshotadminpanel.php:127 +msgid "Invalid snapshot run value." +msgstr "" + +#: actions/snapshotadminpanel.php:133 +msgid "Snapshot frequency must be a number." +msgstr "" + +#: actions/snapshotadminpanel.php:144 +msgid "Invalid snapshot report URL." +msgstr "" + +#: actions/snapshotadminpanel.php:200 +msgid "Randomly during Web hit" +msgstr "" + +#: actions/snapshotadminpanel.php:201 +msgid "In a scheduled job" +msgstr "" + +#: actions/snapshotadminpanel.php:206 +msgid "Data snapshots" +msgstr "" + +#: actions/snapshotadminpanel.php:208 +msgid "When to send statistical data to status.net servers" +msgstr "" + +#: actions/snapshotadminpanel.php:217 +msgid "Frequency" +msgstr "తరచుదనం" + +#: actions/snapshotadminpanel.php:218 +msgid "Snapshots will be sent once every N web hits" +msgstr "" + +#: actions/snapshotadminpanel.php:226 +msgid "Report URL" +msgstr "" + +#: actions/snapshotadminpanel.php:227 +msgid "Snapshots will be sent to this URL" +msgstr "" + +#: actions/snapshotadminpanel.php:248 +#, fuzzy +msgid "Save snapshot settings" +msgstr "సైటు అమరికలను భద్రపరచు" + #: actions/subedit.php:70 msgid "You are not subscribed to that profile." msgstr "" @@ -4036,7 +4115,7 @@ msgstr "" msgid "Unsubscribed" msgstr "చందాదార్లు" -#: actions/updateprofile.php:62 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -4228,16 +4307,22 @@ msgstr "%1$s గుంపు సభ్యులు, పేజీ %2$d" msgid "Search for more groups" msgstr "మరిన్ని గుంపులకై వెతుకు" -#: actions/usergroups.php:153 +#: actions/usergroups.php:157 #, php-format msgid "%s is not a member of any group." msgstr "%s ఏ గుంపు లోనూ సభ్యులు కాదు." -#: actions/usergroups.php:158 +#: actions/usergroups.php:162 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "[గుంపులని వెతికి](%%action.groupsearch%%) వాటిలో చేరడానికి ప్రయత్నించండి." +#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: lib/atomusernoticefeed.php:72 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "" + #: actions/version.php:73 #, php-format msgid "StatusNet %s" @@ -4281,7 +4366,7 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:196 lib/action.php:778 +#: actions/version.php:196 lib/action.php:767 msgid "Version" msgstr "సంచిక" @@ -4345,41 +4430,41 @@ msgstr "" msgid "DB error inserting hashtag: %s" msgstr "" -#: classes/Notice.php:239 +#: classes/Notice.php:241 #, fuzzy msgid "Problem saving notice. Too long." msgstr "సందేశాన్ని భద్రపరచడంలో పొరపాటు." -#: classes/Notice.php:243 +#: classes/Notice.php:245 #, fuzzy msgid "Problem saving notice. Unknown user." msgstr "సందేశాన్ని భద్రపరచడంలో పొరపాటు." -#: classes/Notice.php:248 +#: classes/Notice.php:250 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: classes/Notice.php:254 +#: classes/Notice.php:256 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." msgstr "" -#: classes/Notice.php:260 +#: classes/Notice.php:262 msgid "You are banned from posting notices on this site." msgstr "ఈ సైటులో నోటీసులు రాయడం నుండి మిమ్మల్ని నిషేధించారు." -#: classes/Notice.php:326 classes/Notice.php:352 +#: classes/Notice.php:328 classes/Notice.php:354 msgid "Problem saving notice." msgstr "సందేశాన్ని భద్రపరచడంలో పొరపాటు." -#: classes/Notice.php:911 +#: classes/Notice.php:927 #, fuzzy msgid "Problem saving group inbox." msgstr "సందేశాన్ని భద్రపరచడంలో పొరపాటు." -#: classes/Notice.php:1442 +#: classes/Notice.php:1459 #, fuzzy, php-format msgid "RT @%1$s %2$s" msgstr "%1$s (%2$s)" @@ -4406,7 +4491,12 @@ msgstr "చందాదార్లు" msgid "Couldn't delete self-subscription." msgstr "చందాని తొలగించలేకపోయాం." -#: classes/Subscription.php:179 lib/subs.php:69 +#: classes/Subscription.php:190 +#, fuzzy +msgid "Couldn't delete subscription OMB token." +msgstr "చందాని తొలగించలేకపోయాం." + +#: classes/Subscription.php:201 lib/subs.php:69 msgid "Couldn't delete subscription." msgstr "చందాని తొలగించలేకపోయాం." @@ -4415,20 +4505,20 @@ msgstr "చందాని తొలగించలేకపోయాం." msgid "Welcome to %1$s, @%2$s!" msgstr "@%2$s, %1$sకి స్వాగతం!" -#: classes/User_group.php:462 +#: classes/User_group.php:477 msgid "Could not create group." msgstr "గుంపుని సృష్టించలేకపోయాం." -#: classes/User_group.php:471 +#: classes/User_group.php:486 #, fuzzy msgid "Could not set group URI." msgstr "గుంపు సభ్యత్వాన్ని అమర్చలేకపోయాం." -#: classes/User_group.php:492 +#: classes/User_group.php:507 msgid "Could not set group membership." msgstr "గుంపు సభ్యత్వాన్ని అమర్చలేకపోయాం." -#: classes/User_group.php:506 +#: classes/User_group.php:521 #, fuzzy msgid "Could not save local group info." msgstr "చందాని సృష్టించలేకపోయాం." @@ -4471,194 +4561,188 @@ msgstr "%1$s - %2$s" msgid "Untitled page" msgstr "" -#: lib/action.php:433 +#: lib/action.php:424 msgid "Primary site navigation" msgstr "" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:439 +#: lib/action.php:430 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:442 +#: lib/action.php:433 #, fuzzy msgctxt "MENU" msgid "Personal" msgstr "వ్యక్తిగత" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:444 +#: lib/action.php:435 #, fuzzy msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "మీ ఈమెయిలు, అవతారం, సంకేతపదం మరియు ప్రౌఫైళ్ళను మార్చుకోండి" -#: lib/action.php:447 -#, fuzzy -msgctxt "MENU" -msgid "Account" -msgstr "ఖాతా" - #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:450 +#: lib/action.php:440 #, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" msgstr "అనుసంధానాలు" -#: lib/action.php:453 +#: lib/action.php:443 #, fuzzy -msgctxt "MENU" msgid "Connect" msgstr "అనుసంధానించు" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:457 +#: lib/action.php:446 #, fuzzy msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "చందాలు" -#: lib/action.php:460 +#: lib/action.php:449 #, fuzzy msgctxt "MENU" msgid "Admin" msgstr "నిర్వాహకులు" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:464 +#: lib/action.php:453 #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "ఈ ఫారాన్ని ఉపయోగించి మీ స్నేహితులను మరియు సహోద్యోగులను ఈ సేవను వినియోగించుకోమని ఆహ్వానించండి." -#: lib/action.php:467 +#: lib/action.php:456 #, fuzzy msgctxt "MENU" msgid "Invite" msgstr "ఆహ్వానించు" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:473 +#: lib/action.php:462 #, fuzzy msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "సైటు నుండి నిష్క్రమించు" -#: lib/action.php:476 +#: lib/action.php:465 #, fuzzy msgctxt "MENU" msgid "Logout" msgstr "నిష్క్రమించు" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:481 +#: lib/action.php:470 #, fuzzy msgctxt "TOOLTIP" msgid "Create an account" msgstr "కొత్త ఖాతా సృష్టించు" -#: lib/action.php:484 +#: lib/action.php:473 #, fuzzy msgctxt "MENU" msgid "Register" msgstr "నమోదు" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:487 +#: lib/action.php:476 #, fuzzy msgctxt "TOOLTIP" msgid "Login to the site" msgstr "సైటులోని ప్రవేశించు" -#: lib/action.php:490 +#: lib/action.php:479 #, fuzzy msgctxt "MENU" msgid "Login" msgstr "ప్రవేశించండి" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:493 +#: lib/action.php:482 #, fuzzy msgctxt "TOOLTIP" msgid "Help me!" msgstr "సహాయం కావాలి!" -#: lib/action.php:496 +#: lib/action.php:485 #, fuzzy msgctxt "MENU" msgid "Help" msgstr "సహాయం" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:499 +#: lib/action.php:488 #, fuzzy msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "మరిన్ని గుంపులకై వెతుకు" -#: lib/action.php:502 +#: lib/action.php:491 #, fuzzy msgctxt "MENU" msgid "Search" msgstr "వెతుకు" #. TRANS: DT element for site notice. String is hidden in default CSS. -#: lib/action.php:524 +#. TRANS: Menu item for site administration +#: lib/action.php:513 lib/adminpanelaction.php:398 msgid "Site notice" msgstr "సైటు గమనిక" -#: lib/action.php:590 +#: lib/action.php:579 msgid "Local views" msgstr "స్థానిక వీక్షణలు" -#: lib/action.php:656 +#: lib/action.php:645 msgid "Page notice" msgstr "పేజీ గమనిక" -#: lib/action.php:758 +#: lib/action.php:747 #, fuzzy msgid "Secondary site navigation" msgstr "చందాలు" -#: lib/action.php:763 +#: lib/action.php:752 msgid "Help" msgstr "సహాయం" -#: lib/action.php:765 +#: lib/action.php:754 msgid "About" msgstr "గురించి" -#: lib/action.php:767 +#: lib/action.php:756 msgid "FAQ" msgstr "ప్రశ్నలు" -#: lib/action.php:771 +#: lib/action.php:760 msgid "TOS" msgstr "సేవా నియమాలు" -#: lib/action.php:774 +#: lib/action.php:763 msgid "Privacy" msgstr "అంతరంగికత" -#: lib/action.php:776 +#: lib/action.php:765 msgid "Source" msgstr "మూలము" -#: lib/action.php:780 +#: lib/action.php:769 msgid "Contact" msgstr "సంప్రదించు" -#: lib/action.php:782 +#: lib/action.php:771 msgid "Badge" msgstr "బాడ్జి" -#: lib/action.php:810 +#: lib/action.php:799 msgid "StatusNet software license" msgstr "స్టేటస్‌నెట్ మృదూపకరణ లైసెన్సు" -#: lib/action.php:813 +#: lib/action.php:802 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4667,12 +4751,12 @@ msgstr "" "**%%site.name%%** అనేది [%%site.broughtby%%](%%site.broughtbyurl%%) వారు " "అందిస్తున్న మైక్రో బ్లాగింగు సదుపాయం. " -#: lib/action.php:815 +#: lib/action.php:804 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** అనేది మైక్రో బ్లాగింగు సదుపాయం." -#: lib/action.php:817 +#: lib/action.php:806 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4683,54 +4767,54 @@ msgstr "" "html) కింద లభ్యమయ్యే [స్టేటస్‌నెట్](http://status.net/) మైక్రోబ్లాగింగ్ ఉపకరణం సంచిక %s " "పై నడుస్తుంది." -#: lib/action.php:832 +#: lib/action.php:821 #, fuzzy msgid "Site content license" msgstr "కొత్త సందేశం" -#: lib/action.php:837 +#: lib/action.php:826 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:842 +#: lib/action.php:831 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:845 +#: lib/action.php:834 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" -#: lib/action.php:858 +#: lib/action.php:847 msgid "All " msgstr "అన్నీ " -#: lib/action.php:864 +#: lib/action.php:853 msgid "license." msgstr "" -#: lib/action.php:1163 +#: lib/action.php:1152 msgid "Pagination" msgstr "పేజీకరణ" -#: lib/action.php:1172 +#: lib/action.php:1161 msgid "After" msgstr "తర్వాత" -#: lib/action.php:1180 +#: lib/action.php:1169 msgid "Before" msgstr "ఇంతక్రితం" -#: lib/activity.php:449 +#: lib/activity.php:453 msgid "Can't handle remote content yet." msgstr "" -#: lib/activity.php:477 +#: lib/activity.php:481 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activity.php:481 +#: lib/activity.php:485 msgid "Can't handle embedded Base64 content yet." msgstr "" @@ -4745,93 +4829,83 @@ msgid "Changes to that panel are not allowed." msgstr "" #. TRANS: Client error message -#: lib/adminpanelaction.php:211 +#: lib/adminpanelaction.php:229 msgid "showForm() not implemented." msgstr "" #. TRANS: Client error message -#: lib/adminpanelaction.php:241 +#: lib/adminpanelaction.php:259 msgid "saveSettings() not implemented." msgstr "" #. TRANS: Client error message -#: lib/adminpanelaction.php:265 +#: lib/adminpanelaction.php:283 msgid "Unable to delete design setting." msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:330 +#: lib/adminpanelaction.php:348 msgid "Basic site configuration" msgstr "ప్రాథమిక సైటు స్వరూపణం" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:332 +#: lib/adminpanelaction.php:350 #, fuzzy msgctxt "MENU" msgid "Site" msgstr "సైటు" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:338 +#: lib/adminpanelaction.php:356 msgid "Design configuration" msgstr "రూపకల్పన స్వరూపణం" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:340 +#: lib/adminpanelaction.php:358 #, fuzzy msgctxt "MENU" msgid "Design" msgstr "రూపురేఖలు" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:346 +#: lib/adminpanelaction.php:364 msgid "User configuration" msgstr "వాడుకరి స్వరూపణం" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:348 -#, fuzzy -msgctxt "MENU" +#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 msgid "User" msgstr "వాడుకరి" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:354 +#: lib/adminpanelaction.php:372 #, fuzzy msgid "Access configuration" msgstr "SMS నిర్ధారణ" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:356 -#, fuzzy -msgctxt "MENU" -msgid "Access" -msgstr "అంగీకరించు" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:362 +#: lib/adminpanelaction.php:380 #, fuzzy msgid "Paths configuration" msgstr "SMS నిర్ధారణ" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:364 -msgctxt "MENU" -msgid "Paths" -msgstr "" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:370 +#: lib/adminpanelaction.php:388 #, fuzzy msgid "Sessions configuration" msgstr "రూపకల్పన స్వరూపణం" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:372 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:396 #, fuzzy -msgctxt "MENU" -msgid "Sessions" -msgstr "సంచిక" +msgid "Edit site notice" +msgstr "సైటు గమనిక" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:404 +#, fuzzy +msgid "Snapshots configuration" +msgstr "SMS నిర్ధారణ" #: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." @@ -5327,6 +5401,11 @@ msgstr "" msgid "Go" msgstr "వెళ్ళు" +#: lib/grantroleform.php:91 +#, php-format +msgid "Grant this user the \"%s\" role" +msgstr "" + #: lib/groupeditform.php:163 #, fuzzy msgid "URL of the homepage or blog of the group or topic" @@ -5884,10 +5963,6 @@ msgstr "స్పందనలు" msgid "Favorites" msgstr "ఇష్టాంశాలు" -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "వాడుకరి" - #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "వచ్చినవి" @@ -5913,7 +5988,7 @@ msgstr "" msgid "Unknown" msgstr "" -#: lib/profileaction.php:109 lib/profileaction.php:192 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:194 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "చందాలు" @@ -5921,23 +5996,23 @@ msgstr "చందాలు" msgid "All subscriptions" msgstr "అన్ని చందాలు" -#: lib/profileaction.php:140 lib/profileaction.php:201 lib/subgroupnav.php:90 +#: lib/profileaction.php:142 lib/profileaction.php:203 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "చందాదార్లు" -#: lib/profileaction.php:157 +#: lib/profileaction.php:159 msgid "All subscribers" msgstr "అందరు చందాదార్లు" -#: lib/profileaction.php:178 +#: lib/profileaction.php:180 msgid "User ID" msgstr "వాడుకరి ID" -#: lib/profileaction.php:183 +#: lib/profileaction.php:185 msgid "Member since" msgstr "సభ్యులైన తేదీ" -#: lib/profileaction.php:245 +#: lib/profileaction.php:247 msgid "All groups" msgstr "అన్ని గుంపులు" @@ -5978,7 +6053,12 @@ msgstr "ఈ నోటీసుని పునరావృతించాలా? msgid "Repeat this notice" msgstr "ఈ నోటీసుని పునరావృతించు" -#: lib/router.php:668 +#: lib/revokeroleform.php:91 +#, fuzzy, php-format +msgid "Revoke the \"%s\" role from this user" +msgstr "ఈ గుంపునుండి ఈ వాడుకరిని నిరోధించు" + +#: lib/router.php:671 msgid "No single user defined for single-user mode." msgstr "" @@ -6138,47 +6218,63 @@ msgstr "సందేశం" msgid "Moderate" msgstr "" -#: lib/util.php:1013 +#: lib/userprofile.php:352 +#, fuzzy +msgid "User role" +msgstr "వాడుకరి ప్రొఫైలు" + +#: lib/userprofile.php:354 +#, fuzzy +msgctxt "role" +msgid "Administrator" +msgstr "నిర్వాహకులు" + +#: lib/userprofile.php:355 +msgctxt "role" +msgid "Moderator" +msgstr "" + +#: lib/util.php:1015 msgid "a few seconds ago" msgstr "కొన్ని క్షణాల క్రితం" -#: lib/util.php:1015 +#: lib/util.php:1017 msgid "about a minute ago" msgstr "ఓ నిమిషం క్రితం" -#: lib/util.php:1017 +#: lib/util.php:1019 #, php-format msgid "about %d minutes ago" msgstr "%d నిమిషాల క్రితం" -#: lib/util.php:1019 +#: lib/util.php:1021 msgid "about an hour ago" msgstr "ఒక గంట క్రితం" -#: lib/util.php:1021 +#: lib/util.php:1023 #, php-format msgid "about %d hours ago" msgstr "%d గంటల క్రితం" -#: lib/util.php:1023 +#: lib/util.php:1025 msgid "about a day ago" msgstr "ఓ రోజు క్రితం" -#: lib/util.php:1025 +#: lib/util.php:1027 #, php-format msgid "about %d days ago" msgstr "%d రోజుల క్రితం" -#: lib/util.php:1027 +#: lib/util.php:1029 msgid "about a month ago" msgstr "ఓ నెల క్రితం" -#: lib/util.php:1029 +#: lib/util.php:1031 #, php-format msgid "about %d months ago" msgstr "%d నెలల క్రితం" -#: lib/util.php:1031 +#: lib/util.php:1033 msgid "about a year ago" msgstr "ఒక సంవత్సరం క్రితం" diff --git a/locale/tr/LC_MESSAGES/statusnet.po b/locale/tr/LC_MESSAGES/statusnet.po index 71aaa68132..8051f448b2 100644 --- a/locale/tr/LC_MESSAGES/statusnet.po +++ b/locale/tr/LC_MESSAGES/statusnet.po @@ -9,19 +9,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-02 21:02+0000\n" -"PO-Revision-Date: 2010-03-02 21:03:53+0000\n" +"POT-Creation-Date: 2010-03-04 18:55+0000\n" +"PO-Revision-Date: 2010-03-04 18:57:26+0000\n" "Language-Team: Turkish\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tr\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=1; plural=0;\n" #. TRANS: Page title -#: actions/accessadminpanel.php:55 +#. TRANS: Menu item for site administration +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 #, fuzzy msgid "Access" msgstr "Kabul et" @@ -124,7 +125,7 @@ msgstr "%s ve arkadaşları" #. TRANS: Page title. %1$s is user nickname #. TRANS: H1 text. %1$s is user nickname -#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -179,7 +180,7 @@ msgid "" msgstr "" #. TRANS: H1 text -#: actions/all.php:174 +#: actions/all.php:178 #, fuzzy msgid "You and friends" msgstr "%s ve arkadaşları" @@ -207,11 +208,11 @@ msgstr "" #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 -#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 +#: actions/apitimelinegroup.php:160 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:148 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 #, fuzzy msgid "API method not found." msgstr "Onay kodu bulunamadı." @@ -583,7 +584,7 @@ msgid "" "give access to your %4$s account to third parties you trust." msgstr "" -#: actions/apioauthauthorize.php:310 +#: actions/apioauthauthorize.php:310 lib/action.php:438 #, fuzzy msgid "Account" msgstr "Hakkında" @@ -676,18 +677,6 @@ msgstr "%1$s'in %2$s'deki durum mesajları " msgid "%1$s updates favorited by %2$s / %2$s." msgstr "%s adli kullanicinin durum mesajlari" -#: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:138 actions/userrss.php:90 -#, php-format -msgid "%s timeline" -msgstr "" - -#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 -#: actions/userrss.php:92 -#, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "" - #: actions/apitimelinementions.php:117 #, fuzzy, php-format msgid "%1$s / Updates mentioning %2$s" @@ -698,12 +687,12 @@ msgstr "%1$s'in %2$s'deki durum mesajları " msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "" -#: actions/apitimelinepublic.php:111 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "" -#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "" @@ -959,7 +948,7 @@ msgid "Conversation" msgstr "Yer" #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:216 lib/searchgroupnav.php:82 +#: lib/profileaction.php:218 lib/searchgroupnav.php:82 msgid "Notices" msgstr "Durum mesajları" @@ -981,7 +970,7 @@ msgstr "Bize o profili yollamadınız" #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1228 +#: lib/action.php:1217 msgid "There was a problem with your session token." msgstr "" @@ -1185,8 +1174,9 @@ msgstr "" #: actions/designadminpanel.php:586 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 +#: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:208 #: actions/tagother.php:154 actions/useradminpanel.php:294 #: lib/applicationeditform.php:333 lib/applicationeditform.php:334 #: lib/designsettings.php:256 lib/groupeditform.php:202 @@ -1311,7 +1301,7 @@ msgstr "Hakkında bölümü çok uzun (azm 140 karakter)." msgid "Could not update group." msgstr "Kullanıcı güncellenemedi." -#: actions/editgroup.php:264 classes/User_group.php:478 +#: actions/editgroup.php:264 classes/User_group.php:493 #, fuzzy msgid "Could not create aliases." msgstr "Avatar bilgisi kaydedilemedi" @@ -1435,7 +1425,7 @@ msgid "Cannot normalize that email address" msgstr "" #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:143 +#: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Geçersiz bir eposta adresi." @@ -1628,6 +1618,25 @@ msgstr "Böyle bir durum mesajı yok." msgid "Cannot read file." msgstr "Böyle bir durum mesajı yok." +#: actions/grantrole.php:62 actions/revokerole.php:62 +#, fuzzy +msgid "Invalid role." +msgstr "Geçersiz büyüklük." + +#: actions/grantrole.php:66 actions/revokerole.php:66 +msgid "This role is reserved and cannot be set." +msgstr "" + +#: actions/grantrole.php:75 +#, fuzzy +msgid "You cannot grant user roles on this site." +msgstr "Bize o profili yollamadınız" + +#: actions/grantrole.php:82 +#, fuzzy +msgid "User already has this role." +msgstr "Kullanıcının profili yok." + #: actions/groupblock.php:71 actions/groupunblock.php:71 #: actions/makeadmin.php:71 actions/subedit.php:46 #: lib/profileformaction.php:70 @@ -1779,12 +1788,18 @@ msgstr "" msgid "Make this user an admin" msgstr "" +#: actions/grouprss.php:138 actions/userrss.php:90 +#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#, php-format +msgid "%s timeline" +msgstr "" + #: actions/grouprss.php:140 #, fuzzy, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "%s adli kullanicinin durum mesajlari" -#: actions/groups.php:62 lib/profileaction.php:210 lib/profileaction.php:230 +#: actions/groups.php:62 lib/profileaction.php:212 lib/profileaction.php:232 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" msgstr "" @@ -2371,8 +2386,8 @@ msgstr "Bağlan" msgid "Only " msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 -#: lib/apiaction.php:1068 lib/apiaction.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1042 +#: lib/apiaction.php:1070 lib/apiaction.php:1179 msgid "Not a supported data format." msgstr "" @@ -2520,7 +2535,8 @@ msgstr "Yeni parola kaydedilemedi." msgid "Password saved." msgstr "Parola kaydedildi." -#: actions/pathsadminpanel.php:59 +#. TRANS: Menu item for site administration +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 msgid "Paths" msgstr "" @@ -2645,7 +2661,7 @@ msgstr "" msgid "SSL" msgstr "" -#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 +#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202 #, fuzzy msgid "Never" msgstr "Geri al" @@ -2705,11 +2721,11 @@ msgstr "Geçersiz bir eposta adresi." msgid "Users self-tagged with %1$s - page %2$d" msgstr "%s adli kullanicinin durum mesajlari" -#: actions/postnotice.php:84 +#: actions/postnotice.php:95 msgid "Invalid notice content" msgstr "Geçersiz durum mesajı" -#: actions/postnotice.php:90 +#: actions/postnotice.php:101 #, php-format msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" @@ -2792,7 +2808,7 @@ msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" -#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 +#: actions/profilesettings.php:151 msgid "Language" msgstr "" @@ -2818,7 +2834,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "Hakkında bölümü çok uzun (azm 140 karakter)." -#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:151 msgid "Timezone not selected." msgstr "" @@ -3125,7 +3141,7 @@ msgid "Same as password above. Required." msgstr "" #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 msgid "Email" msgstr "Eposta" @@ -3214,7 +3230,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:368 +#: lib/userprofile.php:394 msgid "Subscribe" msgstr "Abone ol" @@ -3316,6 +3332,16 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "%s için cevaplar" +#: actions/revokerole.php:75 +#, fuzzy +msgid "You cannot revoke user roles on this site." +msgstr "Bize o profili yollamadınız" + +#: actions/revokerole.php:82 +#, fuzzy +msgid "User doesn't have this role." +msgstr "Kullanıcının profili yok." + #: actions/rsd.php:146 actions/version.php:157 #, fuzzy msgid "StatusNet" @@ -3331,7 +3357,9 @@ msgstr "Bize o profili yollamadınız" msgid "User is already sandboxed." msgstr "Kullanıcının profili yok." +#. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:390 msgid "Sessions" msgstr "" @@ -3355,7 +3383,7 @@ msgstr "" msgid "Turn on debugging output for sessions." msgstr "" -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/useradminpanel.php:294 #, fuzzy msgid "Save site settings" @@ -3391,8 +3419,8 @@ msgstr "Yer" msgid "Description" msgstr "Abonelikler" -#: actions/showapplication.php:192 actions/showgroup.php:437 -#: lib/profileaction.php:174 +#: actions/showapplication.php:192 actions/showgroup.php:438 +#: lib/profileaction.php:176 msgid "Statistics" msgstr "İstatistikler" @@ -3526,47 +3554,47 @@ msgstr "" msgid "Group actions" msgstr "" -#: actions/showgroup.php:336 +#: actions/showgroup.php:337 #, fuzzy, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "%s için durum RSS beslemesi" -#: actions/showgroup.php:342 +#: actions/showgroup.php:343 #, fuzzy, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "%s için durum RSS beslemesi" -#: actions/showgroup.php:348 +#: actions/showgroup.php:349 #, fuzzy, php-format msgid "Notice feed for %s group (Atom)" msgstr "%s için durum RSS beslemesi" -#: actions/showgroup.php:353 +#: actions/showgroup.php:354 #, fuzzy, php-format msgid "FOAF for %s group" msgstr "%s için durum RSS beslemesi" -#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 +#: actions/showgroup.php:390 actions/showgroup.php:447 lib/groupnav.php:91 #, fuzzy msgid "Members" msgstr "Üyelik başlangıcı" -#: actions/showgroup.php:394 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 +#: actions/showgroup.php:395 lib/profileaction.php:117 +#: lib/profileaction.php:150 lib/profileaction.php:238 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "" -#: actions/showgroup.php:400 +#: actions/showgroup.php:401 msgid "All members" msgstr "" -#: actions/showgroup.php:440 +#: actions/showgroup.php:441 #, fuzzy msgid "Created" msgstr "Yarat" -#: actions/showgroup.php:456 +#: actions/showgroup.php:457 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3576,7 +3604,7 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showgroup.php:462 +#: actions/showgroup.php:463 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3585,7 +3613,7 @@ msgid "" "their life and interests. " msgstr "" -#: actions/showgroup.php:490 +#: actions/showgroup.php:491 msgid "Admins" msgstr "" @@ -3697,150 +3725,138 @@ msgid "User is already silenced." msgstr "Kullanıcının profili yok." #: actions/siteadminpanel.php:69 -msgid "Basic settings for this StatusNet site." +msgid "Basic settings for this StatusNet site" msgstr "" -#: actions/siteadminpanel.php:132 +#: actions/siteadminpanel.php:133 msgid "Site name must have non-zero length." msgstr "" -#: actions/siteadminpanel.php:140 +#: actions/siteadminpanel.php:141 #, fuzzy msgid "You must have a valid contact email address." msgstr "Geçersiz bir eposta adresi." -#: actions/siteadminpanel.php:158 +#: actions/siteadminpanel.php:159 #, php-format msgid "Unknown language \"%s\"." msgstr "" #: actions/siteadminpanel.php:165 -msgid "Invalid snapshot report URL." -msgstr "" - -#: actions/siteadminpanel.php:171 -msgid "Invalid snapshot run value." -msgstr "" - -#: actions/siteadminpanel.php:177 -msgid "Snapshot frequency must be a number." -msgstr "" - -#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "" -#: actions/siteadminpanel.php:189 +#: actions/siteadminpanel.php:171 msgid "Dupe limit must 1 or more seconds." msgstr "" -#: actions/siteadminpanel.php:239 +#: actions/siteadminpanel.php:221 msgid "General" msgstr "" -#: actions/siteadminpanel.php:242 +#: actions/siteadminpanel.php:224 #, fuzzy msgid "Site name" msgstr "Yeni durum mesajı" -#: actions/siteadminpanel.php:243 +#: actions/siteadminpanel.php:225 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "" -#: actions/siteadminpanel.php:247 +#: actions/siteadminpanel.php:229 msgid "Brought by" msgstr "" -#: actions/siteadminpanel.php:248 +#: actions/siteadminpanel.php:230 msgid "Text used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:252 +#: actions/siteadminpanel.php:234 msgid "Brought by URL" msgstr "" -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:235 msgid "URL used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:239 #, fuzzy msgid "Contact email address for your site" msgstr "Kullanıcı için kaydedilmiş eposta adresi yok." -#: actions/siteadminpanel.php:263 +#: actions/siteadminpanel.php:245 #, fuzzy msgid "Local" msgstr "Yer" -#: actions/siteadminpanel.php:274 +#: actions/siteadminpanel.php:256 msgid "Default timezone" msgstr "" -#: actions/siteadminpanel.php:275 +#: actions/siteadminpanel.php:257 msgid "Default timezone for the site; usually UTC." msgstr "" -#: actions/siteadminpanel.php:281 -msgid "Default site language" +#: actions/siteadminpanel.php:262 +msgid "Default language" msgstr "" -#: actions/siteadminpanel.php:289 -msgid "Snapshots" +#: actions/siteadminpanel.php:263 +msgid "Site language when autodetection from browser settings is not available" msgstr "" -#: actions/siteadminpanel.php:292 -msgid "Randomly during Web hit" -msgstr "" - -#: actions/siteadminpanel.php:293 -msgid "In a scheduled job" -msgstr "" - -#: actions/siteadminpanel.php:295 -msgid "Data snapshots" -msgstr "" - -#: actions/siteadminpanel.php:296 -msgid "When to send statistical data to status.net servers" -msgstr "" - -#: actions/siteadminpanel.php:301 -msgid "Frequency" -msgstr "" - -#: actions/siteadminpanel.php:302 -msgid "Snapshots will be sent once every N web hits" -msgstr "" - -#: actions/siteadminpanel.php:307 -msgid "Report URL" -msgstr "" - -#: actions/siteadminpanel.php:308 -msgid "Snapshots will be sent to this URL" -msgstr "" - -#: actions/siteadminpanel.php:315 +#: actions/siteadminpanel.php:271 msgid "Limits" msgstr "" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Text limit" msgstr "" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Maximum number of characters for notices." msgstr "" -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "Dupe limit" msgstr "" -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" +#: actions/sitenoticeadminpanel.php:56 +#, fuzzy +msgid "Site Notice" +msgstr "Yeni durum mesajı" + +#: actions/sitenoticeadminpanel.php:67 +msgid "Edit site-wide message" +msgstr "" + +#: actions/sitenoticeadminpanel.php:103 +#, fuzzy +msgid "Unable to save site notice." +msgstr "Durum mesajını kaydederken hata oluştu." + +#: actions/sitenoticeadminpanel.php:113 +msgid "Max length for the site-wide notice is 255 chars" +msgstr "" + +#: actions/sitenoticeadminpanel.php:176 +#, fuzzy +msgid "Site notice text" +msgstr "Yeni durum mesajı" + +#: actions/sitenoticeadminpanel.php:178 +msgid "Site-wide notice text (255 chars max; HTML okay)" +msgstr "" + +#: actions/sitenoticeadminpanel.php:198 +#, fuzzy +msgid "Save site notice" +msgstr "Yeni durum mesajı" + #: actions/smssettings.php:58 #, fuzzy msgid "SMS settings" @@ -3936,6 +3952,66 @@ msgstr "" msgid "No code entered" msgstr "" +#. TRANS: Menu item for site administration +#: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 +#: lib/adminpanelaction.php:406 +msgid "Snapshots" +msgstr "" + +#: actions/snapshotadminpanel.php:65 +#, fuzzy +msgid "Manage snapshot configuration" +msgstr "Abonelikler" + +#: actions/snapshotadminpanel.php:127 +msgid "Invalid snapshot run value." +msgstr "" + +#: actions/snapshotadminpanel.php:133 +msgid "Snapshot frequency must be a number." +msgstr "" + +#: actions/snapshotadminpanel.php:144 +msgid "Invalid snapshot report URL." +msgstr "" + +#: actions/snapshotadminpanel.php:200 +msgid "Randomly during Web hit" +msgstr "" + +#: actions/snapshotadminpanel.php:201 +msgid "In a scheduled job" +msgstr "" + +#: actions/snapshotadminpanel.php:206 +msgid "Data snapshots" +msgstr "" + +#: actions/snapshotadminpanel.php:208 +msgid "When to send statistical data to status.net servers" +msgstr "" + +#: actions/snapshotadminpanel.php:217 +msgid "Frequency" +msgstr "" + +#: actions/snapshotadminpanel.php:218 +msgid "Snapshots will be sent once every N web hits" +msgstr "" + +#: actions/snapshotadminpanel.php:226 +msgid "Report URL" +msgstr "" + +#: actions/snapshotadminpanel.php:227 +msgid "Snapshots will be sent to this URL" +msgstr "" + +#: actions/snapshotadminpanel.php:248 +#, fuzzy +msgid "Save snapshot settings" +msgstr "Ayarlar" + #: actions/subedit.php:70 #, fuzzy msgid "You are not subscribed to that profile." @@ -4144,7 +4220,7 @@ msgstr "Yetkilendirme isteği yok!" msgid "Unsubscribed" msgstr "Aboneliği sonlandır" -#: actions/updateprofile.php:62 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -4344,16 +4420,22 @@ msgstr "Bütün abonelikler" msgid "Search for more groups" msgstr "" -#: actions/usergroups.php:153 +#: actions/usergroups.php:157 #, fuzzy, php-format msgid "%s is not a member of any group." msgstr "Bize o profili yollamadınız" -#: actions/usergroups.php:158 +#: actions/usergroups.php:162 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" +#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: lib/atomusernoticefeed.php:72 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "" + #: actions/version.php:73 #, fuzzy, php-format msgid "StatusNet %s" @@ -4397,7 +4479,7 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:196 lib/action.php:778 +#: actions/version.php:196 lib/action.php:767 #, fuzzy msgid "Version" msgstr "Kişisel" @@ -4465,41 +4547,41 @@ msgstr "" msgid "DB error inserting hashtag: %s" msgstr "" -#: classes/Notice.php:239 +#: classes/Notice.php:241 #, fuzzy msgid "Problem saving notice. Too long." msgstr "Durum mesajını kaydederken hata oluştu." -#: classes/Notice.php:243 +#: classes/Notice.php:245 #, fuzzy msgid "Problem saving notice. Unknown user." msgstr "Durum mesajını kaydederken hata oluştu." -#: classes/Notice.php:248 +#: classes/Notice.php:250 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: classes/Notice.php:254 +#: classes/Notice.php:256 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." msgstr "" -#: classes/Notice.php:260 +#: classes/Notice.php:262 msgid "You are banned from posting notices on this site." msgstr "" -#: classes/Notice.php:326 classes/Notice.php:352 +#: classes/Notice.php:328 classes/Notice.php:354 msgid "Problem saving notice." msgstr "Durum mesajını kaydederken hata oluştu." -#: classes/Notice.php:911 +#: classes/Notice.php:927 #, fuzzy msgid "Problem saving group inbox." msgstr "Durum mesajını kaydederken hata oluştu." -#: classes/Notice.php:1442 +#: classes/Notice.php:1459 #, php-format msgid "RT @%1$s %2$s" msgstr "" @@ -4527,7 +4609,12 @@ msgstr "Bu kullanıcıyı zaten takip etmiyorsunuz!" msgid "Couldn't delete self-subscription." msgstr "Abonelik silinemedi." -#: classes/Subscription.php:179 lib/subs.php:69 +#: classes/Subscription.php:190 +#, fuzzy +msgid "Couldn't delete subscription OMB token." +msgstr "Abonelik silinemedi." + +#: classes/Subscription.php:201 lib/subs.php:69 msgid "Couldn't delete subscription." msgstr "Abonelik silinemedi." @@ -4536,22 +4623,22 @@ msgstr "Abonelik silinemedi." msgid "Welcome to %1$s, @%2$s!" msgstr "" -#: classes/User_group.php:462 +#: classes/User_group.php:477 #, fuzzy msgid "Could not create group." msgstr "Avatar bilgisi kaydedilemedi" -#: classes/User_group.php:471 +#: classes/User_group.php:486 #, fuzzy msgid "Could not set group URI." msgstr "Abonelik oluşturulamadı." -#: classes/User_group.php:492 +#: classes/User_group.php:507 #, fuzzy msgid "Could not set group membership." msgstr "Abonelik oluşturulamadı." -#: classes/User_group.php:506 +#: classes/User_group.php:521 #, fuzzy msgid "Could not save local group info." msgstr "Abonelik oluşturulamadı." @@ -4595,192 +4682,186 @@ msgstr "%1$s'in %2$s'deki durum mesajları " msgid "Untitled page" msgstr "" -#: lib/action.php:433 +#: lib/action.php:424 msgid "Primary site navigation" msgstr "" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:439 +#: lib/action.php:430 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:442 +#: lib/action.php:433 #, fuzzy msgctxt "MENU" msgid "Personal" msgstr "Kişisel" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:444 +#: lib/action.php:435 #, fuzzy msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Parolayı değiştir" -#: lib/action.php:447 -#, fuzzy -msgctxt "MENU" -msgid "Account" -msgstr "Hakkında" - #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:450 +#: lib/action.php:440 #, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Sunucuya yönlendirme yapılamadı: %s" -#: lib/action.php:453 +#: lib/action.php:443 #, fuzzy -msgctxt "MENU" msgid "Connect" msgstr "Bağlan" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:457 +#: lib/action.php:446 #, fuzzy msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Abonelikler" -#: lib/action.php:460 +#: lib/action.php:449 msgctxt "MENU" msgid "Admin" msgstr "" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:464 +#: lib/action.php:453 #, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "" -#: lib/action.php:467 +#: lib/action.php:456 #, fuzzy msgctxt "MENU" msgid "Invite" msgstr "Geçersiz büyüklük." #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:473 +#: lib/action.php:462 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "" -#: lib/action.php:476 +#: lib/action.php:465 #, fuzzy msgctxt "MENU" msgid "Logout" msgstr "Çıkış" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:481 +#: lib/action.php:470 #, fuzzy msgctxt "TOOLTIP" msgid "Create an account" msgstr "Yeni hesap oluştur" -#: lib/action.php:484 +#: lib/action.php:473 #, fuzzy msgctxt "MENU" msgid "Register" msgstr "Kayıt" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:487 +#: lib/action.php:476 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "" -#: lib/action.php:490 +#: lib/action.php:479 #, fuzzy msgctxt "MENU" msgid "Login" msgstr "Giriş" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:493 +#: lib/action.php:482 #, fuzzy msgctxt "TOOLTIP" msgid "Help me!" msgstr "Yardım" -#: lib/action.php:496 +#: lib/action.php:485 #, fuzzy msgctxt "MENU" msgid "Help" msgstr "Yardım" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:499 +#: lib/action.php:488 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "" -#: lib/action.php:502 +#: lib/action.php:491 #, fuzzy msgctxt "MENU" msgid "Search" msgstr "Ara" #. TRANS: DT element for site notice. String is hidden in default CSS. -#: lib/action.php:524 +#. TRANS: Menu item for site administration +#: lib/action.php:513 lib/adminpanelaction.php:398 #, fuzzy msgid "Site notice" msgstr "Yeni durum mesajı" -#: lib/action.php:590 +#: lib/action.php:579 msgid "Local views" msgstr "" -#: lib/action.php:656 +#: lib/action.php:645 #, fuzzy msgid "Page notice" msgstr "Yeni durum mesajı" -#: lib/action.php:758 +#: lib/action.php:747 #, fuzzy msgid "Secondary site navigation" msgstr "Abonelikler" -#: lib/action.php:763 +#: lib/action.php:752 msgid "Help" msgstr "Yardım" -#: lib/action.php:765 +#: lib/action.php:754 msgid "About" msgstr "Hakkında" -#: lib/action.php:767 +#: lib/action.php:756 msgid "FAQ" msgstr "SSS" -#: lib/action.php:771 +#: lib/action.php:760 msgid "TOS" msgstr "" -#: lib/action.php:774 +#: lib/action.php:763 msgid "Privacy" msgstr "Gizlilik" -#: lib/action.php:776 +#: lib/action.php:765 msgid "Source" msgstr "Kaynak" -#: lib/action.php:780 +#: lib/action.php:769 msgid "Contact" msgstr "İletişim" -#: lib/action.php:782 +#: lib/action.php:771 msgid "Badge" msgstr "" -#: lib/action.php:810 +#: lib/action.php:799 msgid "StatusNet software license" msgstr "" -#: lib/action.php:813 +#: lib/action.php:802 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4789,12 +4870,12 @@ msgstr "" "**%%site.name%%** [%%site.broughtby%%](%%site.broughtbyurl%%)\" tarafından " "hazırlanan anında mesajlaşma ağıdır. " -#: lib/action.php:815 +#: lib/action.php:804 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** bir aninda mesajlaşma sosyal ağıdır." -#: lib/action.php:817 +#: lib/action.php:806 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4805,56 +4886,56 @@ msgstr "" "licenses/agpl-3.0.html) lisansı ile korunan [StatusNet](http://status.net/) " "microbloglama yazılımının %s. versiyonunu kullanmaktadır." -#: lib/action.php:832 +#: lib/action.php:821 #, fuzzy msgid "Site content license" msgstr "Yeni durum mesajı" -#: lib/action.php:837 +#: lib/action.php:826 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:842 +#: lib/action.php:831 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:845 +#: lib/action.php:834 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" -#: lib/action.php:858 +#: lib/action.php:847 msgid "All " msgstr "" -#: lib/action.php:864 +#: lib/action.php:853 msgid "license." msgstr "" -#: lib/action.php:1163 +#: lib/action.php:1152 msgid "Pagination" msgstr "" -#: lib/action.php:1172 +#: lib/action.php:1161 #, fuzzy msgid "After" msgstr "« Sonra" -#: lib/action.php:1180 +#: lib/action.php:1169 #, fuzzy msgid "Before" msgstr "Önce »" -#: lib/activity.php:449 +#: lib/activity.php:453 msgid "Can't handle remote content yet." msgstr "" -#: lib/activity.php:477 +#: lib/activity.php:481 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activity.php:481 +#: lib/activity.php:485 msgid "Can't handle embedded Base64 content yet." msgstr "" @@ -4869,95 +4950,86 @@ msgid "Changes to that panel are not allowed." msgstr "" #. TRANS: Client error message -#: lib/adminpanelaction.php:211 +#: lib/adminpanelaction.php:229 msgid "showForm() not implemented." msgstr "" #. TRANS: Client error message -#: lib/adminpanelaction.php:241 +#: lib/adminpanelaction.php:259 msgid "saveSettings() not implemented." msgstr "" #. TRANS: Client error message -#: lib/adminpanelaction.php:265 +#: lib/adminpanelaction.php:283 msgid "Unable to delete design setting." msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:330 +#: lib/adminpanelaction.php:348 #, fuzzy msgid "Basic site configuration" msgstr "Eposta adresi onayı" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:332 +#: lib/adminpanelaction.php:350 #, fuzzy msgctxt "MENU" msgid "Site" msgstr "Yeni durum mesajı" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:338 +#: lib/adminpanelaction.php:356 #, fuzzy msgid "Design configuration" msgstr "Eposta adresi onayı" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:340 +#: lib/adminpanelaction.php:358 #, fuzzy msgctxt "MENU" msgid "Design" msgstr "Kişisel" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:346 +#: lib/adminpanelaction.php:364 #, fuzzy msgid "User configuration" msgstr "Eposta adresi onayı" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:348 -msgctxt "MENU" +#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 msgid "User" msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:354 +#: lib/adminpanelaction.php:372 #, fuzzy msgid "Access configuration" msgstr "Eposta adresi onayı" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:356 -#, fuzzy -msgctxt "MENU" -msgid "Access" -msgstr "Kabul et" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:362 +#: lib/adminpanelaction.php:380 #, fuzzy msgid "Paths configuration" msgstr "Eposta adresi onayı" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:364 -msgctxt "MENU" -msgid "Paths" -msgstr "" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:370 +#: lib/adminpanelaction.php:388 #, fuzzy msgid "Sessions configuration" msgstr "Eposta adresi onayı" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:372 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:396 #, fuzzy -msgctxt "MENU" -msgid "Sessions" -msgstr "Kişisel" +msgid "Edit site notice" +msgstr "Yeni durum mesajı" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:404 +#, fuzzy +msgid "Snapshots configuration" +msgstr "Eposta adresi onayı" #: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." @@ -5461,6 +5533,11 @@ msgstr "" msgid "Go" msgstr "" +#: lib/grantroleform.php:91 +#, php-format +msgid "Grant this user the \"%s\" role" +msgstr "" + #: lib/groupeditform.php:163 #, fuzzy msgid "URL of the homepage or blog of the group or topic" @@ -6013,10 +6090,6 @@ msgstr "Cevaplar" msgid "Favorites" msgstr "" -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "" - #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "" @@ -6042,7 +6115,7 @@ msgstr "" msgid "Unknown" msgstr "" -#: lib/profileaction.php:109 lib/profileaction.php:192 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:194 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Abonelikler" @@ -6050,24 +6123,24 @@ msgstr "Abonelikler" msgid "All subscriptions" msgstr "Bütün abonelikler" -#: lib/profileaction.php:140 lib/profileaction.php:201 lib/subgroupnav.php:90 +#: lib/profileaction.php:142 lib/profileaction.php:203 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Abone olanlar" -#: lib/profileaction.php:157 +#: lib/profileaction.php:159 #, fuzzy msgid "All subscribers" msgstr "Abone olanlar" -#: lib/profileaction.php:178 +#: lib/profileaction.php:180 msgid "User ID" msgstr "" -#: lib/profileaction.php:183 +#: lib/profileaction.php:185 msgid "Member since" msgstr "Üyelik başlangıcı" -#: lib/profileaction.php:245 +#: lib/profileaction.php:247 msgid "All groups" msgstr "" @@ -6111,7 +6184,12 @@ msgstr "Böyle bir durum mesajı yok." msgid "Repeat this notice" msgstr "Böyle bir durum mesajı yok." -#: lib/router.php:668 +#: lib/revokeroleform.php:91 +#, fuzzy, php-format +msgid "Revoke the \"%s\" role from this user" +msgstr "Böyle bir kullanıcı yok." + +#: lib/router.php:671 msgid "No single user defined for single-user mode." msgstr "" @@ -6274,47 +6352,62 @@ msgstr "" msgid "Moderate" msgstr "" -#: lib/util.php:1013 +#: lib/userprofile.php:352 +#, fuzzy +msgid "User role" +msgstr "Kullanıcının profili yok." + +#: lib/userprofile.php:354 +msgctxt "role" +msgid "Administrator" +msgstr "" + +#: lib/userprofile.php:355 +msgctxt "role" +msgid "Moderator" +msgstr "" + +#: lib/util.php:1015 msgid "a few seconds ago" msgstr "birkaç saniye önce" -#: lib/util.php:1015 +#: lib/util.php:1017 msgid "about a minute ago" msgstr "yaklaşık bir dakika önce" -#: lib/util.php:1017 +#: lib/util.php:1019 #, php-format msgid "about %d minutes ago" msgstr "yaklaşık %d dakika önce" -#: lib/util.php:1019 +#: lib/util.php:1021 msgid "about an hour ago" msgstr "yaklaşık bir saat önce" -#: lib/util.php:1021 +#: lib/util.php:1023 #, php-format msgid "about %d hours ago" msgstr "yaklaşık %d saat önce" -#: lib/util.php:1023 +#: lib/util.php:1025 msgid "about a day ago" msgstr "yaklaşık bir gün önce" -#: lib/util.php:1025 +#: lib/util.php:1027 #, php-format msgid "about %d days ago" msgstr "yaklaşık %d gün önce" -#: lib/util.php:1027 +#: lib/util.php:1029 msgid "about a month ago" msgstr "yaklaşık bir ay önce" -#: lib/util.php:1029 +#: lib/util.php:1031 #, php-format msgid "about %d months ago" msgstr "yaklaşık %d ay önce" -#: lib/util.php:1031 +#: lib/util.php:1033 msgid "about a year ago" msgstr "yaklaşık bir yıl önce" diff --git a/locale/uk/LC_MESSAGES/statusnet.po b/locale/uk/LC_MESSAGES/statusnet.po index fd168ba50c..08f93f255b 100644 --- a/locale/uk/LC_MESSAGES/statusnet.po +++ b/locale/uk/LC_MESSAGES/statusnet.po @@ -10,12 +10,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-02 21:02+0000\n" -"PO-Revision-Date: 2010-03-02 21:03:56+0000\n" +"POT-Creation-Date: 2010-03-04 18:55+0000\n" +"PO-Revision-Date: 2010-03-04 18:57:28+0000\n" "Language-Team: Ukrainian\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: out-statusnet\n" @@ -23,7 +23,8 @@ msgstr "" "10< =4 && (n%100<10 or n%100>=20) ? 1 : 2);\n" #. TRANS: Page title -#: actions/accessadminpanel.php:55 +#. TRANS: Menu item for site administration +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 msgid "Access" msgstr "Погодитись" @@ -46,7 +47,6 @@ msgstr "" #. TRANS: Checkbox label for prohibiting anonymous users from viewing site. #: actions/accessadminpanel.php:167 -#, fuzzy msgctxt "LABEL" msgid "Private" msgstr "Приватно" @@ -77,7 +77,6 @@ msgid "Save access settings" msgstr "Зберегти параметри доступу" #: actions/accessadminpanel.php:203 -#, fuzzy msgctxt "BUTTON" msgid "Save" msgstr "Зберегти" @@ -122,7 +121,7 @@ msgstr "%1$s та друзі, сторінка %2$d" #. TRANS: Page title. %1$s is user nickname #. TRANS: H1 text. %1$s is user nickname -#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -183,7 +182,7 @@ msgstr "" "«розштовхати» %s або щось йому написати." #. TRANS: H1 text -#: actions/all.php:174 +#: actions/all.php:178 msgid "You and friends" msgstr "Ви з друзями" @@ -210,11 +209,11 @@ msgstr "Оновлення від %1$s та друзів на %2$s!" #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 -#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 +#: actions/apitimelinegroup.php:160 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:148 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 msgid "API method not found." msgstr "API метод не знайдено." @@ -579,7 +578,7 @@ msgstr "" "на доступ до Вашого акаунту %4$s лише тим стороннім додаткам, яким Ви " "довіряєте." -#: actions/apioauthauthorize.php:310 +#: actions/apioauthauthorize.php:310 lib/action.php:438 msgid "Account" msgstr "Акаунт" @@ -668,18 +667,6 @@ msgstr "%1$s / Обрані від %2$s" msgid "%1$s updates favorited by %2$s / %2$s." msgstr "%1$s оновлення обраних від %2$s / %2$s." -#: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:138 actions/userrss.php:90 -#, php-format -msgid "%s timeline" -msgstr "%s стрічка" - -#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 -#: actions/userrss.php:92 -#, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "Оновлення від %1$s на %2$s!" - #: actions/apitimelinementions.php:117 #, php-format msgid "%1$s / Updates mentioning %2$s" @@ -690,12 +677,12 @@ msgstr "%1$s / Оновленні відповіді %2$s" msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "%1$s оновив цю відповідь на допис від %2$s / %3$s." -#: actions/apitimelinepublic.php:111 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "%s загальна стрічка" -#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "%s оновлення від усіх!" @@ -941,7 +928,7 @@ msgid "Conversation" msgstr "Розмова" #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:216 lib/searchgroupnav.php:82 +#: lib/profileaction.php:218 lib/searchgroupnav.php:82 msgid "Notices" msgstr "Дописи" @@ -960,7 +947,7 @@ msgstr "Ви не є власником цього додатку." #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1228 +#: lib/action.php:1217 msgid "There was a problem with your session token." msgstr "Виникли певні проблеми з токеном поточної сесії." @@ -1154,8 +1141,9 @@ msgstr "Повернутись до початкових налаштувань" #: actions/designadminpanel.php:586 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 +#: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:208 #: actions/tagother.php:154 actions/useradminpanel.php:294 #: lib/applicationeditform.php:333 lib/applicationeditform.php:334 #: lib/designsettings.php:256 lib/groupeditform.php:202 @@ -1271,7 +1259,7 @@ msgstr "опис надто довгий (%d знаків максимум)." msgid "Could not update group." msgstr "Не вдалося оновити групу." -#: actions/editgroup.php:264 classes/User_group.php:478 +#: actions/editgroup.php:264 classes/User_group.php:493 msgid "Could not create aliases." msgstr "Неможна призначити додаткові імена." @@ -1393,7 +1381,7 @@ msgid "Cannot normalize that email address" msgstr "Не можна полагодити цю поштову адресу" #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:143 +#: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Це недійсна електронна адреса." @@ -1584,6 +1572,25 @@ msgstr "Такого файлу немає." msgid "Cannot read file." msgstr "Не можу прочитати файл." +#: actions/grantrole.php:62 actions/revokerole.php:62 +#, fuzzy +msgid "Invalid role." +msgstr "Невірний токен." + +#: actions/grantrole.php:66 actions/revokerole.php:66 +msgid "This role is reserved and cannot be set." +msgstr "" + +#: actions/grantrole.php:75 +#, fuzzy +msgid "You cannot grant user roles on this site." +msgstr "Ви не можете нікого ізолювати на цьому сайті." + +#: actions/grantrole.php:82 +#, fuzzy +msgid "User already has this role." +msgstr "Користувачу наразі заклеїли рота скотчем." + #: actions/groupblock.php:71 actions/groupunblock.php:71 #: actions/makeadmin.php:71 actions/subedit.php:46 #: lib/profileformaction.php:70 @@ -1731,12 +1738,18 @@ msgstr "Зробити адміном" msgid "Make this user an admin" msgstr "Надати цьому користувачеві права адміністратора" +#: actions/grouprss.php:138 actions/userrss.php:90 +#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#, php-format +msgid "%s timeline" +msgstr "%s стрічка" + #: actions/grouprss.php:140 #, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Оновлення членів %1$s на %2$s!" -#: actions/groups.php:62 lib/profileaction.php:210 lib/profileaction.php:230 +#: actions/groups.php:62 lib/profileaction.php:212 lib/profileaction.php:232 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" msgstr "Групи" @@ -1999,7 +2012,6 @@ msgstr "Можна додати персональне повідомлення #. TRANS: Send button for inviting friends #: actions/invite.php:198 -#, fuzzy msgctxt "BUTTON" msgid "Send" msgstr "Надіслати" @@ -2361,8 +2373,8 @@ msgstr "тип змісту " msgid "Only " msgstr "Лише " -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 -#: lib/apiaction.php:1068 lib/apiaction.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1042 +#: lib/apiaction.php:1070 lib/apiaction.php:1179 msgid "Not a supported data format." msgstr "Такий формат даних не підтримується." @@ -2503,7 +2515,8 @@ msgstr "Неможна зберегти новий пароль." msgid "Password saved." msgstr "Пароль збережено." -#: actions/pathsadminpanel.php:59 +#. TRANS: Menu item for site administration +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 msgid "Paths" msgstr "Шлях" @@ -2623,7 +2636,7 @@ msgstr "Директорія фонів" msgid "SSL" msgstr "SSL-шифрування" -#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 +#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202 msgid "Never" msgstr "Ніколи" @@ -2679,11 +2692,11 @@ msgstr "Це недійсний особистий теґ: %s" msgid "Users self-tagged with %1$s - page %2$d" msgstr "Користувачі з особистим теґом %1$s — сторінка %2$d" -#: actions/postnotice.php:84 +#: actions/postnotice.php:95 msgid "Invalid notice content" msgstr "Недійсний зміст допису" -#: actions/postnotice.php:90 +#: actions/postnotice.php:101 #, php-format msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "Ліцензія допису «%1$s» є несумісною з ліцензією сайту «%2$s»." @@ -2763,7 +2776,7 @@ msgstr "" "Позначте себе теґами (літери, цифри, -, . та _), відокремлюючи кожен комою " "або пробілом" -#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 +#: actions/profilesettings.php:151 msgid "Language" msgstr "Мова" @@ -2790,7 +2803,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "Ви перевищили ліміт (%d знаків максимум)." -#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:151 msgid "Timezone not selected." msgstr "Часовий пояс не обрано." @@ -3111,7 +3124,7 @@ msgid "Same as password above. Required." msgstr "Такий само, як і пароль вище. Неодмінно." #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 msgid "Email" msgstr "Пошта" @@ -3216,7 +3229,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "URL-адреса Вашого профілю на іншому сумісному сервісі" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:368 +#: lib/userprofile.php:394 msgid "Subscribe" msgstr "Підписатись" @@ -3319,6 +3332,16 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "Відповіді до %1$s на %2$s!" +#: actions/revokerole.php:75 +#, fuzzy +msgid "You cannot revoke user roles on this site." +msgstr "Ви не можете позбавляти користувачів права голосу на цьому сайті." + +#: actions/revokerole.php:82 +#, fuzzy +msgid "User doesn't have this role." +msgstr "Користувач без відповідного профілю." + #: actions/rsd.php:146 actions/version.php:157 msgid "StatusNet" msgstr "StatusNet" @@ -3331,7 +3354,9 @@ msgstr "Ви не можете нікого ізолювати на цьому msgid "User is already sandboxed." msgstr "Користувача ізольовано доки набереться уму-розуму." +#. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:390 msgid "Sessions" msgstr "Сесії" @@ -3355,7 +3380,7 @@ msgstr "Сесія наладки" msgid "Turn on debugging output for sessions." msgstr "Виводити дані сесії наладки." -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "Зберегти налаштування сайту" @@ -3386,8 +3411,8 @@ msgstr "Організація" msgid "Description" msgstr "Опис" -#: actions/showapplication.php:192 actions/showgroup.php:437 -#: lib/profileaction.php:174 +#: actions/showapplication.php:192 actions/showgroup.php:438 +#: lib/profileaction.php:176 msgid "Statistics" msgstr "Статистика" @@ -3529,45 +3554,45 @@ msgstr "Додаткові імена" msgid "Group actions" msgstr "Діяльність групи" -#: actions/showgroup.php:336 +#: actions/showgroup.php:337 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Стрічка дописів групи %s (RSS 1.0)" -#: actions/showgroup.php:342 +#: actions/showgroup.php:343 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Стрічка дописів групи %s (RSS 2.0)" -#: actions/showgroup.php:348 +#: actions/showgroup.php:349 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "Стрічка дописів групи %s (Atom)" -#: actions/showgroup.php:353 +#: actions/showgroup.php:354 #, php-format msgid "FOAF for %s group" msgstr "FOAF для групи %s" -#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 +#: actions/showgroup.php:390 actions/showgroup.php:447 lib/groupnav.php:91 msgid "Members" msgstr "Учасники" -#: actions/showgroup.php:394 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 +#: actions/showgroup.php:395 lib/profileaction.php:117 +#: lib/profileaction.php:150 lib/profileaction.php:238 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(Пусто)" -#: actions/showgroup.php:400 +#: actions/showgroup.php:401 msgid "All members" msgstr "Всі учасники" -#: actions/showgroup.php:440 +#: actions/showgroup.php:441 msgid "Created" msgstr "Створено" -#: actions/showgroup.php:456 +#: actions/showgroup.php:457 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3582,7 +3607,7 @@ msgstr "" "короткі дописи про своє життя та інтереси. [Приєднуйтесь](%%action.register%" "%) зараз і долучіться до спілкування! ([Дізнатися більше](%%doc.help%%))" -#: actions/showgroup.php:462 +#: actions/showgroup.php:463 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3595,7 +3620,7 @@ msgstr "" "забезпеченні [StatusNet](http://status.net/). Члени цієї групи роблять " "короткі дописи про своє життя та інтереси. " -#: actions/showgroup.php:490 +#: actions/showgroup.php:491 msgid "Admins" msgstr "Адміни" @@ -3717,150 +3742,141 @@ msgid "User is already silenced." msgstr "Користувачу наразі заклеїли рота скотчем." #: actions/siteadminpanel.php:69 -msgid "Basic settings for this StatusNet site." +#, fuzzy +msgid "Basic settings for this StatusNet site" msgstr "Загальні налаштування цього сайту StatusNet." -#: actions/siteadminpanel.php:132 +#: actions/siteadminpanel.php:133 msgid "Site name must have non-zero length." msgstr "Ім’я сайту не може бути порожнім." -#: actions/siteadminpanel.php:140 +#: actions/siteadminpanel.php:141 msgid "You must have a valid contact email address." msgstr "Електронна адреса має бути чинною." -#: actions/siteadminpanel.php:158 +#: actions/siteadminpanel.php:159 #, php-format msgid "Unknown language \"%s\"." msgstr "Невідома мова «%s»." #: actions/siteadminpanel.php:165 -msgid "Invalid snapshot report URL." -msgstr "Помилковий снепшот URL." - -#: actions/siteadminpanel.php:171 -msgid "Invalid snapshot run value." -msgstr "Помилкове значення снепшоту." - -#: actions/siteadminpanel.php:177 -msgid "Snapshot frequency must be a number." -msgstr "Частота повторення снепшотів має містити цифру." - -#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "Ліміт текстових повідомлень становить 140 знаків." -#: actions/siteadminpanel.php:189 +#: actions/siteadminpanel.php:171 msgid "Dupe limit must 1 or more seconds." msgstr "" "Часове обмеження при надсиланні дублікату повідомлення має становити від 1 і " "більше секунд." -#: actions/siteadminpanel.php:239 +#: actions/siteadminpanel.php:221 msgid "General" msgstr "Основні" -#: actions/siteadminpanel.php:242 +#: actions/siteadminpanel.php:224 msgid "Site name" msgstr "Назва сайту" -#: actions/siteadminpanel.php:243 +#: actions/siteadminpanel.php:225 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "Назва Вашого сайту, штибу \"Мікроблоґи компанії ...\"" -#: actions/siteadminpanel.php:247 +#: actions/siteadminpanel.php:229 msgid "Brought by" msgstr "Надано" -#: actions/siteadminpanel.php:248 +#: actions/siteadminpanel.php:230 msgid "Text used for credits link in footer of each page" msgstr "Текст використаний для посілань кредитів унизу кожної сторінки" -#: actions/siteadminpanel.php:252 +#: actions/siteadminpanel.php:234 msgid "Brought by URL" msgstr "Наданий URL" -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:235 msgid "URL used for credits link in footer of each page" msgstr "URL використаний для посілань кредитів унизу кожної сторінки" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:239 msgid "Contact email address for your site" msgstr "Контактна електронна адреса для Вашого сайту" -#: actions/siteadminpanel.php:263 +#: actions/siteadminpanel.php:245 msgid "Local" msgstr "Локаль" -#: actions/siteadminpanel.php:274 +#: actions/siteadminpanel.php:256 msgid "Default timezone" msgstr "Часовий пояс за замовчуванням" -#: actions/siteadminpanel.php:275 +#: actions/siteadminpanel.php:257 msgid "Default timezone for the site; usually UTC." msgstr "Часовий пояс за замовчуванням для сайту; зазвичай UTC." -#: actions/siteadminpanel.php:281 -msgid "Default site language" +#: actions/siteadminpanel.php:262 +#, fuzzy +msgid "Default language" msgstr "Мова сайту за замовчуванням" -#: actions/siteadminpanel.php:289 -msgid "Snapshots" -msgstr "Снепшоти" +#: actions/siteadminpanel.php:263 +msgid "Site language when autodetection from browser settings is not available" +msgstr "" -#: actions/siteadminpanel.php:292 -msgid "Randomly during Web hit" -msgstr "Випадково під час веб-хіта" - -#: actions/siteadminpanel.php:293 -msgid "In a scheduled job" -msgstr "Згідно плану робіт" - -#: actions/siteadminpanel.php:295 -msgid "Data snapshots" -msgstr "Снепшоти даних" - -#: actions/siteadminpanel.php:296 -msgid "When to send statistical data to status.net servers" -msgstr "Коли надсилати статистичні дані до серверів status.net" - -#: actions/siteadminpanel.php:301 -msgid "Frequency" -msgstr "Частота" - -#: actions/siteadminpanel.php:302 -msgid "Snapshots will be sent once every N web hits" -msgstr "Снепшоти надсилатимуться раз на N веб-хітів" - -#: actions/siteadminpanel.php:307 -msgid "Report URL" -msgstr "Звітня URL-адреса" - -#: actions/siteadminpanel.php:308 -msgid "Snapshots will be sent to this URL" -msgstr "Снепшоти надсилатимуться на цю URL-адресу" - -#: actions/siteadminpanel.php:315 +#: actions/siteadminpanel.php:271 msgid "Limits" msgstr "Обмеження" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Text limit" msgstr "Текстові обмеження" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Maximum number of characters for notices." msgstr "Максимальна кількість знаків у дописі." -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "Dupe limit" msgstr "Часове обмеження" -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" "Як довго користувачі мають зачекати (в секундах) аби надіслати той самий " "допис ще раз." +#: actions/sitenoticeadminpanel.php:56 +#, fuzzy +msgid "Site Notice" +msgstr "Зауваження сайту" + +#: actions/sitenoticeadminpanel.php:67 +#, fuzzy +msgid "Edit site-wide message" +msgstr "Нове повідомлення" + +#: actions/sitenoticeadminpanel.php:103 +#, fuzzy +msgid "Unable to save site notice." +msgstr "Не маю можливості зберегти налаштування дизайну." + +#: actions/sitenoticeadminpanel.php:113 +msgid "Max length for the site-wide notice is 255 chars" +msgstr "" + +#: actions/sitenoticeadminpanel.php:176 +#, fuzzy +msgid "Site notice text" +msgstr "Зауваження сайту" + +#: actions/sitenoticeadminpanel.php:178 +msgid "Site-wide notice text (255 chars max; HTML okay)" +msgstr "" + +#: actions/sitenoticeadminpanel.php:198 +#, fuzzy +msgid "Save site notice" +msgstr "Зауваження сайту" + #: actions/smssettings.php:58 msgid "SMS settings" msgstr "Налаштування СМС" @@ -3960,6 +3976,66 @@ msgstr "" msgid "No code entered" msgstr "Код не введено" +#. TRANS: Menu item for site administration +#: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 +#: lib/adminpanelaction.php:406 +msgid "Snapshots" +msgstr "Снепшоти" + +#: actions/snapshotadminpanel.php:65 +#, fuzzy +msgid "Manage snapshot configuration" +msgstr "Змінити конфігурацію сайту" + +#: actions/snapshotadminpanel.php:127 +msgid "Invalid snapshot run value." +msgstr "Помилкове значення снепшоту." + +#: actions/snapshotadminpanel.php:133 +msgid "Snapshot frequency must be a number." +msgstr "Частота повторення снепшотів має містити цифру." + +#: actions/snapshotadminpanel.php:144 +msgid "Invalid snapshot report URL." +msgstr "Помилковий снепшот URL." + +#: actions/snapshotadminpanel.php:200 +msgid "Randomly during Web hit" +msgstr "Випадково під час веб-хіта" + +#: actions/snapshotadminpanel.php:201 +msgid "In a scheduled job" +msgstr "Згідно плану робіт" + +#: actions/snapshotadminpanel.php:206 +msgid "Data snapshots" +msgstr "Снепшоти даних" + +#: actions/snapshotadminpanel.php:208 +msgid "When to send statistical data to status.net servers" +msgstr "Коли надсилати статистичні дані до серверів status.net" + +#: actions/snapshotadminpanel.php:217 +msgid "Frequency" +msgstr "Частота" + +#: actions/snapshotadminpanel.php:218 +msgid "Snapshots will be sent once every N web hits" +msgstr "Снепшоти надсилатимуться раз на N веб-хітів" + +#: actions/snapshotadminpanel.php:226 +msgid "Report URL" +msgstr "Звітня URL-адреса" + +#: actions/snapshotadminpanel.php:227 +msgid "Snapshots will be sent to this URL" +msgstr "Снепшоти надсилатимуться на цю URL-адресу" + +#: actions/snapshotadminpanel.php:248 +#, fuzzy +msgid "Save snapshot settings" +msgstr "Зберегти налаштування сайту" + #: actions/subedit.php:70 msgid "You are not subscribed to that profile." msgstr "Ви не підписані до цього профілю." @@ -4167,7 +4243,7 @@ msgstr "У запиті відсутній ID профілю." msgid "Unsubscribed" msgstr "Відписано" -#: actions/updateprofile.php:62 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -4175,7 +4251,6 @@ msgstr "Ліцензія «%1$s» не відповідає ліцензії с #. TRANS: User admin panel title #: actions/useradminpanel.php:59 -#, fuzzy msgctxt "TITLE" msgid "User" msgstr "Користувач" @@ -4370,17 +4445,23 @@ msgstr "Групи %1$s, сторінка %2$d" msgid "Search for more groups" msgstr "Шукати групи ще" -#: actions/usergroups.php:153 +#: actions/usergroups.php:157 #, php-format msgid "%s is not a member of any group." msgstr "%s не є учасником жодної групи." -#: actions/usergroups.php:158 +#: actions/usergroups.php:162 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" "Спробуйте [знайти якісь групи](%%action.groupsearch%%) і приєднайтеся до них." +#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: lib/atomusernoticefeed.php:72 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "Оновлення від %1$s на %2$s!" + #: actions/version.php:73 #, php-format msgid "StatusNet %s" @@ -4436,7 +4517,7 @@ msgstr "" msgid "Plugins" msgstr "Додатки" -#: actions/version.php:196 lib/action.php:778 +#: actions/version.php:196 lib/action.php:767 msgid "Version" msgstr "Версія" @@ -4501,22 +4582,22 @@ msgstr "Не можна оновити повідомлення з новим UR msgid "DB error inserting hashtag: %s" msgstr "Помилка бази даних при додаванні теґу: %s" -#: classes/Notice.php:239 +#: classes/Notice.php:241 msgid "Problem saving notice. Too long." msgstr "Проблема при збереженні допису. Надто довге." -#: classes/Notice.php:243 +#: classes/Notice.php:245 msgid "Problem saving notice. Unknown user." msgstr "Проблема при збереженні допису. Невідомий користувач." -#: classes/Notice.php:248 +#: classes/Notice.php:250 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" "Дуже багато дописів за короткий термін; ходіть подихайте повітрям і " "повертайтесь за кілька хвилин." -#: classes/Notice.php:254 +#: classes/Notice.php:256 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." @@ -4524,19 +4605,19 @@ msgstr "" "Дуже багато повідомлень за короткий термін; ходіть подихайте повітрям і " "повертайтесь за кілька хвилин." -#: classes/Notice.php:260 +#: classes/Notice.php:262 msgid "You are banned from posting notices on this site." msgstr "Вам заборонено надсилати дописи до цього сайту." -#: classes/Notice.php:326 classes/Notice.php:352 +#: classes/Notice.php:328 classes/Notice.php:354 msgid "Problem saving notice." msgstr "Проблема при збереженні допису." -#: classes/Notice.php:911 +#: classes/Notice.php:927 msgid "Problem saving group inbox." msgstr "Проблема при збереженні вхідних дописів для групи." -#: classes/Notice.php:1442 +#: classes/Notice.php:1459 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -4561,7 +4642,12 @@ msgstr "Не підписано!" msgid "Couldn't delete self-subscription." msgstr "Не можу видалити самопідписку." -#: classes/Subscription.php:179 lib/subs.php:69 +#: classes/Subscription.php:190 +#, fuzzy +msgid "Couldn't delete subscription OMB token." +msgstr "Не вдалося видалити підписку." + +#: classes/Subscription.php:201 lib/subs.php:69 msgid "Couldn't delete subscription." msgstr "Не вдалося видалити підписку." @@ -4570,19 +4656,19 @@ msgstr "Не вдалося видалити підписку." msgid "Welcome to %1$s, @%2$s!" msgstr "Вітаємо на %1$s, @%2$s!" -#: classes/User_group.php:462 +#: classes/User_group.php:477 msgid "Could not create group." msgstr "Не вдалося створити нову групу." -#: classes/User_group.php:471 +#: classes/User_group.php:486 msgid "Could not set group URI." msgstr "Не вдалося встановити URI групи." -#: classes/User_group.php:492 +#: classes/User_group.php:507 msgid "Could not set group membership." msgstr "Не вдалося встановити членство." -#: classes/User_group.php:506 +#: classes/User_group.php:521 msgid "Could not save local group info." msgstr "Не вдалося зберегти інформацію про локальну групу." @@ -4623,194 +4709,171 @@ msgstr "%1$s — %2$s" msgid "Untitled page" msgstr "Сторінка без заголовку" -#: lib/action.php:433 +#: lib/action.php:424 msgid "Primary site navigation" msgstr "Відправна навігація по сайту" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:439 -#, fuzzy +#: lib/action.php:430 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Персональний профіль і стрічка друзів" -#: lib/action.php:442 -#, fuzzy +#: lib/action.php:433 msgctxt "MENU" msgid "Personal" msgstr "Особисте" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:444 -#, fuzzy +#: lib/action.php:435 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Змінити електронну адресу, аватару, пароль, профіль" -#: lib/action.php:447 -#, fuzzy -msgctxt "MENU" -msgid "Account" -msgstr "Акаунт" - #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:450 -#, fuzzy +#: lib/action.php:440 msgctxt "TOOLTIP" msgid "Connect to services" msgstr "З’єднання з сервісами" -#: lib/action.php:453 +#: lib/action.php:443 #, fuzzy -msgctxt "MENU" msgid "Connect" msgstr "З’єднання" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:457 -#, fuzzy +#: lib/action.php:446 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Змінити конфігурацію сайту" -#: lib/action.php:460 -#, fuzzy +#: lib/action.php:449 msgctxt "MENU" msgid "Admin" msgstr "Адмін" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:464 -#, fuzzy, php-format +#: lib/action.php:453 +#, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Запросіть друзів та колег приєднатись до Вас на %s" -#: lib/action.php:467 -#, fuzzy +#: lib/action.php:456 msgctxt "MENU" msgid "Invite" msgstr "Запросити" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:473 -#, fuzzy +#: lib/action.php:462 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Вийти з сайту" -#: lib/action.php:476 -#, fuzzy +#: lib/action.php:465 msgctxt "MENU" msgid "Logout" msgstr "Вийти" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:481 -#, fuzzy +#: lib/action.php:470 msgctxt "TOOLTIP" msgid "Create an account" msgstr "Створити новий акаунт" -#: lib/action.php:484 -#, fuzzy +#: lib/action.php:473 msgctxt "MENU" msgid "Register" msgstr "Реєстрація" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:487 -#, fuzzy +#: lib/action.php:476 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Увійти на сайт" -#: lib/action.php:490 -#, fuzzy +#: lib/action.php:479 msgctxt "MENU" msgid "Login" msgstr "Увійти" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:493 -#, fuzzy +#: lib/action.php:482 msgctxt "TOOLTIP" msgid "Help me!" msgstr "Допоможіть!" -#: lib/action.php:496 -#, fuzzy +#: lib/action.php:485 msgctxt "MENU" msgid "Help" -msgstr "Допомога" +msgstr "Довідка" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:499 -#, fuzzy +#: lib/action.php:488 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Пошук людей або текстів" -#: lib/action.php:502 -#, fuzzy +#: lib/action.php:491 msgctxt "MENU" msgid "Search" msgstr "Пошук" #. TRANS: DT element for site notice. String is hidden in default CSS. -#: lib/action.php:524 +#. TRANS: Menu item for site administration +#: lib/action.php:513 lib/adminpanelaction.php:398 msgid "Site notice" msgstr "Зауваження сайту" -#: lib/action.php:590 +#: lib/action.php:579 msgid "Local views" msgstr "Огляд" -#: lib/action.php:656 +#: lib/action.php:645 msgid "Page notice" msgstr "Зауваження сторінки" -#: lib/action.php:758 +#: lib/action.php:747 msgid "Secondary site navigation" msgstr "Другорядна навігація по сайту" -#: lib/action.php:763 +#: lib/action.php:752 msgid "Help" msgstr "Допомога" -#: lib/action.php:765 +#: lib/action.php:754 msgid "About" msgstr "Про" -#: lib/action.php:767 +#: lib/action.php:756 msgid "FAQ" msgstr "ЧаПи" -#: lib/action.php:771 +#: lib/action.php:760 msgid "TOS" msgstr "Умови" -#: lib/action.php:774 +#: lib/action.php:763 msgid "Privacy" msgstr "Конфіденційність" -#: lib/action.php:776 +#: lib/action.php:765 msgid "Source" msgstr "Джерело" -#: lib/action.php:780 +#: lib/action.php:769 msgid "Contact" msgstr "Контакт" -#: lib/action.php:782 +#: lib/action.php:771 msgid "Badge" msgstr "Бедж" -#: lib/action.php:810 +#: lib/action.php:799 msgid "StatusNet software license" msgstr "Ліцензія програмного забезпечення StatusNet" -#: lib/action.php:813 +#: lib/action.php:802 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4819,12 +4882,12 @@ msgstr "" "**%%site.name%%** — це сервіс мікроблоґів наданий вам [%%site.broughtby%%](%%" "site.broughtbyurl%%). " -#: lib/action.php:815 +#: lib/action.php:804 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** — це сервіс мікроблоґів. " -#: lib/action.php:817 +#: lib/action.php:806 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4835,54 +4898,54 @@ msgstr "" "для мікроблоґів, версія %s, доступному під [GNU Affero General Public " "License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." -#: lib/action.php:832 +#: lib/action.php:821 msgid "Site content license" msgstr "Ліцензія змісту сайту" -#: lib/action.php:837 +#: lib/action.php:826 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "Зміст і дані %1$s є приватними і конфіденційними." -#: lib/action.php:842 +#: lib/action.php:831 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "Авторські права на зміст і дані належать %1$s. Всі права захищено." -#: lib/action.php:845 +#: lib/action.php:834 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" "Авторські права на зміст і дані належать розробникам. Всі права захищено." -#: lib/action.php:858 +#: lib/action.php:847 msgid "All " msgstr "Всі " -#: lib/action.php:864 +#: lib/action.php:853 msgid "license." msgstr "ліцензія." -#: lib/action.php:1163 +#: lib/action.php:1152 msgid "Pagination" msgstr "Нумерація сторінок" -#: lib/action.php:1172 +#: lib/action.php:1161 msgid "After" msgstr "Вперед" -#: lib/action.php:1180 +#: lib/action.php:1169 msgid "Before" msgstr "Назад" -#: lib/activity.php:449 +#: lib/activity.php:453 msgid "Can't handle remote content yet." msgstr "Поки що не можу обробити віддалений контент." -#: lib/activity.php:477 +#: lib/activity.php:481 msgid "Can't handle embedded XML content yet." msgstr "Поки що не можу обробити вбудований XML контент." -#: lib/activity.php:481 +#: lib/activity.php:485 msgid "Can't handle embedded Base64 content yet." msgstr "Поки що не можу обробити вбудований контент Base64." @@ -4897,91 +4960,78 @@ msgid "Changes to that panel are not allowed." msgstr "Для цієї панелі зміни не припустимі." #. TRANS: Client error message -#: lib/adminpanelaction.php:211 +#: lib/adminpanelaction.php:229 msgid "showForm() not implemented." msgstr "showForm() не виконано." #. TRANS: Client error message -#: lib/adminpanelaction.php:241 +#: lib/adminpanelaction.php:259 msgid "saveSettings() not implemented." msgstr "saveSettings() не виконано." #. TRANS: Client error message -#: lib/adminpanelaction.php:265 +#: lib/adminpanelaction.php:283 msgid "Unable to delete design setting." msgstr "Немає можливості видалити налаштування дизайну." #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:330 +#: lib/adminpanelaction.php:348 msgid "Basic site configuration" msgstr "Основна конфігурація сайту" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:332 -#, fuzzy +#: lib/adminpanelaction.php:350 msgctxt "MENU" msgid "Site" msgstr "Сайт" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:338 +#: lib/adminpanelaction.php:356 msgid "Design configuration" msgstr "Конфігурація дизайну" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:340 -#, fuzzy +#: lib/adminpanelaction.php:358 msgctxt "MENU" msgid "Design" msgstr "Дизайн" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:346 +#: lib/adminpanelaction.php:364 msgid "User configuration" msgstr "Конфігурація користувача" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:348 -#, fuzzy -msgctxt "MENU" +#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 msgid "User" msgstr "Користувач" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:354 +#: lib/adminpanelaction.php:372 msgid "Access configuration" msgstr "Прийняти конфігурацію" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:356 -#, fuzzy -msgctxt "MENU" -msgid "Access" -msgstr "Погодитись" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:362 +#: lib/adminpanelaction.php:380 msgid "Paths configuration" msgstr "Конфігурація шляху" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:364 -#, fuzzy -msgctxt "MENU" -msgid "Paths" -msgstr "Шлях" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:370 +#: lib/adminpanelaction.php:388 msgid "Sessions configuration" msgstr "Конфігурація сесій" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:372 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:396 #, fuzzy -msgctxt "MENU" -msgid "Sessions" -msgstr "Сесії" +msgid "Edit site notice" +msgstr "Зауваження сайту" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:404 +#, fuzzy +msgid "Snapshots configuration" +msgstr "Конфігурація шляху" #: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." @@ -5510,6 +5560,11 @@ msgstr "Оберіть теґ до звуженого списку" msgid "Go" msgstr "Вперед" +#: lib/grantroleform.php:91 +#, php-format +msgid "Grant this user the \"%s\" role" +msgstr "" + #: lib/groupeditform.php:163 msgid "URL of the homepage or blog of the group or topic" msgstr "URL-адреса веб-сторінки, блоґу групи, або тематичного блоґу" @@ -6125,10 +6180,6 @@ msgstr "Відповіді" msgid "Favorites" msgstr "Обрані" -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "Користувач" - #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "Вхідні" @@ -6154,7 +6205,7 @@ msgstr "Теґи у дописах %s" msgid "Unknown" msgstr "Невідомо" -#: lib/profileaction.php:109 lib/profileaction.php:192 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:194 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Підписки" @@ -6162,23 +6213,23 @@ msgstr "Підписки" msgid "All subscriptions" msgstr "Всі підписки" -#: lib/profileaction.php:140 lib/profileaction.php:201 lib/subgroupnav.php:90 +#: lib/profileaction.php:142 lib/profileaction.php:203 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Підписчики" -#: lib/profileaction.php:157 +#: lib/profileaction.php:159 msgid "All subscribers" msgstr "Всі підписчики" -#: lib/profileaction.php:178 +#: lib/profileaction.php:180 msgid "User ID" msgstr "ІД" -#: lib/profileaction.php:183 +#: lib/profileaction.php:185 msgid "Member since" msgstr "З нами від" -#: lib/profileaction.php:245 +#: lib/profileaction.php:247 msgid "All groups" msgstr "Всі групи" @@ -6218,7 +6269,12 @@ msgstr "Повторити цей допис?" msgid "Repeat this notice" msgstr "Вторувати цьому допису" -#: lib/router.php:668 +#: lib/revokeroleform.php:91 +#, fuzzy, php-format +msgid "Revoke the \"%s\" role from this user" +msgstr "Блокувати користувача цієї групи" + +#: lib/router.php:671 msgid "No single user defined for single-user mode." msgstr "Користувача для однокористувацького режиму не визначено." @@ -6372,47 +6428,64 @@ msgstr "Повідомлення" msgid "Moderate" msgstr "Модерувати" -#: lib/util.php:1013 +#: lib/userprofile.php:352 +#, fuzzy +msgid "User role" +msgstr "Профіль користувача." + +#: lib/userprofile.php:354 +#, fuzzy +msgctxt "role" +msgid "Administrator" +msgstr "Адміни" + +#: lib/userprofile.php:355 +#, fuzzy +msgctxt "role" +msgid "Moderator" +msgstr "Модерувати" + +#: lib/util.php:1015 msgid "a few seconds ago" msgstr "мить тому" -#: lib/util.php:1015 +#: lib/util.php:1017 msgid "about a minute ago" msgstr "хвилину тому" -#: lib/util.php:1017 +#: lib/util.php:1019 #, php-format msgid "about %d minutes ago" msgstr "близько %d хвилин тому" -#: lib/util.php:1019 +#: lib/util.php:1021 msgid "about an hour ago" msgstr "годину тому" -#: lib/util.php:1021 +#: lib/util.php:1023 #, php-format msgid "about %d hours ago" msgstr "близько %d годин тому" -#: lib/util.php:1023 +#: lib/util.php:1025 msgid "about a day ago" msgstr "день тому" -#: lib/util.php:1025 +#: lib/util.php:1027 #, php-format msgid "about %d days ago" msgstr "близько %d днів тому" -#: lib/util.php:1027 +#: lib/util.php:1029 msgid "about a month ago" msgstr "місяць тому" -#: lib/util.php:1029 +#: lib/util.php:1031 #, php-format msgid "about %d months ago" msgstr "близько %d місяців тому" -#: lib/util.php:1031 +#: lib/util.php:1033 msgid "about a year ago" msgstr "рік тому" diff --git a/locale/vi/LC_MESSAGES/statusnet.po b/locale/vi/LC_MESSAGES/statusnet.po index d64fae91d4..2a3c0ceeb3 100644 --- a/locale/vi/LC_MESSAGES/statusnet.po +++ b/locale/vi/LC_MESSAGES/statusnet.po @@ -7,19 +7,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-02 21:02+0000\n" -"PO-Revision-Date: 2010-03-02 21:03:59+0000\n" +"POT-Creation-Date: 2010-03-04 18:55+0000\n" +"PO-Revision-Date: 2010-03-04 18:57:31+0000\n" "Language-Team: Vietnamese\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: vi\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=1; plural=0;\n" #. TRANS: Page title -#: actions/accessadminpanel.php:55 +#. TRANS: Menu item for site administration +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 #, fuzzy msgid "Access" msgstr "Chấp nhận" @@ -123,7 +124,7 @@ msgstr "%s và bạn bè" #. TRANS: Page title. %1$s is user nickname #. TRANS: H1 text. %1$s is user nickname -#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -178,7 +179,7 @@ msgid "" msgstr "" #. TRANS: H1 text -#: actions/all.php:174 +#: actions/all.php:178 #, fuzzy msgid "You and friends" msgstr "%s và bạn bè" @@ -206,11 +207,11 @@ msgstr "" #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 -#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 +#: actions/apitimelinegroup.php:160 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:148 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 #, fuzzy msgid "API method not found." msgstr "Phương thức API không tìm thấy!" @@ -585,7 +586,7 @@ msgid "" "give access to your %4$s account to third parties you trust." msgstr "" -#: actions/apioauthauthorize.php:310 +#: actions/apioauthauthorize.php:310 lib/action.php:438 #, fuzzy msgid "Account" msgstr "Giới thiệu" @@ -677,18 +678,6 @@ msgstr "Tìm kiếm các tin nhắn ưa thích của %s" msgid "%1$s updates favorited by %2$s / %2$s." msgstr "Tất cả các cập nhật của %s" -#: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:138 actions/userrss.php:90 -#, fuzzy, php-format -msgid "%s timeline" -msgstr "Dòng tin nhắn của %s" - -#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 -#: actions/userrss.php:92 -#, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "" - #: actions/apitimelinementions.php:117 #, fuzzy, php-format msgid "%1$s / Updates mentioning %2$s" @@ -699,12 +688,12 @@ msgstr "%1$s / Các cập nhật đang trả lời tới %2$s" msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "" -#: actions/apitimelinepublic.php:111 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 #, fuzzy, php-format msgid "%s public timeline" msgstr "Dòng tin công cộng" -#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "%s cập nhật từ tất cả mọi người!" @@ -963,7 +952,7 @@ msgid "Conversation" msgstr "Không có mã số xác nhận." #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:216 lib/searchgroupnav.php:82 +#: lib/profileaction.php:218 lib/searchgroupnav.php:82 msgid "Notices" msgstr "Tin nhắn" @@ -985,7 +974,7 @@ msgstr "Bạn chưa cập nhật thông tin riêng" #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1228 +#: lib/action.php:1217 #, 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." @@ -1197,8 +1186,9 @@ msgstr "" #: actions/designadminpanel.php:586 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 +#: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:208 #: actions/tagother.php:154 actions/useradminpanel.php:294 #: lib/applicationeditform.php:333 lib/applicationeditform.php:334 #: lib/designsettings.php:256 lib/groupeditform.php:202 @@ -1330,7 +1320,7 @@ msgstr "Lý lịch quá dài (không quá 140 ký tự)" msgid "Could not update group." msgstr "Không thể cập nhật thành viên." -#: actions/editgroup.php:264 classes/User_group.php:478 +#: actions/editgroup.php:264 classes/User_group.php:493 #, fuzzy msgid "Could not create aliases." msgstr "Không thể tạo favorite." @@ -1461,7 +1451,7 @@ msgid "Cannot normalize that email address" msgstr "Không thể bình thường hóa địa chỉ GTalk này" #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:143 +#: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Địa chỉ email không hợp lệ." @@ -1667,6 +1657,25 @@ msgstr "Không có tin nhắn nào." msgid "Cannot read file." msgstr "Không có tin nhắn nào." +#: actions/grantrole.php:62 actions/revokerole.php:62 +#, fuzzy +msgid "Invalid role." +msgstr "Kích thước không hợp lệ." + +#: actions/grantrole.php:66 actions/revokerole.php:66 +msgid "This role is reserved and cannot be set." +msgstr "" + +#: actions/grantrole.php:75 +#, fuzzy +msgid "You cannot grant user roles on this site." +msgstr "Bạn đã theo những người này:" + +#: actions/grantrole.php:82 +#, fuzzy +msgid "User already has this role." +msgstr "Người dùng không có thông tin." + #: actions/groupblock.php:71 actions/groupunblock.php:71 #: actions/makeadmin.php:71 actions/subedit.php:46 #: lib/profileformaction.php:70 @@ -1824,12 +1833,18 @@ msgstr "" msgid "Make this user an admin" msgstr "Kênh mà bạn tham gia" +#: actions/grouprss.php:138 actions/userrss.php:90 +#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#, fuzzy, php-format +msgid "%s timeline" +msgstr "Dòng tin nhắn của %s" + #: actions/grouprss.php:140 #, fuzzy, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Dòng tin nhắn cho %s" -#: actions/groups.php:62 lib/profileaction.php:210 lib/profileaction.php:230 +#: actions/groups.php:62 lib/profileaction.php:212 lib/profileaction.php:232 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 #, fuzzy msgid "Groups" @@ -2460,8 +2475,8 @@ msgstr "Kết nối" msgid "Only " msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 -#: lib/apiaction.php:1068 lib/apiaction.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1042 +#: lib/apiaction.php:1070 lib/apiaction.php:1179 msgid "Not a supported data format." msgstr "Không hỗ trợ định dạng dữ liệu này." @@ -2613,7 +2628,8 @@ msgstr "Không thể lưu mật khẩu mới" msgid "Password saved." msgstr "Đã lưu mật khẩu." -#: actions/pathsadminpanel.php:59 +#. TRANS: Menu item for site administration +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 msgid "Paths" msgstr "" @@ -2745,7 +2761,7 @@ msgstr "Background Theme:" msgid "SSL" msgstr "SMS" -#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 +#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202 #, fuzzy msgid "Never" msgstr "Khôi phục" @@ -2804,11 +2820,11 @@ msgstr "Địa chỉ email không hợp lệ." msgid "Users self-tagged with %1$s - page %2$d" msgstr "Dòng tin nhắn cho %s" -#: actions/postnotice.php:84 +#: actions/postnotice.php:95 msgid "Invalid notice content" msgstr "Nội dung tin nhắn không hợp lệ" -#: actions/postnotice.php:90 +#: actions/postnotice.php:101 #, php-format msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" @@ -2888,7 +2904,7 @@ msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" -#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 +#: actions/profilesettings.php:151 msgid "Language" msgstr "Ngôn ngữ" @@ -2914,7 +2930,7 @@ msgstr "Tự động theo những người nào đăng ký theo tôi" msgid "Bio is too long (max %d chars)." msgstr "Lý lịch quá dài (không quá 140 ký tự)" -#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:151 msgid "Timezone not selected." msgstr "" @@ -3228,7 +3244,7 @@ msgid "Same as password above. Required." msgstr "Cùng mật khẩu ở trên. Bắt buộc." #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 msgid "Email" msgstr "Email" @@ -3332,7 +3348,7 @@ 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/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:368 +#: lib/userprofile.php:394 msgid "Subscribe" msgstr "Theo bạn này" @@ -3435,6 +3451,16 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "%s chào mừng bạn " +#: actions/revokerole.php:75 +#, fuzzy +msgid "You cannot revoke user roles on this site." +msgstr "Bạn đã theo những người này:" + +#: actions/revokerole.php:82 +#, fuzzy +msgid "User doesn't have this role." +msgstr "Hồ sơ ở nơi khác không khớp với hồ sơ này của bạn" + #: actions/rsd.php:146 actions/version.php:157 #, fuzzy msgid "StatusNet" @@ -3450,7 +3476,9 @@ msgstr "Bạn đã theo những người này:" msgid "User is already sandboxed." msgstr "Người dùng không có thông tin." +#. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:390 msgid "Sessions" msgstr "" @@ -3474,7 +3502,7 @@ msgstr "" msgid "Turn on debugging output for sessions." msgstr "" -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/useradminpanel.php:294 #, fuzzy msgid "Save site settings" @@ -3510,8 +3538,8 @@ msgstr "Thư mời đã gửi" msgid "Description" msgstr "Mô tả" -#: actions/showapplication.php:192 actions/showgroup.php:437 -#: lib/profileaction.php:174 +#: actions/showapplication.php:192 actions/showgroup.php:438 +#: lib/profileaction.php:176 msgid "Statistics" msgstr "Số liệu thống kê" @@ -3647,47 +3675,47 @@ msgstr "" msgid "Group actions" msgstr "Mã nhóm" -#: actions/showgroup.php:336 +#: actions/showgroup.php:337 #, fuzzy, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Dòng tin nhắn cho %s" -#: actions/showgroup.php:342 +#: actions/showgroup.php:343 #, fuzzy, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Dòng tin nhắn cho %s" -#: actions/showgroup.php:348 +#: actions/showgroup.php:349 #, fuzzy, php-format msgid "Notice feed for %s group (Atom)" msgstr "Dòng tin nhắn cho %s" -#: actions/showgroup.php:353 +#: actions/showgroup.php:354 #, php-format msgid "FOAF for %s group" msgstr "Hộp thư đi của %s" -#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 +#: actions/showgroup.php:390 actions/showgroup.php:447 lib/groupnav.php:91 msgid "Members" msgstr "Thành viên" -#: actions/showgroup.php:394 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 +#: actions/showgroup.php:395 lib/profileaction.php:117 +#: lib/profileaction.php:150 lib/profileaction.php:238 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "" -#: actions/showgroup.php:400 +#: actions/showgroup.php:401 #, fuzzy msgid "All members" msgstr "Thành viên" -#: actions/showgroup.php:440 +#: actions/showgroup.php:441 #, fuzzy msgid "Created" msgstr "Tạo" -#: actions/showgroup.php:456 +#: actions/showgroup.php:457 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3697,7 +3725,7 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showgroup.php:462 +#: actions/showgroup.php:463 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3706,7 +3734,7 @@ msgid "" "their life and interests. " msgstr "" -#: actions/showgroup.php:490 +#: actions/showgroup.php:491 msgid "Admins" msgstr "" @@ -3820,151 +3848,140 @@ msgid "User is already silenced." msgstr "Người dùng không có thông tin." #: actions/siteadminpanel.php:69 -msgid "Basic settings for this StatusNet site." +msgid "Basic settings for this StatusNet site" msgstr "" -#: actions/siteadminpanel.php:132 +#: actions/siteadminpanel.php:133 msgid "Site name must have non-zero length." msgstr "" -#: actions/siteadminpanel.php:140 +#: actions/siteadminpanel.php:141 #, fuzzy msgid "You must have a valid contact email address." msgstr "Địa chỉ email không hợp lệ." -#: actions/siteadminpanel.php:158 +#: actions/siteadminpanel.php:159 #, php-format msgid "Unknown language \"%s\"." msgstr "" #: actions/siteadminpanel.php:165 -msgid "Invalid snapshot report URL." -msgstr "" - -#: actions/siteadminpanel.php:171 -msgid "Invalid snapshot run value." -msgstr "" - -#: actions/siteadminpanel.php:177 -msgid "Snapshot frequency must be a number." -msgstr "" - -#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "" -#: actions/siteadminpanel.php:189 +#: actions/siteadminpanel.php:171 msgid "Dupe limit must 1 or more seconds." msgstr "" -#: actions/siteadminpanel.php:239 +#: actions/siteadminpanel.php:221 msgid "General" msgstr "" -#: actions/siteadminpanel.php:242 +#: actions/siteadminpanel.php:224 #, fuzzy msgid "Site name" msgstr "Thông báo mới" -#: actions/siteadminpanel.php:243 +#: actions/siteadminpanel.php:225 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "" -#: actions/siteadminpanel.php:247 +#: actions/siteadminpanel.php:229 msgid "Brought by" msgstr "" -#: actions/siteadminpanel.php:248 +#: actions/siteadminpanel.php:230 msgid "Text used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:252 +#: actions/siteadminpanel.php:234 msgid "Brought by URL" msgstr "" -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:235 msgid "URL used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:239 #, fuzzy msgid "Contact email address for your site" msgstr "Dia chi email moi de gui tin nhan den %s" -#: actions/siteadminpanel.php:263 +#: actions/siteadminpanel.php:245 #, fuzzy msgid "Local" msgstr "Thành phố" -#: actions/siteadminpanel.php:274 +#: actions/siteadminpanel.php:256 msgid "Default timezone" msgstr "" -#: actions/siteadminpanel.php:275 +#: actions/siteadminpanel.php:257 msgid "Default timezone for the site; usually UTC." msgstr "" -#: actions/siteadminpanel.php:281 +#: actions/siteadminpanel.php:262 #, fuzzy -msgid "Default site language" +msgid "Default language" msgstr "Ngôn ngữ bạn thích" -#: actions/siteadminpanel.php:289 -msgid "Snapshots" +#: actions/siteadminpanel.php:263 +msgid "Site language when autodetection from browser settings is not available" msgstr "" -#: actions/siteadminpanel.php:292 -msgid "Randomly during Web hit" -msgstr "" - -#: actions/siteadminpanel.php:293 -msgid "In a scheduled job" -msgstr "" - -#: actions/siteadminpanel.php:295 -msgid "Data snapshots" -msgstr "" - -#: actions/siteadminpanel.php:296 -msgid "When to send statistical data to status.net servers" -msgstr "" - -#: actions/siteadminpanel.php:301 -msgid "Frequency" -msgstr "" - -#: actions/siteadminpanel.php:302 -msgid "Snapshots will be sent once every N web hits" -msgstr "" - -#: actions/siteadminpanel.php:307 -msgid "Report URL" -msgstr "" - -#: actions/siteadminpanel.php:308 -msgid "Snapshots will be sent to this URL" -msgstr "" - -#: actions/siteadminpanel.php:315 +#: actions/siteadminpanel.php:271 msgid "Limits" msgstr "" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Text limit" msgstr "" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Maximum number of characters for notices." msgstr "" -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "Dupe limit" msgstr "" -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" +#: actions/sitenoticeadminpanel.php:56 +#, fuzzy +msgid "Site Notice" +msgstr "Thông báo mới" + +#: actions/sitenoticeadminpanel.php:67 +#, fuzzy +msgid "Edit site-wide message" +msgstr "Tin mới nhất" + +#: actions/sitenoticeadminpanel.php:103 +#, fuzzy +msgid "Unable to save site notice." +msgstr "Không thể lưu thông tin Twitter của bạn!" + +#: actions/sitenoticeadminpanel.php:113 +msgid "Max length for the site-wide notice is 255 chars" +msgstr "" + +#: actions/sitenoticeadminpanel.php:176 +#, fuzzy +msgid "Site notice text" +msgstr "Thông báo mới" + +#: actions/sitenoticeadminpanel.php:178 +msgid "Site-wide notice text (255 chars max; HTML okay)" +msgstr "" + +#: actions/sitenoticeadminpanel.php:198 +#, fuzzy +msgid "Save site notice" +msgstr "Thông báo mới" + #: actions/smssettings.php:58 #, fuzzy msgid "SMS settings" @@ -4075,6 +4092,66 @@ msgstr "" msgid "No code entered" msgstr "Không có mã nào được nhập" +#. TRANS: Menu item for site administration +#: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 +#: lib/adminpanelaction.php:406 +msgid "Snapshots" +msgstr "" + +#: actions/snapshotadminpanel.php:65 +#, fuzzy +msgid "Manage snapshot configuration" +msgstr "Tôi theo" + +#: actions/snapshotadminpanel.php:127 +msgid "Invalid snapshot run value." +msgstr "" + +#: actions/snapshotadminpanel.php:133 +msgid "Snapshot frequency must be a number." +msgstr "" + +#: actions/snapshotadminpanel.php:144 +msgid "Invalid snapshot report URL." +msgstr "" + +#: actions/snapshotadminpanel.php:200 +msgid "Randomly during Web hit" +msgstr "" + +#: actions/snapshotadminpanel.php:201 +msgid "In a scheduled job" +msgstr "" + +#: actions/snapshotadminpanel.php:206 +msgid "Data snapshots" +msgstr "" + +#: actions/snapshotadminpanel.php:208 +msgid "When to send statistical data to status.net servers" +msgstr "" + +#: actions/snapshotadminpanel.php:217 +msgid "Frequency" +msgstr "" + +#: actions/snapshotadminpanel.php:218 +msgid "Snapshots will be sent once every N web hits" +msgstr "" + +#: actions/snapshotadminpanel.php:226 +msgid "Report URL" +msgstr "" + +#: actions/snapshotadminpanel.php:227 +msgid "Snapshots will be sent to this URL" +msgstr "" + +#: actions/snapshotadminpanel.php:248 +#, fuzzy +msgid "Save snapshot settings" +msgstr "Thay đổi hình đại diện" + #: actions/subedit.php:70 #, fuzzy msgid "You are not subscribed to that profile." @@ -4284,7 +4361,7 @@ msgstr "Không có URL cho hồ sơ để quay về." msgid "Unsubscribed" msgstr "Hết theo" -#: actions/updateprofile.php:62 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -4493,16 +4570,22 @@ msgstr "Thành viên" msgid "Search for more groups" msgstr "" -#: actions/usergroups.php:153 +#: actions/usergroups.php:157 #, 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" -#: actions/usergroups.php:158 +#: actions/usergroups.php:162 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" +#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: lib/atomusernoticefeed.php:72 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "" + #: actions/version.php:73 #, fuzzy, php-format msgid "StatusNet %s" @@ -4546,7 +4629,7 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:196 lib/action.php:778 +#: actions/version.php:196 lib/action.php:767 #, fuzzy msgid "Version" msgstr "Cá nhân" @@ -4617,41 +4700,41 @@ msgstr "Không thể cập nhật thông tin user với địa chỉ email đã msgid "DB error inserting hashtag: %s" msgstr "Lỗi cơ sở dữ liệu khi chèn trả lời: %s" -#: classes/Notice.php:239 +#: classes/Notice.php:241 #, fuzzy msgid "Problem saving notice. Too long." msgstr "Có lỗi xảy ra khi lưu tin nhắn." -#: classes/Notice.php:243 +#: classes/Notice.php:245 #, fuzzy msgid "Problem saving notice. Unknown user." msgstr "Có lỗi xảy ra khi lưu tin nhắn." -#: classes/Notice.php:248 +#: classes/Notice.php:250 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: classes/Notice.php:254 +#: classes/Notice.php:256 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." msgstr "" -#: classes/Notice.php:260 +#: classes/Notice.php:262 msgid "You are banned from posting notices on this site." msgstr "" -#: classes/Notice.php:326 classes/Notice.php:352 +#: classes/Notice.php:328 classes/Notice.php:354 msgid "Problem saving notice." msgstr "Có lỗi xảy ra khi lưu tin nhắn." -#: classes/Notice.php:911 +#: classes/Notice.php:927 #, fuzzy msgid "Problem saving group inbox." msgstr "Có lỗi xảy ra khi lưu tin nhắn." -#: classes/Notice.php:1442 +#: classes/Notice.php:1459 #, fuzzy, php-format msgid "RT @%1$s %2$s" msgstr "%s (%s)" @@ -4679,7 +4762,12 @@ msgstr "Chưa đăng nhận!" msgid "Couldn't delete self-subscription." msgstr "Không thể xóa đăng nhận." -#: classes/Subscription.php:179 lib/subs.php:69 +#: classes/Subscription.php:190 +#, fuzzy +msgid "Couldn't delete subscription OMB token." +msgstr "Không thể xóa đăng nhận." + +#: classes/Subscription.php:201 lib/subs.php:69 msgid "Couldn't delete subscription." msgstr "Không thể xóa đăng nhận." @@ -4688,22 +4776,22 @@ msgstr "Không thể xóa đăng nhận." msgid "Welcome to %1$s, @%2$s!" msgstr "%s chào mừng bạn " -#: classes/User_group.php:462 +#: classes/User_group.php:477 #, fuzzy msgid "Could not create group." msgstr "Không thể tạo favorite." -#: classes/User_group.php:471 +#: classes/User_group.php:486 #, fuzzy msgid "Could not set group URI." msgstr "Không thể tạo đăng nhận." -#: classes/User_group.php:492 +#: classes/User_group.php:507 #, fuzzy msgid "Could not set group membership." msgstr "Không thể tạo đăng nhận." -#: classes/User_group.php:506 +#: classes/User_group.php:521 #, fuzzy msgid "Could not save local group info." msgstr "Không thể tạo đăng nhận." @@ -4748,62 +4836,55 @@ msgstr "%s (%s)" msgid "Untitled page" msgstr "" -#: lib/action.php:433 +#: lib/action.php:424 msgid "Primary site navigation" msgstr "" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:439 +#: lib/action.php:430 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:442 +#: lib/action.php:433 #, fuzzy msgctxt "MENU" msgid "Personal" msgstr "Cá nhân" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:444 +#: lib/action.php:435 #, fuzzy msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Thay đổi mật khẩu của bạn" -#: lib/action.php:447 -#, fuzzy -msgctxt "MENU" -msgid "Account" -msgstr "Giới thiệu" - #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:450 +#: lib/action.php:440 #, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Không thể chuyển đến máy chủ: %s" -#: lib/action.php:453 +#: lib/action.php:443 #, fuzzy -msgctxt "MENU" msgid "Connect" msgstr "Kết nối" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:457 +#: lib/action.php:446 #, fuzzy msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Tôi theo" -#: lib/action.php:460 +#: lib/action.php:449 msgctxt "MENU" msgid "Admin" msgstr "" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:464 +#: lib/action.php:453 #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" @@ -4811,132 +4892,133 @@ 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." -#: lib/action.php:467 +#: lib/action.php:456 #, fuzzy msgctxt "MENU" msgid "Invite" msgstr "Thư mời" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:473 +#: lib/action.php:462 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "" -#: lib/action.php:476 +#: lib/action.php:465 #, fuzzy msgctxt "MENU" msgid "Logout" msgstr "Thoát" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:481 +#: lib/action.php:470 #, fuzzy msgctxt "TOOLTIP" msgid "Create an account" msgstr "Tạo tài khoản mới" -#: lib/action.php:484 +#: lib/action.php:473 #, fuzzy msgctxt "MENU" msgid "Register" msgstr "Đăng ký" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:487 +#: lib/action.php:476 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "" -#: lib/action.php:490 +#: lib/action.php:479 #, fuzzy msgctxt "MENU" msgid "Login" msgstr "Đăng nhập" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:493 +#: lib/action.php:482 #, fuzzy msgctxt "TOOLTIP" msgid "Help me!" msgstr "Hướng dẫn" -#: lib/action.php:496 +#: lib/action.php:485 #, fuzzy msgctxt "MENU" msgid "Help" msgstr "Hướng dẫn" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:499 +#: lib/action.php:488 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "" -#: lib/action.php:502 +#: lib/action.php:491 #, fuzzy msgctxt "MENU" msgid "Search" msgstr "Tìm kiếm" #. TRANS: DT element for site notice. String is hidden in default CSS. -#: lib/action.php:524 +#. TRANS: Menu item for site administration +#: lib/action.php:513 lib/adminpanelaction.php:398 #, fuzzy msgid "Site notice" msgstr "Thông báo mới" -#: lib/action.php:590 +#: lib/action.php:579 msgid "Local views" msgstr "" -#: lib/action.php:656 +#: lib/action.php:645 #, fuzzy msgid "Page notice" msgstr "Thông báo mới" -#: lib/action.php:758 +#: lib/action.php:747 #, fuzzy msgid "Secondary site navigation" msgstr "Tôi theo" -#: lib/action.php:763 +#: lib/action.php:752 msgid "Help" msgstr "Hướng dẫn" -#: lib/action.php:765 +#: lib/action.php:754 msgid "About" msgstr "Giới thiệu" -#: lib/action.php:767 +#: lib/action.php:756 msgid "FAQ" msgstr "FAQ" -#: lib/action.php:771 +#: lib/action.php:760 msgid "TOS" msgstr "" -#: lib/action.php:774 +#: lib/action.php:763 msgid "Privacy" msgstr "Riêng tư" -#: lib/action.php:776 +#: lib/action.php:765 msgid "Source" msgstr "Nguồn" -#: lib/action.php:780 +#: lib/action.php:769 msgid "Contact" msgstr "Liên hệ" -#: lib/action.php:782 +#: lib/action.php:771 #, fuzzy msgid "Badge" msgstr "Tin đã gửi" -#: lib/action.php:810 +#: lib/action.php:799 msgid "StatusNet software license" msgstr "" -#: lib/action.php:813 +#: lib/action.php:802 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4945,12 +5027,12 @@ msgstr "" "**%%site.name%%** là dịch vụ gửi tin nhắn được cung cấp từ [%%site.broughtby%" "%](%%site.broughtbyurl%%). " -#: lib/action.php:815 +#: lib/action.php:804 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** là dịch vụ gửi tin nhắn. " -#: lib/action.php:817 +#: lib/action.php:806 #, fuzzy, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4961,56 +5043,56 @@ msgstr "" "quyền [GNU Affero General Public License](http://www.fsf.org/licensing/" "licenses/agpl-3.0.html)." -#: lib/action.php:832 +#: lib/action.php:821 #, fuzzy msgid "Site content license" msgstr "Tìm theo nội dung của tin nhắn" -#: lib/action.php:837 +#: lib/action.php:826 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:842 +#: lib/action.php:831 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:845 +#: lib/action.php:834 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" -#: lib/action.php:858 +#: lib/action.php:847 msgid "All " msgstr "" -#: lib/action.php:864 +#: lib/action.php:853 msgid "license." msgstr "" -#: lib/action.php:1163 +#: lib/action.php:1152 msgid "Pagination" msgstr "" -#: lib/action.php:1172 +#: lib/action.php:1161 #, fuzzy msgid "After" msgstr "Sau" -#: lib/action.php:1180 +#: lib/action.php:1169 #, fuzzy msgid "Before" msgstr "Trước" -#: lib/activity.php:449 +#: lib/activity.php:453 msgid "Can't handle remote content yet." msgstr "" -#: lib/activity.php:477 +#: lib/activity.php:481 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activity.php:481 +#: lib/activity.php:485 msgid "Can't handle embedded Base64 content yet." msgstr "" @@ -5027,96 +5109,87 @@ msgid "Changes to that panel are not allowed." msgstr "Biệt hiệu không được cho phép." #. TRANS: Client error message -#: lib/adminpanelaction.php:211 +#: lib/adminpanelaction.php:229 msgid "showForm() not implemented." msgstr "" #. TRANS: Client error message -#: lib/adminpanelaction.php:241 +#: lib/adminpanelaction.php:259 msgid "saveSettings() not implemented." msgstr "" #. TRANS: Client error message -#: lib/adminpanelaction.php:265 +#: lib/adminpanelaction.php:283 #, fuzzy msgid "Unable to delete design setting." msgstr "Không thể lưu thông tin Twitter của bạn!" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:330 +#: lib/adminpanelaction.php:348 #, fuzzy msgid "Basic site configuration" msgstr "Xac nhan dia chi email" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:332 +#: lib/adminpanelaction.php:350 #, fuzzy msgctxt "MENU" msgid "Site" msgstr "Thư mời" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:338 +#: lib/adminpanelaction.php:356 #, fuzzy msgid "Design configuration" msgstr "Xác nhận SMS" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:340 +#: lib/adminpanelaction.php:358 #, fuzzy msgctxt "MENU" msgid "Design" msgstr "Cá nhân" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:346 +#: lib/adminpanelaction.php:364 #, fuzzy msgid "User configuration" msgstr "Xác nhận SMS" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:348 -msgctxt "MENU" +#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 msgid "User" msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:354 +#: lib/adminpanelaction.php:372 #, fuzzy msgid "Access configuration" msgstr "Xác nhận SMS" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:356 -#, fuzzy -msgctxt "MENU" -msgid "Access" -msgstr "Chấp nhận" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:362 +#: lib/adminpanelaction.php:380 #, fuzzy msgid "Paths configuration" msgstr "Xác nhận SMS" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:364 -msgctxt "MENU" -msgid "Paths" -msgstr "" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:370 +#: lib/adminpanelaction.php:388 #, fuzzy msgid "Sessions configuration" msgstr "Xác nhận SMS" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:372 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:396 #, fuzzy -msgctxt "MENU" -msgid "Sessions" -msgstr "Cá nhân" +msgid "Edit site notice" +msgstr "Thông báo mới" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:404 +#, fuzzy +msgid "Snapshots configuration" +msgstr "Xác nhận SMS" #: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." @@ -5630,6 +5703,11 @@ msgstr "" msgid "Go" msgstr "" +#: lib/grantroleform.php:91 +#, php-format +msgid "Grant this user the \"%s\" role" +msgstr "" + #: lib/groupeditform.php:163 #, fuzzy msgid "URL of the homepage or blog of the group or topic" @@ -6241,10 +6319,6 @@ msgstr "Trả lời" msgid "Favorites" msgstr "Ưa thích" -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "" - #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "Hộp thư đến" @@ -6271,7 +6345,7 @@ msgstr "cảnh báo tin nhắn" msgid "Unknown" msgstr "Không tìm thấy action" -#: lib/profileaction.php:109 lib/profileaction.php:192 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:194 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Tôi theo bạn này" @@ -6279,24 +6353,24 @@ msgstr "Tôi theo bạn này" msgid "All subscriptions" msgstr "Tất cả đăng nhận" -#: lib/profileaction.php:140 lib/profileaction.php:201 lib/subgroupnav.php:90 +#: lib/profileaction.php:142 lib/profileaction.php:203 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Bạn này theo tôi" -#: lib/profileaction.php:157 +#: lib/profileaction.php:159 #, fuzzy msgid "All subscribers" msgstr "Bạn này theo tôi" -#: lib/profileaction.php:178 +#: lib/profileaction.php:180 msgid "User ID" msgstr "" -#: lib/profileaction.php:183 +#: lib/profileaction.php:185 msgid "Member since" msgstr "Gia nhập từ" -#: lib/profileaction.php:245 +#: lib/profileaction.php:247 #, fuzzy msgid "All groups" msgstr "Nhóm" @@ -6343,7 +6417,12 @@ msgstr "Trả lời tin nhắn này" msgid "Repeat this notice" msgstr "Trả lời tin nhắn này" -#: lib/router.php:668 +#: lib/revokeroleform.php:91 +#, fuzzy, php-format +msgid "Revoke the \"%s\" role from this user" +msgstr "Ban user" + +#: lib/router.php:671 msgid "No single user defined for single-user mode." msgstr "" @@ -6515,47 +6594,62 @@ msgstr "Tin mới nhất" msgid "Moderate" msgstr "" -#: lib/util.php:1013 +#: lib/userprofile.php:352 +#, fuzzy +msgid "User role" +msgstr "Hồ sơ" + +#: lib/userprofile.php:354 +msgctxt "role" +msgid "Administrator" +msgstr "" + +#: lib/userprofile.php:355 +msgctxt "role" +msgid "Moderator" +msgstr "" + +#: lib/util.php:1015 msgid "a few seconds ago" msgstr "vài giây trước" -#: lib/util.php:1015 +#: lib/util.php:1017 msgid "about a minute ago" msgstr "1 phút trước" -#: lib/util.php:1017 +#: lib/util.php:1019 #, php-format msgid "about %d minutes ago" msgstr "%d phút trước" -#: lib/util.php:1019 +#: lib/util.php:1021 msgid "about an hour ago" msgstr "1 giờ trước" -#: lib/util.php:1021 +#: lib/util.php:1023 #, php-format msgid "about %d hours ago" msgstr "%d giờ trước" -#: lib/util.php:1023 +#: lib/util.php:1025 msgid "about a day ago" msgstr "1 ngày trước" -#: lib/util.php:1025 +#: lib/util.php:1027 #, php-format msgid "about %d days ago" msgstr "%d ngày trước" -#: lib/util.php:1027 +#: lib/util.php:1029 msgid "about a month ago" msgstr "1 tháng trước" -#: lib/util.php:1029 +#: lib/util.php:1031 #, php-format msgid "about %d months ago" msgstr "%d tháng trước" -#: lib/util.php:1031 +#: lib/util.php:1033 msgid "about a year ago" msgstr "1 năm trước" diff --git a/locale/zh_CN/LC_MESSAGES/statusnet.po b/locale/zh_CN/LC_MESSAGES/statusnet.po index 45fdfe6dc0..5b2dae1101 100644 --- a/locale/zh_CN/LC_MESSAGES/statusnet.po +++ b/locale/zh_CN/LC_MESSAGES/statusnet.po @@ -10,19 +10,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-02 21:02+0000\n" -"PO-Revision-Date: 2010-03-02 21:04:02+0000\n" +"POT-Creation-Date: 2010-03-04 18:55+0000\n" +"PO-Revision-Date: 2010-03-04 18:57:34+0000\n" "Language-Team: Simplified Chinese\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=1; plural=0;\n" #. TRANS: Page title -#: actions/accessadminpanel.php:55 +#. TRANS: Menu item for site administration +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 #, fuzzy msgid "Access" msgstr "接受" @@ -125,7 +126,7 @@ msgstr "%s 及好友" #. TRANS: Page title. %1$s is user nickname #. TRANS: H1 text. %1$s is user nickname -#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -180,7 +181,7 @@ msgid "" msgstr "" #. TRANS: H1 text -#: actions/all.php:174 +#: actions/all.php:178 #, fuzzy msgid "You and friends" msgstr "%s 及好友" @@ -208,11 +209,11 @@ msgstr "来自%2$s 上 %1$s 和好友的更新!" #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 -#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 +#: actions/apitimelinegroup.php:160 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:148 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 #, fuzzy msgid "API method not found." msgstr "API 方法未实现!" @@ -583,7 +584,7 @@ msgid "" "give access to your %4$s account to third parties you trust." msgstr "" -#: actions/apioauthauthorize.php:310 +#: actions/apioauthauthorize.php:310 lib/action.php:438 msgid "Account" msgstr "帐号" @@ -675,18 +676,6 @@ msgstr "%s 的收藏 / %s" msgid "%1$s updates favorited by %2$s / %2$s." msgstr "%s 收藏了 %s 的 %s 通告。" -#: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:138 actions/userrss.php:90 -#, php-format -msgid "%s timeline" -msgstr "%s 时间表" - -#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 -#: actions/userrss.php:92 -#, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "%2$s 上 %1$s 的更新!" - #: actions/apitimelinementions.php:117 #, fuzzy, php-format msgid "%1$s / Updates mentioning %2$s" @@ -697,12 +686,12 @@ msgstr "%1$s / 回复 %2$s 的消息" msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "回复 %2$s / %3$s 的 %1$s 更新。" -#: actions/apitimelinepublic.php:111 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "%s 公众时间表" -#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "来自所有人的 %s 消息!" @@ -959,7 +948,7 @@ msgid "Conversation" msgstr "确认码" #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:216 lib/searchgroupnav.php:82 +#: lib/profileaction.php:218 lib/searchgroupnav.php:82 msgid "Notices" msgstr "通告" @@ -981,7 +970,7 @@ msgstr "您未告知此个人信息" #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1228 +#: lib/action.php:1217 #, fuzzy msgid "There was a problem with your session token." msgstr "会话标识有问题,请重试。" @@ -1189,8 +1178,9 @@ msgstr "" #: actions/designadminpanel.php:586 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 +#: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:208 #: actions/tagother.php:154 actions/useradminpanel.php:294 #: lib/applicationeditform.php:333 lib/applicationeditform.php:334 #: lib/designsettings.php:256 lib/groupeditform.php:202 @@ -1318,7 +1308,7 @@ msgstr "描述过长(不能超过140字符)。" msgid "Could not update group." msgstr "无法更新组" -#: actions/editgroup.php:264 classes/User_group.php:478 +#: actions/editgroup.php:264 classes/User_group.php:493 #, fuzzy msgid "Could not create aliases." msgstr "无法创建收藏。" @@ -1444,7 +1434,7 @@ msgid "Cannot normalize that email address" msgstr "无法识别此电子邮件" #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:143 +#: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "不是有效的电子邮件。" @@ -1643,6 +1633,25 @@ msgstr "没有这份通告。" msgid "Cannot read file." msgstr "没有这份通告。" +#: actions/grantrole.php:62 actions/revokerole.php:62 +#, fuzzy +msgid "Invalid role." +msgstr "大小不正确。" + +#: actions/grantrole.php:66 actions/revokerole.php:66 +msgid "This role is reserved and cannot be set." +msgstr "" + +#: actions/grantrole.php:75 +#, fuzzy +msgid "You cannot grant user roles on this site." +msgstr "无法向此用户发送消息。" + +#: actions/grantrole.php:82 +#, fuzzy +msgid "User already has this role." +msgstr "用户没有个人信息。" + #: actions/groupblock.php:71 actions/groupunblock.php:71 #: actions/makeadmin.php:71 actions/subedit.php:46 #: lib/profileformaction.php:70 @@ -1801,12 +1810,18 @@ msgstr "admin管理员" msgid "Make this user an admin" msgstr "" +#: actions/grouprss.php:138 actions/userrss.php:90 +#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#, php-format +msgid "%s timeline" +msgstr "%s 时间表" + #: actions/grouprss.php:140 #, fuzzy, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "%2$s 上 %1$s 的更新!" -#: actions/groups.php:62 lib/profileaction.php:210 lib/profileaction.php:230 +#: actions/groups.php:62 lib/profileaction.php:212 lib/profileaction.php:232 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" msgstr "组" @@ -2410,8 +2425,8 @@ msgstr "连接" msgid "Only " msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 -#: lib/apiaction.php:1068 lib/apiaction.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1042 +#: lib/apiaction.php:1070 lib/apiaction.php:1179 msgid "Not a supported data format." msgstr "不支持的数据格式。" @@ -2560,7 +2575,8 @@ msgstr "无法保存新密码。" msgid "Password saved." msgstr "密码已保存。" -#: actions/pathsadminpanel.php:59 +#. TRANS: Menu item for site administration +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 msgid "Paths" msgstr "" @@ -2688,7 +2704,7 @@ msgstr "" msgid "SSL" msgstr "SMS短信" -#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 +#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202 #, fuzzy msgid "Never" msgstr "恢复" @@ -2747,11 +2763,11 @@ msgstr "不是有效的电子邮件" msgid "Users self-tagged with %1$s - page %2$d" msgstr "用户自加标签 %s - 第 %d 页" -#: actions/postnotice.php:84 +#: actions/postnotice.php:95 msgid "Invalid notice content" msgstr "通告内容不正确" -#: actions/postnotice.php:90 +#: actions/postnotice.php:101 #, php-format msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" @@ -2829,7 +2845,7 @@ msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "你的标签 (字母letters, 数字numbers, -, ., 和 _), 以逗号或空格分隔" -#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 +#: actions/profilesettings.php:151 msgid "Language" msgstr "语言" @@ -2855,7 +2871,7 @@ msgstr "自动订阅任何订阅我的更新的人(这个选项最适合机器 msgid "Bio is too long (max %d chars)." msgstr "自述过长(不能超过140字符)。" -#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:151 msgid "Timezone not selected." msgstr "未选择时区。" @@ -3163,7 +3179,7 @@ msgid "Same as password above. Required." msgstr "相同的密码。此项必填。" #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 msgid "Email" msgstr "电子邮件" @@ -3264,7 +3280,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "您在其他兼容的微博客服务的个人信息URL" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:368 +#: lib/userprofile.php:394 msgid "Subscribe" msgstr "订阅" @@ -3369,6 +3385,16 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "发送给 %1$s 的 %2$s 消息" +#: actions/revokerole.php:75 +#, fuzzy +msgid "You cannot revoke user roles on this site." +msgstr "无法向此用户发送消息。" + +#: actions/revokerole.php:82 +#, fuzzy +msgid "User doesn't have this role." +msgstr "找不到匹配的用户。" + #: actions/rsd.php:146 actions/version.php:157 #, fuzzy msgid "StatusNet" @@ -3384,7 +3410,9 @@ msgstr "无法向此用户发送消息。" msgid "User is already sandboxed." msgstr "用户没有个人信息。" +#. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:390 msgid "Sessions" msgstr "" @@ -3408,7 +3436,7 @@ msgstr "" msgid "Turn on debugging output for sessions." msgstr "" -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/useradminpanel.php:294 #, fuzzy msgid "Save site settings" @@ -3445,8 +3473,8 @@ msgstr "分页" msgid "Description" msgstr "描述" -#: actions/showapplication.php:192 actions/showgroup.php:437 -#: lib/profileaction.php:174 +#: actions/showapplication.php:192 actions/showgroup.php:438 +#: lib/profileaction.php:176 msgid "Statistics" msgstr "统计" @@ -3581,47 +3609,47 @@ msgstr "" msgid "Group actions" msgstr "组动作" -#: actions/showgroup.php:336 +#: actions/showgroup.php:337 #, fuzzy, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "%s 的通告聚合" -#: actions/showgroup.php:342 +#: actions/showgroup.php:343 #, fuzzy, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "%s 的通告聚合" -#: actions/showgroup.php:348 +#: actions/showgroup.php:349 #, fuzzy, php-format msgid "Notice feed for %s group (Atom)" msgstr "%s 的通告聚合" -#: actions/showgroup.php:353 +#: actions/showgroup.php:354 #, php-format msgid "FOAF for %s group" msgstr "%s 的发件箱" -#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 +#: actions/showgroup.php:390 actions/showgroup.php:447 lib/groupnav.php:91 #, fuzzy msgid "Members" msgstr "注册于" -#: actions/showgroup.php:394 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 +#: actions/showgroup.php:395 lib/profileaction.php:117 +#: lib/profileaction.php:150 lib/profileaction.php:238 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(没有)" -#: actions/showgroup.php:400 +#: actions/showgroup.php:401 msgid "All members" msgstr "所有成员" -#: actions/showgroup.php:440 +#: actions/showgroup.php:441 #, fuzzy msgid "Created" msgstr "创建" -#: actions/showgroup.php:456 +#: actions/showgroup.php:457 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3631,7 +3659,7 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showgroup.php:462 +#: actions/showgroup.php:463 #, fuzzy, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3642,7 +3670,7 @@ msgstr "" "**%s** 是一个 %%%%site.name%%%% 的用户组,一个微博客服务 [micro-blogging]" "(http://en.wikipedia.org/wiki/Micro-blogging)" -#: actions/showgroup.php:490 +#: actions/showgroup.php:491 #, fuzzy msgid "Admins" msgstr "admin管理员" @@ -3758,151 +3786,140 @@ msgid "User is already silenced." msgstr "用户没有个人信息。" #: actions/siteadminpanel.php:69 -msgid "Basic settings for this StatusNet site." +msgid "Basic settings for this StatusNet site" msgstr "" -#: actions/siteadminpanel.php:132 +#: actions/siteadminpanel.php:133 msgid "Site name must have non-zero length." msgstr "" -#: actions/siteadminpanel.php:140 +#: actions/siteadminpanel.php:141 #, fuzzy msgid "You must have a valid contact email address." msgstr "不是有效的电子邮件" -#: actions/siteadminpanel.php:158 +#: actions/siteadminpanel.php:159 #, php-format msgid "Unknown language \"%s\"." msgstr "" #: actions/siteadminpanel.php:165 -msgid "Invalid snapshot report URL." -msgstr "" - -#: actions/siteadminpanel.php:171 -msgid "Invalid snapshot run value." -msgstr "" - -#: actions/siteadminpanel.php:177 -msgid "Snapshot frequency must be a number." -msgstr "" - -#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "" -#: actions/siteadminpanel.php:189 +#: actions/siteadminpanel.php:171 msgid "Dupe limit must 1 or more seconds." msgstr "" -#: actions/siteadminpanel.php:239 +#: actions/siteadminpanel.php:221 msgid "General" msgstr "" -#: actions/siteadminpanel.php:242 +#: actions/siteadminpanel.php:224 #, fuzzy msgid "Site name" msgstr "新通告" -#: actions/siteadminpanel.php:243 +#: actions/siteadminpanel.php:225 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "" -#: actions/siteadminpanel.php:247 +#: actions/siteadminpanel.php:229 msgid "Brought by" msgstr "" -#: actions/siteadminpanel.php:248 +#: actions/siteadminpanel.php:230 msgid "Text used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:252 +#: actions/siteadminpanel.php:234 msgid "Brought by URL" msgstr "" -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:235 msgid "URL used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:239 #, fuzzy msgid "Contact email address for your site" msgstr "新的电子邮件地址,用于发布 %s 信息" -#: actions/siteadminpanel.php:263 +#: actions/siteadminpanel.php:245 #, fuzzy msgid "Local" msgstr "本地显示" -#: actions/siteadminpanel.php:274 +#: actions/siteadminpanel.php:256 msgid "Default timezone" msgstr "" -#: actions/siteadminpanel.php:275 +#: actions/siteadminpanel.php:257 msgid "Default timezone for the site; usually UTC." msgstr "" -#: actions/siteadminpanel.php:281 +#: actions/siteadminpanel.php:262 #, fuzzy -msgid "Default site language" +msgid "Default language" msgstr "首选语言" -#: actions/siteadminpanel.php:289 -msgid "Snapshots" +#: actions/siteadminpanel.php:263 +msgid "Site language when autodetection from browser settings is not available" msgstr "" -#: actions/siteadminpanel.php:292 -msgid "Randomly during Web hit" -msgstr "" - -#: actions/siteadminpanel.php:293 -msgid "In a scheduled job" -msgstr "" - -#: actions/siteadminpanel.php:295 -msgid "Data snapshots" -msgstr "" - -#: actions/siteadminpanel.php:296 -msgid "When to send statistical data to status.net servers" -msgstr "" - -#: actions/siteadminpanel.php:301 -msgid "Frequency" -msgstr "" - -#: actions/siteadminpanel.php:302 -msgid "Snapshots will be sent once every N web hits" -msgstr "" - -#: actions/siteadminpanel.php:307 -msgid "Report URL" -msgstr "" - -#: actions/siteadminpanel.php:308 -msgid "Snapshots will be sent to this URL" -msgstr "" - -#: actions/siteadminpanel.php:315 +#: actions/siteadminpanel.php:271 msgid "Limits" msgstr "" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Text limit" msgstr "" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Maximum number of characters for notices." msgstr "" -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "Dupe limit" msgstr "" -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" +#: actions/sitenoticeadminpanel.php:56 +#, fuzzy +msgid "Site Notice" +msgstr "新通告" + +#: actions/sitenoticeadminpanel.php:67 +#, fuzzy +msgid "Edit site-wide message" +msgstr "新消息" + +#: actions/sitenoticeadminpanel.php:103 +#, fuzzy +msgid "Unable to save site notice." +msgstr "无法保存 Twitter 设置!" + +#: actions/sitenoticeadminpanel.php:113 +msgid "Max length for the site-wide notice is 255 chars" +msgstr "" + +#: actions/sitenoticeadminpanel.php:176 +#, fuzzy +msgid "Site notice text" +msgstr "新通告" + +#: actions/sitenoticeadminpanel.php:178 +msgid "Site-wide notice text (255 chars max; HTML okay)" +msgstr "" + +#: actions/sitenoticeadminpanel.php:198 +#, fuzzy +msgid "Save site notice" +msgstr "新通告" + #: actions/smssettings.php:58 #, fuzzy msgid "SMS settings" @@ -4004,6 +4021,66 @@ msgstr "" msgid "No code entered" msgstr "没有输入验证码" +#. TRANS: Menu item for site administration +#: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 +#: lib/adminpanelaction.php:406 +msgid "Snapshots" +msgstr "" + +#: actions/snapshotadminpanel.php:65 +#, fuzzy +msgid "Manage snapshot configuration" +msgstr "主站导航" + +#: actions/snapshotadminpanel.php:127 +msgid "Invalid snapshot run value." +msgstr "" + +#: actions/snapshotadminpanel.php:133 +msgid "Snapshot frequency must be a number." +msgstr "" + +#: actions/snapshotadminpanel.php:144 +msgid "Invalid snapshot report URL." +msgstr "" + +#: actions/snapshotadminpanel.php:200 +msgid "Randomly during Web hit" +msgstr "" + +#: actions/snapshotadminpanel.php:201 +msgid "In a scheduled job" +msgstr "" + +#: actions/snapshotadminpanel.php:206 +msgid "Data snapshots" +msgstr "" + +#: actions/snapshotadminpanel.php:208 +msgid "When to send statistical data to status.net servers" +msgstr "" + +#: actions/snapshotadminpanel.php:217 +msgid "Frequency" +msgstr "" + +#: actions/snapshotadminpanel.php:218 +msgid "Snapshots will be sent once every N web hits" +msgstr "" + +#: actions/snapshotadminpanel.php:226 +msgid "Report URL" +msgstr "" + +#: actions/snapshotadminpanel.php:227 +msgid "Snapshots will be sent to this URL" +msgstr "" + +#: actions/snapshotadminpanel.php:248 +#, fuzzy +msgid "Save snapshot settings" +msgstr "头像设置" + #: actions/subedit.php:70 #, fuzzy msgid "You are not subscribed to that profile." @@ -4214,7 +4291,7 @@ msgstr "服务器没有返回个人信息URL。" msgid "Unsubscribed" msgstr "退订" -#: actions/updateprofile.php:62 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -4421,16 +4498,22 @@ msgstr "%s 组成员, 第 %d 页" msgid "Search for more groups" msgstr "检索人或文字" -#: actions/usergroups.php:153 +#: actions/usergroups.php:157 #, fuzzy, php-format msgid "%s is not a member of any group." msgstr "您未告知此个人信息" -#: actions/usergroups.php:158 +#: actions/usergroups.php:162 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" +#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: lib/atomusernoticefeed.php:72 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "%2$s 上 %1$s 的更新!" + #: actions/version.php:73 #, fuzzy, php-format msgid "StatusNet %s" @@ -4474,7 +4557,7 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:196 lib/action.php:778 +#: actions/version.php:196 lib/action.php:767 #, fuzzy msgid "Version" msgstr "个人" @@ -4543,42 +4626,42 @@ msgstr "无法添加新URI的信息。" msgid "DB error inserting hashtag: %s" msgstr "添加标签时数据库出错:%s" -#: classes/Notice.php:239 +#: classes/Notice.php:241 #, fuzzy msgid "Problem saving notice. Too long." msgstr "保存通告时出错。" -#: classes/Notice.php:243 +#: classes/Notice.php:245 #, fuzzy msgid "Problem saving notice. Unknown user." msgstr "保存通告时出错。" -#: classes/Notice.php:248 +#: classes/Notice.php:250 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "你在短时间里发布了过多的消息,请深呼吸,过几分钟再发消息。" -#: classes/Notice.php:254 +#: classes/Notice.php:256 #, fuzzy msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." msgstr "你在短时间里发布了过多的消息,请深呼吸,过几分钟再发消息。" -#: classes/Notice.php:260 +#: classes/Notice.php:262 msgid "You are banned from posting notices on this site." msgstr "在这个网站你被禁止发布消息。" -#: classes/Notice.php:326 classes/Notice.php:352 +#: classes/Notice.php:328 classes/Notice.php:354 msgid "Problem saving notice." msgstr "保存通告时出错。" -#: classes/Notice.php:911 +#: classes/Notice.php:927 #, fuzzy msgid "Problem saving group inbox." msgstr "保存通告时出错。" -#: classes/Notice.php:1442 +#: classes/Notice.php:1459 #, fuzzy, php-format msgid "RT @%1$s %2$s" msgstr "%1$s (%2$s)" @@ -4607,7 +4690,12 @@ msgstr "未订阅!" msgid "Couldn't delete self-subscription." msgstr "无法删除订阅。" -#: classes/Subscription.php:179 lib/subs.php:69 +#: classes/Subscription.php:190 +#, fuzzy +msgid "Couldn't delete subscription OMB token." +msgstr "无法删除订阅。" + +#: classes/Subscription.php:201 lib/subs.php:69 msgid "Couldn't delete subscription." msgstr "无法删除订阅。" @@ -4616,21 +4704,21 @@ msgstr "无法删除订阅。" msgid "Welcome to %1$s, @%2$s!" msgstr "发送给 %1$s 的 %2$s 消息" -#: classes/User_group.php:462 +#: classes/User_group.php:477 msgid "Could not create group." msgstr "无法创建组。" -#: classes/User_group.php:471 +#: classes/User_group.php:486 #, fuzzy msgid "Could not set group URI." msgstr "无法删除订阅。" -#: classes/User_group.php:492 +#: classes/User_group.php:507 #, fuzzy msgid "Could not set group membership." msgstr "无法删除订阅。" -#: classes/User_group.php:506 +#: classes/User_group.php:521 #, fuzzy msgid "Could not save local group info." msgstr "无法删除订阅。" @@ -4673,198 +4761,192 @@ msgstr "%1$s (%2$s)" msgid "Untitled page" msgstr "无标题页" -#: lib/action.php:433 +#: lib/action.php:424 msgid "Primary site navigation" msgstr "主站导航" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:439 +#: lib/action.php:430 #, fuzzy msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "个人资料及朋友年表" -#: lib/action.php:442 +#: lib/action.php:433 #, fuzzy msgctxt "MENU" msgid "Personal" msgstr "个人" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:444 +#: lib/action.php:435 #, fuzzy msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "修改资料" -#: lib/action.php:447 -#, fuzzy -msgctxt "MENU" -msgid "Account" -msgstr "帐号" - #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:450 +#: lib/action.php:440 #, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" msgstr "无法重定向到服务器:%s" -#: lib/action.php:453 +#: lib/action.php:443 #, fuzzy -msgctxt "MENU" msgid "Connect" msgstr "连接" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:457 +#: lib/action.php:446 #, fuzzy msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "主站导航" -#: lib/action.php:460 +#: lib/action.php:449 #, fuzzy msgctxt "MENU" msgid "Admin" msgstr "admin管理员" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:464 +#: lib/action.php:453 #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "使用这个表单来邀请好友和同事加入。" -#: lib/action.php:467 +#: lib/action.php:456 #, fuzzy msgctxt "MENU" msgid "Invite" msgstr "邀请" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:473 +#: lib/action.php:462 #, fuzzy msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "登出本站" -#: lib/action.php:476 +#: lib/action.php:465 #, fuzzy msgctxt "MENU" msgid "Logout" msgstr "登出" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:481 +#: lib/action.php:470 #, fuzzy msgctxt "TOOLTIP" msgid "Create an account" msgstr "创建新帐号" -#: lib/action.php:484 +#: lib/action.php:473 #, fuzzy msgctxt "MENU" msgid "Register" msgstr "注册" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:487 +#: lib/action.php:476 #, fuzzy msgctxt "TOOLTIP" msgid "Login to the site" msgstr "登入本站" -#: lib/action.php:490 +#: lib/action.php:479 #, fuzzy msgctxt "MENU" msgid "Login" msgstr "登录" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:493 +#: lib/action.php:482 #, fuzzy msgctxt "TOOLTIP" msgid "Help me!" msgstr "帮助" -#: lib/action.php:496 +#: lib/action.php:485 #, fuzzy msgctxt "MENU" msgid "Help" msgstr "帮助" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:499 +#: lib/action.php:488 #, fuzzy msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "检索人或文字" -#: lib/action.php:502 +#: lib/action.php:491 #, fuzzy msgctxt "MENU" msgid "Search" msgstr "搜索" #. TRANS: DT element for site notice. String is hidden in default CSS. -#: lib/action.php:524 +#. TRANS: Menu item for site administration +#: lib/action.php:513 lib/adminpanelaction.php:398 #, fuzzy msgid "Site notice" msgstr "新通告" -#: lib/action.php:590 +#: lib/action.php:579 msgid "Local views" msgstr "本地显示" -#: lib/action.php:656 +#: lib/action.php:645 #, fuzzy msgid "Page notice" msgstr "新通告" -#: lib/action.php:758 +#: lib/action.php:747 #, fuzzy msgid "Secondary site navigation" msgstr "次项站导航" -#: lib/action.php:763 +#: lib/action.php:752 msgid "Help" msgstr "帮助" -#: lib/action.php:765 +#: lib/action.php:754 msgid "About" msgstr "关于" -#: lib/action.php:767 +#: lib/action.php:756 msgid "FAQ" msgstr "常见问题FAQ" -#: lib/action.php:771 +#: lib/action.php:760 msgid "TOS" msgstr "" -#: lib/action.php:774 +#: lib/action.php:763 msgid "Privacy" msgstr "隐私" -#: lib/action.php:776 +#: lib/action.php:765 msgid "Source" msgstr "来源" -#: lib/action.php:780 +#: lib/action.php:769 msgid "Contact" msgstr "联系人" -#: lib/action.php:782 +#: lib/action.php:771 #, fuzzy msgid "Badge" msgstr "呼叫" -#: lib/action.php:810 +#: lib/action.php:799 msgid "StatusNet software license" msgstr "StatusNet软件注册证" -#: lib/action.php:813 +#: lib/action.php:802 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4873,12 +4955,12 @@ msgstr "" "**%%site.name%%** 是一个微博客服务,提供者为 [%%site.broughtby%%](%%site." "broughtbyurl%%)。" -#: lib/action.php:815 +#: lib/action.php:804 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** 是一个微博客服务。" -#: lib/action.php:817 +#: lib/action.php:806 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4889,56 +4971,56 @@ msgstr "" "General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)" "授权。" -#: lib/action.php:832 +#: lib/action.php:821 #, fuzzy msgid "Site content license" msgstr "StatusNet软件注册证" -#: lib/action.php:837 +#: lib/action.php:826 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:842 +#: lib/action.php:831 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:845 +#: lib/action.php:834 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" -#: lib/action.php:858 +#: lib/action.php:847 msgid "All " msgstr "全部" -#: lib/action.php:864 +#: lib/action.php:853 msgid "license." msgstr "注册证" -#: lib/action.php:1163 +#: lib/action.php:1152 msgid "Pagination" msgstr "分页" -#: lib/action.php:1172 +#: lib/action.php:1161 #, fuzzy msgid "After" msgstr "« 之后" -#: lib/action.php:1180 +#: lib/action.php:1169 #, fuzzy msgid "Before" msgstr "之前 »" -#: lib/activity.php:449 +#: lib/activity.php:453 msgid "Can't handle remote content yet." msgstr "" -#: lib/activity.php:477 +#: lib/activity.php:481 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activity.php:481 +#: lib/activity.php:485 msgid "Can't handle embedded Base64 content yet." msgstr "" @@ -4955,99 +5037,89 @@ msgid "Changes to that panel are not allowed." msgstr "不允许注册。" #. TRANS: Client error message -#: lib/adminpanelaction.php:211 +#: lib/adminpanelaction.php:229 #, fuzzy msgid "showForm() not implemented." msgstr "命令尚未实现。" #. TRANS: Client error message -#: lib/adminpanelaction.php:241 +#: lib/adminpanelaction.php:259 #, fuzzy msgid "saveSettings() not implemented." msgstr "命令尚未实现。" #. TRANS: Client error message -#: lib/adminpanelaction.php:265 +#: lib/adminpanelaction.php:283 #, fuzzy msgid "Unable to delete design setting." msgstr "无法保存 Twitter 设置!" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:330 +#: lib/adminpanelaction.php:348 #, fuzzy msgid "Basic site configuration" msgstr "电子邮件地址确认" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:332 +#: lib/adminpanelaction.php:350 #, fuzzy msgctxt "MENU" msgid "Site" msgstr "邀请" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:338 +#: lib/adminpanelaction.php:356 #, fuzzy msgid "Design configuration" msgstr "SMS短信确认" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:340 +#: lib/adminpanelaction.php:358 #, fuzzy msgctxt "MENU" msgid "Design" msgstr "个人" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:346 +#: lib/adminpanelaction.php:364 #, fuzzy msgid "User configuration" msgstr "SMS短信确认" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:348 -#, fuzzy -msgctxt "MENU" +#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 msgid "User" msgstr "用户" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:354 +#: lib/adminpanelaction.php:372 #, fuzzy msgid "Access configuration" msgstr "SMS短信确认" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:356 -#, fuzzy -msgctxt "MENU" -msgid "Access" -msgstr "接受" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:362 +#: lib/adminpanelaction.php:380 #, fuzzy msgid "Paths configuration" msgstr "SMS短信确认" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:364 -msgctxt "MENU" -msgid "Paths" -msgstr "" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:370 +#: lib/adminpanelaction.php:388 #, fuzzy msgid "Sessions configuration" msgstr "SMS短信确认" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:372 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:396 #, fuzzy -msgctxt "MENU" -msgid "Sessions" -msgstr "个人" +msgid "Edit site notice" +msgstr "新通告" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:404 +#, fuzzy +msgid "Snapshots configuration" +msgstr "SMS短信确认" #: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." @@ -5551,6 +5623,11 @@ msgstr "选择标签缩小清单" msgid "Go" msgstr "执行" +#: lib/grantroleform.php:91 +#, php-format +msgid "Grant this user the \"%s\" role" +msgstr "" + #: lib/groupeditform.php:163 #, fuzzy msgid "URL of the homepage or blog of the group or topic" @@ -6114,10 +6191,6 @@ msgstr "回复" msgid "Favorites" msgstr "收藏夹" -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "用户" - #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "收件箱" @@ -6144,7 +6217,7 @@ msgstr "%s's 的消息的标签" msgid "Unknown" msgstr "未知动作" -#: lib/profileaction.php:109 lib/profileaction.php:192 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:194 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "订阅" @@ -6152,25 +6225,25 @@ msgstr "订阅" msgid "All subscriptions" msgstr "所有订阅" -#: lib/profileaction.php:140 lib/profileaction.php:201 lib/subgroupnav.php:90 +#: lib/profileaction.php:142 lib/profileaction.php:203 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "订阅者" -#: lib/profileaction.php:157 +#: lib/profileaction.php:159 #, fuzzy msgid "All subscribers" msgstr "订阅者" -#: lib/profileaction.php:178 +#: lib/profileaction.php:180 #, fuzzy msgid "User ID" msgstr "用户" -#: lib/profileaction.php:183 +#: lib/profileaction.php:185 msgid "Member since" msgstr "用户始于" -#: lib/profileaction.php:245 +#: lib/profileaction.php:247 msgid "All groups" msgstr "所有组" @@ -6215,7 +6288,12 @@ msgstr "无法删除通告。" msgid "Repeat this notice" msgstr "无法删除通告。" -#: lib/router.php:668 +#: lib/revokeroleform.php:91 +#, fuzzy, php-format +msgid "Revoke the \"%s\" role from this user" +msgstr "该组成员列表。" + +#: lib/router.php:671 msgid "No single user defined for single-user mode." msgstr "" @@ -6386,47 +6464,63 @@ msgstr "新消息" msgid "Moderate" msgstr "" -#: lib/util.php:1013 +#: lib/userprofile.php:352 +#, fuzzy +msgid "User role" +msgstr "用户没有个人信息。" + +#: lib/userprofile.php:354 +#, fuzzy +msgctxt "role" +msgid "Administrator" +msgstr "admin管理员" + +#: lib/userprofile.php:355 +msgctxt "role" +msgid "Moderator" +msgstr "" + +#: lib/util.php:1015 msgid "a few seconds ago" msgstr "几秒前" -#: lib/util.php:1015 +#: lib/util.php:1017 msgid "about a minute ago" msgstr "一分钟前" -#: lib/util.php:1017 +#: lib/util.php:1019 #, php-format msgid "about %d minutes ago" msgstr "%d 分钟前" -#: lib/util.php:1019 +#: lib/util.php:1021 msgid "about an hour ago" msgstr "一小时前" -#: lib/util.php:1021 +#: lib/util.php:1023 #, php-format msgid "about %d hours ago" msgstr "%d 小时前" -#: lib/util.php:1023 +#: lib/util.php:1025 msgid "about a day ago" msgstr "一天前" -#: lib/util.php:1025 +#: lib/util.php:1027 #, php-format msgid "about %d days ago" msgstr "%d 天前" -#: lib/util.php:1027 +#: lib/util.php:1029 msgid "about a month ago" msgstr "一个月前" -#: lib/util.php:1029 +#: lib/util.php:1031 #, php-format msgid "about %d months ago" msgstr "%d 个月前" -#: lib/util.php:1031 +#: lib/util.php:1033 msgid "about a year ago" msgstr "一年前" diff --git a/locale/zh_TW/LC_MESSAGES/statusnet.po b/locale/zh_TW/LC_MESSAGES/statusnet.po index 5cca450ca9..e7314d5e6f 100644 --- a/locale/zh_TW/LC_MESSAGES/statusnet.po +++ b/locale/zh_TW/LC_MESSAGES/statusnet.po @@ -7,19 +7,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-02 21:02+0000\n" -"PO-Revision-Date: 2010-03-02 21:04:05+0000\n" +"POT-Creation-Date: 2010-03-04 18:55+0000\n" +"PO-Revision-Date: 2010-03-04 18:57:37+0000\n" "Language-Team: Traditional Chinese\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hant\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=1; plural=0;\n" #. TRANS: Page title -#: actions/accessadminpanel.php:55 +#. TRANS: Menu item for site administration +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 #, fuzzy msgid "Access" msgstr "接受" @@ -120,7 +121,7 @@ msgstr "%s與好友" #. TRANS: Page title. %1$s is user nickname #. TRANS: H1 text. %1$s is user nickname -#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -175,7 +176,7 @@ msgid "" msgstr "" #. TRANS: H1 text -#: actions/all.php:174 +#: actions/all.php:178 #, fuzzy msgid "You and friends" msgstr "%s與好友" @@ -203,11 +204,11 @@ msgstr "" #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 -#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 +#: actions/apitimelinegroup.php:160 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:148 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 #, fuzzy msgid "API method not found." msgstr "確認碼遺失" @@ -574,7 +575,7 @@ msgid "" "give access to your %4$s account to third parties you trust." msgstr "" -#: actions/apioauthauthorize.php:310 +#: actions/apioauthauthorize.php:310 lib/action.php:438 #, fuzzy msgid "Account" msgstr "關於" @@ -665,18 +666,6 @@ msgstr "%1$s的狀態是%2$s" msgid "%1$s updates favorited by %2$s / %2$s." msgstr "&s的微型部落格" -#: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:138 actions/userrss.php:90 -#, php-format -msgid "%s timeline" -msgstr "" - -#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 -#: actions/userrss.php:92 -#, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "" - #: actions/apitimelinementions.php:117 #, fuzzy, php-format msgid "%1$s / Updates mentioning %2$s" @@ -687,12 +676,12 @@ msgstr "%1$s的狀態是%2$s" msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "" -#: actions/apitimelinepublic.php:111 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "" -#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "" @@ -948,7 +937,7 @@ msgid "Conversation" msgstr "地點" #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:216 lib/searchgroupnav.php:82 +#: lib/profileaction.php:218 lib/searchgroupnav.php:82 msgid "Notices" msgstr "" @@ -970,7 +959,7 @@ msgstr "無法連結到伺服器:%s" #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1228 +#: lib/action.php:1217 msgid "There was a problem with your session token." msgstr "" @@ -1172,8 +1161,9 @@ msgstr "" #: actions/designadminpanel.php:586 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 +#: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:208 #: actions/tagother.php:154 actions/useradminpanel.php:294 #: lib/applicationeditform.php:333 lib/applicationeditform.php:334 #: lib/designsettings.php:256 lib/groupeditform.php:202 @@ -1298,7 +1288,7 @@ msgstr "自我介紹過長(共140個字元)" msgid "Could not update group." msgstr "無法更新使用者" -#: actions/editgroup.php:264 classes/User_group.php:478 +#: actions/editgroup.php:264 classes/User_group.php:493 #, fuzzy msgid "Could not create aliases." msgstr "無法存取個人圖像資料" @@ -1421,7 +1411,7 @@ msgid "Cannot normalize that email address" msgstr "" #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:143 +#: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "此信箱無效" @@ -1613,6 +1603,24 @@ msgstr "無此通知" msgid "Cannot read file." msgstr "無此通知" +#: actions/grantrole.php:62 actions/revokerole.php:62 +#, fuzzy +msgid "Invalid role." +msgstr "尺寸錯誤" + +#: actions/grantrole.php:66 actions/revokerole.php:66 +msgid "This role is reserved and cannot be set." +msgstr "" + +#: actions/grantrole.php:75 +#, fuzzy +msgid "You cannot grant user roles on this site." +msgstr "無法連結到伺服器:%s" + +#: actions/grantrole.php:82 +msgid "User already has this role." +msgstr "" + #: actions/groupblock.php:71 actions/groupunblock.php:71 #: actions/makeadmin.php:71 actions/subedit.php:46 #: lib/profileformaction.php:70 @@ -1760,12 +1768,18 @@ msgstr "" msgid "Make this user an admin" msgstr "" +#: actions/grouprss.php:138 actions/userrss.php:90 +#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#, php-format +msgid "%s timeline" +msgstr "" + #: actions/grouprss.php:140 #, fuzzy, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "&s的微型部落格" -#: actions/groups.php:62 lib/profileaction.php:210 lib/profileaction.php:230 +#: actions/groups.php:62 lib/profileaction.php:212 lib/profileaction.php:232 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" msgstr "" @@ -2328,8 +2342,8 @@ msgstr "連結" msgid "Only " msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 -#: lib/apiaction.php:1068 lib/apiaction.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1042 +#: lib/apiaction.php:1070 lib/apiaction.php:1179 msgid "Not a supported data format." msgstr "" @@ -2475,7 +2489,8 @@ msgstr "無法存取新密碼" msgid "Password saved." msgstr "" -#: actions/pathsadminpanel.php:59 +#. TRANS: Menu item for site administration +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 msgid "Paths" msgstr "" @@ -2600,7 +2615,7 @@ msgstr "" msgid "SSL" msgstr "" -#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 +#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202 msgid "Never" msgstr "" @@ -2655,11 +2670,11 @@ msgstr "此信箱無效" msgid "Users self-tagged with %1$s - page %2$d" msgstr "&s的微型部落格" -#: actions/postnotice.php:84 +#: actions/postnotice.php:95 msgid "Invalid notice content" msgstr "" -#: actions/postnotice.php:90 +#: actions/postnotice.php:101 #, php-format msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" @@ -2736,7 +2751,7 @@ msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" -#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 +#: actions/profilesettings.php:151 msgid "Language" msgstr "" @@ -2762,7 +2777,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "自我介紹過長(共140個字元)" -#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:151 msgid "Timezone not selected." msgstr "" @@ -3064,7 +3079,7 @@ msgid "Same as password above. Required." msgstr "" #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 msgid "Email" msgstr "電子信箱" @@ -3149,7 +3164,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:368 +#: lib/userprofile.php:394 msgid "Subscribe" msgstr "" @@ -3250,6 +3265,15 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "&s的微型部落格" +#: actions/revokerole.php:75 +#, fuzzy +msgid "You cannot revoke user roles on this site." +msgstr "無法連結到伺服器:%s" + +#: actions/revokerole.php:82 +msgid "User doesn't have this role." +msgstr "" + #: actions/rsd.php:146 actions/version.php:157 #, fuzzy msgid "StatusNet" @@ -3264,7 +3288,9 @@ msgstr "無法連結到伺服器:%s" msgid "User is already sandboxed." msgstr "" +#. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:390 msgid "Sessions" msgstr "" @@ -3288,7 +3314,7 @@ msgstr "" msgid "Turn on debugging output for sessions." msgstr "" -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/useradminpanel.php:294 #, fuzzy msgid "Save site settings" @@ -3323,8 +3349,8 @@ msgstr "地點" msgid "Description" msgstr "所有訂閱" -#: actions/showapplication.php:192 actions/showgroup.php:437 -#: lib/profileaction.php:174 +#: actions/showapplication.php:192 actions/showgroup.php:438 +#: lib/profileaction.php:176 msgid "Statistics" msgstr "" @@ -3457,47 +3483,47 @@ msgstr "" msgid "Group actions" msgstr "" -#: actions/showgroup.php:336 +#: actions/showgroup.php:337 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "" -#: actions/showgroup.php:342 +#: actions/showgroup.php:343 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "" -#: actions/showgroup.php:348 +#: actions/showgroup.php:349 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "" -#: actions/showgroup.php:353 +#: actions/showgroup.php:354 #, fuzzy, php-format msgid "FOAF for %s group" msgstr "無此通知" -#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 +#: actions/showgroup.php:390 actions/showgroup.php:447 lib/groupnav.php:91 #, fuzzy msgid "Members" msgstr "何時加入會員的呢?" -#: actions/showgroup.php:394 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 +#: actions/showgroup.php:395 lib/profileaction.php:117 +#: lib/profileaction.php:150 lib/profileaction.php:238 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "" -#: actions/showgroup.php:400 +#: actions/showgroup.php:401 msgid "All members" msgstr "" -#: actions/showgroup.php:440 +#: actions/showgroup.php:441 #, fuzzy msgid "Created" msgstr "新增" -#: actions/showgroup.php:456 +#: actions/showgroup.php:457 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3507,7 +3533,7 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showgroup.php:462 +#: actions/showgroup.php:463 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3516,7 +3542,7 @@ msgid "" "their life and interests. " msgstr "" -#: actions/showgroup.php:490 +#: actions/showgroup.php:491 msgid "Admins" msgstr "" @@ -3627,150 +3653,138 @@ msgid "User is already silenced." msgstr "" #: actions/siteadminpanel.php:69 -msgid "Basic settings for this StatusNet site." +msgid "Basic settings for this StatusNet site" msgstr "" -#: actions/siteadminpanel.php:132 +#: actions/siteadminpanel.php:133 msgid "Site name must have non-zero length." msgstr "" -#: actions/siteadminpanel.php:140 +#: actions/siteadminpanel.php:141 #, fuzzy msgid "You must have a valid contact email address." msgstr "此信箱無效" -#: actions/siteadminpanel.php:158 +#: actions/siteadminpanel.php:159 #, php-format msgid "Unknown language \"%s\"." msgstr "" #: actions/siteadminpanel.php:165 -msgid "Invalid snapshot report URL." -msgstr "" - -#: actions/siteadminpanel.php:171 -msgid "Invalid snapshot run value." -msgstr "" - -#: actions/siteadminpanel.php:177 -msgid "Snapshot frequency must be a number." -msgstr "" - -#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "" -#: actions/siteadminpanel.php:189 +#: actions/siteadminpanel.php:171 msgid "Dupe limit must 1 or more seconds." msgstr "" -#: actions/siteadminpanel.php:239 +#: actions/siteadminpanel.php:221 msgid "General" msgstr "" -#: actions/siteadminpanel.php:242 +#: actions/siteadminpanel.php:224 #, fuzzy msgid "Site name" msgstr "新訊息" -#: actions/siteadminpanel.php:243 +#: actions/siteadminpanel.php:225 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "" -#: actions/siteadminpanel.php:247 +#: actions/siteadminpanel.php:229 msgid "Brought by" msgstr "" -#: actions/siteadminpanel.php:248 +#: actions/siteadminpanel.php:230 msgid "Text used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:252 +#: actions/siteadminpanel.php:234 msgid "Brought by URL" msgstr "" -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:235 msgid "URL used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:239 #, fuzzy msgid "Contact email address for your site" msgstr "查無此使用者所註冊的信箱" -#: actions/siteadminpanel.php:263 +#: actions/siteadminpanel.php:245 #, fuzzy msgid "Local" msgstr "地點" -#: actions/siteadminpanel.php:274 +#: actions/siteadminpanel.php:256 msgid "Default timezone" msgstr "" -#: actions/siteadminpanel.php:275 +#: actions/siteadminpanel.php:257 msgid "Default timezone for the site; usually UTC." msgstr "" -#: actions/siteadminpanel.php:281 -msgid "Default site language" +#: actions/siteadminpanel.php:262 +msgid "Default language" msgstr "" -#: actions/siteadminpanel.php:289 -msgid "Snapshots" +#: actions/siteadminpanel.php:263 +msgid "Site language when autodetection from browser settings is not available" msgstr "" -#: actions/siteadminpanel.php:292 -msgid "Randomly during Web hit" -msgstr "" - -#: actions/siteadminpanel.php:293 -msgid "In a scheduled job" -msgstr "" - -#: actions/siteadminpanel.php:295 -msgid "Data snapshots" -msgstr "" - -#: actions/siteadminpanel.php:296 -msgid "When to send statistical data to status.net servers" -msgstr "" - -#: actions/siteadminpanel.php:301 -msgid "Frequency" -msgstr "" - -#: actions/siteadminpanel.php:302 -msgid "Snapshots will be sent once every N web hits" -msgstr "" - -#: actions/siteadminpanel.php:307 -msgid "Report URL" -msgstr "" - -#: actions/siteadminpanel.php:308 -msgid "Snapshots will be sent to this URL" -msgstr "" - -#: actions/siteadminpanel.php:315 +#: actions/siteadminpanel.php:271 msgid "Limits" msgstr "" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Text limit" msgstr "" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Maximum number of characters for notices." msgstr "" -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "Dupe limit" msgstr "" -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" +#: actions/sitenoticeadminpanel.php:56 +#, fuzzy +msgid "Site Notice" +msgstr "新訊息" + +#: actions/sitenoticeadminpanel.php:67 +msgid "Edit site-wide message" +msgstr "" + +#: actions/sitenoticeadminpanel.php:103 +#, fuzzy +msgid "Unable to save site notice." +msgstr "新訊息" + +#: actions/sitenoticeadminpanel.php:113 +msgid "Max length for the site-wide notice is 255 chars" +msgstr "" + +#: actions/sitenoticeadminpanel.php:176 +#, fuzzy +msgid "Site notice text" +msgstr "新訊息" + +#: actions/sitenoticeadminpanel.php:178 +msgid "Site-wide notice text (255 chars max; HTML okay)" +msgstr "" + +#: actions/sitenoticeadminpanel.php:198 +#, fuzzy +msgid "Save site notice" +msgstr "新訊息" + #: actions/smssettings.php:58 #, fuzzy msgid "SMS settings" @@ -3866,6 +3880,66 @@ msgstr "" msgid "No code entered" msgstr "" +#. TRANS: Menu item for site administration +#: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 +#: lib/adminpanelaction.php:406 +msgid "Snapshots" +msgstr "" + +#: actions/snapshotadminpanel.php:65 +#, fuzzy +msgid "Manage snapshot configuration" +msgstr "確認信箱" + +#: actions/snapshotadminpanel.php:127 +msgid "Invalid snapshot run value." +msgstr "" + +#: actions/snapshotadminpanel.php:133 +msgid "Snapshot frequency must be a number." +msgstr "" + +#: actions/snapshotadminpanel.php:144 +msgid "Invalid snapshot report URL." +msgstr "" + +#: actions/snapshotadminpanel.php:200 +msgid "Randomly during Web hit" +msgstr "" + +#: actions/snapshotadminpanel.php:201 +msgid "In a scheduled job" +msgstr "" + +#: actions/snapshotadminpanel.php:206 +msgid "Data snapshots" +msgstr "" + +#: actions/snapshotadminpanel.php:208 +msgid "When to send statistical data to status.net servers" +msgstr "" + +#: actions/snapshotadminpanel.php:217 +msgid "Frequency" +msgstr "" + +#: actions/snapshotadminpanel.php:218 +msgid "Snapshots will be sent once every N web hits" +msgstr "" + +#: actions/snapshotadminpanel.php:226 +msgid "Report URL" +msgstr "" + +#: actions/snapshotadminpanel.php:227 +msgid "Snapshots will be sent to this URL" +msgstr "" + +#: actions/snapshotadminpanel.php:248 +#, fuzzy +msgid "Save snapshot settings" +msgstr "線上即時通設定" + #: actions/subedit.php:70 msgid "You are not subscribed to that profile." msgstr "" @@ -4070,7 +4144,7 @@ msgstr "無確認請求" msgid "Unsubscribed" msgstr "此帳號已註冊" -#: actions/updateprofile.php:62 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -4263,16 +4337,22 @@ msgstr "所有訂閱" msgid "Search for more groups" msgstr "" -#: actions/usergroups.php:153 +#: actions/usergroups.php:157 #, php-format msgid "%s is not a member of any group." msgstr "" -#: actions/usergroups.php:158 +#: actions/usergroups.php:162 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" +#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: lib/atomusernoticefeed.php:72 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "" + #: actions/version.php:73 #, php-format msgid "StatusNet %s" @@ -4316,7 +4396,7 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:196 lib/action.php:778 +#: actions/version.php:196 lib/action.php:767 #, fuzzy msgid "Version" msgstr "地點" @@ -4384,41 +4464,41 @@ msgstr "" msgid "DB error inserting hashtag: %s" msgstr "" -#: classes/Notice.php:239 +#: classes/Notice.php:241 #, fuzzy msgid "Problem saving notice. Too long." msgstr "儲存使用者發生錯誤" -#: classes/Notice.php:243 +#: classes/Notice.php:245 #, fuzzy msgid "Problem saving notice. Unknown user." msgstr "儲存使用者發生錯誤" -#: classes/Notice.php:248 +#: classes/Notice.php:250 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: classes/Notice.php:254 +#: classes/Notice.php:256 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." msgstr "" -#: classes/Notice.php:260 +#: classes/Notice.php:262 msgid "You are banned from posting notices on this site." msgstr "" -#: classes/Notice.php:326 classes/Notice.php:352 +#: classes/Notice.php:328 classes/Notice.php:354 msgid "Problem saving notice." msgstr "" -#: classes/Notice.php:911 +#: classes/Notice.php:927 #, fuzzy msgid "Problem saving group inbox." msgstr "儲存使用者發生錯誤" -#: classes/Notice.php:1442 +#: classes/Notice.php:1459 #, php-format msgid "RT @%1$s %2$s" msgstr "" @@ -4445,7 +4525,12 @@ msgstr "此帳號已註冊" msgid "Couldn't delete self-subscription." msgstr "無法刪除帳號" -#: classes/Subscription.php:179 lib/subs.php:69 +#: classes/Subscription.php:190 +#, fuzzy +msgid "Couldn't delete subscription OMB token." +msgstr "無法刪除帳號" + +#: classes/Subscription.php:201 lib/subs.php:69 msgid "Couldn't delete subscription." msgstr "無法刪除帳號" @@ -4454,22 +4539,22 @@ msgstr "無法刪除帳號" msgid "Welcome to %1$s, @%2$s!" msgstr "" -#: classes/User_group.php:462 +#: classes/User_group.php:477 #, fuzzy msgid "Could not create group." msgstr "無法存取個人圖像資料" -#: classes/User_group.php:471 +#: classes/User_group.php:486 #, fuzzy msgid "Could not set group URI." msgstr "註冊失敗" -#: classes/User_group.php:492 +#: classes/User_group.php:507 #, fuzzy msgid "Could not set group membership." msgstr "註冊失敗" -#: classes/User_group.php:506 +#: classes/User_group.php:521 #, fuzzy msgid "Could not save local group info." msgstr "註冊失敗" @@ -4513,190 +4598,184 @@ msgstr "%1$s的狀態是%2$s" msgid "Untitled page" msgstr "" -#: lib/action.php:433 +#: lib/action.php:424 msgid "Primary site navigation" msgstr "" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:439 +#: lib/action.php:430 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:442 +#: lib/action.php:433 #, fuzzy msgctxt "MENU" msgid "Personal" msgstr "地點" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:444 +#: lib/action.php:435 #, fuzzy msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "更改密碼" -#: lib/action.php:447 -#, fuzzy -msgctxt "MENU" -msgid "Account" -msgstr "關於" - #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:450 +#: lib/action.php:440 #, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" msgstr "無法連結到伺服器:%s" -#: lib/action.php:453 +#: lib/action.php:443 #, fuzzy -msgctxt "MENU" msgid "Connect" msgstr "連結" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:457 +#: lib/action.php:446 #, fuzzy msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "確認信箱" -#: lib/action.php:460 +#: lib/action.php:449 msgctxt "MENU" msgid "Admin" msgstr "" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:464 +#: lib/action.php:453 #, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "" -#: lib/action.php:467 +#: lib/action.php:456 #, fuzzy msgctxt "MENU" msgid "Invite" msgstr "尺寸錯誤" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:473 +#: lib/action.php:462 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "" -#: lib/action.php:476 +#: lib/action.php:465 #, fuzzy msgctxt "MENU" msgid "Logout" msgstr "登出" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:481 +#: lib/action.php:470 #, fuzzy msgctxt "TOOLTIP" msgid "Create an account" msgstr "新增帳號" -#: lib/action.php:484 +#: lib/action.php:473 #, fuzzy msgctxt "MENU" msgid "Register" msgstr "所有訂閱" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:487 +#: lib/action.php:476 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "" -#: lib/action.php:490 +#: lib/action.php:479 #, fuzzy msgctxt "MENU" msgid "Login" msgstr "登入" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:493 +#: lib/action.php:482 #, fuzzy msgctxt "TOOLTIP" msgid "Help me!" msgstr "求救" -#: lib/action.php:496 +#: lib/action.php:485 #, fuzzy msgctxt "MENU" msgid "Help" msgstr "求救" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:499 +#: lib/action.php:488 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "" -#: lib/action.php:502 +#: lib/action.php:491 msgctxt "MENU" msgid "Search" msgstr "" #. TRANS: DT element for site notice. String is hidden in default CSS. -#: lib/action.php:524 +#. TRANS: Menu item for site administration +#: lib/action.php:513 lib/adminpanelaction.php:398 #, fuzzy msgid "Site notice" msgstr "新訊息" -#: lib/action.php:590 +#: lib/action.php:579 msgid "Local views" msgstr "" -#: lib/action.php:656 +#: lib/action.php:645 #, fuzzy msgid "Page notice" msgstr "新訊息" -#: lib/action.php:758 +#: lib/action.php:747 msgid "Secondary site navigation" msgstr "" -#: lib/action.php:763 +#: lib/action.php:752 msgid "Help" msgstr "求救" -#: lib/action.php:765 +#: lib/action.php:754 msgid "About" msgstr "關於" -#: lib/action.php:767 +#: lib/action.php:756 msgid "FAQ" msgstr "常見問題" -#: lib/action.php:771 +#: lib/action.php:760 msgid "TOS" msgstr "" -#: lib/action.php:774 +#: lib/action.php:763 msgid "Privacy" msgstr "" -#: lib/action.php:776 +#: lib/action.php:765 msgid "Source" msgstr "" -#: lib/action.php:780 +#: lib/action.php:769 msgid "Contact" msgstr "好友名單" -#: lib/action.php:782 +#: lib/action.php:771 msgid "Badge" msgstr "" -#: lib/action.php:810 +#: lib/action.php:799 msgid "StatusNet software license" msgstr "" -#: lib/action.php:813 +#: lib/action.php:802 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4705,12 +4784,12 @@ msgstr "" "**%%site.name%%**是由[%%site.broughtby%%](%%site.broughtbyurl%%)所提供的微型" "部落格服務" -#: lib/action.php:815 +#: lib/action.php:804 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%**是個微型部落格" -#: lib/action.php:817 +#: lib/action.php:806 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4718,55 +4797,55 @@ msgid "" "org/licensing/licenses/agpl-3.0.html)." msgstr "" -#: lib/action.php:832 +#: lib/action.php:821 #, fuzzy msgid "Site content license" msgstr "新訊息" -#: lib/action.php:837 +#: lib/action.php:826 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:842 +#: lib/action.php:831 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:845 +#: lib/action.php:834 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" -#: lib/action.php:858 +#: lib/action.php:847 msgid "All " msgstr "" -#: lib/action.php:864 +#: lib/action.php:853 msgid "license." msgstr "" -#: lib/action.php:1163 +#: lib/action.php:1152 msgid "Pagination" msgstr "" -#: lib/action.php:1172 +#: lib/action.php:1161 msgid "After" msgstr "" -#: lib/action.php:1180 +#: lib/action.php:1169 #, fuzzy msgid "Before" msgstr "之前的內容»" -#: lib/activity.php:449 +#: lib/activity.php:453 msgid "Can't handle remote content yet." msgstr "" -#: lib/activity.php:477 +#: lib/activity.php:481 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activity.php:481 +#: lib/activity.php:485 msgid "Can't handle embedded Base64 content yet." msgstr "" @@ -4781,95 +4860,86 @@ msgid "Changes to that panel are not allowed." msgstr "" #. TRANS: Client error message -#: lib/adminpanelaction.php:211 +#: lib/adminpanelaction.php:229 msgid "showForm() not implemented." msgstr "" #. TRANS: Client error message -#: lib/adminpanelaction.php:241 +#: lib/adminpanelaction.php:259 msgid "saveSettings() not implemented." msgstr "" #. TRANS: Client error message -#: lib/adminpanelaction.php:265 +#: lib/adminpanelaction.php:283 msgid "Unable to delete design setting." msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:330 +#: lib/adminpanelaction.php:348 #, fuzzy msgid "Basic site configuration" msgstr "確認信箱" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:332 +#: lib/adminpanelaction.php:350 #, fuzzy msgctxt "MENU" msgid "Site" msgstr "新訊息" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:338 +#: lib/adminpanelaction.php:356 #, fuzzy msgid "Design configuration" msgstr "確認信箱" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:340 +#: lib/adminpanelaction.php:358 #, fuzzy msgctxt "MENU" msgid "Design" msgstr "地點" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:346 +#: lib/adminpanelaction.php:364 #, fuzzy msgid "User configuration" msgstr "確認信箱" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:348 -msgctxt "MENU" +#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 msgid "User" msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:354 +#: lib/adminpanelaction.php:372 #, fuzzy msgid "Access configuration" msgstr "確認信箱" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:356 -#, fuzzy -msgctxt "MENU" -msgid "Access" -msgstr "接受" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:362 +#: lib/adminpanelaction.php:380 #, fuzzy msgid "Paths configuration" msgstr "確認信箱" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:364 -msgctxt "MENU" -msgid "Paths" -msgstr "" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:370 +#: lib/adminpanelaction.php:388 #, fuzzy msgid "Sessions configuration" msgstr "確認信箱" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:372 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:396 #, fuzzy -msgctxt "MENU" -msgid "Sessions" -msgstr "地點" +msgid "Edit site notice" +msgstr "新訊息" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:404 +#, fuzzy +msgid "Snapshots configuration" +msgstr "確認信箱" #: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." @@ -5361,6 +5431,11 @@ msgstr "" msgid "Go" msgstr "" +#: lib/grantroleform.php:91 +#, php-format +msgid "Grant this user the \"%s\" role" +msgstr "" + #: lib/groupeditform.php:163 msgid "URL of the homepage or blog of the group or topic" msgstr "" @@ -5907,10 +5982,6 @@ msgstr "" msgid "Favorites" msgstr "" -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "" - #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "" @@ -5936,7 +6007,7 @@ msgstr "" msgid "Unknown" msgstr "" -#: lib/profileaction.php:109 lib/profileaction.php:192 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:194 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "" @@ -5944,24 +6015,24 @@ msgstr "" msgid "All subscriptions" msgstr "所有訂閱" -#: lib/profileaction.php:140 lib/profileaction.php:201 lib/subgroupnav.php:90 +#: lib/profileaction.php:142 lib/profileaction.php:203 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "" -#: lib/profileaction.php:157 +#: lib/profileaction.php:159 #, fuzzy msgid "All subscribers" msgstr "所有訂閱" -#: lib/profileaction.php:178 +#: lib/profileaction.php:180 msgid "User ID" msgstr "" -#: lib/profileaction.php:183 +#: lib/profileaction.php:185 msgid "Member since" msgstr "何時加入會員的呢?" -#: lib/profileaction.php:245 +#: lib/profileaction.php:247 msgid "All groups" msgstr "" @@ -6004,7 +6075,12 @@ msgstr "無此通知" msgid "Repeat this notice" msgstr "無此通知" -#: lib/router.php:668 +#: lib/revokeroleform.php:91 +#, fuzzy, php-format +msgid "Revoke the \"%s\" role from this user" +msgstr "無此使用者" + +#: lib/router.php:671 msgid "No single user defined for single-user mode." msgstr "" @@ -6165,47 +6241,62 @@ msgstr "" msgid "Moderate" msgstr "" -#: lib/util.php:1013 -msgid "a few seconds ago" +#: lib/userprofile.php:352 +#, fuzzy +msgid "User role" +msgstr "無此通知" + +#: lib/userprofile.php:354 +msgctxt "role" +msgid "Administrator" +msgstr "" + +#: lib/userprofile.php:355 +msgctxt "role" +msgid "Moderator" msgstr "" #: lib/util.php:1015 -msgid "about a minute ago" +msgid "a few seconds ago" msgstr "" #: lib/util.php:1017 +msgid "about a minute ago" +msgstr "" + +#: lib/util.php:1019 #, php-format msgid "about %d minutes ago" msgstr "" -#: lib/util.php:1019 +#: lib/util.php:1021 msgid "about an hour ago" msgstr "" -#: lib/util.php:1021 +#: lib/util.php:1023 #, php-format msgid "about %d hours ago" msgstr "" -#: lib/util.php:1023 +#: lib/util.php:1025 msgid "about a day ago" msgstr "" -#: lib/util.php:1025 +#: lib/util.php:1027 #, php-format msgid "about %d days ago" msgstr "" -#: lib/util.php:1027 +#: lib/util.php:1029 msgid "about a month ago" msgstr "" -#: lib/util.php:1029 +#: lib/util.php:1031 #, php-format msgid "about %d months ago" msgstr "" -#: lib/util.php:1031 +#: lib/util.php:1033 msgid "about a year ago" msgstr "" From 5dbcc184c9ea70f25d4e10908a0d17a33ac3d1f6 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Thu, 4 Mar 2010 20:04:44 +0100 Subject: [PATCH 324/362] Add Breton to language.php --- lib/language.php | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/language.php b/lib/language.php index f5ee7fac5e..64b59e7396 100644 --- a/lib/language.php +++ b/lib/language.php @@ -289,6 +289,7 @@ function get_all_languages() { 'ar' => array('q' => 0.8, 'lang' => 'ar', 'name' => 'Arabic', 'direction' => 'rtl'), 'arz' => array('q' => 0.8, 'lang' => 'arz', 'name' => 'Egyptian Spoken Arabic', 'direction' => 'rtl'), 'bg' => array('q' => 0.8, 'lang' => 'bg', 'name' => 'Bulgarian', 'direction' => 'ltr'), + 'br' => array('q' => 0.8, 'lang' => 'br', 'name' => 'Breton', 'direction' => 'ltr'), 'ca' => array('q' => 0.5, 'lang' => 'ca', 'name' => 'Catalan', 'direction' => 'ltr'), 'cs' => array('q' => 0.5, 'lang' => 'cs', 'name' => 'Czech', 'direction' => 'ltr'), 'de' => array('q' => 0.8, 'lang' => 'de', 'name' => 'German', 'direction' => 'ltr'), From be4b482f13615fb603736cb1e906efb4a9e06fd0 Mon Sep 17 00:00:00 2001 From: Sarven Capadisli Date: Thu, 4 Mar 2010 14:11:18 -0500 Subject: [PATCH 325/362] Updated note on geo location and added a note on user roles --- README | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/README b/README index e729769f8a..ca241daeff 100644 --- a/README +++ b/README @@ -86,8 +86,9 @@ Notable changes this version: - Support for the new distributed status update standard OStatus , based on PubSubHubbub, Salmon, Webfinger, and Activity Streams. -- Support for location. Notices are (optionally) marked with lat-long - information, and can be shown on a map. +- Support for location using the Geolocation API. Notices are (optionally) + marked with lat-long information with geo microformats, and can be shown + on a map. - No fixed content size. Notice size is configurable, from 1 to unlimited number of characters. Default is still 140! - An authorization framework, allowing different levels of users. @@ -97,6 +98,8 @@ Notable changes this version: - A flag system that lets users flag profiles for moderator review. - Support for OAuth authentication in the Twitter API. +- User roles system that lets the owner of the site to assign + administrator and moderator roles to other users. - A pluggable authentication system. - An authentication plugin for LDAP servers. - Many features that were core in 0.8.x are now plugins, such From 3060bdafc57fcd32b68388d3ffc341634f0b3d55 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Thu, 4 Mar 2010 20:16:30 +0100 Subject: [PATCH 326/362] Localisation updates for !StatusNet from !translatewiki.net !sntrans Added Breton. Signed-off-by: Siebrand Mazeland --- locale/br/LC_MESSAGES/statusnet.po | 6106 ++++++++++++++++++++++++++++ locale/statusnet.po | 2 +- 2 files changed, 6107 insertions(+), 1 deletion(-) create mode 100644 locale/br/LC_MESSAGES/statusnet.po diff --git a/locale/br/LC_MESSAGES/statusnet.po b/locale/br/LC_MESSAGES/statusnet.po new file mode 100644 index 0000000000..53e971a31c --- /dev/null +++ b/locale/br/LC_MESSAGES/statusnet.po @@ -0,0 +1,6106 @@ +# Translation of StatusNet to Breton +# +# Author@translatewiki.net: Fulup +# Author@translatewiki.net: Y-M D +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-03-04 19:12+0000\n" +"PO-Revision-Date: 2010-03-04 19:12:57+0000\n" +"Language-Team: Dutch\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: br\n" +"X-Message-Group: out-statusnet\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Page title +#. TRANS: Menu item for site administration +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 +msgid "Access" +msgstr "Moned" + +#. TRANS: Page notice +#: actions/accessadminpanel.php:67 +msgid "Site access settings" +msgstr "" + +#. TRANS: Form legend for registration form. +#: actions/accessadminpanel.php:161 +msgid "Registration" +msgstr "Enskrivadur" + +#. TRANS: Checkbox instructions for admin setting "Private" +#: actions/accessadminpanel.php:165 +msgid "Prohibit anonymous users (not logged in) from viewing site?" +msgstr "" + +#. TRANS: Checkbox label for prohibiting anonymous users from viewing site. +#: actions/accessadminpanel.php:167 +msgctxt "LABEL" +msgid "Private" +msgstr "Prevez" + +#. TRANS: Checkbox instructions for admin setting "Invite only" +#: actions/accessadminpanel.php:174 +msgid "Make registration invitation only." +msgstr "Aotreañ an enskrivadur goude bezañ bet pedet hepken." + +#. TRANS: Checkbox label for configuring site as invite only. +#: actions/accessadminpanel.php:176 +msgid "Invite only" +msgstr "Tud pedet hepken" + +#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations) +#: actions/accessadminpanel.php:183 +msgid "Disable new registrations." +msgstr "Diweredekaat an enskrivadurioù nevez." + +#. TRANS: Checkbox label for disabling new user registrations. +#: actions/accessadminpanel.php:185 +msgid "Closed" +msgstr "Serr" + +#. TRANS: Title / tooltip for button to save access settings in site admin panel +#: actions/accessadminpanel.php:202 +msgid "Save access settings" +msgstr "Enrollañ an arventennoù moned" + +#: actions/accessadminpanel.php:203 +msgctxt "BUTTON" +msgid "Save" +msgstr "Enrollañ" + +#. TRANS: Server error when page not found (404) +#: actions/all.php:64 actions/public.php:98 actions/replies.php:93 +#: actions/showfavorites.php:138 actions/tag.php:52 +msgid "No such page" +msgstr "N'eus ket eus ar bajenn-se" + +#: actions/all.php:75 actions/allrss.php:68 +#: actions/apiaccountupdatedeliverydevice.php:113 +#: actions/apiaccountupdateprofile.php:105 +#: actions/apiaccountupdateprofilebackgroundimage.php:116 +#: actions/apiaccountupdateprofileimage.php:105 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:148 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:78 +#: actions/apitimelinehome.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/hcard.php:67 actions/microsummary.php:62 actions/newmessage.php:116 +#: actions/otp.php:76 actions/remotesubscribe.php:145 +#: actions/remotesubscribe.php:154 actions/replies.php:73 +#: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/xrds.php:71 lib/command.php:163 lib/command.php:302 +#: lib/command.php:355 lib/command.php:401 lib/command.php:462 +#: lib/command.php:518 lib/galleryaction.php:59 lib/mailbox.php:82 +#: lib/profileaction.php:77 +msgid "No such user." +msgstr "N'eus ket eus an implijer-se." + +#. TRANS: Page title. %1$s is user nickname, %2$d is page number +#: actions/all.php:86 +#, php-format +msgid "%1$s and friends, page %2$d" +msgstr "%1$s hag e vignoned, pajenn %2$d" + +#. TRANS: Page title. %1$s is user nickname +#. TRANS: H1 text. %1$s is user nickname +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:115 +#: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 +#: lib/personalgroupnav.php:100 +#, php-format +msgid "%s and friends" +msgstr "%s hag e vignoned" + +#. TRANS: %1$s is user nickname +#: actions/all.php:103 +#, php-format +msgid "Feed for friends of %s (RSS 1.0)" +msgstr "Gwazh evit mignoned %s (RSS 1.0)" + +#. TRANS: %1$s is user nickname +#: actions/all.php:112 +#, php-format +msgid "Feed for friends of %s (RSS 2.0)" +msgstr "Gwazh evit mignoned %s (RSS 2.0)" + +#. TRANS: %1$s is user nickname +#: actions/all.php:121 +#, php-format +msgid "Feed for friends of %s (Atom)" +msgstr "Gwazh evit mignoned %s (Atom)" + +#. TRANS: %1$s is user nickname +#: actions/all.php:134 +#, php-format +msgid "" +"This is the timeline for %s and friends but no one has posted anything yet." +msgstr "" + +#: actions/all.php:139 +#, php-format +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" + +#. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@" +#: actions/all.php:142 +#, php-format +msgid "" +"You can try to [nudge %1$s](../%2$s) from his profile or [post something to " +"his or her attention](%%%%action.newnotice%%%%?status_textarea=%3$s)." +msgstr "" + +#: actions/all.php:145 actions/replies.php:210 actions/showstream.php:211 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" + +#. TRANS: H1 text +#: actions/all.php:178 +msgid "You and friends" +msgstr "C'hwi hag o mignoned" + +#: actions/allrss.php:119 actions/apitimelinefriends.php:119 +#: actions/apitimelinehome.php:120 +#, php-format +msgid "Updates from %1$s and friends on %2$s!" +msgstr "Hizivadennoù %1$s ha mignoned e %2$s!" + +#: actions/apiaccountratelimitstatus.php:70 +#: actions/apiaccountupdatedeliverydevice.php:93 +#: actions/apiaccountupdateprofile.php:97 +#: actions/apiaccountupdateprofilebackgroundimage.php:94 +#: actions/apiaccountupdateprofilecolors.php:118 +#: actions/apiaccountverifycredentials.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:128 actions/apigroupcreate.php:138 +#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 +#: actions/apigroupleave.php:141 actions/apigrouplist.php:132 +#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 +#: actions/apigroupshow.php:115 actions/apihelptest.php:88 +#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 +#: actions/apitimelinegroup.php:160 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:148 +#: actions/apitimelineretweetedtome.php:121 +#: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 +#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 +msgid "API method not found." +msgstr "N'eo ket bet kavet an hentenn API !" + +#: actions/apiaccountupdatedeliverydevice.php:85 +#: actions/apiaccountupdateprofile.php:89 +#: actions/apiaccountupdateprofilebackgroundimage.php:86 +#: actions/apiaccountupdateprofilecolors.php:110 +#: 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/apistatusesretweet.php:65 +#: actions/apistatusesupdate.php:118 +msgid "This method requires a POST." +msgstr "Ezhomm en deus an argerzh-mañ eus ur POST." + +#: actions/apiaccountupdatedeliverydevice.php:105 +msgid "" +"You must specify a parameter named 'device' with a value of one of: sms, im, " +"none" +msgstr "" + +#: actions/apiaccountupdatedeliverydevice.php:132 +msgid "Could not update user." +msgstr "Diposubl eo hizivaat an implijer." + +#: actions/apiaccountupdateprofile.php:112 +#: actions/apiaccountupdateprofilebackgroundimage.php:194 +#: actions/apiaccountupdateprofilecolors.php:185 +#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 +#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 +#: actions/replies.php:80 actions/usergroups.php:98 lib/galleryaction.php:66 +#: lib/profileaction.php:84 +msgid "User has no profile." +msgstr "An implijer-mañ n'eus profil ebet dezhañ." + +#: actions/apiaccountupdateprofile.php:147 +msgid "Could not save profile." +msgstr "Diposubl eo enrollañ ar profil." + +#: actions/apiaccountupdateprofilebackgroundimage.php:108 +#: actions/apiaccountupdateprofileimage.php:97 +#: actions/apistatusesupdate.php:131 actions/avatarsettings.php:257 +#: actions/designadminpanel.php:122 actions/editapplication.php:118 +#: actions/newapplication.php:101 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/apiaccountupdateprofilebackgroundimage.php:136 +#: actions/apiaccountupdateprofilebackgroundimage.php:146 +#: actions/apiaccountupdateprofilecolors.php:164 +#: actions/apiaccountupdateprofilecolors.php:174 +#: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300 +#: 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/apiaccountupdateprofilebackgroundimage.php:187 +#: actions/apiaccountupdateprofilecolors.php:142 +msgid "Could not update your design." +msgstr "Diposubl eo hizivat ho design." + +#: actions/apiblockcreate.php:105 +msgid "You cannot block yourself!" +msgstr "Ne c'helloc'h ket ho stankañ ho unan !" + +#: actions/apiblockcreate.php:126 +msgid "Block user failed." +msgstr "N'eo ket bet stanke an implijer." + +#: actions/apiblockdestroy.php:114 +msgid "Unblock user failed." +msgstr "N'eus ket bet tu distankañ an implijer." + +#: actions/apidirectmessage.php:89 +#, php-format +msgid "Direct messages from %s" +msgstr "Kemennadennoù war-eeun kaset gant %s" + +#: actions/apidirectmessage.php:93 +#, php-format +msgid "All the direct messages sent from %s" +msgstr "An holl gemennadennoù war-eeun kaset gant %s" + +#: actions/apidirectmessage.php:101 +#, php-format +msgid "Direct messages to %s" +msgstr "Kemennadennoù war-eeun kaset da %s" + +#: actions/apidirectmessage.php:105 +#, php-format +msgid "All the direct messages sent to %s" +msgstr "An holl gemennadennoù war-eeun kaset da %s" + +#: actions/apidirectmessagenew.php:126 +msgid "No message text!" +msgstr "Kemenadenn hep testenn !" + +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#, php-format +msgid "That's too long. Max message size is %d chars." +msgstr "Re hir eo ! Ment hirañ ar gemenadenn a zo a %d arouezenn." + +#: actions/apidirectmessagenew.php:146 +msgid "Recipient user not found." +msgstr "N'eo ket bet kavet ar resever." + +#: actions/apidirectmessagenew.php:150 +msgid "Can't send direct messages to users who aren't your friend." +msgstr "" +"Ne c'helloc'h ket kas kemennadennoù personel d'an implijerien n'int ket ho " +"mignoned." + +#: actions/apifavoritecreate.php:108 actions/apifavoritedestroy.php:109 +#: actions/apistatusesdestroy.php:113 +msgid "No status found with that ID." +msgstr "N'eo bet kavet statud ebet gant an ID-mañ." + +#: actions/apifavoritecreate.php:119 +msgid "This status is already a favorite." +msgstr "Ur pennroll eo dija an ali-mañ." + +#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:176 +msgid "Could not create favorite." +msgstr "Diposupl eo krouiñ ar pennroll-mañ." + +#: actions/apifavoritedestroy.php:122 +msgid "That status is not a favorite." +msgstr "N'eo ket ar statud-mañ ur pennroll." + +#: actions/apifavoritedestroy.php:134 actions/disfavor.php:87 +msgid "Could not delete favorite." +msgstr "Diposupl eo dilemel ar pennroll-mañ." + +#: actions/apifriendshipscreate.php:109 +msgid "Could not follow user: User not found." +msgstr "Diposupl eo heuliañ an implijer : N'eo ket bet kavet an implijer." + +#: actions/apifriendshipscreate.php:118 +#, php-format +msgid "Could not follow user: %s is already on your list." +msgstr "Diposubl eo heuliañ an implijer : war ho listenn emañ %s dija." + +#: actions/apifriendshipsdestroy.php:109 +msgid "Could not unfollow user: User not found." +msgstr "" +"Diposupl eo paouez heuliañ an implijer : N'eo ket bet kavet an implijer." + +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself." +msgstr "Ne c'hallit ket chom hep ho heuliañ hoc'h-unan." + +#: actions/apifriendshipsexists.php:94 +msgid "Two user ids or screen_names must be supplied." +msgstr "" + +#: actions/apifriendshipsshow.php:134 +msgid "Could not determine source user." +msgstr "Diposubl eo termeniñ an implijer mammenn." + +#: actions/apifriendshipsshow.php:142 +msgid "Could not find target user." +msgstr "Diposubl eo kavout an implijer pal." + +#: actions/apigroupcreate.php:166 actions/editgroup.php:186 +#: actions/newgroup.php:126 actions/profilesettings.php:215 +#: actions/register.php:205 +msgid "Nickname must have only lowercase letters and numbers and no spaces." +msgstr "" + +#: actions/apigroupcreate.php:175 actions/editgroup.php:190 +#: actions/newgroup.php:130 actions/profilesettings.php:238 +#: actions/register.php:208 +msgid "Nickname already in use. Try another one." +msgstr "Implijet eo dija al lesanv-se. Klaskit unan all." + +#: actions/apigroupcreate.php:182 actions/editgroup.php:193 +#: actions/newgroup.php:133 actions/profilesettings.php:218 +#: actions/register.php:210 +msgid "Not a valid nickname." +msgstr "N'eo ket ul lesanv mat." + +#: actions/apigroupcreate.php:198 actions/editapplication.php:215 +#: actions/editgroup.php:199 actions/newapplication.php:203 +#: actions/newgroup.php:139 actions/profilesettings.php:222 +#: actions/register.php:217 +msgid "Homepage is not a valid URL." +msgstr "N'eo ket chomlec'h al lec'hienn personel un URL reizh." + +#: actions/apigroupcreate.php:207 actions/editgroup.php:202 +#: actions/newgroup.php:142 actions/profilesettings.php:225 +#: actions/register.php:220 +msgid "Full name is too long (max 255 chars)." +msgstr "Re hir eo an anv klok (255 arouezenn d'ar muiañ)." + +#: actions/apigroupcreate.php:215 actions/editapplication.php:190 +#: actions/newapplication.php:172 +#, php-format +msgid "Description is too long (max %d chars)." +msgstr "Re hir eo an deskrivadur (%d arouezenn d'ar muiañ)." + +#: actions/apigroupcreate.php:226 actions/editgroup.php:208 +#: actions/newgroup.php:148 actions/profilesettings.php:232 +#: actions/register.php:227 +msgid "Location is too long (max 255 chars)." +msgstr "Re hir eo al lec'hiadur (255 arouezenn d'ar muiañ)." + +#: actions/apigroupcreate.php:245 actions/editgroup.php:219 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "Re a aliasoù ! %d d'ar muiañ." + +#: actions/apigroupcreate.php:266 actions/editgroup.php:228 +#: actions/newgroup.php:168 +#, php-format +msgid "Invalid alias: \"%s\"" +msgstr "Alias fall : \"%s\"" + +#: actions/apigroupcreate.php:275 actions/editgroup.php:232 +#: actions/newgroup.php:172 +#, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "Implijet e vez an alias \"%s\" dija. Klaskit gant unan all." + +#: actions/apigroupcreate.php:288 actions/editgroup.php:238 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "Ne c'hell ket an alias bezañ ar memes hini eget al lesanv." + +#: actions/apigroupismember.php:95 actions/apigroupjoin.php:104 +#: actions/apigroupleave.php:104 actions/apigroupmembership.php:91 +#: actions/apigroupshow.php:82 actions/apitimelinegroup.php:91 +msgid "Group not found!" +msgstr "N'eo ket bet kavet ar strollad" + +#: actions/apigroupjoin.php:110 actions/joingroup.php:100 +msgid "You are already a member of that group." +msgstr "Un ezel eus ar strollad-mañ eo dija." + +#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "Stanket oc'h bet eus ar strollad-mañ gant ur merour." + +#: actions/apigroupjoin.php:138 actions/joingroup.php:134 +#, php-format +msgid "Could not join user %1$s to group %2$s." +msgstr "Diposubl eo stagañ an implijer %1$s d'ar strollad %2$s." + +#: actions/apigroupleave.php:114 +msgid "You are not a member of this group." +msgstr "N'oc'h ket ezel eus ar strollad-mañ." + +#: actions/apigroupleave.php:124 actions/leavegroup.php:129 +#, php-format +msgid "Could not remove user %1$s from group %2$s." +msgstr "Diposubl eo dilemel an implijer %1$s deus ar strollad %2$s." + +#: actions/apigrouplist.php:95 +#, php-format +msgid "%s's groups" +msgstr "Strollad %s" + +#: actions/apigrouplistall.php:90 actions/usergroups.php:62 +#, php-format +msgid "%s groups" +msgstr "Strolladoù %s" + +#: actions/apigrouplistall.php:94 +#, php-format +msgid "groups on %s" +msgstr "strolladoù war %s" + +#: actions/apioauthauthorize.php:101 +msgid "No oauth_token parameter provided." +msgstr "Arventenn oauth_token nann-roet." + +#: actions/apioauthauthorize.php:106 +msgid "Invalid token." +msgstr "Fichenn direizh." + +#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 +#: actions/deletenotice.php:157 actions/disfavor.php:74 +#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54 +#: actions/groupblock.php:66 actions/grouplogo.php:312 +#: actions/groupunblock.php:66 actions/imsettings.php:206 +#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 +#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 +#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135 +#: actions/othersettings.php:145 actions/passwordsettings.php:138 +#: actions/profilesettings.php:194 actions/recoverpassword.php:337 +#: actions/register.php:165 actions/remotesubscribe.php:77 +#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 +#: actions/subscribe.php:86 actions/tagother.php:166 +#: 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/apioauthauthorize.php:135 +msgid "Invalid nickname / password!" +msgstr "Lesanv / ger tremen direizh !" + +#: actions/apioauthauthorize.php:159 +msgid "Database error deleting OAuth application user." +msgstr "" + +#: actions/apioauthauthorize.php:185 +msgid "Database error inserting OAuth application user." +msgstr "" + +#: actions/apioauthauthorize.php:214 +#, php-format +msgid "" +"The request token %s has been authorized. Please exchange it for an access " +"token." +msgstr "" + +#: actions/apioauthauthorize.php:227 +#, php-format +msgid "The request token %s has been denied and revoked." +msgstr "" + +#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 +#: actions/designadminpanel.php:103 actions/editapplication.php:139 +#: actions/emailsettings.php:256 actions/grouplogo.php:322 +#: actions/imsettings.php:220 actions/newapplication.php:121 +#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 +#: actions/smssettings.php:248 lib/designsettings.php:304 +msgid "Unexpected form submission." +msgstr "" + +#: actions/apioauthauthorize.php:259 +msgid "An application would like to connect to your account" +msgstr "" + +#: actions/apioauthauthorize.php:276 +msgid "Allow or deny access" +msgstr "Aotreañ pe nac'h ar moned" + +#: actions/apioauthauthorize.php:292 +#, php-format +msgid "" +"The application %1$s by %2$s would like " +"the ability to %3$s your %4$s account data. You should only " +"give access to your %4$s account to third parties you trust." +msgstr "" + +#: actions/apioauthauthorize.php:310 lib/action.php:438 +msgid "Account" +msgstr "Kont" + +#: actions/apioauthauthorize.php:313 actions/login.php:230 +#: actions/profilesettings.php:106 actions/register.php:424 +#: actions/showgroup.php:244 actions/tagother.php:94 +#: actions/userauthorization.php:145 lib/groupeditform.php:152 +#: lib/userprofile.php:131 +msgid "Nickname" +msgstr "Lesanv" + +#: actions/apioauthauthorize.php:316 actions/login.php:233 +#: actions/register.php:429 lib/accountsettingsaction.php:116 +msgid "Password" +msgstr "Ger-tremen" + +#: actions/apioauthauthorize.php:328 +msgid "Deny" +msgstr "Nac'hañ" + +#: actions/apioauthauthorize.php:334 +msgid "Allow" +msgstr "Aotreañ" + +#: actions/apioauthauthorize.php:351 +msgid "Allow or deny access to your account information." +msgstr "Aotreañ pe nac'hañ ar moned da ditouroù ho kont." + +#: actions/apistatusesdestroy.php:107 +msgid "This method requires a POST or DELETE." +msgstr "Ezhomm en deus an argerzh-mañ ur POST pe un DELETE." + +#: actions/apistatusesdestroy.php:130 +msgid "You may not delete another user's status." +msgstr "Ne c'helloc'h ket dilemel statud un implijer all." + +#: actions/apistatusesretweet.php:75 actions/apistatusesretweets.php:72 +#: actions/deletenotice.php:52 actions/shownotice.php:92 +msgid "No such notice." +msgstr "N'eus ket eus an ali-se." + +#: actions/apistatusesretweet.php:83 +msgid "Cannot repeat your own notice." +msgstr "Ne c'helloc'h ket adlavar ho alioù." + +#: actions/apistatusesretweet.php:91 +msgid "Already repeated that notice." +msgstr "Adlavaret o peus dija an ali-mañ." + +#: actions/apistatusesshow.php:138 +msgid "Status deleted." +msgstr "Statud diverket." + +#: actions/apistatusesshow.php:144 +msgid "No status with that ID found." +msgstr "N'eo ket bet kavet a statud evit an ID-mañ" + +#: actions/apistatusesupdate.php:161 actions/newnotice.php:155 +#: lib/mailhandler.php:60 +#, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "Re hir eo ! Ment hirañ an ali a zo a %d arouezenn." + +#: actions/apistatusesupdate.php:202 +msgid "Not found" +msgstr "N'eo ket bet kavet" + +#: actions/apistatusesupdate.php:225 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 +msgid "Unsupported format." +msgstr "Diembreget eo ar furmad-se." + +#: actions/apitimelinefavorites.php:108 +#, php-format +msgid "%1$s / Favorites from %2$s" +msgstr "%1$s / Pennroll %2$s" + +#: actions/apitimelinefavorites.php:117 +#, php-format +msgid "%1$s updates favorited by %2$s / %2$s." +msgstr "%1$s statud pennroll da %2$s / %2$s." + +#: actions/apitimelinementions.php:117 +#, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "%1$s / Hizivadennoù a veneg %2$s" + +#: actions/apitimelinementions.php:127 +#, php-format +msgid "%1$s updates that reply to updates from %2$s / %3$s." +msgstr "" + +#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 +#, php-format +msgid "%s public timeline" +msgstr "Oberezhioù publik %s" + +#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 +#, php-format +msgid "%s updates from everyone!" +msgstr "%s statud an holl !" + +#: actions/apitimelineretweetedtome.php:111 +#, php-format +msgid "Repeated to %s" +msgstr "Adkemeret evit %s" + +#: actions/apitimelineretweetsofme.php:114 +#, php-format +msgid "Repeats of %s" +msgstr "Adkemeret eus %s" + +#: actions/apitimelinetag.php:102 actions/tag.php:67 +#, php-format +msgid "Notices tagged with %s" +msgstr "Alioù merket gant %s" + +#: actions/apitimelinetag.php:104 actions/tagrss.php:64 +#, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "" + +#: actions/apiusershow.php:96 +msgid "Not found." +msgstr "N'eo ket bet kavet." + +#: actions/attachment.php:73 +msgid "No such attachment." +msgstr "N'eo ket bet kavet ar restr stag." + +#: actions/avatarbynickname.php:59 actions/blockedfromgroup.php:73 +#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#: actions/grouplogo.php:86 actions/groupmembers.php:76 +#: actions/grouprss.php:91 actions/showgroup.php:121 +msgid "No nickname." +msgstr "Lesanv ebet." + +#: actions/avatarbynickname.php:64 +msgid "No size." +msgstr "Ment ebet." + +#: actions/avatarbynickname.php:69 +msgid "Invalid size." +msgstr "Ment direizh." + +#: actions/avatarsettings.php:67 actions/showgroup.php:229 +#: lib/accountsettingsaction.php:112 +msgid "Avatar" +msgstr "Avatar" + +#: actions/avatarsettings.php:78 +#, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." +msgstr "" + +#: actions/avatarsettings.php:106 actions/avatarsettings.php:185 +#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 +#: actions/userrss.php:103 +msgid "User without matching profile" +msgstr "Implijer hep profil klotaus" + +#: actions/avatarsettings.php:119 actions/avatarsettings.php:197 +#: actions/grouplogo.php:254 +msgid "Avatar settings" +msgstr "Arventennoù an avatar" + +#: actions/avatarsettings.php:127 actions/avatarsettings.php:205 +#: actions/grouplogo.php:202 actions/grouplogo.php:262 +msgid "Original" +msgstr "Orin" + +#: actions/avatarsettings.php:142 actions/avatarsettings.php:217 +#: actions/grouplogo.php:213 actions/grouplogo.php:274 +msgid "Preview" +msgstr "Rakwelet" + +#: actions/avatarsettings.php:149 actions/showapplication.php:252 +#: lib/deleteuserform.php:66 lib/noticelist.php:655 +msgid "Delete" +msgstr "Diverkañ" + +#: actions/avatarsettings.php:166 actions/grouplogo.php:236 +msgid "Upload" +msgstr "Enporzhiañ" + +#: actions/avatarsettings.php:231 actions/grouplogo.php:289 +msgid "Crop" +msgstr "Adframmañ" + +#: actions/avatarsettings.php:328 +msgid "Pick a square area of the image to be your avatar" +msgstr "" + +#: actions/avatarsettings.php:343 actions/grouplogo.php:380 +msgid "Lost our file data." +msgstr "Kollet eo bet roadennoù." + +#: actions/avatarsettings.php:366 +msgid "Avatar updated." +msgstr "Hizivaet eo bet an avatar." + +#: actions/avatarsettings.php:369 +msgid "Failed updating avatar." +msgstr "Ur gudenn 'zo bet e-pad hizivadenn an avatar." + +#: actions/avatarsettings.php:393 +msgid "Avatar deleted." +msgstr "Dilammet eo bet an Avatar." + +#: actions/block.php:69 +msgid "You already blocked that user." +msgstr "Stanket o peus dija an implijer-mañ." + +#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:160 +msgid "Block user" +msgstr "Stankañ an implijer-mañ" + +#: actions/block.php:130 +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/block.php:143 actions/deleteapplication.php:153 +#: actions/deletenotice.php:145 actions/deleteuser.php:150 +#: actions/groupblock.php:178 +msgid "No" +msgstr "Ket" + +#: actions/block.php:143 actions/deleteuser.php:150 +msgid "Do not block this user" +msgstr "Arabat stankañ an implijer-mañ" + +#: actions/block.php:144 actions/deleteapplication.php:158 +#: actions/deletenotice.php:146 actions/deleteuser.php:151 +#: actions/groupblock.php:179 lib/repeatform.php:132 +msgid "Yes" +msgstr "Ya" + +#: actions/block.php:144 actions/groupmembers.php:355 lib/blockform.php:80 +msgid "Block this user" +msgstr "Stankañ an implijer-mañ" + +#: actions/block.php:167 +msgid "Failed to save block information." +msgstr "Diposubl eo enrollañ an titouroù stankañ." + +#: actions/blockedfromgroup.php:80 actions/blockedfromgroup.php:87 +#: actions/editgroup.php:100 actions/foafgroup.php:44 actions/foafgroup.php:62 +#: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:100 actions/grouplogo.php:102 +#: actions/groupmembers.php:83 actions/groupmembers.php:90 +#: actions/grouprss.php:98 actions/grouprss.php:105 +#: actions/groupunblock.php:86 actions/joingroup.php:82 +#: actions/joingroup.php:93 actions/leavegroup.php:82 +#: actions/leavegroup.php:93 actions/makeadmin.php:86 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:212 +#: lib/command.php:260 +msgid "No such group." +msgstr "N'eus ket eus ar strollad-se." + +#: actions/blockedfromgroup.php:97 +#, php-format +msgid "%s blocked profiles" +msgstr "%s profil stanket" + +#: actions/blockedfromgroup.php:100 +#, php-format +msgid "%1$s blocked profiles, page %2$d" +msgstr "%1$s profil stanket, pajenn %2$d" + +#: actions/blockedfromgroup.php:115 +msgid "A list of the users blocked from joining this group." +msgstr "" +"Ur roll eus an implijerien evit pere eo stanket an enskrivadur d'ar strollad." + +#: actions/blockedfromgroup.php:288 +msgid "Unblock user from group" +msgstr "Distankañ implijer ar strollad" + +#: actions/blockedfromgroup.php:320 lib/unblockform.php:69 +msgid "Unblock" +msgstr "Distankañ" + +#: actions/blockedfromgroup.php:320 lib/unblockform.php:80 +msgid "Unblock this user" +msgstr "Distankañ an implijer-se" + +#: actions/bookmarklet.php:50 +msgid "Post to " +msgstr "Postañ war " + +#: actions/confirmaddress.php:75 +msgid "No confirmation code." +msgstr "Kod kadarnaat ebet." + +#: actions/confirmaddress.php:80 +msgid "Confirmation code not found." +msgstr "N'eo ket bet kavet ar c'hod kadarnaat." + +#: actions/confirmaddress.php:85 +msgid "That confirmation code is not for you!" +msgstr "N'eo ket ar c'hod-se evidoc'h !" + +#: actions/confirmaddress.php:90 +#, php-format +msgid "Unrecognized address type %s" +msgstr "N'eo ket bet anavezet seurt ar chomlec'h %s" + +#: actions/confirmaddress.php:94 +msgid "That address has already been confirmed." +msgstr "Kadarnaet eo bet dija ar chomlec'h-mañ." + +#: actions/confirmaddress.php:114 actions/emailsettings.php:296 +#: actions/emailsettings.php:427 actions/imsettings.php:258 +#: actions/imsettings.php:401 actions/othersettings.php:174 +#: actions/profilesettings.php:283 actions/smssettings.php:278 +#: actions/smssettings.php:420 +msgid "Couldn't update user." +msgstr "Diposubl eo hizivaat an implijer." + +#: actions/confirmaddress.php:126 actions/emailsettings.php:391 +#: actions/imsettings.php:363 actions/smssettings.php:382 +msgid "Couldn't delete email confirmation." +msgstr "Diposubl eo dilemel ar postel kadarnadur." + +#: actions/confirmaddress.php:144 +msgid "Confirm address" +msgstr "Chomlec'h kadarnaet" + +#: actions/confirmaddress.php:159 +#, php-format +msgid "The address \"%s\" has been confirmed for your account." +msgstr "Kadarnaet eo bet ar chomlec'h \"%s\" evit ho kont." + +#: actions/conversation.php:99 +msgid "Conversation" +msgstr "Kaozeadenn" + +#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 +#: lib/profileaction.php:218 lib/searchgroupnav.php:82 +msgid "Notices" +msgstr "Ali" + +#: actions/deleteapplication.php:63 +msgid "You must be logged in to delete an application." +msgstr "Rankout a reoc'h bezañ kevreet evit dilemel ur poellad." + +#: actions/deleteapplication.php:71 +msgid "Application not found." +msgstr "N'eo ket bet kavet ar poellad" + +#: actions/deleteapplication.php:78 actions/editapplication.php:77 +#: actions/showapplication.php:94 +msgid "You are not the owner of this application." +msgstr "N'oc'h ket perc'henn ar poellad-se." + +#: actions/deleteapplication.php:102 actions/editapplication.php:127 +#: actions/newapplication.php:110 actions/showapplication.php:118 +#: lib/action.php:1217 +msgid "There was a problem with your session token." +msgstr "" + +#: actions/deleteapplication.php:123 actions/deleteapplication.php:147 +msgid "Delete application" +msgstr "Dilemel ar poelad" + +#: actions/deleteapplication.php:149 +msgid "" +"Are you sure you want to delete this application? This will clear all data " +"about the application from the database, including all existing user " +"connections." +msgstr "" + +#: actions/deleteapplication.php:156 +msgid "Do not delete this application" +msgstr "Arabat eo dilemel ar poellad-mañ" + +#: actions/deleteapplication.php:160 +msgid "Delete this application" +msgstr "Dilemel ar poelad-se" + +#. TRANS: Client error message +#: 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:96 +#: actions/tagother.php:33 actions/unsubscribe.php:52 +#: lib/adminpanelaction.php:73 lib/profileformaction.php:63 +#: lib/settingsaction.php:72 +msgid "Not logged in." +msgstr "Nann-luget." + +#: actions/deletenotice.php:71 +msgid "Can't delete this notice." +msgstr "Diposupl eo dilemel an ali-mañ." + +#: 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:109 actions/deletenotice.php:141 +msgid "Delete notice" +msgstr "Dilemel un ali" + +#: actions/deletenotice.php:144 +msgid "Are you sure you want to delete this notice?" +msgstr "Ha sur oc'h ho peus c'hoant dilemel an ali-mañ ?" + +#: actions/deletenotice.php:145 +msgid "Do not delete this notice" +msgstr "Arabat dilemel an ali-mañ" + +#: actions/deletenotice.php:146 lib/noticelist.php:655 +msgid "Delete this notice" +msgstr "Dilemel an ali-mañ" + +#: actions/deleteuser.php:67 +msgid "You cannot delete users." +msgstr "Ne c'helloc'h ket diverkañ implijerien" + +#: actions/deleteuser.php:74 +msgid "You can only delete local users." +msgstr "Ne c'helloc'h nemet dilemel an implijerien lec'hel." + +#: actions/deleteuser.php:110 actions/deleteuser.php:133 +msgid "Delete user" +msgstr "Diverkañ an implijer" + +#: actions/deleteuser.php:136 +msgid "" +"Are you sure you want to delete this user? This will clear all data about " +"the user from the database, without a backup." +msgstr "" + +#: actions/deleteuser.php:151 lib/deleteuserform.php:77 +msgid "Delete this user" +msgstr "Diverkañ an implijer-se" + +#: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 +#: lib/groupnav.php:119 +msgid "Design" +msgstr "Design" + +#: actions/designadminpanel.php:73 +msgid "Design settings for this StatusNet site." +msgstr "Arventennoù design evit al lec'hienn StatusNet-mañ." + +#: actions/designadminpanel.php:275 +msgid "Invalid logo URL." +msgstr "URL fall evit al logo." + +#: actions/designadminpanel.php:279 +#, php-format +msgid "Theme not available: %s" +msgstr "N'eus ket tu kaout an dodenn : %s" + +#: actions/designadminpanel.php:375 +msgid "Change logo" +msgstr "Cheñch al logo" + +#: actions/designadminpanel.php:380 +msgid "Site logo" +msgstr "Logo al lec'hienn" + +#: actions/designadminpanel.php:387 +msgid "Change theme" +msgstr "Lakaat un dodenn all" + +#: actions/designadminpanel.php:404 +msgid "Site theme" +msgstr "Dodenn al lec'hienn" + +#: actions/designadminpanel.php:405 +msgid "Theme for the site." +msgstr "Dodenn evit al lec'hienn." + +#: actions/designadminpanel.php:417 lib/designsettings.php:101 +msgid "Change background image" +msgstr "Kemmañ ar skeudenn foñs" + +#: actions/designadminpanel.php:422 actions/designadminpanel.php:497 +#: lib/designsettings.php:178 +msgid "Background" +msgstr "Background" + +#: actions/designadminpanel.php:427 +#, php-format +msgid "" +"You can upload a background image for the site. The maximum file size is %1" +"$s." +msgstr "" + +#: actions/designadminpanel.php:457 lib/designsettings.php:139 +msgid "On" +msgstr "Gweredekaet" + +#: actions/designadminpanel.php:473 lib/designsettings.php:155 +msgid "Off" +msgstr "Diweredekaet" + +#: actions/designadminpanel.php:474 lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "Gweredekaat pe diweredekaat ar skeudenn foñs." + +#: actions/designadminpanel.php:479 lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + +#: actions/designadminpanel.php:488 lib/designsettings.php:170 +msgid "Change colours" +msgstr "Kemmañ al livioù" + +#: actions/designadminpanel.php:510 lib/designsettings.php:191 +msgid "Content" +msgstr "Endalc'h" + +#: actions/designadminpanel.php:523 lib/designsettings.php:204 +msgid "Sidebar" +msgstr "Barenn kostez" + +#: actions/designadminpanel.php:536 lib/designsettings.php:217 +msgid "Text" +msgstr "Testenn" + +#: actions/designadminpanel.php:549 lib/designsettings.php:230 +msgid "Links" +msgstr "Liammoù" + +#: actions/designadminpanel.php:577 lib/designsettings.php:247 +msgid "Use defaults" +msgstr "Implijout an talvoudoù dre ziouer" + +#: actions/designadminpanel.php:578 lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "Adlakaat an neuz dre ziouer." + +#: actions/designadminpanel.php:584 lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "Adlakaat an arventennoù dre ziouer" + +#: actions/designadminpanel.php:586 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 +#: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:208 +#: actions/tagother.php:154 actions/useradminpanel.php:294 +#: lib/applicationeditform.php:333 lib/applicationeditform.php:334 +#: lib/designsettings.php:256 lib/groupeditform.php:202 +msgid "Save" +msgstr "Enrollañ" + +#: actions/designadminpanel.php:587 lib/designsettings.php:257 +msgid "Save design" +msgstr "Enrollañ an design" + +#: actions/disfavor.php:81 +msgid "This notice is not a favorite!" +msgstr "N'eo ket an ali-mañ ur pennroll !" + +#: actions/disfavor.php:94 +msgid "Add to favorites" +msgstr "Ouzhpennañ d'ar pennrolloù" + +#: actions/doc.php:158 +#, php-format +msgid "No such document \"%s\"" +msgstr "N'eo ket bet kavet ar restr \"%s\"" + +#: actions/editapplication.php:54 +msgid "Edit Application" +msgstr "Kemmañ ar poellad" + +#: actions/editapplication.php:66 +msgid "You must be logged in to edit an application." +msgstr "Ret eo bezañ kevreet evit kemmañ ur poellad." + +#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:166 +#: actions/showapplication.php:87 +msgid "No such application." +msgstr "N'eus ket eus an arload-mañ." + +#: actions/editapplication.php:161 +msgid "Use this form to edit your application." +msgstr "Implijit ar furmskrid-mañ evit kemmañ ho poellad." + +#: actions/editapplication.php:177 actions/newapplication.php:159 +msgid "Name is required." +msgstr "Ret eo lakaat un anv." + +#: actions/editapplication.php:180 actions/newapplication.php:165 +msgid "Name is too long (max 255 chars)." +msgstr "Re hir eo an anv (255 arouezenn d'ar muiañ)." + +#: actions/editapplication.php:183 actions/newapplication.php:162 +msgid "Name already in use. Try another one." +msgstr "Implijet eo dija an anv-mañ. Klaskit unan all." + +#: actions/editapplication.php:186 actions/newapplication.php:168 +msgid "Description is required." +msgstr "Ezhomm 'zo un deskrivadur." + +#: actions/editapplication.php:194 +msgid "Source URL is too long." +msgstr "Mammenn URL re hir." + +#: actions/editapplication.php:200 actions/newapplication.php:185 +msgid "Source URL is not valid." +msgstr "N'eo ket mat an URL mammenn." + +#: actions/editapplication.php:203 actions/newapplication.php:188 +msgid "Organization is required." +msgstr "Ezhomm 'zo eus an aozadur." + +#: actions/editapplication.php:206 actions/newapplication.php:191 +msgid "Organization is too long (max 255 chars)." +msgstr "Re hir eo an aozadur (255 arouezenn d'ar muiañ)." + +#: actions/editapplication.php:209 actions/newapplication.php:194 +msgid "Organization homepage is required." +msgstr "Ret eo kaout pajenn degemer an aozadur." + +#: actions/editapplication.php:218 actions/newapplication.php:206 +msgid "Callback is too long." +msgstr "Rez hir eo ar c'hounadur (Callback)." + +#: actions/editapplication.php:225 actions/newapplication.php:215 +msgid "Callback URL is not valid." +msgstr "N'eo ket mat an URL kounadur (Callback)." + +#: actions/editapplication.php:258 +msgid "Could not update application." +msgstr "Diposubl eo hizivaat ar poellad" + +#: actions/editgroup.php:56 +#, php-format +msgid "Edit %s group" +msgstr "Kemmañ ar strollad %s" + +#: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65 +msgid "You must be logged in to create a group." +msgstr "Rankout a reoc'h bezañ luget evit krouiñ ur strollad." + +#: actions/editgroup.php:107 actions/editgroup.php:172 +#: actions/groupdesignsettings.php:107 actions/grouplogo.php:109 +msgid "You must be an admin to edit the group." +msgstr "Rankout a reer bezañ merour evit kemmañ ar strollad." + +#: actions/editgroup.php:158 +msgid "Use this form to edit the group." +msgstr "Leunit ar furmskrid-mañ evit kemmañ dibarzhioù ar strollad." + +#: actions/editgroup.php:205 actions/newgroup.php:145 +#, php-format +msgid "description is too long (max %d chars)." +msgstr "re hir eo an deskrivadur (%d arouezenn d'ar muiañ)." + +#: actions/editgroup.php:258 +msgid "Could not update group." +msgstr "Diposubl eo hizivaat ar strollad." + +#: actions/editgroup.php:264 classes/User_group.php:493 +msgid "Could not create aliases." +msgstr "Diposubl eo krouiñ an aliasoù." + +#: actions/editgroup.php:280 +msgid "Options saved." +msgstr "Enrollet eo bet ho dibarzhioù." + +#: actions/emailsettings.php:60 +msgid "Email settings" +msgstr "Arventennoù ar postel" + +#: actions/emailsettings.php:71 +#, php-format +msgid "Manage how you get email from %%site.name%%." +msgstr "Merañ ar posteloù a fell deoc'h resevout a-berzh %%site.name%%." + +#: actions/emailsettings.php:100 actions/imsettings.php:100 +#: actions/smssettings.php:104 +msgid "Address" +msgstr "Chomlec'h" + +#: actions/emailsettings.php:105 +msgid "Current confirmed email address." +msgstr "Chomlec'h postel gwiriekaet er mare-mañ." + +#: actions/emailsettings.php:107 actions/emailsettings.php:140 +#: actions/imsettings.php:108 actions/smssettings.php:115 +#: actions/smssettings.php:158 +msgid "Remove" +msgstr "Dilemel" + +#: actions/emailsettings.php:113 +msgid "" +"Awaiting confirmation on this address. Check your inbox (and spam box!) for " +"a message with further instructions." +msgstr "" + +#: actions/emailsettings.php:117 actions/imsettings.php:120 +#: actions/smssettings.php:126 lib/applicationeditform.php:331 +#: lib/applicationeditform.php:332 +msgid "Cancel" +msgstr "Nullañ" + +#: actions/emailsettings.php:121 +msgid "Email address" +msgstr "Chomlec'h postel" + +#: actions/emailsettings.php:123 +msgid "Email address, like \"UserName@example.org\"" +msgstr "Chomlec'h postel, evel \"AnvImplijer@example.org\"" + +#: actions/emailsettings.php:126 actions/imsettings.php:133 +#: actions/smssettings.php:145 +msgid "Add" +msgstr "Ouzhpennañ" + +#: actions/emailsettings.php:133 actions/smssettings.php:152 +msgid "Incoming email" +msgstr "Postel o tont" + +#: actions/emailsettings.php:138 actions/smssettings.php:157 +msgid "Send email to this address to post new notices." +msgstr "" + +#: 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:148 actions/smssettings.php:164 +msgid "New" +msgstr "Nevez" + +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 +msgid "Preferences" +msgstr "Penndibaboù" + +#: actions/emailsettings.php:158 +msgid "Send me notices of new subscriptions through email." +msgstr "" + +#: actions/emailsettings.php:163 +msgid "Send me email when someone adds my notice as a favorite." +msgstr "Kas din ur postel pa lak unan bennak unan eus va alioù evel pennroll." + +#: actions/emailsettings.php:169 +msgid "Send me email when someone sends me a private message." +msgstr "Kas din ur postel pa gas unan bennak ur gemennadenn bersonel din." + +#: actions/emailsettings.php:174 +msgid "Send me email when someone sends me an \"@-reply\"." +msgstr "Kas din ur postel pa gas unan bennak ur \"@-respont\" din." + +#: actions/emailsettings.php:179 +msgid "Allow friends to nudge me and send me an email." +msgstr "" + +#: actions/emailsettings.php:185 +msgid "I want to post notices by email." +msgstr "C'hoant am eus kas va alioù dre bostel." + +#: actions/emailsettings.php:191 +msgid "Publish a MicroID for my email address." +msgstr "Embann ur MicroID evit ma chomlec'h postel." + +#: actions/emailsettings.php:302 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 +msgid "Preferences saved." +msgstr "Penndibaboù enrollet" + +#: actions/emailsettings.php:320 +msgid "No email address." +msgstr "N'eus chomlec'h postel ebet." + +#: actions/emailsettings.php:327 +msgid "Cannot normalize that email address" +msgstr "" + +#: actions/emailsettings.php:331 actions/register.php:201 +#: actions/siteadminpanel.php:144 +msgid "Not a valid email address." +msgstr "N'eo ket ur chomlec'h postel reizh." + +#: actions/emailsettings.php:334 +msgid "That is already your email address." +msgstr "Ho postel eo dija." + +#: actions/emailsettings.php:337 +msgid "That email address already belongs to another user." +msgstr "" + +#: actions/emailsettings.php:353 actions/imsettings.php:319 +#: actions/smssettings.php:337 +msgid "Couldn't insert confirmation code." +msgstr "" + +#: actions/emailsettings.php:359 +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:379 actions/imsettings.php:351 +#: actions/smssettings.php:370 +msgid "No pending confirmation to cancel." +msgstr "" + +#: actions/emailsettings.php:383 actions/imsettings.php:355 +msgid "That is the wrong IM address." +msgstr "N'eo ket mat ar chomlec'h postelerezh prim." + +#: actions/emailsettings.php:395 actions/imsettings.php:367 +#: actions/smssettings.php:386 +msgid "Confirmation cancelled." +msgstr "Nullet eo bet ar gadarnadenn." + +#: actions/emailsettings.php:413 +msgid "That is not your email address." +msgstr "N'eo ket ho postel." + +#: actions/emailsettings.php:432 actions/imsettings.php:408 +#: actions/smssettings.php:425 +msgid "The address was removed." +msgstr "Dilamet eo bet ar chomlec'h." + +#: actions/emailsettings.php:446 actions/smssettings.php:518 +msgid "No incoming email address." +msgstr "" + +#: actions/emailsettings.php:456 actions/emailsettings.php:478 +#: actions/smssettings.php:528 actions/smssettings.php:552 +msgid "Couldn't update user record." +msgstr "" + +#: actions/emailsettings.php:459 actions/smssettings.php:531 +msgid "Incoming email address removed." +msgstr "" + +#: actions/emailsettings.php:481 actions/smssettings.php:555 +msgid "New incoming email address added." +msgstr "" + +#: actions/favor.php:79 +msgid "This notice is already a favorite!" +msgstr "Ouzhpennet eo bet an ali-mañ d'ho pennrolloù dija !" + +#: actions/favor.php:92 lib/disfavorform.php:140 +msgid "Disfavor favorite" +msgstr "" + +#: actions/favorited.php:65 lib/popularnoticesection.php:91 +#: lib/publicgroupnav.php:93 +msgid "Popular notices" +msgstr "Alioù poblek" + +#: actions/favorited.php:67 +#, php-format +msgid "Popular notices, page %d" +msgstr "Alioù poblek, pajenn %d" + +#: actions/favorited.php:79 +msgid "The most popular notices on the site right now." +msgstr "An alioù ar brudetañ el lec'hienn er mare-mañ." + +#: 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/favoritesrss.php:111 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 +#, php-format +msgid "%s's favorite notices" +msgstr "Alioù pennrollet eus %s" + +#: actions/favoritesrss.php:115 +#, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "Hizivadennoù brientek gant %1$s war %2$s !" + +#: actions/featured.php:69 lib/featureduserssection.php:87 +#: lib/publicgroupnav.php:89 +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 great users on %s" +msgstr "Un dibab eus implijerien vat e %s" + +#: actions/file.php:34 +msgid "No notice ID." +msgstr "ID ali ebet." + +#: actions/file.php:38 +msgid "No notice." +msgstr "Ali ebet." + +#: actions/file.php:42 +msgid "No attachments." +msgstr "N'eus restr stag ebet." + +#: actions/file.php:51 +msgid "No uploaded attachments." +msgstr "" + +#: actions/finishremotesubscribe.php:69 +msgid "Not expecting this response!" +msgstr "Ne oa ket gortozet ar respont-mañ !" + +#: actions/finishremotesubscribe.php:80 +msgid "User being listened to does not exist." +msgstr "" + +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 +msgid "You can use the local subscription!" +msgstr "" + +#: actions/finishremotesubscribe.php:99 +msgid "That user has blocked you from subscribing." +msgstr "An implijer-se en deus ho stanket evit en enskrivañ." + +#: actions/finishremotesubscribe.php:110 +msgid "You are not authorized." +msgstr "N'oc'h ket aotreet." + +#: actions/finishremotesubscribe.php:113 +msgid "Could not convert request token to access token." +msgstr "" + +#: actions/finishremotesubscribe.php:118 +msgid "Remote service uses unknown version of OMB protocol." +msgstr "" + +#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306 +msgid "Error updating remote profile" +msgstr "" + +#: actions/getfile.php:79 +msgid "No such file." +msgstr "Restr ezvezant." + +#: actions/getfile.php:83 +msgid "Cannot read file." +msgstr "Diposupl eo lenn ar restr." + +#: actions/grantrole.php:62 actions/revokerole.php:62 +#, fuzzy +msgid "Invalid role." +msgstr "Fichenn direizh." + +#: actions/grantrole.php:66 actions/revokerole.php:66 +msgid "This role is reserved and cannot be set." +msgstr "" + +#: actions/grantrole.php:75 +#, fuzzy +msgid "You cannot grant user roles on this site." +msgstr "Ne c'helloc'h ket kas kemennadennoù d'an implijer-mañ." + +#: actions/grantrole.php:82 +#, fuzzy +msgid "User already has this role." +msgstr "An implijer-mañ n'eus profil ebet dezhañ." + +#: actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 actions/subedit.php:46 +#: lib/profileformaction.php:70 +msgid "No profile specified." +msgstr "N'eo bet resisaet profil ebet" + +#: actions/groupblock.php:76 actions/groupunblock.php:76 +#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 +#: actions/unsubscribe.php:84 lib/profileformaction.php:77 +msgid "No profile with that ID." +msgstr "N'eus profil ebet gant an ID-mañ." + +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +msgid "No group specified." +msgstr "N'eo bet resisaet strollad ebet" + +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "N'eus neme ur merour a c'hell stankañ izili ur strollad." + +#: actions/groupblock.php:95 +msgid "User is already blocked from group." +msgstr "An implijer-mañ a zo stanket dija eus ar strollad." + +#: actions/groupblock.php:100 +msgid "User is not a member of group." +msgstr "N'eo ket an implijer-mañ ezel eus ur strollad." + +#: actions/groupblock.php:136 actions/groupmembers.php:323 +msgid "Block user from group" +msgstr "Stankañ an implijer-mañ eus ar strollad" + +#: actions/groupblock.php:162 +#, php-format +msgid "" +"Are you sure you want to block user \"%1$s\" from the group \"%2$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:178 +msgid "Do not block this user from this group" +msgstr "Arabat stankañ an implijer-mañ eus ar strollad." + +#: actions/groupblock.php:179 +msgid "Block this user from this group" +msgstr "Stankañ an implijer-mañ eus ar strollad-se" + +#: actions/groupblock.php:196 +msgid "Database error blocking user from group." +msgstr "" + +#: actions/groupbyid.php:74 actions/userbyid.php:70 +msgid "No ID." +msgstr "ID ebet" + +#: actions/groupdesignsettings.php:68 +msgid "You must be logged in to edit a group." +msgstr "" + +#: actions/groupdesignsettings.php:144 +msgid "Group design" +msgstr "Design ar strollad" + +#: actions/groupdesignsettings.php:155 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/groupdesignsettings.php:266 actions/userdesignsettings.php:186 +#: lib/designsettings.php:391 lib/designsettings.php:413 +msgid "Couldn't update your design." +msgstr "Diposubl eo hizivaat ho design." + +#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231 +msgid "Design preferences saved." +msgstr "Enrollet eo bet an arventennoù design." + +#: actions/grouplogo.php:142 actions/grouplogo.php:195 +msgid "Group logo" +msgstr "Logo ar strollad" + +#: actions/grouplogo.php:153 +#, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "" + +#: actions/grouplogo.php:181 +msgid "User without matching profile." +msgstr "" + +#: actions/grouplogo.php:365 +msgid "Pick a square area of the image to be the logo." +msgstr "" + +#: actions/grouplogo.php:399 +msgid "Logo updated." +msgstr "Logo hizivaet." + +#: actions/grouplogo.php:401 +msgid "Failed updating logo." +msgstr "N'eo ket bet kaset da benn an hizivadenn." + +#: actions/groupmembers.php:100 lib/groupnav.php:92 +#, php-format +msgid "%s group members" +msgstr "Izili ar strollad %s" + +#: actions/groupmembers.php:103 +#, php-format +msgid "%1$s group members, page %2$d" +msgstr "Izili ar strollad %1$s, pajenn %2$d" + +#: actions/groupmembers.php:118 +msgid "A list of the users in this group." +msgstr "Roll an implijerien enrollet er strollad-mañ." + +#: actions/groupmembers.php:182 lib/groupnav.php:107 +msgid "Admin" +msgstr "Merañ" + +#: actions/groupmembers.php:355 lib/blockform.php:69 +msgid "Block" +msgstr "Stankañ" + +#: actions/groupmembers.php:450 +msgid "Make user an admin of the group" +msgstr "Lakaat an implijer da vezañ ur merour eus ar strollad" + +#: actions/groupmembers.php:482 +msgid "Make Admin" +msgstr "Lakaat ur merour" + +#: actions/groupmembers.php:482 +msgid "Make this user an admin" +msgstr "Lakaat an implijer-mañ da verour" + +#: actions/grouprss.php:138 actions/userrss.php:90 +#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#, php-format +msgid "%s timeline" +msgstr "Oberezhioù %s" + +#: actions/grouprss.php:140 +#, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "Hizivadenn izili %1$s e %2$s !" + +#: actions/groups.php:62 lib/profileaction.php:212 lib/profileaction.php:232 +#: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 +msgid "Groups" +msgstr "Strolladoù" + +#: actions/groups.php:64 +#, php-format +msgid "Groups, page %d" +msgstr "Strollad, pajenn %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 +msgid "Create a new group" +msgstr "Krouiñ ur strollad nevez" + +#: 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/groupsearch.php:58 +msgid "Group search" +msgstr "Klask strolladoù" + +#: actions/groupsearch.php:79 actions/noticesearch.php:117 +#: actions/peoplesearch.php:83 +msgid "No results." +msgstr "Disoc'h ebet." + +#: 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 "" +"Ma ne gavoc'h ket ar strollad emaoc'h o klask, neuze e c'helloc'h [krouiñ " +"anezhañ](%%action.newgroup%%)." + +#: 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 "N'eus nemet ur merour a c'hell distankañ izili ur strollad." + +#: actions/groupunblock.php:95 +msgid "User is not blocked from group." +msgstr "N'eo ket stanket an implijer-mañ eus ar strollad." + +#: actions/groupunblock.php:128 actions/unblock.php:86 +msgid "Error removing the block." +msgstr "Ur fazi a zo bet e-pad nulladenn ar stankadenn." + +#: actions/imsettings.php:59 +msgid "IM settings" +msgstr "Arventennoù ar bostelerezh prim" + +#: 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/imsettings.php:89 +msgid "IM is not available." +msgstr "Dizimplijadus eo ar bostelerezh prim" + +#: actions/imsettings.php:106 +msgid "Current confirmed Jabber/GTalk address." +msgstr "Chomlec'h Jabber/GTalk kadarnaet er mare-mañ." + +#: 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/imsettings.php:124 +msgid "IM address" +msgstr "Chomlec'h postelerezh prim" + +#: 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/imsettings.php:143 +msgid "Send me notices through Jabber/GTalk." +msgstr "Kas din an alioù dre Jabber/GTalk." + +#: actions/imsettings.php:148 +msgid "Post a notice when my Jabber/GTalk status changes." +msgstr "" + +#: actions/imsettings.php:153 +msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." +msgstr "" + +#: actions/imsettings.php:159 +msgid "Publish a MicroID for my Jabber/GTalk address." +msgstr "Embann ur MicroID evit ma chomlec'h Jabber/GTalk." + +#: actions/imsettings.php:285 +msgid "No Jabber ID." +msgstr "ID Jabber ebet." + +#: actions/imsettings.php:292 +msgid "Cannot normalize that Jabber ID" +msgstr "Diposubl eo implijout an ID Jabber-mañ" + +#: actions/imsettings.php:296 +msgid "Not a valid Jabber ID" +msgstr "N'eo ket un ID Jabber reizh." + +#: actions/imsettings.php:299 +msgid "That is already your Jabber ID." +msgstr "Ho ID Jabber eo dija" + +#: actions/imsettings.php:302 +msgid "Jabber ID already belongs to another user." +msgstr "Implijet eo an Jabber ID-mañ gant un implijer all." + +#: 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/imsettings.php:387 +msgid "That is not your Jabber ID." +msgstr "N'eo ket ho ID Jabber." + +#: actions/inbox.php:59 +#, php-format +msgid "Inbox for %1$s - page %2$d" +msgstr "Boest degemer %1$s - pajenn %2$d" + +#: actions/inbox.php:62 +#, php-format +msgid "Inbox for %s" +msgstr "Bost resevout %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 "Diweredekaat eo bet ar bedadennoù." + +#: actions/invite.php:41 +#, php-format +msgid "You must be logged in to invite other users to use %s" +msgstr "" + +#: actions/invite.php:72 +#, php-format +msgid "Invalid email address: %s" +msgstr "Fall eo ar postel : %s" + +#: actions/invite.php:110 +msgid "Invitation(s) sent" +msgstr "Kaset eo bet ar bedadenn(où)" + +#: actions/invite.php:112 +msgid "Invite new users" +msgstr "Pediñ implijerien nevez" + +#: actions/invite.php:128 +msgid "You are already subscribed to these users:" +msgstr "Koumanantet oc'h dija d'an implijerien-mañ :" + +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:306 +#, php-format +msgid "%1$s (%2$s)" +msgstr "%1$s (%2$s)" + +#: actions/invite.php:136 +msgid "" +"These people are already users and you were automatically subscribed to them:" +msgstr "" +"Implijerien eo dija an dud-mañ ha koumanantet oc'h bet ez emgefre d'an " +"implijerien da-heul :" + +#: actions/invite.php:144 +msgid "Invitation(s) sent to the following people:" +msgstr "Pedadennoù bet kaset d'an implijerien da-heul :" + +#: 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/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 "Chomlec'hioù postel" + +#: actions/invite.php:189 +msgid "Addresses of friends to invite (one per line)" +msgstr "Chomlec'hioù an implijerien da bediñ (unan dre linenn)" + +#: actions/invite.php:192 +msgid "Personal message" +msgstr "Kemenadenn bersonel" + +#: actions/invite.php:194 +msgid "Optionally add a personal message to the invitation." +msgstr "" + +#. TRANS: Send button for inviting friends +#: actions/invite.php:198 +msgctxt "BUTTON" +msgid "Send" +msgstr "Kas" + +#: actions/invite.php:227 +#, php-format +msgid "%1$s has invited you to join them on %2$s" +msgstr "%1$s a bed ac'hanoc'h d'en em enskrivañ war %2$s" + +#: actions/invite.php:229 +#, 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/joingroup.php:60 +msgid "You must be logged in to join a group." +msgstr "Rankout a reoc'h bezañ luget evit mont en ur strollad." + +#: actions/joingroup.php:88 actions/leavegroup.php:88 +msgid "No nickname or ID." +msgstr "Lesanv pe ID ebet." + +#: actions/joingroup.php:141 +#, php-format +msgid "%1$s joined group %2$s" +msgstr "%1$s a zo bet er strollad %2$s" + +#: actions/leavegroup.php:60 +msgid "You must be logged in to leave a group." +msgstr "Ret eo deoc'h bezañ kevreet evit kuitaat ur strollad" + +#: actions/leavegroup.php:100 lib/command.php:265 +msgid "You are not a member of that group." +msgstr "N'oc'h ket un ezel eus ar strollad-mañ." + +#: actions/leavegroup.php:137 +#, php-format +msgid "%1$s left group %2$s" +msgstr "%1$s en deus kuitaet ar strollad %2$s" + +#: actions/login.php:80 actions/otp.php:62 actions/register.php:137 +msgid "Already logged in." +msgstr "Kevreet oc'h dija." + +#: actions/login.php:126 +msgid "Incorrect username or password." +msgstr "Anv implijer pe ger-tremen direizh." + +#: actions/login.php:132 actions/otp.php:120 +msgid "Error setting user. You are probably not authorized." +msgstr "" +"Ur fazi 'zo bet e-pad hizivadenn an implijer. Moarvat n'oc'h ket aotreet " +"evit en ober." + +#: actions/login.php:188 actions/login.php:241 lib/logingroupnav.php:79 +msgid "Login" +msgstr "Kevreañ" + +#: actions/login.php:227 +msgid "Login to site" +msgstr "Kevreañ d'al lec'hienn" + +#: actions/login.php:236 actions/register.php:478 +msgid "Remember me" +msgstr "Kaout soñj" + +#: actions/login.php:237 actions/register.php:480 +msgid "Automatically login in the future; not for shared computers!" +msgstr "" +"Digeriñ va dalc'h war-eeun ar wechoù o tont ; arabat en ober war " +"urzhiataeroù rannet pe publik !" + +#: actions/login.php:247 +msgid "Lost or forgotten password?" +msgstr "Ha kollet o peus ho ker-tremen ?" + +#: actions/login.php:266 +msgid "" +"For security reasons, please re-enter your user name and password before " +"changing your settings." +msgstr "" +"Evit abegoù a surentezh, mar plij adlakait hoc'h anv implijer hag ho ker-" +"tremen a-benn enrollañ ho penndibaboù." + +#: actions/login.php:270 +#, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" +"Kevreit gant ho anv implijer hag ho ker tremen. N'o peus ket a anv implijer " +"evit c'hoazh ? [Krouit](%%action.register%%) ur gont nevez." + +#: actions/makeadmin.php:92 +msgid "Only an admin can make another user an admin." +msgstr "N'eus nemet ur merour a c'hall lakaat un implijer all da vezañ merour." + +#: actions/makeadmin.php:96 +#, php-format +msgid "%1$s is already an admin for group \"%2$s\"." +msgstr "%1$s a zo dija merour ar strollad \"%2$s\"." + +#: actions/makeadmin.php:133 +#, php-format +msgid "Can't get membership record for %1$s in group %2$s." +msgstr "" + +#: actions/makeadmin.php:146 +#, php-format +msgid "Can't make %1$s an admin for group %2$s." +msgstr "Diposubl eo lakaat %1$s da merour ar strollad %2$s." + +#: actions/microsummary.php:69 +msgid "No current status" +msgstr "Statud ebet er mare-mañ" + +#: actions/newapplication.php:52 +msgid "New Application" +msgstr "Poellad nevez" + +#: actions/newapplication.php:64 +msgid "You must be logged in to register an application." +msgstr "Ret eo deoc'h bezañ luget evit enrollañ ur poellad." + +#: actions/newapplication.php:143 +msgid "Use this form to register a new application." +msgstr "Implijit ar furmskrid-mañ evit enskrivañ ur poellad nevez." + +#: actions/newapplication.php:176 +msgid "Source URL is required." +msgstr "Ezhomm 'zo eus ar vammenn URL." + +#: actions/newapplication.php:258 actions/newapplication.php:267 +msgid "Could not create application." +msgstr "N'eo ket posubl krouiñ ar poellad." + +#: actions/newgroup.php:53 +msgid "New group" +msgstr "Strollad nevez" + +#: actions/newgroup.php:110 +msgid "Use this form to create a new group." +msgstr "Implijit ar furmskrid-mañ a-benn krouiñ ur strollad nevez." + +#: actions/newmessage.php:71 actions/newmessage.php:231 +msgid "New message" +msgstr "Kemennadenn nevez" + +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:358 +msgid "You can't send a message to this user." +msgstr "Ne c'helloc'h ket kas kemennadennoù d'an implijer-mañ." + +#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:342 +#: lib/command.php:475 +msgid "No content!" +msgstr "Goullo eo !" + +#: actions/newmessage.php:158 +msgid "No recipient specified." +msgstr "N'o peus ket lakaet a resever." + +#: actions/newmessage.php:164 lib/command.php:361 +msgid "" +"Don't send a message to yourself; just say it to yourself quietly instead." +msgstr "" +"Na gasit ket a gemennadenn deoc'h c'hwi ho unan ; lavarit an traoù-se en ho " +"penn kentoc'h." + +#: actions/newmessage.php:181 +msgid "Message sent" +msgstr "Kaset eo bet ar gemenadenn" + +#: actions/newmessage.php:185 +#, php-format +msgid "Direct message to %s sent." +msgstr "Kaset eo bet da %s ar gemennadenn war-eeun." + +#: actions/newmessage.php:210 actions/newnotice.php:245 lib/channel.php:170 +msgid "Ajax Error" +msgstr "Fazi Ajax" + +#: actions/newnotice.php:69 +msgid "New notice" +msgstr "Ali nevez" + +#: actions/newnotice.php:211 +msgid "Notice posted" +msgstr "Ali embannet" + +#: 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/noticesearch.php:78 +msgid "Text search" +msgstr "Klask un destenn" + +#: actions/noticesearch.php:91 +#, php-format +msgid "Search results for \"%1$s\" on %2$s" +msgstr "Disoc'hoù ar c'hlask evit \"%1$s\" e %2$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:96 +#, php-format +msgid "Updates with \"%s\"" +msgstr "Hizivadenn gant \"%s\"" + +#: actions/noticesearchrss.php:98 +#, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "" + +#: actions/nudge.php:85 +msgid "" +"This user doesn't allow nudges or hasn't confirmed or set his email yet." +msgstr "" + +#: actions/nudge.php:94 +msgid "Nudge sent" +msgstr "Kaset eo bet ar blinkadenn" + +#: actions/nudge.php:97 +msgid "Nudge sent!" +msgstr "Kaset eo bet ar blinkadenn !" + +#: actions/oauthappssettings.php:59 +msgid "You must be logged in to list your applications." +msgstr "Rankout a reoc'h bezañ kevreet evit rollañ ho poelladoù." + +#: actions/oauthappssettings.php:74 +msgid "OAuth applications" +msgstr "Poelladoù OAuth" + +#: actions/oauthappssettings.php:85 +msgid "Applications you have registered" +msgstr "Ar poelladoù o peus enrollet" + +#: actions/oauthappssettings.php:135 +#, php-format +msgid "You have not registered any applications yet." +msgstr "N'o peus enrollet poellad ebet evit poent." + +#: actions/oauthconnectionssettings.php:72 +msgid "Connected applications" +msgstr "Poeladoù kevreet." + +#: actions/oauthconnectionssettings.php:83 +msgid "You have allowed the following applications to access you account." +msgstr "" + +#: actions/oauthconnectionssettings.php:175 +msgid "You are not a user of that application." +msgstr "N'oc'h ket un implijer eus ar poellad-mañ." + +#: actions/oauthconnectionssettings.php:186 +msgid "Unable to revoke access for app: " +msgstr "Dibosupl eo nullañ moned ar poellad : " + +#: actions/oauthconnectionssettings.php:198 +#, php-format +msgid "You have not authorized any applications to use your account." +msgstr "" + +#: actions/oauthconnectionssettings.php:211 +msgid "Developers can edit the registration settings for their applications " +msgstr "" + +#: actions/oembed.php:79 actions/shownotice.php:100 +msgid "Notice has no profile" +msgstr "N'en deus ket an ali a profil" + +#: actions/oembed.php:86 actions/shownotice.php:180 +#, php-format +msgid "%1$s's status on %2$s" +msgstr "Statud %1$s war %2$s" + +#: actions/oembed.php:157 +msgid "content type " +msgstr "seurt an danvez " + +#: actions/oembed.php:160 +msgid "Only " +msgstr "Hepken " + +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1042 +#: lib/apiaction.php:1070 lib/apiaction.php:1179 +msgid "Not a supported data format." +msgstr "" + +#: actions/opensearch.php:64 +msgid "People Search" +msgstr "Klask tud" + +#: actions/opensearch.php:67 +msgid "Notice Search" +msgstr "Klask alioù" + +#: actions/othersettings.php:60 +msgid "Other settings" +msgstr "Arventennoù all" + +#: actions/othersettings.php:71 +msgid "Manage various other options." +msgstr "Dibarzhioù all da gefluniañ." + +#: actions/othersettings.php:108 +msgid " (free service)" +msgstr " (servij digoust)" + +#: actions/othersettings.php:116 +msgid "Shorten URLs with" +msgstr "" + +#: actions/othersettings.php:117 +msgid "Automatic shortening service to use." +msgstr "" + +#: 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 "" + +#: actions/otp.php:69 +msgid "No user ID specified." +msgstr "N'eus bet diferet ID implijer ebet." + +#: actions/otp.php:83 +msgid "No login token specified." +msgstr "" + +#: actions/otp.php:90 +msgid "No login token requested." +msgstr "" + +#: actions/otp.php:95 +msgid "Invalid login token specified." +msgstr "" + +#: actions/otp.php:104 +msgid "Login token expired." +msgstr "" + +#: actions/outbox.php:58 +#, php-format +msgid "Outbox for %1$s - page %2$d" +msgstr "Boest kas %1$s - pajenn %2$d" + +#: actions/outbox.php:61 +#, php-format +msgid "Outbox for %s" +msgstr "Boest kas %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 "Cheñch ger-tremen" + +#: actions/passwordsettings.php:69 +msgid "Change your password." +msgstr "Kemmañ ho ger tremen." + +#: actions/passwordsettings.php:96 actions/recoverpassword.php:231 +msgid "Password change" +msgstr "Kemmañ ar ger-tremen" + +#: actions/passwordsettings.php:104 +msgid "Old password" +msgstr "Ger-tremen kozh" + +#: actions/passwordsettings.php:108 actions/recoverpassword.php:235 +msgid "New password" +msgstr "Ger-tremen nevez" + +#: actions/passwordsettings.php:109 +msgid "6 or more characters" +msgstr "6 arouezenn pe muioc'h" + +#: actions/passwordsettings.php:112 actions/recoverpassword.php:239 +#: actions/register.php:433 actions/smssettings.php:134 +msgid "Confirm" +msgstr "Kadarnaat" + +#: actions/passwordsettings.php:113 actions/recoverpassword.php:240 +msgid "Same as password above" +msgstr "Memestra eget ar ger tremen a-us" + +#: actions/passwordsettings.php:117 +msgid "Change" +msgstr "Kemmañ" + +#: actions/passwordsettings.php:154 actions/register.php:230 +msgid "Password must be 6 or more characters." +msgstr "" + +#: actions/passwordsettings.php:157 actions/register.php:233 +msgid "Passwords don't match." +msgstr "Ne glot ket ar gerioù-tremen." + +#: actions/passwordsettings.php:165 +msgid "Incorrect old password" +msgstr "ger-termen kozh amreizh" + +#: actions/passwordsettings.php:181 +msgid "Error saving user; invalid." +msgstr "Ur fazi 'zo bet e-pad enolladenn an implijer ; diwiriek." + +#: actions/passwordsettings.php:186 actions/recoverpassword.php:368 +msgid "Can't save new password." +msgstr "Dibosupl eo enrollañ ar ger-tremen nevez." + +#: actions/passwordsettings.php:192 actions/recoverpassword.php:211 +msgid "Password saved." +msgstr "Ger-tremen enrollet." + +#. TRANS: Menu item for site administration +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 +msgid "Paths" +msgstr "Hentoù" + +#: actions/pathsadminpanel.php:70 +msgid "Path and server settings for this StatusNet site." +msgstr "" + +#: actions/pathsadminpanel.php:157 +#, php-format +msgid "Theme directory not readable: %s" +msgstr "" + +#: actions/pathsadminpanel.php:163 +#, php-format +msgid "Avatar directory not writable: %s" +msgstr "" + +#: actions/pathsadminpanel.php:169 +#, php-format +msgid "Background directory not writable: %s" +msgstr "" + +#: actions/pathsadminpanel.php:177 +#, php-format +msgid "Locales directory not readable: %s" +msgstr "" + +#: actions/pathsadminpanel.php:183 +msgid "Invalid SSL server. The maximum length is 255 characters." +msgstr "" + +#: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58 +msgid "Site" +msgstr "Lec'hien" + +#: actions/pathsadminpanel.php:238 +msgid "Server" +msgstr "Servijer" + +#: actions/pathsadminpanel.php:238 +msgid "Site's server hostname." +msgstr "" + +#: actions/pathsadminpanel.php:242 +msgid "Path" +msgstr "Hent" + +#: actions/pathsadminpanel.php:242 +msgid "Site path" +msgstr "Hent al lec'hien" + +#: actions/pathsadminpanel.php:246 +msgid "Path to locales" +msgstr "" + +#: actions/pathsadminpanel.php:246 +msgid "Directory path to locales" +msgstr "" + +#: actions/pathsadminpanel.php:250 +msgid "Fancy URLs" +msgstr "URLioù brav" + +#: actions/pathsadminpanel.php:252 +msgid "Use fancy (more readable and memorable) URLs?" +msgstr "" + +#: actions/pathsadminpanel.php:259 +msgid "Theme" +msgstr "Danvez" + +#: actions/pathsadminpanel.php:264 +msgid "Theme server" +msgstr "Servijer danvezioù" + +#: actions/pathsadminpanel.php:268 +msgid "Theme path" +msgstr "Hentad an tem" + +#: actions/pathsadminpanel.php:272 +msgid "Theme directory" +msgstr "" + +#: actions/pathsadminpanel.php:279 +msgid "Avatars" +msgstr "Avataroù" + +#: actions/pathsadminpanel.php:284 +msgid "Avatar server" +msgstr "Servijer avatar" + +#: actions/pathsadminpanel.php:288 +msgid "Avatar path" +msgstr "" + +#: actions/pathsadminpanel.php:292 +msgid "Avatar directory" +msgstr "" + +#: actions/pathsadminpanel.php:301 +msgid "Backgrounds" +msgstr "Backgroundoù" + +#: actions/pathsadminpanel.php:305 +msgid "Background server" +msgstr "Servijer ar backgroundoù" + +#: actions/pathsadminpanel.php:309 +msgid "Background path" +msgstr "" + +#: actions/pathsadminpanel.php:313 +msgid "Background directory" +msgstr "" + +#: actions/pathsadminpanel.php:320 +msgid "SSL" +msgstr "SSL" + +#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202 +msgid "Never" +msgstr "Morse" + +#: actions/pathsadminpanel.php:324 +msgid "Sometimes" +msgstr "A-wechoù" + +#: actions/pathsadminpanel.php:325 +msgid "Always" +msgstr "Atav" + +#: actions/pathsadminpanel.php:329 +msgid "Use SSL" +msgstr "Implij SSl" + +#: actions/pathsadminpanel.php:330 +msgid "When to use SSL" +msgstr "" + +#: actions/pathsadminpanel.php:335 +msgid "SSL server" +msgstr "Servijer SSL" + +#: actions/pathsadminpanel.php:336 +msgid "Server to direct SSL requests to" +msgstr "" + +#: actions/pathsadminpanel.php:352 +msgid "Save paths" +msgstr "Enrollañ an hentadoù." + +#: 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 "Klask tud" + +#: actions/peopletag.php:70 +#, php-format +msgid "Not a valid people tag: %s" +msgstr "N'eo ket reizh ar merk-se : %s" + +#: actions/peopletag.php:144 +#, php-format +msgid "Users self-tagged with %1$s - page %2$d" +msgstr "" + +#: actions/postnotice.php:95 +msgid "Invalid notice content" +msgstr "" + +#: actions/postnotice.php:101 +#, php-format +msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’." +msgstr "" + +#: actions/profilesettings.php:60 +msgid "Profile settings" +msgstr "Arventennoù ar profil" + +#: actions/profilesettings.php:71 +msgid "" +"You can update your personal profile info here so people know more about you." +msgstr "" + +#: 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 "" + +#: actions/profilesettings.php:111 actions/register.php:448 +#: actions/showgroup.php:255 actions/tagother.php:104 +#: lib/groupeditform.php:157 lib/userprofile.php:149 +msgid "Full name" +msgstr "Anv klok" + +#: actions/profilesettings.php:115 actions/register.php:453 +#: lib/applicationeditform.php:228 lib/groupeditform.php:161 +msgid "Homepage" +msgstr "Pajenn degemer" + +#: actions/profilesettings.php:117 actions/register.php:455 +msgid "URL of your homepage, blog, or profile on another site" +msgstr "" + +#: actions/profilesettings.php:122 actions/register.php:461 +#, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "" + +#: actions/profilesettings.php:125 actions/register.php:464 +msgid "Describe yourself and your interests" +msgstr "" + +#: actions/profilesettings.php:127 actions/register.php:466 +msgid "Bio" +msgstr "Buhezskrid" + +#: actions/profilesettings.php:132 actions/register.php:471 +#: actions/showgroup.php:264 actions/tagother.php:112 +#: actions/userauthorization.php:166 lib/groupeditform.php:177 +#: lib/userprofile.php:164 +msgid "Location" +msgstr "Lec'hiadur" + +#: actions/profilesettings.php:134 actions/register.php:473 +msgid "Where you are, like \"City, State (or Region), Country\"" +msgstr "" + +#: actions/profilesettings.php:138 +msgid "Share my current location when posting notices" +msgstr "" + +#: actions/profilesettings.php:145 actions/tagother.php:149 +#: actions/tagother.php:209 lib/subscriptionlist.php:106 +#: lib/subscriptionlist.php:108 lib/userprofile.php:209 +msgid "Tags" +msgstr "Balizennoù" + +#: actions/profilesettings.php:147 +msgid "" +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +msgstr "" + +#: actions/profilesettings.php:151 +msgid "Language" +msgstr "Yezh" + +#: actions/profilesettings.php:152 +msgid "Preferred language" +msgstr "Yezh d'ober ganti da gentañ" + +#: actions/profilesettings.php:161 +msgid "Timezone" +msgstr "Takad eur" + +#: actions/profilesettings.php:162 +msgid "What timezone are you normally in?" +msgstr "" + +#: actions/profilesettings.php:167 +msgid "" +"Automatically subscribe to whoever subscribes to me (best for non-humans)" +msgstr "" + +#: actions/profilesettings.php:228 actions/register.php:223 +#, php-format +msgid "Bio is too long (max %d chars)." +msgstr "" + +#: actions/profilesettings.php:235 actions/siteadminpanel.php:151 +msgid "Timezone not selected." +msgstr "N'eo bet dibabet gwerzhid-eur ebet." + +#: actions/profilesettings.php:241 +msgid "Language is too long (max 50 chars)." +msgstr "" + +#: actions/profilesettings.php:253 actions/tagother.php:178 +#, php-format +msgid "Invalid tag: \"%s\"" +msgstr "Balizenn direizh : \"%s\"" + +#: actions/profilesettings.php:306 +msgid "Couldn't update user for autosubscribe." +msgstr "" + +#: actions/profilesettings.php:363 +msgid "Couldn't save location prefs." +msgstr "" + +#: actions/profilesettings.php:375 +msgid "Couldn't save profile." +msgstr "Diposubl eo enrollañ ar profil." + +#: actions/profilesettings.php:383 +msgid "Couldn't save tags." +msgstr "Diposubl eo enrollañ ar balizennoù." + +#. TRANS: Message after successful saving of administrative settings. +#: actions/profilesettings.php:391 lib/adminpanelaction.php:141 +msgid "Settings saved." +msgstr "Enrollet eo bet an arventennoù." + +#: actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" +msgstr "" + +#: actions/public.php:92 +msgid "Could not retrieve public stream." +msgstr "" + +#: actions/public.php:130 +#, php-format +msgid "Public timeline, page %d" +msgstr "" + +#: actions/public.php:132 lib/publicgroupnav.php:79 +msgid "Public timeline" +msgstr "" + +#: actions/public.php:160 +msgid "Public Stream Feed (RSS 1.0)" +msgstr "" + +#: actions/public.php:164 +msgid "Public Stream Feed (RSS 2.0)" +msgstr "" + +#: actions/public.php:168 +msgid "Public Stream Feed (Atom)" +msgstr "" + +#: actions/public.php:188 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" + +#: actions/public.php:191 +msgid "Be the first to post!" +msgstr "Bezit an hini gentañ da bostañ !" + +#: actions/public.php:195 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" + +#: actions/public.php:242 +#, 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/public.php:247 +#, 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:57 +msgid "Public tag cloud" +msgstr "" + +#: actions/publictagcloud.php:63 +#, php-format +msgid "These are most popular recent tags on %s " +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/publictagcloud.php:134 +msgid "Tag cloud" +msgstr "" + +#: actions/recoverpassword.php:36 +msgid "You are already logged in!" +msgstr "Luget oc'h dija !" + +#: actions/recoverpassword.php:62 +msgid "No such recovery code." +msgstr "Kod adtapout nann-kavet." + +#: actions/recoverpassword.php:66 +msgid "Not a recovery code." +msgstr "N'eo ket ur c'hod adtapout an dra-mañ." + +#: actions/recoverpassword.php:73 +msgid "Recovery code for unknown user." +msgstr "" + +#: 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 "" + +#: 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/recoverpassword.php:158 +msgid "You have been identified. Enter a new password below. " +msgstr "" + +#: actions/recoverpassword.php:188 +msgid "Password recovery" +msgstr "Adtapout ar ger-tremen" + +#: 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 "Adtapout" + +#: actions/recoverpassword.php:208 +msgid "Reset password" +msgstr "Adderaouekaat ar ger-tremen" + +#: actions/recoverpassword.php:209 +msgid "Recover password" +msgstr "Adtapout ar ger-tremen" + +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 +msgid "Password recovery requested" +msgstr "Goulennet eo an adtapout gerioù-tremen" + +#: actions/recoverpassword.php:213 +msgid "Unknown action" +msgstr "Ober dianav" + +#: actions/recoverpassword.php:236 +msgid "6 or more characters, and don't forget it!" +msgstr "6 arouezenn pe muioc'h, ha n'e zisoñjit ket !" + +#: actions/recoverpassword.php:243 +msgid "Reset" +msgstr "Adderaouekaat" + +#: actions/recoverpassword.php:252 +msgid "Enter a nickname or email address." +msgstr "Lakait ul lesanv pe ur chomlec'h postel." + +#: actions/recoverpassword.php:272 +msgid "No user with that email address or username." +msgstr "" + +#: actions/recoverpassword.php:287 +msgid "No registered email address for that user." +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/recoverpassword.php:344 +msgid "Unexpected password reset." +msgstr "" + +#: actions/recoverpassword.php:352 +msgid "Password must be 6 chars or more." +msgstr "" + +#: actions/recoverpassword.php:356 +msgid "Password and confirmation do not match." +msgstr "" + +#: actions/recoverpassword.php:375 actions/register.php:248 +msgid "Error setting user." +msgstr "" + +#: 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:405 +msgid "Sorry, only invited people can register." +msgstr "" + +#: actions/register.php:92 +msgid "Sorry, invalid invitation code." +msgstr "Digarezit, kod pedadenn direizh." + +#: actions/register.php:112 +msgid "Registration successful" +msgstr "" + +#: actions/register.php:114 actions/register.php:503 lib/logingroupnav.php:85 +msgid "Register" +msgstr "Krouiñ ur gont" + +#: actions/register.php:135 +msgid "Registration not allowed." +msgstr "" + +#: actions/register.php:198 +msgid "You can't register if you don't agree to the license." +msgstr "" + +#: actions/register.php:212 +msgid "Email address already exists." +msgstr "Implijet eo dija ar chomlec'h postel-se." + +#: actions/register.php:243 actions/register.php:265 +msgid "Invalid username or password." +msgstr "" + +#: actions/register.php:343 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" + +#: actions/register.php:425 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." +msgstr "" + +#: actions/register.php:430 +msgid "6 or more characters. Required." +msgstr "6 arouezenn pe muioc'h. Rekis." + +#: actions/register.php:434 +msgid "Same as password above. Required." +msgstr "Memestra hag ar ger-tremen a-us. Rekis." + +#: actions/register.php:438 actions/register.php:442 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 +msgid "Email" +msgstr "Postel" + +#: actions/register.php:439 actions/register.php:443 +msgid "Used only for updates, announcements, and password recovery" +msgstr "" + +#: actions/register.php:450 +msgid "Longer name, preferably your \"real\" name" +msgstr "" + +#: actions/register.php:494 +msgid "My text and files are available under " +msgstr "" + +#: actions/register.php:496 +msgid "Creative Commons Attribution 3.0" +msgstr "" + +#: actions/register.php:497 +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr "" + +#: actions/register.php:538 +#, php-format +msgid "" +"Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " +"want to...\n" +"\n" +"* Go to [your profile](%2$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:562 +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 "" + +#: actions/remotesubscribe.php:112 +msgid "Remote subscribe" +msgstr "" + +#: actions/remotesubscribe.php:124 +msgid "Subscribe to a remote user" +msgstr "" + +#: actions/remotesubscribe.php:129 +msgid "User nickname" +msgstr "" + +#: actions/remotesubscribe.php:130 +msgid "Nickname of the user you want to follow" +msgstr "" + +#: actions/remotesubscribe.php:133 +msgid "Profile URL" +msgstr "" + +#: actions/remotesubscribe.php:134 +msgid "URL of your profile on another compatible microblogging service" +msgstr "" + +#: actions/remotesubscribe.php:137 lib/subscribeform.php:139 +#: lib/userprofile.php:394 +msgid "Subscribe" +msgstr "En em enskrivañ" + +#: 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 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/repeat.php:57 +msgid "Only logged-in users can repeat notices." +msgstr "" + +#: actions/repeat.php:64 actions/repeat.php:71 +msgid "No notice specified." +msgstr "N'eus bet diferet ali ebet." + +#: actions/repeat.php:76 +msgid "You can't repeat your own notice." +msgstr "Ne c'helloc'h ket adkemer ho ali deoc'h." + +#: actions/repeat.php:90 +msgid "You already repeated that notice." +msgstr "Adkemeret o peus dija an ali-mañ." + +#: actions/repeat.php:114 lib/noticelist.php:674 +msgid "Repeated" +msgstr "Adlavaret" + +#: actions/repeat.php:119 +msgid "Repeated!" +msgstr "Adlavaret !" + +#: actions/replies.php:126 actions/repliesrss.php:68 +#: lib/personalgroupnav.php:105 +#, php-format +msgid "Replies to %s" +msgstr "Respontoù da %s" + +#: actions/replies.php:128 +#, php-format +msgid "Replies to %1$s, page %2$d" +msgstr "Respontoù da %1$s, pajenn %2$d" + +#: actions/replies.php:145 +#, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "" + +#: actions/replies.php:152 +#, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "" + +#: actions/replies.php:159 +#, php-format +msgid "Replies feed for %s (Atom)" +msgstr "" + +#: actions/replies.php:199 +#, php-format +msgid "" +"This is the timeline showing replies to %1$s but %2$s hasn't received a " +"notice to his attention yet." +msgstr "" + +#: actions/replies.php:204 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" + +#: actions/replies.php:206 +#, php-format +msgid "" +"You can try to [nudge %1$s](../%2$s) or [post something to his or her " +"attention](%%%%action.newnotice%%%%?status_textarea=%3$s)." +msgstr "" + +#: actions/repliesrss.php:72 +#, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "" + +#: actions/revokerole.php:75 +#, fuzzy +msgid "You cannot revoke user roles on this site." +msgstr "Ne c'helloc'h ket kas kemennadennoù d'an implijer-mañ." + +#: actions/revokerole.php:82 +msgid "User doesn't have this role." +msgstr "" + +#: actions/rsd.php:146 actions/version.php:157 +msgid "StatusNet" +msgstr "StatusNet" + +#: actions/sandbox.php:65 actions/unsandbox.php:65 +msgid "You cannot sandbox users on this site." +msgstr "" + +#: actions/sandbox.php:72 +msgid "User is already sandboxed." +msgstr "" + +#. TRANS: Menu item for site administration +#: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:390 +msgid "Sessions" +msgstr "Dalc'hoù" + +#: actions/sessionsadminpanel.php:65 +msgid "Session settings for this StatusNet site." +msgstr "" + +#: actions/sessionsadminpanel.php:175 +msgid "Handle sessions" +msgstr "Merañ an dalc'hoù" + +#: actions/sessionsadminpanel.php:177 +msgid "Whether to handle sessions ourselves." +msgstr "" + +#: actions/sessionsadminpanel.php:181 +msgid "Session debugging" +msgstr "" + +#: actions/sessionsadminpanel.php:183 +msgid "Turn on debugging output for sessions." +msgstr "" + +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 +#: actions/useradminpanel.php:294 +msgid "Save site settings" +msgstr "" + +#: actions/showapplication.php:82 +msgid "You must be logged in to view an application." +msgstr "" + +#: actions/showapplication.php:157 +msgid "Application profile" +msgstr "" + +#: actions/showapplication.php:159 lib/applicationeditform.php:180 +msgid "Icon" +msgstr "" + +#: actions/showapplication.php:169 actions/version.php:195 +#: lib/applicationeditform.php:195 +msgid "Name" +msgstr "Anv" + +#: actions/showapplication.php:178 lib/applicationeditform.php:222 +msgid "Organization" +msgstr "" + +#: actions/showapplication.php:187 actions/version.php:198 +#: lib/applicationeditform.php:209 lib/groupeditform.php:172 +msgid "Description" +msgstr "" + +#: actions/showapplication.php:192 actions/showgroup.php:438 +#: lib/profileaction.php:176 +msgid "Statistics" +msgstr "Stadegoù" + +#: actions/showapplication.php:203 +#, php-format +msgid "Created by %1$s - %2$s access by default - %3$d users" +msgstr "" + +#: actions/showapplication.php:213 +msgid "Application actions" +msgstr "" + +#: actions/showapplication.php:236 +msgid "Reset key & secret" +msgstr "" + +#: actions/showapplication.php:261 +msgid "Application info" +msgstr "" + +#: actions/showapplication.php:263 +msgid "Consumer key" +msgstr "" + +#: actions/showapplication.php:268 +msgid "Consumer secret" +msgstr "" + +#: actions/showapplication.php:273 +msgid "Request token URL" +msgstr "" + +#: actions/showapplication.php:278 +msgid "Access token URL" +msgstr "" + +#: actions/showapplication.php:283 +msgid "Authorize URL" +msgstr "" + +#: actions/showapplication.php:288 +msgid "" +"Note: We support HMAC-SHA1 signatures. We do not support the plaintext " +"signature method." +msgstr "" + +#: actions/showapplication.php:309 +msgid "Are you sure you want to reset your consumer key and secret?" +msgstr "" + +#: actions/showfavorites.php:79 +#, php-format +msgid "%1$s's favorite notices, page %2$d" +msgstr "" + +#: actions/showfavorites.php:132 +msgid "Could not retrieve favorite notices." +msgstr "" + +#: actions/showfavorites.php:171 +#, php-format +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "" + +#: actions/showfavorites.php:178 +#, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "" + +#: actions/showfavorites.php:185 +#, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "" + +#: actions/showfavorites.php:206 +msgid "" +"You haven't chosen any favorite notices yet. Click the fave button on " +"notices you like to bookmark them for later or shed a spotlight on them." +msgstr "" + +#: actions/showfavorites.php:208 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" + +#: actions/showfavorites.php:212 +#, 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/showfavorites.php:243 +msgid "This is a way to share what you like." +msgstr "" + +#: actions/showgroup.php:82 lib/groupnav.php:86 +#, php-format +msgid "%s group" +msgstr "strollad %s" + +#: actions/showgroup.php:84 +#, php-format +msgid "%1$s group, page %2$d" +msgstr "" + +#: actions/showgroup.php:226 +msgid "Group profile" +msgstr "Profil ar strollad" + +#: actions/showgroup.php:271 actions/tagother.php:118 +#: actions/userauthorization.php:175 lib/userprofile.php:177 +msgid "URL" +msgstr "URL" + +#: actions/showgroup.php:282 actions/tagother.php:128 +#: actions/userauthorization.php:187 lib/userprofile.php:194 +msgid "Note" +msgstr "Notenn" + +#: actions/showgroup.php:292 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "Aliasoù" + +#: actions/showgroup.php:301 +msgid "Group actions" +msgstr "Oberoù ar strollad" + +#: actions/showgroup.php:337 +#, php-format +msgid "Notice feed for %s group (RSS 1.0)" +msgstr "" + +#: actions/showgroup.php:343 +#, php-format +msgid "Notice feed for %s group (RSS 2.0)" +msgstr "" + +#: actions/showgroup.php:349 +#, php-format +msgid "Notice feed for %s group (Atom)" +msgstr "" + +#: actions/showgroup.php:354 +#, php-format +msgid "FOAF for %s group" +msgstr "" + +#: actions/showgroup.php:390 actions/showgroup.php:447 lib/groupnav.php:91 +msgid "Members" +msgstr "Izili" + +#: actions/showgroup.php:395 lib/profileaction.php:117 +#: lib/profileaction.php:150 lib/profileaction.php:238 lib/section.php:95 +#: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 +msgid "(None)" +msgstr "(hini ebet)" + +#: actions/showgroup.php:401 +msgid "All members" +msgstr "An holl izili" + +#: actions/showgroup.php:441 +msgid "Created" +msgstr "Krouet" + +#: actions/showgroup.php:457 +#, 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:463 +#, 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:491 +msgid "Admins" +msgstr "Merourien" + +#: actions/showmessage.php:81 +msgid "No such message." +msgstr "N'eus ket eus ar gemennadenn-se." + +#: 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:73 +#, php-format +msgid " tagged %s" +msgstr " merket %s" + +#: actions/showstream.php:79 +#, php-format +msgid "%1$s, page %2$d" +msgstr "" + +#: actions/showstream.php:122 +#, php-format +msgid "Notice feed for %1$s tagged %2$s (RSS 1.0)" +msgstr "" + +#: actions/showstream.php:129 +#, php-format +msgid "Notice feed for %s (RSS 1.0)" +msgstr "" + +#: actions/showstream.php:136 +#, php-format +msgid "Notice feed for %s (RSS 2.0)" +msgstr "" + +#: actions/showstream.php:143 +#, php-format +msgid "Notice feed for %s (Atom)" +msgstr "" + +#: actions/showstream.php:148 +#, php-format +msgid "FOAF for %s" +msgstr "" + +#: actions/showstream.php:200 +#, php-format +msgid "This is the timeline for %1$s but %2$s hasn't posted anything yet." +msgstr "" + +#: actions/showstream.php:205 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" + +#: actions/showstream.php:207 +#, php-format +msgid "" +"You can try to nudge %1$s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%2$s)." +msgstr "" + +#: actions/showstream.php:243 +#, 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/showstream.php:248 +#, 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/showstream.php:305 +#, php-format +msgid "Repeat of %s" +msgstr "" + +#: actions/silence.php:65 actions/unsilence.php:65 +msgid "You cannot silence users on this site." +msgstr "" + +#: actions/silence.php:72 +msgid "User is already silenced." +msgstr "" + +#: actions/siteadminpanel.php:69 +#, fuzzy +msgid "Basic settings for this StatusNet site" +msgstr "Arventennoù design evit al lec'hienn StatusNet-mañ." + +#: actions/siteadminpanel.php:133 +msgid "Site name must have non-zero length." +msgstr "" + +#: actions/siteadminpanel.php:141 +msgid "You must have a valid contact email address." +msgstr "" + +#: actions/siteadminpanel.php:159 +#, php-format +msgid "Unknown language \"%s\"." +msgstr "" + +#: actions/siteadminpanel.php:165 +msgid "Minimum text limit is 140 characters." +msgstr "" + +#: actions/siteadminpanel.php:171 +msgid "Dupe limit must 1 or more seconds." +msgstr "" + +#: actions/siteadminpanel.php:221 +msgid "General" +msgstr "Hollek" + +#: actions/siteadminpanel.php:224 +msgid "Site name" +msgstr "Anv al lec'hienn" + +#: actions/siteadminpanel.php:225 +msgid "The name of your site, like \"Yourcompany Microblog\"" +msgstr "" + +#: actions/siteadminpanel.php:229 +msgid "Brought by" +msgstr "Degaset gant" + +#: actions/siteadminpanel.php:230 +msgid "Text used for credits link in footer of each page" +msgstr "" + +#: actions/siteadminpanel.php:234 +msgid "Brought by URL" +msgstr "" + +#: actions/siteadminpanel.php:235 +msgid "URL used for credits link in footer of each page" +msgstr "" + +#: actions/siteadminpanel.php:239 +msgid "Contact email address for your site" +msgstr "" + +#: actions/siteadminpanel.php:245 +msgid "Local" +msgstr "Lec'hel" + +#: actions/siteadminpanel.php:256 +msgid "Default timezone" +msgstr "" + +#: actions/siteadminpanel.php:257 +msgid "Default timezone for the site; usually UTC." +msgstr "" + +#: actions/siteadminpanel.php:262 +#, fuzzy +msgid "Default language" +msgstr "Yezh d'ober ganti da gentañ" + +#: actions/siteadminpanel.php:263 +msgid "Site language when autodetection from browser settings is not available" +msgstr "" + +#: actions/siteadminpanel.php:271 +msgid "Limits" +msgstr "Bevennoù" + +#: actions/siteadminpanel.php:274 +msgid "Text limit" +msgstr "" + +#: actions/siteadminpanel.php:274 +msgid "Maximum number of characters for notices." +msgstr "" + +#: actions/siteadminpanel.php:278 +msgid "Dupe limit" +msgstr "" + +#: actions/siteadminpanel.php:278 +msgid "How long users must wait (in seconds) to post the same thing again." +msgstr "" + +#: actions/sitenoticeadminpanel.php:56 +#, fuzzy +msgid "Site Notice" +msgstr "Ali" + +#: actions/sitenoticeadminpanel.php:67 +#, fuzzy +msgid "Edit site-wide message" +msgstr "Kemennadenn nevez" + +#: actions/sitenoticeadminpanel.php:103 +#, fuzzy +msgid "Unable to save site notice." +msgstr "Diposubl eo enrollañ an titouroù stankañ." + +#: actions/sitenoticeadminpanel.php:113 +msgid "Max length for the site-wide notice is 255 chars" +msgstr "" + +#: actions/sitenoticeadminpanel.php:176 +#, fuzzy +msgid "Site notice text" +msgstr "Eilañ an ali" + +#: actions/sitenoticeadminpanel.php:178 +msgid "Site-wide notice text (255 chars max; HTML okay)" +msgstr "" + +#: actions/sitenoticeadminpanel.php:198 +#, fuzzy +msgid "Save site notice" +msgstr "Dilemel un ali" + +#: actions/smssettings.php:58 +msgid "SMS settings" +msgstr "Arventennoù SMS" + +#: actions/smssettings.php:69 +#, php-format +msgid "You can receive SMS messages through email from %%site.name%%." +msgstr "" + +#: actions/smssettings.php:91 +msgid "SMS is not available." +msgstr "Dizimplijadus eo an SMS." + +#: actions/smssettings.php:112 +msgid "Current confirmed SMS-enabled phone number." +msgstr "" + +#: actions/smssettings.php:123 +msgid "Awaiting confirmation on this phone number." +msgstr "" + +#: actions/smssettings.php:130 +msgid "Confirmation code" +msgstr "Kod kadarnaat" + +#: actions/smssettings.php:131 +msgid "Enter the code you received on your phone." +msgstr "" + +#: actions/smssettings.php:138 +msgid "SMS phone number" +msgstr "Niverenn bellgomz evit an SMS" + +#: 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 "" + +#: actions/smssettings.php:306 +msgid "No phone number." +msgstr "Niverenn bellgomz ebet." + +#: actions/smssettings.php:311 +msgid "No carrier selected." +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/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/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 "" +"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/smssettings.php:498 +msgid "No code entered" +msgstr "N'eo bet lakaet kod ebet" + +#. TRANS: Menu item for site administration +#: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 +#: lib/adminpanelaction.php:406 +msgid "Snapshots" +msgstr "" + +#: actions/snapshotadminpanel.php:65 +msgid "Manage snapshot configuration" +msgstr "" + +#: actions/snapshotadminpanel.php:127 +msgid "Invalid snapshot run value." +msgstr "" + +#: actions/snapshotadminpanel.php:133 +msgid "Snapshot frequency must be a number." +msgstr "" + +#: actions/snapshotadminpanel.php:144 +msgid "Invalid snapshot report URL." +msgstr "" + +#: actions/snapshotadminpanel.php:200 +msgid "Randomly during Web hit" +msgstr "" + +#: actions/snapshotadminpanel.php:201 +msgid "In a scheduled job" +msgstr "" + +#: actions/snapshotadminpanel.php:206 +msgid "Data snapshots" +msgstr "" + +#: actions/snapshotadminpanel.php:208 +msgid "When to send statistical data to status.net servers" +msgstr "" + +#: actions/snapshotadminpanel.php:217 +msgid "Frequency" +msgstr "Stankter" + +#: actions/snapshotadminpanel.php:218 +msgid "Snapshots will be sent once every N web hits" +msgstr "" + +#: actions/snapshotadminpanel.php:226 +msgid "Report URL" +msgstr "" + +#: actions/snapshotadminpanel.php:227 +msgid "Snapshots will be sent to this URL" +msgstr "" + +#: actions/snapshotadminpanel.php:248 +#, fuzzy +msgid "Save snapshot settings" +msgstr "Enrollañ an arventennoù moned" + +#: actions/subedit.php:70 +msgid "You are not subscribed to that profile." +msgstr "" + +#: actions/subedit.php:83 classes/Subscription.php:89 +#: classes/Subscription.php:116 +msgid "Could not save subscription." +msgstr "" + +#: actions/subscribe.php:77 +msgid "This action only accepts POST requests." +msgstr "" + +#: actions/subscribe.php:107 +msgid "No such profile." +msgstr "" + +#: actions/subscribe.php:117 +msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." +msgstr "" + +#: actions/subscribe.php:145 +msgid "Subscribed" +msgstr "" + +#: actions/subscribers.php:50 +#, php-format +msgid "%s subscribers" +msgstr "" + +#: actions/subscribers.php:52 +#, php-format +msgid "%1$s subscribers, page %2$d" +msgstr "" + +#: 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 "" + +#: 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:52 +#, php-format +msgid "%s subscriptions" +msgstr "" + +#: actions/subscriptions.php:54 +#, php-format +msgid "%1$s subscriptions, page %2$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 "" + +#: actions/subscriptions.php:126 +#, 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:128 actions/subscriptions.php:132 +#, php-format +msgid "%s is not listening to anyone." +msgstr "" + +#: actions/subscriptions.php:199 +msgid "Jabber" +msgstr "Jabber" + +#: actions/subscriptions.php:204 lib/connectsettingsaction.php:115 +msgid "SMS" +msgstr "SMS" + +#: actions/tag.php:69 +#, php-format +msgid "Notices tagged with %1$s, page %2$d" +msgstr "" + +#: actions/tag.php:87 +#, php-format +msgid "Notice feed for tag %s (RSS 1.0)" +msgstr "" + +#: actions/tag.php:93 +#, php-format +msgid "Notice feed for tag %s (RSS 2.0)" +msgstr "" + +#: actions/tag.php:99 +#, php-format +msgid "Notice feed for tag %s (Atom)" +msgstr "" + +#: actions/tagother.php:39 +msgid "No ID argument." +msgstr "" + +#: actions/tagother.php:65 +#, php-format +msgid "Tag %s" +msgstr "" + +#: actions/tagother.php:77 lib/userprofile.php:75 +msgid "User profile" +msgstr "" + +#: actions/tagother.php:81 actions/userauthorization.php:132 +#: lib/userprofile.php:102 +msgid "Photo" +msgstr "Skeudenn" + +#: actions/tagother.php:141 +msgid "Tag user" +msgstr "" + +#: actions/tagother.php:151 +msgid "" +"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"separated" +msgstr "" + +#: 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 +msgid "Could not save tags." +msgstr "" + +#: 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/twitapitrends.php:85 +msgid "API method under construction." +msgstr "" + +#: actions/unblock.php:59 +msgid "You haven't blocked that user." +msgstr "" + +#: actions/unsandbox.php:72 +msgid "User is not sandboxed." +msgstr "" + +#: actions/unsilence.php:72 +msgid "User is not silenced." +msgstr "" + +#: actions/unsubscribe.php:77 +msgid "No profile id in request." +msgstr "" + +#: actions/unsubscribe.php:98 +msgid "Unsubscribed" +msgstr "" + +#: actions/updateprofile.php:64 actions/userauthorization.php:337 +#, php-format +msgid "" +"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." +msgstr "" + +#. TRANS: User admin panel title +#: actions/useradminpanel.php:59 +msgctxt "TITLE" +msgid "User" +msgstr "" + +#: actions/useradminpanel.php:70 +msgid "User settings for this StatusNet site." +msgstr "" + +#: actions/useradminpanel.php:149 +msgid "Invalid bio limit. Must be numeric." +msgstr "" + +#: actions/useradminpanel.php:155 +msgid "Invalid welcome text. Max length is 255 characters." +msgstr "" + +#: actions/useradminpanel.php:165 +#, php-format +msgid "Invalid default subscripton: '%1$s' is not user." +msgstr "" + +#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 +#: lib/personalgroupnav.php:109 +msgid "Profile" +msgstr "Profil" + +#: actions/useradminpanel.php:222 +msgid "Bio Limit" +msgstr "Bevenn ar bio" + +#: actions/useradminpanel.php:223 +msgid "Maximum length of a profile bio in characters." +msgstr "" + +#: actions/useradminpanel.php:231 +msgid "New users" +msgstr "Implijerien nevez" + +#: actions/useradminpanel.php:235 +msgid "New user welcome" +msgstr "Degemer an implijerien nevez" + +#: actions/useradminpanel.php:236 +msgid "Welcome text for new users (Max 255 chars)." +msgstr "" + +#: actions/useradminpanel.php:241 +msgid "Default subscription" +msgstr "" + +#: actions/useradminpanel.php:242 +msgid "Automatically subscribe new users to this user." +msgstr "" + +#: actions/useradminpanel.php:251 +msgid "Invitations" +msgstr "Pedadennoù" + +#: actions/useradminpanel.php:256 +msgid "Invitations enabled" +msgstr "" + +#: actions/useradminpanel.php:258 +msgid "Whether to allow users to invite new users." +msgstr "" + +#: 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/userauthorization.php:196 actions/version.php:165 +msgid "License" +msgstr "Aotre implijout" + +#: actions/userauthorization.php:217 +msgid "Accept" +msgstr "Degemer" + +#: actions/userauthorization.php:218 lib/subscribeform.php:115 +#: lib/subscribeform.php:139 +msgid "Subscribe to this user" +msgstr "" + +#: actions/userauthorization.php:219 +msgid "Reject" +msgstr "Disteurel" + +#: actions/userauthorization.php:220 +msgid "Reject this subscription" +msgstr "" + +#: actions/userauthorization.php:232 +msgid "No authorization request!" +msgstr "" + +#: actions/userauthorization.php:254 +msgid "Subscription authorized" +msgstr "" + +#: actions/userauthorization.php:256 +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:266 +msgid "Subscription rejected" +msgstr "" + +#: actions/userauthorization.php:268 +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:303 +#, php-format +msgid "Listener URI ‘%s’ not found here." +msgstr "" + +#: actions/userauthorization.php:308 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" + +#: actions/userauthorization.php:314 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" + +#: actions/userauthorization.php:329 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" + +#: actions/userauthorization.php:345 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" + +#: actions/userauthorization.php:350 +#, php-format +msgid "Can’t read avatar URL ‘%s’." +msgstr "" + +#: actions/userauthorization.php:355 +#, php-format +msgid "Wrong image type for avatar URL ‘%s’." +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:64 +#, php-format +msgid "%1$s groups, page %2$d" +msgstr "" + +#: actions/usergroups.php:130 +msgid "Search for more groups" +msgstr "Klask muioc'h a strolladoù" + +#: actions/usergroups.php:157 +#, php-format +msgid "%s is not a member of any group." +msgstr "" + +#: actions/usergroups.php:162 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" + +#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: lib/atomusernoticefeed.php:72 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "Hizivadennoù eus %1$s e %2$s!" + +#: actions/version.php:73 +#, php-format +msgid "StatusNet %s" +msgstr "StatusNet %s" + +#: actions/version.php:153 +#, php-format +msgid "" +"This site is powered by %1$s version %2$s, Copyright 2008-2010 StatusNet, " +"Inc. and contributors." +msgstr "" + +#: actions/version.php:161 +msgid "Contributors" +msgstr "Aozerien" + +#: actions/version.php:168 +msgid "" +"StatusNet is free software: you can redistribute it and/or modify it under " +"the terms of the GNU Affero General Public License as published by the Free " +"Software Foundation, either version 3 of the License, or (at your option) " +"any later version. " +msgstr "" + +#: actions/version.php:174 +msgid "" +"This program is distributed in the hope that it will be useful, but WITHOUT " +"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " +"FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License " +"for more details. " +msgstr "" + +#: actions/version.php:180 +#, php-format +msgid "" +"You should have received a copy of the GNU Affero General Public License " +"along with this program. If not, see %s." +msgstr "" + +#: actions/version.php:189 +msgid "Plugins" +msgstr "Pluginoù" + +#: actions/version.php:196 lib/action.php:767 +msgid "Version" +msgstr "Stumm" + +#: actions/version.php:197 +msgid "Author(s)" +msgstr "Aozer(ien)" + +#: classes/File.php:144 +#, 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:154 +#, php-format +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" + +#: classes/File.php:161 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." +msgstr "" + +#: classes/Group_member.php:41 +msgid "Group join failed." +msgstr "C'hwitet eo bet an enskrivadur d'ar strollad." + +#: classes/Group_member.php:53 +msgid "Not part of group." +msgstr "N'eo ezel eus strollad ebet." + +#: classes/Group_member.php:60 +msgid "Group leave failed." +msgstr "C'hwitet eo bet an disenskrivadur d'ar strollad." + +#: classes/Local_group.php:41 +msgid "Could not update local group." +msgstr "" + +#: classes/Login_token.php:76 +#, php-format +msgid "Could not create login token for %s" +msgstr "" + +#: classes/Message.php:45 +msgid "You are banned from sending direct messages." +msgstr "" + +#: classes/Message.php:61 +msgid "Could not insert message." +msgstr "Diposubl eo ensoc'hañ ur gemenadenn" + +#: classes/Message.php:71 +msgid "Could not update message with new URI." +msgstr "" + +#: classes/Notice.php:172 +#, php-format +msgid "DB error inserting hashtag: %s" +msgstr "" + +#: classes/Notice.php:241 +msgid "Problem saving notice. Too long." +msgstr "" + +#: classes/Notice.php:245 +msgid "Problem saving notice. Unknown user." +msgstr "" + +#: classes/Notice.php:250 +msgid "" +"Too many notices too fast; take a breather and post again in a few minutes." +msgstr "" + +#: classes/Notice.php:256 +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" + +#: classes/Notice.php:262 +msgid "You are banned from posting notices on this site." +msgstr "" + +#: classes/Notice.php:328 classes/Notice.php:354 +msgid "Problem saving notice." +msgstr "" + +#: classes/Notice.php:927 +msgid "Problem saving group inbox." +msgstr "" + +#: classes/Notice.php:1459 +#, php-format +msgid "RT @%1$s %2$s" +msgstr "RT @%1$s %2$s" + +#: classes/Subscription.php:66 lib/oauthstore.php:465 +msgid "You have been banned from subscribing." +msgstr "" + +#: classes/Subscription.php:70 +msgid "Already subscribed!" +msgstr "" + +#: classes/Subscription.php:74 +msgid "User has blocked you." +msgstr "" + +#: classes/Subscription.php:157 +msgid "Not subscribed!" +msgstr "" + +#: classes/Subscription.php:163 +msgid "Couldn't delete self-subscription." +msgstr "" + +#: classes/Subscription.php:190 +#, fuzzy +msgid "Couldn't delete subscription OMB token." +msgstr "Diposubl eo dilemel ar postel kadarnadur." + +#: classes/Subscription.php:201 lib/subs.php:69 +msgid "Couldn't delete subscription." +msgstr "" + +#: classes/User.php:373 +#, php-format +msgid "Welcome to %1$s, @%2$s!" +msgstr "" + +#: classes/User_group.php:477 +msgid "Could not create group." +msgstr "" + +#: classes/User_group.php:486 +msgid "Could not set group URI." +msgstr "" + +#: classes/User_group.php:507 +msgid "Could not set group membership." +msgstr "" + +#: classes/User_group.php:521 +msgid "Could not save local group info." +msgstr "" + +#: lib/accountsettingsaction.php:108 +msgid "Change your profile settings" +msgstr "" + +#: lib/accountsettingsaction.php:112 +msgid "Upload an avatar" +msgstr "" + +#: lib/accountsettingsaction.php:116 +msgid "Change your password" +msgstr "Cheñch ar ger-tremen" + +#: lib/accountsettingsaction.php:120 +msgid "Change email handling" +msgstr "" + +#: lib/accountsettingsaction.php:124 +msgid "Design your profile" +msgstr "" + +#: lib/accountsettingsaction.php:128 +msgid "Other" +msgstr "All" + +#: lib/accountsettingsaction.php:128 +msgid "Other options" +msgstr "" + +#: lib/action.php:144 +#, php-format +msgid "%1$s - %2$s" +msgstr "%1$s - %2$s" + +#: lib/action.php:159 +msgid "Untitled page" +msgstr "" + +#: lib/action.php:424 +msgid "Primary site navigation" +msgstr "" + +#. TRANS: Tooltip for main menu option "Personal" +#: lib/action.php:430 +msgctxt "TOOLTIP" +msgid "Personal profile and friends timeline" +msgstr "" + +#: lib/action.php:433 +msgctxt "MENU" +msgid "Personal" +msgstr "" + +#. TRANS: Tooltip for main menu option "Account" +#: lib/action.php:435 +msgctxt "TOOLTIP" +msgid "Change your email, avatar, password, profile" +msgstr "" + +#. TRANS: Tooltip for main menu option "Services" +#: lib/action.php:440 +msgctxt "TOOLTIP" +msgid "Connect to services" +msgstr "" + +#: lib/action.php:443 +#, fuzzy +msgid "Connect" +msgstr "Endalc'h" + +#. TRANS: Tooltip for menu option "Admin" +#: lib/action.php:446 +msgctxt "TOOLTIP" +msgid "Change site configuration" +msgstr "" + +#: lib/action.php:449 +msgctxt "MENU" +msgid "Admin" +msgstr "" + +#. TRANS: Tooltip for main menu option "Invite" +#: lib/action.php:453 +#, php-format +msgctxt "TOOLTIP" +msgid "Invite friends and colleagues to join you on %s" +msgstr "" + +#: lib/action.php:456 +msgctxt "MENU" +msgid "Invite" +msgstr "" + +#. TRANS: Tooltip for main menu option "Logout" +#: lib/action.php:462 +msgctxt "TOOLTIP" +msgid "Logout from the site" +msgstr "" + +#: lib/action.php:465 +msgctxt "MENU" +msgid "Logout" +msgstr "" + +#. TRANS: Tooltip for main menu option "Register" +#: lib/action.php:470 +msgctxt "TOOLTIP" +msgid "Create an account" +msgstr "" + +#: lib/action.php:473 +msgctxt "MENU" +msgid "Register" +msgstr "" + +#. TRANS: Tooltip for main menu option "Login" +#: lib/action.php:476 +msgctxt "TOOLTIP" +msgid "Login to the site" +msgstr "" + +#: lib/action.php:479 +msgctxt "MENU" +msgid "Login" +msgstr "" + +#. TRANS: Tooltip for main menu option "Help" +#: lib/action.php:482 +msgctxt "TOOLTIP" +msgid "Help me!" +msgstr "" + +#: lib/action.php:485 +msgctxt "MENU" +msgid "Help" +msgstr "" + +#. TRANS: Tooltip for main menu option "Search" +#: lib/action.php:488 +msgctxt "TOOLTIP" +msgid "Search for people or text" +msgstr "" + +#: lib/action.php:491 +msgctxt "MENU" +msgid "Search" +msgstr "" + +#. TRANS: DT element for site notice. String is hidden in default CSS. +#. TRANS: Menu item for site administration +#: lib/action.php:513 lib/adminpanelaction.php:398 +msgid "Site notice" +msgstr "" + +#: lib/action.php:579 +msgid "Local views" +msgstr "" + +#: lib/action.php:645 +msgid "Page notice" +msgstr "" + +#: lib/action.php:747 +msgid "Secondary site navigation" +msgstr "" + +#: lib/action.php:752 +msgid "Help" +msgstr "Skoazell" + +#: lib/action.php:754 +msgid "About" +msgstr "Diwar-benn" + +#: lib/action.php:756 +msgid "FAQ" +msgstr "FAG" + +#: lib/action.php:760 +msgid "TOS" +msgstr "" + +#: lib/action.php:763 +msgid "Privacy" +msgstr "Prevezded" + +#: lib/action.php:765 +msgid "Source" +msgstr "Mammenn" + +#: lib/action.php:769 +msgid "Contact" +msgstr "Darempred" + +#: lib/action.php:771 +msgid "Badge" +msgstr "" + +#: lib/action.php:799 +msgid "StatusNet software license" +msgstr "" + +#: lib/action.php:802 +#, php-format +msgid "" +"**%%site.name%%** is a microblogging service brought to you by [%%site." +"broughtby%%](%%site.broughtbyurl%%). " +msgstr "" + +#: lib/action.php:804 +#, php-format +msgid "**%%site.name%%** is a microblogging service. " +msgstr "" + +#: lib/action.php:806 +#, 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 "" + +#: lib/action.php:821 +msgid "Site content license" +msgstr "" + +#: lib/action.php:826 +#, php-format +msgid "Content and data of %1$s are private and confidential." +msgstr "" + +#: lib/action.php:831 +#, php-format +msgid "Content and data copyright by %1$s. All rights reserved." +msgstr "" + +#: lib/action.php:834 +msgid "Content and data copyright by contributors. All rights reserved." +msgstr "" + +#: lib/action.php:847 +msgid "All " +msgstr "Pep tra " + +#: lib/action.php:853 +msgid "license." +msgstr "aotre implijout." + +#: lib/action.php:1152 +msgid "Pagination" +msgstr "Pajennadur" + +#: lib/action.php:1161 +msgid "After" +msgstr "War-lerc'h" + +#: lib/action.php:1169 +msgid "Before" +msgstr "Kent" + +#: lib/activity.php:453 +msgid "Can't handle remote content yet." +msgstr "" + +#: lib/activity.php:481 +msgid "Can't handle embedded XML content yet." +msgstr "" + +#: lib/activity.php:485 +msgid "Can't handle embedded Base64 content yet." +msgstr "" + +#. TRANS: Client error message +#: lib/adminpanelaction.php:98 +msgid "You cannot make changes to this site." +msgstr "" + +#. TRANS: Client error message +#: lib/adminpanelaction.php:110 +msgid "Changes to that panel are not allowed." +msgstr "" + +#. TRANS: Client error message +#: lib/adminpanelaction.php:229 +msgid "showForm() not implemented." +msgstr "" + +#. TRANS: Client error message +#: lib/adminpanelaction.php:259 +msgid "saveSettings() not implemented." +msgstr "" + +#. TRANS: Client error message +#: lib/adminpanelaction.php:283 +msgid "Unable to delete design setting." +msgstr "" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:348 +msgid "Basic site configuration" +msgstr "" + +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:350 +msgctxt "MENU" +msgid "Site" +msgstr "" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:356 +msgid "Design configuration" +msgstr "" + +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:358 +msgctxt "MENU" +msgid "Design" +msgstr "" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:364 +msgid "User configuration" +msgstr "" + +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 +msgid "User" +msgstr "Implijer" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:372 +msgid "Access configuration" +msgstr "" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:380 +msgid "Paths configuration" +msgstr "" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:388 +msgid "Sessions configuration" +msgstr "" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:396 +#, fuzzy +msgid "Edit site notice" +msgstr "Eilañ an ali" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:404 +msgid "Snapshots configuration" +msgstr "" + +#: lib/apiauth.php:94 +msgid "API resource requires read-write access, but you only have read access." +msgstr "" + +#: lib/apiauth.php:272 +#, php-format +msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" +msgstr "" + +#: lib/applicationeditform.php:136 +msgid "Edit application" +msgstr "Kemmañ an arload" + +#: lib/applicationeditform.php:184 +msgid "Icon for this application" +msgstr "" + +#: lib/applicationeditform.php:204 +#, php-format +msgid "Describe your application in %d characters" +msgstr "" + +#: lib/applicationeditform.php:207 +msgid "Describe your application" +msgstr "" + +#: lib/applicationeditform.php:216 +msgid "Source URL" +msgstr "Mammenn URL" + +#: lib/applicationeditform.php:218 +msgid "URL of the homepage of this application" +msgstr "" + +#: lib/applicationeditform.php:224 +msgid "Organization responsible for this application" +msgstr "" + +#: lib/applicationeditform.php:230 +msgid "URL for the homepage of the organization" +msgstr "" + +#: lib/applicationeditform.php:236 +msgid "URL to redirect to after authentication" +msgstr "" + +#: lib/applicationeditform.php:258 +msgid "Browser" +msgstr "Merdeer" + +#: lib/applicationeditform.php:274 +msgid "Desktop" +msgstr "" + +#: lib/applicationeditform.php:275 +msgid "Type of application, browser or desktop" +msgstr "" + +#: lib/applicationeditform.php:297 +msgid "Read-only" +msgstr "" + +#: lib/applicationeditform.php:315 +msgid "Read-write" +msgstr "" + +#: lib/applicationeditform.php:316 +msgid "Default access for this application: read-only, or read-write" +msgstr "" + +#: lib/applicationlist.php:154 +msgid "Revoke" +msgstr "" + +#: lib/attachmentlist.php:87 +msgid "Attachments" +msgstr "" + +#: lib/attachmentlist.php:265 +msgid "Author" +msgstr "Aozer" + +#: lib/attachmentlist.php:278 +msgid "Provider" +msgstr "Pourvezer" + +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" +msgstr "" + +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "" + +#: lib/authenticationplugin.php:220 lib/authenticationplugin.php:225 +msgid "Password changing failed" +msgstr "" + +#: lib/authenticationplugin.php:235 +msgid "Password changing is not allowed" +msgstr "" + +#: lib/channel.php:138 lib/channel.php:158 +msgid "Command results" +msgstr "" + +#: lib/channel.php:210 lib/mailhandler.php:142 +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 "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:126 +#, php-format +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" +msgstr "" + +#: lib/command.php:152 lib/command.php:390 lib/command.php:451 +msgid "Notice with that id does not exist" +msgstr "" + +#: lib/command.php:168 lib/command.php:406 lib/command.php:467 +#: lib/command.php:523 +msgid "User has no last notice" +msgstr "" + +#: lib/command.php:190 +msgid "Notice marked as fave." +msgstr "" + +#: lib/command.php:217 +msgid "You are already a member of that group" +msgstr "" + +#: lib/command.php:231 +#, php-format +msgid "Could not join user %s to group %s" +msgstr "" + +#: lib/command.php:236 +#, php-format +msgid "%s joined group %s" +msgstr "%s zo emezelet er strollad %s" + +#: lib/command.php:275 +#, php-format +msgid "Could not remove user %s to group %s" +msgstr "" + +#: lib/command.php:280 +#, php-format +msgid "%s left group %s" +msgstr "%s {{Gender:.|en|he}} deus kuitaet ar strollad %s" + +#: lib/command.php:309 +#, php-format +msgid "Fullname: %s" +msgstr "Anv klok : %s" + +#: lib/command.php:312 lib/mail.php:254 +#, php-format +msgid "Location: %s" +msgstr "" + +#: lib/command.php:315 lib/mail.php:256 +#, php-format +msgid "Homepage: %s" +msgstr "" + +#: lib/command.php:318 +#, php-format +msgid "About: %s" +msgstr "Diwar-benn : %s" + +#: lib/command.php:349 +#, php-format +msgid "Message too long - maximum is %d characters, you sent %d" +msgstr "" + +#: lib/command.php:367 +#, php-format +msgid "Direct message to %s sent" +msgstr "" + +#: lib/command.php:369 +msgid "Error sending direct message." +msgstr "" + +#: lib/command.php:413 +msgid "Cannot repeat your own notice" +msgstr "" + +#: lib/command.php:418 +msgid "Already repeated that notice" +msgstr "" + +#: lib/command.php:426 +#, php-format +msgid "Notice from %s repeated" +msgstr "" + +#: lib/command.php:428 +msgid "Error repeating notice." +msgstr "" + +#: lib/command.php:482 +#, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" +msgstr "" + +#: lib/command.php:491 +#, php-format +msgid "Reply to %s sent" +msgstr "" + +#: lib/command.php:493 +msgid "Error saving notice." +msgstr "" + +#: lib/command.php:547 +msgid "Specify the name of the user to subscribe to" +msgstr "" + +#: lib/command.php:554 lib/command.php:589 +msgid "No such user" +msgstr "" + +#: lib/command.php:561 +#, php-format +msgid "Subscribed to %s" +msgstr "" + +#: lib/command.php:582 lib/command.php:685 +msgid "Specify the name of the user to unsubscribe from" +msgstr "" + +#: lib/command.php:595 +#, php-format +msgid "Unsubscribed from %s" +msgstr "" + +#: lib/command.php:613 lib/command.php:636 +msgid "Command not yet implemented." +msgstr "" + +#: lib/command.php:616 +msgid "Notification off." +msgstr "" + +#: lib/command.php:618 +msgid "Can't turn off notification." +msgstr "" + +#: lib/command.php:639 +msgid "Notification on." +msgstr "" + +#: lib/command.php:641 +msgid "Can't turn on notification." +msgstr "" + +#: lib/command.php:654 +msgid "Login command is disabled" +msgstr "" + +#: lib/command.php:665 +#, php-format +msgid "This link is useable only once, and is good for only 2 minutes: %s" +msgstr "" + +#: lib/command.php:692 +#, php-format +msgid "Unsubscribed %s" +msgstr "" + +#: lib/command.php:709 +msgid "You are not subscribed to anyone." +msgstr "" + +#: lib/command.php:711 +#, fuzzy +msgid "You are subscribed to this person:" +msgid_plural "You are subscribed to these people:" +msgstr[0] "You are subscribed to this person:" +msgstr[1] "You are subscribed to these people:" + +#: lib/command.php:731 +msgid "No one is subscribed to you." +msgstr "" + +#: lib/command.php:733 +#, fuzzy +msgid "This person is subscribed to you:" +msgid_plural "These people are subscribed to you:" +msgstr[0] "This person is subscribed to you:" +msgstr[1] "These people are subscribed to you:" + +#: lib/command.php:753 +msgid "You are not a member of any groups." +msgstr "" + +#: lib/command.php:755 +#, fuzzy +msgid "You are a member of this group:" +msgid_plural "You are a member of these groups:" +msgstr[0] "You are a member of this group:" +msgstr[1] "You are a member of these groups:" + +#: lib/command.php:769 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"groups - lists the groups you have joined\n" +"subscriptions - list the people you follow\n" +"subscribers - list the people that follow you\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" +"lose - force user to stop following you\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"repeat # - repeat a notice with a given id\n" +"repeat - repeat the last notice from user\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:148 +msgid "No configuration file found. " +msgstr "" + +#: lib/common.php:149 +msgid "I looked for configuration files in the following places: " +msgstr "" + +#: lib/common.php:151 +msgid "You may wish to run the installer to fix this." +msgstr "" + +#: lib/common.php:152 +msgid "Go to the installer." +msgstr "" + +#: lib/connectsettingsaction.php:110 +msgid "IM" +msgstr "IM" + +#: lib/connectsettingsaction.php:111 +msgid "Updates by instant messenger (IM)" +msgstr "" + +#: lib/connectsettingsaction.php:116 +msgid "Updates by SMS" +msgstr "" + +#: lib/connectsettingsaction.php:120 +msgid "Connections" +msgstr "" + +#: lib/connectsettingsaction.php:121 +msgid "Authorized connected applications" +msgstr "" + +#: lib/dberroraction.php:60 +msgid "Database error" +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:418 +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/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 "Mignon ur mignon (FOAF)" + +#: lib/feedlist.php:64 +msgid "Export data" +msgstr "" + +#: lib/galleryaction.php:121 +msgid "Filter tags" +msgstr "Silañ ar balizennoù" + +#: lib/galleryaction.php:131 +msgid "All" +msgstr "An holl" + +#: lib/galleryaction.php:139 +msgid "Select tag to filter" +msgstr "" + +#: lib/galleryaction.php:140 +msgid "Tag" +msgstr "Merk" + +#: lib/galleryaction.php:141 +msgid "Choose a tag to narrow list" +msgstr "" + +#: lib/galleryaction.php:143 +msgid "Go" +msgstr "Mont" + +#: lib/grantroleform.php:91 +#, php-format +msgid "Grant this user the \"%s\" role" +msgstr "" + +#: lib/groupeditform.php:163 +msgid "URL of the homepage or blog of the group or topic" +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/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:85 +msgid "Group" +msgstr "Strollad" + +#: lib/groupnav.php:101 +msgid "Blocked" +msgstr "Stanket" + +#: lib/groupnav.php:102 +#, php-format +msgid "%s blocked users" +msgstr "%s implijer stanket" + +#: lib/groupnav.php:108 +#, php-format +msgid "Edit %s group properties" +msgstr "" + +#: lib/groupnav.php:113 +msgid "Logo" +msgstr "Logo" + +#: lib/groupnav.php:114 +#, php-format +msgid "Add or edit %s logo" +msgstr "" + +#: lib/groupnav.php:120 +#, 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:103 +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/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:109 +msgid "Unsupported image file format." +msgstr "" + +#: lib/imagefile.php:122 +msgid "Lost our file." +msgstr "" + +#: lib/imagefile.php:166 lib/imagefile.php:231 +msgid "Unknown file type" +msgstr "" + +#: lib/imagefile.php:251 +msgid "MB" +msgstr "Mo" + +#: lib/imagefile.php:253 +msgid "kB" +msgstr "Ko" + +#: lib/jabber.php:220 +#, php-format +msgid "[%s]" +msgstr "[%s]" + +#: lib/jabber.php:400 +#, php-format +msgid "Unknown inbox source %d." +msgstr "" + +#: lib/joinform.php:114 +msgid "Join" +msgstr "Stagañ" + +#: lib/leaveform.php:114 +msgid "Leave" +msgstr "Kuitañ" + +#: lib/logingroupnav.php:80 +msgid "Login with a username and password" +msgstr "" + +#: lib/logingroupnav.php:86 +msgid "Sign up for a new account" +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:236 +#, php-format +msgid "%1$s is now listening to your notices on %2$s." +msgstr "" + +#: lib/mail.php:241 +#, 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:258 +#, php-format +msgid "Bio: %s" +msgstr "" + +#: lib/mail.php:286 +#, php-format +msgid "New email address for posting to %s" +msgstr "" + +#: lib/mail.php:289 +#, 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/mail.php:413 +#, php-format +msgid "%s status" +msgstr "Statud %s" + +#: lib/mail.php:439 +msgid "SMS confirmation" +msgstr "" + +#: lib/mail.php:463 +#, php-format +msgid "You've been nudged by %s" +msgstr "" + +#: lib/mail.php:467 +#, 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:510 +#, php-format +msgid "New private message from %s" +msgstr "Kemenadenn personel nevez a-berzh %s" + +#: lib/mail.php:514 +#, 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:559 +#, php-format +msgid "%s (@%s) added your notice as a favorite" +msgstr "" + +#: lib/mail.php:561 +#, 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:624 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + +#: lib/mail.php:626 +#, 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: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:482 +msgid "from" +msgstr "eus" + +#: lib/mailhandler.php:37 +msgid "Could not parse message." +msgstr "" + +#: lib/mailhandler.php:42 +msgid "Not a registered user." +msgstr "" + +#: lib/mailhandler.php:46 +msgid "Sorry, that is not your incoming email address." +msgstr "" + +#: lib/mailhandler.php:50 +msgid "Sorry, no incoming email allowed." +msgstr "" + +#: lib/mailhandler.php:228 +#, php-format +msgid "Unsupported message type: %s" +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 file type on this server." +msgstr "" + +#: lib/messageform.php:120 +msgid "Send a direct notice" +msgstr "" + +#: lib/messageform.php:146 +msgid "To" +msgstr "Da" + +#: lib/messageform.php:159 lib/noticeform.php:185 +msgid "Available characters" +msgstr "" + +#: lib/messageform.php:178 lib/noticeform.php:236 +msgctxt "Send button for sending notice" +msgid "Send" +msgstr "" + +#: lib/noticeform.php:160 +msgid "Send a notice" +msgstr "Kas un ali" + +#: lib/noticeform.php:173 +#, php-format +msgid "What's up, %s?" +msgstr "Penaos 'mañ kont, %s ?" + +#: lib/noticeform.php:192 +msgid "Attach" +msgstr "Stagañ" + +#: lib/noticeform.php:196 +msgid "Attach a file" +msgstr "Stagañ ur restr" + +#: lib/noticeform.php:212 +msgid "Share my location" +msgstr "" + +#: lib/noticeform.php:215 +msgid "Do not share my location" +msgstr "" + +#: lib/noticeform.php:216 +msgid "" +"Sorry, retrieving your geo location is taking longer than expected, please " +"try again later" +msgstr "" + +#: lib/noticelist.php:429 +#, php-format +msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" +msgstr "" + +#: lib/noticelist.php:430 +msgid "N" +msgstr "N" + +#: lib/noticelist.php:430 +msgid "S" +msgstr "S" + +#: lib/noticelist.php:431 +msgid "E" +msgstr "R" + +#: lib/noticelist.php:431 +msgid "W" +msgstr "K" + +#: lib/noticelist.php:438 +msgid "at" +msgstr "e" + +#: lib/noticelist.php:566 +msgid "in context" +msgstr "" + +#: lib/noticelist.php:601 +msgid "Repeated by" +msgstr "" + +#: lib/noticelist.php:628 +msgid "Reply to this notice" +msgstr "" + +#: lib/noticelist.php:629 +msgid "Reply" +msgstr "Respont" + +#: lib/noticelist.php:673 +msgid "Notice repeated" +msgstr "" + +#: lib/nudgeform.php:116 +msgid "Nudge this user" +msgstr "Kas ur blinkadenn d'an implijer-mañ" + +#: lib/nudgeform.php:128 +msgid "Nudge" +msgstr "Blinkadenn" + +#: lib/nudgeform.php:128 +msgid "Send a nudge to this user" +msgstr "Kas ur blinkadenn d'an implijer-mañ" + +#: 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 +msgid "Duplicate notice" +msgstr "Eilañ an ali" + +#: lib/oauthstore.php:490 +msgid "Couldn't insert new subscription." +msgstr "" + +#: lib/personalgroupnav.php:99 +msgid "Personal" +msgstr "Hiniennel" + +#: lib/personalgroupnav.php:104 +msgid "Replies" +msgstr "Respontoù" + +#: lib/personalgroupnav.php:114 +msgid "Favorites" +msgstr "Pennrolloù" + +#: lib/personalgroupnav.php:125 +msgid "Inbox" +msgstr "Boest resev" + +#: lib/personalgroupnav.php:126 +msgid "Your incoming messages" +msgstr "ar gemennadennoù o peus resevet" + +#: lib/personalgroupnav.php:130 +msgid "Outbox" +msgstr "Boest kas" + +#: lib/personalgroupnav.php:131 +msgid "Your sent messages" +msgstr "Ar c'hemenadennoù kaset ganeoc'h" + +#: lib/personaltagcloudsection.php:56 +#, php-format +msgid "Tags in %s's notices" +msgstr "" + +#: lib/plugin.php:114 +msgid "Unknown" +msgstr "Dianav" + +#: lib/profileaction.php:109 lib/profileaction.php:194 lib/subgroupnav.php:82 +msgid "Subscriptions" +msgstr "Koumanantoù" + +#: lib/profileaction.php:126 +msgid "All subscriptions" +msgstr "" + +#: lib/profileaction.php:142 lib/profileaction.php:203 lib/subgroupnav.php:90 +msgid "Subscribers" +msgstr "Ar re koumanantet" + +#: lib/profileaction.php:159 +msgid "All subscribers" +msgstr "An holl re koumanantet" + +#: lib/profileaction.php:180 +msgid "User ID" +msgstr "ID an implijer" + +#: lib/profileaction.php:185 +msgid "Member since" +msgstr "Ezel abaoe" + +#: lib/profileaction.php:247 +msgid "All groups" +msgstr "An holl strolladoù" + +#: lib/profileformaction.php:123 +msgid "No return-to arguments." +msgstr "" + +#: lib/profileformaction.php:137 +msgid "Unimplemented method." +msgstr "" + +#: lib/publicgroupnav.php:78 +msgid "Public" +msgstr "Foran" + +#: lib/publicgroupnav.php:82 +msgid "User groups" +msgstr "Strolladoù implijerien" + +#: 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 "Poblek" + +#: lib/repeatform.php:107 +msgid "Repeat this notice?" +msgstr "Adkregiñ gant an ali-mañ ?" + +#: lib/repeatform.php:132 +msgid "Repeat this notice" +msgstr "Adkregiñ gant an ali-mañ" + +#: lib/revokeroleform.php:91 +#, fuzzy, php-format +msgid "Revoke the \"%s\" role from this user" +msgstr "Stankañ an implijer-mañ eus ar strollad-se" + +#: lib/router.php:671 +msgid "No single user defined for single-user mode." +msgstr "" + +#: lib/sandboxform.php:67 +msgid "Sandbox" +msgstr "Poull-traezh" + +#: lib/sandboxform.php:78 +msgid "Sandbox this user" +msgstr "" + +#: lib/searchaction.php:120 +msgid "Search site" +msgstr "Klask el lec'hienn" + +#: lib/searchaction.php:126 +msgid "Keyword(s)" +msgstr "Ger(ioù) alc'hwez" + +#: lib/searchaction.php:127 +msgid "Search" +msgstr "Klask" + +#: lib/searchaction.php:162 +msgid "Search help" +msgstr "Skoazell diwar-benn ar c'hlask" + +#: lib/searchgroupnav.php:80 +msgid "People" +msgstr "Tud" + +#: lib/searchgroupnav.php:81 +msgid "Find people on this site" +msgstr "Klask tud el lec'hienn-mañ" + +#: lib/searchgroupnav.php:83 +msgid "Find content of notices" +msgstr "Klask alioù en danvez" + +#: lib/searchgroupnav.php:85 +msgid "Find groups on this site" +msgstr "Klask strolladoù el lec'hienn-mañ" + +#: lib/section.php:89 +msgid "Untitled section" +msgstr "" + +#: lib/section.php:106 +msgid "More..." +msgstr "Muioc'h..." + +#: lib/silenceform.php:67 +msgid "Silence" +msgstr "Didrouz" + +#: lib/silenceform.php:78 +msgid "Silence this user" +msgstr "" + +#: lib/subgroupnav.php:83 +#, php-format +msgid "People %s subscribes to" +msgstr "" + +#: lib/subgroupnav.php:91 +#, php-format +msgid "People subscribed to %s" +msgstr "" + +#: lib/subgroupnav.php:99 +#, php-format +msgid "Groups %s is a member of" +msgstr "" + +#: lib/subgroupnav.php:105 +msgid "Invite" +msgstr "Pediñ" + +#: lib/subgroupnav.php:106 +#, php-format +msgid "Invite friends and colleagues to join you on %s" +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/tagcloudsection.php:56 +msgid "None" +msgstr "Hini ebet" + +#: lib/topposterssection.php:74 +msgid "Top posters" +msgstr "" + +#: lib/unsandboxform.php:69 +msgid "Unsandbox" +msgstr "" + +#: lib/unsandboxform.php:80 +msgid "Unsandbox this user" +msgstr "" + +#: lib/unsilenceform.php:67 +msgid "Unsilence" +msgstr "" + +#: lib/unsilenceform.php:78 +msgid "Unsilence this user" +msgstr "" + +#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 +msgid "Unsubscribe from this user" +msgstr "" + +#: lib/unsubscribeform.php:137 +msgid "Unsubscribe" +msgstr "" + +#: lib/userprofile.php:116 +msgid "Edit Avatar" +msgstr "Kemmañ an Avatar" + +#: lib/userprofile.php:236 +msgid "User actions" +msgstr "Obererezh an implijer" + +#: lib/userprofile.php:251 +msgid "Edit profile settings" +msgstr "" + +#: lib/userprofile.php:252 +msgid "Edit" +msgstr "Aozañ" + +#: lib/userprofile.php:275 +msgid "Send a direct message to this user" +msgstr "Kas ur gemennadenn war-eeun d'an implijer-mañ" + +#: lib/userprofile.php:276 +msgid "Message" +msgstr "Kemennadenn" + +#: lib/userprofile.php:314 +msgid "Moderate" +msgstr "Habaskaat" + +#: lib/userprofile.php:352 +#, fuzzy +msgid "User role" +msgstr "Strolladoù implijerien" + +#: lib/userprofile.php:354 +#, fuzzy +msgctxt "role" +msgid "Administrator" +msgstr "Merourien" + +#: lib/userprofile.php:355 +#, fuzzy +msgctxt "role" +msgid "Moderator" +msgstr "Habaskaat" + +#: lib/util.php:1015 +msgid "a few seconds ago" +msgstr "un nebeud eilennoù zo" + +#: lib/util.php:1017 +msgid "about a minute ago" +msgstr "1 vunutenn zo well-wazh" + +#: lib/util.php:1019 +#, php-format +msgid "about %d minutes ago" +msgstr "%d munutenn zo well-wazh" + +#: lib/util.php:1021 +msgid "about an hour ago" +msgstr "1 eurvezh zo well-wazh" + +#: lib/util.php:1023 +#, php-format +msgid "about %d hours ago" +msgstr "%d eurvezh zo well-wazh" + +#: lib/util.php:1025 +msgid "about a day ago" +msgstr "1 devezh zo well-wazh" + +#: lib/util.php:1027 +#, php-format +msgid "about %d days ago" +msgstr "%d devezh zo well-wazh" + +#: lib/util.php:1029 +msgid "about a month ago" +msgstr "miz zo well-wazh" + +#: lib/util.php:1031 +#, php-format +msgid "about %d months ago" +msgstr "%d miz zo well-wazh" + +#: lib/util.php:1033 +msgid "about a year ago" +msgstr "bloaz zo well-wazh" + +#: 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 "" + +#: lib/xmppmanager.php:402 +#, php-format +msgid "Message too long - maximum is %1$d characters, you sent %2$d." +msgstr "" +"Re hir eo ar gemennadenn - ar ment brasañ a zo %1$d arouezenn, %2$d " +"arouezenn o peus lakaet." diff --git a/locale/statusnet.po b/locale/statusnet.po index b7a421fd47..b4b22d3114 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: 2010-03-04 18:55+0000\n" +"POT-Creation-Date: 2010-03-04 19:12+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" From fc3b53853f177e98c10f44c14a3125221ce3e83c Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Thu, 4 Mar 2010 11:18:30 -0800 Subject: [PATCH 327/362] Make indenting consistent in README --- README | 516 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 258 insertions(+), 258 deletions(-) diff --git a/README b/README index 0518e9a5ac..9b6e957dd8 100644 --- a/README +++ b/README @@ -35,7 +35,7 @@ Identi.ca . It is shared with you in hope that you too make an Open Software Service available to your users. To learn more, please see the Open Software Service Definition 1.1: - http://www.opendefinition.org/ossd + http://www.opendefinition.org/ossd StatusNet, Inc. also offers this software as a Web service, requiring no installation on your part. The software run @@ -254,11 +254,11 @@ especially if you've previously installed PHP/MySQL packages. 3. Make your target directory writeable by the Web server. - chmod a+w /var/www/statusnet/ + chmod a+w /var/www/statusnet/ On some systems, this will probably work: - chgrp www-data /var/www/statusnet/ + chgrp www-data /var/www/statusnet/ chmod g+w /var/www/statusnet/ If your Web server runs as another user besides "www-data", try @@ -269,9 +269,9 @@ especially if you've previously installed PHP/MySQL packages. file subdirectories writeable by the Web server. An insecure way to do this is: - chmod a+w /var/www/statusnet/avatar - chmod a+w /var/www/statusnet/background - chmod a+w /var/www/statusnet/file + chmod a+w /var/www/statusnet/avatar + chmod a+w /var/www/statusnet/background + chmod a+w /var/www/statusnet/file You can also make the avatar, background, and file directories writeable by the Web server group, as noted above. @@ -279,7 +279,7 @@ especially if you've previously installed PHP/MySQL packages. 5. Create a database to hold your microblog data. Something like this should work: - mysqladmin -u "username" --password="password" create statusnet + mysqladmin -u "username" --password="password" create statusnet Note that StatusNet must have its own database; you can't share the database with another program. You can name it whatever you want, @@ -293,9 +293,9 @@ especially if you've previously installed PHP/MySQL packages. database. If you have shell access, this will probably work from the MySQL shell: - GRANT ALL on statusnet.* - TO 'statusnetuser'@'localhost' - IDENTIFIED BY 'statusnetpassword'; + GRANT ALL on statusnet.* + TO 'statusnetuser'@'localhost' + IDENTIFIED BY 'statusnetpassword'; You should change 'statusnetuser' and 'statusnetpassword' to your preferred new username and password. You may want to test logging in to MySQL as @@ -303,7 +303,7 @@ especially if you've previously installed PHP/MySQL packages. 7. In a browser, navigate to the StatusNet install script; something like: - http://yourserver.example.com/statusnet/install.php + http://yourserver.example.com/statusnet/install.php Enter the database connection information and your site name. The install program will configure your site and install the initial, @@ -357,7 +357,7 @@ your server. You should now be able to navigate to a "fancy" URL on your server, like: - http://example.net/statusnet/main/register + http://example.net/statusnet/main/register If you changed your HTTP server configuration, you may need to restart the server first. @@ -368,11 +368,11 @@ directory is 'All' in your Apache configuration file. This is usually /etc/apache2/sites-available/default. See the Apache documentation for .htaccess files for more details: - http://httpd.apache.org/docs/2.2/howto/htaccess.html + http://httpd.apache.org/docs/2.2/howto/htaccess.html Also, check that mod_rewrite is installed and enabled: - http://httpd.apache.org/docs/2.2/mod/mod_rewrite.html + http://httpd.apache.org/docs/2.2/mod/mod_rewrite.html Sphinx ------ @@ -380,8 +380,8 @@ Sphinx To use a Sphinx server to search users and notices, you'll need to enable the SphinxSearch plugin. Add to your config.php: - addPlugin('SphinxSearch'); - $config['sphinx']['server'] = 'searchhost.local'; + addPlugin('SphinxSearch'); + $config['sphinx']['server'] = 'searchhost.local'; You also need to install, compile and enable the sphinx pecl extension for php on the client side, which itself depends on the sphinx development files. @@ -416,26 +416,26 @@ For this to work, there *must* be a domain or sub-domain for which all 2. Make sure the maildaemon.php file is executable: - chmod +x scripts/maildaemon.php + chmod +x scripts/maildaemon.php Note that "daemon" is kind of a misnomer here; the script is more of a filter than a daemon. 2. Edit /etc/aliases on your mail server and add the following line: - *: /path/to/statusnet/scripts/maildaemon.php + *: /path/to/statusnet/scripts/maildaemon.php 3. Run whatever code you need to to update your aliases database. For many mail servers (Postfix, Exim, Sendmail), this should work: - newaliases + newaliases You may need to restart your mail server for the new database to take effect. 4. Set the following in your config.php file: - $config['mail']['domain'] = 'yourdomain.example.net'; + $config['mail']['domain'] = 'yourdomain.example.net'; At this point, post-by-email and post-by-SMS-gateway should work. Note that if your mail server is on a different computer from your email @@ -489,7 +489,7 @@ search, indexing, bridging, or other cool services. To configure a downstream site to receive your public stream, add their "JID" (Jabber ID) to your config.php as follows: - $config['xmpp']['public'][] = 'downstream@example.net'; + $config['xmpp']['public'][] = 'downstream@example.net'; (Don't miss those square brackets at the end.) Note that your XMPP broadcasting must be configured as mentioned above. Although you can @@ -518,7 +518,7 @@ server is probably a good idea for high-volume sites. 3. In your config.php files (both the Web server and the queues server!), set the following variable: - $config['queue']['enabled'] = true; + $config['queue']['enabled'] = true; You may also want to look at the 'daemon' section of this file for more daemon options. Note that if you set the 'user' and/or 'group' @@ -577,15 +577,15 @@ following files: display.css: a CSS2 file for "default" styling for all browsers. ie6.css: a CSS2 file for override styling for fixing up Internet - Explorer 6. + Explorer 6. ie7.css: a CSS2 file for override styling for fixing up Internet - Explorer 7. + Explorer 7. logo.png: a logo image for the site. default-avatar-profile.png: a 96x96 pixel image to use as the avatar for - users who don't upload their own. + users who don't upload their own. default-avatar-stream.png: Ditto, but 48x48. For streams of notices. default-avatar-mini.png: Ditto ditto, but 24x24. For subscriptions - listing on profile pages. + listing on profile pages. You may want to start by copying the files from the default theme to your own directory. @@ -634,17 +634,17 @@ Access to file attachments can also be restricted to logged-in users only. 1. Add a directory outside the web root where your file uploads will be stored. Usually a command like this will work: - mkdir /var/www/statusnet-files + mkdir /var/www/statusnet-files 2. Make the file uploads directory writeable by the web server. An insecure way to do this is: - chmod a+x /var/www/statusnet-files + chmod a+x /var/www/statusnet-files 3. Tell StatusNet to use this directory for file uploads. Add a line like this to your config.php: - $config['attachments']['dir'] = '/var/www/statusnet-files'; + $config['attachments']['dir'] = '/var/www/statusnet-files'; Upgrading ========= @@ -696,12 +696,12 @@ instructions; read to the end first before trying them. If your database is at version 0.8.0 or above, you can run a special upgrade script: - mysql -u -p db/08to09.sql + mysql -u -p db/08to09.sql Otherwise, go to your StatusNet directory and AFTER YOU MAKE A BACKUP run the rebuilddb.sh script like this: - ./scripts/rebuilddb.sh rootuser rootpassword database db/statusnet.sql + ./scripts/rebuilddb.sh rootuser rootpassword database db/statusnet.sql Here, rootuser and rootpassword are the username and password for a user who can drop and create databases as well as tables; typically @@ -785,7 +785,7 @@ Almost all configuration options are made through a two-dimensional associative array, cleverly named $config. A typical configuration line will be: - $config['section']['option'] = value; + $config['section']['option'] = value; For brevity, the following documentation describes each section and option. @@ -798,78 +798,78 @@ This section is a catch-all for site-wide variables. name: the name of your site, like 'YourCompany Microblog'. server: the server part of your site's URLs, like 'example.net'. path: The path part of your site's URLs, like 'statusnet' or '' - (installed in root). + (installed in root). fancy: whether or not your site uses fancy URLs (see Fancy URLs - section above). Default is false. + section above). Default is false. logfile: full path to a file for StatusNet to save logging - information to. You may want to use this if you don't have - access to syslog. + information to. You may want to use this if you don't have + access to syslog. logdebug: whether to log additional debug info like backtraces on - hard errors. Default false. + hard errors. Default false. locale_path: full path to the directory for locale data. Unless you - store all your locale data in one place, you probably - don't need to use this. + store all your locale data in one place, you probably + don't need to use this. language: default language for your site. Defaults to US English. - Note that this is overridden if a user is logged in and has - selected a different language. It is also overridden if the - user is NOT logged in, but their browser requests a different - langauge. Since pretty much everybody's browser requests a - language, that means that changing this setting has little or - no effect in practice. + Note that this is overridden if a user is logged in and has + selected a different language. It is also overridden if the + user is NOT logged in, but their browser requests a different + langauge. Since pretty much everybody's browser requests a + language, that means that changing this setting has little or + no effect in practice. languages: A list of languages supported on your site. Typically you'd - only change this if you wanted to disable support for one - or another language: - "unset($config['site']['languages']['de'])" will disable - support for German. + only change this if you wanted to disable support for one + or another language: + "unset($config['site']['languages']['de'])" will disable + support for German. theme: Theme for your site (see Theme section). Two themes are - provided by default: 'default' and 'stoica' (the one used by - Identi.ca). It's appreciated if you don't use the 'stoica' theme - except as the basis for your own. + provided by default: 'default' and 'stoica' (the one used by + Identi.ca). It's appreciated if you don't use the 'stoica' theme + except as the basis for your own. email: contact email address for your site. By default, it's extracted - from your Web server environment; you may want to customize it. + from your Web server environment; you may want to customize it. broughtbyurl: name of an organization or individual who provides the - service. Each page will include a link to this name in the - footer. A good way to link to the blog, forum, wiki, - corporate portal, or whoever is making the service available. + service. Each page will include a link to this name in the + footer. A good way to link to the blog, forum, wiki, + corporate portal, or whoever is making the service available. broughtby: text used for the "brought by" link. timezone: default timezone for message display. Users can set their - own time zone. Defaults to 'UTC', which is a pretty good default. + own time zone. Defaults to 'UTC', which is a pretty good default. closed: If set to 'true', will disallow registration on your site. This is a cheap way to restrict accounts to only one individual or group; just register the accounts you want on the service, *then* set this variable to 'true'. inviteonly: If set to 'true', will only allow registration if the user - was invited by an existing user. + was invited by an existing user. private: If set to 'true', anonymous users will be redirected to the - 'login' page. Also, API methods that normally require no - authentication will require it. Note that this does not turn - off registration; use 'closed' or 'inviteonly' for the - behaviour you want. + 'login' page. Also, API methods that normally require no + authentication will require it. Note that this does not turn + off registration; use 'closed' or 'inviteonly' for the + behaviour you want. notice: A plain string that will appear on every page. A good place to put introductory information about your service, or info about upgrades and outages, or other community info. Any HTML will - be escaped. + be escaped. logo: URL of an image file to use as the logo for the site. Overrides - the logo in the theme, if any. + the logo in the theme, if any. ssl: Whether to use SSL and https:// URLs for some or all pages. - Possible values are 'always' (use it for all pages), 'never' - (don't use it for any pages), or 'sometimes' (use it for - sensitive pages that include passwords like login and registration, - but not for regular pages). Default to 'never'. + Possible values are 'always' (use it for all pages), 'never' + (don't use it for any pages), or 'sometimes' (use it for + sensitive pages that include passwords like login and registration, + but not for regular pages). Default to 'never'. sslserver: use an alternate server name for SSL URLs, like - 'secure.example.org'. You should be careful to set cookie - parameters correctly so that both the SSL server and the - "normal" server can access the session cookie and - preferably other cookies as well. + 'secure.example.org'. You should be careful to set cookie + parameters correctly so that both the SSL server and the + "normal" server can access the session cookie and + preferably other cookies as well. shorturllength: Length of URL at which URLs in a message exceeding 140 - characters will be sent to the user's chosen - shortening service. + characters will be sent to the user's chosen + shortening service. dupelimit: minimum time allowed for one person to say the same thing - twice. Default 60s. Anything lower is considered a user - or UI error. + twice. Default 60s. Anything lower is considered a user + or UI error. textlimit: default max size for texts in the site. Defaults to 140. - 0 means no limit. Can be fine-tuned for notices, messages, - profile bios and group descriptions. + 0 means no limit. Can be fine-tuned for notices, messages, + profile bios and group descriptions. db -- @@ -879,24 +879,24 @@ DB_DataObject (see ). The ones that you may want to set are listed below for clarity. database: a DSN (Data Source Name) for your StatusNet database. This is - in the format 'protocol://username:password@hostname/databasename', - where 'protocol' is 'mysql' or 'mysqli' (or possibly 'postgresql', if you - really know what you're doing), 'username' is the username, - 'password' is the password, and etc. + in the format 'protocol://username:password@hostname/databasename', + where 'protocol' is 'mysql' or 'mysqli' (or possibly 'postgresql', if you + really know what you're doing), 'username' is the username, + 'password' is the password, and etc. ini_yourdbname: if your database is not named 'statusnet', you'll need - to set this to point to the location of the - statusnet.ini file. Note that the real name of your database - should go in there, not literally 'yourdbname'. + to set this to point to the location of the + statusnet.ini file. Note that the real name of your database + should go in there, not literally 'yourdbname'. db_driver: You can try changing this to 'MDB2' to use the other driver - type for DB_DataObject, but note that it breaks the OpenID - libraries, which only support PEAR::DB. + type for DB_DataObject, but note that it breaks the OpenID + libraries, which only support PEAR::DB. debug: On a database error, you may get a message saying to set this - value to 5 to see debug messages in the browser. This breaks - just about all pages, and will also expose the username and - password + value to 5 to see debug messages in the browser. This breaks + just about all pages, and will also expose the username and + password quote_identifiers: Set this to true if you're using postgresql. type: either 'mysql' or 'postgresql' (used for some bits of - database-type-specific SQL in the code). Defaults to mysql. + database-type-specific SQL in the code). Defaults to mysql. mirror: you can set this to an array of DSNs, like the above 'database' value. If it's set, certain read-only actions will use a random value out of this array for the database, rather @@ -906,17 +906,17 @@ mirror: you can set this to an array of DSNs, like the above requests to go to the 'database' (master) server, you'll need to include it in this array, too. utf8: whether to talk to the database in UTF-8 mode. This is the default - with new installations, but older sites may want to turn it off - until they get their databases fixed up. See "UTF-8 database" - above for details. + with new installations, but older sites may want to turn it off + until they get their databases fixed up. See "UTF-8 database" + above for details. schemacheck: when to let plugins check the database schema to add - tables or update them. Values can be 'runtime' (default) - or 'script'. 'runtime' can be costly (plugins check the - schema on every hit, adding potentially several db - queries, some quite long), but not everyone knows how to - run a script. If you can, set this to 'script' and run - scripts/checkschema.php whenever you install or upgrade a - plugin. + tables or update them. Values can be 'runtime' (default) + or 'script'. 'runtime' can be costly (plugins check the + schema on every hit, adding potentially several db + queries, some quite long), but not everyone knows how to + run a script. If you can, set this to 'script' and run + scripts/checkschema.php whenever you install or upgrade a + plugin. syslog ------ @@ -925,13 +925,13 @@ By default, StatusNet sites log error messages to the syslog facility. (You can override this using the 'logfile' parameter described above). appname: The name that StatusNet uses to log messages. By default it's - "statusnet", but if you have more than one installation on the - server, you may want to change the name for each instance so - you can track log messages more easily. + "statusnet", but if you have more than one installation on the + server, you may want to change the name for each instance so + you can track log messages more easily. priority: level to log at. Currently ignored. facility: what syslog facility to used. Defaults to LOG_USER, only - reset if you know what syslog is and have a good reason - to change it. + reset if you know what syslog is and have a good reason + to change it. queue ----- @@ -942,51 +942,51 @@ sending out SMS email or XMPP messages, for off-line processing. See enabled: Whether to uses queues. Defaults to false. subsystem: Which kind of queueserver to use. Values include "db" for - our hacked-together database queuing (no other server - required) and "stomp" for a stomp server. + our hacked-together database queuing (no other server + required) and "stomp" for a stomp server. stomp_server: "broker URI" for stomp server. Something like - "tcp://hostname:61613". More complicated ones are - possible; see your stomp server's documentation for - details. + "tcp://hostname:61613". More complicated ones are + possible; see your stomp server's documentation for + details. queue_basename: a root name to use for queues (stomp only). Typically - something like '/queue/sitename/' makes sense. If running - multiple instances on the same server, make sure that - either this setting or $config['site']['nickname'] are - unique for each site to keep them separate. + something like '/queue/sitename/' makes sense. If running + multiple instances on the same server, make sure that + either this setting or $config['site']['nickname'] are + unique for each site to keep them separate. stomp_username: username for connecting to the stomp server; defaults - to null. + to null. stomp_password: password for connecting to the stomp server; defaults - to null. + to null. stomp_persistent: keep items across queue server restart, if enabled. softlimit: an absolute or relative "soft memory limit"; daemons will - restart themselves gracefully when they find they've hit - this amount of memory usage. Defaults to 90% of PHP's global - memory_limit setting. + restart themselves gracefully when they find they've hit + this amount of memory usage. Defaults to 90% of PHP's global + memory_limit setting. inboxes: delivery of messages to receiver's inboxes can be delayed to - queue time for best interactive performance on the sender. - This may however be annoyingly slow when using the DB queues, - so you can set this to false if it's causing trouble. + queue time for best interactive performance on the sender. + This may however be annoyingly slow when using the DB queues, + so you can set this to false if it's causing trouble. breakout: for stomp, individual queues are by default grouped up for - best scalability. If some need to be run by separate daemons, - etc they can be manually adjusted here. + best scalability. If some need to be run by separate daemons, + etc they can be manually adjusted here. - Default will share all queues for all sites within each group. - Specify as / or //, - using nickname identifier as site. + Default will share all queues for all sites within each group. + Specify as / or //, + using nickname identifier as site. - 'main/distrib' separate "distrib" queue covering all sites - 'xmpp/xmppout/mysite' separate "xmppout" queue covering just 'mysite' + 'main/distrib' separate "distrib" queue covering all sites + 'xmpp/xmppout/mysite' separate "xmppout" queue covering just 'mysite' max_retries: for stomp, drop messages after N failed attempts to process. - Defaults to 10. + Defaults to 10. dead_letter_dir: for stomp, optional directory to dump data on failed - queue processing events after discarding them. + queue processing events after discarding them. license ------- @@ -997,11 +997,11 @@ choice for any public site. Note that some other servers will not accept notices if you apply a stricter license than this. type: one of 'cc' (for Creative Commons licenses), 'allrightsreserved' - (default copyright), or 'private' (for private and confidential - information). + (default copyright), or 'private' (for private and confidential + information). owner: for 'allrightsreserved' or 'private', an assigned copyright - holder (for example, an employer for a private site). If - not specified, will be attributed to 'contributors'. + holder (for example, an employer for a private site). If + not specified, will be attributed to 'contributors'. url: URL of the license, used for links. title: Title for the license, like 'Creative Commons Attribution 3.0'. image: A button shown on each page for the license. @@ -1013,7 +1013,7 @@ This is for configuring out-going email. We use PEAR's Mail module, see: http://pear.php.net/manual/en/package.mail.mail.factory.php backend: the backend to use for mail, one of 'mail', 'sendmail', and - 'smtp'. Defaults to PEAR's default, 'mail'. + 'smtp'. Defaults to PEAR's default, 'mail'. params: if the mail backend requires any parameters, you can provide them in an associative array. @@ -1023,24 +1023,24 @@ nickname This is for configuring nicknames in the service. blacklist: an array of strings for usernames that may not be - registered. A default array exists for strings that are - used by StatusNet (e.g. 'doc', 'main', 'avatar', 'theme') - but you may want to add others if you have other software - installed in a subdirectory of StatusNet or if you just - don't want certain words used as usernames. + registered. A default array exists for strings that are + used by StatusNet (e.g. 'doc', 'main', 'avatar', 'theme') + but you may want to add others if you have other software + installed in a subdirectory of StatusNet or if you just + don't want certain words used as usernames. featured: an array of nicknames of 'featured' users of the site. - Can be useful to draw attention to well-known users, or - interesting people, or whatever. + Can be useful to draw attention to well-known users, or + interesting people, or whatever. avatar ------ For configuring avatar access. -dir: Directory to look for avatar files and to put them into. +dir: Directory to look for avatar files and to put them into. Defaults to avatar subdirectory of install directory; if you change it, make sure to change path, too. -path: Path to avatars. Defaults to path for avatar subdirectory, +path: Path to avatars. Defaults to path for avatar subdirectory, but you can change it if you wish. Note that this will be included with the avatar server, too. server: If set, defines another server where avatars are stored in the @@ -1051,8 +1051,8 @@ server: If set, defines another server where avatars are stored in the typically only make 2 connections to a single server at a time , so this can parallelize the job. Defaults to null. -ssl: Whether to access avatars using HTTPS. Defaults to null, meaning - to guess based on site-wide SSL settings. +ssl: Whether to access avatars using HTTPS. Defaults to null, meaning + to guess based on site-wide SSL settings. public ------ @@ -1060,13 +1060,13 @@ public For configuring the public stream. localonly: If set to true, only messages posted by users of this - service (rather than other services, filtered through OMB) - are shown in the public stream. Default true. + service (rather than other services, filtered through OMB) + are shown in the public stream. Default true. blacklist: An array of IDs of users to hide from the public stream. - Useful if you have someone making excessive Twitterfeed posts - to the site, other kinds of automated posts, testing bots, etc. + Useful if you have someone making excessive Twitterfeed posts + to the site, other kinds of automated posts, testing bots, etc. autosource: Sources of notices that are from automatic posters, and thus - should be kept off the public timeline. Default empty. + should be kept off the public timeline. Default empty. theme ----- @@ -1074,15 +1074,15 @@ theme server: Like avatars, you can speed up page loading by pointing the theme file lookup to another server (virtual or real). Defaults to NULL, meaning to use the site server. -dir: Directory where theme files are stored. Used to determine +dir: Directory where theme files are stored. Used to determine whether to show parts of a theme file. Defaults to the theme subdirectory of the install directory. -path: Path part of theme URLs, before the theme name. Relative to the +path: Path part of theme URLs, before the theme name. Relative to the theme server. It may make sense to change this path when upgrading, (using version numbers as the path) to make sure that all files are reloaded by caching clients or proxies. Defaults to null, which means to use the site path + '/theme'. -ssl: Whether to use SSL for theme elements. Default is null, which means +ssl: Whether to use SSL for theme elements. Default is null, which means guess based on site SSL settings. javascript @@ -1091,9 +1091,9 @@ javascript server: You can speed up page loading by pointing the theme file lookup to another server (virtual or real). Defaults to NULL, meaning to use the site server. -path: Path part of Javascript URLs. Defaults to null, +path: Path part of Javascript URLs. Defaults to null, which means to use the site path + '/js/'. -ssl: Whether to use SSL for JavaScript files. Default is null, which means +ssl: Whether to use SSL for JavaScript files. Default is null, which means guess based on site SSL settings. xmpp @@ -1104,25 +1104,25 @@ For configuring the XMPP sub-system. enabled: Whether to accept and send messages by XMPP. Default false. server: server part of XMPP ID for update user. port: connection port for clients. Default 5222, which you probably - shouldn't need to change. + shouldn't need to change. user: username for the client connection. Users will receive messages - from 'user'@'server'. + from 'user'@'server'. resource: a unique identifier for the connection to the server. This - is actually used as a prefix for each XMPP component in the system. + is actually used as a prefix for each XMPP component in the system. password: password for the user account. host: some XMPP domains are served by machines with a different - hostname. (For example, @gmail.com GTalk users connect to - talk.google.com). Set this to the correct hostname if that's the - case with your server. + hostname. (For example, @gmail.com GTalk users connect to + talk.google.com). Set this to the correct hostname if that's the + case with your server. encryption: Whether to encrypt the connection between StatusNet and the - XMPP server. Defaults to true, but you can get - considerably better performance turning it off if you're - connecting to a server on the same machine or on a - protected network. + XMPP server. Defaults to true, but you can get + considerably better performance turning it off if you're + connecting to a server on the same machine or on a + protected network. debug: if turned on, this will make the XMPP library blurt out all of - the incoming and outgoing messages as XML stanzas. Use as a - last resort, and never turn it on if you don't have queues - enabled, since it will spit out sensitive data to the browser. + the incoming and outgoing messages as XML stanzas. Use as a + last resort, and never turn it on if you don't have queues + enabled, since it will spit out sensitive data to the browser. public: an array of JIDs to send _all_ notices to. This is useful for participating in third-party search and archiving services. @@ -1139,8 +1139,8 @@ tag Miscellaneous tagging stuff. dropoff: Decay factor for tag listing, in seconds. - Defaults to exponential decay over ten days; you can twiddle - with it to try and get better results for your site. + Defaults to exponential decay over ten days; you can twiddle + with it to try and get better results for your site. popular ------- @@ -1148,8 +1148,8 @@ popular Settings for the "popular" section of the site. dropoff: Decay factor for popularity listing, in seconds. - Defaults to exponential decay over ten days; you can twiddle - with it to try and get better results for your site. + Defaults to exponential decay over ten days; you can twiddle + with it to try and get better results for your site. daemon ------ @@ -1160,11 +1160,11 @@ piddir: directory that daemon processes should write their PID file (process ID) to. Defaults to /var/run/, which is where this stuff should usually go on Unix-ish systems. user: If set, the daemons will try to change their effective user ID - to this user before running. Probably a good idea, especially if - you start the daemons as root. Note: user name, like 'daemon', - not 1001. + to this user before running. Probably a good idea, especially if + you start the daemons as root. Note: user name, like 'daemon', + not 1001. group: If set, the daemons will try to change their effective group ID - to this named group. Again, a name, not a numerical ID. + to this named group. Again, a name, not a numerical ID. memcached --------- @@ -1176,11 +1176,11 @@ enabled: Set to true to enable. Default false. server: a string with the hostname of the memcached server. Can also be an array of hostnames, if you've got more than one server. base: memcached uses key-value pairs to store data. We build long, - funny-looking keys to make sure we don't have any conflicts. The - base of the key is usually a simplified version of the site name - (like "Identi.ca" => "identica"), but you can overwrite this if - you need to. You can safely ignore it if you only have one - StatusNet site using your memcached server. + funny-looking keys to make sure we don't have any conflicts. The + base of the key is usually a simplified version of the site name + (like "Identi.ca" => "identica"), but you can overwrite this if + you need to. You can safely ignore it if you only have one + StatusNet site using your memcached server. port: Port to connect to; defaults to 11211. emailpost @@ -1189,7 +1189,7 @@ emailpost For post-by-email. enabled: Whether to enable post-by-email. Defaults to true. You will - also need to set up maildaemon.php. + also need to set up maildaemon.php. sms --- @@ -1197,7 +1197,7 @@ sms For SMS integration. enabled: Whether to enable SMS integration. Defaults to true. Queues - should also be enabled. + should also be enabled. integration ----------- @@ -1212,7 +1212,7 @@ inboxes For notice inboxes. enabled: No longer used. If you set this to something other than true, - StatusNet will no longer run. + StatusNet will no longer run. throttle -------- @@ -1221,8 +1221,8 @@ For notice-posting throttles. enabled: Whether to throttle posting. Defaults to false. count: Each user can make this many posts in 'timespan' seconds. So, if count - is 100 and timespan is 3600, then there can be only 100 posts - from a user every hour. + is 100 and timespan is 3600, then there can be only 100 posts + from a user every hour. timespan: see 'count'. profile @@ -1231,7 +1231,7 @@ profile Profile management. biolimit: max character length of bio; 0 means no limit; null means to use - the site text limit default. + the site text limit default. newuser ------- @@ -1239,13 +1239,13 @@ newuser Options with new users. default: nickname of a user account to automatically subscribe new - users to. Typically this would be system account for e.g. - service updates or announcements. Users are able to unsub - if they want. Default is null; no auto subscribe. + users to. Typically this would be system account for e.g. + service updates or announcements. Users are able to unsub + if they want. Default is null; no auto subscribe. welcome: nickname of a user account that sends welcome messages to new - users. Can be the same as 'default' account, although on - busy servers it may be a good idea to keep that one just for - 'urgent' messages. Default is null; no message. + users. Can be the same as 'default' account, although on + busy servers it may be a good idea to keep that one just for + 'urgent' messages. Default is null; no message. If either of these special user accounts are specified, the users should be created before the configuration is updated. @@ -1262,19 +1262,19 @@ helps StatusNet developers take your needs into account when updating the software. run: string indicating when to run the statistics. Values can be 'web' - (run occasionally at Web time), 'cron' (run from a cron script), - or 'never' (don't ever run). If you set it to 'cron', remember to - schedule the script to run on a regular basis. + (run occasionally at Web time), 'cron' (run from a cron script), + or 'never' (don't ever run). If you set it to 'cron', remember to + schedule the script to run on a regular basis. frequency: if run value is 'web', how often to report statistics. - Measured in Web hits; depends on how active your site is. - Default is 10000 -- that is, one report every 10000 Web hits, - on average. + Measured in Web hits; depends on how active your site is. + Default is 10000 -- that is, one report every 10000 Web hits, + on average. reporturl: URL to post statistics to. Defaults to StatusNet developers' - report system, but if they go evil or disappear you may - need to update this to another value. Note: if you - don't want to report stats, it's much better to - set 'run' to 'never' than to set this value to something - nonsensical. + report system, but if they go evil or disappear you may + need to update this to another value. Note: if you + don't want to report stats, it's much better to + set 'run' to 'never' than to set this value to something + nonsensical. attachments ----------- @@ -1287,14 +1287,14 @@ We suggest the use of the pecl file_info extension to handle mime type detection. supported: an array of mime types you accept to store and distribute, - like 'image/gif', 'video/mpeg', 'audio/mpeg', etc. Make sure you - setup your server to properly recognize the types you want to - support. -uploads: false to disable uploading files with notices (true by default). + like 'image/gif', 'video/mpeg', 'audio/mpeg', etc. Make sure you + setup your server to properly recognize the types you want to + support. +uploads: false to disable uploading files with notices (true by default). filecommand: The required MIME_Type library may need to use the 'file' - command. It tries the one in the Web server's path, but if - you're having problems with uploads, try setting this to the - correct value. Note: 'file' must accept '-b' and '-i' options. + command. It tries the one in the Web server's path, but if + you're having problems with uploads, try setting this to the + correct value. Note: 'file' must accept '-b' and '-i' options. For quotas, be sure you've set the upload_max_filesize and post_max_size in php.ini to be large enough to handle your upload. In httpd.conf @@ -1302,26 +1302,26 @@ in php.ini to be large enough to handle your upload. In httpd.conf set too low (it's optional, so it may not be there at all). file_quota: maximum size for a single file upload in bytes. A user can send - any amount of notices with attachments as long as each attachment - is smaller than file_quota. + any amount of notices with attachments as long as each attachment + is smaller than file_quota. user_quota: total size in bytes a user can store on this server. Each user - can store any number of files as long as their total size does - not exceed the user_quota. + can store any number of files as long as their total size does + not exceed the user_quota. monthly_quota: total size permitted in the current month. This is the total - size in bytes that a user can upload each month. + size in bytes that a user can upload each month. dir: directory accessible to the Web process where uploads should go. - Defaults to the 'file' subdirectory of the install directory, which - should be writeable by the Web user. + Defaults to the 'file' subdirectory of the install directory, which + should be writeable by the Web user. server: server name to use when creating URLs for uploaded files. - Defaults to null, meaning to use the default Web server. Using - a virtual server here can speed up Web performance. + Defaults to null, meaning to use the default Web server. Using + a virtual server here can speed up Web performance. path: URL path, relative to the server, to find files. Defaults to - main path + '/file/'. + main path + '/file/'. ssl: whether to use HTTPS for file URLs. Defaults to null, meaning to - guess based on other SSL settings. + guess based on other SSL settings. filecommand: command to use for determining the type of a file. May be - skipped if fileinfo extension is installed. Defaults to - '/usr/bin/file'. + skipped if fileinfo extension is installed. Defaults to + '/usr/bin/file'. group ----- @@ -1329,10 +1329,10 @@ group Options for group functionality. maxaliases: maximum number of aliases a group can have. Default 3. Set - to 0 or less to prevent aliases in a group. + to 0 or less to prevent aliases in a group. desclimit: maximum number of characters to allow in group descriptions. - null (default) means to use the site-wide text limits. 0 - means no limit. + null (default) means to use the site-wide text limits. 0 + means no limit. oohembed -------- @@ -1347,11 +1347,11 @@ search Some stuff for search. type: type of search. Ignored if PostgreSQL or Sphinx are enabled. Can either - be 'fulltext' (default) or 'like'. The former is faster and more efficient - but requires the lame old MyISAM engine for MySQL. The latter - will work with InnoDB but could be miserably slow on large - systems. We'll probably add another type sometime in the future, - with our own indexing system (maybe like MediaWiki's). + be 'fulltext' (default) or 'like'. The former is faster and more efficient + but requires the lame old MyISAM engine for MySQL. The latter + will work with InnoDB but could be miserably slow on large + systems. We'll probably add another type sometime in the future, + with our own indexing system (maybe like MediaWiki's). sessions -------- @@ -1363,7 +1363,7 @@ handle: boolean. Whether we should register our own PHP session-handling Setting this to true makes some sense on large or multi-server sites, but it probably won't hurt for smaller ones, either. debug: whether to output debugging info for session storage. Can help - with weird session bugs, sometimes. Default false. + with weird session bugs, sometimes. Default false. background ---------- @@ -1372,14 +1372,14 @@ Users can upload backgrounds for their pages; this section defines their use. server: the server to use for background. Using a separate (even - virtual) server for this can speed up load times. Default is - null; same as site server. + virtual) server for this can speed up load times. Default is + null; same as site server. dir: directory to write backgrounds too. Default is '/background/' - subdir of install dir. + subdir of install dir. path: path to backgrounds. Default is sub-path of install path; note - that you may need to change this if you change site-path too. + that you may need to change this if you change site-path too. ssl: Whether or not to use HTTPS for background files. Defaults to - null, meaning to guess from site-wide SSL settings. + null, meaning to guess from site-wide SSL settings. ping ---- @@ -1388,7 +1388,7 @@ Using the "XML-RPC Ping" method initiated by weblogs.com, the site can notify third-party servers of updates. notify: an array of URLs for ping endpoints. Default is the empty - array (no notification). + array (no notification). design ------ @@ -1410,8 +1410,8 @@ notice Configuration options specific to notices. contentlimit: max length of the plain-text content of a notice. - Default is null, meaning to use the site-wide text limit. - 0 means no limit. + Default is null, meaning to use the site-wide text limit. + 0 means no limit. message ------- @@ -1419,8 +1419,8 @@ message Configuration options specific to messages. contentlimit: max length of the plain-text content of a message. - Default is null, meaning to use the site-wide text limit. - 0 means no limit. + Default is null, meaning to use the site-wide text limit. + 0 means no limit. logincommand ------------ @@ -1428,14 +1428,14 @@ logincommand Configuration options for the login command. disabled: whether to enable this command. If enabled, users who send - the text 'login' to the site through any channel will - receive a link to login to the site automatically in return. - Possibly useful for users who primarily use an XMPP or SMS - interface and can't be bothered to remember their site - password. Note that the security implications of this are - pretty serious and have not been thoroughly tested. You - should enable it only after you've convinced yourself that - it is safe. Default is 'false'. + the text 'login' to the site through any channel will + receive a link to login to the site automatically in return. + Possibly useful for users who primarily use an XMPP or SMS + interface and can't be bothered to remember their site + password. Note that the security implications of this are + pretty serious and have not been thoroughly tested. You + should enable it only after you've convinced yourself that + it is safe. Default is 'false'. singleuser ---------- @@ -1454,11 +1454,11 @@ Web crawlers. See http://www.robotstxt.org/ for more information on the format of this file. crawldelay: if non-empty, this value is provided as the Crawl-Delay: - for the robots.txt file. see http://ur1.ca/l5a0 - for more information. Default is zero, no explicit delay. + for the robots.txt file. see http://ur1.ca/l5a0 + for more information. Default is zero, no explicit delay. disallow: Array of (virtual) directories to disallow. Default is 'main', - 'search', 'message', 'settings', 'admin'. Ignored when site - is private, in which case the entire site ('/') is disallowed. + 'search', 'message', 'settings', 'admin'. Ignored when site + is private, in which case the entire site ('/') is disallowed. Plugins ======= From 064c45890f896f2af8a0231449fa5337bb79c509 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Thu, 4 Mar 2010 14:45:55 -0800 Subject: [PATCH 328/362] fix ver ref in upgrade instructions --- README | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README b/README index daa393cbe6..45b72e9acc 100644 --- a/README +++ b/README @@ -690,7 +690,7 @@ instructions; read to the end first before trying them. 9. Copy htaccess.sample to .htaccess in the new directory. Change the RewriteBase to use the correct path. 10. Rebuild the database. (You can safely skip this step and go to #12 - if you're upgrading from another 0.8.x version). + if you're upgrading from another 0.9.x version). NOTE: this step is destructive and cannot be reversed. YOU CAN EASILY DESTROY YOUR SITE WITH THIS STEP. Don't From 029b8c90142e08b0ed44f0528ddea7d4dcc32980 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Fri, 5 Mar 2010 02:27:01 +0000 Subject: [PATCH 329/362] Fix for errant deletion of all Twitter foreign_links --- plugins/TwitterBridge/twitter.php | 11 ++++++++++- plugins/TwitterBridge/twitterauthorization.php | 13 ++++++++++++- plugins/TwitterBridge/twittersettings.php | 11 ++++++++++- 3 files changed, 32 insertions(+), 3 deletions(-) diff --git a/plugins/TwitterBridge/twitter.php b/plugins/TwitterBridge/twitter.php index ceb83b037f..42db3c673d 100644 --- a/plugins/TwitterBridge/twitter.php +++ b/plugins/TwitterBridge/twitter.php @@ -264,7 +264,16 @@ function remove_twitter_link($flink) common_log(LOG_INFO, 'Removing Twitter bridge Foreign link for ' . "user $user->nickname (user id: $user->id)."); - $result = $flink->delete(); + $result = false; + + // Be extra careful to make sure we have a good flink + // before deleting + if (!empty($flink->user_id) + && !empty($flink->foreign_id) + && !empty($flink->service)) + { + $result = $flink->delete(); + } if (empty($result)) { common_log(LOG_ERR, 'Could not remove Twitter bridge ' . diff --git a/plugins/TwitterBridge/twitterauthorization.php b/plugins/TwitterBridge/twitterauthorization.php index c93f6666bc..029c3a44b4 100644 --- a/plugins/TwitterBridge/twitterauthorization.php +++ b/plugins/TwitterBridge/twitterauthorization.php @@ -273,7 +273,13 @@ class TwitterauthorizationAction extends Action $flink->user_id = $user_id; $flink->service = TWITTER_SERVICE; - $flink->delete(); // delete stale flink, if any + + // delete stale flink, if any + $result = $flink->find(true); + + if (!empty($result)) { + $flink->delete(); + } $flink->user_id = $user_id; $flink->foreign_id = $twuid; @@ -455,6 +461,11 @@ class TwitterauthorizationAction extends Action $user = User::register($args); + if (empty($user)) { + $this->serverError(_('Error registering user.')); + return; + } + $result = $this->saveForeignLink($user->id, $this->twuid, $this->access_token); diff --git a/plugins/TwitterBridge/twittersettings.php b/plugins/TwitterBridge/twittersettings.php index 0137060e9c..f22a059f74 100644 --- a/plugins/TwitterBridge/twittersettings.php +++ b/plugins/TwitterBridge/twittersettings.php @@ -250,7 +250,16 @@ class TwittersettingsAction extends ConnectSettingsAction $user = common_current_user(); $flink = Foreign_link::getByUserID($user->id, TWITTER_SERVICE); - $result = $flink->delete(); + $result = false; + + // Be extra careful to make sure we have a good flink + // before deleting + if (!empty($flink->user_id) + && !empty($flink->foreign_id) + && !empty($flink->service)) + { + $result = $flink->delete(); + } if (empty($result)) { common_log_db_error($flink, 'DELETE', __FILE__); From 6a377a4ba409083e05d16b163013f0f09c606170 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Fri, 5 Mar 2010 03:14:40 +0000 Subject: [PATCH 330/362] A better way to safely delete Foreign_links --- classes/Foreign_link.php | 17 +++++++++++++++++ plugins/TwitterBridge/twitter.php | 11 +---------- plugins/TwitterBridge/twitterauthorization.php | 2 +- plugins/TwitterBridge/twittersettings.php | 11 +---------- 4 files changed, 20 insertions(+), 21 deletions(-) diff --git a/classes/Foreign_link.php b/classes/Foreign_link.php index ae8c22fd84..e47b2e3096 100644 --- a/classes/Foreign_link.php +++ b/classes/Foreign_link.php @@ -113,4 +113,21 @@ class Foreign_link extends Memcached_DataObject return User::staticGet($this->user_id); } + // Make sure we only ever delete one record at a time + function safeDelete() + { + if (!empty($this->user_id) + && !empty($this->foreign_id) + && !empty($this->service)) + { + return $this->delete(); + } else { + common_debug(LOG_WARNING, + 'Foreign_link::safeDelete() tried to delete a ' + . 'Foreign_link without a fully specified compound key: ' + . var_export($this, true)); + return false; + } + } + } diff --git a/plugins/TwitterBridge/twitter.php b/plugins/TwitterBridge/twitter.php index 42db3c673d..5086999394 100644 --- a/plugins/TwitterBridge/twitter.php +++ b/plugins/TwitterBridge/twitter.php @@ -264,16 +264,7 @@ function remove_twitter_link($flink) common_log(LOG_INFO, 'Removing Twitter bridge Foreign link for ' . "user $user->nickname (user id: $user->id)."); - $result = false; - - // Be extra careful to make sure we have a good flink - // before deleting - if (!empty($flink->user_id) - && !empty($flink->foreign_id) - && !empty($flink->service)) - { - $result = $flink->delete(); - } + $result = $flink->safeDelete(); if (empty($result)) { common_log(LOG_ERR, 'Could not remove Twitter bridge ' . diff --git a/plugins/TwitterBridge/twitterauthorization.php b/plugins/TwitterBridge/twitterauthorization.php index 029c3a44b4..bc004cb955 100644 --- a/plugins/TwitterBridge/twitterauthorization.php +++ b/plugins/TwitterBridge/twitterauthorization.php @@ -278,7 +278,7 @@ class TwitterauthorizationAction extends Action $result = $flink->find(true); if (!empty($result)) { - $flink->delete(); + $flink->safeDelete(); } $flink->user_id = $user_id; diff --git a/plugins/TwitterBridge/twittersettings.php b/plugins/TwitterBridge/twittersettings.php index f22a059f74..631b29f52a 100644 --- a/plugins/TwitterBridge/twittersettings.php +++ b/plugins/TwitterBridge/twittersettings.php @@ -250,16 +250,7 @@ class TwittersettingsAction extends ConnectSettingsAction $user = common_current_user(); $flink = Foreign_link::getByUserID($user->id, TWITTER_SERVICE); - $result = false; - - // Be extra careful to make sure we have a good flink - // before deleting - if (!empty($flink->user_id) - && !empty($flink->foreign_id) - && !empty($flink->service)) - { - $result = $flink->delete(); - } + $result = $flink->safeDelete(); if (empty($result)) { common_log_db_error($flink, 'DELETE', __FILE__); From 6aac7cc6cd011b3c86f3f4c8e00a14f992a78306 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Fri, 5 Mar 2010 02:27:01 +0000 Subject: [PATCH 331/362] Fix for errant deletion of all Twitter foreign_links --- plugins/TwitterBridge/twitter.php | 11 ++++++++++- plugins/TwitterBridge/twitterauthorization.php | 13 ++++++++++++- plugins/TwitterBridge/twittersettings.php | 11 ++++++++++- 3 files changed, 32 insertions(+), 3 deletions(-) diff --git a/plugins/TwitterBridge/twitter.php b/plugins/TwitterBridge/twitter.php index 13e499d65e..90805bfc44 100644 --- a/plugins/TwitterBridge/twitter.php +++ b/plugins/TwitterBridge/twitter.php @@ -273,7 +273,16 @@ function remove_twitter_link($flink) common_log(LOG_INFO, 'Removing Twitter bridge Foreign link for ' . "user $user->nickname (user id: $user->id)."); - $result = $flink->delete(); + $result = false; + + // Be extra careful to make sure we have a good flink + // before deleting + if (!empty($flink->user_id) + && !empty($flink->foreign_id) + && !empty($flink->service)) + { + $result = $flink->delete(); + } if (empty($result)) { common_log(LOG_ERR, 'Could not remove Twitter bridge ' . diff --git a/plugins/TwitterBridge/twitterauthorization.php b/plugins/TwitterBridge/twitterauthorization.php index cabf69d7a8..bce6796223 100644 --- a/plugins/TwitterBridge/twitterauthorization.php +++ b/plugins/TwitterBridge/twitterauthorization.php @@ -273,7 +273,13 @@ class TwitterauthorizationAction extends Action $flink->user_id = $user_id; $flink->service = TWITTER_SERVICE; - $flink->delete(); // delete stale flink, if any + + // delete stale flink, if any + $result = $flink->find(true); + + if (!empty($result)) { + $flink->delete(); + } $flink->user_id = $user_id; $flink->foreign_id = $twuid; @@ -455,6 +461,11 @@ class TwitterauthorizationAction extends Action $user = User::register($args); + if (empty($user)) { + $this->serverError(_('Error registering user.')); + return; + } + $result = $this->saveForeignLink($user->id, $this->twuid, $this->access_token); diff --git a/plugins/TwitterBridge/twittersettings.php b/plugins/TwitterBridge/twittersettings.php index 0137060e9c..f22a059f74 100644 --- a/plugins/TwitterBridge/twittersettings.php +++ b/plugins/TwitterBridge/twittersettings.php @@ -250,7 +250,16 @@ class TwittersettingsAction extends ConnectSettingsAction $user = common_current_user(); $flink = Foreign_link::getByUserID($user->id, TWITTER_SERVICE); - $result = $flink->delete(); + $result = false; + + // Be extra careful to make sure we have a good flink + // before deleting + if (!empty($flink->user_id) + && !empty($flink->foreign_id) + && !empty($flink->service)) + { + $result = $flink->delete(); + } if (empty($result)) { common_log_db_error($flink, 'DELETE', __FILE__); From e3c4b0c85d3fbae9604b22d3666fe36a3c1c7551 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Fri, 5 Mar 2010 03:14:40 +0000 Subject: [PATCH 332/362] A better way to safely delete Foreign_links --- classes/Foreign_link.php | 17 +++++++++++++++++ plugins/TwitterBridge/twitter.php | 11 +---------- plugins/TwitterBridge/twitterauthorization.php | 2 +- plugins/TwitterBridge/twittersettings.php | 11 +---------- 4 files changed, 20 insertions(+), 21 deletions(-) diff --git a/classes/Foreign_link.php b/classes/Foreign_link.php index ae8c22fd84..e47b2e3096 100644 --- a/classes/Foreign_link.php +++ b/classes/Foreign_link.php @@ -113,4 +113,21 @@ class Foreign_link extends Memcached_DataObject return User::staticGet($this->user_id); } + // Make sure we only ever delete one record at a time + function safeDelete() + { + if (!empty($this->user_id) + && !empty($this->foreign_id) + && !empty($this->service)) + { + return $this->delete(); + } else { + common_debug(LOG_WARNING, + 'Foreign_link::safeDelete() tried to delete a ' + . 'Foreign_link without a fully specified compound key: ' + . var_export($this, true)); + return false; + } + } + } diff --git a/plugins/TwitterBridge/twitter.php b/plugins/TwitterBridge/twitter.php index 90805bfc44..2805b3ab56 100644 --- a/plugins/TwitterBridge/twitter.php +++ b/plugins/TwitterBridge/twitter.php @@ -273,16 +273,7 @@ function remove_twitter_link($flink) common_log(LOG_INFO, 'Removing Twitter bridge Foreign link for ' . "user $user->nickname (user id: $user->id)."); - $result = false; - - // Be extra careful to make sure we have a good flink - // before deleting - if (!empty($flink->user_id) - && !empty($flink->foreign_id) - && !empty($flink->service)) - { - $result = $flink->delete(); - } + $result = $flink->safeDelete(); if (empty($result)) { common_log(LOG_ERR, 'Could not remove Twitter bridge ' . diff --git a/plugins/TwitterBridge/twitterauthorization.php b/plugins/TwitterBridge/twitterauthorization.php index bce6796223..e20731e5cf 100644 --- a/plugins/TwitterBridge/twitterauthorization.php +++ b/plugins/TwitterBridge/twitterauthorization.php @@ -278,7 +278,7 @@ class TwitterauthorizationAction extends Action $result = $flink->find(true); if (!empty($result)) { - $flink->delete(); + $flink->safeDelete(); } $flink->user_id = $user_id; diff --git a/plugins/TwitterBridge/twittersettings.php b/plugins/TwitterBridge/twittersettings.php index f22a059f74..631b29f52a 100644 --- a/plugins/TwitterBridge/twittersettings.php +++ b/plugins/TwitterBridge/twittersettings.php @@ -250,16 +250,7 @@ class TwittersettingsAction extends ConnectSettingsAction $user = common_current_user(); $flink = Foreign_link::getByUserID($user->id, TWITTER_SERVICE); - $result = false; - - // Be extra careful to make sure we have a good flink - // before deleting - if (!empty($flink->user_id) - && !empty($flink->foreign_id) - && !empty($flink->service)) - { - $result = $flink->delete(); - } + $result = $flink->safeDelete(); if (empty($result)) { common_log_db_error($flink, 'DELETE', __FILE__); From dbe6b979d7e07b47aa4cab5c7ccf54d3ba24f319 Mon Sep 17 00:00:00 2001 From: Dave Hall Date: Thu, 4 Mar 2010 17:07:40 +1100 Subject: [PATCH 333/362] implement mail headers --- lib/mail.php | 67 +++++++++++++++++++++++++++++++++++++++------------- 1 file changed, 51 insertions(+), 16 deletions(-) diff --git a/lib/mail.php b/lib/mail.php index c724764cc8..807b6a3633 100644 --- a/lib/mail.php +++ b/lib/mail.php @@ -133,12 +133,13 @@ function mail_notify_from() * @param User &$user user to send email to * @param string $subject subject of the email * @param string $body body of the email + * @param array $headers optional list of email headers * @param string $address optional specification of email address * * @return boolean success flag */ -function mail_to_user(&$user, $subject, $body, $address=null) +function mail_to_user(&$user, $subject, $body, $headers=array(), $address=null) { if (!$address) { $address = $user->email; @@ -180,7 +181,9 @@ function mail_confirm_address($user, $code, $nickname, $address) $nickname, common_config('site', 'name'), common_local_url('confirmaddress', array('code' => $code)), common_config('site', 'name')); - return mail_to_user($user, $subject, $body, $address); + $headers = array(); + + return mail_to_user($user, $subject, $body, $headers, $address); } /** @@ -231,6 +234,7 @@ function mail_subscribe_notify_profile($listenee, $other) $recipients = $listenee->email; + $headers = _mail_prepare_headers('subscribe', $listenee->nickname, $other->nickname); $headers['From'] = mail_notify_from(); $headers['To'] = $name . ' <' . $listenee->email . '>'; $headers['Subject'] = sprintf(_('%1$s is now listening to '. @@ -476,7 +480,10 @@ function mail_notify_nudge($from, $to) common_local_url('all', array('nickname' => $to->nickname)), common_config('site', 'name')); common_init_locale(); - return mail_to_user($to, $subject, $body); + + $headers = _mail_prepare_headers('nudge', $to->nickname, $from->nickname); + + return mail_to_user($to, $subject, $body, $headers); } /** @@ -526,8 +533,10 @@ function mail_notify_message($message, $from=null, $to=null) common_local_url('newmessage', array('to' => $from->id)), common_config('site', 'name')); + $headers = _mail_prepare_headers('message', $to->nickname, $from->nickname); + common_init_locale(); - return mail_to_user($to, $subject, $body); + return mail_to_user($to, $subject, $body, $headers); } /** @@ -578,8 +587,10 @@ function mail_notify_fave($other, $user, $notice) common_config('site', 'name'), $user->nickname); + $headers = _mail_prepare_headers('fave', $other->nickname, $user->nickname); + common_init_locale(); - mail_to_user($other, $subject, $body); + mail_to_user($other, $subject, $body, $headers); } /** @@ -611,19 +622,19 @@ function mail_notify_attn($user, $notice) common_init_locale($user->language); - if ($notice->conversation != $notice->id) { - $conversationEmailText = "The full conversation can be read here:\n\n". - "\t%5\$s\n\n "; - $conversationUrl = common_local_url('conversation', + if ($notice->conversation != $notice->id) { + $conversationEmailText = "The full conversation can be read here:\n\n". + "\t%5\$s\n\n "; + $conversationUrl = common_local_url('conversation', array('id' => $notice->conversation)).'#notice-'.$notice->id; - } else { - $conversationEmailText = "%5\$s"; - $conversationUrl = null; - } + } else { + $conversationEmailText = "%5\$s"; + $conversationUrl = null; + } $subject = sprintf(_('%s (@%s) sent a notice to your attention'), $bestname, $sender->nickname); - $body = sprintf(_("%1\$s (@%9\$s) just sent a notice to your attention (an '@-reply') on %2\$s.\n\n". + $body = sprintf(_("%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". @@ -641,7 +652,7 @@ function mail_notify_attn($user, $notice) common_local_url('shownotice', array('notice' => $notice->id)),//%3 $notice->content,//%4 - $conversationUrl,//%5 + $conversationUrl,//%5 common_local_url('newnotice', array('replyto' => $sender->nickname, 'inreplyto' => $notice->id)),//%6 common_local_url('replies', @@ -649,6 +660,30 @@ function mail_notify_attn($user, $notice) common_local_url('emailsettings'), //%8 $sender->nickname); //%9 + $headers = _mail_prepare_headers('mention', $user->nickname, $sender->nickname); + common_init_locale(); - mail_to_user($user, $subject, $body); + mail_to_user($user, $subject, $body, $headers); } + +/** + * Prepare the common mail headers used in notification emails + * + * @param string $msg_type type of message being sent to the user + * @param string $to nickname of the receipient + * @param string $from nickname of the user triggering the notification + * + * @return array list of mail headers to include in the message + */ +function _mail_prepare_headers($msg_type, $to, $from) +{ + $headers = array( + 'X-StatusNet-MessageType' => $msg_type, + 'X-StatusNet-TargetUser' => $to, + 'X-StatusNet-SourceUser' => $from, + 'X-StatusNet-Domain' => common_config('site', 'server') + ); + + return $headers; +} + From 086d517b877f82513bc9f5208580b7d57453a8e2 Mon Sep 17 00:00:00 2001 From: Rasmus Lerdorf Date: Tue, 2 Mar 2010 16:07:35 -0800 Subject: [PATCH 334/362] Fix a few typos --- actions/recoverpassword.php | 2 +- scripts/fixup_utf8.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/actions/recoverpassword.php b/actions/recoverpassword.php index dcff35f6ed..1e2775e7a7 100644 --- a/actions/recoverpassword.php +++ b/actions/recoverpassword.php @@ -21,7 +21,7 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } # You have 24 hours to claim your password -define(MAX_RECOVERY_TIME, 24 * 60 * 60); +define('MAX_RECOVERY_TIME', 24 * 60 * 60); class RecoverpasswordAction extends Action { diff --git a/scripts/fixup_utf8.php b/scripts/fixup_utf8.php index 30befadfd4..2af6f9cb04 100755 --- a/scripts/fixup_utf8.php +++ b/scripts/fixup_utf8.php @@ -249,7 +249,7 @@ class UTF8FixerUpper $sql = 'SELECT id, fullname, location, description FROM user_group ' . 'WHERE LENGTH(fullname) != CHAR_LENGTH(fullname) '. 'OR LENGTH(location) != CHAR_LENGTH(location) '. - 'OR LENGTH(description) != CHAR_LENGTH(description) '; + 'OR LENGTH(description) != CHAR_LENGTH(description) '. 'AND modified < "'.$this->max_date.'" '. 'ORDER BY modified DESC'; From 982edc653f36c45f49165b85c3538fb62d2684e7 Mon Sep 17 00:00:00 2001 From: root Date: Tue, 2 Mar 2010 22:09:52 -0800 Subject: [PATCH 335/362] Another typo --- plugins/TwitterBridge/daemons/synctwitterfriends.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/TwitterBridge/daemons/synctwitterfriends.php b/plugins/TwitterBridge/daemons/synctwitterfriends.php index 671e3c7afa..df7da0943d 100755 --- a/plugins/TwitterBridge/daemons/synctwitterfriends.php +++ b/plugins/TwitterBridge/daemons/synctwitterfriends.php @@ -221,7 +221,7 @@ class SyncTwitterFriendsDaemon extends ParallelizingDaemon // Twitter friend if (!save_twitter_user($friend_id, $friend_name)) { - common_log(LOG_WARNING, $this-name() . + common_log(LOG_WARNING, $this->name() . " - Couldn't save $screen_name's friend, $friend_name."); continue; } From 89e313e45b1b08fc80ab908e4dd531689319aa6f Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Fri, 5 Mar 2010 10:55:07 -0800 Subject: [PATCH 336/362] OStatus fix: send the feed's root element, not the DOM document, down to low-level feed processing as entry context on PuSH input. --- plugins/OStatus/classes/Ostatus_profile.php | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/plugins/OStatus/classes/Ostatus_profile.php b/plugins/OStatus/classes/Ostatus_profile.php index fcca1a2521..abc8100cee 100644 --- a/plugins/OStatus/classes/Ostatus_profile.php +++ b/plugins/OStatus/classes/Ostatus_profile.php @@ -428,10 +428,18 @@ class Ostatus_profile extends Memcached_DataObject * Currently assumes that all items in the feed are new, * coming from a PuSH hub. * - * @param DOMDocument $feed + * @param DOMDocument $doc + * @param string $source identifier ("push") */ - public function processFeed($feed, $source) + public function processFeed(DOMDocument $doc, $source) { + $feed = $doc->documentElement; + + if ($feed->localName != 'feed' || $feed->namespaceURI != Activity::ATOM) { + common_log(LOG_ERR, __METHOD__ . ": not an Atom feed, ignoring"); + return; + } + $entries = $feed->getElementsByTagNameNS(Activity::ATOM, 'entry'); if ($entries->length == 0) { common_log(LOG_ERR, __METHOD__ . ": no entries in feed update, ignoring"); @@ -449,6 +457,7 @@ class Ostatus_profile extends Memcached_DataObject * * @param DOMElement $entry * @param DOMElement $feed for context + * @param string $source identifier ("push" or "salmon") */ public function processEntry($entry, $feed, $source) { From 248aed7cf430d263f3d5dd98552f35f69de6fe67 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Fri, 5 Mar 2010 12:21:30 -0800 Subject: [PATCH 337/362] ticket #697: merge two dupe config bits in config.php.sample --- config.php.sample | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config.php.sample b/config.php.sample index b8852dc672..33ac94a6d0 100644 --- a/config.php.sample +++ b/config.php.sample @@ -124,6 +124,8 @@ $config['sphinx']['port'] = 3312; // Email info, used for all outbound email // $config['mail']['notifyfrom'] = 'microblog@example.net'; +// Domain for generating no-reply and incoming email addresses, if enabled. +// Defaults to site server name. // $config['mail']['domain'] = 'microblog.example.net'; // See http://pear.php.net/manual/en/package.mail.mail.factory.php for options // $config['mail']['backend'] = 'smtp'; @@ -131,8 +133,6 @@ $config['sphinx']['port'] = 3312; // 'host' => 'localhost', // 'port' => 25, // ); -// For incoming email, if enabled. Defaults to site server name. -// $config['mail']['domain'] = 'incoming.example.net'; // exponential decay factor for tags, default 10 days // raise this if traffic is slow, lower it if it's fast From 54de8ad9f20a51cdaf78404c45e91a1f652670f1 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Fri, 5 Mar 2010 11:27:48 -0800 Subject: [PATCH 338/362] Initial install-time test for PCRE compiled without Unicode properties, which causes corruption in feeds and other linking problems. Error message links to help info at http://status.net/wiki/Red_Hat_Enterprise_Linux#PCRE_library --- install.php | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/install.php b/install.php index 8c9b6138b8..7fece8999f 100644 --- a/install.php +++ b/install.php @@ -301,6 +301,19 @@ function checkPrereqs() $pass = false; } + // Look for known library bugs + $str = "abcdefghijklmnopqrstuvwxyz"; + $replaced = preg_replace('/[\p{Cc}\p{Cs}]/u', '*', $str); + if ($str != $replaced) { + printf('

      PHP is linked to a version of the PCRE library ' . + 'that does not support Unicode properties. ' . + 'If you are running Red Hat Enterprise Linux / ' . + 'CentOS 5.3 or earlier, see our documentation page on fixing this.

      '); + $pass = false; + } + $reqs = array('gd', 'curl', 'xmlwriter', 'mbstring', 'xml', 'dom', 'simplexml'); From 0c0420f606bd9caaf61dc4e307bbb5b8465480e0 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Fri, 5 Mar 2010 23:41:51 +0100 Subject: [PATCH 339/362] Localisation updates for !StatusNet from !translatewiki.net !sntrans Signed-off-by: Siebrand Mazeland --- locale/ar/LC_MESSAGES/statusnet.po | 71 ++--- locale/arz/LC_MESSAGES/statusnet.po | 5 +- locale/bg/LC_MESSAGES/statusnet.po | 5 +- locale/ca/LC_MESSAGES/statusnet.po | 5 +- locale/cs/LC_MESSAGES/statusnet.po | 5 +- locale/de/LC_MESSAGES/statusnet.po | 362 ++++++++++++-------------- locale/el/LC_MESSAGES/statusnet.po | 5 +- locale/en_GB/LC_MESSAGES/statusnet.po | 5 +- locale/es/LC_MESSAGES/statusnet.po | 5 +- locale/fa/LC_MESSAGES/statusnet.po | 5 +- locale/fi/LC_MESSAGES/statusnet.po | 5 +- locale/fr/LC_MESSAGES/statusnet.po | 79 +++--- locale/ga/LC_MESSAGES/statusnet.po | 5 +- locale/he/LC_MESSAGES/statusnet.po | 5 +- locale/hsb/LC_MESSAGES/statusnet.po | 5 +- locale/ia/LC_MESSAGES/statusnet.po | 5 +- locale/is/LC_MESSAGES/statusnet.po | 5 +- locale/it/LC_MESSAGES/statusnet.po | 100 +++---- locale/ja/LC_MESSAGES/statusnet.po | 5 +- locale/ko/LC_MESSAGES/statusnet.po | 5 +- locale/mk/LC_MESSAGES/statusnet.po | 77 +++--- locale/nb/LC_MESSAGES/statusnet.po | 5 +- locale/nl/LC_MESSAGES/statusnet.po | 80 +++--- locale/nn/LC_MESSAGES/statusnet.po | 5 +- locale/pl/LC_MESSAGES/statusnet.po | 5 +- locale/pt/LC_MESSAGES/statusnet.po | 5 +- locale/pt_BR/LC_MESSAGES/statusnet.po | 5 +- locale/ru/LC_MESSAGES/statusnet.po | 79 +++--- locale/statusnet.po | 2 +- locale/sv/LC_MESSAGES/statusnet.po | 19 +- locale/te/LC_MESSAGES/statusnet.po | 5 +- locale/tr/LC_MESSAGES/statusnet.po | 5 +- locale/uk/LC_MESSAGES/statusnet.po | 113 ++++---- locale/vi/LC_MESSAGES/statusnet.po | 5 +- locale/zh_CN/LC_MESSAGES/statusnet.po | 5 +- locale/zh_TW/LC_MESSAGES/statusnet.po | 5 +- 36 files changed, 457 insertions(+), 655 deletions(-) diff --git a/locale/ar/LC_MESSAGES/statusnet.po b/locale/ar/LC_MESSAGES/statusnet.po index 3e2f7c7b47..9f7bd5cbb5 100644 --- a/locale/ar/LC_MESSAGES/statusnet.po +++ b/locale/ar/LC_MESSAGES/statusnet.po @@ -10,11 +10,11 @@ msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-03-04 18:55+0000\n" -"PO-Revision-Date: 2010-03-04 18:55:52+0000\n" +"PO-Revision-Date: 2010-03-05 22:34:53+0000\n" "Language-Team: Arabic\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63298); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: out-statusnet\n" @@ -1422,12 +1422,12 @@ msgstr "ألغِ تفضيل المفضلة" #: actions/favorited.php:65 lib/popularnoticesection.php:91 #: lib/publicgroupnav.php:93 msgid "Popular notices" -msgstr "إشعارات مشهورة" +msgstr "إشعارات محبوبة" #: actions/favorited.php:67 #, php-format msgid "Popular notices, page %d" -msgstr "إشعارات مشهورة، الصفحة %d" +msgstr "إشعارات محبوبة، الصفحة %d" #: actions/favorited.php:79 msgid "The most popular notices on the site right now." @@ -3426,6 +3426,11 @@ msgid "" "their life and interests. [Join now](%%%%action.register%%%%) to become part " "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" +"**%s** مجموعة مستخدمين على %%%%site.name%%%%، خدمة [التدوين المُصغّر](http://" +"en.wikipedia.org/wiki/Micro-blogging) المبنية على البرنامج الحر [StatusNet]" +"(http://status.net/). يتشارك أعضاؤها رسائل قصيرة عن حياتهم واهتماماتهم. " +"[انضم الآن](%%%%action.register%%%%) لتصبح عضوًا في هذه المجموعة ومجموعات " +"أخرى عديدة! ([اقرأ المزيد](%%%%doc.help%%%%))" #: actions/showgroup.php:463 #, php-format @@ -3435,6 +3440,9 @@ msgid "" "[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) المبنية على البرنامج الحر [StatusNet]" +"(http://status.net/). يتشارك أعضاؤها رسائل قصيرة عن حياتهم واهتماماتهم. " #: actions/showgroup.php:491 msgid "Admins" @@ -3468,9 +3476,9 @@ msgid " tagged %s" msgstr "" #: actions/showstream.php:79 -#, fuzzy, php-format +#, php-format msgid "%1$s, page %2$d" -msgstr "%1$s والأصدقاء, الصفحة %2$d" +msgstr "%1$s، الصفحة %2$d" #: actions/showstream.php:122 #, php-format @@ -3523,6 +3531,11 @@ msgid "" "[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " "follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" +"لدى **%s** حساب على %%site.name%%، خدمة [التدوين المُصغّر](http://en." +"wikipedia.org/wiki/Micro-blogging) المبنية على البرنامج الحر [StatusNet]" +"(http://status.net/). يتشارك أعضاؤها رسائل قصيرة عن حياتهم واهتماماتهم. " +"[انضم الآن](%%%%action.register%%%%) لتتابع إشعارت **%s** وغيره! ([اقرأ " +"المزيد](%%%%doc.help%%%%))" #: actions/showstream.php:248 #, php-format @@ -3546,7 +3559,6 @@ msgid "User is already silenced." msgstr "المستخدم مسكت من قبل." #: actions/siteadminpanel.php:69 -#, fuzzy msgid "Basic settings for this StatusNet site" msgstr "الإعدادات الأساسية لموقع StatusNet هذا." @@ -3616,9 +3628,8 @@ msgid "Default timezone for the site; usually UTC." msgstr "المنطقة الزمنية المبدئية للموقع؛ ت‌ع‌م عادة." #: actions/siteadminpanel.php:262 -#, fuzzy msgid "Default language" -msgstr "لغة الموقع المبدئية" +msgstr "اللغة المبدئية" #: actions/siteadminpanel.php:263 msgid "Site language when autodetection from browser settings is not available" @@ -3645,14 +3656,12 @@ msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" #: actions/sitenoticeadminpanel.php:56 -#, fuzzy msgid "Site Notice" msgstr "إشعار الموقع" #: actions/sitenoticeadminpanel.php:67 -#, fuzzy msgid "Edit site-wide message" -msgstr "رسالة جديدة" +msgstr "عدّل رسالة الموقع العامة" #: actions/sitenoticeadminpanel.php:103 #, fuzzy @@ -3664,18 +3673,16 @@ msgid "Max length for the site-wide notice is 255 chars" msgstr "" #: actions/sitenoticeadminpanel.php:176 -#, fuzzy msgid "Site notice text" -msgstr "إشعار الموقع" +msgstr "نص إشعار الموقع" #: actions/sitenoticeadminpanel.php:178 msgid "Site-wide notice text (255 chars max; HTML okay)" -msgstr "" +msgstr "نص إشعار عام للموقع (255 حرف كحد أقصى؛ يسمح بHTML)" #: actions/sitenoticeadminpanel.php:198 -#, fuzzy msgid "Save site notice" -msgstr "إشعار الموقع" +msgstr "احفظ إشعار الموقع" #: actions/smssettings.php:58 msgid "SMS settings" @@ -4492,13 +4499,11 @@ msgid "Connect to services" msgstr "اتصالات" #: lib/action.php:443 -#, fuzzy msgid "Connect" msgstr "اتصل" #. TRANS: Tooltip for menu option "Admin" #: lib/action.php:446 -#, fuzzy msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "غيّر ضبط الموقع" @@ -4522,7 +4527,6 @@ msgstr "ادعُ" #. TRANS: Tooltip for main menu option "Logout" #: lib/action.php:462 -#, fuzzy msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "اخرج من الموقع" @@ -4534,7 +4538,6 @@ msgstr "اخرج" #. TRANS: Tooltip for main menu option "Register" #: lib/action.php:470 -#, fuzzy msgctxt "TOOLTIP" msgid "Create an account" msgstr "أنشئ حسابًا" @@ -4709,7 +4712,7 @@ msgstr "" #. TRANS: Client error message #: lib/adminpanelaction.php:98 msgid "You cannot make changes to this site." -msgstr "" +msgstr "لا يمكنك إجراء تغييرات على هذا الموقع." #. TRANS: Client error message #: lib/adminpanelaction.php:110 @@ -4780,9 +4783,8 @@ msgstr "ضبط الجلسات" #. TRANS: Menu item title/tooltip #: lib/adminpanelaction.php:396 -#, fuzzy msgid "Edit site notice" -msgstr "إشعار الموقع" +msgstr "عدّل إشعار الموقع" #. TRANS: Menu item title/tooltip #: lib/adminpanelaction.php:404 @@ -4805,7 +4807,7 @@ msgstr "عدّل التطبيق" #: lib/applicationeditform.php:184 msgid "Icon for this application" -msgstr "" +msgstr "أيقونة لهذا التطبيق" #: lib/applicationeditform.php:204 #, php-format @@ -4838,7 +4840,7 @@ msgstr "" #: lib/applicationeditform.php:258 msgid "Browser" -msgstr "" +msgstr "متصفح" #: lib/applicationeditform.php:274 msgid "Desktop" @@ -5060,23 +5062,23 @@ msgstr "" #: lib/command.php:613 lib/command.php:636 msgid "Command not yet implemented." -msgstr "" +msgstr "الأمر لم يُجهزّ بعد." #: lib/command.php:616 msgid "Notification off." -msgstr "" +msgstr "الإشعار مُطفأ." #: lib/command.php:618 msgid "Can't turn off notification." -msgstr "" +msgstr "تعذّر إطفاء الإشعارات." #: lib/command.php:639 msgid "Notification on." -msgstr "" +msgstr "الإشعار يعمل." #: lib/command.php:641 msgid "Can't turn on notification." -msgstr "" +msgstr "تعذّر تشغيل الإشعار." #: lib/command.php:654 msgid "Login command is disabled" @@ -5902,7 +5904,7 @@ msgstr "مُختارون" #: lib/publicgroupnav.php:92 msgid "Popular" -msgstr "مشهورة" +msgstr "محبوبة" #: lib/repeatform.php:107 msgid "Repeat this notice?" @@ -6077,15 +6079,14 @@ msgid "User role" msgstr "ملف المستخدم الشخصي" #: lib/userprofile.php:354 -#, fuzzy msgctxt "role" msgid "Administrator" -msgstr "الإداريون" +msgstr "إداري" #: lib/userprofile.php:355 msgctxt "role" msgid "Moderator" -msgstr "" +msgstr "مراقب" #: lib/util.php:1015 msgid "a few seconds ago" diff --git a/locale/arz/LC_MESSAGES/statusnet.po b/locale/arz/LC_MESSAGES/statusnet.po index dd00dbf7dc..3654f6326d 100644 --- a/locale/arz/LC_MESSAGES/statusnet.po +++ b/locale/arz/LC_MESSAGES/statusnet.po @@ -11,11 +11,11 @@ msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-03-04 18:55+0000\n" -"PO-Revision-Date: 2010-03-04 18:55:56+0000\n" +"PO-Revision-Date: 2010-03-05 22:34:56+0000\n" "Language-Team: Egyptian Spoken Arabic\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63298); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: arz\n" "X-Message-Group: out-statusnet\n" @@ -4505,7 +4505,6 @@ msgid "Connect to services" msgstr "كونيكشونات (Connections)" #: lib/action.php:443 -#, fuzzy msgid "Connect" msgstr "اتصل" diff --git a/locale/bg/LC_MESSAGES/statusnet.po b/locale/bg/LC_MESSAGES/statusnet.po index e24c60c5ae..71b22dd4f1 100644 --- a/locale/bg/LC_MESSAGES/statusnet.po +++ b/locale/bg/LC_MESSAGES/statusnet.po @@ -10,11 +10,11 @@ msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-03-04 18:55+0000\n" -"PO-Revision-Date: 2010-03-04 18:55:59+0000\n" +"PO-Revision-Date: 2010-03-05 22:34:58+0000\n" "Language-Team: Bulgarian\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63298); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: bg\n" "X-Message-Group: out-statusnet\n" @@ -4699,7 +4699,6 @@ msgid "Connect to services" msgstr "Свързване към услуги" #: lib/action.php:443 -#, fuzzy msgid "Connect" msgstr "Свързване" diff --git a/locale/ca/LC_MESSAGES/statusnet.po b/locale/ca/LC_MESSAGES/statusnet.po index f38b97ccf4..8a91dad60e 100644 --- a/locale/ca/LC_MESSAGES/statusnet.po +++ b/locale/ca/LC_MESSAGES/statusnet.po @@ -11,11 +11,11 @@ msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-03-04 18:55+0000\n" -"PO-Revision-Date: 2010-03-04 18:56:02+0000\n" +"PO-Revision-Date: 2010-03-05 22:35:02+0000\n" "Language-Team: Catalan\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63298); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: out-statusnet\n" @@ -4763,7 +4763,6 @@ msgid "Connect to services" msgstr "No s'ha pogut redirigir al servidor: %s" #: lib/action.php:443 -#, fuzzy msgid "Connect" msgstr "Connexió" diff --git a/locale/cs/LC_MESSAGES/statusnet.po b/locale/cs/LC_MESSAGES/statusnet.po index f4d284ee97..8a8ccf6e68 100644 --- a/locale/cs/LC_MESSAGES/statusnet.po +++ b/locale/cs/LC_MESSAGES/statusnet.po @@ -10,11 +10,11 @@ msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-03-04 18:55+0000\n" -"PO-Revision-Date: 2010-03-04 18:56:05+0000\n" +"PO-Revision-Date: 2010-03-05 22:35:06+0000\n" "Language-Team: Czech\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63298); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: cs\n" "X-Message-Group: out-statusnet\n" @@ -4705,7 +4705,6 @@ msgid "Connect to services" msgstr "Nelze přesměrovat na server: %s" #: lib/action.php:443 -#, fuzzy msgid "Connect" msgstr "Připojit" diff --git a/locale/de/LC_MESSAGES/statusnet.po b/locale/de/LC_MESSAGES/statusnet.po index f71b407d5e..5007074b71 100644 --- a/locale/de/LC_MESSAGES/statusnet.po +++ b/locale/de/LC_MESSAGES/statusnet.po @@ -4,6 +4,7 @@ # Author@translatewiki.net: Lutzgh # Author@translatewiki.net: March # Author@translatewiki.net: McDutchie +# Author@translatewiki.net: Michael # Author@translatewiki.net: Michi # Author@translatewiki.net: Pill # Author@translatewiki.net: Umherirrender @@ -15,11 +16,11 @@ msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-03-04 18:55+0000\n" -"PO-Revision-Date: 2010-03-04 18:56:08+0000\n" +"PO-Revision-Date: 2010-03-05 22:35:09+0000\n" "Language-Team: German\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63298); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: out-statusnet\n" @@ -49,7 +50,6 @@ msgstr "" #. TRANS: Checkbox label for prohibiting anonymous users from viewing site. #: actions/accessadminpanel.php:167 -#, fuzzy msgctxt "LABEL" msgid "Private" msgstr "Privat" @@ -80,7 +80,6 @@ msgid "Save access settings" msgstr "Zugangs-Einstellungen speichern" #: actions/accessadminpanel.php:203 -#, fuzzy msgctxt "BUTTON" msgid "Save" msgstr "Speichern" @@ -170,12 +169,12 @@ msgstr "" #. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@" #: actions/all.php:142 -#, fuzzy, php-format +#, php-format msgid "" "You can try to [nudge %1$s](../%2$s) from his profile or [post something to " "his or her attention](%%%%action.newnotice%%%%?status_textarea=%3$s)." msgstr "" -"Du kannst [%s in seinem Profil einen Stups geben](../%s) oder [ihm etwas " +"Du kannst [%1$s in seinem Profil einen Stups geben](../%2$s) oder [ihm etwas " "posten](%%%%action.newnotice%%%%?status_textarea=%s) um seine Aufmerksamkeit " "zu erregen." @@ -448,7 +447,7 @@ msgstr "Zu viele Pseudonyme! Maximale Anzahl ist %d." #: actions/newgroup.php:168 #, php-format msgid "Invalid alias: \"%s\"" -msgstr "Ungültiger Tag: „%s“" +msgstr "Ungültiges Stichwort: „%s“" #: actions/apigroupcreate.php:275 actions/editgroup.php:232 #: actions/newgroup.php:172 @@ -572,7 +571,7 @@ msgstr "" #: actions/apioauthauthorize.php:276 msgid "Allow or deny access" -msgstr "" +msgstr "Zugriff erlauben oder ablehnen" #: actions/apioauthauthorize.php:292 #, php-format @@ -601,16 +600,15 @@ msgstr "Passwort" #: actions/apioauthauthorize.php:328 msgid "Deny" -msgstr "" +msgstr "Ablehnen" #: actions/apioauthauthorize.php:334 -#, fuzzy msgid "Allow" -msgstr "Alle" +msgstr "Erlauben" #: actions/apioauthauthorize.php:351 msgid "Allow or deny access to your account information." -msgstr "" +msgstr "Zugang zu deinem Konto erlauben oder ablehnen" #: actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." @@ -816,6 +814,9 @@ msgid "" "unsubscribed from you, unable to subscribe to you in the future, and you " "will not be notified of any @-replies from them." msgstr "" +"Bist du sicher, dass du den Benutzer blockieren willst? Die Verbindung zum " +"Benutzer wird gelöscht, dieser kann dich in Zukunft nicht mehr abonnieren " +"und bekommt keine @-Antworten." #: actions/block.php:143 actions/deleteapplication.php:153 #: actions/deletenotice.php:145 actions/deleteuser.php:150 @@ -950,9 +951,8 @@ msgstr "Nachricht hat kein Profil" #: actions/deleteapplication.php:78 actions/editapplication.php:77 #: actions/showapplication.php:94 -#, fuzzy msgid "You are not the owner of this application." -msgstr "Du bist kein Mitglied dieser Gruppe." +msgstr "Du bist Besitzer dieses Programms" #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 @@ -961,9 +961,8 @@ msgid "There was a problem with your session token." msgstr "Es gab ein Problem mit deinem Sessiontoken." #: actions/deleteapplication.php:123 actions/deleteapplication.php:147 -#, fuzzy msgid "Delete application" -msgstr "Unbekannte Nachricht." +msgstr "Programm entfernen" #: actions/deleteapplication.php:149 msgid "" @@ -978,9 +977,8 @@ msgid "Do not delete this application" msgstr "Diese Nachricht nicht löschen" #: actions/deleteapplication.php:160 -#, fuzzy msgid "Delete this application" -msgstr "Nachricht löschen" +msgstr "Programm löschen" #. TRANS: Client error message #: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62 @@ -1038,6 +1036,8 @@ msgid "" "Are you sure you want to delete this user? This will clear all data about " "the user from the database, without a backup." msgstr "" +"Bist du sicher, dass du den Benutzer löschen wisst? Alle Daten des Benutzers " +"werden aus der Datenbank gelöscht (ohne ein Backup)." #: actions/deleteuser.php:151 lib/deleteuserform.php:77 msgid "Delete this user" @@ -1046,7 +1046,7 @@ msgstr "Diesen Benutzer löschen" #: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 #: lib/groupnav.php:119 msgid "Design" -msgstr "" +msgstr "Design" #: actions/designadminpanel.php:73 msgid "Design settings for this StatusNet site." @@ -1113,7 +1113,7 @@ msgstr "Hintergrundbild ein- oder ausschalten." #: actions/designadminpanel.php:479 lib/designsettings.php:161 msgid "Tile background image" -msgstr "" +msgstr "Hintergrundbild kacheln" #: actions/designadminpanel.php:488 lib/designsettings.php:170 msgid "Change colours" @@ -1137,7 +1137,7 @@ msgstr "Links" #: actions/designadminpanel.php:577 lib/designsettings.php:247 msgid "Use defaults" -msgstr "" +msgstr "Standardeinstellungen benutzen" #: actions/designadminpanel.php:578 lib/designsettings.php:248 msgid "Restore default designs" @@ -1172,9 +1172,9 @@ msgid "Add to favorites" msgstr "Zu Favoriten hinzufügen" #: actions/doc.php:158 -#, fuzzy, php-format +#, php-format msgid "No such document \"%s\"" -msgstr "Unbekanntes Dokument." +msgstr "Unbekanntes Dokument \"%s\"" #: actions/editapplication.php:54 msgid "Edit Application" @@ -1232,11 +1232,11 @@ msgstr "Homepage der Organisation ist erforderlich (Pflichtangabe)." #: actions/editapplication.php:218 actions/newapplication.php:206 msgid "Callback is too long." -msgstr "" +msgstr "Antwort ist zu lang" #: actions/editapplication.php:225 actions/newapplication.php:215 msgid "Callback URL is not valid." -msgstr "" +msgstr "Antwort URL ist nicht gültig" #: actions/editapplication.php:258 #, fuzzy @@ -1585,13 +1585,12 @@ msgid "Cannot read file." msgstr "Datei konnte nicht gelesen werden." #: actions/grantrole.php:62 actions/revokerole.php:62 -#, fuzzy msgid "Invalid role." -msgstr "Ungültige Größe." +msgstr "Ungültige Aufgabe" #: actions/grantrole.php:66 actions/revokerole.php:66 msgid "This role is reserved and cannot be set." -msgstr "" +msgstr "Diese Aufgabe ist reserviert und kann nicht gesetzt werden" #: actions/grantrole.php:75 #, fuzzy @@ -1599,9 +1598,8 @@ msgid "You cannot grant user roles on this site." msgstr "Du kannst diesem Benutzer keine Nachricht schicken." #: actions/grantrole.php:82 -#, fuzzy msgid "User already has this role." -msgstr "Nutzer ist bereits ruhig gestellt." +msgstr "Nutzer hat diese Aufgabe bereits" #: actions/groupblock.php:71 actions/groupunblock.php:71 #: actions/makeadmin.php:71 actions/subedit.php:46 @@ -1657,7 +1655,6 @@ msgid "Database error blocking user from group." msgstr "Datenbank Fehler beim Versuch den Nutzer aus der Gruppe zu blockieren." #: actions/groupbyid.php:74 actions/userbyid.php:70 -#, fuzzy msgid "No ID." msgstr "Keine ID" @@ -1674,6 +1671,8 @@ msgid "" "Customize the way your group looks with a background image and a colour " "palette of your choice." msgstr "" +"Stelle ein wie die Gruppenseite aussehen soll. Hintergrundbild und " +"Farbpalette frei wählbar." #: actions/groupdesignsettings.php:266 actions/userdesignsettings.php:186 #: lib/designsettings.php:391 lib/designsettings.php:413 @@ -1777,6 +1776,11 @@ msgid "" "for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" "%%%%)" msgstr "" +"Finde und rede mit Gleichgesinnten in %%%%site.name%%%% Gruppen. Nachdem du " +"einer Gruppe beigetreten bis kannst du mit \\\"!Gruppenname\\\" eine " +"Nachricht an alle Gruppenmitglieder schicken. Du kannst nach einer [Gruppe " +"suchen](%%%%action.groupsearch%%%%) oder deine eigene [Gruppe aufmachen!](%%%" +"%action.newgroup%%%%)" #: actions/groups.php:107 actions/usergroups.php:124 lib/groupeditform.php:122 msgid "Create a new group" @@ -1832,7 +1836,6 @@ msgid "Error removing the block." msgstr "Fehler beim Freigeben des Benutzers." #: actions/imsettings.php:59 -#, fuzzy msgid "IM settings" msgstr "IM-Einstellungen" @@ -1930,9 +1933,9 @@ msgid "That is not your Jabber ID." msgstr "Dies ist nicht deine JabberID." #: actions/inbox.php:59 -#, fuzzy, php-format +#, php-format msgid "Inbox for %1$s - page %2$d" -msgstr "Posteingang von %s" +msgstr "Posteingang von %s - Seite %2$d" #: actions/inbox.php:62 #, php-format @@ -2023,7 +2026,6 @@ msgstr "" #. TRANS: Send button for inviting friends #: actions/invite.php:198 -#, fuzzy msgctxt "BUTTON" msgid "Send" msgstr "Senden" @@ -2094,14 +2096,13 @@ msgid "You must be logged in to join a group." msgstr "Du musst angemeldet sein, um Mitglied einer Gruppe zu werden." #: actions/joingroup.php:88 actions/leavegroup.php:88 -#, fuzzy msgid "No nickname or ID." -msgstr "Kein Nutzername." +msgstr "Kein Benutzername oder ID" #: actions/joingroup.php:141 -#, fuzzy, php-format +#, php-format msgid "%1$s joined group %2$s" -msgstr "%s ist der Gruppe %s beigetreten" +msgstr "%1$s ist der Gruppe %2$s beigetreten" #: actions/leavegroup.php:60 msgid "You must be logged in to leave a group." @@ -2112,9 +2113,9 @@ msgid "You are not a member of that group." msgstr "Du bist kein Mitglied dieser Gruppe." #: actions/leavegroup.php:137 -#, fuzzy, php-format +#, php-format msgid "%1$s left group %2$s" -msgstr "%s hat die Gruppe %s verlassen" +msgstr "%1$s hat die Gruppe %2$s verlassen" #: actions/login.php:80 actions/otp.php:62 actions/register.php:137 msgid "Already logged in." @@ -2206,7 +2207,7 @@ msgstr "Benutzer dieses Formular, um eine neue Gruppe zu erstellen." #: actions/newapplication.php:176 msgid "Source URL is required." -msgstr "" +msgstr "Quell-URL ist erforderlich." #: actions/newapplication.php:258 actions/newapplication.php:267 #, fuzzy @@ -2290,6 +2291,8 @@ msgid "" "Be the first to [post on this topic](%%%%action.newnotice%%%%?" "status_textarea=%s)!" msgstr "" +"Sei der erste der [zu diesem Thema etwas schreibt](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" #: actions/noticesearch.php:124 #, php-format @@ -2324,9 +2327,8 @@ msgid "Nudge sent!" msgstr "Stups gesendet!" #: actions/oauthappssettings.php:59 -#, fuzzy msgid "You must be logged in to list your applications." -msgstr "Du musst angemeldet sein, um eine Gruppe zu bearbeiten." +msgstr "Du musst angemeldet sein, um deine Programm anzuzeigen" #: actions/oauthappssettings.php:74 msgid "OAuth applications" @@ -2334,29 +2336,28 @@ msgstr "OAuth-Anwendungen" #: actions/oauthappssettings.php:85 msgid "Applications you have registered" -msgstr "" +msgstr "Registrierte Programme" #: actions/oauthappssettings.php:135 #, php-format msgid "You have not registered any applications yet." -msgstr "" +msgstr "Du hast noch keine Programme registriert" #: actions/oauthconnectionssettings.php:72 msgid "Connected applications" -msgstr "" +msgstr "Verbundene Programme" #: actions/oauthconnectionssettings.php:83 msgid "You have allowed the following applications to access you account." msgstr "" #: actions/oauthconnectionssettings.php:175 -#, fuzzy msgid "You are not a user of that application." -msgstr "Du bist kein Mitglied dieser Gruppe." +msgstr "Du bist kein Benutzer dieses Programms." #: actions/oauthconnectionssettings.php:186 msgid "Unable to revoke access for app: " -msgstr "" +msgstr "Kann Zugang dieses Programm nicht entfernen: " #: actions/oauthconnectionssettings.php:198 #, php-format @@ -2382,7 +2383,7 @@ msgstr "Content-Typ " #: actions/oembed.php:160 msgid "Only " -msgstr "" +msgstr "Nur " #: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1042 #: lib/apiaction.php:1070 lib/apiaction.php:1179 @@ -2407,7 +2408,7 @@ msgstr "Verwalte zahlreiche andere Einstellungen." #: actions/othersettings.php:108 msgid " (free service)" -msgstr "" +msgstr "(kostenloser Dienst)" #: actions/othersettings.php:116 msgid "Shorten URLs with" @@ -2532,7 +2533,7 @@ msgstr "Passwort gespeichert." #. TRANS: Menu item for site administration #: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 msgid "Paths" -msgstr "" +msgstr "Pfad" #: actions/pathsadminpanel.php:70 msgid "Path and server settings for this StatusNet site." @@ -2600,15 +2601,15 @@ msgstr "Schicke URLs (lesbarer und besser zu merken) verwenden?" #: actions/pathsadminpanel.php:259 msgid "Theme" -msgstr "" +msgstr "Motiv" #: actions/pathsadminpanel.php:264 msgid "Theme server" -msgstr "" +msgstr "Motiv-Server" #: actions/pathsadminpanel.php:268 msgid "Theme path" -msgstr "" +msgstr "Motiv-Pfad" #: actions/pathsadminpanel.php:272 msgid "Theme directory" @@ -2784,14 +2785,14 @@ msgstr "Teile meine aktuelle Position wenn ich Nachrichten sende" #: actions/tagother.php:209 lib/subscriptionlist.php:106 #: lib/subscriptionlist.php:108 lib/userprofile.php:209 msgid "Tags" -msgstr "Tags" +msgstr "Stichwörter" #: actions/profilesettings.php:147 msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" -"Tags über dich selbst (Buchstaben, Zahlen, -, ., und _) durch Kommas oder " -"Leerzeichen getrennt" +"Stichwörter über dich selbst (Buchstaben, Zahlen, -, ., und _) durch Kommas " +"oder Leerzeichen getrennt" #: actions/profilesettings.php:151 msgid "Language" @@ -2832,7 +2833,7 @@ msgstr "Die eingegebene Sprache ist zu lang (maximal 50 Zeichen)" #: actions/profilesettings.php:253 actions/tagother.php:178 #, php-format msgid "Invalid tag: \"%s\"" -msgstr "Ungültiger Tag: „%s“" +msgstr "Ungültiges Stichwort: „%s“" #: actions/profilesettings.php:306 msgid "Couldn't update user for autosubscribe." @@ -2903,6 +2904,8 @@ msgstr "Sei der erste der etwas schreibt!" msgid "" "Why not [register an account](%%action.register%%) and be the first to post!" msgstr "" +"Warum nicht ein [Benutzerkonto anlegen](%%action.register%%) und den ersten " +"Beitrag abschicken!" #: actions/public.php:242 #, php-format @@ -2926,23 +2929,23 @@ msgstr "" #: actions/publictagcloud.php:57 msgid "Public tag cloud" -msgstr "Öffentliche Tag-Wolke" +msgstr "Öffentliche Stichwort-Wolke" #: actions/publictagcloud.php:63 #, php-format msgid "These are most popular recent tags on %s " -msgstr "Das sind die beliebtesten Tags auf %s " +msgstr "Das sind die beliebtesten Stichwörter auf %s " #: actions/publictagcloud.php:69 #, php-format msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." msgstr "" -"Bis jetzt hat noch niemand eine Nachricht mit dem Tag [hashtag](%%doc.tags%" -"%) gepostet." +"Bis jetzt hat noch niemand eine Nachricht mit dem Stichwort [hashtag](%%doc." +"tags%%) gepostet." #: actions/publictagcloud.php:72 msgid "Be the first to post one!" -msgstr "" +msgstr "Sei der Erste der etwas schreibt!" #: actions/publictagcloud.php:75 #, php-format @@ -2953,7 +2956,7 @@ msgstr "" #: actions/publictagcloud.php:134 msgid "Tag cloud" -msgstr "Tag-Wolke" +msgstr "Stichwort-Wolke" #: actions/recoverpassword.php:36 msgid "You are already logged in!" @@ -2995,7 +2998,7 @@ msgstr "" #: actions/recoverpassword.php:188 msgid "Password recovery" -msgstr "" +msgstr "Password-Wiederherstellung" #: actions/recoverpassword.php:191 msgid "Nickname or email address" @@ -3151,7 +3154,7 @@ msgstr "Meine Texte und Daten sind verfügbar unter" #: actions/register.php:496 msgid "Creative Commons Attribution 3.0" -msgstr "" +msgstr "Creative Commons Namensnennung 3.0" #: actions/register.php:497 msgid "" @@ -3162,7 +3165,7 @@ msgstr "" "Telefonnummer." #: actions/register.php:538 -#, fuzzy, php-format +#, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " "want to...\n" @@ -3274,19 +3277,16 @@ msgid "You can't repeat your own notice." msgstr "Du kannst deine eigene Nachricht nicht wiederholen." #: actions/repeat.php:90 -#, fuzzy msgid "You already repeated that notice." -msgstr "Du hast diesen Benutzer bereits blockiert." +msgstr "Nachricht bereits wiederholt" #: actions/repeat.php:114 lib/noticelist.php:674 -#, fuzzy msgid "Repeated" -msgstr "Erstellt" +msgstr "Wiederholt" #: actions/repeat.php:119 -#, fuzzy msgid "Repeated!" -msgstr "Erstellt" +msgstr "Wiederholt!" #: actions/replies.php:126 actions/repliesrss.php:68 #: lib/personalgroupnav.php:105 @@ -3331,12 +3331,12 @@ msgid "" msgstr "" #: actions/replies.php:206 -#, fuzzy, php-format +#, php-format msgid "" "You can try to [nudge %1$s](../%2$s) or [post something to his or her " "attention](%%%%action.newnotice%%%%?status_textarea=%3$s)." msgstr "" -"Du kannst [%s in seinem Profil einen Stups geben](../%s) oder [ihm etwas " +"Du kannst [%1$s in seinem Profil einen Stups geben](../%s) oder [ihm etwas " "posten](%%%%action.newnotice%%%%?status_textarea=%s) um seine Aufmerksamkeit " "zu erregen." @@ -3373,7 +3373,7 @@ msgstr "Dieser Benutzer hat dich blockiert." #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 #: lib/adminpanelaction.php:390 msgid "Sessions" -msgstr "" +msgstr "Sitzung" #: actions/sessionsadminpanel.php:65 #, fuzzy @@ -3382,7 +3382,7 @@ msgstr "Design-Einstellungen für diese StatusNet-Website." #: actions/sessionsadminpanel.php:175 msgid "Handle sessions" -msgstr "" +msgstr "Sitzung verwalten" #: actions/sessionsadminpanel.php:177 msgid "Whether to handle sessions ourselves." @@ -3413,7 +3413,7 @@ msgstr "Nachricht hat kein Profil" #: actions/showapplication.php:159 lib/applicationeditform.php:180 msgid "Icon" -msgstr "" +msgstr "Symbol" #: actions/showapplication.php:169 actions/version.php:195 #: lib/applicationeditform.php:195 @@ -3771,7 +3771,7 @@ msgstr "" #: actions/siteadminpanel.php:221 msgid "General" -msgstr "" +msgstr "Allgemein" #: actions/siteadminpanel.php:224 msgid "Site name" @@ -3808,14 +3808,13 @@ msgstr "Lokale Ansichten" #: actions/siteadminpanel.php:256 msgid "Default timezone" -msgstr "" +msgstr "Standard Zeitzone" #: actions/siteadminpanel.php:257 msgid "Default timezone for the site; usually UTC." -msgstr "" +msgstr "Standard Zeitzone für die Seite (meistens UTC)." #: actions/siteadminpanel.php:262 -#, fuzzy msgid "Default language" msgstr "Bevorzugte Sprache" @@ -3825,51 +3824,49 @@ msgstr "" #: actions/siteadminpanel.php:271 msgid "Limits" -msgstr "" +msgstr "Limit" #: actions/siteadminpanel.php:274 msgid "Text limit" -msgstr "" +msgstr "Textlimit" #: actions/siteadminpanel.php:274 msgid "Maximum number of characters for notices." -msgstr "" +msgstr "Maximale Anzahl von Zeichen pro Nachricht" #: actions/siteadminpanel.php:278 msgid "Dupe limit" -msgstr "" +msgstr "Wiederholungslimit" #: actions/siteadminpanel.php:278 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" +"Wie lange muss ein Benutzer warten bis er eine identische Nachricht " +"abschicken kann (in Sekunden)." #: actions/sitenoticeadminpanel.php:56 -#, fuzzy msgid "Site Notice" -msgstr "Seitennachricht" +msgstr "Seitenbenachrichtigung" #: actions/sitenoticeadminpanel.php:67 -#, fuzzy msgid "Edit site-wide message" msgstr "Neue Nachricht" #: actions/sitenoticeadminpanel.php:103 -#, fuzzy msgid "Unable to save site notice." -msgstr "Konnte Twitter-Einstellungen nicht speichern." +msgstr "Konnte Seitenbenachrichtigung nicht speichern" #: actions/sitenoticeadminpanel.php:113 msgid "Max length for the site-wide notice is 255 chars" -msgstr "" +msgstr "Maximale Länge von Systembenachrichtigungen ist 255 Zeichen" #: actions/sitenoticeadminpanel.php:176 -#, fuzzy msgid "Site notice text" -msgstr "Seitennachricht" +msgstr "Seitenbenachrichtigung" #: actions/sitenoticeadminpanel.php:178 msgid "Site-wide notice text (255 chars max; HTML okay)" -msgstr "" +msgstr "Systembenachrichtigung (max. 255 Zeichen; HTML erlaubt)" #: actions/sitenoticeadminpanel.php:198 #, fuzzy @@ -3877,7 +3874,6 @@ msgid "Save site notice" msgstr "Seitennachricht" #: actions/smssettings.php:58 -#, fuzzy msgid "SMS settings" msgstr "SMS-Einstellungen" @@ -3907,7 +3903,6 @@ msgid "Enter the code you received on your phone." msgstr "Gib den Code ein, den du auf deinem Handy via SMS bekommen hast." #: actions/smssettings.php:138 -#, fuzzy msgid "SMS phone number" msgstr "SMS-Telefonnummer" @@ -3940,7 +3935,6 @@ msgid "That phone number already belongs to another user." msgstr "Diese Telefonnummer wird bereits von einem anderen Benutzer verwendet." #: 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." @@ -4028,7 +4022,7 @@ msgstr "" #: actions/snapshotadminpanel.php:226 msgid "Report URL" -msgstr "" +msgstr "URL melden" #: actions/snapshotadminpanel.php:227 msgid "Snapshots will be sent to this URL" @@ -4050,17 +4044,15 @@ msgstr "Konnte Abonnement nicht erstellen." #: actions/subscribe.php:77 msgid "This action only accepts POST requests." -msgstr "" +msgstr "Diese Aktion nimmt nur POST-Requests" #: actions/subscribe.php:107 -#, fuzzy msgid "No such profile." -msgstr "Datei nicht gefunden." +msgstr "Profil nicht gefunden." #: actions/subscribe.php:117 -#, fuzzy msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." -msgstr "Du hast dieses Profil nicht abonniert." +msgstr "Du hast dieses OMB 0.1 Profil nicht abonniert." #: actions/subscribe.php:145 msgid "Subscribed" @@ -4197,8 +4189,8 @@ msgid "" "Tags for this user (letters, numbers, -, ., and _), comma- or space- " "separated" msgstr "" -"Tags für diesen Benutzer (Buchstaben, Nummer, -, ., und _), durch Komma oder " -"Leerzeichen getrennt" +"Stichwörter für diesen Benutzer (Buchstaben, Nummer, -, ., und _), durch " +"Komma oder Leerzeichen getrennt" #: actions/tagother.php:193 msgid "" @@ -4209,7 +4201,7 @@ msgstr "" #: actions/tagother.php:200 msgid "Could not save tags." -msgstr "Konnte Tags nicht speichern." +msgstr "Konnte Stichwörter nicht speichern." #: actions/tagother.php:236 msgid "Use this form to add tags to your subscribers or subscriptions." @@ -4219,7 +4211,7 @@ msgstr "" #: actions/tagrss.php:35 msgid "No such tag." -msgstr "Tag nicht vorhanden." +msgstr "Stichwort nicht vorhanden." #: actions/twitapitrends.php:85 msgid "API method under construction." @@ -4256,7 +4248,6 @@ msgstr "" #. TRANS: User admin panel title #: actions/useradminpanel.php:59 -#, fuzzy msgctxt "TITLE" msgid "User" msgstr "Benutzer" @@ -4276,7 +4267,7 @@ msgstr "Willkommens-Nachricht ungültig. Maximale Länge sind 255 Zeichen." #: actions/useradminpanel.php:165 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." -msgstr "" +msgstr "Ungültiges Abonnement: '%1$s' ist kein Benutzer" #: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 #: lib/personalgroupnav.php:109 @@ -4297,7 +4288,7 @@ msgstr "Neue Nutzer" #: actions/useradminpanel.php:235 msgid "New user welcome" -msgstr "" +msgstr "Neue Benutzer empfangen" #: actions/useradminpanel.php:236 msgid "Welcome text for new users (Max 255 chars)." @@ -4355,9 +4346,8 @@ msgid "Reject" msgstr "Ablehnen" #: actions/userauthorization.php:220 -#, fuzzy msgid "Reject this subscription" -msgstr "%s Abonnements" +msgstr "Abonnement ablehnen" #: actions/userauthorization.php:232 msgid "No authorization request!" @@ -4368,15 +4358,14 @@ msgid "Subscription authorized" msgstr "Abonnement autorisiert" #: actions/userauthorization.php:256 -#, 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:" +"Das Abonnement wurde bestätigt, aber es wurde keine Antwort-URL angegeben. " +"Lies nochmal die Anweisungen auf der Seite wie Abonnements bestätigt werden. " +"Dein Abonnement-Token ist:" #: actions/userauthorization.php:266 msgid "Subscription rejected" @@ -4437,15 +4426,17 @@ msgid "" "Customize the way your profile looks with a background image and a colour " "palette of your choice." msgstr "" +"Stelle ein wie deine Profilseite aussehen soll. Hintergrundbild und " +"Farbpalette sind frei wählbar." #: actions/userdesignsettings.php:282 msgid "Enjoy your hotdog!" -msgstr "" +msgstr "Hab Spaß!" #: actions/usergroups.php:64 -#, fuzzy, php-format +#, php-format msgid "%1$s groups, page %2$d" -msgstr "%s Gruppen-Mitglieder, Seite %d" +msgstr "%1$s Gruppen, Seite %2$d" #: actions/usergroups.php:130 msgid "Search for more groups" @@ -4460,6 +4451,7 @@ msgstr "%s ist in keiner Gruppe Mitglied." #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" +"Versuche [Gruppen zu finden](%%action.groupsearch%%) und diesen beizutreten." #: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 #: lib/atomusernoticefeed.php:72 @@ -4468,9 +4460,9 @@ msgid "Updates from %1$s on %2$s!" msgstr "Aktualisierungen von %1$s auf %2$s!" #: actions/version.php:73 -#, fuzzy, php-format +#, php-format msgid "StatusNet %s" -msgstr "Statistiken" +msgstr "StatusNet %s" #: actions/version.php:153 #, php-format @@ -4478,10 +4470,12 @@ msgid "" "This site is powered by %1$s version %2$s, Copyright 2008-2010 StatusNet, " "Inc. and contributors." msgstr "" +"Die Seite wird mit %1$s Version %2$s betrieben. Copyright 2008-2010 " +"StatusNet, Inc. und Mitarbeiter" #: actions/version.php:161 msgid "Contributors" -msgstr "" +msgstr "Mitarbeiter" #: actions/version.php:168 msgid "" @@ -4490,6 +4484,10 @@ msgid "" "Software Foundation, either version 3 of the License, or (at your option) " "any later version. " msgstr "" +"StatusNet ist freie Software: Sie dürfen es weiter verteilen und/oder " +"verändern unter Berücksichtigung der Regeln zur GNU General Public License " +"wie veröffentlicht durch die Free Software Foundation, entweder Version 3 " +"der Lizenz, oder jede höhere Version." #: actions/version.php:174 msgid "" @@ -4508,17 +4506,15 @@ msgstr "" #: actions/version.php:189 msgid "Plugins" -msgstr "" +msgstr "Erweiterungen" #: actions/version.php:196 lib/action.php:767 -#, fuzzy msgid "Version" -msgstr "Eigene" +msgstr "Version" #: actions/version.php:197 -#, fuzzy msgid "Author(s)" -msgstr "Autor" +msgstr "Autor(en)" #: classes/File.php:144 #, php-format @@ -4538,22 +4534,18 @@ msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" #: classes/Group_member.php:41 -#, fuzzy msgid "Group join failed." -msgstr "Gruppenprofil" +msgstr "Konnte Gruppe nicht beitreten" #: classes/Group_member.php:53 -#, fuzzy msgid "Not part of group." -msgstr "Konnte Gruppe nicht aktualisieren." +msgstr "Nicht Mitglied der Gruppe" #: classes/Group_member.php:60 -#, fuzzy msgid "Group leave failed." -msgstr "Gruppenprofil" +msgstr "Konnte Gruppe nicht verlassen" #: classes/Local_group.php:41 -#, fuzzy msgid "Could not update local group." msgstr "Konnte Gruppe nicht aktualisieren." @@ -4563,9 +4555,8 @@ msgid "Could not create login token for %s" msgstr "Konnte keinen Favoriten erstellen." #: classes/Message.php:45 -#, fuzzy msgid "You are banned from sending direct messages." -msgstr "Fehler beim Senden der Nachricht" +msgstr "Direktes senden von Nachrichten wurde blockiert" #: classes/Message.php:61 msgid "Could not insert message." @@ -4614,14 +4605,13 @@ msgid "Problem saving notice." msgstr "Problem bei Speichern der Nachricht." #: classes/Notice.php:927 -#, fuzzy msgid "Problem saving group inbox." msgstr "Problem bei Speichern der Nachricht." #: classes/Notice.php:1459 -#, fuzzy, php-format +#, php-format msgid "RT @%1$s %2$s" -msgstr "%1$s (%2$s)" +msgstr "RT @%1$s %2$s" #: classes/Subscription.php:66 lib/oauthstore.php:465 msgid "You have been banned from subscribing." @@ -4694,9 +4684,8 @@ msgid "Change email handling" msgstr "Ändere die E-Mail-Verarbeitung" #: lib/accountsettingsaction.php:124 -#, fuzzy msgid "Design your profile" -msgstr "Benutzerprofil" +msgstr "Passe dein Profil an" #: lib/accountsettingsaction.php:128 msgid "Other" @@ -4707,9 +4696,9 @@ msgid "Other options" msgstr "Sonstige Optionen" #: lib/action.php:144 -#, fuzzy, php-format +#, php-format msgid "%1$s - %2$s" -msgstr "%1$s (%2$s)" +msgstr "%1$s - %2$s" #: lib/action.php:159 msgid "Untitled page" @@ -4721,23 +4710,20 @@ msgstr "Hauptnavigation" #. TRANS: Tooltip for main menu option "Personal" #: lib/action.php:430 -#, fuzzy msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Persönliches Profil und Freundes-Zeitleiste" #: lib/action.php:433 -#, fuzzy msgctxt "MENU" msgid "Personal" msgstr "Eigene" #. TRANS: Tooltip for main menu option "Account" #: lib/action.php:435 -#, fuzzy msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" -msgstr "Ändere deine E-Mail, dein Avatar, Passwort, Profil" +msgstr "Ändere deine E-Mail, Avatar, Passwort und Profil" #. TRANS: Tooltip for main menu option "Services" #: lib/action.php:440 @@ -4747,7 +4733,6 @@ msgid "Connect to services" msgstr "Konnte nicht zum Server umleiten: %s" #: lib/action.php:443 -#, fuzzy msgid "Connect" msgstr "Verbinden" @@ -4759,85 +4744,73 @@ msgid "Change site configuration" msgstr "Hauptnavigation" #: lib/action.php:449 -#, fuzzy msgctxt "MENU" msgid "Admin" -msgstr "Admin" +msgstr "Administrator" #. TRANS: Tooltip for main menu option "Invite" #: lib/action.php:453 -#, fuzzy, php-format +#, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Lade Freunde und Kollegen ein dir auf %s zu folgen" #: lib/action.php:456 -#, fuzzy msgctxt "MENU" msgid "Invite" msgstr "Einladen" #. TRANS: Tooltip for main menu option "Logout" #: lib/action.php:462 -#, fuzzy msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Von der Seite abmelden" #: lib/action.php:465 -#, fuzzy msgctxt "MENU" msgid "Logout" msgstr "Abmelden" #. TRANS: Tooltip for main menu option "Register" #: lib/action.php:470 -#, fuzzy msgctxt "TOOLTIP" msgid "Create an account" msgstr "Neues Konto erstellen" #: lib/action.php:473 -#, fuzzy msgctxt "MENU" msgid "Register" msgstr "Registrieren" #. TRANS: Tooltip for main menu option "Login" #: lib/action.php:476 -#, fuzzy msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Auf der Seite anmelden" #: lib/action.php:479 -#, fuzzy msgctxt "MENU" msgid "Login" msgstr "Anmelden" #. TRANS: Tooltip for main menu option "Help" #: lib/action.php:482 -#, fuzzy msgctxt "TOOLTIP" msgid "Help me!" msgstr "Hilf mir!" #: lib/action.php:485 -#, fuzzy msgctxt "MENU" msgid "Help" msgstr "Hilfe" #. TRANS: Tooltip for main menu option "Search" #: lib/action.php:488 -#, fuzzy msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Suche nach Leuten oder Text" #: lib/action.php:491 -#, fuzzy msgctxt "MENU" msgid "Search" msgstr "Suchen" @@ -4941,7 +4914,6 @@ msgid "Content and data copyright by contributors. All rights reserved." msgstr "" #: lib/action.php:847 -#, fuzzy msgid "All " msgstr "Alle " @@ -5002,13 +4974,11 @@ msgstr "Konnte die Design Einstellungen nicht löschen." #. TRANS: Menu item title/tooltip #: lib/adminpanelaction.php:348 -#, fuzzy msgid "Basic site configuration" -msgstr "Bestätigung der E-Mail-Adresse" +msgstr "Basis Seiteneinstellungen" #. TRANS: Menu item for site administration #: lib/adminpanelaction.php:350 -#, fuzzy msgctxt "MENU" msgid "Site" msgstr "Seite" @@ -5021,16 +4991,14 @@ msgstr "SMS-Konfiguration" #. TRANS: Menu item for site administration #: lib/adminpanelaction.php:358 -#, fuzzy msgctxt "MENU" msgid "Design" -msgstr "Eigene" +msgstr "Design" #. TRANS: Menu item title/tooltip #: lib/adminpanelaction.php:364 -#, fuzzy msgid "User configuration" -msgstr "SMS-Konfiguration" +msgstr "Benutzereinstellung" #. TRANS: Menu item for site administration #: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 @@ -5051,9 +5019,8 @@ msgstr "SMS-Konfiguration" #. TRANS: Menu item title/tooltip #: lib/adminpanelaction.php:388 -#, fuzzy msgid "Sessions configuration" -msgstr "SMS-Konfiguration" +msgstr "Sitzungseinstellungen" #. TRANS: Menu item title/tooltip #: lib/adminpanelaction.php:396 @@ -5078,11 +5045,11 @@ msgstr "" #: lib/applicationeditform.php:136 msgid "Edit application" -msgstr "" +msgstr "Programm bearbeiten" #: lib/applicationeditform.php:184 msgid "Icon for this application" -msgstr "" +msgstr "Programmsymbol" #: lib/applicationeditform.php:204 #, fuzzy, php-format @@ -5119,7 +5086,7 @@ msgstr "" #: lib/applicationeditform.php:258 msgid "Browser" -msgstr "" +msgstr "Browser" #: lib/applicationeditform.php:274 msgid "Desktop" @@ -5131,11 +5098,11 @@ msgstr "" #: lib/applicationeditform.php:297 msgid "Read-only" -msgstr "" +msgstr "Schreibgeschützt" #: lib/applicationeditform.php:315 msgid "Read-write" -msgstr "" +msgstr "Lese/Schreibzugriff" #: lib/applicationeditform.php:316 msgid "Default access for this application: read-only, or read-write" @@ -5164,12 +5131,11 @@ msgstr "Nachrichten in denen dieser Anhang erscheint" #: lib/attachmenttagcloudsection.php:48 msgid "Tags for this attachment" -msgstr "Tags für diesen Anhang" +msgstr "Stichworte für diesen Anhang" #: lib/authenticationplugin.php:220 lib/authenticationplugin.php:225 -#, fuzzy msgid "Password changing failed" -msgstr "Passwort geändert" +msgstr "Passwort konnte nicht geändert werden" #: lib/authenticationplugin.php:235 #, fuzzy @@ -5213,6 +5179,9 @@ msgid "" "Subscribers: %2$s\n" "Notices: %3$s" msgstr "" +"Abonnements: %1$s\n" +"Abonnenten: %2$s\n" +"Mitteilungen: %3$s" #: lib/command.php:152 lib/command.php:390 lib/command.php:451 msgid "Notice with that id does not exist" @@ -5369,7 +5338,7 @@ msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "" #: lib/command.php:692 -#, fuzzy, php-format +#, php-format msgid "Unsubscribed %s" msgstr "%s nicht mehr abonniert" @@ -5501,7 +5470,7 @@ msgstr "" #: lib/designsettings.php:418 msgid "Design defaults restored." -msgstr "" +msgstr "Standard Design wieder hergestellt." #: lib/disfavorform.php:114 lib/disfavorform.php:140 #, fuzzy @@ -5539,7 +5508,7 @@ msgstr "Daten exportieren" #: lib/galleryaction.php:121 msgid "Filter tags" -msgstr "Tags filtern" +msgstr "Stichworte filtern" #: lib/galleryaction.php:131 msgid "All" @@ -5552,12 +5521,12 @@ msgstr "Wähle einen Netzanbieter" #: lib/galleryaction.php:140 msgid "Tag" -msgstr "Tag" +msgstr "Stichwort" #: lib/galleryaction.php:141 #, fuzzy msgid "Choose a tag to narrow list" -msgstr "Wähle einen Tag, um die Liste einzuschränken" +msgstr "Wähle ein Stichwort, um die Liste einzuschränken" #: lib/galleryaction.php:143 msgid "Go" @@ -5637,7 +5606,7 @@ msgstr "Gruppen mit den meisten Beiträgen" #: lib/grouptagcloudsection.php:56 #, php-format msgid "Tags in %s group's notices" -msgstr "Tags in den Nachrichten der Gruppe %s" +msgstr "Stichworte in den Nachrichten der Gruppe %s" #: lib/htmloutputter.php:103 msgid "This page is not available in a media type you accept" @@ -6037,7 +6006,6 @@ msgid "Available characters" msgstr "Verfügbare Zeichen" #: lib/messageform.php:178 lib/noticeform.php:236 -#, fuzzy msgctxt "Send button for sending notice" msgid "Send" msgstr "Senden" @@ -6053,11 +6021,11 @@ msgstr "Was ist los, %s?" #: lib/noticeform.php:192 msgid "Attach" -msgstr "" +msgstr "Anhängen" #: lib/noticeform.php:196 msgid "Attach a file" -msgstr "" +msgstr "Datei anhängen" #: lib/noticeform.php:212 msgid "Share my location" @@ -6096,7 +6064,7 @@ msgstr "W" #: lib/noticelist.php:438 msgid "at" -msgstr "" +msgstr "in" #: lib/noticelist.php:566 msgid "in context" @@ -6182,7 +6150,7 @@ msgstr "Deine gesendeten Nachrichten" #: lib/personaltagcloudsection.php:56 #, php-format msgid "Tags in %s's notices" -msgstr "Tags in %ss Nachrichten" +msgstr "Stichworte in %ss Nachrichten" #: lib/plugin.php:114 #, fuzzy @@ -6236,15 +6204,15 @@ msgstr "Benutzer-Gruppen" #: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 msgid "Recent tags" -msgstr "Aktuelle Tags" +msgstr "Aktuelle Stichworte" #: lib/publicgroupnav.php:88 msgid "Featured" -msgstr "Featured" +msgstr "Beliebte Benutzer" #: lib/publicgroupnav.php:92 msgid "Popular" -msgstr "Beliebt" +msgstr "Beliebte Beiträge" #: lib/repeatform.php:107 msgid "Repeat this notice?" diff --git a/locale/el/LC_MESSAGES/statusnet.po b/locale/el/LC_MESSAGES/statusnet.po index 6b5c3973f8..34c193e290 100644 --- a/locale/el/LC_MESSAGES/statusnet.po +++ b/locale/el/LC_MESSAGES/statusnet.po @@ -10,11 +10,11 @@ msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-03-04 18:55+0000\n" -"PO-Revision-Date: 2010-03-04 18:56:10+0000\n" +"PO-Revision-Date: 2010-03-05 22:35:20+0000\n" "Language-Team: Greek\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63298); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: el\n" "X-Message-Group: out-statusnet\n" @@ -4625,7 +4625,6 @@ msgid "Connect to services" msgstr "Αδυναμία ανακατεύθηνσης στο διακομιστή: %s" #: lib/action.php:443 -#, fuzzy msgid "Connect" msgstr "Σύνδεση" diff --git a/locale/en_GB/LC_MESSAGES/statusnet.po b/locale/en_GB/LC_MESSAGES/statusnet.po index cac1893e88..d5bb03f3e2 100644 --- a/locale/en_GB/LC_MESSAGES/statusnet.po +++ b/locale/en_GB/LC_MESSAGES/statusnet.po @@ -10,11 +10,11 @@ msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-03-04 18:55+0000\n" -"PO-Revision-Date: 2010-03-04 18:56:13+0000\n" +"PO-Revision-Date: 2010-03-05 22:35:23+0000\n" "Language-Team: British English\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63298); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: en-gb\n" "X-Message-Group: out-statusnet\n" @@ -4671,7 +4671,6 @@ msgid "Connect to services" msgstr "Connect to services" #: lib/action.php:443 -#, fuzzy msgid "Connect" msgstr "Connect" diff --git a/locale/es/LC_MESSAGES/statusnet.po b/locale/es/LC_MESSAGES/statusnet.po index 4aa92796ab..04e49bc11e 100644 --- a/locale/es/LC_MESSAGES/statusnet.po +++ b/locale/es/LC_MESSAGES/statusnet.po @@ -14,11 +14,11 @@ msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-03-04 18:55+0000\n" -"PO-Revision-Date: 2010-03-04 18:56:16+0000\n" +"PO-Revision-Date: 2010-03-05 22:35:26+0000\n" "Language-Team: Spanish\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63298); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: out-statusnet\n" @@ -4727,7 +4727,6 @@ msgid "Connect to services" msgstr "Conectar a los servicios" #: lib/action.php:443 -#, fuzzy msgid "Connect" msgstr "Conectarse" diff --git a/locale/fa/LC_MESSAGES/statusnet.po b/locale/fa/LC_MESSAGES/statusnet.po index a685686002..8e2a72d045 100644 --- a/locale/fa/LC_MESSAGES/statusnet.po +++ b/locale/fa/LC_MESSAGES/statusnet.po @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-03-04 18:55+0000\n" -"PO-Revision-Date: 2010-03-04 18:56:22+0000\n" +"PO-Revision-Date: 2010-03-05 22:35:32+0000\n" "Last-Translator: Ahmad Sufi Mahmudi\n" "Language-Team: Persian\n" "MIME-Version: 1.0\n" @@ -20,7 +20,7 @@ msgstr "" "X-Language-Code: fa\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63298); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" #. TRANS: Page title @@ -4629,7 +4629,6 @@ msgid "Connect to services" msgstr "متصل شدن به خدمات" #: lib/action.php:443 -#, fuzzy msgid "Connect" msgstr "وصل‌شدن" diff --git a/locale/fi/LC_MESSAGES/statusnet.po b/locale/fi/LC_MESSAGES/statusnet.po index b4978769f3..dc707ff1b5 100644 --- a/locale/fi/LC_MESSAGES/statusnet.po +++ b/locale/fi/LC_MESSAGES/statusnet.po @@ -11,11 +11,11 @@ msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-03-04 18:55+0000\n" -"PO-Revision-Date: 2010-03-04 18:56:19+0000\n" +"PO-Revision-Date: 2010-03-05 22:35:29+0000\n" "Language-Team: Finnish\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63298); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: out-statusnet\n" @@ -4805,7 +4805,6 @@ msgid "Connect to services" msgstr "Ei voitu uudelleenohjata palvelimelle: %s" #: lib/action.php:443 -#, fuzzy msgid "Connect" msgstr "Yhdistä" diff --git a/locale/fr/LC_MESSAGES/statusnet.po b/locale/fr/LC_MESSAGES/statusnet.po index c8d14b83dc..1965123eaa 100644 --- a/locale/fr/LC_MESSAGES/statusnet.po +++ b/locale/fr/LC_MESSAGES/statusnet.po @@ -15,11 +15,11 @@ msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-03-04 18:55+0000\n" -"PO-Revision-Date: 2010-03-04 18:56:25+0000\n" +"PO-Revision-Date: 2010-03-05 22:35:34+0000\n" "Language-Team: French\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63298); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: out-statusnet\n" @@ -1591,24 +1591,20 @@ msgid "Cannot read file." msgstr "Impossible de lire le fichier" #: actions/grantrole.php:62 actions/revokerole.php:62 -#, fuzzy msgid "Invalid role." -msgstr "Jeton incorrect." +msgstr "Rôle invalide." #: actions/grantrole.php:66 actions/revokerole.php:66 msgid "This role is reserved and cannot be set." -msgstr "" +msgstr "Ce rôle est réservé et ne peut pas être défini." #: actions/grantrole.php:75 -#, fuzzy msgid "You cannot grant user roles on this site." -msgstr "" -"Vous ne pouvez pas mettre des utilisateur dans le bac à sable sur ce site." +msgstr "Vous ne pouvez pas attribuer des rôles aux utilisateurs sur ce site." #: actions/grantrole.php:82 -#, fuzzy msgid "User already has this role." -msgstr "Cet utilisateur est déjà réduit au silence." +msgstr "L'utilisateur a déjà ce rôle." #: actions/groupblock.php:71 actions/groupunblock.php:71 #: actions/makeadmin.php:71 actions/subedit.php:46 @@ -3377,14 +3373,12 @@ msgid "Replies to %1$s on %2$s!" msgstr "Réponses à %1$s sur %2$s !" #: actions/revokerole.php:75 -#, fuzzy msgid "You cannot revoke user roles on this site." -msgstr "Vous ne pouvez pas réduire des utilisateurs au silence sur ce site." +msgstr "Vous ne pouvez pas révoquer les rôles des utilisateurs sur ce site." #: actions/revokerole.php:82 -#, fuzzy msgid "User doesn't have this role." -msgstr "Utilisateur sans profil correspondant." +msgstr "L'utilisateur ne possède pas ce rôle." #: actions/rsd.php:146 actions/version.php:157 msgid "StatusNet" @@ -3791,9 +3785,8 @@ msgid "User is already silenced." msgstr "Cet utilisateur est déjà réduit au silence." #: actions/siteadminpanel.php:69 -#, fuzzy msgid "Basic settings for this StatusNet site" -msgstr "Paramètres basiques pour ce site StatusNet." +msgstr "Paramètres basiques pour ce site StatusNet" #: actions/siteadminpanel.php:133 msgid "Site name must have non-zero length." @@ -3861,13 +3854,14 @@ msgid "Default timezone for the site; usually UTC." msgstr "Zone horaire par défaut pour ce site ; généralement UTC." #: actions/siteadminpanel.php:262 -#, fuzzy msgid "Default language" -msgstr "Langue du site par défaut" +msgstr "Langue par défaut" #: actions/siteadminpanel.php:263 msgid "Site language when autodetection from browser settings is not available" msgstr "" +"Langue du site lorsque la détection automatique des paramètres du navigateur " +"n'est pas disponible" #: actions/siteadminpanel.php:271 msgid "Limits" @@ -3892,37 +3886,33 @@ msgstr "" "la même chose de nouveau." #: actions/sitenoticeadminpanel.php:56 -#, fuzzy msgid "Site Notice" -msgstr "Notice du site" +msgstr "Avis du site" #: actions/sitenoticeadminpanel.php:67 -#, fuzzy msgid "Edit site-wide message" -msgstr "Nouveau message" +msgstr "Modifier un message portant sur tout le site" #: actions/sitenoticeadminpanel.php:103 -#, fuzzy msgid "Unable to save site notice." -msgstr "Impossible de sauvegarder les parmètres de la conception." +msgstr "Impossible d'enregistrer l'avis du site." #: actions/sitenoticeadminpanel.php:113 msgid "Max length for the site-wide notice is 255 chars" -msgstr "" +msgstr "La longueur maximale pour l'avis du site est de 255 caractères" #: actions/sitenoticeadminpanel.php:176 -#, fuzzy msgid "Site notice text" -msgstr "Notice du site" +msgstr "Texte de l'avis du site" #: actions/sitenoticeadminpanel.php:178 msgid "Site-wide notice text (255 chars max; HTML okay)" msgstr "" +"Texte de l'avis portant sur tout le site (max. 255 caractères ; HTML activé)" #: actions/sitenoticeadminpanel.php:198 -#, fuzzy msgid "Save site notice" -msgstr "Notice du site" +msgstr "Enregistrer l'avis du site" #: actions/smssettings.php:58 msgid "SMS settings" @@ -4034,9 +4024,8 @@ msgid "Snapshots" msgstr "Instantanés" #: actions/snapshotadminpanel.php:65 -#, fuzzy msgid "Manage snapshot configuration" -msgstr "Modifier la configuration du site" +msgstr "Gérer la configuration des instantanés" #: actions/snapshotadminpanel.php:127 msgid "Invalid snapshot run value." @@ -4083,9 +4072,8 @@ msgid "Snapshots will be sent to this URL" msgstr "Les instantanés seront envoyés à cette URL" #: actions/snapshotadminpanel.php:248 -#, fuzzy msgid "Save snapshot settings" -msgstr "Sauvegarder les paramètres du site" +msgstr "Sauvegarder les paramètres des instantanés" #: actions/subedit.php:70 msgid "You are not subscribed to that profile." @@ -4702,9 +4690,8 @@ msgid "Couldn't delete self-subscription." msgstr "Impossible de supprimer l’abonnement à soi-même." #: classes/Subscription.php:190 -#, fuzzy msgid "Couldn't delete subscription OMB token." -msgstr "Impossible de cesser l’abonnement" +msgstr "Impossible de supprimer le jeton OMB de l'abonnement ." #: classes/Subscription.php:201 lib/subs.php:69 msgid "Couldn't delete subscription." @@ -4796,7 +4783,6 @@ msgid "Connect to services" msgstr "Se connecter aux services" #: lib/action.php:443 -#, fuzzy msgid "Connect" msgstr "Connecter" @@ -5085,15 +5071,13 @@ msgstr "Configuration des sessions" #. TRANS: Menu item title/tooltip #: lib/adminpanelaction.php:396 -#, fuzzy msgid "Edit site notice" -msgstr "Notice du site" +msgstr "Modifier l'avis du site" #. TRANS: Menu item title/tooltip #: lib/adminpanelaction.php:404 -#, fuzzy msgid "Snapshots configuration" -msgstr "Configuration des chemins" +msgstr "Configuration des instantanés" #: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." @@ -5634,7 +5618,7 @@ msgstr "Aller" #: lib/grantroleform.php:91 #, php-format msgid "Grant this user the \"%s\" role" -msgstr "" +msgstr "Accorder le rôle « %s » à cet utilisateur" #: lib/groupeditform.php:163 msgid "URL of the homepage or blog of the group or topic" @@ -6346,9 +6330,9 @@ msgid "Repeat this notice" msgstr "Reprendre cet avis" #: lib/revokeroleform.php:91 -#, fuzzy, php-format +#, php-format msgid "Revoke the \"%s\" role from this user" -msgstr "Bloquer cet utilisateur de de groupe" +msgstr "Révoquer le rôle « %s » de cet utilisateur" #: lib/router.php:671 msgid "No single user defined for single-user mode." @@ -6505,21 +6489,18 @@ msgid "Moderate" msgstr "Modérer" #: lib/userprofile.php:352 -#, fuzzy msgid "User role" -msgstr "Profil de l’utilisateur" +msgstr "Rôle de l'utilisateur" #: lib/userprofile.php:354 -#, fuzzy msgctxt "role" msgid "Administrator" -msgstr "Administrateurs" +msgstr "Administrateur" #: lib/userprofile.php:355 -#, fuzzy msgctxt "role" msgid "Moderator" -msgstr "Modérer" +msgstr "Modérateur" #: lib/util.php:1015 msgid "a few seconds ago" diff --git a/locale/ga/LC_MESSAGES/statusnet.po b/locale/ga/LC_MESSAGES/statusnet.po index 97c3d45f1f..b88dc4e2c1 100644 --- a/locale/ga/LC_MESSAGES/statusnet.po +++ b/locale/ga/LC_MESSAGES/statusnet.po @@ -9,11 +9,11 @@ msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-03-04 18:55+0000\n" -"PO-Revision-Date: 2010-03-04 18:56:28+0000\n" +"PO-Revision-Date: 2010-03-05 22:35:38+0000\n" "Language-Team: Irish\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63298); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ga\n" "X-Message-Group: out-statusnet\n" @@ -4863,7 +4863,6 @@ msgid "Connect to services" msgstr "Non se pode redireccionar ao servidor: %s" #: lib/action.php:443 -#, fuzzy msgid "Connect" msgstr "Conectar" diff --git a/locale/he/LC_MESSAGES/statusnet.po b/locale/he/LC_MESSAGES/statusnet.po index ea92756853..0856fd8fe6 100644 --- a/locale/he/LC_MESSAGES/statusnet.po +++ b/locale/he/LC_MESSAGES/statusnet.po @@ -8,11 +8,11 @@ msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-03-04 18:55+0000\n" -"PO-Revision-Date: 2010-03-04 18:56:31+0000\n" +"PO-Revision-Date: 2010-03-05 22:35:40+0000\n" "Language-Team: Hebrew\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63298); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: out-statusnet\n" @@ -4707,7 +4707,6 @@ msgid "Connect to services" msgstr "נכשלה ההפניה לשרת: %s" #: lib/action.php:443 -#, fuzzy msgid "Connect" msgstr "התחבר" diff --git a/locale/hsb/LC_MESSAGES/statusnet.po b/locale/hsb/LC_MESSAGES/statusnet.po index b4a6ec7a8d..8c129a3762 100644 --- a/locale/hsb/LC_MESSAGES/statusnet.po +++ b/locale/hsb/LC_MESSAGES/statusnet.po @@ -10,11 +10,11 @@ msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-03-04 18:55+0000\n" -"PO-Revision-Date: 2010-03-04 18:56:34+0000\n" +"PO-Revision-Date: 2010-03-05 22:35:43+0000\n" "Language-Team: Dutch\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63298); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: hsb\n" "X-Message-Group: out-statusnet\n" @@ -4501,7 +4501,6 @@ msgid "Connect to services" msgstr "Zwiski" #: lib/action.php:443 -#, fuzzy msgid "Connect" msgstr "Zwjazać" diff --git a/locale/ia/LC_MESSAGES/statusnet.po b/locale/ia/LC_MESSAGES/statusnet.po index 8f39766738..4116b91d57 100644 --- a/locale/ia/LC_MESSAGES/statusnet.po +++ b/locale/ia/LC_MESSAGES/statusnet.po @@ -9,11 +9,11 @@ msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-03-04 18:55+0000\n" -"PO-Revision-Date: 2010-03-04 18:56:37+0000\n" +"PO-Revision-Date: 2010-03-05 22:35:46+0000\n" "Language-Team: Interlingua\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63298); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: out-statusnet\n" @@ -4754,7 +4754,6 @@ msgid "Connect to services" msgstr "Connecter con servicios" #: lib/action.php:443 -#, fuzzy msgid "Connect" msgstr "Connecter" diff --git a/locale/is/LC_MESSAGES/statusnet.po b/locale/is/LC_MESSAGES/statusnet.po index 84a90d7d82..be9a802500 100644 --- a/locale/is/LC_MESSAGES/statusnet.po +++ b/locale/is/LC_MESSAGES/statusnet.po @@ -9,11 +9,11 @@ msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-03-04 18:55+0000\n" -"PO-Revision-Date: 2010-03-04 18:56:39+0000\n" +"PO-Revision-Date: 2010-03-05 22:35:49+0000\n" "Language-Team: Icelandic\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63298); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: is\n" "X-Message-Group: out-statusnet\n" @@ -4755,7 +4755,6 @@ msgid "Connect to services" msgstr "Gat ekki framsent til vefþjóns: %s" #: lib/action.php:443 -#, fuzzy msgid "Connect" msgstr "Tengjast" diff --git a/locale/it/LC_MESSAGES/statusnet.po b/locale/it/LC_MESSAGES/statusnet.po index 5f72eb1a77..05b8290678 100644 --- a/locale/it/LC_MESSAGES/statusnet.po +++ b/locale/it/LC_MESSAGES/statusnet.po @@ -10,11 +10,11 @@ msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-03-04 18:55+0000\n" -"PO-Revision-Date: 2010-03-04 18:56:42+0000\n" +"PO-Revision-Date: 2010-03-05 22:35:52+0000\n" "Language-Team: Italian\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63298); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: it\n" "X-Message-Group: out-statusnet\n" @@ -45,7 +45,6 @@ msgstr "" #. TRANS: Checkbox label for prohibiting anonymous users from viewing site. #: actions/accessadminpanel.php:167 -#, fuzzy msgctxt "LABEL" msgid "Private" msgstr "Privato" @@ -76,7 +75,6 @@ msgid "Save access settings" msgstr "Salva impostazioni di accesso" #: actions/accessadminpanel.php:203 -#, fuzzy msgctxt "BUTTON" msgid "Save" msgstr "Salva" @@ -1582,23 +1580,20 @@ msgid "Cannot read file." msgstr "Impossibile leggere il file." #: actions/grantrole.php:62 actions/revokerole.php:62 -#, fuzzy msgid "Invalid role." -msgstr "Token non valido." +msgstr "Ruolo non valido." #: actions/grantrole.php:66 actions/revokerole.php:66 msgid "This role is reserved and cannot be set." -msgstr "" +msgstr "Questo ruolo è riservato e non può essere impostato." #: actions/grantrole.php:75 -#, fuzzy msgid "You cannot grant user roles on this site." -msgstr "Non puoi mettere in \"sandbox\" gli utenti su questo sito." +msgstr "Non puoi concedere i ruoli agli utenti su questo sito." #: actions/grantrole.php:82 -#, fuzzy msgid "User already has this role." -msgstr "L'utente è già stato zittito." +msgstr "L'utente ricopre già questo ruolo." #: actions/groupblock.php:71 actions/groupunblock.php:71 #: actions/makeadmin.php:71 actions/subedit.php:46 @@ -2019,7 +2014,6 @@ msgstr "Puoi aggiungere un messaggio personale agli inviti." #. TRANS: Send button for inviting friends #: actions/invite.php:198 -#, fuzzy msgctxt "BUTTON" msgid "Send" msgstr "Invia" @@ -3339,14 +3333,12 @@ msgid "Replies to %1$s on %2$s!" msgstr "Risposte a %1$s su %2$s!" #: actions/revokerole.php:75 -#, fuzzy msgid "You cannot revoke user roles on this site." -msgstr "Non puoi zittire gli utenti su questo sito." +msgstr "Non puoi revocare i ruoli degli utenti su questo sito." #: actions/revokerole.php:82 -#, fuzzy msgid "User doesn't have this role." -msgstr "Utente senza profilo corrispondente." +msgstr "L'utente non ricopre questo ruolo." #: actions/rsd.php:146 actions/version.php:157 msgid "StatusNet" @@ -3747,9 +3739,8 @@ msgid "User is already silenced." msgstr "L'utente è già stato zittito." #: actions/siteadminpanel.php:69 -#, fuzzy msgid "Basic settings for this StatusNet site" -msgstr "Impostazioni di base per questo sito StatusNet." +msgstr "Impostazioni di base per questo sito StatusNet" #: actions/siteadminpanel.php:133 msgid "Site name must have non-zero length." @@ -3817,13 +3808,14 @@ msgid "Default timezone for the site; usually UTC." msgstr "Fuso orario predefinito; tipicamente UTC" #: actions/siteadminpanel.php:262 -#, fuzzy msgid "Default language" msgstr "Lingua predefinita" #: actions/siteadminpanel.php:263 msgid "Site language when autodetection from browser settings is not available" msgstr "" +"Lingua del sito quando il rilevamento automatico del browser non è " +"disponibile" #: actions/siteadminpanel.php:271 msgid "Limits" @@ -3848,37 +3840,32 @@ msgstr "" "nuovamente lo stesso messaggio" #: actions/sitenoticeadminpanel.php:56 -#, fuzzy msgid "Site Notice" msgstr "Messaggio del sito" #: actions/sitenoticeadminpanel.php:67 -#, fuzzy msgid "Edit site-wide message" -msgstr "Nuovo messaggio" +msgstr "Modifica il messaggio del sito" #: actions/sitenoticeadminpanel.php:103 -#, fuzzy msgid "Unable to save site notice." -msgstr "Impossibile salvare la impostazioni dell'aspetto." +msgstr "Impossibile salvare il messaggio del sito." #: actions/sitenoticeadminpanel.php:113 msgid "Max length for the site-wide notice is 255 chars" -msgstr "" +msgstr "La dimensione massima del messaggio del sito è di 255 caratteri" #: actions/sitenoticeadminpanel.php:176 -#, fuzzy msgid "Site notice text" -msgstr "Messaggio del sito" +msgstr "Testo messaggio del sito" #: actions/sitenoticeadminpanel.php:178 msgid "Site-wide notice text (255 chars max; HTML okay)" -msgstr "" +msgstr "Testo messaggio del sito (massimo 255 caratteri, HTML consentito)" #: actions/sitenoticeadminpanel.php:198 -#, fuzzy msgid "Save site notice" -msgstr "Messaggio del sito" +msgstr "Salva messaggio" #: actions/smssettings.php:58 msgid "SMS settings" @@ -3986,9 +3973,8 @@ msgid "Snapshots" msgstr "Snapshot" #: actions/snapshotadminpanel.php:65 -#, fuzzy msgid "Manage snapshot configuration" -msgstr "Modifica la configurazione del sito" +msgstr "Gestisci configurazione snapshot" #: actions/snapshotadminpanel.php:127 msgid "Invalid snapshot run value." @@ -4035,9 +4021,8 @@ msgid "Snapshots will be sent to this URL" msgstr "Gli snapshot verranno inviati a questo URL" #: actions/snapshotadminpanel.php:248 -#, fuzzy msgid "Save snapshot settings" -msgstr "Salva impostazioni" +msgstr "Salva impostazioni snapshot" #: actions/subedit.php:70 msgid "You are not subscribed to that profile." @@ -4258,7 +4243,6 @@ msgstr "" #. TRANS: User admin panel title #: actions/useradminpanel.php:59 -#, fuzzy msgctxt "TITLE" msgid "User" msgstr "Utente" @@ -4651,9 +4635,8 @@ msgid "Couldn't delete self-subscription." msgstr "Impossibile eliminare l'auto-abbonamento." #: classes/Subscription.php:190 -#, fuzzy msgid "Couldn't delete subscription OMB token." -msgstr "Impossibile eliminare l'abbonamento." +msgstr "Impossibile eliminare il token di abbonamento OMB." #: classes/Subscription.php:201 lib/subs.php:69 msgid "Couldn't delete subscription." @@ -4723,123 +4706,105 @@ msgstr "Esplorazione sito primaria" #. TRANS: Tooltip for main menu option "Personal" #: lib/action.php:430 -#, fuzzy msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Profilo personale e attività degli amici" #: lib/action.php:433 -#, fuzzy msgctxt "MENU" msgid "Personal" msgstr "Personale" #. TRANS: Tooltip for main menu option "Account" #: lib/action.php:435 -#, fuzzy msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Modifica la tua email, immagine, password o il tuo profilo" #. TRANS: Tooltip for main menu option "Services" #: lib/action.php:440 -#, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Connettiti con altri servizi" #: lib/action.php:443 -#, fuzzy msgid "Connect" msgstr "Connetti" #. TRANS: Tooltip for menu option "Admin" #: lib/action.php:446 -#, fuzzy msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Modifica la configurazione del sito" #: lib/action.php:449 -#, fuzzy msgctxt "MENU" msgid "Admin" msgstr "Amministra" #. TRANS: Tooltip for main menu option "Invite" #: lib/action.php:453 -#, fuzzy, php-format +#, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Invita amici e colleghi a seguirti su %s" #: lib/action.php:456 -#, fuzzy msgctxt "MENU" msgid "Invite" msgstr "Invita" #. TRANS: Tooltip for main menu option "Logout" #: lib/action.php:462 -#, fuzzy msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Termina la tua sessione sul sito" #: lib/action.php:465 -#, fuzzy msgctxt "MENU" msgid "Logout" msgstr "Esci" #. TRANS: Tooltip for main menu option "Register" #: lib/action.php:470 -#, fuzzy msgctxt "TOOLTIP" msgid "Create an account" msgstr "Crea un account" #: lib/action.php:473 -#, fuzzy msgctxt "MENU" msgid "Register" msgstr "Registrati" #. TRANS: Tooltip for main menu option "Login" #: lib/action.php:476 -#, fuzzy msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Accedi al sito" #: lib/action.php:479 -#, fuzzy msgctxt "MENU" msgid "Login" msgstr "Accedi" #. TRANS: Tooltip for main menu option "Help" #: lib/action.php:482 -#, fuzzy msgctxt "TOOLTIP" msgid "Help me!" msgstr "Aiutami!" #: lib/action.php:485 -#, fuzzy msgctxt "MENU" msgid "Help" msgstr "Aiuto" #. TRANS: Tooltip for main menu option "Search" #: lib/action.php:488 -#, fuzzy msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Cerca persone o del testo" #: lib/action.php:491 -#, fuzzy msgctxt "MENU" msgid "Search" msgstr "Cerca" @@ -5008,7 +4973,6 @@ msgstr "Configurazione di base" #. TRANS: Menu item for site administration #: lib/adminpanelaction.php:350 -#, fuzzy msgctxt "MENU" msgid "Site" msgstr "Sito" @@ -5020,7 +4984,6 @@ msgstr "Configurazione aspetto" #. TRANS: Menu item for site administration #: lib/adminpanelaction.php:358 -#, fuzzy msgctxt "MENU" msgid "Design" msgstr "Aspetto" @@ -5052,15 +5015,13 @@ msgstr "Configurazione sessioni" #. TRANS: Menu item title/tooltip #: lib/adminpanelaction.php:396 -#, fuzzy msgid "Edit site notice" -msgstr "Messaggio del sito" +msgstr "Modifica messaggio del sito" #. TRANS: Menu item title/tooltip #: lib/adminpanelaction.php:404 -#, fuzzy msgid "Snapshots configuration" -msgstr "Configurazione percorsi" +msgstr "Configurazione snapshot" #: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." @@ -5598,7 +5559,7 @@ msgstr "Vai" #: lib/grantroleform.php:91 #, php-format msgid "Grant this user the \"%s\" role" -msgstr "" +msgstr "Concedi a questo utente il ruolo \"%s\"" #: lib/groupeditform.php:163 msgid "URL of the homepage or blog of the group or topic" @@ -6305,9 +6266,9 @@ msgid "Repeat this notice" msgstr "Ripeti questo messaggio" #: lib/revokeroleform.php:91 -#, fuzzy, php-format +#, php-format msgid "Revoke the \"%s\" role from this user" -msgstr "Blocca l'utente da questo gruppo" +msgstr "Revoca il ruolo \"%s\" a questo utente" #: lib/router.php:671 msgid "No single user defined for single-user mode." @@ -6464,21 +6425,18 @@ msgid "Moderate" msgstr "Modera" #: lib/userprofile.php:352 -#, fuzzy msgid "User role" -msgstr "Profilo utente" +msgstr "Ruolo dell'utente" #: lib/userprofile.php:354 -#, fuzzy msgctxt "role" msgid "Administrator" -msgstr "Amministratori" +msgstr "Amministratore" #: lib/userprofile.php:355 -#, fuzzy msgctxt "role" msgid "Moderator" -msgstr "Modera" +msgstr "Moderatore" #: lib/util.php:1015 msgid "a few seconds ago" diff --git a/locale/ja/LC_MESSAGES/statusnet.po b/locale/ja/LC_MESSAGES/statusnet.po index def1722500..95695792b7 100644 --- a/locale/ja/LC_MESSAGES/statusnet.po +++ b/locale/ja/LC_MESSAGES/statusnet.po @@ -12,11 +12,11 @@ msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-03-04 18:55+0000\n" -"PO-Revision-Date: 2010-03-04 18:56:45+0000\n" +"PO-Revision-Date: 2010-03-05 22:35:55+0000\n" "Language-Team: Japanese\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63298); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: out-statusnet\n" @@ -4735,7 +4735,6 @@ msgid "Connect to services" msgstr "サービスへ接続" #: lib/action.php:443 -#, fuzzy msgid "Connect" msgstr "接続" diff --git a/locale/ko/LC_MESSAGES/statusnet.po b/locale/ko/LC_MESSAGES/statusnet.po index fa8b672393..09af2e6f06 100644 --- a/locale/ko/LC_MESSAGES/statusnet.po +++ b/locale/ko/LC_MESSAGES/statusnet.po @@ -8,11 +8,11 @@ msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-03-04 18:55+0000\n" -"PO-Revision-Date: 2010-03-04 18:56:48+0000\n" +"PO-Revision-Date: 2010-03-05 22:35:58+0000\n" "Language-Team: Korean\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63299); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ko\n" "X-Message-Group: out-statusnet\n" @@ -4779,7 +4779,6 @@ msgid "Connect to services" msgstr "서버에 재접속 할 수 없습니다 : %s" #: lib/action.php:443 -#, fuzzy msgid "Connect" msgstr "연결" diff --git a/locale/mk/LC_MESSAGES/statusnet.po b/locale/mk/LC_MESSAGES/statusnet.po index 60e5a3c293..a5736795f6 100644 --- a/locale/mk/LC_MESSAGES/statusnet.po +++ b/locale/mk/LC_MESSAGES/statusnet.po @@ -10,11 +10,11 @@ msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-03-04 18:55+0000\n" -"PO-Revision-Date: 2010-03-04 18:56:50+0000\n" +"PO-Revision-Date: 2010-03-05 22:36:01+0000\n" "Language-Team: Macedonian\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63299); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: out-statusnet\n" @@ -1583,23 +1583,20 @@ msgid "Cannot read file." msgstr "Податотеката не може да се прочита." #: actions/grantrole.php:62 actions/revokerole.php:62 -#, fuzzy msgid "Invalid role." -msgstr "Погрешен жетон." +msgstr "Погрешна улога." #: actions/grantrole.php:66 actions/revokerole.php:66 msgid "This role is reserved and cannot be set." -msgstr "" +msgstr "Оваа улога е резервирана и не може да се зададе." #: actions/grantrole.php:75 -#, fuzzy msgid "You cannot grant user roles on this site." -msgstr "Не можете да ставате корисници во песочен режим на оваа веб-страница." +msgstr "Не можете да им доделувате улоги на корисниците на оваа веб-страница." #: actions/grantrole.php:82 -#, fuzzy msgid "User already has this role." -msgstr "Корисникот е веќе замолчен." +msgstr "Корисникот веќе ја има таа улога." #: actions/groupblock.php:71 actions/groupunblock.php:71 #: actions/makeadmin.php:71 actions/subedit.php:46 @@ -3351,14 +3348,12 @@ msgid "Replies to %1$s on %2$s!" msgstr "Одговори на %1$s на %2$s!" #: actions/revokerole.php:75 -#, fuzzy msgid "You cannot revoke user roles on this site." -msgstr "Не можете да замолчувате корисници на оваа веб-страница." +msgstr "На оваа веб-страница не можете да одземате кориснички улоги." #: actions/revokerole.php:82 -#, fuzzy msgid "User doesn't have this role." -msgstr "Корисник без соодветен профил." +msgstr "Корисникот ја нема оваа улога." #: actions/rsd.php:146 actions/version.php:157 msgid "StatusNet" @@ -3763,9 +3758,8 @@ msgid "User is already silenced." msgstr "Корисникот е веќе замолчен." #: actions/siteadminpanel.php:69 -#, fuzzy msgid "Basic settings for this StatusNet site" -msgstr "Основни нагодувања за оваа StatusNet веб-страница." +msgstr "Основни поставки за оваа StatusNet веб-страница." #: actions/siteadminpanel.php:133 msgid "Site name must have non-zero length." @@ -3837,13 +3831,12 @@ msgid "Default timezone for the site; usually UTC." msgstr "Матична часовна зона за веб-страницата; обично UTC." #: actions/siteadminpanel.php:262 -#, fuzzy msgid "Default language" msgstr "Основен јазик" #: actions/siteadminpanel.php:263 msgid "Site language when autodetection from browser settings is not available" -msgstr "" +msgstr "Јазик на веб-страницата ако прелистувачот не може да го препознае сам" #: actions/siteadminpanel.php:271 msgid "Limits" @@ -3868,37 +3861,34 @@ msgstr "" "да го објават истото." #: actions/sitenoticeadminpanel.php:56 -#, fuzzy msgid "Site Notice" -msgstr "Напомена за веб-страницата" +msgstr "Објава на страница" #: actions/sitenoticeadminpanel.php:67 -#, fuzzy msgid "Edit site-wide message" -msgstr "Нова порака" +msgstr "Уреди објава за цела веб-страница" #: actions/sitenoticeadminpanel.php:103 -#, fuzzy msgid "Unable to save site notice." -msgstr "Не можам да ги зачувам Вашите нагодувања за изглед." +msgstr "Не можам да ја зачувам објавата за веб-страницата." #: actions/sitenoticeadminpanel.php:113 msgid "Max length for the site-wide notice is 255 chars" -msgstr "" +msgstr "Објавата за цела веб-страница не треба да има повеќе од 255 знаци" #: actions/sitenoticeadminpanel.php:176 -#, fuzzy msgid "Site notice text" -msgstr "Напомена за веб-страницата" +msgstr "Текст на објавата за веб-страницата" #: actions/sitenoticeadminpanel.php:178 msgid "Site-wide notice text (255 chars max; HTML okay)" msgstr "" +"Текст за главна објава по цела веб-страница (највеќе до 255 знаци; дозволено " +"и HTML)" #: actions/sitenoticeadminpanel.php:198 -#, fuzzy msgid "Save site notice" -msgstr "Напомена за веб-страницата" +msgstr "Зачувај ја објавава" #: actions/smssettings.php:58 msgid "SMS settings" @@ -4006,9 +3996,8 @@ msgid "Snapshots" msgstr "Снимки" #: actions/snapshotadminpanel.php:65 -#, fuzzy msgid "Manage snapshot configuration" -msgstr "Промена на поставките на веб-страницата" +msgstr "Раководење со поставки за снимки" #: actions/snapshotadminpanel.php:127 msgid "Invalid snapshot run value." @@ -4055,9 +4044,8 @@ msgid "Snapshots will be sent to this URL" msgstr "Снимките ќе се испраќаат на оваа URL-адреса" #: actions/snapshotadminpanel.php:248 -#, fuzzy msgid "Save snapshot settings" -msgstr "Зачувај нагодувања на веб-страницата" +msgstr "Зачувај поставки за снимки" #: actions/subedit.php:70 msgid "You are not subscribed to that profile." @@ -4670,9 +4658,8 @@ msgid "Couldn't delete self-subscription." msgstr "Не можам да ја избришам самопретплатата." #: classes/Subscription.php:190 -#, fuzzy msgid "Couldn't delete subscription OMB token." -msgstr "Претплата не може да се избрише." +msgstr "Не можете да го избришете OMB-жетонот за претплата." #: classes/Subscription.php:201 lib/subs.php:69 msgid "Couldn't delete subscription." @@ -4764,7 +4751,6 @@ msgid "Connect to services" msgstr "Поврзи се со услуги" #: lib/action.php:443 -#, fuzzy msgid "Connect" msgstr "Поврзи се" @@ -5053,15 +5039,13 @@ msgstr "Конфигурација на сесиите" #. TRANS: Menu item title/tooltip #: lib/adminpanelaction.php:396 -#, fuzzy msgid "Edit site notice" -msgstr "Напомена за веб-страницата" +msgstr "Уреди објава за веб-страницата" #. TRANS: Menu item title/tooltip #: lib/adminpanelaction.php:404 -#, fuzzy msgid "Snapshots configuration" -msgstr "Конфигурација на патеки" +msgstr "Поставки за снимки" #: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." @@ -5593,7 +5577,7 @@ msgstr "Оди" #: lib/grantroleform.php:91 #, php-format msgid "Grant this user the \"%s\" role" -msgstr "" +msgstr "Додели улога „%s“ на корисников" #: lib/groupeditform.php:163 msgid "URL of the homepage or blog of the group or topic" @@ -6306,9 +6290,9 @@ msgid "Repeat this notice" msgstr "Повтори ја забелешкава" #: lib/revokeroleform.php:91 -#, fuzzy, php-format +#, php-format msgid "Revoke the \"%s\" role from this user" -msgstr "Блокирај го овој корисник од оваа група" +msgstr "Одземи му ја улогата „%s“ на корисников" #: lib/router.php:671 msgid "No single user defined for single-user mode." @@ -6465,21 +6449,18 @@ msgid "Moderate" msgstr "Модерирај" #: lib/userprofile.php:352 -#, fuzzy msgid "User role" -msgstr "Кориснички профил" +msgstr "Корисничка улога" #: lib/userprofile.php:354 -#, fuzzy msgctxt "role" msgid "Administrator" -msgstr "Администратори" +msgstr "Администратор" #: lib/userprofile.php:355 -#, fuzzy msgctxt "role" msgid "Moderator" -msgstr "Модерирај" +msgstr "Модератор" #: lib/util.php:1015 msgid "a few seconds ago" diff --git a/locale/nb/LC_MESSAGES/statusnet.po b/locale/nb/LC_MESSAGES/statusnet.po index 305303deaf..61e5cfdcd4 100644 --- a/locale/nb/LC_MESSAGES/statusnet.po +++ b/locale/nb/LC_MESSAGES/statusnet.po @@ -10,11 +10,11 @@ msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-03-04 18:55+0000\n" -"PO-Revision-Date: 2010-03-04 18:56:53+0000\n" +"PO-Revision-Date: 2010-03-05 22:36:06+0000\n" "Language-Team: Norwegian (bokmål)‬\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63299); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: out-statusnet\n" @@ -4621,7 +4621,6 @@ msgid "Connect to services" msgstr "Koble til" #: lib/action.php:443 -#, fuzzy msgid "Connect" msgstr "Koble til" diff --git a/locale/nl/LC_MESSAGES/statusnet.po b/locale/nl/LC_MESSAGES/statusnet.po index 1f2a549701..2b1b48adef 100644 --- a/locale/nl/LC_MESSAGES/statusnet.po +++ b/locale/nl/LC_MESSAGES/statusnet.po @@ -11,11 +11,11 @@ msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-03-04 18:55+0000\n" -"PO-Revision-Date: 2010-03-04 18:56:59+0000\n" +"PO-Revision-Date: 2010-03-05 22:36:21+0000\n" "Language-Team: Dutch\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63299); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: out-statusnet\n" @@ -1597,23 +1597,20 @@ msgid "Cannot read file." msgstr "Het bestand kon niet gelezen worden." #: actions/grantrole.php:62 actions/revokerole.php:62 -#, fuzzy msgid "Invalid role." -msgstr "Ongeldig token." +msgstr "Ongeldige rol." #: actions/grantrole.php:66 actions/revokerole.php:66 msgid "This role is reserved and cannot be set." -msgstr "" +msgstr "Deze rol is gereserveerd en kan niet ingesteld worden." #: actions/grantrole.php:75 -#, fuzzy msgid "You cannot grant user roles on this site." -msgstr "Op deze website kunt u gebruikers niet in de zandbak plaatsen." +msgstr "Op deze website kunt u geen gebruikersrollen toekennen." #: actions/grantrole.php:82 -#, fuzzy msgid "User already has this role." -msgstr "Deze gebruiker is al gemuilkorfd." +msgstr "Deze gebruiker heeft deze rol al." #: actions/groupblock.php:71 actions/groupunblock.php:71 #: actions/makeadmin.php:71 actions/subedit.php:46 @@ -3372,14 +3369,12 @@ msgid "Replies to %1$s on %2$s!" msgstr "Antwoorden aan %1$s op %2$s." #: actions/revokerole.php:75 -#, fuzzy msgid "You cannot revoke user roles on this site." -msgstr "U kunt gebruikers op deze website niet muilkorven." +msgstr "U kunt geen gebruikersrollen intrekken op deze website." #: actions/revokerole.php:82 -#, fuzzy msgid "User doesn't have this role." -msgstr "Gebruiker zonder bijbehorend profiel." +msgstr "Deze gebruiker heeft deze rol niet." #: actions/rsd.php:146 actions/version.php:157 msgid "StatusNet" @@ -3785,9 +3780,8 @@ msgid "User is already silenced." msgstr "Deze gebruiker is al gemuilkorfd." #: actions/siteadminpanel.php:69 -#, fuzzy msgid "Basic settings for this StatusNet site" -msgstr "Basisinstellingen voor deze StatusNet-website." +msgstr "Basisinstellingen voor deze StatusNet-website" #: actions/siteadminpanel.php:133 msgid "Site name must have non-zero length." @@ -3860,13 +3854,14 @@ msgid "Default timezone for the site; usually UTC." msgstr "Standaardtijdzone voor de website. Meestal UTC." #: actions/siteadminpanel.php:262 -#, fuzzy msgid "Default language" msgstr "Standaardtaal" #: actions/siteadminpanel.php:263 msgid "Site language when autodetection from browser settings is not available" msgstr "" +"De taal voor de website als deze niet uit de browserinstellingen opgemaakt " +"kan worden" #: actions/siteadminpanel.php:271 msgid "Limits" @@ -3891,37 +3886,34 @@ msgstr "" "zenden." #: actions/sitenoticeadminpanel.php:56 -#, fuzzy msgid "Site Notice" -msgstr "Mededeling van de website" +msgstr "Websitebrede mededeling" #: actions/sitenoticeadminpanel.php:67 -#, fuzzy msgid "Edit site-wide message" -msgstr "Nieuw bericht" +msgstr "Websitebrede mededeling bewerken" #: actions/sitenoticeadminpanel.php:103 -#, fuzzy msgid "Unable to save site notice." -msgstr "Het was niet mogelijk om uw ontwerpinstellingen op te slaan." +msgstr "Het was niet mogelijk om de websitebrede mededeling op te slaan." #: actions/sitenoticeadminpanel.php:113 msgid "Max length for the site-wide notice is 255 chars" -msgstr "" +msgstr "De maximale lengte voor de websitebrede aankondiging is 255 tekens" #: actions/sitenoticeadminpanel.php:176 -#, fuzzy msgid "Site notice text" -msgstr "Mededeling van de website" +msgstr "Tekst voor websitebrede mededeling" #: actions/sitenoticeadminpanel.php:178 msgid "Site-wide notice text (255 chars max; HTML okay)" msgstr "" +"Tekst voor websitebrede aankondiging (maximaal 255 tekens - HTML is " +"toegestaan)" #: actions/sitenoticeadminpanel.php:198 -#, fuzzy msgid "Save site notice" -msgstr "Mededeling van de website" +msgstr "Websitebrede mededeling opslaan" #: actions/smssettings.php:58 msgid "SMS settings" @@ -4029,9 +4021,8 @@ msgid "Snapshots" msgstr "Snapshots" #: actions/snapshotadminpanel.php:65 -#, fuzzy msgid "Manage snapshot configuration" -msgstr "Websiteinstellingen wijzigen" +msgstr "Snapshotinstellingen beheren" #: actions/snapshotadminpanel.php:127 msgid "Invalid snapshot run value." @@ -4079,9 +4070,8 @@ msgid "Snapshots will be sent to this URL" msgstr "Snapshots worden naar deze URL verzonden" #: actions/snapshotadminpanel.php:248 -#, fuzzy msgid "Save snapshot settings" -msgstr "Websiteinstellingen opslaan" +msgstr "Snapshotinstellingen opslaan" #: actions/subedit.php:70 msgid "You are not subscribed to that profile." @@ -4705,9 +4695,9 @@ msgid "Couldn't delete self-subscription." msgstr "Het was niet mogelijk het abonnement op uzelf te verwijderen." #: classes/Subscription.php:190 -#, fuzzy msgid "Couldn't delete subscription OMB token." -msgstr "Kon abonnement niet verwijderen." +msgstr "" +"Het was niet mogelijk om het OMB-token voor het abonnement te verwijderen." #: classes/Subscription.php:201 lib/subs.php:69 msgid "Couldn't delete subscription." @@ -4799,9 +4789,8 @@ msgid "Connect to services" msgstr "Met andere diensten koppelen" #: lib/action.php:443 -#, fuzzy msgid "Connect" -msgstr "Koppelingen" +msgstr "Koppelen" #. TRANS: Tooltip for menu option "Admin" #: lib/action.php:446 @@ -5088,15 +5077,13 @@ msgstr "Sessieinstellingen" #. TRANS: Menu item title/tooltip #: lib/adminpanelaction.php:396 -#, fuzzy msgid "Edit site notice" -msgstr "Mededeling van de website" +msgstr "Websitebrede mededeling opslaan" #. TRANS: Menu item title/tooltip #: lib/adminpanelaction.php:404 -#, fuzzy msgid "Snapshots configuration" -msgstr "Padinstellingen" +msgstr "Snapshotinstellingen" #: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." @@ -5637,7 +5624,7 @@ msgstr "OK" #: lib/grantroleform.php:91 #, php-format msgid "Grant this user the \"%s\" role" -msgstr "" +msgstr "Deze gebruiker de rol \"%s\" geven" #: lib/groupeditform.php:163 msgid "URL of the homepage or blog of the group or topic" @@ -6350,9 +6337,9 @@ msgid "Repeat this notice" msgstr "Deze mededeling herhalen" #: lib/revokeroleform.php:91 -#, fuzzy, php-format +#, php-format msgid "Revoke the \"%s\" role from this user" -msgstr "Deze gebruiker de toegang tot deze groep ontzeggen" +msgstr "De gebruikersrol \"%s\" voor deze gebruiker intrekken" #: lib/router.php:671 msgid "No single user defined for single-user mode." @@ -6509,21 +6496,18 @@ msgid "Moderate" msgstr "Modereren" #: lib/userprofile.php:352 -#, fuzzy msgid "User role" -msgstr "Gebruikersprofiel" +msgstr "Gebruikersrol" #: lib/userprofile.php:354 -#, fuzzy msgctxt "role" msgid "Administrator" -msgstr "Beheerders" +msgstr "Beheerder" #: lib/userprofile.php:355 -#, fuzzy msgctxt "role" msgid "Moderator" -msgstr "Modereren" +msgstr "Moderator" #: lib/util.php:1015 msgid "a few seconds ago" diff --git a/locale/nn/LC_MESSAGES/statusnet.po b/locale/nn/LC_MESSAGES/statusnet.po index c6576fbcf1..72fe47924f 100644 --- a/locale/nn/LC_MESSAGES/statusnet.po +++ b/locale/nn/LC_MESSAGES/statusnet.po @@ -8,11 +8,11 @@ msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-03-04 18:55+0000\n" -"PO-Revision-Date: 2010-03-04 18:56:56+0000\n" +"PO-Revision-Date: 2010-03-05 22:36:11+0000\n" "Language-Team: Norwegian Nynorsk\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63299); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nn\n" "X-Message-Group: out-statusnet\n" @@ -4796,7 +4796,6 @@ msgid "Connect to services" msgstr "Klarte ikkje å omdirigera til tenaren: %s" #: lib/action.php:443 -#, fuzzy msgid "Connect" msgstr "Kopla til" diff --git a/locale/pl/LC_MESSAGES/statusnet.po b/locale/pl/LC_MESSAGES/statusnet.po index 402bd78afe..e592ff747f 100644 --- a/locale/pl/LC_MESSAGES/statusnet.po +++ b/locale/pl/LC_MESSAGES/statusnet.po @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-03-04 18:55+0000\n" -"PO-Revision-Date: 2010-03-04 18:57:02+0000\n" +"PO-Revision-Date: 2010-03-05 22:36:24+0000\n" "Last-Translator: Piotr Drąg \n" "Language-Team: Polish \n" "MIME-Version: 1.0\n" @@ -19,7 +19,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2);\n" -"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63299); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pl\n" "X-Message-Group: out-statusnet\n" @@ -4741,7 +4741,6 @@ msgid "Connect to services" msgstr "Połącz z serwisami" #: lib/action.php:443 -#, fuzzy msgid "Connect" msgstr "Połącz" diff --git a/locale/pt/LC_MESSAGES/statusnet.po b/locale/pt/LC_MESSAGES/statusnet.po index 8dd23b1629..27e75fe97e 100644 --- a/locale/pt/LC_MESSAGES/statusnet.po +++ b/locale/pt/LC_MESSAGES/statusnet.po @@ -10,11 +10,11 @@ msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-03-04 18:55+0000\n" -"PO-Revision-Date: 2010-03-04 18:57:05+0000\n" +"PO-Revision-Date: 2010-03-05 22:36:27+0000\n" "Language-Team: Portuguese\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63299); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: out-statusnet\n" @@ -4791,7 +4791,6 @@ msgid "Connect to services" msgstr "Ligar aos serviços" #: lib/action.php:443 -#, fuzzy msgid "Connect" msgstr "Ligar" diff --git a/locale/pt_BR/LC_MESSAGES/statusnet.po b/locale/pt_BR/LC_MESSAGES/statusnet.po index 7ba00b7172..65061f02d6 100644 --- a/locale/pt_BR/LC_MESSAGES/statusnet.po +++ b/locale/pt_BR/LC_MESSAGES/statusnet.po @@ -12,11 +12,11 @@ msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-03-04 18:55+0000\n" -"PO-Revision-Date: 2010-03-04 18:57:07+0000\n" +"PO-Revision-Date: 2010-03-05 22:36:30+0000\n" "Language-Team: Brazilian Portuguese\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63299); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: out-statusnet\n" @@ -4778,7 +4778,6 @@ msgid "Connect to services" msgstr "Conecte-se a outros serviços" #: lib/action.php:443 -#, fuzzy msgid "Connect" msgstr "Conectar" diff --git a/locale/ru/LC_MESSAGES/statusnet.po b/locale/ru/LC_MESSAGES/statusnet.po index c97bb5461d..94e9a79029 100644 --- a/locale/ru/LC_MESSAGES/statusnet.po +++ b/locale/ru/LC_MESSAGES/statusnet.po @@ -13,11 +13,11 @@ msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-03-04 18:55+0000\n" -"PO-Revision-Date: 2010-03-04 18:57:17+0000\n" +"PO-Revision-Date: 2010-03-05 22:36:33+0000\n" "Language-Team: Russian\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63299); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: out-statusnet\n" @@ -1589,24 +1589,20 @@ msgid "Cannot read file." msgstr "Не удалось прочесть файл." #: actions/grantrole.php:62 actions/revokerole.php:62 -#, fuzzy msgid "Invalid role." -msgstr "Неправильный токен" +msgstr "Неверная роль." #: actions/grantrole.php:66 actions/revokerole.php:66 msgid "This role is reserved and cannot be set." -msgstr "" +msgstr "Эта роль зарезервирована и не может быть установлена." #: actions/grantrole.php:75 -#, fuzzy msgid "You cannot grant user roles on this site." -msgstr "" -"Вы не можете устанавливать режим песочницы для пользователей этого сайта." +msgstr "Вы не можете назначать пользователю роли на этом сайте." #: actions/grantrole.php:82 -#, fuzzy msgid "User already has this role." -msgstr "Пользователь уже заглушён." +msgstr "Пользователь уже имеет эту роль." #: actions/groupblock.php:71 actions/groupunblock.php:71 #: actions/makeadmin.php:71 actions/subedit.php:46 @@ -3342,14 +3338,12 @@ msgid "Replies to %1$s on %2$s!" msgstr "Ответы на записи %1$s на %2$s!" #: actions/revokerole.php:75 -#, fuzzy msgid "You cannot revoke user roles on this site." -msgstr "Вы не можете заглушать пользователей на этом сайте." +msgstr "Вы не можете снимать роли пользователей на этом сайте." #: actions/revokerole.php:82 -#, fuzzy msgid "User doesn't have this role." -msgstr "Пользователь без соответствующего профиля." +msgstr "Пользователь не имеет этой роли." #: actions/rsd.php:146 actions/version.php:157 msgid "StatusNet" @@ -3756,9 +3750,8 @@ msgid "User is already silenced." msgstr "Пользователь уже заглушён." #: actions/siteadminpanel.php:69 -#, fuzzy msgid "Basic settings for this StatusNet site" -msgstr "Основные настройки для этого сайта StatusNet." +msgstr "Основные настройки для этого сайта StatusNet" #: actions/siteadminpanel.php:133 msgid "Site name must have non-zero length." @@ -3828,13 +3821,13 @@ msgid "Default timezone for the site; usually UTC." msgstr "Часовой пояс по умолчанию для сайта; обычно UTC." #: actions/siteadminpanel.php:262 -#, fuzzy msgid "Default language" -msgstr "Язык сайта по умолчанию" +msgstr "Язык по умолчанию" #: actions/siteadminpanel.php:263 msgid "Site language when autodetection from browser settings is not available" msgstr "" +"Язык сайта в случае, если автоопределение из настроек браузера не сработало" #: actions/siteadminpanel.php:271 msgid "Limits" @@ -3858,37 +3851,32 @@ msgstr "" "Сколько нужно ждать пользователям (в секундах) для отправки того же ещё раз." #: actions/sitenoticeadminpanel.php:56 -#, fuzzy msgid "Site Notice" -msgstr "Новая запись" +msgstr "Уведомление сайта" #: actions/sitenoticeadminpanel.php:67 -#, fuzzy msgid "Edit site-wide message" -msgstr "Новое сообщение" +msgstr "Изменить уведомление для всего сайта" #: actions/sitenoticeadminpanel.php:103 -#, fuzzy msgid "Unable to save site notice." -msgstr "Не удаётся сохранить ваши настройки оформления!" +msgstr "Не удаётся сохранить уведомление сайта." #: actions/sitenoticeadminpanel.php:113 msgid "Max length for the site-wide notice is 255 chars" -msgstr "" +msgstr "Максимальная длина уведомления сайта составляет 255 символов" #: actions/sitenoticeadminpanel.php:176 -#, fuzzy msgid "Site notice text" -msgstr "Новая запись" +msgstr "Текст уведомления сайта" #: actions/sitenoticeadminpanel.php:178 msgid "Site-wide notice text (255 chars max; HTML okay)" -msgstr "" +msgstr "Текст уведомления сайта (максимум 255 символов; допустим HTML)" #: actions/sitenoticeadminpanel.php:198 -#, fuzzy msgid "Save site notice" -msgstr "Новая запись" +msgstr "Сохранить уведомление сайта" #: actions/smssettings.php:58 msgid "SMS settings" @@ -3998,9 +3986,8 @@ msgid "Snapshots" msgstr "Снимки" #: actions/snapshotadminpanel.php:65 -#, fuzzy msgid "Manage snapshot configuration" -msgstr "Изменить конфигурацию сайта" +msgstr "Управление снимками конфигурации" #: actions/snapshotadminpanel.php:127 msgid "Invalid snapshot run value." @@ -4047,9 +4034,8 @@ msgid "Snapshots will be sent to this URL" msgstr "Снимки будут отправляться по этому URL-адресу" #: actions/snapshotadminpanel.php:248 -#, fuzzy msgid "Save snapshot settings" -msgstr "Сохранить настройки сайта" +msgstr "Сохранить настройки снимка" #: actions/subedit.php:70 msgid "You are not subscribed to that profile." @@ -4660,9 +4646,8 @@ msgid "Couldn't delete self-subscription." msgstr "Невозможно удалить самоподписку." #: classes/Subscription.php:190 -#, fuzzy msgid "Couldn't delete subscription OMB token." -msgstr "Не удаётся удалить подписку." +msgstr "Не удаётся удалить подписочный жетон OMB." #: classes/Subscription.php:201 lib/subs.php:69 msgid "Couldn't delete subscription." @@ -4754,7 +4739,6 @@ msgid "Connect to services" msgstr "Соединить с сервисами" #: lib/action.php:443 -#, fuzzy msgid "Connect" msgstr "Соединить" @@ -5043,15 +5027,13 @@ msgstr "Конфигурация сессий" #. TRANS: Menu item title/tooltip #: lib/adminpanelaction.php:396 -#, fuzzy msgid "Edit site notice" -msgstr "Новая запись" +msgstr "Изменить уведомление сайта" #. TRANS: Menu item title/tooltip #: lib/adminpanelaction.php:404 -#, fuzzy msgid "Snapshots configuration" -msgstr "Конфигурация путей" +msgstr "Конфигурация снимков" #: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." @@ -5586,7 +5568,7 @@ msgstr "Перейти" #: lib/grantroleform.php:91 #, php-format msgid "Grant this user the \"%s\" role" -msgstr "" +msgstr "Назначить этому пользователю роль «%s»" #: lib/groupeditform.php:163 msgid "URL of the homepage or blog of the group or topic" @@ -6294,9 +6276,9 @@ msgid "Repeat this notice" msgstr "Повторить эту запись" #: lib/revokeroleform.php:91 -#, fuzzy, php-format +#, php-format msgid "Revoke the \"%s\" role from this user" -msgstr "Заблокировать этого пользователя из этой группы" +msgstr "Отозвать у этого пользователя роль «%s»" #: lib/router.php:671 msgid "No single user defined for single-user mode." @@ -6453,21 +6435,18 @@ msgid "Moderate" msgstr "Модерировать" #: lib/userprofile.php:352 -#, fuzzy msgid "User role" -msgstr "Профиль пользователя" +msgstr "Роль пользователя" #: lib/userprofile.php:354 -#, fuzzy msgctxt "role" msgid "Administrator" -msgstr "Администраторы" +msgstr "Администратор" #: lib/userprofile.php:355 -#, fuzzy msgctxt "role" msgid "Moderator" -msgstr "Модерировать" +msgstr "Модератор" #: lib/util.php:1015 msgid "a few seconds ago" diff --git a/locale/statusnet.po b/locale/statusnet.po index b4b22d3114..0f6185ffcb 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: 2010-03-04 19:12+0000\n" +"POT-Creation-Date: 2010-03-05 22:34+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/locale/sv/LC_MESSAGES/statusnet.po b/locale/sv/LC_MESSAGES/statusnet.po index b9f921c7f6..ffafd9f939 100644 --- a/locale/sv/LC_MESSAGES/statusnet.po +++ b/locale/sv/LC_MESSAGES/statusnet.po @@ -10,11 +10,11 @@ msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-03-04 18:55+0000\n" -"PO-Revision-Date: 2010-03-04 18:57:20+0000\n" +"PO-Revision-Date: 2010-03-05 22:36:36+0000\n" "Language-Team: Swedish\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63299); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: out-statusnet\n" @@ -1569,23 +1569,20 @@ msgid "Cannot read file." msgstr "Kan inte läsa fil." #: actions/grantrole.php:62 actions/revokerole.php:62 -#, fuzzy msgid "Invalid role." -msgstr "Ogiltig token." +msgstr "Ogiltig roll." #: actions/grantrole.php:66 actions/revokerole.php:66 msgid "This role is reserved and cannot be set." -msgstr "" +msgstr "Denna roll är reserverad och kan inte ställas in" #: actions/grantrole.php:75 -#, fuzzy msgid "You cannot grant user roles on this site." -msgstr "Du kan inte flytta användare till sandlådan på denna webbplats." +msgstr "Du kan inte bevilja användare roller på denna webbplats." #: actions/grantrole.php:82 -#, fuzzy msgid "User already has this role." -msgstr "Användaren är redan nedtystad." +msgstr "Användaren har redan denna roll." #: actions/groupblock.php:71 actions/groupunblock.php:71 #: actions/makeadmin.php:71 actions/subedit.php:46 @@ -3326,9 +3323,8 @@ msgid "Replies to %1$s on %2$s!" msgstr "Svar till %1$s på %2$s" #: actions/revokerole.php:75 -#, fuzzy msgid "You cannot revoke user roles on this site." -msgstr "Du kan inte tysta ned användare på denna webbplats." +msgstr "Du kan inte återkalla användarroller på denna webbplats." #: actions/revokerole.php:82 #, fuzzy @@ -4730,7 +4726,6 @@ msgid "Connect to services" msgstr "Anslut till tjänster" #: lib/action.php:443 -#, fuzzy msgid "Connect" msgstr "Anslut" diff --git a/locale/te/LC_MESSAGES/statusnet.po b/locale/te/LC_MESSAGES/statusnet.po index f2e49f9347..f32e1499e7 100644 --- a/locale/te/LC_MESSAGES/statusnet.po +++ b/locale/te/LC_MESSAGES/statusnet.po @@ -10,11 +10,11 @@ msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-03-04 18:55+0000\n" -"PO-Revision-Date: 2010-03-04 18:57:23+0000\n" +"PO-Revision-Date: 2010-03-05 22:36:39+0000\n" "Language-Team: Telugu\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63299); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: te\n" "X-Message-Group: out-statusnet\n" @@ -4592,7 +4592,6 @@ msgid "Connect to services" msgstr "అనుసంధానాలు" #: lib/action.php:443 -#, fuzzy msgid "Connect" msgstr "అనుసంధానించు" diff --git a/locale/tr/LC_MESSAGES/statusnet.po b/locale/tr/LC_MESSAGES/statusnet.po index 8051f448b2..80dba9abfd 100644 --- a/locale/tr/LC_MESSAGES/statusnet.po +++ b/locale/tr/LC_MESSAGES/statusnet.po @@ -10,11 +10,11 @@ msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-03-04 18:55+0000\n" -"PO-Revision-Date: 2010-03-04 18:57:26+0000\n" +"PO-Revision-Date: 2010-03-05 22:36:42+0000\n" "Language-Team: Turkish\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63299); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tr\n" "X-Message-Group: out-statusnet\n" @@ -4713,7 +4713,6 @@ msgid "Connect to services" msgstr "Sunucuya yönlendirme yapılamadı: %s" #: lib/action.php:443 -#, fuzzy msgid "Connect" msgstr "Bağlan" diff --git a/locale/uk/LC_MESSAGES/statusnet.po b/locale/uk/LC_MESSAGES/statusnet.po index 08f93f255b..145eb38542 100644 --- a/locale/uk/LC_MESSAGES/statusnet.po +++ b/locale/uk/LC_MESSAGES/statusnet.po @@ -11,11 +11,11 @@ msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-03-04 18:55+0000\n" -"PO-Revision-Date: 2010-03-04 18:57:28+0000\n" +"PO-Revision-Date: 2010-03-05 22:36:45+0000\n" "Language-Team: Ukrainian\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63299); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: out-statusnet\n" @@ -622,11 +622,11 @@ msgstr "Такого допису немає." #: actions/apistatusesretweet.php:83 msgid "Cannot repeat your own notice." -msgstr "Не можу вторувати Вашому власному допису." +msgstr "Не можу повторити Ваш власний допис." #: actions/apistatusesretweet.php:91 msgid "Already repeated that notice." -msgstr "Цьому допису вже вторували." +msgstr "Цей допис вже повторено." #: actions/apistatusesshow.php:138 msgid "Status deleted." @@ -690,12 +690,12 @@ msgstr "%s оновлення від усіх!" #: actions/apitimelineretweetedtome.php:111 #, php-format msgid "Repeated to %s" -msgstr "Вторування за %s" +msgstr "Повторено для %s" #: actions/apitimelineretweetsofme.php:114 #, php-format msgid "Repeats of %s" -msgstr "Вторування %s" +msgstr "Повторення %s" #: actions/apitimelinetag.php:102 actions/tag.php:67 #, php-format @@ -1573,23 +1573,20 @@ msgid "Cannot read file." msgstr "Не можу прочитати файл." #: actions/grantrole.php:62 actions/revokerole.php:62 -#, fuzzy msgid "Invalid role." -msgstr "Невірний токен." +msgstr "Невірна роль." #: actions/grantrole.php:66 actions/revokerole.php:66 msgid "This role is reserved and cannot be set." -msgstr "" +msgstr "Цю роль вже зарезервовано і не може бути встановлено." #: actions/grantrole.php:75 -#, fuzzy msgid "You cannot grant user roles on this site." -msgstr "Ви не можете нікого ізолювати на цьому сайті." +msgstr "Ви не можете надавати користувачеві жодних ролей на цьому сайті." #: actions/grantrole.php:82 -#, fuzzy msgid "User already has this role." -msgstr "Користувачу наразі заклеїли рота скотчем." +msgstr "Користувач вже має цю роль." #: actions/groupblock.php:71 actions/groupunblock.php:71 #: actions/makeadmin.php:71 actions/subedit.php:46 @@ -3252,7 +3249,7 @@ msgstr "Не вдалося отримати токен запиту." #: actions/repeat.php:57 msgid "Only logged-in users can repeat notices." -msgstr "Лише користувачі, що знаходяться у системі, можуть вторувати дописам." +msgstr "Лише користувачі, що знаходяться у системі, можуть повторювати дописи." #: actions/repeat.php:64 actions/repeat.php:71 msgid "No notice specified." @@ -3260,19 +3257,19 @@ msgstr "Зазначеного допису немає." #: actions/repeat.php:76 msgid "You can't repeat your own notice." -msgstr "Ви не можете вторувати своїм власним дописам." +msgstr "Ви не можете повторювати свої власні дописи." #: actions/repeat.php:90 msgid "You already repeated that notice." -msgstr "Ви вже вторували цьому допису." +msgstr "Ви вже повторили цей допис." #: actions/repeat.php:114 lib/noticelist.php:674 msgid "Repeated" -msgstr "Вторування" +msgstr "Повторено" #: actions/repeat.php:119 msgid "Repeated!" -msgstr "Вторувати!" +msgstr "Повторено!" #: actions/replies.php:126 actions/repliesrss.php:68 #: lib/personalgroupnav.php:105 @@ -3333,14 +3330,12 @@ msgid "Replies to %1$s on %2$s!" msgstr "Відповіді до %1$s на %2$s!" #: actions/revokerole.php:75 -#, fuzzy msgid "You cannot revoke user roles on this site." -msgstr "Ви не можете позбавляти користувачів права голосу на цьому сайті." +msgstr "Ви не можете позбавляти користувачів ролей на цьому сайті." #: actions/revokerole.php:82 -#, fuzzy msgid "User doesn't have this role." -msgstr "Користувач без відповідного профілю." +msgstr "Користувач не має цієї ролі." #: actions/rsd.php:146 actions/version.php:157 msgid "StatusNet" @@ -3731,7 +3726,7 @@ msgstr "" #: actions/showstream.php:305 #, php-format msgid "Repeat of %s" -msgstr "Вторування %s" +msgstr "Повторення за %s" #: actions/silence.php:65 actions/unsilence.php:65 msgid "You cannot silence users on this site." @@ -3742,9 +3737,8 @@ msgid "User is already silenced." msgstr "Користувачу наразі заклеїли рота скотчем." #: actions/siteadminpanel.php:69 -#, fuzzy msgid "Basic settings for this StatusNet site" -msgstr "Загальні налаштування цього сайту StatusNet." +msgstr "Основні налаштування цього сайту StatusNet" #: actions/siteadminpanel.php:133 msgid "Site name must have non-zero length." @@ -3814,13 +3808,14 @@ msgid "Default timezone for the site; usually UTC." msgstr "Часовий пояс за замовчуванням для сайту; зазвичай UTC." #: actions/siteadminpanel.php:262 -#, fuzzy msgid "Default language" -msgstr "Мова сайту за замовчуванням" +msgstr "Мова за замовчуванням" #: actions/siteadminpanel.php:263 msgid "Site language when autodetection from browser settings is not available" msgstr "" +"Мова сайту на випадок, коли автовизначення мови за настройками браузера не " +"доступно" #: actions/siteadminpanel.php:271 msgid "Limits" @@ -3845,37 +3840,32 @@ msgstr "" "допис ще раз." #: actions/sitenoticeadminpanel.php:56 -#, fuzzy msgid "Site Notice" -msgstr "Зауваження сайту" +msgstr "Повідомлення сайту" #: actions/sitenoticeadminpanel.php:67 -#, fuzzy msgid "Edit site-wide message" -msgstr "Нове повідомлення" +msgstr "Змінити повідомлення сайту" #: actions/sitenoticeadminpanel.php:103 -#, fuzzy msgid "Unable to save site notice." -msgstr "Не маю можливості зберегти налаштування дизайну." +msgstr "Не вдається зберегти повідомлення сайту." #: actions/sitenoticeadminpanel.php:113 msgid "Max length for the site-wide notice is 255 chars" -msgstr "" +msgstr "Максимальна довжина повідомлення сайту становить 255 символів" #: actions/sitenoticeadminpanel.php:176 -#, fuzzy msgid "Site notice text" -msgstr "Зауваження сайту" +msgstr "Текст повідомлення сайту" #: actions/sitenoticeadminpanel.php:178 msgid "Site-wide notice text (255 chars max; HTML okay)" -msgstr "" +msgstr "Текст повідомлення сайту (255 символів максимум; HTML дозволено)" #: actions/sitenoticeadminpanel.php:198 -#, fuzzy msgid "Save site notice" -msgstr "Зауваження сайту" +msgstr "Зберегти повідомлення сайту" #: actions/smssettings.php:58 msgid "SMS settings" @@ -3983,9 +3973,8 @@ msgid "Snapshots" msgstr "Снепшоти" #: actions/snapshotadminpanel.php:65 -#, fuzzy msgid "Manage snapshot configuration" -msgstr "Змінити конфігурацію сайту" +msgstr "Керування конфігурацією знімку" #: actions/snapshotadminpanel.php:127 msgid "Invalid snapshot run value." @@ -4032,9 +4021,8 @@ msgid "Snapshots will be sent to this URL" msgstr "Снепшоти надсилатимуться на цю URL-адресу" #: actions/snapshotadminpanel.php:248 -#, fuzzy msgid "Save snapshot settings" -msgstr "Зберегти налаштування сайту" +msgstr "Зберегти налаштування знімку" #: actions/subedit.php:70 msgid "You are not subscribed to that profile." @@ -4643,9 +4631,8 @@ msgid "Couldn't delete self-subscription." msgstr "Не можу видалити самопідписку." #: classes/Subscription.php:190 -#, fuzzy msgid "Couldn't delete subscription OMB token." -msgstr "Не вдалося видалити підписку." +msgstr "Не вдається видалити токен підписки OMB." #: classes/Subscription.php:201 lib/subs.php:69 msgid "Couldn't delete subscription." @@ -4737,7 +4724,6 @@ msgid "Connect to services" msgstr "З’єднання з сервісами" #: lib/action.php:443 -#, fuzzy msgid "Connect" msgstr "З’єднання" @@ -5023,15 +5009,13 @@ msgstr "Конфігурація сесій" #. TRANS: Menu item title/tooltip #: lib/adminpanelaction.php:396 -#, fuzzy msgid "Edit site notice" -msgstr "Зауваження сайту" +msgstr "Редагувати повідомлення сайту" #. TRANS: Menu item title/tooltip #: lib/adminpanelaction.php:404 -#, fuzzy msgid "Snapshots configuration" -msgstr "Конфігурація шляху" +msgstr "Конфігурація знімків" #: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." @@ -5253,20 +5237,20 @@ msgstr "Помилка при відправці прямого повідомл #: lib/command.php:413 msgid "Cannot repeat your own notice" -msgstr "Не можу вторувати Вашому власному допису" +msgstr "Не можу повторити Ваш власний допис" #: lib/command.php:418 msgid "Already repeated that notice" -msgstr "Цьому допису вже вторували" +msgstr "Цей допис вже повторили" #: lib/command.php:426 #, php-format msgid "Notice from %s repeated" -msgstr "Допису від %s вторували" +msgstr "Допис %s повторили" #: lib/command.php:428 msgid "Error repeating notice." -msgstr "Помилка із вторуванням допису." +msgstr "Помилка при повторенні допису." #: lib/command.php:482 #, php-format @@ -5563,7 +5547,7 @@ msgstr "Вперед" #: lib/grantroleform.php:91 #, php-format msgid "Grant this user the \"%s\" role" -msgstr "" +msgstr "Надати цьому користувачеві роль \"%s\"" #: lib/groupeditform.php:163 msgid "URL of the homepage or blog of the group or topic" @@ -6122,7 +6106,7 @@ msgstr "в контексті" #: lib/noticelist.php:601 msgid "Repeated by" -msgstr "Вторуванні" +msgstr "Повторено" #: lib/noticelist.php:628 msgid "Reply to this notice" @@ -6134,7 +6118,7 @@ msgstr "Відповісти" #: lib/noticelist.php:673 msgid "Notice repeated" -msgstr "Допис вторували" +msgstr "Допис повторили" #: lib/nudgeform.php:116 msgid "Nudge this user" @@ -6267,12 +6251,12 @@ msgstr "Повторити цей допис?" #: lib/repeatform.php:132 msgid "Repeat this notice" -msgstr "Вторувати цьому допису" +msgstr "Повторити цей допис" #: lib/revokeroleform.php:91 -#, fuzzy, php-format +#, php-format msgid "Revoke the \"%s\" role from this user" -msgstr "Блокувати користувача цієї групи" +msgstr "Відкликати роль \"%s\" для цього користувача" #: lib/router.php:671 msgid "No single user defined for single-user mode." @@ -6429,21 +6413,18 @@ msgid "Moderate" msgstr "Модерувати" #: lib/userprofile.php:352 -#, fuzzy msgid "User role" -msgstr "Профіль користувача." +msgstr "Роль користувача" #: lib/userprofile.php:354 -#, fuzzy msgctxt "role" msgid "Administrator" -msgstr "Адміни" +msgstr "Адміністратор" #: lib/userprofile.php:355 -#, fuzzy msgctxt "role" msgid "Moderator" -msgstr "Модерувати" +msgstr "Модератор" #: lib/util.php:1015 msgid "a few seconds ago" diff --git a/locale/vi/LC_MESSAGES/statusnet.po b/locale/vi/LC_MESSAGES/statusnet.po index 2a3c0ceeb3..dec9eeeba0 100644 --- a/locale/vi/LC_MESSAGES/statusnet.po +++ b/locale/vi/LC_MESSAGES/statusnet.po @@ -8,11 +8,11 @@ msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-03-04 18:55+0000\n" -"PO-Revision-Date: 2010-03-04 18:57:31+0000\n" +"PO-Revision-Date: 2010-03-05 22:36:48+0000\n" "Language-Team: Vietnamese\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63299); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: vi\n" "X-Message-Group: out-statusnet\n" @@ -4867,7 +4867,6 @@ msgid "Connect to services" msgstr "Không thể chuyển đến máy chủ: %s" #: lib/action.php:443 -#, fuzzy msgid "Connect" msgstr "Kết nối" diff --git a/locale/zh_CN/LC_MESSAGES/statusnet.po b/locale/zh_CN/LC_MESSAGES/statusnet.po index 5b2dae1101..36e3a7946f 100644 --- a/locale/zh_CN/LC_MESSAGES/statusnet.po +++ b/locale/zh_CN/LC_MESSAGES/statusnet.po @@ -11,11 +11,11 @@ msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-03-04 18:55+0000\n" -"PO-Revision-Date: 2010-03-04 18:57:34+0000\n" +"PO-Revision-Date: 2010-03-05 22:37:13+0000\n" "Language-Team: Simplified Chinese\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63299); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: out-statusnet\n" @@ -4793,7 +4793,6 @@ msgid "Connect to services" msgstr "无法重定向到服务器:%s" #: lib/action.php:443 -#, fuzzy msgid "Connect" msgstr "连接" diff --git a/locale/zh_TW/LC_MESSAGES/statusnet.po b/locale/zh_TW/LC_MESSAGES/statusnet.po index e7314d5e6f..2829f707e2 100644 --- a/locale/zh_TW/LC_MESSAGES/statusnet.po +++ b/locale/zh_TW/LC_MESSAGES/statusnet.po @@ -8,11 +8,11 @@ msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-03-04 18:55+0000\n" -"PO-Revision-Date: 2010-03-04 18:57:37+0000\n" +"PO-Revision-Date: 2010-03-05 22:37:16+0000\n" "Language-Team: Traditional Chinese\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63299); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hant\n" "X-Message-Group: out-statusnet\n" @@ -4629,7 +4629,6 @@ msgid "Connect to services" msgstr "無法連結到伺服器:%s" #: lib/action.php:443 -#, fuzzy msgid "Connect" msgstr "連結" From 5355c3b7b579f803bb18913db3b4d9cf380f17ac Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Fri, 5 Mar 2010 15:00:27 -0800 Subject: [PATCH 340/362] OpenID fix: - avoid notice on insert (missing sequenceKeys()) - avoid cache corruption on delete (user_id was missing from keys list, cache not cleared for user_id lookups) --- plugins/OpenID/User_openid.php | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/plugins/OpenID/User_openid.php b/plugins/OpenID/User_openid.php index 801b49eccd..5ef05b4c77 100644 --- a/plugins/OpenID/User_openid.php +++ b/plugins/OpenID/User_openid.php @@ -39,9 +39,21 @@ class User_openid extends Memcached_DataObject ); } + /** + * List primary and unique keys in this table. + * Unique keys used for lookup *MUST* be listed to ensure proper caching. + */ function keys() { - return array('canonical' => 'K', 'display' => 'U'); + return array('canonical' => 'K', 'display' => 'U', 'user_id' => 'U'); + } + + /** + * No sequence keys in this table. + */ + function sequenceKey() + { + return array(false, false, false); } Static function hasOpenID($user_id) From f39d3e34bb5298f13824699c7090e05b75d7549b Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Fri, 5 Mar 2010 16:20:33 -0800 Subject: [PATCH 341/362] Fix for blank RSS1 tag feeds --- actions/tagrss.php | 1 + 1 file changed, 1 insertion(+) diff --git a/actions/tagrss.php b/actions/tagrss.php index 75cbfa274b..467a64abed 100644 --- a/actions/tagrss.php +++ b/actions/tagrss.php @@ -35,6 +35,7 @@ class TagrssAction extends Rss10Action $this->clientError(_('No such tag.')); return false; } else { + $this->notices = $this->getNotices($this->limit); return true; } } From ab8aa670087580f164f96af6727eef5d2cf0a6e1 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Fri, 5 Mar 2010 16:20:33 -0800 Subject: [PATCH 342/362] Fix for blank RSS1 tag feeds --- actions/tagrss.php | 1 + 1 file changed, 1 insertion(+) diff --git a/actions/tagrss.php b/actions/tagrss.php index 75cbfa274b..467a64abed 100644 --- a/actions/tagrss.php +++ b/actions/tagrss.php @@ -35,6 +35,7 @@ class TagrssAction extends Rss10Action $this->clientError(_('No such tag.')); return false; } else { + $this->notices = $this->getNotices($this->limit); return true; } } From 43cc24a0ccd89081effa26361e861ba26a9cd842 Mon Sep 17 00:00:00 2001 From: Christopher Vollick Date: Thu, 11 Feb 2010 11:19:50 -0500 Subject: [PATCH 343/362] UserRSS Didn't Use the Tag Propery. This meant that server.com/user/tag/TAG/rss just returned all user data. That was incorrect. --- actions/userrss.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/actions/userrss.php b/actions/userrss.php index 19e610551d..6029f44318 100644 --- a/actions/userrss.php +++ b/actions/userrss.php @@ -38,7 +38,11 @@ class UserrssAction extends Rss10Action $this->clientError(_('No such user.')); return false; } else { - $this->notices = $this->getNotices($this->limit); + if ($this->tag) { + $this->notices = $this->getTaggedNotices($tag, $this->limit); + } else { + $this->notices = $this->getNotices($this->limit); + } return true; } } From 8029faadaecaa2b3b253fa7086be0a25bece0ce5 Mon Sep 17 00:00:00 2001 From: Ciaran Gultnieks Date: Sat, 6 Mar 2010 00:30:15 +0000 Subject: [PATCH 344/362] Fixed problem causing 500 error on notices containing a non-existent group --- classes/Group_alias.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classes/Group_alias.php b/classes/Group_alias.php index be3d0a6c6f..c5a1895a11 100644 --- a/classes/Group_alias.php +++ b/classes/Group_alias.php @@ -34,7 +34,7 @@ class Group_alias extends Memcached_DataObject public $modified; // timestamp() not_null default_CURRENT_TIMESTAMP /* Static get */ - function staticGet($k,$v=NULL) { return DB_DataObject::staticGet('Group_alias',$k,$v); } + function staticGet($k,$v=NULL) { return Memcached_DataObject::staticGet('Group_alias',$k,$v); } /* the code above is auto generated do not remove the tag below */ ###END_AUTOCODE From f653c3b914d7983618bd4141fe57a37e9537ec45 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Fri, 5 Mar 2010 16:40:35 -0800 Subject: [PATCH 345/362] Fix undefined variable error and some other cleanup --- actions/userrss.php | 35 +++++++++++++++++------------------ 1 file changed, 17 insertions(+), 18 deletions(-) diff --git a/actions/userrss.php b/actions/userrss.php index 6029f44318..77bd316b2d 100644 --- a/actions/userrss.php +++ b/actions/userrss.php @@ -29,6 +29,8 @@ class UserrssAction extends Rss10Action function prepare($args) { + common_debug("UserrssAction"); + parent::prepare($args); $nickname = $this->trimmed('nickname'); $this->user = User::staticGet('nickname', $nickname); @@ -38,8 +40,8 @@ class UserrssAction extends Rss10Action $this->clientError(_('No such user.')); return false; } else { - if ($this->tag) { - $this->notices = $this->getTaggedNotices($tag, $this->limit); + if (!empty($this->tag)) { + $this->notices = $this->getTaggedNotices($this->tag, $this->limit); } else { $this->notices = $this->getNotices($this->limit); } @@ -47,15 +49,15 @@ class UserrssAction extends Rss10Action } } - function getTaggedNotices($tag = null, $limit=0) + function getTaggedNotices() { - $user = $this->user; - - if (is_null($user)) { - return null; - } - - $notice = $user->getTaggedNotices(0, ($limit == 0) ? NOTICES_PER_PAGE : $limit, 0, 0, null, $tag); + $notice = $this->user->getTaggedNotices( + $this->tag, + 0, + ($this->limit == 0) ? NOTICES_PER_PAGE : $this->limit, + 0, + 0 + ); $notices = array(); while ($notice->fetch()) { @@ -66,15 +68,12 @@ class UserrssAction extends Rss10Action } - function getNotices($limit=0) + function getNotices() { - $user = $this->user; - - if (is_null($user)) { - return null; - } - - $notice = $user->getNotices(0, ($limit == 0) ? NOTICES_PER_PAGE : $limit); + $notice = $this->user->getNotices( + 0, + ($limit == 0) ? NOTICES_PER_PAGE : $limit + ); $notices = array(); while ($notice->fetch()) { From 1a03820628d37b9db6e47be22d98789f551f1959 Mon Sep 17 00:00:00 2001 From: Christopher Vollick Date: Thu, 11 Feb 2010 11:19:50 -0500 Subject: [PATCH 346/362] UserRSS Didn't Use the Tag Propery. This meant that server.com/user/tag/TAG/rss just returned all user data. That was incorrect. --- actions/userrss.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/actions/userrss.php b/actions/userrss.php index 19e610551d..6029f44318 100644 --- a/actions/userrss.php +++ b/actions/userrss.php @@ -38,7 +38,11 @@ class UserrssAction extends Rss10Action $this->clientError(_('No such user.')); return false; } else { - $this->notices = $this->getNotices($this->limit); + if ($this->tag) { + $this->notices = $this->getTaggedNotices($tag, $this->limit); + } else { + $this->notices = $this->getNotices($this->limit); + } return true; } } From 4ada86560c7c9ef43e41e6c3cdf279d64ea132ba Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Fri, 5 Mar 2010 16:40:35 -0800 Subject: [PATCH 347/362] Fix undefined variable error and some other cleanup --- actions/userrss.php | 35 +++++++++++++++++------------------ 1 file changed, 17 insertions(+), 18 deletions(-) diff --git a/actions/userrss.php b/actions/userrss.php index 6029f44318..77bd316b2d 100644 --- a/actions/userrss.php +++ b/actions/userrss.php @@ -29,6 +29,8 @@ class UserrssAction extends Rss10Action function prepare($args) { + common_debug("UserrssAction"); + parent::prepare($args); $nickname = $this->trimmed('nickname'); $this->user = User::staticGet('nickname', $nickname); @@ -38,8 +40,8 @@ class UserrssAction extends Rss10Action $this->clientError(_('No such user.')); return false; } else { - if ($this->tag) { - $this->notices = $this->getTaggedNotices($tag, $this->limit); + if (!empty($this->tag)) { + $this->notices = $this->getTaggedNotices($this->tag, $this->limit); } else { $this->notices = $this->getNotices($this->limit); } @@ -47,15 +49,15 @@ class UserrssAction extends Rss10Action } } - function getTaggedNotices($tag = null, $limit=0) + function getTaggedNotices() { - $user = $this->user; - - if (is_null($user)) { - return null; - } - - $notice = $user->getTaggedNotices(0, ($limit == 0) ? NOTICES_PER_PAGE : $limit, 0, 0, null, $tag); + $notice = $this->user->getTaggedNotices( + $this->tag, + 0, + ($this->limit == 0) ? NOTICES_PER_PAGE : $this->limit, + 0, + 0 + ); $notices = array(); while ($notice->fetch()) { @@ -66,15 +68,12 @@ class UserrssAction extends Rss10Action } - function getNotices($limit=0) + function getNotices() { - $user = $this->user; - - if (is_null($user)) { - return null; - } - - $notice = $user->getNotices(0, ($limit == 0) ? NOTICES_PER_PAGE : $limit); + $notice = $this->user->getNotices( + 0, + ($limit == 0) ? NOTICES_PER_PAGE : $limit + ); $notices = array(); while ($notice->fetch()) { From 421041c51aa4a92fa2c6f03cedcbd30d8cdfb7d4 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Fri, 5 Mar 2010 16:52:15 -0800 Subject: [PATCH 348/362] No need to pass in $this->limit and $this-tag --- actions/userrss.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/actions/userrss.php b/actions/userrss.php index 77bd316b2d..e03eb93566 100644 --- a/actions/userrss.php +++ b/actions/userrss.php @@ -41,9 +41,9 @@ class UserrssAction extends Rss10Action return false; } else { if (!empty($this->tag)) { - $this->notices = $this->getTaggedNotices($this->tag, $this->limit); + $this->notices = $this->getTaggedNotices(); } else { - $this->notices = $this->getNotices($this->limit); + $this->notices = $this->getNotices(); } return true; } From 773626aac49dce2dd350a4e15f36aa5c9b4924cd Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Fri, 5 Mar 2010 16:52:15 -0800 Subject: [PATCH 349/362] No need to pass in $this->limit and $this-tag --- actions/userrss.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/actions/userrss.php b/actions/userrss.php index 77bd316b2d..e03eb93566 100644 --- a/actions/userrss.php +++ b/actions/userrss.php @@ -41,9 +41,9 @@ class UserrssAction extends Rss10Action return false; } else { if (!empty($this->tag)) { - $this->notices = $this->getTaggedNotices($this->tag, $this->limit); + $this->notices = $this->getTaggedNotices(); } else { - $this->notices = $this->getNotices($this->limit); + $this->notices = $this->getNotices(); } return true; } From 5adb494c26e431948b50690b8efaeedb3f3513d1 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Fri, 5 Mar 2010 17:05:00 -0800 Subject: [PATCH 350/362] Remove unused variables, update Twitter ones --- config.php.sample | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/config.php.sample b/config.php.sample index 33ac94a6d0..3d2a52becc 100644 --- a/config.php.sample +++ b/config.php.sample @@ -188,9 +188,6 @@ $config['sphinx']['port'] = 3312; // Disable SMS // $config['sms']['enabled'] = false; -// Disable Twitter integration -// $config['twitter']['enabled'] = false; - // Twitter integration source attribute. Note: default is StatusNet // $config['integration']['source'] = 'StatusNet'; @@ -198,7 +195,7 @@ $config['sphinx']['port'] = 3312; // // NOTE: if you enable this you must also set $config['avatar']['path'] // -// $config['twitterbridge']['enabled'] = true; +// $config['twitterimport']['enabled'] = true; // Twitter OAuth settings // $config['twitter']['consumer_key'] = 'YOURKEY'; @@ -212,10 +209,6 @@ $config['sphinx']['port'] = 3312; // $config['throttle']['count'] = 100; // $config['throttle']['timespan'] = 3600; -// List of users banned from posting (nicknames and/or IDs) -// $config['profile']['banned'][] = 'hacker'; -// $config['profile']['banned'][] = 12345; - // Config section for the built-in Facebook application // $config['facebook']['apikey'] = 'APIKEY'; // $config['facebook']['secret'] = 'SECRET'; From e97515c8779705bf732840df0611cc2025a4781f Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Fri, 5 Mar 2010 17:05:00 -0800 Subject: [PATCH 351/362] Remove unused variables, update Twitter ones --- config.php.sample | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/config.php.sample b/config.php.sample index 5c5fb5b539..9e0b4e2aca 100644 --- a/config.php.sample +++ b/config.php.sample @@ -188,9 +188,6 @@ $config['sphinx']['port'] = 3312; // Disable SMS // $config['sms']['enabled'] = false; -// Disable Twitter integration -// $config['twitter']['enabled'] = false; - // Twitter integration source attribute. Note: default is StatusNet // $config['integration']['source'] = 'StatusNet'; @@ -198,7 +195,7 @@ $config['sphinx']['port'] = 3312; // // NOTE: if you enable this you must also set $config['avatar']['path'] // -// $config['twitterbridge']['enabled'] = true; +// $config['twitterimport']['enabled'] = true; // Twitter OAuth settings // $config['twitter']['consumer_key'] = 'YOURKEY'; @@ -212,10 +209,6 @@ $config['sphinx']['port'] = 3312; // $config['throttle']['count'] = 100; // $config['throttle']['timespan'] = 3600; -// List of users banned from posting (nicknames and/or IDs) -// $config['profile']['banned'][] = 'hacker'; -// $config['profile']['banned'][] = 12345; - // Config section for the built-in Facebook application // $config['facebook']['apikey'] = 'APIKEY'; // $config['facebook']['secret'] = 'SECRET'; From a5cbd1918bfaa20e1f03e6330f479a062361236d Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sun, 7 Mar 2010 00:54:04 +0100 Subject: [PATCH 352/362] Localisation updates for !StatusNet from !translatewiki.net !sntrans Signed-off-by: Siebrand Mazeland --- locale/ar/LC_MESSAGES/statusnet.po | 76 +++-- locale/arz/LC_MESSAGES/statusnet.po | 54 ++-- locale/bg/LC_MESSAGES/statusnet.po | 54 ++-- locale/br/LC_MESSAGES/statusnet.po | 76 +++-- locale/ca/LC_MESSAGES/statusnet.po | 54 ++-- locale/cs/LC_MESSAGES/statusnet.po | 54 ++-- locale/de/LC_MESSAGES/statusnet.po | 416 +++++++++++++------------- locale/el/LC_MESSAGES/statusnet.po | 54 ++-- locale/en_GB/LC_MESSAGES/statusnet.po | 57 ++-- locale/es/LC_MESSAGES/statusnet.po | 54 ++-- locale/fa/LC_MESSAGES/statusnet.po | 54 ++-- locale/fi/LC_MESSAGES/statusnet.po | 54 ++-- locale/fr/LC_MESSAGES/statusnet.po | 54 ++-- locale/ga/LC_MESSAGES/statusnet.po | 54 ++-- locale/he/LC_MESSAGES/statusnet.po | 54 ++-- locale/hsb/LC_MESSAGES/statusnet.po | 54 ++-- locale/ia/LC_MESSAGES/statusnet.po | 54 ++-- locale/is/LC_MESSAGES/statusnet.po | 54 ++-- locale/it/LC_MESSAGES/statusnet.po | 54 ++-- locale/ja/LC_MESSAGES/statusnet.po | 54 ++-- locale/ko/LC_MESSAGES/statusnet.po | 54 ++-- locale/mk/LC_MESSAGES/statusnet.po | 54 ++-- locale/nb/LC_MESSAGES/statusnet.po | 54 ++-- locale/nl/LC_MESSAGES/statusnet.po | 54 ++-- locale/nn/LC_MESSAGES/statusnet.po | 54 ++-- locale/pl/LC_MESSAGES/statusnet.po | 152 ++++------ locale/pt/LC_MESSAGES/statusnet.po | 54 ++-- locale/pt_BR/LC_MESSAGES/statusnet.po | 54 ++-- locale/ru/LC_MESSAGES/statusnet.po | 54 ++-- locale/statusnet.po | 50 ++-- locale/sv/LC_MESSAGES/statusnet.po | 54 ++-- locale/te/LC_MESSAGES/statusnet.po | 54 ++-- locale/tr/LC_MESSAGES/statusnet.po | 54 ++-- locale/uk/LC_MESSAGES/statusnet.po | 54 ++-- locale/vi/LC_MESSAGES/statusnet.po | 54 ++-- locale/zh_CN/LC_MESSAGES/statusnet.po | 54 ++-- locale/zh_TW/LC_MESSAGES/statusnet.po | 54 ++-- 37 files changed, 1228 insertions(+), 1273 deletions(-) diff --git a/locale/ar/LC_MESSAGES/statusnet.po b/locale/ar/LC_MESSAGES/statusnet.po index 9f7bd5cbb5..56029bc82d 100644 --- a/locale/ar/LC_MESSAGES/statusnet.po +++ b/locale/ar/LC_MESSAGES/statusnet.po @@ -9,12 +9,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-04 18:55+0000\n" -"PO-Revision-Date: 2010-03-05 22:34:53+0000\n" +"POT-Creation-Date: 2010-03-06 23:49+0000\n" +"PO-Revision-Date: 2010-03-06 23:49:16+0000\n" "Language-Team: Arabic\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63298); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63350); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: out-statusnet\n" @@ -102,7 +102,7 @@ msgstr "لا صفحة كهذه" #: actions/otp.php:76 actions/remotesubscribe.php:145 #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 -#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:40 #: actions/xrds.php:71 lib/command.php:163 lib/command.php:302 #: lib/command.php:355 lib/command.php:401 lib/command.php:462 #: lib/command.php:518 lib/galleryaction.php:59 lib/mailbox.php:82 @@ -549,7 +549,7 @@ msgstr "" #: actions/apioauthauthorize.php:276 msgid "Allow or deny access" -msgstr "" +msgstr "اسمح أو امنع الوصول" #: actions/apioauthauthorize.php:292 #, php-format @@ -681,7 +681,7 @@ msgstr "تكرارات %s" msgid "Notices tagged with %s" msgstr "الإشعارات الموسومة ب%s" -#: actions/apitimelinetag.php:104 actions/tagrss.php:64 +#: actions/apitimelinetag.php:104 actions/tagrss.php:65 #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "" @@ -721,7 +721,7 @@ msgstr "بإمكانك رفع أفتارك الشخصي. أقصى حجم للم #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 #: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -#: actions/userrss.php:103 +#: actions/userrss.php:106 msgid "User without matching profile" msgstr "" @@ -1691,7 +1691,7 @@ msgstr "" msgid "Make this user an admin" msgstr "اجعل هذا المستخدم إداريًا" -#: actions/grouprss.php:138 actions/userrss.php:90 +#: actions/grouprss.php:138 actions/userrss.php:93 #: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 #, php-format msgid "%s timeline" @@ -2353,7 +2353,7 @@ msgstr "كلمة السر القديمة" #: actions/passwordsettings.php:108 actions/recoverpassword.php:235 msgid "New password" -msgstr "كلمة سر جديدة" +msgstr "كلمة السر الجديدة" #: actions/passwordsettings.php:109 msgid "6 or more characters" @@ -4229,7 +4229,7 @@ msgstr "%s ليس عضوًا في أي مجموعة." msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" -#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: actions/userrss.php:95 lib/atomgroupnoticefeed.php:66 #: lib/atomusernoticefeed.php:72 #, php-format msgid "Updates from %1$s on %2$s!" @@ -4486,10 +4486,9 @@ msgstr "الصفحة الشخصية" #. TRANS: Tooltip for main menu option "Account" #: lib/action.php:435 -#, fuzzy msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" -msgstr "غير كلمة سرّك" +msgstr "غير بريدك الإلكتروني وكلمة سرّك وأفتارك وملفك الشخصي" #. TRANS: Tooltip for main menu option "Services" #: lib/action.php:440 @@ -4977,12 +4976,12 @@ msgstr "%s ترك المجموعة %s" msgid "Fullname: %s" msgstr "الاسم الكامل: %s" -#: lib/command.php:312 lib/mail.php:254 +#: lib/command.php:312 lib/mail.php:258 #, php-format msgid "Location: %s" msgstr "الموقع: %s" -#: lib/command.php:315 lib/mail.php:256 +#: lib/command.php:315 lib/mail.php:260 #, php-format msgid "Homepage: %s" msgstr "الصفحة الرئيسية: %s" @@ -5042,9 +5041,8 @@ msgid "Specify the name of the user to subscribe to" msgstr "" #: lib/command.php:554 lib/command.php:589 -#, fuzzy msgid "No such user" -msgstr "لا مستخدم كهذا." +msgstr "لا مستخدم كهذا" #: lib/command.php:561 #, php-format @@ -5427,11 +5425,11 @@ msgstr "لُج باسم مستخدم وكلمة سر" msgid "Sign up for a new account" msgstr "سجّل حسابًا جديدًا" -#: lib/mail.php:172 +#: lib/mail.php:173 msgid "Email address confirmation" msgstr "تأكيد عنوان البريد الإلكتروني" -#: lib/mail.php:174 +#: lib/mail.php:175 #, php-format msgid "" "Hey, %s.\n" @@ -5447,13 +5445,25 @@ msgid "" "Thanks for your time, \n" "%s\n" msgstr "" +"مرحبًا، %s.\n" +"\n" +"لقد أدخل أحدهم قبل لحظات عنوان البريد الإلكتروني هذا على %s.\n" +"\n" +"إذا كنت هو، وإذا كنت تريد تأكيد هذه المدخلة، فاستخدم المسار أدناه:\n" +"\n" +" %s\n" +"\n" +"إذا كان الأمر خلاف ذلك، فتجاهل هذه الرسالة.\n" +"\n" +"شكرًا على الوقت الذي أمضيته، \n" +"%s\n" -#: lib/mail.php:236 +#: lib/mail.php:240 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s يستمع الآن إلى إشعاراتك على %2$s." -#: lib/mail.php:241 +#: lib/mail.php:245 #, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -5478,17 +5488,17 @@ msgstr "" "----\n" "غيّر خيارات البريد الإلكتروني والإشعار في %8$s\n" -#: lib/mail.php:258 +#: lib/mail.php:262 #, php-format msgid "Bio: %s" msgstr "السيرة: %s" -#: lib/mail.php:286 +#: lib/mail.php:290 #, php-format msgid "New email address for posting to %s" msgstr "عنوان بريد إلكتروني جديد للإرسال إلى %s" -#: lib/mail.php:289 +#: lib/mail.php:293 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -5501,21 +5511,21 @@ msgid "" "%4$s" msgstr "" -#: lib/mail.php:413 +#: lib/mail.php:417 #, php-format msgid "%s status" msgstr "حالة %s" -#: lib/mail.php:439 +#: lib/mail.php:443 msgid "SMS confirmation" msgstr "تأكيد الرسالة القصيرة" -#: lib/mail.php:463 +#: lib/mail.php:467 #, php-format msgid "You've been nudged by %s" msgstr "لقد نبهك %s" -#: lib/mail.php:467 +#: lib/mail.php:471 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -5531,12 +5541,12 @@ msgid "" "%4$s\n" msgstr "" -#: lib/mail.php:510 +#: lib/mail.php:517 #, php-format msgid "New private message from %s" msgstr "رسالة خاصة جديدة من %s" -#: lib/mail.php:514 +#: lib/mail.php:521 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -5555,12 +5565,12 @@ msgid "" "%5$s\n" msgstr "" -#: lib/mail.php:559 +#: lib/mail.php:568 #, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "لقد أضاف %s (@%s) إشعارك إلى مفضلاته" -#: lib/mail.php:561 +#: lib/mail.php:570 #, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -5581,12 +5591,12 @@ msgid "" "%6$s\n" msgstr "" -#: lib/mail.php:624 +#: lib/mail.php:635 #, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "لقد أرسل %s (@%s) إشعارًا إليك" -#: lib/mail.php:626 +#: lib/mail.php:637 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" diff --git a/locale/arz/LC_MESSAGES/statusnet.po b/locale/arz/LC_MESSAGES/statusnet.po index 3654f6326d..aaf1d89bd2 100644 --- a/locale/arz/LC_MESSAGES/statusnet.po +++ b/locale/arz/LC_MESSAGES/statusnet.po @@ -10,12 +10,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-04 18:55+0000\n" -"PO-Revision-Date: 2010-03-05 22:34:56+0000\n" +"POT-Creation-Date: 2010-03-06 23:49+0000\n" +"PO-Revision-Date: 2010-03-06 23:49:19+0000\n" "Language-Team: Egyptian Spoken Arabic\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63298); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63350); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: arz\n" "X-Message-Group: out-statusnet\n" @@ -108,7 +108,7 @@ msgstr "لا صفحه كهذه" #: actions/otp.php:76 actions/remotesubscribe.php:145 #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 -#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:40 #: actions/xrds.php:71 lib/command.php:163 lib/command.php:302 #: lib/command.php:355 lib/command.php:401 lib/command.php:462 #: lib/command.php:518 lib/galleryaction.php:59 lib/mailbox.php:82 @@ -687,7 +687,7 @@ msgstr "تكرارات %s" msgid "Notices tagged with %s" msgstr "الإشعارات الموسومه ب%s" -#: actions/apitimelinetag.php:104 actions/tagrss.php:64 +#: actions/apitimelinetag.php:104 actions/tagrss.php:65 #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "" @@ -727,7 +727,7 @@ msgstr "" #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 #: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -#: actions/userrss.php:103 +#: actions/userrss.php:106 msgid "User without matching profile" msgstr "" @@ -1703,7 +1703,7 @@ msgstr "" msgid "Make this user an admin" msgstr "اجعل هذا المستخدم إداريًا" -#: actions/grouprss.php:138 actions/userrss.php:90 +#: actions/grouprss.php:138 actions/userrss.php:93 #: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 #, php-format msgid "%s timeline" @@ -4234,7 +4234,7 @@ msgstr "" msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" -#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: actions/userrss.php:95 lib/atomgroupnoticefeed.php:66 #: lib/atomusernoticefeed.php:72 #, php-format msgid "Updates from %1$s on %2$s!" @@ -5002,12 +5002,12 @@ msgstr "%s ساب الجروپ %s" msgid "Fullname: %s" msgstr "الاسم الكامل: %s" -#: lib/command.php:312 lib/mail.php:254 +#: lib/command.php:312 lib/mail.php:258 #, php-format msgid "Location: %s" msgstr "الموقع: %s" -#: lib/command.php:315 lib/mail.php:256 +#: lib/command.php:315 lib/mail.php:260 #, php-format msgid "Homepage: %s" msgstr "الصفحه الرئيسية: %s" @@ -5452,11 +5452,11 @@ msgstr "" msgid "Sign up for a new account" msgstr "" -#: lib/mail.php:172 +#: lib/mail.php:173 msgid "Email address confirmation" msgstr "تأكيد عنوان البريد الإلكتروني" -#: lib/mail.php:174 +#: lib/mail.php:175 #, php-format msgid "" "Hey, %s.\n" @@ -5473,12 +5473,12 @@ msgid "" "%s\n" msgstr "" -#: lib/mail.php:236 +#: lib/mail.php:240 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "" -#: lib/mail.php:241 +#: lib/mail.php:245 #, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -5493,17 +5493,17 @@ msgid "" "Change your email address or notification options at %8$s\n" msgstr "" -#: lib/mail.php:258 +#: lib/mail.php:262 #, php-format msgid "Bio: %s" msgstr "عن نفسك: %s" -#: lib/mail.php:286 +#: lib/mail.php:290 #, php-format msgid "New email address for posting to %s" msgstr "" -#: lib/mail.php:289 +#: lib/mail.php:293 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -5516,21 +5516,21 @@ msgid "" "%4$s" msgstr "" -#: lib/mail.php:413 +#: lib/mail.php:417 #, php-format msgid "%s status" msgstr "حاله %s" -#: lib/mail.php:439 +#: lib/mail.php:443 msgid "SMS confirmation" msgstr "" -#: lib/mail.php:463 +#: lib/mail.php:467 #, php-format msgid "You've been nudged by %s" msgstr "" -#: lib/mail.php:467 +#: lib/mail.php:471 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -5546,12 +5546,12 @@ msgid "" "%4$s\n" msgstr "" -#: lib/mail.php:510 +#: lib/mail.php:517 #, php-format msgid "New private message from %s" msgstr "رساله خاصه جديده من %s" -#: lib/mail.php:514 +#: lib/mail.php:521 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -5570,12 +5570,12 @@ msgid "" "%5$s\n" msgstr "" -#: lib/mail.php:559 +#: lib/mail.php:568 #, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "" -#: lib/mail.php:561 +#: lib/mail.php:570 #, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -5596,12 +5596,12 @@ msgid "" "%6$s\n" msgstr "" -#: lib/mail.php:624 +#: lib/mail.php:635 #, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "" -#: lib/mail.php:626 +#: lib/mail.php:637 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" diff --git a/locale/bg/LC_MESSAGES/statusnet.po b/locale/bg/LC_MESSAGES/statusnet.po index 71b22dd4f1..3a6b5b0472 100644 --- a/locale/bg/LC_MESSAGES/statusnet.po +++ b/locale/bg/LC_MESSAGES/statusnet.po @@ -9,12 +9,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-04 18:55+0000\n" -"PO-Revision-Date: 2010-03-05 22:34:58+0000\n" +"POT-Creation-Date: 2010-03-06 23:49+0000\n" +"PO-Revision-Date: 2010-03-06 23:49:22+0000\n" "Language-Team: Bulgarian\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63298); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63350); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: bg\n" "X-Message-Group: out-statusnet\n" @@ -103,7 +103,7 @@ msgstr "Няма такака страница." #: actions/otp.php:76 actions/remotesubscribe.php:145 #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 -#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:40 #: actions/xrds.php:71 lib/command.php:163 lib/command.php:302 #: lib/command.php:355 lib/command.php:401 lib/command.php:462 #: lib/command.php:518 lib/galleryaction.php:59 lib/mailbox.php:82 @@ -694,7 +694,7 @@ msgstr "Повторения на %s" msgid "Notices tagged with %s" msgstr "Бележки с етикет %s" -#: actions/apitimelinetag.php:104 actions/tagrss.php:64 +#: actions/apitimelinetag.php:104 actions/tagrss.php:65 #, fuzzy, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Бележки от %1$s в %2$s." @@ -736,7 +736,7 @@ msgstr "" #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 #: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -#: actions/userrss.php:103 +#: actions/userrss.php:106 msgid "User without matching profile" msgstr "Потребител без съответстващ профил" @@ -1753,7 +1753,7 @@ msgstr "" msgid "Make this user an admin" msgstr "" -#: actions/grouprss.php:138 actions/userrss.php:90 +#: actions/grouprss.php:138 actions/userrss.php:93 #: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 #, php-format msgid "%s timeline" @@ -4414,7 +4414,7 @@ msgstr "%s не членува в никоя група." msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" -#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: actions/userrss.php:95 lib/atomgroupnoticefeed.php:66 #: lib/atomusernoticefeed.php:72 #, php-format msgid "Updates from %1$s on %2$s!" @@ -5211,12 +5211,12 @@ msgstr "%s напусна групата %s" msgid "Fullname: %s" msgstr "Пълно име: %s" -#: lib/command.php:312 lib/mail.php:254 +#: lib/command.php:312 lib/mail.php:258 #, php-format msgid "Location: %s" msgstr "Местоположение: %s" -#: lib/command.php:315 lib/mail.php:256 +#: lib/command.php:315 lib/mail.php:260 #, php-format msgid "Homepage: %s" msgstr "Домашна страница: %s" @@ -5657,11 +5657,11 @@ msgstr "Вход с име и парола" msgid "Sign up for a new account" msgstr "Създаване на нова сметка" -#: lib/mail.php:172 +#: lib/mail.php:173 msgid "Email address confirmation" msgstr "Потвърждаване адреса на е-поща" -#: lib/mail.php:174 +#: lib/mail.php:175 #, php-format msgid "" "Hey, %s.\n" @@ -5678,12 +5678,12 @@ msgid "" "%s\n" msgstr "" -#: lib/mail.php:236 +#: lib/mail.php:240 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s вече получава бележките ви в %2$s." -#: lib/mail.php:241 +#: lib/mail.php:245 #, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -5708,17 +5708,17 @@ msgstr "" "----\n" "Може да смените адреса и настройките за уведомяване по е-поща на %8$s\n" -#: lib/mail.php:258 +#: lib/mail.php:262 #, php-format msgid "Bio: %s" msgstr "Биография: %s" -#: lib/mail.php:286 +#: lib/mail.php:290 #, php-format msgid "New email address for posting to %s" msgstr "Нов адрес на е-поща за публикщуване в %s" -#: lib/mail.php:289 +#: lib/mail.php:293 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -5731,21 +5731,21 @@ msgid "" "%4$s" msgstr "" -#: lib/mail.php:413 +#: lib/mail.php:417 #, php-format msgid "%s status" msgstr "Състояние на %s" -#: lib/mail.php:439 +#: lib/mail.php:443 msgid "SMS confirmation" msgstr "Потвърждение за SMS" -#: lib/mail.php:463 +#: lib/mail.php:467 #, php-format msgid "You've been nudged by %s" msgstr "Побутнати сте от %s" -#: lib/mail.php:467 +#: lib/mail.php:471 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -5761,12 +5761,12 @@ msgid "" "%4$s\n" msgstr "" -#: lib/mail.php:510 +#: lib/mail.php:517 #, php-format msgid "New private message from %s" msgstr "Ново лично съобщение от %s" -#: lib/mail.php:514 +#: lib/mail.php:521 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -5785,12 +5785,12 @@ msgid "" "%5$s\n" msgstr "" -#: lib/mail.php:559 +#: lib/mail.php:568 #, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "%s (@%s) отбеляза бележката ви като любима" -#: lib/mail.php:561 +#: lib/mail.php:570 #, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -5811,12 +5811,12 @@ msgid "" "%6$s\n" msgstr "" -#: lib/mail.php:624 +#: lib/mail.php:635 #, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "" -#: lib/mail.php:626 +#: lib/mail.php:637 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" diff --git a/locale/br/LC_MESSAGES/statusnet.po b/locale/br/LC_MESSAGES/statusnet.po index 53e971a31c..2197b9e743 100644 --- a/locale/br/LC_MESSAGES/statusnet.po +++ b/locale/br/LC_MESSAGES/statusnet.po @@ -9,12 +9,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-04 19:12+0000\n" -"PO-Revision-Date: 2010-03-04 19:12:57+0000\n" +"POT-Creation-Date: 2010-03-06 23:49+0000\n" +"PO-Revision-Date: 2010-03-06 23:49:25+0000\n" "Language-Team: Dutch\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63350); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: out-statusnet\n" @@ -101,7 +101,7 @@ msgstr "N'eus ket eus ar bajenn-se" #: actions/otp.php:76 actions/remotesubscribe.php:145 #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 -#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:40 #: actions/xrds.php:71 lib/command.php:163 lib/command.php:302 #: lib/command.php:355 lib/command.php:401 lib/command.php:462 #: lib/command.php:518 lib/galleryaction.php:59 lib/mailbox.php:82 @@ -680,7 +680,7 @@ msgstr "Adkemeret eus %s" msgid "Notices tagged with %s" msgstr "Alioù merket gant %s" -#: actions/apitimelinetag.php:104 actions/tagrss.php:64 +#: actions/apitimelinetag.php:104 actions/tagrss.php:65 #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "" @@ -720,7 +720,7 @@ msgstr "" #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 #: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -#: actions/userrss.php:103 +#: actions/userrss.php:106 msgid "User without matching profile" msgstr "Implijer hep profil klotaus" @@ -1533,23 +1533,20 @@ msgid "Cannot read file." msgstr "Diposupl eo lenn ar restr." #: actions/grantrole.php:62 actions/revokerole.php:62 -#, fuzzy msgid "Invalid role." -msgstr "Fichenn direizh." +msgstr "Roll direizh." #: actions/grantrole.php:66 actions/revokerole.php:66 msgid "This role is reserved and cannot be set." msgstr "" #: actions/grantrole.php:75 -#, fuzzy msgid "You cannot grant user roles on this site." -msgstr "Ne c'helloc'h ket kas kemennadennoù d'an implijer-mañ." +msgstr "Ne c'helloc'h ket reiñ rolloù d'an implijerien eus al lec'hienn-mañ." #: actions/grantrole.php:82 -#, fuzzy msgid "User already has this role." -msgstr "An implijer-mañ n'eus profil ebet dezhañ." +msgstr "An implijer-mañ en deus dija ar roll-mañ." #: actions/groupblock.php:71 actions/groupunblock.php:71 #: actions/makeadmin.php:71 actions/subedit.php:46 @@ -1691,7 +1688,7 @@ msgstr "Lakaat ur merour" msgid "Make this user an admin" msgstr "Lakaat an implijer-mañ da verour" -#: actions/grouprss.php:138 actions/userrss.php:90 +#: actions/grouprss.php:138 actions/userrss.php:93 #: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 #, php-format msgid "%s timeline" @@ -2384,7 +2381,7 @@ msgstr "Kemmañ" #: actions/passwordsettings.php:154 actions/register.php:230 msgid "Password must be 6 or more characters." -msgstr "" +msgstr "Rankout a ra ar ger-tremen bezañ gant 6 arouezenn d'an nebeutañ." #: actions/passwordsettings.php:157 actions/register.php:233 msgid "Passwords don't match." @@ -2489,7 +2486,7 @@ msgstr "Hentad an tem" #: actions/pathsadminpanel.php:272 msgid "Theme directory" -msgstr "" +msgstr "Doser an temoù" #: actions/pathsadminpanel.php:279 msgid "Avatars" @@ -2600,7 +2597,7 @@ msgstr "" #: actions/profilesettings.php:99 msgid "Profile information" -msgstr "" +msgstr "Titouroù ar profil" #: actions/profilesettings.php:108 lib/groupeditform.php:154 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" @@ -2684,7 +2681,7 @@ msgstr "" #: actions/profilesettings.php:228 actions/register.php:223 #, php-format msgid "Bio is too long (max %d chars)." -msgstr "" +msgstr "Re hir eo ar bio (%d arouezenn d'ar muiañ)." #: actions/profilesettings.php:235 actions/siteadminpanel.php:151 msgid "Timezone not selected." @@ -2692,7 +2689,7 @@ msgstr "N'eo bet dibabet gwerzhid-eur ebet." #: actions/profilesettings.php:241 msgid "Language is too long (max 50 chars)." -msgstr "" +msgstr "Re hir eo ar yezh (255 arouezenn d'ar muiañ)." #: actions/profilesettings.php:253 actions/tagother.php:178 #, php-format @@ -4217,7 +4214,7 @@ msgstr "" msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" -#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: actions/userrss.php:95 lib/atomgroupnoticefeed.php:66 #: lib/atomusernoticefeed.php:72 #, php-format msgid "Updates from %1$s on %2$s!" @@ -4480,9 +4477,8 @@ msgid "Connect to services" msgstr "" #: lib/action.php:443 -#, fuzzy msgid "Connect" -msgstr "Endalc'h" +msgstr "Kevreañ" #. TRANS: Tooltip for menu option "Admin" #: lib/action.php:446 @@ -4951,12 +4947,12 @@ msgstr "%s {{Gender:.|en|he}} deus kuitaet ar strollad %s" msgid "Fullname: %s" msgstr "Anv klok : %s" -#: lib/command.php:312 lib/mail.php:254 +#: lib/command.php:312 lib/mail.php:258 #, php-format msgid "Location: %s" msgstr "" -#: lib/command.php:315 lib/mail.php:256 +#: lib/command.php:315 lib/mail.php:260 #, php-format msgid "Homepage: %s" msgstr "" @@ -5391,11 +5387,11 @@ msgstr "" msgid "Sign up for a new account" msgstr "" -#: lib/mail.php:172 +#: lib/mail.php:173 msgid "Email address confirmation" msgstr "" -#: lib/mail.php:174 +#: lib/mail.php:175 #, php-format msgid "" "Hey, %s.\n" @@ -5412,12 +5408,12 @@ msgid "" "%s\n" msgstr "" -#: lib/mail.php:236 +#: lib/mail.php:240 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "" -#: lib/mail.php:241 +#: lib/mail.php:245 #, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -5432,17 +5428,17 @@ msgid "" "Change your email address or notification options at %8$s\n" msgstr "" -#: lib/mail.php:258 +#: lib/mail.php:262 #, php-format msgid "Bio: %s" msgstr "" -#: lib/mail.php:286 +#: lib/mail.php:290 #, php-format msgid "New email address for posting to %s" msgstr "" -#: lib/mail.php:289 +#: lib/mail.php:293 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -5455,21 +5451,21 @@ msgid "" "%4$s" msgstr "" -#: lib/mail.php:413 +#: lib/mail.php:417 #, php-format msgid "%s status" msgstr "Statud %s" -#: lib/mail.php:439 +#: lib/mail.php:443 msgid "SMS confirmation" msgstr "" -#: lib/mail.php:463 +#: lib/mail.php:467 #, php-format msgid "You've been nudged by %s" msgstr "" -#: lib/mail.php:467 +#: lib/mail.php:471 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -5485,12 +5481,12 @@ msgid "" "%4$s\n" msgstr "" -#: lib/mail.php:510 +#: lib/mail.php:517 #, php-format msgid "New private message from %s" msgstr "Kemenadenn personel nevez a-berzh %s" -#: lib/mail.php:514 +#: lib/mail.php:521 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -5509,12 +5505,12 @@ msgid "" "%5$s\n" msgstr "" -#: lib/mail.php:559 +#: lib/mail.php:568 #, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "" -#: lib/mail.php:561 +#: lib/mail.php:570 #, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -5535,12 +5531,12 @@ msgid "" "%6$s\n" msgstr "" -#: lib/mail.php:624 +#: lib/mail.php:635 #, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "" -#: lib/mail.php:626 +#: lib/mail.php:637 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" diff --git a/locale/ca/LC_MESSAGES/statusnet.po b/locale/ca/LC_MESSAGES/statusnet.po index 8a91dad60e..bd7c5cd5a8 100644 --- a/locale/ca/LC_MESSAGES/statusnet.po +++ b/locale/ca/LC_MESSAGES/statusnet.po @@ -10,12 +10,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-04 18:55+0000\n" -"PO-Revision-Date: 2010-03-05 22:35:02+0000\n" +"POT-Creation-Date: 2010-03-06 23:49+0000\n" +"PO-Revision-Date: 2010-03-06 23:49:29+0000\n" "Language-Team: Catalan\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63298); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63350); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: out-statusnet\n" @@ -109,7 +109,7 @@ msgstr "No existeix la pàgina." #: actions/otp.php:76 actions/remotesubscribe.php:145 #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 -#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:40 #: actions/xrds.php:71 lib/command.php:163 lib/command.php:302 #: lib/command.php:355 lib/command.php:401 lib/command.php:462 #: lib/command.php:518 lib/galleryaction.php:59 lib/mailbox.php:82 @@ -713,7 +713,7 @@ msgstr "Repeticions de %s" msgid "Notices tagged with %s" msgstr "Aviso etiquetats amb %s" -#: actions/apitimelinetag.php:104 actions/tagrss.php:64 +#: actions/apitimelinetag.php:104 actions/tagrss.php:65 #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Actualitzacions etiquetades amb %1$s el %2$s!" @@ -754,7 +754,7 @@ msgstr "" #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 #: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -#: actions/userrss.php:103 +#: actions/userrss.php:106 msgid "User without matching profile" msgstr "Usuari sense perfil coincident" @@ -1772,7 +1772,7 @@ msgstr "Fes-lo administrador" msgid "Make this user an admin" msgstr "Fes l'usuari administrador" -#: actions/grouprss.php:138 actions/userrss.php:90 +#: actions/grouprss.php:138 actions/userrss.php:93 #: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 #, php-format msgid "%s timeline" @@ -4478,7 +4478,7 @@ msgstr "%s no és membre de cap grup." msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" -#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: actions/userrss.php:95 lib/atomgroupnoticefeed.php:66 #: lib/atomusernoticefeed.php:72 #, php-format msgid "Updates from %1$s on %2$s!" @@ -5268,12 +5268,12 @@ msgstr "%s ha abandonat el grup %s" msgid "Fullname: %s" msgstr "Nom complet: %s" -#: lib/command.php:312 lib/mail.php:254 +#: lib/command.php:312 lib/mail.php:258 #, php-format msgid "Location: %s" msgstr "Localització: %s" -#: lib/command.php:315 lib/mail.php:256 +#: lib/command.php:315 lib/mail.php:260 #, php-format msgid "Homepage: %s" msgstr "Pàgina web: %s" @@ -5713,11 +5713,11 @@ msgstr "Accedir amb el nom d'usuari i contrasenya" msgid "Sign up for a new account" msgstr "Crear nou compte" -#: lib/mail.php:172 +#: lib/mail.php:173 msgid "Email address confirmation" msgstr "Confirmació de l'adreça de correu electrònic" -#: lib/mail.php:174 +#: lib/mail.php:175 #, php-format msgid "" "Hey, %s.\n" @@ -5734,12 +5734,12 @@ msgid "" "%s\n" msgstr "" -#: lib/mail.php:236 +#: lib/mail.php:240 #, 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." -#: lib/mail.php:241 +#: lib/mail.php:245 #, fuzzy, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -5760,19 +5760,19 @@ msgstr "" "Atentament,\n" "%4$s.\n" -#: lib/mail.php:258 +#: lib/mail.php:262 #, fuzzy, php-format msgid "Bio: %s" msgstr "" "Biografia: %s\n" "\n" -#: lib/mail.php:286 +#: lib/mail.php:290 #, php-format msgid "New email address for posting to %s" msgstr "Nou correu electrònic per publicar a %s" -#: lib/mail.php:289 +#: lib/mail.php:293 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -5793,21 +5793,21 @@ msgstr "" "Sincerament teus,\n" "%4$s" -#: lib/mail.php:413 +#: lib/mail.php:417 #, php-format msgid "%s status" msgstr "%s estat" -#: lib/mail.php:439 +#: lib/mail.php:443 msgid "SMS confirmation" msgstr "Confirmació SMS" -#: lib/mail.php:463 +#: lib/mail.php:467 #, php-format msgid "You've been nudged by %s" msgstr "Has estat reclamat per %s" -#: lib/mail.php:467 +#: lib/mail.php:471 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -5823,12 +5823,12 @@ msgid "" "%4$s\n" msgstr "" -#: lib/mail.php:510 +#: lib/mail.php:517 #, php-format msgid "New private message from %s" msgstr "Nou missatge privat de %s" -#: lib/mail.php:514 +#: lib/mail.php:521 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -5847,12 +5847,12 @@ msgid "" "%5$s\n" msgstr "" -#: lib/mail.php:559 +#: lib/mail.php:568 #, 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:561 +#: lib/mail.php:570 #, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -5873,12 +5873,12 @@ msgid "" "%6$s\n" msgstr "" -#: lib/mail.php:624 +#: lib/mail.php:635 #, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "" -#: lib/mail.php:626 +#: lib/mail.php:637 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" diff --git a/locale/cs/LC_MESSAGES/statusnet.po b/locale/cs/LC_MESSAGES/statusnet.po index 8a8ccf6e68..a48ec58850 100644 --- a/locale/cs/LC_MESSAGES/statusnet.po +++ b/locale/cs/LC_MESSAGES/statusnet.po @@ -9,12 +9,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-04 18:55+0000\n" -"PO-Revision-Date: 2010-03-05 22:35:06+0000\n" +"POT-Creation-Date: 2010-03-06 23:49+0000\n" +"PO-Revision-Date: 2010-03-06 23:49:32+0000\n" "Language-Team: Czech\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63298); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63350); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: cs\n" "X-Message-Group: out-statusnet\n" @@ -109,7 +109,7 @@ msgstr "Žádné takové oznámení." #: actions/otp.php:76 actions/remotesubscribe.php:145 #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 -#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:40 #: actions/xrds.php:71 lib/command.php:163 lib/command.php:302 #: lib/command.php:355 lib/command.php:401 lib/command.php:462 #: lib/command.php:518 lib/galleryaction.php:59 lib/mailbox.php:82 @@ -709,7 +709,7 @@ msgstr "Odpovědi na %s" msgid "Notices tagged with %s" msgstr "" -#: actions/apitimelinetag.php:104 actions/tagrss.php:64 +#: actions/apitimelinetag.php:104 actions/tagrss.php:65 #, fuzzy, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Mikroblog od %s" @@ -751,7 +751,7 @@ msgstr "" #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 #: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -#: actions/userrss.php:103 +#: actions/userrss.php:106 msgid "User without matching profile" msgstr "" @@ -1779,7 +1779,7 @@ msgstr "" msgid "Make this user an admin" msgstr "" -#: actions/grouprss.php:138 actions/userrss.php:90 +#: actions/grouprss.php:138 actions/userrss.php:93 #: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 #, php-format msgid "%s timeline" @@ -4422,7 +4422,7 @@ msgstr "Neodeslal jste nám profil" msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" -#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: actions/userrss.php:95 lib/atomgroupnoticefeed.php:66 #: lib/atomusernoticefeed.php:72 #, php-format msgid "Updates from %1$s on %2$s!" @@ -5214,12 +5214,12 @@ msgstr "%1 statusů na %2" msgid "Fullname: %s" msgstr "Celé jméno" -#: lib/command.php:312 lib/mail.php:254 +#: lib/command.php:312 lib/mail.php:258 #, php-format msgid "Location: %s" msgstr "" -#: lib/command.php:315 lib/mail.php:256 +#: lib/command.php:315 lib/mail.php:260 #, php-format msgid "Homepage: %s" msgstr "" @@ -5675,11 +5675,11 @@ msgstr "Neplatné jméno nebo heslo" msgid "Sign up for a new account" msgstr "Vytvořit nový účet" -#: lib/mail.php:172 +#: lib/mail.php:173 msgid "Email address confirmation" msgstr "Potvrzení emailové adresy" -#: lib/mail.php:174 +#: lib/mail.php:175 #, php-format msgid "" "Hey, %s.\n" @@ -5696,12 +5696,12 @@ msgid "" "%s\n" msgstr "" -#: lib/mail.php:236 +#: lib/mail.php:240 #, 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:241 +#: lib/mail.php:245 #, fuzzy, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -5722,17 +5722,17 @@ msgstr "" "S úctou váš,\n" "%4$s.\n" -#: lib/mail.php:258 +#: lib/mail.php:262 #, fuzzy, php-format msgid "Bio: %s" msgstr "O mě" -#: lib/mail.php:286 +#: lib/mail.php:290 #, php-format msgid "New email address for posting to %s" msgstr "" -#: lib/mail.php:289 +#: lib/mail.php:293 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -5745,21 +5745,21 @@ msgid "" "%4$s" msgstr "" -#: lib/mail.php:413 +#: lib/mail.php:417 #, php-format msgid "%s status" msgstr "" -#: lib/mail.php:439 +#: lib/mail.php:443 msgid "SMS confirmation" msgstr "" -#: lib/mail.php:463 +#: lib/mail.php:467 #, php-format msgid "You've been nudged by %s" msgstr "" -#: lib/mail.php:467 +#: lib/mail.php:471 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -5775,12 +5775,12 @@ msgid "" "%4$s\n" msgstr "" -#: lib/mail.php:510 +#: lib/mail.php:517 #, php-format msgid "New private message from %s" msgstr "" -#: lib/mail.php:514 +#: lib/mail.php:521 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -5799,12 +5799,12 @@ msgid "" "%5$s\n" msgstr "" -#: lib/mail.php:559 +#: lib/mail.php:568 #, 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:561 +#: lib/mail.php:570 #, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -5825,12 +5825,12 @@ msgid "" "%6$s\n" msgstr "" -#: lib/mail.php:624 +#: lib/mail.php:635 #, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "" -#: lib/mail.php:626 +#: lib/mail.php:637 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" diff --git a/locale/de/LC_MESSAGES/statusnet.po b/locale/de/LC_MESSAGES/statusnet.po index 5007074b71..fb91e4768f 100644 --- a/locale/de/LC_MESSAGES/statusnet.po +++ b/locale/de/LC_MESSAGES/statusnet.po @@ -15,12 +15,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-04 18:55+0000\n" -"PO-Revision-Date: 2010-03-05 22:35:09+0000\n" +"POT-Creation-Date: 2010-03-06 23:49+0000\n" +"PO-Revision-Date: 2010-03-06 23:49:34+0000\n" "Language-Team: German\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63298); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63350); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: out-statusnet\n" @@ -108,7 +108,7 @@ msgstr "Seite nicht vorhanden" #: actions/otp.php:76 actions/remotesubscribe.php:145 #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 -#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:40 #: actions/xrds.php:71 lib/command.php:163 lib/command.php:302 #: lib/command.php:355 lib/command.php:401 lib/command.php:462 #: lib/command.php:518 lib/galleryaction.php:59 lib/mailbox.php:82 @@ -273,6 +273,8 @@ msgid "" "The server was unable to handle that much POST data (%s bytes) due to its " "current configuration." msgstr "" +"Der Server kann so große POST Abfragen (%s bytes) aufgrund der Konfiguration " +"nicht verarbeiten." #: actions/apiaccountupdateprofilebackgroundimage.php:136 #: actions/apiaccountupdateprofilebackgroundimage.php:146 @@ -505,7 +507,7 @@ msgstr "Gruppen von %s" #: actions/apioauthauthorize.php:101 msgid "No oauth_token parameter provided." -msgstr "" +msgstr "Kein oauth_token Parameter angegeben." #: actions/apioauthauthorize.php:106 #, fuzzy @@ -540,9 +542,8 @@ msgid "Database error deleting OAuth application user." msgstr "Fehler bei den Nutzereinstellungen." #: actions/apioauthauthorize.php:185 -#, fuzzy msgid "Database error inserting OAuth application user." -msgstr "Datenbankfehler beim Einfügen des Hashtags: %s" +msgstr "Datenbankfehler beim Einfügen des OAuth Programm Benutzers." #: actions/apioauthauthorize.php:214 #, php-format @@ -550,11 +551,13 @@ msgid "" "The request token %s has been authorized. Please exchange it for an access " "token." msgstr "" +"Die Anfrage %s wurde nicht autorisiert. Bitte gegen einen Zugriffstoken " +"austauschen." #: actions/apioauthauthorize.php:227 #, php-format msgid "The request token %s has been denied and revoked." -msgstr "" +msgstr "Die Anfrage %s wurde gesperrt und widerrufen." #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:103 actions/editapplication.php:139 @@ -567,7 +570,7 @@ msgstr "Unerwartete Formulareingabe." #: actions/apioauthauthorize.php:259 msgid "An application would like to connect to your account" -msgstr "" +msgstr "Ein Programm will eine Verbindung zu deinem Konto aufbauen" #: actions/apioauthauthorize.php:276 msgid "Allow or deny access" @@ -662,14 +665,14 @@ msgid "Unsupported format." msgstr "Bildformat wird nicht unterstützt." #: actions/apitimelinefavorites.php:108 -#, fuzzy, php-format +#, php-format msgid "%1$s / Favorites from %2$s" -msgstr "%s / Favoriten von %s" +msgstr "%1$s / Favoriten von %2$s" #: actions/apitimelinefavorites.php:117 -#, fuzzy, php-format +#, php-format msgid "%1$s updates favorited by %2$s / %2$s." -msgstr "%s Aktualisierung in den Favoriten von %s / %s." +msgstr "%1$s Aktualisierung in den Favoriten von %2$s / %2$s." #: actions/apitimelinementions.php:117 #, php-format @@ -692,21 +695,21 @@ msgid "%s updates from everyone!" msgstr "%s Nachrichten von allen!" #: actions/apitimelineretweetedtome.php:111 -#, fuzzy, php-format +#, php-format msgid "Repeated to %s" msgstr "Antworten an %s" #: actions/apitimelineretweetsofme.php:114 -#, fuzzy, php-format +#, php-format msgid "Repeats of %s" -msgstr "Antworten an %s" +msgstr "Antworten von %s" #: actions/apitimelinetag.php:102 actions/tag.php:67 #, php-format msgid "Notices tagged with %s" msgstr "Nachrichten, die mit %s getagt sind" -#: actions/apitimelinetag.php:104 actions/tagrss.php:64 +#: actions/apitimelinetag.php:104 actions/tagrss.php:65 #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Aktualisierungen mit %1$s getagt auf %2$s!" @@ -747,7 +750,7 @@ msgstr "" #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 #: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -#: actions/userrss.php:103 +#: actions/userrss.php:106 msgid "User without matching profile" msgstr "Benutzer ohne passendes Profil" @@ -862,9 +865,9 @@ msgid "%s blocked profiles" msgstr "%s blockierte Benutzerprofile" #: actions/blockedfromgroup.php:100 -#, fuzzy, php-format +#, php-format msgid "%1$s blocked profiles, page %2$d" -msgstr "%s blockierte Benutzerprofile, Seite %d" +msgstr "%1$s blockierte Benutzerprofile, Seite %2$d" #: actions/blockedfromgroup.php:115 msgid "A list of the users blocked from joining this group." @@ -921,7 +924,6 @@ msgid "Couldn't delete email confirmation." msgstr "Konnte E-Mail-Bestätigung nicht löschen." #: actions/confirmaddress.php:144 -#, fuzzy msgid "Confirm address" msgstr "Adresse bestätigen" @@ -940,14 +942,12 @@ msgid "Notices" msgstr "Nachrichten" #: actions/deleteapplication.php:63 -#, fuzzy msgid "You must be logged in to delete an application." -msgstr "Du musst angemeldet sein, um eine Gruppe zu bearbeiten." +msgstr "Du musst angemeldet sein, um dieses Programm zu entfernen." #: actions/deleteapplication.php:71 -#, fuzzy msgid "Application not found." -msgstr "Nachricht hat kein Profil" +msgstr "Programm nicht gefunden." #: actions/deleteapplication.php:78 actions/editapplication.php:77 #: actions/showapplication.php:94 @@ -970,11 +970,12 @@ msgid "" "about the application from the database, including all existing user " "connections." msgstr "" +"Bist du sicher, dass du dieses Programm löschen willst? Es werden alle Daten " +"aus der Datenbank entfernt, auch alle bestehenden Benutzer-Verbindungen." #: actions/deleteapplication.php:156 -#, fuzzy msgid "Do not delete this application" -msgstr "Diese Nachricht nicht löschen" +msgstr "Dieses Programm nicht löschen" #: actions/deleteapplication.php:160 msgid "Delete this application" @@ -1239,9 +1240,8 @@ msgid "Callback URL is not valid." msgstr "Antwort URL ist nicht gültig" #: actions/editapplication.php:258 -#, fuzzy msgid "Could not update application." -msgstr "Konnte Gruppe nicht aktualisieren." +msgstr "Konnte Programm nicht aktualisieren." #: actions/editgroup.php:56 #, php-format @@ -1254,7 +1254,6 @@ msgstr "Du musst angemeldet sein, um eine Gruppe zu erstellen." #: actions/editgroup.php:107 actions/editgroup.php:172 #: actions/groupdesignsettings.php:107 actions/grouplogo.php:109 -#, fuzzy msgid "You must be an admin to edit the group." msgstr "Du musst ein Administrator sein, um die Gruppe zu bearbeiten" @@ -1488,12 +1487,16 @@ msgstr "Die momentan beliebtesten Nachrichten auf dieser Seite." #: actions/favorited.php:150 msgid "Favorite notices appear on this page but no one has favorited one yet." msgstr "" +"Favorisierte Mitteilungen werden auf dieser Seite angezeigt; es wurden aber " +"noch keine Favoriten markiert." #: 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 "" +"Sei der erste der eine Nachricht favorisiert indem du auf die entsprechenden " +"Schaltfläche neben der Nachricht klickst." #: actions/favorited.php:156 #, php-format @@ -1501,6 +1504,8 @@ msgid "" "Why not [register an account](%%action.register%%) and be the first to add a " "notice to your favorites!" msgstr "" +"Warum [registrierst Du nicht einen Account](%%%%action.register%%%%) und " +"bist der erste der eine Nachricht favorisiert!" #: actions/favoritesrss.php:111 actions/showfavorites.php:77 #: lib/personalgroupnav.php:115 @@ -1524,9 +1529,9 @@ msgid "Featured users, page %d" msgstr "Top-Benutzer, Seite %d" #: actions/featured.php:99 -#, fuzzy, php-format +#, php-format msgid "A selection of some great users on %s" -msgstr "Eine Auswahl der tollen Benutzer auf %s" +msgstr "Eine Auswahl toller Benutzer auf %s" #: actions/file.php:34 msgid "No notice ID." @@ -1641,6 +1646,10 @@ msgid "" "will be removed from the group, unable to post, and unable to subscribe to " "the group in the future." msgstr "" +"Bist du sicher, dass du den Benutzer \"%1$s\" in der Gruppe \"%2$s\" " +"blockieren willst? Er wird aus der Gruppe gelöscht, kann keine Beiträge mehr " +"abschicken und wird auch in Zukunft dieser Gruppe nicht mehr beitreten " +"können." #: actions/groupblock.php:178 msgid "Do not block this user from this group" @@ -1696,7 +1705,6 @@ msgstr "" "s." #: actions/grouplogo.php:181 -#, fuzzy msgid "User without matching profile." msgstr "Benutzer ohne passendes Profil" @@ -1718,9 +1726,9 @@ msgid "%s group members" msgstr "%s Gruppen-Mitglieder" #: actions/groupmembers.php:103 -#, fuzzy, php-format +#, php-format msgid "%1$s group members, page %2$d" -msgstr "%s Gruppen-Mitglieder, Seite %d" +msgstr "%1$s Gruppen-Mitglieder, Seite %2$d" #: actions/groupmembers.php:118 msgid "A list of the users in this group." @@ -1746,7 +1754,7 @@ msgstr "Zum Admin ernennen" msgid "Make this user an admin" msgstr "Diesen Benutzer zu einem Admin ernennen" -#: actions/grouprss.php:138 actions/userrss.php:90 +#: actions/grouprss.php:138 actions/userrss.php:93 #: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 #, php-format msgid "%s timeline" @@ -1867,7 +1875,6 @@ msgstr "" "Freundesliste hinzugefügt?)" #: actions/imsettings.php:124 -#, fuzzy msgid "IM address" msgstr "IM-Adresse" @@ -2172,9 +2179,9 @@ msgid "Only an admin can make another user an admin." msgstr "Nur Administratoren können andere Nutzer zu Administratoren ernennen." #: actions/makeadmin.php:96 -#, fuzzy, php-format +#, php-format msgid "%1$s is already an admin for group \"%2$s\"." -msgstr "%s ist bereits ein Administrator der Gruppe „%s“." +msgstr "%1$s ist bereits Administrator der Gruppe \"%2$s\"." #: actions/makeadmin.php:133 #, fuzzy, php-format @@ -2182,37 +2189,33 @@ msgid "Can't get membership record for %1$s in group %2$s." msgstr "Konnte Benutzer %s aus der Gruppe %s nicht entfernen" #: actions/makeadmin.php:146 -#, fuzzy, php-format +#, php-format msgid "Can't make %1$s an admin for group %2$s." -msgstr "Konnte %s nicht zum Administrator der Gruppe %s machen" +msgstr "Konnte %1$s nicht zum Administrator der Gruppe %2$s machen" #: actions/microsummary.php:69 msgid "No current status" msgstr "Kein aktueller Status" #: actions/newapplication.php:52 -#, fuzzy msgid "New Application" -msgstr "Unbekannte Nachricht." +msgstr "Neues Programm" #: actions/newapplication.php:64 -#, fuzzy msgid "You must be logged in to register an application." -msgstr "Du musst angemeldet sein, um eine Gruppe zu erstellen." +msgstr "Du musst angemeldet sein, um ein Programm zu registrieren." #: actions/newapplication.php:143 -#, fuzzy msgid "Use this form to register a new application." -msgstr "Benutzer dieses Formular, um eine neue Gruppe zu erstellen." +msgstr "Benutzer dieses Formular, um eine neues Programm zu erstellen." #: actions/newapplication.php:176 msgid "Source URL is required." msgstr "Quell-URL ist erforderlich." #: actions/newapplication.php:258 actions/newapplication.php:267 -#, fuzzy msgid "Could not create application." -msgstr "Konnte keinen Favoriten erstellen." +msgstr "Konnte das Programm nicht erstellen." #: actions/newgroup.php:53 msgid "New group" @@ -2250,7 +2253,7 @@ msgid "Message sent" msgstr "Nachricht gesendet" #: actions/newmessage.php:185 -#, fuzzy, php-format +#, php-format msgid "Direct message to %s sent." msgstr "Direkte Nachricht an %s abgeschickt" @@ -2281,9 +2284,9 @@ msgid "Text search" msgstr "Volltextsuche" #: actions/noticesearch.php:91 -#, fuzzy, php-format +#, php-format msgid "Search results for \"%1$s\" on %2$s" -msgstr "Suchergebnisse für „%s“ auf %s" +msgstr "Suchergebnisse für \"%1$s\" auf %2$s" #: actions/noticesearch.php:121 #, php-format @@ -2300,6 +2303,9 @@ msgid "" "Why not [register an account](%%%%action.register%%%%) and be the first to " "[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" msgstr "" +"Warum [registrierst Du nicht einen Account](%%%%action.register%%%%) und " +"bist der erste der [auf diese Nachricht antwortet](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" #: actions/noticesearchrss.php:96 #, php-format @@ -2350,6 +2356,8 @@ msgstr "Verbundene Programme" #: actions/oauthconnectionssettings.php:83 msgid "You have allowed the following applications to access you account." msgstr "" +"Du hast das folgende Programm die Erlaubnis erteilt sich mit deinem Profil " +"zu verbinden." #: actions/oauthconnectionssettings.php:175 msgid "You are not a user of that application." @@ -2363,10 +2371,12 @@ msgstr "Kann Zugang dieses Programm nicht entfernen: " #, php-format msgid "You have not authorized any applications to use your account." msgstr "" +"Du hast noch kein Programm die Erlaubnis gegeben dein Profil zu benutzen." #: actions/oauthconnectionssettings.php:211 msgid "Developers can edit the registration settings for their applications " msgstr "" +"Entwickler können die Registrierungseinstellungen ihrer Programme ändern " #: actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" @@ -2435,9 +2445,8 @@ msgid "No user ID specified." msgstr "Keine Benutzer ID angegeben" #: actions/otp.php:83 -#, fuzzy msgid "No login token specified." -msgstr "Kein Profil angegeben." +msgstr "Kein Zugangstoken angegeben." #: actions/otp.php:90 #, fuzzy @@ -2450,9 +2459,8 @@ msgid "Invalid login token specified." msgstr "Token ungültig oder abgelaufen." #: actions/otp.php:104 -#, fuzzy msgid "Login token expired." -msgstr "An Seite anmelden" +msgstr "Zugangstoken ist abgelaufen." #: actions/outbox.php:58 #, php-format @@ -2537,7 +2545,7 @@ msgstr "Pfad" #: actions/pathsadminpanel.php:70 msgid "Path and server settings for this StatusNet site." -msgstr "" +msgstr "Pfad- und Serverangaben für diese StatusNet Seite." #: actions/pathsadminpanel.php:157 #, php-format @@ -2557,7 +2565,7 @@ msgstr "Hintergrund Verzeichnis ist nicht beschreibbar: %s" #: actions/pathsadminpanel.php:177 #, php-format msgid "Locales directory not readable: %s" -msgstr "" +msgstr "Sprachverzeichnis nicht lesbar: %s" #: actions/pathsadminpanel.php:183 msgid "Invalid SSL server. The maximum length is 255 characters." @@ -2585,11 +2593,11 @@ msgstr "Seitenpfad" #: actions/pathsadminpanel.php:246 msgid "Path to locales" -msgstr "" +msgstr "Sprachverzeichnis" #: actions/pathsadminpanel.php:246 msgid "Directory path to locales" -msgstr "" +msgstr "Pfad zu den Sprachen" #: actions/pathsadminpanel.php:250 msgid "Fancy URLs" @@ -2915,6 +2923,11 @@ msgid "" "tool. [Join now](%%action.register%%) to share notices about yourself with " "friends, family, and colleagues! ([Read more](%%doc.help%%))" msgstr "" +"Das ist %%site.name%%, ein [Mikroblogging](http://de.wikipedia.org/wiki/" +"Mikroblogging) Dienst auf Basis der freien Software [StatusNet](http://" +"status.net/). [Melde dich jetzt an](%%action.register%%) und tausche " +"Nachrichten mit deinen Freunden, Familie oder Kollegen aus! ([Mehr " +"Informationen](%%doc.help%%))" #: actions/public.php:247 #, php-format @@ -2953,6 +2966,8 @@ msgid "" "Why not [register an account](%%action.register%%) and be the first to post " "one!" msgstr "" +"Warum [registrierst Du nicht einen Account](%%%%action.register%%%%) und " +"bist der erste der eine Nachricht abschickt!" #: actions/publictagcloud.php:134 msgid "Tag cloud" @@ -2991,10 +3006,12 @@ 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 "" +"Wenn du dein Passwort vergessen hast kannst du dir ein neues an deine " +"hinterlegte Email schicken lassen." #: actions/recoverpassword.php:158 msgid "You have been identified. Enter a new password below. " -msgstr "" +msgstr "Du wurdest identifiziert. Gib ein neues Passwort ein. " #: actions/recoverpassword.php:188 msgid "Password recovery" @@ -3118,6 +3135,8 @@ msgid "" "With this form you can create a new account. You can then post notices and " "link up to friends and colleagues. " msgstr "" +"Hier kannst du einen neuen Zugang einrichten. Danach kannst du Nachrichten " +"und Links an deine Freunde und Kollegen schicken. " #: actions/register.php:425 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." @@ -3222,7 +3241,6 @@ msgid "Remote subscribe" msgstr "Entferntes Abonnement" #: actions/remotesubscribe.php:124 -#, fuzzy msgid "Subscribe to a remote user" msgstr "Abonniere diesen Benutzer" @@ -3315,12 +3333,12 @@ msgid "Replies feed for %s (Atom)" msgstr "Feed der Nachrichten von %s (Atom)" #: actions/replies.php:199 -#, fuzzy, php-format +#, php-format msgid "" "This is the timeline showing replies to %1$s but %2$s hasn't received a " "notice to his attention yet." msgstr "" -"Dies ist die Zeitleiste für %s und Freunde aber bisher hat niemand etwas " +"Dies ist die Zeitleiste für %1$s und Freunde aber bisher hat niemand etwas " "gepostet." #: actions/replies.php:204 @@ -3365,9 +3383,8 @@ msgid "You cannot sandbox users on this site." msgstr "Du kannst diesem Benutzer keine Nachricht schicken." #: actions/sandbox.php:72 -#, fuzzy msgid "User is already sandboxed." -msgstr "Dieser Benutzer hat dich blockiert." +msgstr "Benutzer ist schon blockiert." #. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 @@ -3376,9 +3393,8 @@ msgid "Sessions" msgstr "Sitzung" #: actions/sessionsadminpanel.php:65 -#, fuzzy msgid "Session settings for this StatusNet site." -msgstr "Design-Einstellungen für diese StatusNet-Website." +msgstr "Sitzungs-Einstellungen für diese StatusNet-Website." #: actions/sessionsadminpanel.php:175 msgid "Handle sessions" @@ -3386,15 +3402,15 @@ msgstr "Sitzung verwalten" #: actions/sessionsadminpanel.php:177 msgid "Whether to handle sessions ourselves." -msgstr "" +msgstr "Sitzungsverwaltung selber übernehmen." #: actions/sessionsadminpanel.php:181 msgid "Session debugging" -msgstr "" +msgstr "Sitzung untersuchen" #: actions/sessionsadminpanel.php:183 msgid "Turn on debugging output for sessions." -msgstr "" +msgstr "Fehleruntersuchung für Sitzungen aktivieren" #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/useradminpanel.php:294 @@ -3402,9 +3418,8 @@ msgid "Save site settings" msgstr "Site-Einstellungen speichern" #: actions/showapplication.php:82 -#, fuzzy msgid "You must be logged in to view an application." -msgstr "Du musst angemeldet sein, um aus einer Gruppe auszutreten." +msgstr "Du musst angemeldet sein, um aus dieses Programm zu betrachten." #: actions/showapplication.php:157 #, fuzzy @@ -3421,9 +3436,8 @@ msgid "Name" msgstr "Name" #: actions/showapplication.php:178 lib/applicationeditform.php:222 -#, fuzzy msgid "Organization" -msgstr "Seitenerstellung" +msgstr "Organisation" #: actions/showapplication.php:187 actions/version.php:198 #: lib/applicationeditform.php:209 lib/groupeditform.php:172 @@ -3438,19 +3452,19 @@ msgstr "Statistiken" #: actions/showapplication.php:203 #, php-format msgid "Created by %1$s - %2$s access by default - %3$d users" -msgstr "" +msgstr "Erstellt von %1$s - %2$s Standard Zugang - %3$d Benutzer" #: actions/showapplication.php:213 msgid "Application actions" -msgstr "" +msgstr "Programmaktionen" #: actions/showapplication.php:236 msgid "Reset key & secret" -msgstr "" +msgstr "Schlüssel zurücksetzen" #: actions/showapplication.php:261 msgid "Application info" -msgstr "" +msgstr "Programminformation" #: actions/showapplication.php:263 msgid "Consumer key" @@ -3462,32 +3476,32 @@ msgstr "" #: actions/showapplication.php:273 msgid "Request token URL" -msgstr "" +msgstr "Anfrage-Token Adresse" #: actions/showapplication.php:278 msgid "Access token URL" -msgstr "" +msgstr "Zugriffs-Token Adresse" #: actions/showapplication.php:283 -#, fuzzy msgid "Authorize URL" -msgstr "Autor" +msgstr "Autorisationadresse" #: actions/showapplication.php:288 msgid "" "Note: We support HMAC-SHA1 signatures. We do not support the plaintext " "signature method." msgstr "" +"Hinweis: Wir unterstützen HMAC-SHA1 Signaturen. Wir unterstützen keine " +"Klartext Signaturen." #: actions/showapplication.php:309 -#, fuzzy msgid "Are you sure you want to reset your consumer key and secret?" -msgstr "Bist du sicher, dass du diese Nachricht löschen möchtest?" +msgstr "Bist du sicher, dass du den Schlüssel zurücksetzen willst?" #: actions/showfavorites.php:79 -#, fuzzy, php-format +#, php-format msgid "%1$s's favorite notices, page %2$d" -msgstr "%ss favorisierte Nachrichten" +msgstr "%1$ss favorisierte Nachrichten, Seite %2$d" #: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." @@ -3539,9 +3553,9 @@ msgid "%s group" msgstr "%s Gruppe" #: actions/showgroup.php:84 -#, fuzzy, php-format +#, php-format msgid "%1$s group, page %2$d" -msgstr "%s Gruppen-Mitglieder, Seite %d" +msgstr "%1$s Gruppe, Seite %d" #: actions/showgroup.php:226 msgid "Group profile" @@ -3559,7 +3573,7 @@ msgstr "Nachricht" #: actions/showgroup.php:292 lib/groupeditform.php:184 msgid "Aliases" -msgstr "" +msgstr "Pseudonyme" #: actions/showgroup.php:301 msgid "Group actions" @@ -3658,14 +3672,14 @@ msgid " tagged %s" msgstr "Nachrichten, die mit %s getagt sind" #: actions/showstream.php:79 -#, fuzzy, php-format +#, php-format msgid "%1$s, page %2$d" -msgstr "%s blockierte Benutzerprofile, Seite %d" +msgstr "%1$s, Seite %2$d" #: actions/showstream.php:122 -#, fuzzy, php-format +#, php-format msgid "Notice feed for %1$s tagged %2$s (RSS 1.0)" -msgstr "Nachrichtenfeed der Gruppe %s" +msgstr "Nachrichtenfeed für %1$s tagged %2$s (RSS 1.0)" #: actions/showstream.php:129 #, php-format @@ -3688,10 +3702,10 @@ msgid "FOAF for %s" msgstr "FOAF von %s" #: actions/showstream.php:200 -#, fuzzy, php-format +#, php-format msgid "This is the timeline for %1$s but %2$s hasn't posted anything yet." msgstr "" -"Dies ist die Zeitleiste für %s und Freunde aber bisher hat niemand etwas " +"Dies ist die Zeitleiste für %1$s und Freunde aber bisher hat niemand etwas " "gepostet." #: actions/showstream.php:205 @@ -3699,16 +3713,17 @@ msgid "" "Seen anything interesting recently? You haven't posted any notices yet, now " "would be a good time to start :)" msgstr "" +"In letzter Zeit irgendwas interessantes erlebt? Du hast noch nichts " +"geschrieben, jetzt wäre doch ein guter Zeitpunkt los zu legen :)" #: actions/showstream.php:207 -#, fuzzy, php-format +#, php-format msgid "" "You can try to nudge %1$s or [post something to his or her attention](%%%%" "action.newnotice%%%%?status_textarea=%2$s)." msgstr "" -"Du kannst [%s in seinem Profil einen Stups geben](../%s) oder [ihm etwas " -"posten](%%%%action.newnotice%%%%?status_textarea=%s) um seine Aufmerksamkeit " -"zu erregen." +"Du kannst %1$s in seinem Profil einen Stups geben oder [ihm etwas posten](%%%" +"%action.newnotice%%%%?status_textarea=%s) um seine Aufmerksamkeit zu erregen." #: actions/showstream.php:243 #, php-format @@ -3744,7 +3759,6 @@ msgid "User is already silenced." msgstr "Nutzer ist bereits ruhig gestellt." #: actions/siteadminpanel.php:69 -#, fuzzy msgid "Basic settings for this StatusNet site" msgstr "Grundeinstellungen für diese StatusNet Seite." @@ -3767,7 +3781,7 @@ msgstr "Minimale Textlänge ist 140 Zeichen." #: actions/siteadminpanel.php:171 msgid "Dupe limit must 1 or more seconds." -msgstr "" +msgstr "Duplikatlimit muss mehr als 1 Sekunde sein" #: actions/siteadminpanel.php:221 msgid "General" @@ -3783,19 +3797,21 @@ msgstr "Der Name deiner Seite, sowas wie \"DeinUnternehmen Mircoblog\"" #: actions/siteadminpanel.php:229 msgid "Brought by" -msgstr "" +msgstr "Erstellt von" #: actions/siteadminpanel.php:230 msgid "Text used for credits link in footer of each page" msgstr "" +"Text der für den Credit-Link im Fußbereich auf jeder Seite benutzt wird" #: actions/siteadminpanel.php:234 msgid "Brought by URL" -msgstr "" +msgstr "Erstellt von Adresse" #: actions/siteadminpanel.php:235 msgid "URL used for credits link in footer of each page" msgstr "" +"Adresse die für den Credit-Link im Fußbereich auf jeder Seite benutzt wird" #: actions/siteadminpanel.php:239 msgid "Contact email address for your site" @@ -3869,9 +3885,8 @@ msgid "Site-wide notice text (255 chars max; HTML okay)" msgstr "Systembenachrichtigung (max. 255 Zeichen; HTML erlaubt)" #: actions/sitenoticeadminpanel.php:198 -#, fuzzy msgid "Save site notice" -msgstr "Seitennachricht" +msgstr "Systemnachricht speichern" #: actions/smssettings.php:58 msgid "SMS settings" @@ -4010,7 +4025,7 @@ msgstr "" #: actions/snapshotadminpanel.php:208 msgid "When to send statistical data to status.net servers" -msgstr "" +msgstr "Wann sollen Statistiken zum status.net Server geschickt werden" #: actions/snapshotadminpanel.php:217 msgid "Frequency" @@ -4162,9 +4177,8 @@ msgid "Notice feed for tag %s (Atom)" msgstr "Nachrichten Feed für Tag %s (Atom)" #: actions/tagother.php:39 -#, fuzzy msgid "No ID argument." -msgstr "Kein id Argument." +msgstr "Kein ID Argument." #: actions/tagother.php:65 #, php-format @@ -4222,9 +4236,8 @@ msgid "You haven't blocked that user." msgstr "Du hast diesen Benutzer nicht blockiert." #: actions/unsandbox.php:72 -#, fuzzy msgid "User is not sandboxed." -msgstr "Dieser Benutzer hat dich blockiert." +msgstr "Benutzer ist nicht blockiert." #: actions/unsilence.php:72 msgid "User is not silenced." @@ -4239,12 +4252,12 @@ msgid "Unsubscribed" msgstr "Abbestellt" #: actions/updateprofile.php:64 actions/userauthorization.php:337 -#, fuzzy, php-format +#, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" -"Die Nachrichtenlizenz '%s' ist nicht kompatibel mit der Lizenz der Seite '%" -"s'." +"Die Benutzerlizenz ‘%1$s’ ist nicht kompatibel mit der Lizenz der Seite ‘%2" +"$s’." #. TRANS: User admin panel title #: actions/useradminpanel.php:59 @@ -4372,14 +4385,13 @@ msgid "Subscription rejected" msgstr "Abonnement abgelehnt" #: actions/userauthorization.php:268 -#, 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 " +"zurückgegeben. Lies nochmal die Anweisungen der Seite, wie Abonnements " "vollständig abgelehnt werden. Dein Abonnement-Token ist:" #: actions/userauthorization.php:303 @@ -4453,7 +4465,7 @@ msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" "Versuche [Gruppen zu finden](%%action.groupsearch%%) und diesen beizutreten." -#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: actions/userrss.php:95 lib/atomgroupnoticefeed.php:66 #: lib/atomusernoticefeed.php:72 #, php-format msgid "Updates from %1$s on %2$s!" @@ -4631,14 +4643,12 @@ msgid "Not subscribed!" msgstr "Nicht abonniert!" #: classes/Subscription.php:163 -#, fuzzy msgid "Couldn't delete self-subscription." msgstr "Konnte Abonnement nicht löschen." #: classes/Subscription.php:190 -#, fuzzy msgid "Couldn't delete subscription OMB token." -msgstr "Konnte Abonnement nicht löschen." +msgstr "Konnte OMB-Abonnement nicht löschen." #: classes/Subscription.php:201 lib/subs.php:69 msgid "Couldn't delete subscription." @@ -4727,10 +4737,9 @@ msgstr "Ändere deine E-Mail, Avatar, Passwort und Profil" #. TRANS: Tooltip for main menu option "Services" #: lib/action.php:440 -#, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" -msgstr "Konnte nicht zum Server umleiten: %s" +msgstr "Zum Dienst verbinden" #: lib/action.php:443 msgid "Connect" @@ -4738,10 +4747,9 @@ msgstr "Verbinden" #. TRANS: Tooltip for menu option "Admin" #: lib/action.php:446 -#, fuzzy msgctxt "TOOLTIP" msgid "Change site configuration" -msgstr "Hauptnavigation" +msgstr "Seiteneinstellung ändern" #: lib/action.php:449 msgctxt "MENU" @@ -4862,9 +4870,8 @@ msgid "Contact" msgstr "Kontakt" #: lib/action.php:771 -#, fuzzy msgid "Badge" -msgstr "Stups" +msgstr "Plakette" #: lib/action.php:799 msgid "StatusNet software license" @@ -4947,9 +4954,8 @@ msgstr "" #. TRANS: Client error message #: lib/adminpanelaction.php:98 -#, fuzzy msgid "You cannot make changes to this site." -msgstr "Du kannst diesem Benutzer keine Nachricht schicken." +msgstr "Du kannst keine Änderungen an dieser Seite vornehmen." #. TRANS: Client error message #: lib/adminpanelaction.php:110 @@ -4985,9 +4991,8 @@ msgstr "Seite" #. TRANS: Menu item title/tooltip #: lib/adminpanelaction.php:356 -#, fuzzy msgid "Design configuration" -msgstr "SMS-Konfiguration" +msgstr "Motiv-Konfiguration" #. TRANS: Menu item for site administration #: lib/adminpanelaction.php:358 @@ -5007,15 +5012,13 @@ msgstr "Benutzer" #. TRANS: Menu item title/tooltip #: lib/adminpanelaction.php:372 -#, fuzzy msgid "Access configuration" -msgstr "SMS-Konfiguration" +msgstr "Zugangskonfiguration" #. TRANS: Menu item title/tooltip #: lib/adminpanelaction.php:380 -#, fuzzy msgid "Paths configuration" -msgstr "SMS-Konfiguration" +msgstr "Pfadkonfiguration" #. TRANS: Menu item title/tooltip #: lib/adminpanelaction.php:388 @@ -5024,9 +5027,8 @@ msgstr "Sitzungseinstellungen" #. TRANS: Menu item title/tooltip #: lib/adminpanelaction.php:396 -#, fuzzy msgid "Edit site notice" -msgstr "Seitennachricht" +msgstr "Seitennachricht bearbeiten" #. TRANS: Menu item title/tooltip #: lib/adminpanelaction.php:404 @@ -5057,19 +5059,16 @@ msgid "Describe your application in %d characters" msgstr "Beschreibe die Gruppe oder das Thema in 140 Zeichen" #: lib/applicationeditform.php:207 -#, fuzzy msgid "Describe your application" -msgstr "Beschreibe die Gruppe oder das Thema in 140 Zeichen" +msgstr "Beschreibe dein Programm" #: lib/applicationeditform.php:216 -#, fuzzy msgid "Source URL" -msgstr "Quellcode" +msgstr "Quelladresse" #: lib/applicationeditform.php:218 -#, fuzzy msgid "URL of the homepage of this application" -msgstr "URL der Homepage oder Blogs der Gruppe oder des Themas" +msgstr "Adresse der Homepage dieses Programms" #: lib/applicationeditform.php:224 msgid "Organization responsible for this application" @@ -5090,11 +5089,11 @@ msgstr "Browser" #: lib/applicationeditform.php:274 msgid "Desktop" -msgstr "" +msgstr "Arbeitsfläche" #: lib/applicationeditform.php:275 msgid "Type of application, browser or desktop" -msgstr "" +msgstr "Typ der Anwendung, Browser oder Arbeitsfläche" #: lib/applicationeditform.php:297 msgid "Read-only" @@ -5107,9 +5106,10 @@ msgstr "Lese/Schreibzugriff" #: lib/applicationeditform.php:316 msgid "Default access for this application: read-only, or read-write" msgstr "" +"Standardeinstellung dieses Programms: Schreibgeschützt oder Lese/" +"Schreibzugriff" #: lib/applicationlist.php:154 -#, fuzzy msgid "Revoke" msgstr "Entfernen" @@ -5138,9 +5138,8 @@ msgid "Password changing failed" msgstr "Passwort konnte nicht geändert werden" #: lib/authenticationplugin.php:235 -#, fuzzy msgid "Password changing is not allowed" -msgstr "Passwort geändert" +msgstr "Passwort kann nicht geändert werden" #: lib/channel.php:138 lib/channel.php:158 msgid "Command results" @@ -5165,12 +5164,12 @@ msgstr "Die bestätigte E-Mail-Adresse konnte nicht gespeichert werden." #: lib/command.php:92 msgid "It does not make a lot of sense to nudge yourself!" -msgstr "" +msgstr "Es macht keinen Sinn dich selbst anzustupsen!" #: lib/command.php:99 -#, fuzzy, php-format +#, php-format msgid "Nudge sent to %s" -msgstr "Stups abgeschickt" +msgstr "Stups an %s geschickt" #: lib/command.php:126 #, php-format @@ -5225,12 +5224,12 @@ msgstr "%s hat die Gruppe %s verlassen" msgid "Fullname: %s" msgstr "Vollständiger Name: %s" -#: lib/command.php:312 lib/mail.php:254 +#: lib/command.php:312 lib/mail.php:258 #, php-format msgid "Location: %s" msgstr "Standort: %s" -#: lib/command.php:315 lib/mail.php:256 +#: lib/command.php:315 lib/mail.php:260 #, php-format msgid "Homepage: %s" msgstr "Homepage: %s" @@ -5263,19 +5262,18 @@ msgid "Already repeated that notice" msgstr "Nachricht bereits wiederholt" #: lib/command.php:426 -#, fuzzy, php-format +#, php-format msgid "Notice from %s repeated" -msgstr "Nachricht hinzugefügt" +msgstr "Nachricht von %s wiederholt" #: lib/command.php:428 -#, fuzzy msgid "Error repeating notice." -msgstr "Problem beim Speichern der Nachricht." +msgstr "Fehler beim Wiederholen der Nachricht" #: lib/command.php:482 -#, fuzzy, php-format +#, 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" +msgstr "Nachricht zu lange - maximal %d Zeichen erlaubt, du hast %d gesendet" #: lib/command.php:491 #, php-format @@ -5330,12 +5328,12 @@ msgstr "Konnte Benachrichtigung nicht aktivieren." #: lib/command.php:654 msgid "Login command is disabled" -msgstr "" +msgstr "Anmeldung ist abgeschaltet" #: lib/command.php:665 #, php-format msgid "This link is useable only once, and is good for only 2 minutes: %s" -msgstr "" +msgstr "Der Link ist nur einmal benutzbar und für eine Dauer von 2 Minuten: %s" #: lib/command.php:692 #, php-format @@ -5343,9 +5341,8 @@ msgid "Unsubscribed %s" msgstr "%s nicht mehr abonniert" #: lib/command.php:709 -#, fuzzy msgid "You are not subscribed to anyone." -msgstr "Du hast dieses Profil nicht abonniert." +msgstr "Du hast niemanden abonniert." #: lib/command.php:711 msgid "You are subscribed to this person:" @@ -5425,12 +5422,11 @@ msgstr "Ich habe an folgenden Stellen nach Konfigurationsdateien gesucht: " #: lib/common.php:151 msgid "You may wish to run the installer to fix this." -msgstr "" +msgstr "Bitte die Installation erneut starten um das Problem zu beheben." #: lib/common.php:152 -#, fuzzy msgid "Go to the installer." -msgstr "Auf der Seite anmelden" +msgstr "Zur Installation gehen." #: lib/connectsettingsaction.php:110 msgid "IM" @@ -5445,13 +5441,12 @@ msgid "Updates by SMS" msgstr "Aktualisierungen via SMS" #: lib/connectsettingsaction.php:120 -#, fuzzy msgid "Connections" -msgstr "Verbinden" +msgstr "Verbindungen" #: lib/connectsettingsaction.php:121 msgid "Authorized connected applications" -msgstr "" +msgstr "Programme mit Zugriffserlaubnis" #: lib/dberroraction.php:60 msgid "Database error" @@ -5473,12 +5468,10 @@ msgid "Design defaults restored." msgstr "Standard Design wieder hergestellt." #: 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" @@ -5515,16 +5508,14 @@ msgid "All" msgstr "Alle" #: lib/galleryaction.php:139 -#, fuzzy msgid "Select tag to filter" -msgstr "Wähle einen Netzanbieter" +msgstr "Wähle ein Stichwort, um die Liste einzuschränken" #: lib/galleryaction.php:140 msgid "Tag" msgstr "Stichwort" #: lib/galleryaction.php:141 -#, fuzzy msgid "Choose a tag to narrow list" msgstr "Wähle ein Stichwort, um die Liste einzuschränken" @@ -5535,22 +5526,20 @@ msgstr "Los geht's" #: lib/grantroleform.php:91 #, php-format msgid "Grant this user the \"%s\" role" -msgstr "" +msgstr "Teile dem Benutzer die \"%s\" Rolle zu" #: 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" +msgstr "Adresse der Homepage oder Blogs der Gruppe oder des Themas" #: lib/groupeditform.php:168 -#, fuzzy msgid "Describe the group or topic" -msgstr "Beschreibe die Gruppe oder das Thema in 140 Zeichen" +msgstr "Beschreibe die Gruppe oder das Thema" #: lib/groupeditform.php:170 -#, fuzzy, php-format +#, php-format msgid "Describe the group or topic in %d characters" -msgstr "Beschreibe die Gruppe oder das Thema in 140 Zeichen" +msgstr "Beschreibe die Gruppe oder das Thema in %d Zeichen" #: lib/groupeditform.php:179 msgid "" @@ -5675,11 +5664,11 @@ msgstr "Mit Nutzernamen und Passwort anmelden" msgid "Sign up for a new account" msgstr "Registriere ein neues Nutzerkonto" -#: lib/mail.php:172 +#: lib/mail.php:173 msgid "Email address confirmation" msgstr "Bestätigung der E-Mail-Adresse" -#: lib/mail.php:174 +#: lib/mail.php:175 #, php-format msgid "" "Hey, %s.\n" @@ -5709,12 +5698,12 @@ msgstr "" "Vielen Dank!\n" "%s\n" -#: lib/mail.php:236 +#: lib/mail.php:240 #, 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/mail.php:241 +#: lib/mail.php:245 #, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -5740,17 +5729,17 @@ msgstr "" "Du kannst Deine E-Mail-Adresse und die Benachrichtigungseinstellungen auf %8" "$s ändern.\n" -#: lib/mail.php:258 +#: lib/mail.php:262 #, php-format msgid "Bio: %s" msgstr "Biografie: %s" -#: lib/mail.php:286 +#: lib/mail.php:290 #, php-format msgid "New email address for posting to %s" msgstr "Neue E-Mail-Adresse um auf %s zu schreiben" -#: lib/mail.php:289 +#: lib/mail.php:293 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -5771,21 +5760,21 @@ msgstr "" "Viele Grüße,\n" "%4$s" -#: lib/mail.php:413 +#: lib/mail.php:417 #, php-format msgid "%s status" msgstr "%s Status" -#: lib/mail.php:439 +#: lib/mail.php:443 msgid "SMS confirmation" msgstr "SMS-Konfiguration" -#: lib/mail.php:463 +#: lib/mail.php:467 #, php-format msgid "You've been nudged by %s" msgstr "Du wurdest von %s angestupst" -#: lib/mail.php:467 +#: lib/mail.php:471 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -5812,12 +5801,12 @@ msgstr "" "Mit freundlichen Grüßen,\n" "%4$s\n" -#: lib/mail.php:510 +#: lib/mail.php:517 #, php-format msgid "New private message from %s" msgstr "Neue private Nachricht von %s" -#: lib/mail.php:514 +#: lib/mail.php:521 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -5850,12 +5839,12 @@ msgstr "" "Mit freundlichen Grüßen,\n" "%5$s\n" -#: lib/mail.php:559 +#: lib/mail.php:568 #, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "%s (@%s) hat deine Nachricht als Favorit gespeichert" -#: lib/mail.php:561 +#: lib/mail.php:570 #, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -5876,12 +5865,13 @@ msgid "" "%6$s\n" msgstr "" -#: lib/mail.php:624 +#: lib/mail.php:635 #, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "" +"%s (@%s) hat dir eine Nachricht gesendet um deine Aufmerksamkeit zu erlangen" -#: lib/mail.php:626 +#: lib/mail.php:637 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" @@ -5972,11 +5962,11 @@ msgstr "Upload der Datei wurde wegen der Dateiendung gestoppt." #: lib/mediafile.php:179 lib/mediafile.php:216 msgid "File exceeds user's quota." -msgstr "" +msgstr "Dateigröße liegt über dem Benutzerlimit" #: lib/mediafile.php:196 lib/mediafile.php:233 msgid "File could not be moved to destination directory." -msgstr "" +msgstr "Datei konnte nicht in das Zielverzeichnis verschoben werden." #: lib/mediafile.php:201 lib/mediafile.php:237 #, fuzzy @@ -5986,12 +5976,12 @@ msgstr "Konnte öffentlichen Stream nicht abrufen." #: lib/mediafile.php:270 #, php-format msgid " Try using another %s format." -msgstr "" +msgstr "Versuche ein anderes %s Format." #: lib/mediafile.php:275 #, php-format msgid "%s is not a supported file type on this server." -msgstr "" +msgstr "%s ist kein unterstütztes Dateiformat auf diesem Server." #: lib/messageform.php:120 msgid "Send a direct notice" @@ -6040,6 +6030,8 @@ msgid "" "Sorry, retrieving your geo location is taking longer than expected, please " "try again later" msgstr "" +"Es tut uns Leid, aber die Abfrage deiner GPS Position hat zu lange gedauert. " +"Bitte versuche es später wieder." #: lib/noticelist.php:429 #, php-format @@ -6111,9 +6103,8 @@ msgid "Error inserting remote profile" msgstr "Fehler beim Einfügen des entfernten Profils" #: lib/oauthstore.php:345 -#, fuzzy msgid "Duplicate notice" -msgstr "Notiz löschen" +msgstr "Doppelte Nachricht" #: lib/oauthstore.php:490 msgid "Couldn't insert new subscription." @@ -6153,7 +6144,6 @@ msgid "Tags in %s's notices" msgstr "Stichworte in %ss Nachrichten" #: lib/plugin.php:114 -#, fuzzy msgid "Unknown" msgstr "Unbekannter Befehl" @@ -6192,7 +6182,7 @@ msgstr "Kein id Argument." #: lib/profileformaction.php:137 msgid "Unimplemented method." -msgstr "" +msgstr "Nicht unterstützte Methode." #: lib/publicgroupnav.php:78 msgid "Public" @@ -6245,16 +6235,15 @@ msgstr "Site durchsuchen" #: lib/searchaction.php:126 msgid "Keyword(s)" -msgstr "" +msgstr "Stichwort/Stichwörter" #: lib/searchaction.php:127 msgid "Search" msgstr "Suchen" #: lib/searchaction.php:162 -#, fuzzy msgid "Search help" -msgstr "Suchen" +msgstr "Hilfe suchen" #: lib/searchgroupnav.php:80 msgid "People" @@ -6278,7 +6267,7 @@ msgstr "Abschnitt ohne Titel" #: lib/section.php:106 msgid "More..." -msgstr "" +msgstr "Mehr..." #: lib/silenceform.php:67 msgid "Silence" @@ -6383,21 +6372,18 @@ msgid "Moderate" msgstr "Moderieren" #: lib/userprofile.php:352 -#, fuzzy msgid "User role" -msgstr "Benutzerprofil" +msgstr "Benutzerrolle" #: lib/userprofile.php:354 -#, fuzzy msgctxt "role" msgid "Administrator" -msgstr "Administratoren" +msgstr "Administrator" #: lib/userprofile.php:355 -#, fuzzy msgctxt "role" msgid "Moderator" -msgstr "Moderieren" +msgstr "Moderator" #: lib/util.php:1015 msgid "a few seconds ago" diff --git a/locale/el/LC_MESSAGES/statusnet.po b/locale/el/LC_MESSAGES/statusnet.po index 34c193e290..0ebe84fe7f 100644 --- a/locale/el/LC_MESSAGES/statusnet.po +++ b/locale/el/LC_MESSAGES/statusnet.po @@ -9,12 +9,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-04 18:55+0000\n" -"PO-Revision-Date: 2010-03-05 22:35:20+0000\n" +"POT-Creation-Date: 2010-03-06 23:49+0000\n" +"PO-Revision-Date: 2010-03-06 23:49:37+0000\n" "Language-Team: Greek\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63298); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63350); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: el\n" "X-Message-Group: out-statusnet\n" @@ -105,7 +105,7 @@ msgstr "Δεν υπάρχει τέτοια σελίδα" #: actions/otp.php:76 actions/remotesubscribe.php:145 #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 -#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:40 #: actions/xrds.php:71 lib/command.php:163 lib/command.php:302 #: lib/command.php:355 lib/command.php:401 lib/command.php:462 #: lib/command.php:518 lib/galleryaction.php:59 lib/mailbox.php:82 @@ -695,7 +695,7 @@ msgstr "" msgid "Notices tagged with %s" msgstr "" -#: actions/apitimelinetag.php:104 actions/tagrss.php:64 +#: actions/apitimelinetag.php:104 actions/tagrss.php:65 #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "" @@ -735,7 +735,7 @@ msgstr "" #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 #: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -#: actions/userrss.php:103 +#: actions/userrss.php:106 msgid "User without matching profile" msgstr "" @@ -1748,7 +1748,7 @@ msgstr "Διαχειριστής" msgid "Make this user an admin" msgstr "" -#: actions/grouprss.php:138 actions/userrss.php:90 +#: actions/grouprss.php:138 actions/userrss.php:93 #: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 #, php-format msgid "%s timeline" @@ -4349,7 +4349,7 @@ msgstr "" msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" -#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: actions/userrss.php:95 lib/atomgroupnoticefeed.php:66 #: lib/atomusernoticefeed.php:72 #, php-format msgid "Updates from %1$s on %2$s!" @@ -5119,12 +5119,12 @@ msgstr "ομάδες των χρηστών %s" msgid "Fullname: %s" msgstr "Ονοματεπώνυμο" -#: lib/command.php:312 lib/mail.php:254 +#: lib/command.php:312 lib/mail.php:258 #, php-format msgid "Location: %s" msgstr "" -#: lib/command.php:315 lib/mail.php:256 +#: lib/command.php:315 lib/mail.php:260 #, php-format msgid "Homepage: %s" msgstr "" @@ -5565,11 +5565,11 @@ msgstr "Σύνδεση με όνομα χρήστη και κωδικό" msgid "Sign up for a new account" msgstr "Εγγραφή για ένα νέο λογαριασμό" -#: lib/mail.php:172 +#: lib/mail.php:173 msgid "Email address confirmation" msgstr "Επιβεβαίωση διεύθυνσης email" -#: lib/mail.php:174 +#: lib/mail.php:175 #, php-format msgid "" "Hey, %s.\n" @@ -5586,12 +5586,12 @@ msgid "" "%s\n" msgstr "" -#: lib/mail.php:236 +#: lib/mail.php:240 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "" -#: lib/mail.php:241 +#: lib/mail.php:245 #, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -5606,19 +5606,19 @@ msgid "" "Change your email address or notification options at %8$s\n" msgstr "" -#: lib/mail.php:258 +#: lib/mail.php:262 #, fuzzy, php-format msgid "Bio: %s" msgstr "" "Βιογραφικό: %s\n" "\n" -#: lib/mail.php:286 +#: lib/mail.php:290 #, php-format msgid "New email address for posting to %s" msgstr "" -#: lib/mail.php:289 +#: lib/mail.php:293 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -5631,21 +5631,21 @@ msgid "" "%4$s" msgstr "" -#: lib/mail.php:413 +#: lib/mail.php:417 #, php-format msgid "%s status" msgstr "Κατάσταση του/της %s" -#: lib/mail.php:439 +#: lib/mail.php:443 msgid "SMS confirmation" msgstr "" -#: lib/mail.php:463 +#: lib/mail.php:467 #, php-format msgid "You've been nudged by %s" msgstr "" -#: lib/mail.php:467 +#: lib/mail.php:471 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -5661,12 +5661,12 @@ msgid "" "%4$s\n" msgstr "" -#: lib/mail.php:510 +#: lib/mail.php:517 #, php-format msgid "New private message from %s" msgstr "" -#: lib/mail.php:514 +#: lib/mail.php:521 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -5685,12 +5685,12 @@ msgid "" "%5$s\n" msgstr "" -#: lib/mail.php:559 +#: lib/mail.php:568 #, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "" -#: lib/mail.php:561 +#: lib/mail.php:570 #, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -5711,12 +5711,12 @@ msgid "" "%6$s\n" msgstr "" -#: lib/mail.php:624 +#: lib/mail.php:635 #, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "" -#: lib/mail.php:626 +#: lib/mail.php:637 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" diff --git a/locale/en_GB/LC_MESSAGES/statusnet.po b/locale/en_GB/LC_MESSAGES/statusnet.po index d5bb03f3e2..8d846c4e21 100644 --- a/locale/en_GB/LC_MESSAGES/statusnet.po +++ b/locale/en_GB/LC_MESSAGES/statusnet.po @@ -2,6 +2,7 @@ # # Author@translatewiki.net: Bruce89 # Author@translatewiki.net: CiaranG +# Author@translatewiki.net: Reedy # -- # This file is distributed under the same license as the StatusNet package. # @@ -9,12 +10,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-04 18:55+0000\n" -"PO-Revision-Date: 2010-03-05 22:35:23+0000\n" +"POT-Creation-Date: 2010-03-06 23:49+0000\n" +"PO-Revision-Date: 2010-03-06 23:49:40+0000\n" "Language-Team: British English\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63298); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63350); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: en-gb\n" "X-Message-Group: out-statusnet\n" @@ -103,7 +104,7 @@ msgstr "No such page" #: actions/otp.php:76 actions/remotesubscribe.php:145 #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 -#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:40 #: actions/xrds.php:71 lib/command.php:163 lib/command.php:302 #: lib/command.php:355 lib/command.php:401 lib/command.php:462 #: lib/command.php:518 lib/galleryaction.php:59 lib/mailbox.php:82 @@ -697,7 +698,7 @@ msgstr "Repeats of %s" msgid "Notices tagged with %s" msgstr "Notices tagged with %s" -#: actions/apitimelinetag.php:104 actions/tagrss.php:64 +#: actions/apitimelinetag.php:104 actions/tagrss.php:65 #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Updates tagged with %1$s on %2$s!" @@ -737,7 +738,7 @@ msgstr "You can upload your personal avatar. The maximum file size is %s." #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 #: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -#: actions/userrss.php:103 +#: actions/userrss.php:106 msgid "User without matching profile" msgstr "User without matching profile" @@ -1734,7 +1735,7 @@ msgstr "Make admin" msgid "Make this user an admin" msgstr "Make this user an admin" -#: actions/grouprss.php:138 actions/userrss.php:90 +#: actions/grouprss.php:138 actions/userrss.php:93 #: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 #, php-format msgid "%s timeline" @@ -4366,6 +4367,8 @@ msgid "" "Customize the way your profile looks with a background image and a colour " "palette of your choice." msgstr "" +"Customise the way your profile looks with a background image and a colour " +"palette of your choice." #: actions/userdesignsettings.php:282 msgid "Enjoy your hotdog!" @@ -4390,7 +4393,7 @@ msgstr "%s is not a member of any group." msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" -#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: actions/userrss.php:95 lib/atomgroupnoticefeed.php:66 #: lib/atomusernoticefeed.php:72 #, php-format msgid "Updates from %1$s on %2$s!" @@ -5162,12 +5165,12 @@ msgstr "%s left group %s" msgid "Fullname: %s" msgstr "Fullname: %s" -#: lib/command.php:312 lib/mail.php:254 +#: lib/command.php:312 lib/mail.php:258 #, php-format msgid "Location: %s" msgstr "Location: %s" -#: lib/command.php:315 lib/mail.php:256 +#: lib/command.php:315 lib/mail.php:260 #, php-format msgid "Homepage: %s" msgstr "Homepage: %s" @@ -5601,11 +5604,11 @@ msgstr "Login with a username and password" msgid "Sign up for a new account" msgstr "Sign up for a new account" -#: lib/mail.php:172 +#: lib/mail.php:173 msgid "Email address confirmation" msgstr "E-mail address confirmation" -#: lib/mail.php:174 +#: lib/mail.php:175 #, php-format msgid "" "Hey, %s.\n" @@ -5622,12 +5625,12 @@ msgid "" "%s\n" msgstr "" -#: lib/mail.php:236 +#: lib/mail.php:240 #, 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." -#: lib/mail.php:241 +#: lib/mail.php:245 #, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -5652,17 +5655,17 @@ msgstr "" "----\n" "Change your email address or notification options at %8$s\n" -#: lib/mail.php:258 +#: lib/mail.php:262 #, php-format msgid "Bio: %s" msgstr "Bio: %s" -#: lib/mail.php:286 +#: lib/mail.php:290 #, php-format msgid "New email address for posting to %s" msgstr "New e-mail address for posting to %s" -#: lib/mail.php:289 +#: lib/mail.php:293 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -5683,21 +5686,21 @@ msgstr "" "Faithfully yours,\n" "%4$s" -#: lib/mail.php:413 +#: lib/mail.php:417 #, php-format msgid "%s status" msgstr "%s status" -#: lib/mail.php:439 +#: lib/mail.php:443 msgid "SMS confirmation" msgstr "SMS confirmation" -#: lib/mail.php:463 +#: lib/mail.php:467 #, php-format msgid "You've been nudged by %s" msgstr "You've been nudged by %s" -#: lib/mail.php:467 +#: lib/mail.php:471 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -5713,12 +5716,12 @@ msgid "" "%4$s\n" msgstr "" -#: lib/mail.php:510 +#: lib/mail.php:517 #, php-format msgid "New private message from %s" msgstr "New private message from %s" -#: lib/mail.php:514 +#: lib/mail.php:521 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -5737,12 +5740,12 @@ msgid "" "%5$s\n" msgstr "" -#: lib/mail.php:559 +#: lib/mail.php:568 #, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "%s (@%s) added your notice as a favorite" -#: lib/mail.php:561 +#: lib/mail.php:570 #, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -5763,12 +5766,12 @@ msgid "" "%6$s\n" msgstr "" -#: lib/mail.php:624 +#: lib/mail.php:635 #, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "" -#: lib/mail.php:626 +#: lib/mail.php:637 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" diff --git a/locale/es/LC_MESSAGES/statusnet.po b/locale/es/LC_MESSAGES/statusnet.po index 04e49bc11e..cdc0184e43 100644 --- a/locale/es/LC_MESSAGES/statusnet.po +++ b/locale/es/LC_MESSAGES/statusnet.po @@ -13,12 +13,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-04 18:55+0000\n" -"PO-Revision-Date: 2010-03-05 22:35:26+0000\n" +"POT-Creation-Date: 2010-03-06 23:49+0000\n" +"PO-Revision-Date: 2010-03-06 23:49:43+0000\n" "Language-Team: Spanish\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63298); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63350); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: out-statusnet\n" @@ -107,7 +107,7 @@ msgstr "No existe tal página" #: actions/otp.php:76 actions/remotesubscribe.php:145 #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 -#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:40 #: actions/xrds.php:71 lib/command.php:163 lib/command.php:302 #: lib/command.php:355 lib/command.php:401 lib/command.php:462 #: lib/command.php:518 lib/galleryaction.php:59 lib/mailbox.php:82 @@ -707,7 +707,7 @@ msgstr "Repeticiones de %s" msgid "Notices tagged with %s" msgstr "Avisos marcados con %s" -#: actions/apitimelinetag.php:104 actions/tagrss.php:64 +#: actions/apitimelinetag.php:104 actions/tagrss.php:65 #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Actualizaciones etiquetadas con %1$s en %2$s!" @@ -747,7 +747,7 @@ msgstr "Puedes subir tu imagen personal. El tamaño máximo de archivo es %s." #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 #: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -#: actions/userrss.php:103 +#: actions/userrss.php:106 msgid "User without matching profile" msgstr "Usuario sin perfil equivalente" @@ -1753,7 +1753,7 @@ msgstr "Convertir en administrador" msgid "Make this user an admin" msgstr "Convertir a este usuario en administrador" -#: actions/grouprss.php:138 actions/userrss.php:90 +#: actions/grouprss.php:138 actions/userrss.php:93 #: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 #, php-format msgid "%s timeline" @@ -4443,7 +4443,7 @@ msgstr "No eres miembro de ese grupo" msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" -#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: actions/userrss.php:95 lib/atomgroupnoticefeed.php:66 #: lib/atomusernoticefeed.php:72 #, php-format msgid "Updates from %1$s on %2$s!" @@ -5230,12 +5230,12 @@ msgstr "%s dejó grupo %s" msgid "Fullname: %s" msgstr "Nombre completo: %s" -#: lib/command.php:312 lib/mail.php:254 +#: lib/command.php:312 lib/mail.php:258 #, php-format msgid "Location: %s" msgstr "Lugar: %s" -#: lib/command.php:315 lib/mail.php:256 +#: lib/command.php:315 lib/mail.php:260 #, php-format msgid "Homepage: %s" msgstr "Página de inicio: %s" @@ -5677,11 +5677,11 @@ msgstr "Ingresar con un nombre de usuario y contraseña." msgid "Sign up for a new account" msgstr "Registrarse para una nueva cuenta" -#: lib/mail.php:172 +#: lib/mail.php:173 msgid "Email address confirmation" msgstr "Confirmación de correo electrónico" -#: lib/mail.php:174 +#: lib/mail.php:175 #, php-format msgid "" "Hey, %s.\n" @@ -5698,12 +5698,12 @@ msgid "" "%s\n" msgstr "" -#: lib/mail.php:236 +#: lib/mail.php:240 #, 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/mail.php:241 +#: lib/mail.php:245 #, fuzzy, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -5724,19 +5724,19 @@ msgstr "" "Atentamente,\n" "%4$s.\n" -#: lib/mail.php:258 +#: lib/mail.php:262 #, fuzzy, php-format msgid "Bio: %s" msgstr "" "Bio: %s\n" "\n" -#: lib/mail.php:286 +#: lib/mail.php:290 #, php-format msgid "New email address for posting to %s" msgstr "Nueva dirección de correo para postear a %s" -#: lib/mail.php:289 +#: lib/mail.php:293 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -5757,21 +5757,21 @@ msgstr "" "Attentamente, \n" "%4$s" -#: lib/mail.php:413 +#: lib/mail.php:417 #, php-format msgid "%s status" msgstr "estado de %s" -#: lib/mail.php:439 +#: lib/mail.php:443 msgid "SMS confirmation" msgstr "SMS confirmación" -#: lib/mail.php:463 +#: lib/mail.php:467 #, php-format msgid "You've been nudged by %s" msgstr "%s te mandó un zumbido " -#: lib/mail.php:467 +#: lib/mail.php:471 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -5787,12 +5787,12 @@ msgid "" "%4$s\n" msgstr "" -#: lib/mail.php:510 +#: lib/mail.php:517 #, php-format msgid "New private message from %s" msgstr "Nuevo mensaje privado de %s" -#: lib/mail.php:514 +#: lib/mail.php:521 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -5811,12 +5811,12 @@ msgid "" "%5$s\n" msgstr "" -#: lib/mail.php:559 +#: lib/mail.php:568 #, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "%s (@%s) agregó tu aviso como un favorito" -#: lib/mail.php:561 +#: lib/mail.php:570 #, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -5837,12 +5837,12 @@ msgid "" "%6$s\n" msgstr "" -#: lib/mail.php:624 +#: lib/mail.php:635 #, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "" -#: lib/mail.php:626 +#: lib/mail.php:637 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" diff --git a/locale/fa/LC_MESSAGES/statusnet.po b/locale/fa/LC_MESSAGES/statusnet.po index 8e2a72d045..955efd243b 100644 --- a/locale/fa/LC_MESSAGES/statusnet.po +++ b/locale/fa/LC_MESSAGES/statusnet.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-04 18:55+0000\n" -"PO-Revision-Date: 2010-03-05 22:35:32+0000\n" +"POT-Creation-Date: 2010-03-06 23:49+0000\n" +"PO-Revision-Date: 2010-03-06 23:49:48+0000\n" "Last-Translator: Ahmad Sufi Mahmudi\n" "Language-Team: Persian\n" "MIME-Version: 1.0\n" @@ -20,7 +20,7 @@ msgstr "" "X-Language-Code: fa\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: MediaWiki 1.17alpha (r63298); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63350); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" #. TRANS: Page title @@ -109,7 +109,7 @@ msgstr "چنین صفحه‌ای وجود ندارد" #: actions/otp.php:76 actions/remotesubscribe.php:145 #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 -#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:40 #: actions/xrds.php:71 lib/command.php:163 lib/command.php:302 #: lib/command.php:355 lib/command.php:401 lib/command.php:462 #: lib/command.php:518 lib/galleryaction.php:59 lib/mailbox.php:82 @@ -699,7 +699,7 @@ msgstr "تکرار %s" msgid "Notices tagged with %s" msgstr "پیام‌هایی که با %s نشانه گزاری شده اند." -#: actions/apitimelinetag.php:104 actions/tagrss.php:64 +#: actions/apitimelinetag.php:104 actions/tagrss.php:65 #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "پیام‌های نشانه گزاری شده با %1$s در %2$s" @@ -740,7 +740,7 @@ msgstr "" #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 #: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -#: actions/userrss.php:103 +#: actions/userrss.php:106 msgid "User without matching profile" msgstr "کاربر بدون مشخصات" @@ -1750,7 +1750,7 @@ msgstr "مدیر شود" msgid "Make this user an admin" msgstr "این کاربر یک مدیر شود" -#: actions/grouprss.php:138 actions/userrss.php:90 +#: actions/grouprss.php:138 actions/userrss.php:93 #: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 #, php-format msgid "%s timeline" @@ -4352,7 +4352,7 @@ msgstr "" msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" -#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: actions/userrss.php:95 lib/atomgroupnoticefeed.php:66 #: lib/atomusernoticefeed.php:72 #, php-format msgid "Updates from %1$s on %2$s!" @@ -5126,12 +5126,12 @@ msgstr "%s گروه %s را ترک کرد." msgid "Fullname: %s" msgstr "نام کامل : %s" -#: lib/command.php:312 lib/mail.php:254 +#: lib/command.php:312 lib/mail.php:258 #, php-format msgid "Location: %s" msgstr "موقعیت : %s" -#: lib/command.php:315 lib/mail.php:256 +#: lib/command.php:315 lib/mail.php:260 #, php-format msgid "Homepage: %s" msgstr "صفحه خانگی : %s" @@ -5567,11 +5567,11 @@ msgstr "وارد شدن با یک نام کاربری و کلمه ی عبور" msgid "Sign up for a new account" msgstr "عضویت برای حساب کاربری جدید" -#: lib/mail.php:172 +#: lib/mail.php:173 msgid "Email address confirmation" msgstr "تاییدیه ی آدرس ایمیل" -#: lib/mail.php:174 +#: lib/mail.php:175 #, php-format msgid "" "Hey, %s.\n" @@ -5588,12 +5588,12 @@ msgid "" "%s\n" msgstr "" -#: lib/mail.php:236 +#: lib/mail.php:240 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%2$s از حالا به خبر های شما گوش میده %1$s" -#: lib/mail.php:241 +#: lib/mail.php:245 #, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -5608,17 +5608,17 @@ msgid "" "Change your email address or notification options at %8$s\n" msgstr "" -#: lib/mail.php:258 +#: lib/mail.php:262 #, fuzzy, php-format msgid "Bio: %s" msgstr "موقعیت : %s" -#: lib/mail.php:286 +#: lib/mail.php:290 #, php-format msgid "New email address for posting to %s" msgstr "%s ادرس ایمیل جدید برای" -#: lib/mail.php:289 +#: lib/mail.php:293 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -5637,21 +5637,21 @@ msgstr "" ", ازروی وفاداری خود شما \n" "%4$s" -#: lib/mail.php:413 +#: lib/mail.php:417 #, php-format msgid "%s status" msgstr "وضعیت %s" -#: lib/mail.php:439 +#: lib/mail.php:443 msgid "SMS confirmation" msgstr "تایید پیامک" -#: lib/mail.php:463 +#: lib/mail.php:467 #, php-format msgid "You've been nudged by %s" msgstr "" -#: lib/mail.php:467 +#: lib/mail.php:471 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -5667,12 +5667,12 @@ msgid "" "%4$s\n" msgstr "" -#: lib/mail.php:510 +#: lib/mail.php:517 #, php-format msgid "New private message from %s" msgstr "" -#: lib/mail.php:514 +#: lib/mail.php:521 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -5691,12 +5691,12 @@ msgid "" "%5$s\n" msgstr "" -#: lib/mail.php:559 +#: lib/mail.php:568 #, php-format msgid "%s (@%s) added your notice as a favorite" msgstr " خبر شما را به علایق خود اضافه کرد %s (@%s)" -#: lib/mail.php:561 +#: lib/mail.php:570 #, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -5717,12 +5717,12 @@ msgid "" "%6$s\n" msgstr "" -#: lib/mail.php:624 +#: lib/mail.php:635 #, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "به توجه شما یک خبر فرستاده شده %s (@%s)" -#: lib/mail.php:626 +#: lib/mail.php:637 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" diff --git a/locale/fi/LC_MESSAGES/statusnet.po b/locale/fi/LC_MESSAGES/statusnet.po index dc707ff1b5..68a63537b0 100644 --- a/locale/fi/LC_MESSAGES/statusnet.po +++ b/locale/fi/LC_MESSAGES/statusnet.po @@ -10,12 +10,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-04 18:55+0000\n" -"PO-Revision-Date: 2010-03-05 22:35:29+0000\n" +"POT-Creation-Date: 2010-03-06 23:49+0000\n" +"PO-Revision-Date: 2010-03-06 23:49:46+0000\n" "Language-Team: Finnish\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63298); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63350); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: out-statusnet\n" @@ -110,7 +110,7 @@ msgstr "Sivua ei ole." #: actions/otp.php:76 actions/remotesubscribe.php:145 #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 -#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:40 #: actions/xrds.php:71 lib/command.php:163 lib/command.php:302 #: lib/command.php:355 lib/command.php:401 lib/command.php:462 #: lib/command.php:518 lib/galleryaction.php:59 lib/mailbox.php:82 @@ -717,7 +717,7 @@ msgstr "Vastaukset käyttäjälle %s" msgid "Notices tagged with %s" msgstr "Päivitykset joilla on tagi %s" -#: actions/apitimelinetag.php:104 actions/tagrss.php:64 +#: actions/apitimelinetag.php:104 actions/tagrss.php:65 #, fuzzy, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Käyttäjän %1$s päivitykset palvelussa %2$s!" @@ -757,7 +757,7 @@ msgstr "Voit ladata oman profiilikuvasi. Maksimikoko on %s." #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 #: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -#: actions/userrss.php:103 +#: actions/userrss.php:106 msgid "User without matching profile" msgstr "Käyttäjälle ei löydy profiilia" @@ -1782,7 +1782,7 @@ msgstr "Tee ylläpitäjäksi" msgid "Make this user an admin" msgstr "Tee tästä käyttäjästä ylläpitäjä" -#: actions/grouprss.php:138 actions/userrss.php:90 +#: actions/grouprss.php:138 actions/userrss.php:93 #: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 #, php-format msgid "%s timeline" @@ -4520,7 +4520,7 @@ msgstr "Sinä et kuulu tähän ryhmään." msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" -#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: actions/userrss.php:95 lib/atomgroupnoticefeed.php:66 #: lib/atomusernoticefeed.php:72 #, php-format msgid "Updates from %1$s on %2$s!" @@ -5318,12 +5318,12 @@ msgstr "%s erosi ryhmästä %s" msgid "Fullname: %s" msgstr "Koko nimi: %s" -#: lib/command.php:312 lib/mail.php:254 +#: lib/command.php:312 lib/mail.php:258 #, php-format msgid "Location: %s" msgstr "Kotipaikka: %s" -#: lib/command.php:315 lib/mail.php:256 +#: lib/command.php:315 lib/mail.php:260 #, php-format msgid "Homepage: %s" msgstr "Kotisivu: %s" @@ -5772,11 +5772,11 @@ msgstr "Kirjaudu sisään käyttäjätunnuksella ja salasanalla" msgid "Sign up for a new account" msgstr "Luo uusi käyttäjätili" -#: lib/mail.php:172 +#: lib/mail.php:173 msgid "Email address confirmation" msgstr "Sähköpostiosoitteen vahvistus" -#: lib/mail.php:174 +#: lib/mail.php:175 #, php-format msgid "" "Hey, %s.\n" @@ -5793,12 +5793,12 @@ msgid "" "%s\n" msgstr "" -#: lib/mail.php:236 +#: lib/mail.php:240 #, 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:241 +#: lib/mail.php:245 #, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -5823,19 +5823,19 @@ msgstr "" "----\n" "Voit vaihtaa sähköpostiosoitetta tai ilmoitusasetuksiasi %8$s\n" -#: lib/mail.php:258 +#: lib/mail.php:262 #, fuzzy, php-format msgid "Bio: %s" msgstr "" "Tietoja: %s\n" "\n" -#: lib/mail.php:286 +#: lib/mail.php:290 #, php-format msgid "New email address for posting to %s" msgstr "Uusi sähköpostiosoite päivityksien lähettämiseen palveluun %s" -#: lib/mail.php:289 +#: lib/mail.php:293 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -5856,21 +5856,21 @@ msgstr "" "Terveisin,\n" "%4$s" -#: lib/mail.php:413 +#: lib/mail.php:417 #, php-format msgid "%s status" msgstr "%s päivitys" -#: lib/mail.php:439 +#: lib/mail.php:443 msgid "SMS confirmation" msgstr "SMS vahvistus" -#: lib/mail.php:463 +#: lib/mail.php:467 #, php-format msgid "You've been nudged by %s" msgstr "%s tönäisi sinua" -#: lib/mail.php:467 +#: lib/mail.php:471 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -5886,12 +5886,12 @@ msgid "" "%4$s\n" msgstr "" -#: lib/mail.php:510 +#: lib/mail.php:517 #, php-format msgid "New private message from %s" msgstr "Uusi yksityisviesti käyttäjältä %s" -#: lib/mail.php:514 +#: lib/mail.php:521 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -5910,12 +5910,12 @@ msgid "" "%5$s\n" msgstr "" -#: lib/mail.php:559 +#: lib/mail.php:568 #, fuzzy, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "%s lisäsi päivityksesi suosikkeihinsa" -#: lib/mail.php:561 +#: lib/mail.php:570 #, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -5936,12 +5936,12 @@ msgid "" "%6$s\n" msgstr "" -#: lib/mail.php:624 +#: lib/mail.php:635 #, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "" -#: lib/mail.php:626 +#: lib/mail.php:637 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" diff --git a/locale/fr/LC_MESSAGES/statusnet.po b/locale/fr/LC_MESSAGES/statusnet.po index 1965123eaa..4c9429e216 100644 --- a/locale/fr/LC_MESSAGES/statusnet.po +++ b/locale/fr/LC_MESSAGES/statusnet.po @@ -14,12 +14,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-04 18:55+0000\n" -"PO-Revision-Date: 2010-03-05 22:35:34+0000\n" +"POT-Creation-Date: 2010-03-06 23:49+0000\n" +"PO-Revision-Date: 2010-03-06 23:49:51+0000\n" "Language-Team: French\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63298); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63350); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: out-statusnet\n" @@ -106,7 +106,7 @@ msgstr "Page non trouvée" #: actions/otp.php:76 actions/remotesubscribe.php:145 #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 -#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:40 #: actions/xrds.php:71 lib/command.php:163 lib/command.php:302 #: lib/command.php:355 lib/command.php:401 lib/command.php:462 #: lib/command.php:518 lib/galleryaction.php:59 lib/mailbox.php:82 @@ -713,7 +713,7 @@ msgstr "Reprises de %s" msgid "Notices tagged with %s" msgstr "Avis marqués avec %s" -#: actions/apitimelinetag.php:104 actions/tagrss.php:64 +#: actions/apitimelinetag.php:104 actions/tagrss.php:65 #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Mises à jour marquées avec %1$s dans %2$s !" @@ -755,7 +755,7 @@ msgstr "" #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 #: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -#: actions/userrss.php:103 +#: actions/userrss.php:106 msgid "User without matching profile" msgstr "Utilisateur sans profil correspondant" @@ -1754,7 +1754,7 @@ msgstr "Faire un administrateur" msgid "Make this user an admin" msgstr "Faire de cet utilisateur un administrateur" -#: actions/grouprss.php:138 actions/userrss.php:90 +#: actions/grouprss.php:138 actions/userrss.php:93 #: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 #, php-format msgid "%s timeline" @@ -4503,7 +4503,7 @@ msgstr "" "Essayez de [rechercher un groupe](%%action.groupsearch%%) et de vous y " "inscrire." -#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: actions/userrss.php:95 lib/atomgroupnoticefeed.php:66 #: lib/atomusernoticefeed.php:72 #, php-format msgid "Updates from %1$s on %2$s!" @@ -5270,12 +5270,12 @@ msgstr "%s a quitté le groupe %s" msgid "Fullname: %s" msgstr "Nom complet : %s" -#: lib/command.php:312 lib/mail.php:254 +#: lib/command.php:312 lib/mail.php:258 #, php-format msgid "Location: %s" msgstr "Emplacement : %s" -#: lib/command.php:315 lib/mail.php:256 +#: lib/command.php:315 lib/mail.php:260 #, php-format msgid "Homepage: %s" msgstr "Site Web : %s" @@ -5760,11 +5760,11 @@ msgstr "Ouvrez une session avec un identifiant et un mot de passe" msgid "Sign up for a new account" msgstr "Créer un nouveau compte" -#: lib/mail.php:172 +#: lib/mail.php:173 msgid "Email address confirmation" msgstr "Confirmation de l’adresse courriel" -#: lib/mail.php:174 +#: lib/mail.php:175 #, php-format msgid "" "Hey, %s.\n" @@ -5794,12 +5794,12 @@ msgstr "" "Merci de votre attention,\n" "%s\n" -#: lib/mail.php:236 +#: lib/mail.php:240 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s suit maintenant vos avis sur %2$s." -#: lib/mail.php:241 +#: lib/mail.php:245 #, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -5824,17 +5824,17 @@ msgstr "" "----\n" "Changez votre adresse de courriel ou vos options de notification sur %8$s\n" -#: lib/mail.php:258 +#: lib/mail.php:262 #, php-format msgid "Bio: %s" msgstr "Bio : %s" -#: lib/mail.php:286 +#: lib/mail.php:290 #, php-format msgid "New email address for posting to %s" msgstr "Nouvelle adresse courriel pour poster dans %s" -#: lib/mail.php:289 +#: lib/mail.php:293 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -5855,21 +5855,21 @@ msgstr "" "Cordialement,\n" "%4$s" -#: lib/mail.php:413 +#: lib/mail.php:417 #, php-format msgid "%s status" msgstr "Statut de %s" -#: lib/mail.php:439 +#: lib/mail.php:443 msgid "SMS confirmation" msgstr "Confirmation SMS" -#: lib/mail.php:463 +#: lib/mail.php:467 #, php-format msgid "You've been nudged by %s" msgstr "Vous avez reçu un clin d’œil de %s" -#: lib/mail.php:467 +#: lib/mail.php:471 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -5896,12 +5896,12 @@ msgstr "" "Bien à vous,\n" "%4$s\n" -#: lib/mail.php:510 +#: lib/mail.php:517 #, php-format msgid "New private message from %s" msgstr "Nouveau message personnel de %s" -#: lib/mail.php:514 +#: lib/mail.php:521 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -5934,12 +5934,12 @@ msgstr "" "Bien à vous,\n" "%5$s\n" -#: lib/mail.php:559 +#: lib/mail.php:568 #, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "%s (@%s) a ajouté un de vos avis à ses favoris" -#: lib/mail.php:561 +#: lib/mail.php:570 #, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -5977,12 +5977,12 @@ msgstr "" "Cordialement,\n" "%6$s\n" -#: lib/mail.php:624 +#: lib/mail.php:635 #, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "%s (@%s) vous a envoyé un avis" -#: lib/mail.php:626 +#: lib/mail.php:637 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" diff --git a/locale/ga/LC_MESSAGES/statusnet.po b/locale/ga/LC_MESSAGES/statusnet.po index b88dc4e2c1..dea9dd11c1 100644 --- a/locale/ga/LC_MESSAGES/statusnet.po +++ b/locale/ga/LC_MESSAGES/statusnet.po @@ -8,12 +8,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-04 18:55+0000\n" -"PO-Revision-Date: 2010-03-05 22:35:38+0000\n" +"POT-Creation-Date: 2010-03-06 23:49+0000\n" +"PO-Revision-Date: 2010-03-06 23:49:54+0000\n" "Language-Team: Irish\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63298); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63350); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ga\n" "X-Message-Group: out-statusnet\n" @@ -110,7 +110,7 @@ msgstr "Non existe a etiqueta." #: actions/otp.php:76 actions/remotesubscribe.php:145 #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 -#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:40 #: actions/xrds.php:71 lib/command.php:163 lib/command.php:302 #: lib/command.php:355 lib/command.php:401 lib/command.php:462 #: lib/command.php:518 lib/galleryaction.php:59 lib/mailbox.php:82 @@ -715,7 +715,7 @@ msgstr "Replies to %s" msgid "Notices tagged with %s" msgstr "Chíos tagueados con %s" -#: actions/apitimelinetag.php:104 actions/tagrss.php:64 +#: actions/apitimelinetag.php:104 actions/tagrss.php:65 #, fuzzy, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Actualizacións dende %1$s en %2$s!" @@ -756,7 +756,7 @@ msgstr "Podes actualizar a túa información do perfil persoal aquí" #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 #: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -#: actions/userrss.php:103 +#: actions/userrss.php:106 msgid "User without matching profile" msgstr "Usuario sen un perfil que coincida." @@ -1816,7 +1816,7 @@ msgstr "" msgid "Make this user an admin" msgstr "" -#: actions/grouprss.php:138 actions/userrss.php:90 +#: actions/grouprss.php:138 actions/userrss.php:93 #: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 #, php-format msgid "%s timeline" @@ -4575,7 +4575,7 @@ msgstr "%1s non é unha orixe fiable." msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" -#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: actions/userrss.php:95 lib/atomgroupnoticefeed.php:66 #: lib/atomusernoticefeed.php:72 #, php-format msgid "Updates from %1$s on %2$s!" @@ -5383,12 +5383,12 @@ msgstr "%s / Favoritos dende %s" msgid "Fullname: %s" msgstr "Nome completo: %s" -#: lib/command.php:312 lib/mail.php:254 +#: lib/command.php:312 lib/mail.php:258 #, php-format msgid "Location: %s" msgstr "Ubicación: %s" -#: lib/command.php:315 lib/mail.php:256 +#: lib/command.php:315 lib/mail.php:260 #, php-format msgid "Homepage: %s" msgstr "Páxina persoal: %s" @@ -5881,11 +5881,11 @@ msgstr "Accede co teu nome de usuario e contrasinal." msgid "Sign up for a new account" msgstr "Crear nova conta" -#: lib/mail.php:172 +#: lib/mail.php:173 msgid "Email address confirmation" msgstr "Confirmar correo electrónico" -#: lib/mail.php:174 +#: lib/mail.php:175 #, php-format msgid "" "Hey, %s.\n" @@ -5914,12 +5914,12 @@ msgstr "" "Grazas polo teu tempo, \n" "%s\n" -#: lib/mail.php:236 +#: lib/mail.php:240 #, 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:241 +#: lib/mail.php:245 #, fuzzy, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -5940,17 +5940,17 @@ msgstr "" "Atentamente todo seu,\n" "%4$s.\n" -#: lib/mail.php:258 +#: lib/mail.php:262 #, fuzzy, php-format msgid "Bio: %s" msgstr "Ubicación: %s" -#: lib/mail.php:286 +#: lib/mail.php:290 #, php-format msgid "New email address for posting to %s" msgstr "Nova dirección de email para posterar en %s" -#: lib/mail.php:289 +#: lib/mail.php:293 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -5971,21 +5971,21 @@ msgstr "" "Sempre teu...,\n" "%4$s" -#: lib/mail.php:413 +#: lib/mail.php:417 #, php-format msgid "%s status" msgstr "Estado de %s" -#: lib/mail.php:439 +#: lib/mail.php:443 msgid "SMS confirmation" msgstr "Confirmación de SMS" -#: lib/mail.php:463 +#: lib/mail.php:467 #, php-format msgid "You've been nudged by %s" msgstr "%s douche un toque" -#: lib/mail.php:467 +#: lib/mail.php:471 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -6011,12 +6011,12 @@ msgstr "" "With kind regards,\n" "%4$s\n" -#: lib/mail.php:510 +#: lib/mail.php:517 #, php-format msgid "New private message from %s" msgstr "%s enviouche unha nova mensaxe privada" -#: lib/mail.php:514 +#: lib/mail.php:521 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -6049,12 +6049,12 @@ msgstr "" "With kind regards,\n" "%5$s\n" -#: lib/mail.php:559 +#: lib/mail.php:568 #, fuzzy, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "%s gustoulle o teu chío" -#: lib/mail.php:561 +#: lib/mail.php:570 #, fuzzy, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -6087,12 +6087,12 @@ msgstr "" "Fielmente teu,\n" "%5$s\n" -#: lib/mail.php:624 +#: lib/mail.php:635 #, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "" -#: lib/mail.php:626 +#: lib/mail.php:637 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" diff --git a/locale/he/LC_MESSAGES/statusnet.po b/locale/he/LC_MESSAGES/statusnet.po index 0856fd8fe6..49f229a96a 100644 --- a/locale/he/LC_MESSAGES/statusnet.po +++ b/locale/he/LC_MESSAGES/statusnet.po @@ -7,12 +7,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-04 18:55+0000\n" -"PO-Revision-Date: 2010-03-05 22:35:40+0000\n" +"POT-Creation-Date: 2010-03-06 23:49+0000\n" +"PO-Revision-Date: 2010-03-06 23:49:57+0000\n" "Language-Team: Hebrew\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63298); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63350); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: out-statusnet\n" @@ -107,7 +107,7 @@ msgstr "אין הודעה כזו." #: actions/otp.php:76 actions/remotesubscribe.php:145 #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 -#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:40 #: actions/xrds.php:71 lib/command.php:163 lib/command.php:302 #: lib/command.php:355 lib/command.php:401 lib/command.php:462 #: lib/command.php:518 lib/galleryaction.php:59 lib/mailbox.php:82 @@ -706,7 +706,7 @@ msgstr "תגובת עבור %s" msgid "Notices tagged with %s" msgstr "" -#: actions/apitimelinetag.php:104 actions/tagrss.php:64 +#: actions/apitimelinetag.php:104 actions/tagrss.php:65 #, fuzzy, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "מיקרובלוג מאת %s" @@ -748,7 +748,7 @@ msgstr "" #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 #: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -#: actions/userrss.php:103 +#: actions/userrss.php:106 msgid "User without matching profile" msgstr "" @@ -1787,7 +1787,7 @@ msgstr "" msgid "Make this user an admin" msgstr "" -#: actions/grouprss.php:138 actions/userrss.php:90 +#: actions/grouprss.php:138 actions/userrss.php:93 #: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 #, php-format msgid "%s timeline" @@ -4424,7 +4424,7 @@ msgstr "לא שלחנו אלינו את הפרופיל הזה" msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" -#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: actions/userrss.php:95 lib/atomgroupnoticefeed.php:66 #: lib/atomusernoticefeed.php:72 #, php-format msgid "Updates from %1$s on %2$s!" @@ -5216,12 +5216,12 @@ msgstr "הסטטוס של %1$s ב-%2$s " msgid "Fullname: %s" msgstr "שם מלא" -#: lib/command.php:312 lib/mail.php:254 +#: lib/command.php:312 lib/mail.php:258 #, php-format msgid "Location: %s" msgstr "" -#: lib/command.php:315 lib/mail.php:256 +#: lib/command.php:315 lib/mail.php:260 #, php-format msgid "Homepage: %s" msgstr "" @@ -5676,11 +5676,11 @@ msgstr "שם המשתמש או הסיסמה לא חוקיים" msgid "Sign up for a new account" msgstr "צור חשבון חדש" -#: lib/mail.php:172 +#: lib/mail.php:173 msgid "Email address confirmation" msgstr "" -#: lib/mail.php:174 +#: lib/mail.php:175 #, php-format msgid "" "Hey, %s.\n" @@ -5697,12 +5697,12 @@ msgid "" "%s\n" msgstr "" -#: lib/mail.php:236 +#: lib/mail.php:240 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s כעת מאזין להודעות שלך ב-%2$s" -#: lib/mail.php:241 +#: lib/mail.php:245 #, fuzzy, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -5722,17 +5722,17 @@ msgstr "" " שלך,\n" " %4$s.\n" -#: lib/mail.php:258 +#: lib/mail.php:262 #, fuzzy, php-format msgid "Bio: %s" msgstr "אודות: %s" -#: lib/mail.php:286 +#: lib/mail.php:290 #, php-format msgid "New email address for posting to %s" msgstr "" -#: lib/mail.php:289 +#: lib/mail.php:293 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -5745,21 +5745,21 @@ msgid "" "%4$s" msgstr "" -#: lib/mail.php:413 +#: lib/mail.php:417 #, php-format msgid "%s status" msgstr "" -#: lib/mail.php:439 +#: lib/mail.php:443 msgid "SMS confirmation" msgstr "" -#: lib/mail.php:463 +#: lib/mail.php:467 #, php-format msgid "You've been nudged by %s" msgstr "" -#: lib/mail.php:467 +#: lib/mail.php:471 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -5775,12 +5775,12 @@ msgid "" "%4$s\n" msgstr "" -#: lib/mail.php:510 +#: lib/mail.php:517 #, php-format msgid "New private message from %s" msgstr "" -#: lib/mail.php:514 +#: lib/mail.php:521 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -5799,12 +5799,12 @@ msgid "" "%5$s\n" msgstr "" -#: lib/mail.php:559 +#: lib/mail.php:568 #, fuzzy, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "%1$s כעת מאזין להודעות שלך ב-%2$s" -#: lib/mail.php:561 +#: lib/mail.php:570 #, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -5825,12 +5825,12 @@ msgid "" "%6$s\n" msgstr "" -#: lib/mail.php:624 +#: lib/mail.php:635 #, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "" -#: lib/mail.php:626 +#: lib/mail.php:637 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" diff --git a/locale/hsb/LC_MESSAGES/statusnet.po b/locale/hsb/LC_MESSAGES/statusnet.po index 8c129a3762..91d9c9c73c 100644 --- a/locale/hsb/LC_MESSAGES/statusnet.po +++ b/locale/hsb/LC_MESSAGES/statusnet.po @@ -9,12 +9,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-04 18:55+0000\n" -"PO-Revision-Date: 2010-03-05 22:35:43+0000\n" +"POT-Creation-Date: 2010-03-06 23:49+0000\n" +"PO-Revision-Date: 2010-03-06 23:50:00+0000\n" "Language-Team: Dutch\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63298); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63350); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: hsb\n" "X-Message-Group: out-statusnet\n" @@ -107,7 +107,7 @@ msgstr "Strona njeeksistuje" #: actions/otp.php:76 actions/remotesubscribe.php:145 #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 -#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:40 #: actions/xrds.php:71 lib/command.php:163 lib/command.php:302 #: lib/command.php:355 lib/command.php:401 lib/command.php:462 #: lib/command.php:518 lib/galleryaction.php:59 lib/mailbox.php:82 @@ -686,7 +686,7 @@ msgstr "" msgid "Notices tagged with %s" msgstr "" -#: actions/apitimelinetag.php:104 actions/tagrss.php:64 +#: actions/apitimelinetag.php:104 actions/tagrss.php:65 #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "" @@ -727,7 +727,7 @@ msgstr "" #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 #: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -#: actions/userrss.php:103 +#: actions/userrss.php:106 msgid "User without matching profile" msgstr "Wužiwar bjez hodźaceho so profila" @@ -1707,7 +1707,7 @@ msgstr "" msgid "Make this user an admin" msgstr "Tutoho wužiwarja k administratorej činić" -#: actions/grouprss.php:138 actions/userrss.php:90 +#: actions/grouprss.php:138 actions/userrss.php:93 #: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 #, php-format msgid "%s timeline" @@ -4232,7 +4232,7 @@ msgstr "" msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" -#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: actions/userrss.php:95 lib/atomgroupnoticefeed.php:66 #: lib/atomusernoticefeed.php:72 #, php-format msgid "Updates from %1$s on %2$s!" @@ -4992,12 +4992,12 @@ msgstr "%s je skupinu %s wopušćił" msgid "Fullname: %s" msgstr "Dospołne mjeno: %s" -#: lib/command.php:312 lib/mail.php:254 +#: lib/command.php:312 lib/mail.php:258 #, php-format msgid "Location: %s" msgstr "Městno: %s" -#: lib/command.php:315 lib/mail.php:256 +#: lib/command.php:315 lib/mail.php:260 #, php-format msgid "Homepage: %s" msgstr "" @@ -5436,11 +5436,11 @@ msgstr "Přizjewjenje z wužiwarskim mjenom a hesłom" msgid "Sign up for a new account" msgstr "Nowe konto registrować" -#: lib/mail.php:172 +#: lib/mail.php:173 msgid "Email address confirmation" msgstr "Wobkrućenje e-mejloweje adresy" -#: lib/mail.php:174 +#: lib/mail.php:175 #, php-format msgid "" "Hey, %s.\n" @@ -5457,12 +5457,12 @@ msgid "" "%s\n" msgstr "" -#: lib/mail.php:236 +#: lib/mail.php:240 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "" -#: lib/mail.php:241 +#: lib/mail.php:245 #, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -5477,17 +5477,17 @@ msgid "" "Change your email address or notification options at %8$s\n" msgstr "" -#: lib/mail.php:258 +#: lib/mail.php:262 #, php-format msgid "Bio: %s" msgstr "Biografija: %s" -#: lib/mail.php:286 +#: lib/mail.php:290 #, php-format msgid "New email address for posting to %s" msgstr "" -#: lib/mail.php:289 +#: lib/mail.php:293 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -5500,21 +5500,21 @@ msgid "" "%4$s" msgstr "" -#: lib/mail.php:413 +#: lib/mail.php:417 #, php-format msgid "%s status" msgstr "" -#: lib/mail.php:439 +#: lib/mail.php:443 msgid "SMS confirmation" msgstr "SMS-wobkrućenje" -#: lib/mail.php:463 +#: lib/mail.php:467 #, php-format msgid "You've been nudged by %s" msgstr "" -#: lib/mail.php:467 +#: lib/mail.php:471 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -5530,12 +5530,12 @@ msgid "" "%4$s\n" msgstr "" -#: lib/mail.php:510 +#: lib/mail.php:517 #, php-format msgid "New private message from %s" msgstr "Nowa priwatna powěsć wot %s" -#: lib/mail.php:514 +#: lib/mail.php:521 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -5554,12 +5554,12 @@ msgid "" "%5$s\n" msgstr "" -#: lib/mail.php:559 +#: lib/mail.php:568 #, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "%s (@%s) je twoju zdźělenku jako faworit přidał" -#: lib/mail.php:561 +#: lib/mail.php:570 #, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -5580,12 +5580,12 @@ msgid "" "%6$s\n" msgstr "" -#: lib/mail.php:624 +#: lib/mail.php:635 #, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "" -#: lib/mail.php:626 +#: lib/mail.php:637 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" diff --git a/locale/ia/LC_MESSAGES/statusnet.po b/locale/ia/LC_MESSAGES/statusnet.po index 4116b91d57..7a96686ed2 100644 --- a/locale/ia/LC_MESSAGES/statusnet.po +++ b/locale/ia/LC_MESSAGES/statusnet.po @@ -8,12 +8,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-04 18:55+0000\n" -"PO-Revision-Date: 2010-03-05 22:35:46+0000\n" +"POT-Creation-Date: 2010-03-06 23:49+0000\n" +"PO-Revision-Date: 2010-03-06 23:50:08+0000\n" "Language-Team: Interlingua\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63298); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63350); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: out-statusnet\n" @@ -102,7 +102,7 @@ msgstr "Pagina non existe" #: actions/otp.php:76 actions/remotesubscribe.php:145 #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 -#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:40 #: actions/xrds.php:71 lib/command.php:163 lib/command.php:302 #: lib/command.php:355 lib/command.php:401 lib/command.php:462 #: lib/command.php:518 lib/galleryaction.php:59 lib/mailbox.php:82 @@ -702,7 +702,7 @@ msgstr "Repetitiones de %s" msgid "Notices tagged with %s" msgstr "Notas con etiquetta %s" -#: actions/apitimelinetag.php:104 actions/tagrss.php:64 +#: actions/apitimelinetag.php:104 actions/tagrss.php:65 #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Actualisationes con etiquetta %1$s in %2$s!" @@ -743,7 +743,7 @@ msgstr "" #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 #: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -#: actions/userrss.php:103 +#: actions/userrss.php:106 msgid "User without matching profile" msgstr "Usator sin profilo correspondente" @@ -1743,7 +1743,7 @@ msgstr "Facer administrator" msgid "Make this user an admin" msgstr "Facer iste usator administrator" -#: actions/grouprss.php:138 actions/userrss.php:90 +#: actions/grouprss.php:138 actions/userrss.php:93 #: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 #, php-format msgid "%s timeline" @@ -4466,7 +4466,7 @@ msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" "Tenta [cercar gruppos](%%action.groupsearch%%) e facer te membro de illos." -#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: actions/userrss.php:95 lib/atomgroupnoticefeed.php:66 #: lib/atomusernoticefeed.php:72 #, php-format msgid "Updates from %1$s on %2$s!" @@ -5255,12 +5255,12 @@ msgstr "%s quitava le gruppo %s" msgid "Fullname: %s" msgstr "Nomine complete: %s" -#: lib/command.php:312 lib/mail.php:254 +#: lib/command.php:312 lib/mail.php:258 #, php-format msgid "Location: %s" msgstr "Loco: %s" -#: lib/command.php:315 lib/mail.php:256 +#: lib/command.php:315 lib/mail.php:260 #, php-format msgid "Homepage: %s" msgstr "Pagina personal: %s" @@ -5736,11 +5736,11 @@ msgstr "Aperir session con nomine de usator e contrasigno" msgid "Sign up for a new account" msgstr "Crear un nove conto" -#: lib/mail.php:172 +#: lib/mail.php:173 msgid "Email address confirmation" msgstr "Confirmation del adresse de e-mail" -#: lib/mail.php:174 +#: lib/mail.php:175 #, php-format msgid "" "Hey, %s.\n" @@ -5769,12 +5769,12 @@ msgstr "" "Gratias pro tu attention,\n" "%s\n" -#: lib/mail.php:236 +#: lib/mail.php:240 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s seque ora tu notas in %2$s." -#: lib/mail.php:241 +#: lib/mail.php:245 #, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -5799,17 +5799,17 @@ msgstr "" "----\n" "Cambia tu adresse de e-mail o optiones de notification a %8$s\n" -#: lib/mail.php:258 +#: lib/mail.php:262 #, php-format msgid "Bio: %s" msgstr "Bio: %s" -#: lib/mail.php:286 +#: lib/mail.php:290 #, php-format msgid "New email address for posting to %s" msgstr "Nove adresse de e-mail pro publicar in %s" -#: lib/mail.php:289 +#: lib/mail.php:293 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -5830,21 +5830,21 @@ msgstr "" "Cordialmente,\n" "%4$s" -#: lib/mail.php:413 +#: lib/mail.php:417 #, php-format msgid "%s status" msgstr "Stato de %s" -#: lib/mail.php:439 +#: lib/mail.php:443 msgid "SMS confirmation" msgstr "Confirmation SMS" -#: lib/mail.php:463 +#: lib/mail.php:467 #, php-format msgid "You've been nudged by %s" msgstr "%s te ha pulsate" -#: lib/mail.php:467 +#: lib/mail.php:471 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -5871,12 +5871,12 @@ msgstr "" "Con salutes cordial,\n" "%4$s\n" -#: lib/mail.php:510 +#: lib/mail.php:517 #, php-format msgid "New private message from %s" msgstr "Nove message private de %s" -#: lib/mail.php:514 +#: lib/mail.php:521 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -5909,12 +5909,12 @@ msgstr "" "Con salutes cordial,\n" "%5$s\n" -#: lib/mail.php:559 +#: lib/mail.php:568 #, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "%s (@%s) ha addite tu nota como favorite" -#: lib/mail.php:561 +#: lib/mail.php:570 #, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -5952,12 +5952,12 @@ msgstr "" "Cordialmente,\n" "%6$s\n" -#: lib/mail.php:624 +#: lib/mail.php:635 #, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "%s (@%s) ha inviate un nota a tu attention" -#: lib/mail.php:626 +#: lib/mail.php:637 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" diff --git a/locale/is/LC_MESSAGES/statusnet.po b/locale/is/LC_MESSAGES/statusnet.po index be9a802500..3c8f33565d 100644 --- a/locale/is/LC_MESSAGES/statusnet.po +++ b/locale/is/LC_MESSAGES/statusnet.po @@ -8,12 +8,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-04 18:55+0000\n" -"PO-Revision-Date: 2010-03-05 22:35:49+0000\n" +"POT-Creation-Date: 2010-03-06 23:49+0000\n" +"PO-Revision-Date: 2010-03-06 23:50:12+0000\n" "Language-Team: Icelandic\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63298); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63350); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: is\n" "X-Message-Group: out-statusnet\n" @@ -110,7 +110,7 @@ msgstr "Ekkert þannig merki." #: actions/otp.php:76 actions/remotesubscribe.php:145 #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 -#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:40 #: actions/xrds.php:71 lib/command.php:163 lib/command.php:302 #: lib/command.php:355 lib/command.php:401 lib/command.php:462 #: lib/command.php:518 lib/galleryaction.php:59 lib/mailbox.php:82 @@ -707,7 +707,7 @@ msgstr "Svör við %s" msgid "Notices tagged with %s" msgstr "Babl merkt með %s" -#: actions/apitimelinetag.php:104 actions/tagrss.php:64 +#: actions/apitimelinetag.php:104 actions/tagrss.php:65 #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "" @@ -747,7 +747,7 @@ msgstr "" #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 #: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -#: actions/userrss.php:103 +#: actions/userrss.php:106 msgid "User without matching profile" msgstr "Notandi með enga persónulega síðu sem passar við" @@ -1769,7 +1769,7 @@ msgstr "" msgid "Make this user an admin" msgstr "" -#: actions/grouprss.php:138 actions/userrss.php:90 +#: actions/grouprss.php:138 actions/userrss.php:93 #: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 #, php-format msgid "%s timeline" @@ -4472,7 +4472,7 @@ msgstr "" msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" -#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: actions/userrss.php:95 lib/atomgroupnoticefeed.php:66 #: lib/atomusernoticefeed.php:72 #, php-format msgid "Updates from %1$s on %2$s!" @@ -5265,12 +5265,12 @@ msgstr "%s gekk úr hópnum %s" msgid "Fullname: %s" msgstr "Fullt nafn: %s" -#: lib/command.php:312 lib/mail.php:254 +#: lib/command.php:312 lib/mail.php:258 #, php-format msgid "Location: %s" msgstr "Staðsetning: %s" -#: lib/command.php:315 lib/mail.php:256 +#: lib/command.php:315 lib/mail.php:260 #, php-format msgid "Homepage: %s" msgstr "Heimasíða: %s" @@ -5716,11 +5716,11 @@ msgstr "Skráðu þig inn með notendanafni og lykilorði" msgid "Sign up for a new account" msgstr "Búðu til nýjan aðgang" -#: lib/mail.php:172 +#: lib/mail.php:173 msgid "Email address confirmation" msgstr "Staðfesting tölvupóstfangs" -#: lib/mail.php:174 +#: lib/mail.php:175 #, php-format msgid "" "Hey, %s.\n" @@ -5737,12 +5737,12 @@ msgid "" "%s\n" msgstr "" -#: lib/mail.php:236 +#: lib/mail.php:240 #, 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:241 +#: lib/mail.php:245 #, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -5757,19 +5757,19 @@ msgid "" "Change your email address or notification options at %8$s\n" msgstr "" -#: lib/mail.php:258 +#: lib/mail.php:262 #, fuzzy, php-format msgid "Bio: %s" msgstr "" "Lýsing: %s\n" "\n" -#: lib/mail.php:286 +#: lib/mail.php:290 #, php-format msgid "New email address for posting to %s" msgstr "Nýtt tölvupóstfang til að senda á %s" -#: lib/mail.php:289 +#: lib/mail.php:293 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -5790,21 +5790,21 @@ msgstr "" "Með kærri kveðju,\n" "%4$s" -#: lib/mail.php:413 +#: lib/mail.php:417 #, php-format msgid "%s status" msgstr "Staða %s" -#: lib/mail.php:439 +#: lib/mail.php:443 msgid "SMS confirmation" msgstr "SMS staðfesting" -#: lib/mail.php:463 +#: lib/mail.php:467 #, php-format msgid "You've been nudged by %s" msgstr "%s ýtti við þér" -#: lib/mail.php:467 +#: lib/mail.php:471 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -5820,12 +5820,12 @@ msgid "" "%4$s\n" msgstr "" -#: lib/mail.php:510 +#: lib/mail.php:517 #, php-format msgid "New private message from %s" msgstr "Ný persónuleg skilaboð frá %s" -#: lib/mail.php:514 +#: lib/mail.php:521 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -5844,12 +5844,12 @@ msgid "" "%5$s\n" msgstr "" -#: lib/mail.php:559 +#: lib/mail.php:568 #, fuzzy, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "%s heldur upp á babl frá þér" -#: lib/mail.php:561 +#: lib/mail.php:570 #, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -5870,12 +5870,12 @@ msgid "" "%6$s\n" msgstr "" -#: lib/mail.php:624 +#: lib/mail.php:635 #, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "" -#: lib/mail.php:626 +#: lib/mail.php:637 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" diff --git a/locale/it/LC_MESSAGES/statusnet.po b/locale/it/LC_MESSAGES/statusnet.po index 05b8290678..1bd3f26adb 100644 --- a/locale/it/LC_MESSAGES/statusnet.po +++ b/locale/it/LC_MESSAGES/statusnet.po @@ -9,12 +9,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-04 18:55+0000\n" -"PO-Revision-Date: 2010-03-05 22:35:52+0000\n" +"POT-Creation-Date: 2010-03-06 23:49+0000\n" +"PO-Revision-Date: 2010-03-06 23:50:15+0000\n" "Language-Team: Italian\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63298); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63350); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: it\n" "X-Message-Group: out-statusnet\n" @@ -103,7 +103,7 @@ msgstr "Pagina inesistente." #: actions/otp.php:76 actions/remotesubscribe.php:145 #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 -#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:40 #: actions/xrds.php:71 lib/command.php:163 lib/command.php:302 #: lib/command.php:355 lib/command.php:401 lib/command.php:462 #: lib/command.php:518 lib/galleryaction.php:59 lib/mailbox.php:82 @@ -701,7 +701,7 @@ msgstr "Ripetizioni di %s" msgid "Notices tagged with %s" msgstr "Messaggi etichettati con %s" -#: actions/apitimelinetag.php:104 actions/tagrss.php:64 +#: actions/apitimelinetag.php:104 actions/tagrss.php:65 #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Messaggi etichettati con %1$s su %2$s!" @@ -742,7 +742,7 @@ msgstr "" #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 #: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -#: actions/userrss.php:103 +#: actions/userrss.php:106 msgid "User without matching profile" msgstr "Utente senza profilo corrispondente" @@ -1742,7 +1742,7 @@ msgstr "Rendi amm." msgid "Make this user an admin" msgstr "Rende questo utente un amministratore" -#: actions/grouprss.php:138 actions/userrss.php:90 +#: actions/grouprss.php:138 actions/userrss.php:93 #: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 #, php-format msgid "%s timeline" @@ -4446,7 +4446,7 @@ msgstr "%s non fa parte di alcun gruppo." msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "Prova a [cercare dei gruppi](%%action.groupsearch%%) e iscriviti." -#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: actions/userrss.php:95 lib/atomgroupnoticefeed.php:66 #: lib/atomusernoticefeed.php:72 #, php-format msgid "Updates from %1$s on %2$s!" @@ -5213,12 +5213,12 @@ msgstr "%1$s ha lasciato il gruppo %2$s" msgid "Fullname: %s" msgstr "Nome completo: %s" -#: lib/command.php:312 lib/mail.php:254 +#: lib/command.php:312 lib/mail.php:258 #, php-format msgid "Location: %s" msgstr "Posizione: %s" -#: lib/command.php:315 lib/mail.php:256 +#: lib/command.php:315 lib/mail.php:260 #, php-format msgid "Homepage: %s" msgstr "Pagina web: %s" @@ -5697,11 +5697,11 @@ msgstr "Accedi con nome utente e password" msgid "Sign up for a new account" msgstr "Iscriviti per un nuovo account" -#: lib/mail.php:172 +#: lib/mail.php:173 msgid "Email address confirmation" msgstr "Conferma indirizzo email" -#: lib/mail.php:174 +#: lib/mail.php:175 #, php-format msgid "" "Hey, %s.\n" @@ -5731,12 +5731,12 @@ msgstr "" "Grazie per il tuo tempo, \n" "%s\n" -#: lib/mail.php:236 +#: lib/mail.php:240 #, 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." -#: lib/mail.php:241 +#: lib/mail.php:245 #, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -5761,17 +5761,17 @@ msgstr "" "----\n" "Modifica il tuo indirizzo email o le opzioni di notifica presso %8$s\n" -#: lib/mail.php:258 +#: lib/mail.php:262 #, php-format msgid "Bio: %s" msgstr "Biografia: %s" -#: lib/mail.php:286 +#: lib/mail.php:290 #, php-format msgid "New email address for posting to %s" msgstr "Nuovo indirizzo email per inviare messaggi a %s" -#: lib/mail.php:289 +#: lib/mail.php:293 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -5792,21 +5792,21 @@ msgstr "" "Cordiali saluti,\n" "%4$s" -#: lib/mail.php:413 +#: lib/mail.php:417 #, php-format msgid "%s status" msgstr "stato di %s" -#: lib/mail.php:439 +#: lib/mail.php:443 msgid "SMS confirmation" msgstr "Conferma SMS" -#: lib/mail.php:463 +#: lib/mail.php:467 #, php-format msgid "You've been nudged by %s" msgstr "%s ti ha richiamato" -#: lib/mail.php:467 +#: lib/mail.php:471 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -5833,12 +5833,12 @@ msgstr "" "Cordiali saluti,\n" "%4$s\n" -#: lib/mail.php:510 +#: lib/mail.php:517 #, php-format msgid "New private message from %s" msgstr "Nuovo messaggio privato da %s" -#: lib/mail.php:514 +#: lib/mail.php:521 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -5871,12 +5871,12 @@ msgstr "" "Cordiali saluti,\n" "%5$s\n" -#: lib/mail.php:559 +#: lib/mail.php:568 #, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "%s (@%s) ha aggiunto il tuo messaggio tra i suoi preferiti" -#: lib/mail.php:561 +#: lib/mail.php:570 #, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -5914,12 +5914,12 @@ msgstr "" "Cordiali saluti,\n" "%6$s\n" -#: lib/mail.php:624 +#: lib/mail.php:635 #, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "%s (@%s) ti ha inviato un messaggio" -#: lib/mail.php:626 +#: lib/mail.php:637 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" diff --git a/locale/ja/LC_MESSAGES/statusnet.po b/locale/ja/LC_MESSAGES/statusnet.po index 95695792b7..847f24c59e 100644 --- a/locale/ja/LC_MESSAGES/statusnet.po +++ b/locale/ja/LC_MESSAGES/statusnet.po @@ -11,12 +11,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-04 18:55+0000\n" -"PO-Revision-Date: 2010-03-05 22:35:55+0000\n" +"POT-Creation-Date: 2010-03-06 23:49+0000\n" +"PO-Revision-Date: 2010-03-06 23:50:18+0000\n" "Language-Team: Japanese\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63298); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63350); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: out-statusnet\n" @@ -105,7 +105,7 @@ msgstr "そのようなページはありません。" #: actions/otp.php:76 actions/remotesubscribe.php:145 #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 -#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:40 #: actions/xrds.php:71 lib/command.php:163 lib/command.php:302 #: lib/command.php:355 lib/command.php:401 lib/command.php:462 #: lib/command.php:518 lib/galleryaction.php:59 lib/mailbox.php:82 @@ -696,7 +696,7 @@ msgstr "%s の返信" msgid "Notices tagged with %s" msgstr "%s とタグ付けされたつぶやき" -#: actions/apitimelinetag.php:104 actions/tagrss.php:64 +#: actions/apitimelinetag.php:104 actions/tagrss.php:65 #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "%2$s に %1$s による更新があります!" @@ -736,7 +736,7 @@ msgstr "自分のアバターをアップロードできます。最大サイズ #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 #: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -#: actions/userrss.php:103 +#: actions/userrss.php:106 msgid "User without matching profile" msgstr "合っているプロフィールのないユーザ" @@ -1740,7 +1740,7 @@ msgstr "管理者にする" msgid "Make this user an admin" msgstr "このユーザを管理者にする" -#: actions/grouprss.php:138 actions/userrss.php:90 +#: actions/grouprss.php:138 actions/userrss.php:93 #: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 #, php-format msgid "%s timeline" @@ -4455,7 +4455,7 @@ msgstr "%s はどのグループのメンバーでもありません。" msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "[グループを探して](%%action.groupsearch%%)それに加入してください。" -#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: actions/userrss.php:95 lib/atomgroupnoticefeed.php:66 #: lib/atomusernoticefeed.php:72 #, php-format msgid "Updates from %1$s on %2$s!" @@ -5233,12 +5233,12 @@ msgstr "%s はグループ %s に残りました。" msgid "Fullname: %s" msgstr "フルネーム: %s" -#: lib/command.php:312 lib/mail.php:254 +#: lib/command.php:312 lib/mail.php:258 #, php-format msgid "Location: %s" msgstr "場所: %s" -#: lib/command.php:315 lib/mail.php:256 +#: lib/command.php:315 lib/mail.php:260 #, php-format msgid "Homepage: %s" msgstr "ホームページ: %s" @@ -5672,11 +5672,11 @@ msgstr "ユーザ名とパスワードでログイン" msgid "Sign up for a new account" msgstr "新しいアカウントでサインアップ" -#: lib/mail.php:172 +#: lib/mail.php:173 msgid "Email address confirmation" msgstr "メールアドレス確認" -#: lib/mail.php:174 +#: lib/mail.php:175 #, php-format msgid "" "Hey, %s.\n" @@ -5705,12 +5705,12 @@ msgstr "" "ありがとうございます。\n" "%s\n" -#: lib/mail.php:236 +#: lib/mail.php:240 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s は %2$s であなたのつぶやきを聞いています。" -#: lib/mail.php:241 +#: lib/mail.php:245 #, fuzzy, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -5735,17 +5735,17 @@ msgstr "" "----\n" "%8$s でメールアドレスか通知オプションを変えてください。\n" -#: lib/mail.php:258 +#: lib/mail.php:262 #, php-format msgid "Bio: %s" msgstr "自己紹介: %s" -#: lib/mail.php:286 +#: lib/mail.php:290 #, php-format msgid "New email address for posting to %s" msgstr "%s へ投稿のための新しいメールアドレス" -#: lib/mail.php:289 +#: lib/mail.php:293 #, fuzzy, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -5766,21 +5766,21 @@ msgstr "" "忠実である、あなたのもの、\n" "%4$s" -#: lib/mail.php:413 +#: lib/mail.php:417 #, php-format msgid "%s status" msgstr "%s の状態" -#: lib/mail.php:439 +#: lib/mail.php:443 msgid "SMS confirmation" msgstr "SMS確認" -#: lib/mail.php:463 +#: lib/mail.php:467 #, php-format msgid "You've been nudged by %s" msgstr "あなたは %s に合図されています" -#: lib/mail.php:467 +#: lib/mail.php:471 #, fuzzy, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -5807,12 +5807,12 @@ msgstr "" "敬具\n" "%4$s\n" -#: lib/mail.php:510 +#: lib/mail.php:517 #, php-format msgid "New private message from %s" msgstr "%s からの新しいプライベートメッセージ" -#: lib/mail.php:514 +#: lib/mail.php:521 #, fuzzy, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -5845,12 +5845,12 @@ msgstr "" "敬具\n" "%5$s\n" -#: lib/mail.php:559 +#: lib/mail.php:568 #, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "%s (@%s) はお気に入りとしてあなたのつぶやきを加えました" -#: lib/mail.php:561 +#: lib/mail.php:570 #, fuzzy, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -5888,12 +5888,12 @@ msgstr "" "忠実である、あなたのもの、\n" "%6%s\n" -#: lib/mail.php:624 +#: lib/mail.php:635 #, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "%s (@%s) はあなた宛てにつぶやきを送りました" -#: lib/mail.php:626 +#: lib/mail.php:637 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" diff --git a/locale/ko/LC_MESSAGES/statusnet.po b/locale/ko/LC_MESSAGES/statusnet.po index 09af2e6f06..69bf4efb93 100644 --- a/locale/ko/LC_MESSAGES/statusnet.po +++ b/locale/ko/LC_MESSAGES/statusnet.po @@ -7,12 +7,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-04 18:55+0000\n" -"PO-Revision-Date: 2010-03-05 22:35:58+0000\n" +"POT-Creation-Date: 2010-03-06 23:49+0000\n" +"PO-Revision-Date: 2010-03-06 23:50:22+0000\n" "Language-Team: Korean\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63299); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63350); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ko\n" "X-Message-Group: out-statusnet\n" @@ -108,7 +108,7 @@ msgstr "그러한 태그가 없습니다." #: actions/otp.php:76 actions/remotesubscribe.php:145 #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 -#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:40 #: actions/xrds.php:71 lib/command.php:163 lib/command.php:302 #: lib/command.php:355 lib/command.php:401 lib/command.php:462 #: lib/command.php:518 lib/galleryaction.php:59 lib/mailbox.php:82 @@ -711,7 +711,7 @@ msgstr "%s에 답신" msgid "Notices tagged with %s" msgstr "%s 태그된 통지" -#: actions/apitimelinetag.php:104 actions/tagrss.php:64 +#: actions/apitimelinetag.php:104 actions/tagrss.php:65 #, fuzzy, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "%2$s에 있는 %1$s의 업데이트!" @@ -752,7 +752,7 @@ msgstr "당신의 개인적인 아바타를 업로드할 수 있습니다." #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 #: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -#: actions/userrss.php:103 +#: actions/userrss.php:106 msgid "User without matching profile" msgstr "프로필 매칭이 없는 사용자" @@ -1798,7 +1798,7 @@ msgstr "관리자" msgid "Make this user an admin" msgstr "" -#: actions/grouprss.php:138 actions/userrss.php:90 +#: actions/grouprss.php:138 actions/userrss.php:93 #: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 #, php-format msgid "%s timeline" @@ -4493,7 +4493,7 @@ msgstr "당신은 해당 그룹의 멤버가 아닙니다." msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" -#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: actions/userrss.php:95 lib/atomgroupnoticefeed.php:66 #: lib/atomusernoticefeed.php:72 #, php-format msgid "Updates from %1$s on %2$s!" @@ -5292,12 +5292,12 @@ msgstr "%s가 그룹%s를 떠났습니다." msgid "Fullname: %s" msgstr "전체이름: %s" -#: lib/command.php:312 lib/mail.php:254 +#: lib/command.php:312 lib/mail.php:258 #, php-format msgid "Location: %s" msgstr "위치: %s" -#: lib/command.php:315 lib/mail.php:256 +#: lib/command.php:315 lib/mail.php:260 #, php-format msgid "Homepage: %s" msgstr "홈페이지: %s" @@ -5741,11 +5741,11 @@ msgstr "사용자 이름과 비밀번호로 로그인" msgid "Sign up for a new account" msgstr "새 계정을 위한 회원가입" -#: lib/mail.php:172 +#: lib/mail.php:173 msgid "Email address confirmation" msgstr "이메일 주소 확인서" -#: lib/mail.php:174 +#: lib/mail.php:175 #, php-format msgid "" "Hey, %s.\n" @@ -5762,12 +5762,12 @@ msgid "" "%s\n" msgstr "" -#: lib/mail.php:236 +#: lib/mail.php:240 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s님이 귀하의 알림 메시지를 %2$s에서 듣고 있습니다." -#: lib/mail.php:241 +#: lib/mail.php:245 #, fuzzy, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -5786,19 +5786,19 @@ msgstr "" "\n" "그럼 이만,%4$s.\n" -#: lib/mail.php:258 +#: lib/mail.php:262 #, fuzzy, php-format msgid "Bio: %s" msgstr "" "소개: %s\n" "\n" -#: lib/mail.php:286 +#: lib/mail.php:290 #, php-format msgid "New email address for posting to %s" msgstr "%s에 포스팅 할 새로운 이메일 주소" -#: lib/mail.php:289 +#: lib/mail.php:293 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -5813,21 +5813,21 @@ msgstr "" "포스팅 주소는 %1$s입니다.새 메시지를 등록하려면 %2$ 주소로 이메일을 보내십시" "오.이메일 사용법은 %3$s 페이지를 보십시오.안녕히,%4$s" -#: lib/mail.php:413 +#: lib/mail.php:417 #, php-format msgid "%s status" msgstr "%s 상태" -#: lib/mail.php:439 +#: lib/mail.php:443 msgid "SMS confirmation" msgstr "SMS 인증" -#: lib/mail.php:463 +#: lib/mail.php:467 #, php-format msgid "You've been nudged by %s" msgstr "%s 사용자가 찔러 봤습니다." -#: lib/mail.php:467 +#: lib/mail.php:471 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -5843,12 +5843,12 @@ msgid "" "%4$s\n" msgstr "" -#: lib/mail.php:510 +#: lib/mail.php:517 #, php-format msgid "New private message from %s" msgstr "%s로부터 새로운 비밀 메시지가 도착하였습니다." -#: lib/mail.php:514 +#: lib/mail.php:521 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -5867,12 +5867,12 @@ msgid "" "%5$s\n" msgstr "" -#: lib/mail.php:559 +#: lib/mail.php:568 #, fuzzy, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "%s님이 당신의 게시글을 좋아하는 글로 추가했습니다." -#: lib/mail.php:561 +#: lib/mail.php:570 #, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -5893,12 +5893,12 @@ msgid "" "%6$s\n" msgstr "" -#: lib/mail.php:624 +#: lib/mail.php:635 #, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "" -#: lib/mail.php:626 +#: lib/mail.php:637 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" diff --git a/locale/mk/LC_MESSAGES/statusnet.po b/locale/mk/LC_MESSAGES/statusnet.po index a5736795f6..74b9cb2280 100644 --- a/locale/mk/LC_MESSAGES/statusnet.po +++ b/locale/mk/LC_MESSAGES/statusnet.po @@ -9,12 +9,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-04 18:55+0000\n" -"PO-Revision-Date: 2010-03-05 22:36:01+0000\n" +"POT-Creation-Date: 2010-03-06 23:49+0000\n" +"PO-Revision-Date: 2010-03-06 23:50:24+0000\n" "Language-Team: Macedonian\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63299); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63350); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: out-statusnet\n" @@ -103,7 +103,7 @@ msgstr "Нема таква страница" #: actions/otp.php:76 actions/remotesubscribe.php:145 #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 -#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:40 #: actions/xrds.php:71 lib/command.php:163 lib/command.php:302 #: lib/command.php:355 lib/command.php:401 lib/command.php:462 #: lib/command.php:518 lib/galleryaction.php:59 lib/mailbox.php:82 @@ -702,7 +702,7 @@ msgstr "Повторувања на %s" msgid "Notices tagged with %s" msgstr "Забелешки означени со %s" -#: actions/apitimelinetag.php:104 actions/tagrss.php:64 +#: actions/apitimelinetag.php:104 actions/tagrss.php:65 #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Подновувањата се означени со %1$s на %2$s!" @@ -744,7 +744,7 @@ msgstr "" #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 #: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -#: actions/userrss.php:103 +#: actions/userrss.php:106 msgid "User without matching profile" msgstr "Корисник без соодветен профил" @@ -1747,7 +1747,7 @@ msgstr "Направи го/ја администратор" msgid "Make this user an admin" msgstr "Направи го корисникот администратор" -#: actions/grouprss.php:138 actions/userrss.php:90 +#: actions/grouprss.php:138 actions/userrss.php:93 #: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 #, php-format msgid "%s timeline" @@ -4469,7 +4469,7 @@ msgstr "" "Обидете се со [пребарување на групи](%%action.groupsearch%%) и придружете им " "се." -#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: actions/userrss.php:95 lib/atomgroupnoticefeed.php:66 #: lib/atomusernoticefeed.php:72 #, php-format msgid "Updates from %1$s on %2$s!" @@ -5235,12 +5235,12 @@ msgstr "%s ја напушти групата %s" msgid "Fullname: %s" msgstr "Име и презиме: %s" -#: lib/command.php:312 lib/mail.php:254 +#: lib/command.php:312 lib/mail.php:258 #, php-format msgid "Location: %s" msgstr "Локација: %s" -#: lib/command.php:315 lib/mail.php:256 +#: lib/command.php:315 lib/mail.php:260 #, php-format msgid "Homepage: %s" msgstr "Домашна страница: %s" @@ -5716,11 +5716,11 @@ msgstr "Најава со корисничко име и лозинка" msgid "Sign up for a new account" msgstr "Создај нова сметка" -#: lib/mail.php:172 +#: lib/mail.php:173 msgid "Email address confirmation" msgstr "Потврдување на адресата" -#: lib/mail.php:174 +#: lib/mail.php:175 #, php-format msgid "" "Hey, %s.\n" @@ -5750,12 +5750,12 @@ msgstr "" "Ви благодариме за потрошеното време, \n" "%s\n" -#: lib/mail.php:236 +#: lib/mail.php:240 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s сега ги следи Вашите забелешки на %2$s." -#: lib/mail.php:241 +#: lib/mail.php:245 #, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -5781,17 +5781,17 @@ msgstr "" "Изменете си ја е-поштенската адреса или ги нагодувањата за известувања на %8" "$s\n" -#: lib/mail.php:258 +#: lib/mail.php:262 #, php-format msgid "Bio: %s" msgstr "Биографија: %s" -#: lib/mail.php:286 +#: lib/mail.php:290 #, php-format msgid "New email address for posting to %s" msgstr "Нова е-поштенска адреса за објавување на %s" -#: lib/mail.php:289 +#: lib/mail.php:293 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -5812,21 +5812,21 @@ msgstr "" "Со искрена почит,\n" "%4$s" -#: lib/mail.php:413 +#: lib/mail.php:417 #, php-format msgid "%s status" msgstr "Статус на %s" -#: lib/mail.php:439 +#: lib/mail.php:443 msgid "SMS confirmation" msgstr "Потврда за СМС" -#: lib/mail.php:463 +#: lib/mail.php:467 #, php-format msgid "You've been nudged by %s" msgstr "%s Ве подбуцна" -#: lib/mail.php:467 +#: lib/mail.php:471 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -5853,12 +5853,12 @@ msgstr "" "Со почит,\n" "%4$s\n" -#: lib/mail.php:510 +#: lib/mail.php:517 #, php-format msgid "New private message from %s" msgstr "Нова приватна порака од %s" -#: lib/mail.php:514 +#: lib/mail.php:521 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -5891,12 +5891,12 @@ msgstr "" "Со почит,\n" "%5$s\n" -#: lib/mail.php:559 +#: lib/mail.php:568 #, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "%s (@%s) додаде Ваша забелешка како омилена" -#: lib/mail.php:561 +#: lib/mail.php:570 #, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -5934,12 +5934,12 @@ msgstr "" "Со искрена почит,\n" "%6$s\n" -#: lib/mail.php:624 +#: lib/mail.php:635 #, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "%s (@%s) Ви испрати забелешка што сака да ја прочитате" -#: lib/mail.php:626 +#: lib/mail.php:637 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" diff --git a/locale/nb/LC_MESSAGES/statusnet.po b/locale/nb/LC_MESSAGES/statusnet.po index 61e5cfdcd4..77588ef05e 100644 --- a/locale/nb/LC_MESSAGES/statusnet.po +++ b/locale/nb/LC_MESSAGES/statusnet.po @@ -9,12 +9,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-04 18:55+0000\n" -"PO-Revision-Date: 2010-03-05 22:36:06+0000\n" +"POT-Creation-Date: 2010-03-06 23:49+0000\n" +"PO-Revision-Date: 2010-03-06 23:50:27+0000\n" "Language-Team: Norwegian (bokmål)‬\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63299); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63350); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: out-statusnet\n" @@ -103,7 +103,7 @@ msgstr "Ingen slik side" #: actions/otp.php:76 actions/remotesubscribe.php:145 #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 -#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:40 #: actions/xrds.php:71 lib/command.php:163 lib/command.php:302 #: lib/command.php:355 lib/command.php:401 lib/command.php:462 #: lib/command.php:518 lib/galleryaction.php:59 lib/mailbox.php:82 @@ -695,7 +695,7 @@ msgstr "Repetisjoner av %s" msgid "Notices tagged with %s" msgstr "Notiser merket med %s" -#: actions/apitimelinetag.php:104 actions/tagrss.php:64 +#: actions/apitimelinetag.php:104 actions/tagrss.php:65 #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Oppdateringer merket med %1$s på %2$s!" @@ -735,7 +735,7 @@ msgstr "Du kan laste opp en personlig avatar. Maks filstørrelse er %s." #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 #: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -#: actions/userrss.php:103 +#: actions/userrss.php:106 msgid "User without matching profile" msgstr "Bruker uten samsvarende profil" @@ -1727,7 +1727,7 @@ msgstr "Gjør til administrator" msgid "Make this user an admin" msgstr "Gjør denne brukeren til administrator" -#: actions/grouprss.php:138 actions/userrss.php:90 +#: actions/grouprss.php:138 actions/userrss.php:93 #: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 #, php-format msgid "%s timeline" @@ -4343,7 +4343,7 @@ msgstr "Du er allerede logget inn!" msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" -#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: actions/userrss.php:95 lib/atomgroupnoticefeed.php:66 #: lib/atomusernoticefeed.php:72 #, php-format msgid "Updates from %1$s on %2$s!" @@ -5116,12 +5116,12 @@ msgstr "%1$s sin status på %2$s" msgid "Fullname: %s" msgstr "Fullt navn" -#: lib/command.php:312 lib/mail.php:254 +#: lib/command.php:312 lib/mail.php:258 #, php-format msgid "Location: %s" msgstr "" -#: lib/command.php:315 lib/mail.php:256 +#: lib/command.php:315 lib/mail.php:260 #, php-format msgid "Homepage: %s" msgstr "" @@ -5572,11 +5572,11 @@ msgstr "Ugyldig brukernavn eller passord" msgid "Sign up for a new account" msgstr "Opprett en ny konto" -#: lib/mail.php:172 +#: lib/mail.php:173 msgid "Email address confirmation" msgstr "" -#: lib/mail.php:174 +#: lib/mail.php:175 #, php-format msgid "" "Hey, %s.\n" @@ -5593,12 +5593,12 @@ msgid "" "%s\n" msgstr "" -#: lib/mail.php:236 +#: lib/mail.php:240 #, 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:241 +#: lib/mail.php:245 #, fuzzy, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -5619,17 +5619,17 @@ msgstr "" "Vennlig hilsen,\n" "%4$s.\n" -#: lib/mail.php:258 +#: lib/mail.php:262 #, fuzzy, php-format msgid "Bio: %s" msgstr "Om meg" -#: lib/mail.php:286 +#: lib/mail.php:290 #, php-format msgid "New email address for posting to %s" msgstr "" -#: lib/mail.php:289 +#: lib/mail.php:293 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -5642,21 +5642,21 @@ msgid "" "%4$s" msgstr "" -#: lib/mail.php:413 +#: lib/mail.php:417 #, php-format msgid "%s status" msgstr "%s status" -#: lib/mail.php:439 +#: lib/mail.php:443 msgid "SMS confirmation" msgstr "" -#: lib/mail.php:463 +#: lib/mail.php:467 #, php-format msgid "You've been nudged by %s" msgstr "" -#: lib/mail.php:467 +#: lib/mail.php:471 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -5672,12 +5672,12 @@ msgid "" "%4$s\n" msgstr "" -#: lib/mail.php:510 +#: lib/mail.php:517 #, php-format msgid "New private message from %s" msgstr "" -#: lib/mail.php:514 +#: lib/mail.php:521 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -5696,12 +5696,12 @@ msgid "" "%5$s\n" msgstr "" -#: lib/mail.php:559 +#: lib/mail.php:568 #, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "" -#: lib/mail.php:561 +#: lib/mail.php:570 #, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -5722,12 +5722,12 @@ msgid "" "%6$s\n" msgstr "" -#: lib/mail.php:624 +#: lib/mail.php:635 #, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "" -#: lib/mail.php:626 +#: lib/mail.php:637 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" diff --git a/locale/nl/LC_MESSAGES/statusnet.po b/locale/nl/LC_MESSAGES/statusnet.po index 2b1b48adef..c73771f84a 100644 --- a/locale/nl/LC_MESSAGES/statusnet.po +++ b/locale/nl/LC_MESSAGES/statusnet.po @@ -10,12 +10,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-04 18:55+0000\n" -"PO-Revision-Date: 2010-03-05 22:36:21+0000\n" +"POT-Creation-Date: 2010-03-06 23:49+0000\n" +"PO-Revision-Date: 2010-03-06 23:50:33+0000\n" "Language-Team: Dutch\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63299); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63350); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: out-statusnet\n" @@ -102,7 +102,7 @@ msgstr "Deze pagina bestaat niet" #: actions/otp.php:76 actions/remotesubscribe.php:145 #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 -#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:40 #: actions/xrds.php:71 lib/command.php:163 lib/command.php:302 #: lib/command.php:355 lib/command.php:401 lib/command.php:462 #: lib/command.php:518 lib/galleryaction.php:59 lib/mailbox.php:82 @@ -712,7 +712,7 @@ msgstr "Herhaald van %s" msgid "Notices tagged with %s" msgstr "Mededelingen met het label %s" -#: actions/apitimelinetag.php:104 actions/tagrss.php:64 +#: actions/apitimelinetag.php:104 actions/tagrss.php:65 #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Updates met het label %1$s op %2$s!" @@ -753,7 +753,7 @@ msgstr "" #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 #: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -#: actions/userrss.php:103 +#: actions/userrss.php:106 msgid "User without matching profile" msgstr "Gebruiker zonder bijbehorend profiel" @@ -1761,7 +1761,7 @@ msgstr "Beheerder maken" msgid "Make this user an admin" msgstr "Deze gebruiker beheerder maken" -#: actions/grouprss.php:138 actions/userrss.php:90 +#: actions/grouprss.php:138 actions/userrss.php:93 #: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 #, php-format msgid "%s timeline" @@ -4499,7 +4499,7 @@ msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" "U kunt [naar groepen zoeken](%%action.groupsearch%%) en daar lid van worden." -#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: actions/userrss.php:95 lib/atomgroupnoticefeed.php:66 #: lib/atomusernoticefeed.php:72 #, php-format msgid "Updates from %1$s on %2$s!" @@ -5274,12 +5274,12 @@ msgstr "%s heeft de groep %s verlaten" msgid "Fullname: %s" msgstr "Volledige naam: %s" -#: lib/command.php:312 lib/mail.php:254 +#: lib/command.php:312 lib/mail.php:258 #, php-format msgid "Location: %s" msgstr "Locatie: %s" -#: lib/command.php:315 lib/mail.php:256 +#: lib/command.php:315 lib/mail.php:260 #, php-format msgid "Homepage: %s" msgstr "Thuispagina: %s" @@ -5763,11 +5763,11 @@ msgstr "Aanmelden met gebruikersnaam en wachtwoord" msgid "Sign up for a new account" msgstr "Nieuwe gebruiker aanmaken" -#: lib/mail.php:172 +#: lib/mail.php:173 msgid "Email address confirmation" msgstr "E-mailadresbevestiging" -#: lib/mail.php:174 +#: lib/mail.php:175 #, php-format msgid "" "Hey, %s.\n" @@ -5797,12 +5797,12 @@ msgstr "" "Dank u wel voor uw tijd.\n" "%s\n" -#: lib/mail.php:236 +#: lib/mail.php:240 #, 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:245 #, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -5827,17 +5827,17 @@ msgstr "" "----\n" "Wijzig uw e-mailadres of instellingen op %8$s\n" -#: lib/mail.php:258 +#: lib/mail.php:262 #, php-format msgid "Bio: %s" msgstr "Beschrijving: %s" -#: lib/mail.php:286 +#: lib/mail.php:290 #, php-format msgid "New email address for posting to %s" msgstr "Nieuw e-mailadres om e-mail te versturen aan %s" -#: lib/mail.php:289 +#: lib/mail.php:293 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -5858,21 +5858,21 @@ msgstr "" "Met vriendelijke groet,\n" "%4$s" -#: lib/mail.php:413 +#: lib/mail.php:417 #, php-format msgid "%s status" msgstr "%s status" -#: lib/mail.php:439 +#: lib/mail.php:443 msgid "SMS confirmation" msgstr "SMS-bevestiging" -#: lib/mail.php:463 +#: lib/mail.php:467 #, php-format msgid "You've been nudged by %s" msgstr "%s heeft u gepord" -#: lib/mail.php:467 +#: lib/mail.php:471 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -5900,12 +5900,12 @@ msgstr "" "Met vriendelijke groet,\n" "%4$s\n" -#: lib/mail.php:510 +#: lib/mail.php:517 #, php-format msgid "New private message from %s" msgstr "U hebt een nieuw privébericht van %s." -#: lib/mail.php:514 +#: lib/mail.php:521 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -5939,12 +5939,12 @@ msgstr "" "Met vriendelijke groet,\n" "%5$s\n" -#: lib/mail.php:559 +#: lib/mail.php:568 #, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "%s (@%s) heeft uw mededeling als favoriet toegevoegd" -#: lib/mail.php:561 +#: lib/mail.php:570 #, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -5982,12 +5982,12 @@ msgstr "" "Met vriendelijke groet,\n" "%6$s\n" -#: lib/mail.php:624 +#: lib/mail.php:635 #, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "%s (@%s) heeft u een mededeling gestuurd" -#: lib/mail.php:626 +#: lib/mail.php:637 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" diff --git a/locale/nn/LC_MESSAGES/statusnet.po b/locale/nn/LC_MESSAGES/statusnet.po index 72fe47924f..a16e156496 100644 --- a/locale/nn/LC_MESSAGES/statusnet.po +++ b/locale/nn/LC_MESSAGES/statusnet.po @@ -7,12 +7,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-04 18:55+0000\n" -"PO-Revision-Date: 2010-03-05 22:36:11+0000\n" +"POT-Creation-Date: 2010-03-06 23:49+0000\n" +"PO-Revision-Date: 2010-03-06 23:50:30+0000\n" "Language-Team: Norwegian Nynorsk\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63299); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63350); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nn\n" "X-Message-Group: out-statusnet\n" @@ -108,7 +108,7 @@ msgstr "Dette emneord finst ikkje." #: actions/otp.php:76 actions/remotesubscribe.php:145 #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 -#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:40 #: actions/xrds.php:71 lib/command.php:163 lib/command.php:302 #: lib/command.php:355 lib/command.php:401 lib/command.php:462 #: lib/command.php:518 lib/galleryaction.php:59 lib/mailbox.php:82 @@ -709,7 +709,7 @@ msgstr "Svar til %s" msgid "Notices tagged with %s" msgstr "Notisar merka med %s" -#: actions/apitimelinetag.php:104 actions/tagrss.php:64 +#: actions/apitimelinetag.php:104 actions/tagrss.php:65 #, fuzzy, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Oppdateringar frå %1$s på %2$s!" @@ -750,7 +750,7 @@ msgstr "Du kan laste opp ein personleg avatar." #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 #: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -#: actions/userrss.php:103 +#: actions/userrss.php:106 msgid "User without matching profile" msgstr "Kan ikkje finne brukar" @@ -1798,7 +1798,7 @@ msgstr "Administrator" msgid "Make this user an admin" msgstr "" -#: actions/grouprss.php:138 actions/userrss.php:90 +#: actions/grouprss.php:138 actions/userrss.php:93 #: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 #, php-format msgid "%s timeline" @@ -4512,7 +4512,7 @@ msgstr "Du er ikkje medlem av den gruppa." msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" -#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: actions/userrss.php:95 lib/atomgroupnoticefeed.php:66 #: lib/atomusernoticefeed.php:72 #, php-format msgid "Updates from %1$s on %2$s!" @@ -5309,12 +5309,12 @@ msgstr "%s forlot %s gruppa" msgid "Fullname: %s" msgstr "Fullt namn: %s" -#: lib/command.php:312 lib/mail.php:254 +#: lib/command.php:312 lib/mail.php:258 #, php-format msgid "Location: %s" msgstr "Stad: %s" -#: lib/command.php:315 lib/mail.php:256 +#: lib/command.php:315 lib/mail.php:260 #, php-format msgid "Homepage: %s" msgstr "Heimeside: %s" @@ -5761,11 +5761,11 @@ msgstr "Log inn med brukarnamn og passord." msgid "Sign up for a new account" msgstr "Opprett ny konto" -#: lib/mail.php:172 +#: lib/mail.php:173 msgid "Email address confirmation" msgstr "Stadfesting av epostadresse" -#: lib/mail.php:174 +#: lib/mail.php:175 #, php-format msgid "" "Hey, %s.\n" @@ -5782,12 +5782,12 @@ msgid "" "%s\n" msgstr "" -#: lib/mail.php:236 +#: lib/mail.php:240 #, 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:241 +#: lib/mail.php:245 #, fuzzy, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -5808,19 +5808,19 @@ msgstr "" "Beste helsing,\n" "%4$s.\n" -#: lib/mail.php:258 +#: lib/mail.php:262 #, fuzzy, php-format msgid "Bio: %s" msgstr "" "Bio: %s\n" "\n" -#: lib/mail.php:286 +#: lib/mail.php:290 #, php-format msgid "New email address for posting to %s" msgstr "Ny epostadresse for å oppdatera %s" -#: lib/mail.php:289 +#: lib/mail.php:293 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -5840,21 +5840,21 @@ msgstr "" "\n" "Helsing frå %4$s" -#: lib/mail.php:413 +#: lib/mail.php:417 #, php-format msgid "%s status" msgstr "%s status" -#: lib/mail.php:439 +#: lib/mail.php:443 msgid "SMS confirmation" msgstr "SMS bekreftelse" -#: lib/mail.php:463 +#: lib/mail.php:467 #, php-format msgid "You've been nudged by %s" msgstr "Du har blitt dulta av %s" -#: lib/mail.php:467 +#: lib/mail.php:471 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -5870,12 +5870,12 @@ msgid "" "%4$s\n" msgstr "" -#: lib/mail.php:510 +#: lib/mail.php:517 #, php-format msgid "New private message from %s" msgstr "Ny privat melding fra %s" -#: lib/mail.php:514 +#: lib/mail.php:521 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -5894,12 +5894,12 @@ msgid "" "%5$s\n" msgstr "" -#: lib/mail.php:559 +#: lib/mail.php:568 #, fuzzy, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "%s la til di melding som ein favoritt" -#: lib/mail.php:561 +#: lib/mail.php:570 #, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -5920,12 +5920,12 @@ msgid "" "%6$s\n" msgstr "" -#: lib/mail.php:624 +#: lib/mail.php:635 #, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "" -#: lib/mail.php:626 +#: lib/mail.php:637 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" diff --git a/locale/pl/LC_MESSAGES/statusnet.po b/locale/pl/LC_MESSAGES/statusnet.po index e592ff747f..3a0bd39c32 100644 --- a/locale/pl/LC_MESSAGES/statusnet.po +++ b/locale/pl/LC_MESSAGES/statusnet.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-04 18:55+0000\n" -"PO-Revision-Date: 2010-03-05 22:36:24+0000\n" +"POT-Creation-Date: 2010-03-06 23:49+0000\n" +"PO-Revision-Date: 2010-03-06 23:50:36+0000\n" "Last-Translator: Piotr Drąg \n" "Language-Team: Polish \n" "MIME-Version: 1.0\n" @@ -19,7 +19,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2);\n" -"X-Generator: MediaWiki 1.17alpha (r63299); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63350); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pl\n" "X-Message-Group: out-statusnet\n" @@ -47,7 +47,6 @@ msgstr "Zabronić anonimowym użytkownikom (niezalogowanym) przeglądać witryn #. TRANS: Checkbox label for prohibiting anonymous users from viewing site. #: actions/accessadminpanel.php:167 -#, fuzzy msgctxt "LABEL" msgid "Private" msgstr "Prywatna" @@ -78,7 +77,6 @@ msgid "Save access settings" msgstr "Zapisz ustawienia dostępu" #: actions/accessadminpanel.php:203 -#, fuzzy msgctxt "BUTTON" msgid "Save" msgstr "Zapisz" @@ -107,7 +105,7 @@ msgstr "Nie ma takiej strony" #: actions/otp.php:76 actions/remotesubscribe.php:145 #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 -#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:40 #: actions/xrds.php:71 lib/command.php:163 lib/command.php:302 #: lib/command.php:355 lib/command.php:401 lib/command.php:462 #: lib/command.php:518 lib/galleryaction.php:59 lib/mailbox.php:82 @@ -702,7 +700,7 @@ msgstr "Powtórzenia %s" msgid "Notices tagged with %s" msgstr "Wpisy ze znacznikiem %s" -#: actions/apitimelinetag.php:104 actions/tagrss.php:64 +#: actions/apitimelinetag.php:104 actions/tagrss.php:65 #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Aktualizacje ze znacznikiem %1$s na %2$s." @@ -742,7 +740,7 @@ msgstr "Można wysłać osobisty awatar. Maksymalny rozmiar pliku to %s." #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 #: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -#: actions/userrss.php:103 +#: actions/userrss.php:106 msgid "User without matching profile" msgstr "Użytkownik bez odpowiadającego profilu" @@ -1575,23 +1573,20 @@ msgid "Cannot read file." msgstr "Nie można odczytać pliku." #: actions/grantrole.php:62 actions/revokerole.php:62 -#, fuzzy msgid "Invalid role." -msgstr "Nieprawidłowy token." +msgstr "Nieprawidłowa rola." #: actions/grantrole.php:66 actions/revokerole.php:66 msgid "This role is reserved and cannot be set." -msgstr "" +msgstr "Ta rola jest zastrzeżona i nie może zostać ustawiona." #: actions/grantrole.php:75 -#, fuzzy msgid "You cannot grant user roles on this site." -msgstr "Nie można ograniczać użytkowników na tej witrynie." +msgstr "Nie można udzielić rol użytkownikom na tej witrynie." #: actions/grantrole.php:82 -#, fuzzy msgid "User already has this role." -msgstr "Użytkownik jest już wyciszony." +msgstr "Użytkownik ma już tę rolę." #: actions/groupblock.php:71 actions/groupunblock.php:71 #: actions/makeadmin.php:71 actions/subedit.php:46 @@ -1736,7 +1731,7 @@ msgstr "Uczyń administratorem" msgid "Make this user an admin" msgstr "Uczyń tego użytkownika administratorem" -#: actions/grouprss.php:138 actions/userrss.php:90 +#: actions/grouprss.php:138 actions/userrss.php:93 #: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 #, php-format msgid "%s timeline" @@ -2008,7 +2003,6 @@ msgstr "Opcjonalnie dodaj osobistą wiadomość do zaproszenia." #. TRANS: Send button for inviting friends #: actions/invite.php:198 -#, fuzzy msgctxt "BUTTON" msgid "Send" msgstr "Wyślij" @@ -3327,14 +3321,12 @@ msgid "Replies to %1$s on %2$s!" msgstr "odpowiedzi dla użytkownika %1$s na %2$s." #: actions/revokerole.php:75 -#, fuzzy msgid "You cannot revoke user roles on this site." -msgstr "Nie można wyciszać użytkowników na tej witrynie." +msgstr "Nie można unieważnić rol użytkowników na tej witrynie." #: actions/revokerole.php:82 -#, fuzzy msgid "User doesn't have this role." -msgstr "Użytkownik bez odpowiadającego profilu." +msgstr "Użytkownik nie ma tej roli." #: actions/rsd.php:146 actions/version.php:157 msgid "StatusNet" @@ -3738,9 +3730,8 @@ msgid "User is already silenced." msgstr "Użytkownik jest już wyciszony." #: actions/siteadminpanel.php:69 -#, fuzzy msgid "Basic settings for this StatusNet site" -msgstr "Podstawowe ustawienia tej witryny StatusNet." +msgstr "Podstawowe ustawienia tej witryny StatusNet" #: actions/siteadminpanel.php:133 msgid "Site name must have non-zero length." @@ -3808,13 +3799,14 @@ msgid "Default timezone for the site; usually UTC." msgstr "Domyśla strefa czasowa witryny, zwykle UTC." #: actions/siteadminpanel.php:262 -#, fuzzy msgid "Default language" -msgstr "Domyślny język witryny" +msgstr "Domyślny język" #: actions/siteadminpanel.php:263 msgid "Site language when autodetection from browser settings is not available" msgstr "" +"Język witryny, kiedy automatyczne wykrywanie z ustawień przeglądarki nie " +"jest dostępne" #: actions/siteadminpanel.php:271 msgid "Limits" @@ -3839,37 +3831,33 @@ msgstr "" "samo." #: actions/sitenoticeadminpanel.php:56 -#, fuzzy msgid "Site Notice" msgstr "Wpis witryny" #: actions/sitenoticeadminpanel.php:67 -#, fuzzy msgid "Edit site-wide message" -msgstr "Nowa wiadomość" +msgstr "Zmodyfikuj wiadomość witryny" #: actions/sitenoticeadminpanel.php:103 -#, fuzzy msgid "Unable to save site notice." -msgstr "Nie można zapisać ustawień wyglądu." +msgstr "Nie można zapisać wpisu witryny." #: actions/sitenoticeadminpanel.php:113 msgid "Max length for the site-wide notice is 255 chars" -msgstr "" +msgstr "Maksymalna długość wpisu witryny to 255 znaków" #: actions/sitenoticeadminpanel.php:176 -#, fuzzy msgid "Site notice text" -msgstr "Wpis witryny" +msgstr "Tekst wpisu witryny" #: actions/sitenoticeadminpanel.php:178 msgid "Site-wide notice text (255 chars max; HTML okay)" msgstr "" +"Tekst wpisu witryny (maksymalnie 255 znaków, można używać znaczników HTML)" #: actions/sitenoticeadminpanel.php:198 -#, fuzzy msgid "Save site notice" -msgstr "Wpis witryny" +msgstr "Zapisz wpis witryny" #: actions/smssettings.php:58 msgid "SMS settings" @@ -3977,9 +3965,8 @@ msgid "Snapshots" msgstr "Migawki" #: actions/snapshotadminpanel.php:65 -#, fuzzy msgid "Manage snapshot configuration" -msgstr "Zmień konfigurację witryny" +msgstr "Zarządzaj konfiguracją migawki" #: actions/snapshotadminpanel.php:127 msgid "Invalid snapshot run value." @@ -4026,9 +4013,8 @@ msgid "Snapshots will be sent to this URL" msgstr "Migawki będą wysyłane na ten adres URL" #: actions/snapshotadminpanel.php:248 -#, fuzzy msgid "Save snapshot settings" -msgstr "Zapisz ustawienia witryny" +msgstr "Zapisz ustawienia migawki" #: actions/subedit.php:70 msgid "You are not subscribed to that profile." @@ -4250,7 +4236,6 @@ msgstr "" #. TRANS: User admin panel title #: actions/useradminpanel.php:59 -#, fuzzy msgctxt "TITLE" msgid "User" msgstr "Użytkownik" @@ -4451,7 +4436,7 @@ msgstr "Użytkownik %s nie jest członkiem żadnej grupy." msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "Spróbuj [wyszukać grupy](%%action.groupsearch%%) i dołączyć do nich." -#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: actions/userrss.php:95 lib/atomgroupnoticefeed.php:66 #: lib/atomusernoticefeed.php:72 #, php-format msgid "Updates from %1$s on %2$s!" @@ -4643,9 +4628,8 @@ msgid "Couldn't delete self-subscription." msgstr "Nie można usunąć autosubskrypcji." #: classes/Subscription.php:190 -#, fuzzy msgid "Couldn't delete subscription OMB token." -msgstr "Nie można usunąć subskrypcji." +msgstr "Nie można usunąć tokenu subskrypcji OMB." #: classes/Subscription.php:201 lib/subs.php:69 msgid "Couldn't delete subscription." @@ -4715,27 +4699,23 @@ msgstr "Główna nawigacja witryny" #. TRANS: Tooltip for main menu option "Personal" #: lib/action.php:430 -#, fuzzy msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Profil osobisty i oś czasu przyjaciół" #: lib/action.php:433 -#, fuzzy msgctxt "MENU" msgid "Personal" msgstr "Osobiste" #. TRANS: Tooltip for main menu option "Account" #: lib/action.php:435 -#, fuzzy msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Zmień adres e-mail, awatar, hasło, profil" #. TRANS: Tooltip for main menu option "Services" #: lib/action.php:440 -#, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Połącz z serwisami" @@ -4746,91 +4726,78 @@ msgstr "Połącz" #. TRANS: Tooltip for menu option "Admin" #: lib/action.php:446 -#, fuzzy msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Zmień konfigurację witryny" #: lib/action.php:449 -#, fuzzy msgctxt "MENU" msgid "Admin" msgstr "Administrator" #. TRANS: Tooltip for main menu option "Invite" #: lib/action.php:453 -#, fuzzy, php-format +#, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Zaproś przyjaciół i kolegów do dołączenia do ciebie na %s" #: lib/action.php:456 -#, fuzzy msgctxt "MENU" msgid "Invite" msgstr "Zaproś" #. TRANS: Tooltip for main menu option "Logout" #: lib/action.php:462 -#, fuzzy msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Wyloguj się z witryny" #: lib/action.php:465 -#, fuzzy msgctxt "MENU" msgid "Logout" msgstr "Wyloguj się" #. TRANS: Tooltip for main menu option "Register" #: lib/action.php:470 -#, fuzzy msgctxt "TOOLTIP" msgid "Create an account" msgstr "Utwórz konto" #: lib/action.php:473 -#, fuzzy msgctxt "MENU" msgid "Register" msgstr "Zarejestruj się" #. TRANS: Tooltip for main menu option "Login" #: lib/action.php:476 -#, fuzzy msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Zaloguj się na witrynie" #: lib/action.php:479 -#, fuzzy msgctxt "MENU" msgid "Login" msgstr "Zaloguj się" #. TRANS: Tooltip for main menu option "Help" #: lib/action.php:482 -#, fuzzy msgctxt "TOOLTIP" msgid "Help me!" msgstr "Pomóż mi." #: lib/action.php:485 -#, fuzzy msgctxt "MENU" msgid "Help" msgstr "Pomoc" #. TRANS: Tooltip for main menu option "Search" #: lib/action.php:488 -#, fuzzy msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Wyszukaj osoby lub tekst" #: lib/action.php:491 -#, fuzzy msgctxt "MENU" msgid "Search" msgstr "Wyszukaj" @@ -5000,10 +4967,9 @@ msgstr "Podstawowa konfiguracja witryny" #. TRANS: Menu item for site administration #: lib/adminpanelaction.php:350 -#, fuzzy msgctxt "MENU" msgid "Site" -msgstr "Witryny" +msgstr "Witryna" #. TRANS: Menu item title/tooltip #: lib/adminpanelaction.php:356 @@ -5012,7 +4978,6 @@ msgstr "Konfiguracja wyglądu" #. TRANS: Menu item for site administration #: lib/adminpanelaction.php:358 -#, fuzzy msgctxt "MENU" msgid "Design" msgstr "Wygląd" @@ -5044,15 +5009,13 @@ msgstr "Konfiguracja sesji" #. TRANS: Menu item title/tooltip #: lib/adminpanelaction.php:396 -#, fuzzy msgid "Edit site notice" -msgstr "Wpis witryny" +msgstr "Zmodyfikuj wpis witryny" #. TRANS: Menu item title/tooltip #: lib/adminpanelaction.php:404 -#, fuzzy msgid "Snapshots configuration" -msgstr "Konfiguracja ścieżek" +msgstr "Konfiguracja migawek" #: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." @@ -5244,12 +5207,12 @@ msgstr "Użytkownik %1$s opuścił grupę %2$s" msgid "Fullname: %s" msgstr "Imię i nazwisko: %s" -#: lib/command.php:312 lib/mail.php:254 +#: lib/command.php:312 lib/mail.php:258 #, php-format msgid "Location: %s" msgstr "Położenie: %s" -#: lib/command.php:315 lib/mail.php:256 +#: lib/command.php:315 lib/mail.php:260 #, php-format msgid "Homepage: %s" msgstr "Strona domowa: %s" @@ -5589,7 +5552,7 @@ msgstr "Przejdź" #: lib/grantroleform.php:91 #, php-format msgid "Grant this user the \"%s\" role" -msgstr "" +msgstr "Nadaj użytkownikowi rolę \"%s\"" #: lib/groupeditform.php:163 msgid "URL of the homepage or blog of the group or topic" @@ -5730,11 +5693,11 @@ msgstr "Zaloguj się za pomocą nazwy użytkownika i hasła" msgid "Sign up for a new account" msgstr "Załóż nowe konto" -#: lib/mail.php:172 +#: lib/mail.php:173 msgid "Email address confirmation" msgstr "Potwierdzenie adresu e-mail" -#: lib/mail.php:174 +#: lib/mail.php:175 #, php-format msgid "" "Hey, %s.\n" @@ -5764,12 +5727,12 @@ msgstr "" "Dziękujemy za twój czas, \n" "%s\n" -#: lib/mail.php:236 +#: lib/mail.php:240 #, 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:241 +#: lib/mail.php:245 #, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -5794,17 +5757,17 @@ msgstr "" "----\n" "Zmień adres e-mail lub opcje powiadamiania na %8$s\n" -#: lib/mail.php:258 +#: lib/mail.php:262 #, php-format msgid "Bio: %s" msgstr "O mnie: %s" -#: lib/mail.php:286 +#: lib/mail.php:290 #, php-format msgid "New email address for posting to %s" msgstr "Nowy adres e-mail do wysyłania do %s" -#: lib/mail.php:289 +#: lib/mail.php:293 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -5825,21 +5788,21 @@ msgstr "" "Z poważaniem,\n" "%4$s" -#: lib/mail.php:413 +#: lib/mail.php:417 #, php-format msgid "%s status" msgstr "Stan użytkownika %s" -#: lib/mail.php:439 +#: lib/mail.php:443 msgid "SMS confirmation" msgstr "Potwierdzenie SMS" -#: lib/mail.php:463 +#: lib/mail.php:467 #, php-format msgid "You've been nudged by %s" msgstr "Zostałeś szturchnięty przez %s" -#: lib/mail.php:467 +#: lib/mail.php:471 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -5866,12 +5829,12 @@ msgstr "" "Z poważaniem,\n" "%4$s\n" -#: lib/mail.php:510 +#: lib/mail.php:517 #, php-format msgid "New private message from %s" msgstr "Nowa prywatna wiadomość od użytkownika %s" -#: lib/mail.php:514 +#: lib/mail.php:521 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -5904,12 +5867,12 @@ msgstr "" "Z poważaniem,\n" "%5$s\n" -#: lib/mail.php:559 +#: lib/mail.php:568 #, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "Użytkownik %s (@%s) dodał twój wpis jako ulubiony" -#: lib/mail.php:561 +#: lib/mail.php:570 #, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -5947,12 +5910,12 @@ msgstr "" "Z poważaniem,\n" "%6$s\n" -#: lib/mail.php:624 +#: lib/mail.php:635 #, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "Użytkownik %s (@%s) wysłał wpis wymagający twojej uwagi" -#: lib/mail.php:626 +#: lib/mail.php:637 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" @@ -6298,9 +6261,9 @@ msgid "Repeat this notice" msgstr "Powtórz ten wpis" #: lib/revokeroleform.php:91 -#, fuzzy, php-format +#, php-format msgid "Revoke the \"%s\" role from this user" -msgstr "Zablokuj tego użytkownika w tej grupie" +msgstr "Unieważnij rolę \"%s\" tego użytkownika" #: lib/router.php:671 msgid "No single user defined for single-user mode." @@ -6458,21 +6421,18 @@ msgid "Moderate" msgstr "Moderuj" #: lib/userprofile.php:352 -#, fuzzy msgid "User role" -msgstr "Profil użytkownika" +msgstr "Rola użytkownika" #: lib/userprofile.php:354 -#, fuzzy msgctxt "role" msgid "Administrator" -msgstr "Administratorzy" +msgstr "Administrator" #: lib/userprofile.php:355 -#, fuzzy msgctxt "role" msgid "Moderator" -msgstr "Moderuj" +msgstr "Moderator" #: lib/util.php:1015 msgid "a few seconds ago" diff --git a/locale/pt/LC_MESSAGES/statusnet.po b/locale/pt/LC_MESSAGES/statusnet.po index 27e75fe97e..7041bea819 100644 --- a/locale/pt/LC_MESSAGES/statusnet.po +++ b/locale/pt/LC_MESSAGES/statusnet.po @@ -9,12 +9,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-04 18:55+0000\n" -"PO-Revision-Date: 2010-03-05 22:36:27+0000\n" +"POT-Creation-Date: 2010-03-06 23:49+0000\n" +"PO-Revision-Date: 2010-03-06 23:50:48+0000\n" "Language-Team: Portuguese\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63299); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63350); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: out-statusnet\n" @@ -106,7 +106,7 @@ msgstr "Página não encontrada." #: actions/otp.php:76 actions/remotesubscribe.php:145 #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 -#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:40 #: actions/xrds.php:71 lib/command.php:163 lib/command.php:302 #: lib/command.php:355 lib/command.php:401 lib/command.php:462 #: lib/command.php:518 lib/galleryaction.php:59 lib/mailbox.php:82 @@ -700,7 +700,7 @@ msgstr "Repetências de %s" msgid "Notices tagged with %s" msgstr "Notas categorizadas com %s" -#: actions/apitimelinetag.php:104 actions/tagrss.php:64 +#: actions/apitimelinetag.php:104 actions/tagrss.php:65 #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Actualizações categorizadas com %1$s em %2$s!" @@ -740,7 +740,7 @@ msgstr "Pode carregar o seu avatar pessoal. O tamanho máximo do ficheiro é %s. #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 #: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -#: actions/userrss.php:103 +#: actions/userrss.php:106 msgid "User without matching profile" msgstr "Utilizador sem perfil correspondente" @@ -1763,7 +1763,7 @@ msgstr "Tornar Gestor" msgid "Make this user an admin" msgstr "Tornar este utilizador um gestor" -#: actions/grouprss.php:138 actions/userrss.php:90 +#: actions/grouprss.php:138 actions/userrss.php:93 #: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 #, php-format msgid "%s timeline" @@ -4499,7 +4499,7 @@ msgstr "%s não é membro de nenhum grupo." msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "Tente [pesquisar grupos](%%action.groupsearch%%) e juntar-se a eles." -#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: actions/userrss.php:95 lib/atomgroupnoticefeed.php:66 #: lib/atomusernoticefeed.php:72 #, php-format msgid "Updates from %1$s on %2$s!" @@ -5293,12 +5293,12 @@ msgstr "%s deixou o grupo %s" msgid "Fullname: %s" msgstr "Nome completo: %s" -#: lib/command.php:312 lib/mail.php:254 +#: lib/command.php:312 lib/mail.php:258 #, php-format msgid "Location: %s" msgstr "Localidade: %s" -#: lib/command.php:315 lib/mail.php:256 +#: lib/command.php:315 lib/mail.php:260 #, php-format msgid "Homepage: %s" msgstr "Página pessoal: %s" @@ -5775,11 +5775,11 @@ msgstr "Iniciar sessão com um nome de utilizador e senha" msgid "Sign up for a new account" msgstr "Registar uma conta nova" -#: lib/mail.php:172 +#: lib/mail.php:173 msgid "Email address confirmation" msgstr "Confirmação do endereço electrónico" -#: lib/mail.php:174 +#: lib/mail.php:175 #, php-format msgid "" "Hey, %s.\n" @@ -5808,12 +5808,12 @@ msgstr "" "Obrigado pelo tempo que dedicou, \n" "%s\n" -#: lib/mail.php:236 +#: lib/mail.php:240 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s está agora a ouvir as suas notas em %2$s." -#: lib/mail.php:241 +#: lib/mail.php:245 #, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -5839,17 +5839,17 @@ msgstr "" "Altere o seu endereço de correio electrónico ou as opções de notificação em %" "8$s\n" -#: lib/mail.php:258 +#: lib/mail.php:262 #, php-format msgid "Bio: %s" msgstr "Bio: %s" -#: lib/mail.php:286 +#: lib/mail.php:290 #, php-format msgid "New email address for posting to %s" msgstr "Novo endereço electrónico para publicar no site %s" -#: lib/mail.php:289 +#: lib/mail.php:293 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -5870,21 +5870,21 @@ msgstr "" "Melhores cumprimentos,\n" "%4$s" -#: lib/mail.php:413 +#: lib/mail.php:417 #, php-format msgid "%s status" msgstr "Estado de %s" -#: lib/mail.php:439 +#: lib/mail.php:443 msgid "SMS confirmation" msgstr "Confirmação SMS" -#: lib/mail.php:463 +#: lib/mail.php:467 #, php-format msgid "You've been nudged by %s" msgstr "%s envia-lhe um toque" -#: lib/mail.php:467 +#: lib/mail.php:471 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -5911,12 +5911,12 @@ msgstr "" "Graciosamente,\n" "%4$s\n" -#: lib/mail.php:510 +#: lib/mail.php:517 #, php-format msgid "New private message from %s" msgstr "Nova mensagem privada de %s" -#: lib/mail.php:514 +#: lib/mail.php:521 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -5949,12 +5949,12 @@ msgstr "" "Profusos cumprimentos,\n" "%5$s\n" -#: lib/mail.php:559 +#: lib/mail.php:568 #, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "%s (@%s) adicionou a sua nota às favoritas." -#: lib/mail.php:561 +#: lib/mail.php:570 #, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -5991,12 +5991,12 @@ msgstr "" "Sinceramente,\n" "%6$s\n" -#: lib/mail.php:624 +#: lib/mail.php:635 #, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "%s (@%s) enviou uma nota à sua atenção" -#: lib/mail.php:626 +#: lib/mail.php:637 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" diff --git a/locale/pt_BR/LC_MESSAGES/statusnet.po b/locale/pt_BR/LC_MESSAGES/statusnet.po index 65061f02d6..51d926ebab 100644 --- a/locale/pt_BR/LC_MESSAGES/statusnet.po +++ b/locale/pt_BR/LC_MESSAGES/statusnet.po @@ -11,12 +11,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-04 18:55+0000\n" -"PO-Revision-Date: 2010-03-05 22:36:30+0000\n" +"POT-Creation-Date: 2010-03-06 23:49+0000\n" +"PO-Revision-Date: 2010-03-06 23:50:51+0000\n" "Language-Team: Brazilian Portuguese\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63299); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63350); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: out-statusnet\n" @@ -105,7 +105,7 @@ msgstr "Esta página não existe." #: actions/otp.php:76 actions/remotesubscribe.php:145 #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 -#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:40 #: actions/xrds.php:71 lib/command.php:163 lib/command.php:302 #: lib/command.php:355 lib/command.php:401 lib/command.php:462 #: lib/command.php:518 lib/galleryaction.php:59 lib/mailbox.php:82 @@ -707,7 +707,7 @@ msgstr "Repetições de %s" msgid "Notices tagged with %s" msgstr "Mensagens etiquetadas como %s" -#: actions/apitimelinetag.php:104 actions/tagrss.php:64 +#: actions/apitimelinetag.php:104 actions/tagrss.php:65 #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Mensagens etiquetadas como %1$s no %2$s!" @@ -748,7 +748,7 @@ msgstr "" #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 #: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -#: actions/userrss.php:103 +#: actions/userrss.php:106 msgid "User without matching profile" msgstr "Usuário sem um perfil correspondente" @@ -1755,7 +1755,7 @@ msgstr "Tornar administrador" msgid "Make this user an admin" msgstr "Torna este usuário um administrador" -#: actions/grouprss.php:138 actions/userrss.php:90 +#: actions/grouprss.php:138 actions/userrss.php:93 #: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 #, php-format msgid "%s timeline" @@ -4490,7 +4490,7 @@ msgstr "" "Experimente [procurar por grupos](%%action.groupsearch%%) e associar-se à " "eles." -#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: actions/userrss.php:95 lib/atomgroupnoticefeed.php:66 #: lib/atomusernoticefeed.php:72 #, php-format msgid "Updates from %1$s on %2$s!" @@ -5279,12 +5279,12 @@ msgstr "%s deixou o grupo %s" msgid "Fullname: %s" msgstr "Nome completo: %s" -#: lib/command.php:312 lib/mail.php:254 +#: lib/command.php:312 lib/mail.php:258 #, php-format msgid "Location: %s" msgstr "Localização: %s" -#: lib/command.php:315 lib/mail.php:256 +#: lib/command.php:315 lib/mail.php:260 #, php-format msgid "Homepage: %s" msgstr "Site: %s" @@ -5763,11 +5763,11 @@ msgstr "Autentique-se com um nome de usuário e uma senha" msgid "Sign up for a new account" msgstr "Cadastre-se para uma nova conta" -#: lib/mail.php:172 +#: lib/mail.php:173 msgid "Email address confirmation" msgstr "Confirmação do endereço de e-mail" -#: lib/mail.php:174 +#: lib/mail.php:175 #, php-format msgid "" "Hey, %s.\n" @@ -5796,12 +5796,12 @@ msgstr "" "Obrigado pela sua atenção, \n" "%s\n" -#: lib/mail.php:236 +#: lib/mail.php:240 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s agora está acompanhando suas mensagens no %2$s." -#: lib/mail.php:241 +#: lib/mail.php:245 #, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -5826,17 +5826,17 @@ msgstr "" "----\n" "Altere seu endereço de e-mail e suas opções de notificação em %8$s\n" -#: lib/mail.php:258 +#: lib/mail.php:262 #, php-format msgid "Bio: %s" msgstr "Descrição: %s" -#: lib/mail.php:286 +#: lib/mail.php:290 #, php-format msgid "New email address for posting to %s" msgstr "Novo endereço de e-mail para publicar no %s" -#: lib/mail.php:289 +#: lib/mail.php:293 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -5857,21 +5857,21 @@ msgstr "" "Atenciosamente,\n" "%4$s" -#: lib/mail.php:413 +#: lib/mail.php:417 #, php-format msgid "%s status" msgstr "Mensagem de %s" -#: lib/mail.php:439 +#: lib/mail.php:443 msgid "SMS confirmation" msgstr "Confirmação de SMS" -#: lib/mail.php:463 +#: lib/mail.php:467 #, php-format msgid "You've been nudged by %s" msgstr "Você teve a atenção chamada por %s" -#: lib/mail.php:467 +#: lib/mail.php:471 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -5898,12 +5898,12 @@ msgstr "" "Atenciosamente,\n" "%4$s\n" -#: lib/mail.php:510 +#: lib/mail.php:517 #, php-format msgid "New private message from %s" msgstr "Nova mensagem particular de %s" -#: lib/mail.php:514 +#: lib/mail.php:521 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -5936,12 +5936,12 @@ msgstr "" "Atenciosamente,\n" "%5$s\n" -#: lib/mail.php:559 +#: lib/mail.php:568 #, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "%s (@%s) marcou sua mensagem como favorita" -#: lib/mail.php:561 +#: lib/mail.php:570 #, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -5978,12 +5978,12 @@ msgstr "" "Atenciosamente,\n" "%6$s\n" -#: lib/mail.php:624 +#: lib/mail.php:635 #, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "%s (@%s) enviou uma mensagem citando você" -#: lib/mail.php:626 +#: lib/mail.php:637 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" diff --git a/locale/ru/LC_MESSAGES/statusnet.po b/locale/ru/LC_MESSAGES/statusnet.po index 94e9a79029..03aaa074a2 100644 --- a/locale/ru/LC_MESSAGES/statusnet.po +++ b/locale/ru/LC_MESSAGES/statusnet.po @@ -12,12 +12,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-04 18:55+0000\n" -"PO-Revision-Date: 2010-03-05 22:36:33+0000\n" +"POT-Creation-Date: 2010-03-06 23:49+0000\n" +"PO-Revision-Date: 2010-03-06 23:50:54+0000\n" "Language-Team: Russian\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63299); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63350); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: out-statusnet\n" @@ -106,7 +106,7 @@ msgstr "Нет такой страницы" #: actions/otp.php:76 actions/remotesubscribe.php:145 #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 -#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:40 #: actions/xrds.php:71 lib/command.php:163 lib/command.php:302 #: lib/command.php:355 lib/command.php:401 lib/command.php:462 #: lib/command.php:518 lib/galleryaction.php:59 lib/mailbox.php:82 @@ -703,7 +703,7 @@ msgstr "Повторы за %s" msgid "Notices tagged with %s" msgstr "Записи с тегом %s" -#: actions/apitimelinetag.php:104 actions/tagrss.php:64 +#: actions/apitimelinetag.php:104 actions/tagrss.php:65 #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Обновления с тегом %1$s на %2$s!" @@ -744,7 +744,7 @@ msgstr "" #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 #: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -#: actions/userrss.php:103 +#: actions/userrss.php:106 msgid "User without matching profile" msgstr "Пользователь без соответствующего профиля" @@ -1751,7 +1751,7 @@ msgstr "Сделать администратором" msgid "Make this user an admin" msgstr "Сделать этого пользователя администратором" -#: actions/grouprss.php:138 actions/userrss.php:90 +#: actions/grouprss.php:138 actions/userrss.php:93 #: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 #, php-format msgid "%s timeline" @@ -4459,7 +4459,7 @@ msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" "Попробуйте [найти группы](%%action.groupsearch%%) и присоединиться к ним." -#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: actions/userrss.php:95 lib/atomgroupnoticefeed.php:66 #: lib/atomusernoticefeed.php:72 #, php-format msgid "Updates from %1$s on %2$s!" @@ -5225,12 +5225,12 @@ msgstr "%1$s покинул группу %2$s" msgid "Fullname: %s" msgstr "Полное имя: %s" -#: lib/command.php:312 lib/mail.php:254 +#: lib/command.php:312 lib/mail.php:258 #, php-format msgid "Location: %s" msgstr "Месторасположение: %s" -#: lib/command.php:315 lib/mail.php:256 +#: lib/command.php:315 lib/mail.php:260 #, php-format msgid "Homepage: %s" msgstr "Домашняя страница: %s" @@ -5707,11 +5707,11 @@ msgstr "Войти с вашим ником и паролем." msgid "Sign up for a new account" msgstr "Создать новый аккаунт" -#: lib/mail.php:172 +#: lib/mail.php:173 msgid "Email address confirmation" msgstr "Подтверждение электронного адреса" -#: lib/mail.php:174 +#: lib/mail.php:175 #, php-format msgid "" "Hey, %s.\n" @@ -5741,12 +5741,12 @@ msgstr "" "Благодарим за потраченное время, \n" "%s\n" -#: lib/mail.php:236 +#: lib/mail.php:240 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s теперь следит за вашими записями на %2$s." -#: lib/mail.php:241 +#: lib/mail.php:245 #, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -5771,17 +5771,17 @@ msgstr "" "----\n" "Измените email-адрес и настройки уведомлений на %8$s\n" -#: lib/mail.php:258 +#: lib/mail.php:262 #, php-format msgid "Bio: %s" msgstr "Биография: %s" -#: lib/mail.php:286 +#: lib/mail.php:290 #, php-format msgid "New email address for posting to %s" msgstr "Новый электронный адрес для постинга %s" -#: lib/mail.php:289 +#: lib/mail.php:293 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -5802,21 +5802,21 @@ msgstr "" "Искренне Ваш,\n" "%4$s" -#: lib/mail.php:413 +#: lib/mail.php:417 #, php-format msgid "%s status" msgstr "%s статус" -#: lib/mail.php:439 +#: lib/mail.php:443 msgid "SMS confirmation" msgstr "Подтверждение СМС" -#: lib/mail.php:463 +#: lib/mail.php:467 #, php-format msgid "You've been nudged by %s" msgstr "Вас «подтолкнул» пользователь %s" -#: lib/mail.php:467 +#: lib/mail.php:471 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -5843,12 +5843,12 @@ msgstr "" "С уважением,\n" "%4$s\n" -#: lib/mail.php:510 +#: lib/mail.php:517 #, php-format msgid "New private message from %s" msgstr "Новое приватное сообщение от %s" -#: lib/mail.php:514 +#: lib/mail.php:521 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -5881,12 +5881,12 @@ msgstr "" "С уважением,\n" "%5$s\n" -#: lib/mail.php:559 +#: lib/mail.php:568 #, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "%s (@%s) добавил вашу запись в число своих любимых" -#: lib/mail.php:561 +#: lib/mail.php:570 #, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -5923,12 +5923,12 @@ msgstr "" "С уважением,\n" "%6$s\n" -#: lib/mail.php:624 +#: lib/mail.php:635 #, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "%s (@%s) отправил запись для вашего внимания" -#: lib/mail.php:626 +#: lib/mail.php:637 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" diff --git a/locale/statusnet.po b/locale/statusnet.po index 0f6185ffcb..0e0a236c04 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: 2010-03-05 22:34+0000\n" +"POT-Creation-Date: 2010-03-06 23:49+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -98,7 +98,7 @@ msgstr "" #: actions/otp.php:76 actions/remotesubscribe.php:145 #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 -#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:40 #: actions/xrds.php:71 lib/command.php:163 lib/command.php:302 #: lib/command.php:355 lib/command.php:401 lib/command.php:462 #: lib/command.php:518 lib/galleryaction.php:59 lib/mailbox.php:82 @@ -674,7 +674,7 @@ msgstr "" msgid "Notices tagged with %s" msgstr "" -#: actions/apitimelinetag.php:104 actions/tagrss.php:64 +#: actions/apitimelinetag.php:104 actions/tagrss.php:65 #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "" @@ -714,7 +714,7 @@ msgstr "" #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 #: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -#: actions/userrss.php:103 +#: actions/userrss.php:106 msgid "User without matching profile" msgstr "" @@ -1681,7 +1681,7 @@ msgstr "" msgid "Make this user an admin" msgstr "" -#: actions/grouprss.php:138 actions/userrss.php:90 +#: actions/grouprss.php:138 actions/userrss.php:93 #: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 #, php-format msgid "%s timeline" @@ -4184,7 +4184,7 @@ msgstr "" msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" -#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: actions/userrss.php:95 lib/atomgroupnoticefeed.php:66 #: lib/atomusernoticefeed.php:72 #, php-format msgid "Updates from %1$s on %2$s!" @@ -4915,12 +4915,12 @@ msgstr "" msgid "Fullname: %s" msgstr "" -#: lib/command.php:312 lib/mail.php:254 +#: lib/command.php:312 lib/mail.php:258 #, php-format msgid "Location: %s" msgstr "" -#: lib/command.php:315 lib/mail.php:256 +#: lib/command.php:315 lib/mail.php:260 #, php-format msgid "Homepage: %s" msgstr "" @@ -5352,11 +5352,11 @@ msgstr "" msgid "Sign up for a new account" msgstr "" -#: lib/mail.php:172 +#: lib/mail.php:173 msgid "Email address confirmation" msgstr "" -#: lib/mail.php:174 +#: lib/mail.php:175 #, php-format msgid "" "Hey, %s.\n" @@ -5373,12 +5373,12 @@ msgid "" "%s\n" msgstr "" -#: lib/mail.php:236 +#: lib/mail.php:240 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "" -#: lib/mail.php:241 +#: lib/mail.php:245 #, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -5393,17 +5393,17 @@ msgid "" "Change your email address or notification options at %8$s\n" msgstr "" -#: lib/mail.php:258 +#: lib/mail.php:262 #, php-format msgid "Bio: %s" msgstr "" -#: lib/mail.php:286 +#: lib/mail.php:290 #, php-format msgid "New email address for posting to %s" msgstr "" -#: lib/mail.php:289 +#: lib/mail.php:293 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -5416,21 +5416,21 @@ msgid "" "%4$s" msgstr "" -#: lib/mail.php:413 +#: lib/mail.php:417 #, php-format msgid "%s status" msgstr "" -#: lib/mail.php:439 +#: lib/mail.php:443 msgid "SMS confirmation" msgstr "" -#: lib/mail.php:463 +#: lib/mail.php:467 #, php-format msgid "You've been nudged by %s" msgstr "" -#: lib/mail.php:467 +#: lib/mail.php:471 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -5446,12 +5446,12 @@ msgid "" "%4$s\n" msgstr "" -#: lib/mail.php:510 +#: lib/mail.php:517 #, php-format msgid "New private message from %s" msgstr "" -#: lib/mail.php:514 +#: lib/mail.php:521 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -5470,12 +5470,12 @@ msgid "" "%5$s\n" msgstr "" -#: lib/mail.php:559 +#: lib/mail.php:568 #, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "" -#: lib/mail.php:561 +#: lib/mail.php:570 #, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -5496,12 +5496,12 @@ msgid "" "%6$s\n" msgstr "" -#: lib/mail.php:624 +#: lib/mail.php:635 #, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "" -#: lib/mail.php:626 +#: lib/mail.php:637 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" diff --git a/locale/sv/LC_MESSAGES/statusnet.po b/locale/sv/LC_MESSAGES/statusnet.po index ffafd9f939..2a508849f2 100644 --- a/locale/sv/LC_MESSAGES/statusnet.po +++ b/locale/sv/LC_MESSAGES/statusnet.po @@ -9,12 +9,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-04 18:55+0000\n" -"PO-Revision-Date: 2010-03-05 22:36:36+0000\n" +"POT-Creation-Date: 2010-03-06 23:49+0000\n" +"PO-Revision-Date: 2010-03-06 23:50:58+0000\n" "Language-Team: Swedish\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63299); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63350); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: out-statusnet\n" @@ -102,7 +102,7 @@ msgstr "Ingen sådan sida" #: actions/otp.php:76 actions/remotesubscribe.php:145 #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 -#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:40 #: actions/xrds.php:71 lib/command.php:163 lib/command.php:302 #: lib/command.php:355 lib/command.php:401 lib/command.php:462 #: lib/command.php:518 lib/galleryaction.php:59 lib/mailbox.php:82 @@ -691,7 +691,7 @@ msgstr "Upprepningar av %s" msgid "Notices tagged with %s" msgstr "Notiser taggade med %s" -#: actions/apitimelinetag.php:104 actions/tagrss.php:64 +#: actions/apitimelinetag.php:104 actions/tagrss.php:65 #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Uppdateringar taggade med %1$s på %2$s!" @@ -732,7 +732,7 @@ msgstr "" #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 #: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -#: actions/userrss.php:103 +#: actions/userrss.php:106 msgid "User without matching profile" msgstr "Användare utan matchande profil" @@ -1730,7 +1730,7 @@ msgstr "Gör till administratör" msgid "Make this user an admin" msgstr "Gör denna användare till administratör" -#: actions/grouprss.php:138 actions/userrss.php:90 +#: actions/grouprss.php:138 actions/userrss.php:93 #: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 #, php-format msgid "%s timeline" @@ -4445,7 +4445,7 @@ msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" "Prova att [söka efter grupper](%%action.groupsearch%%) och gå med i dem." -#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: actions/userrss.php:95 lib/atomgroupnoticefeed.php:66 #: lib/atomusernoticefeed.php:72 #, php-format msgid "Updates from %1$s on %2$s!" @@ -5210,12 +5210,12 @@ msgstr "%s lämnade grupp %s" msgid "Fullname: %s" msgstr "Fullständigt namn: %s" -#: lib/command.php:312 lib/mail.php:254 +#: lib/command.php:312 lib/mail.php:258 #, php-format msgid "Location: %s" msgstr "Plats: %s" -#: lib/command.php:315 lib/mail.php:256 +#: lib/command.php:315 lib/mail.php:260 #, php-format msgid "Homepage: %s" msgstr "Hemsida: %s" @@ -5688,11 +5688,11 @@ msgstr "Logga in med ett användarnamn och lösenord" msgid "Sign up for a new account" msgstr "Registrera dig för ett nytt konto" -#: lib/mail.php:172 +#: lib/mail.php:173 msgid "Email address confirmation" msgstr "E-postadressbekräftelse" -#: lib/mail.php:174 +#: lib/mail.php:175 #, php-format msgid "" "Hey, %s.\n" @@ -5721,12 +5721,12 @@ msgstr "" "Tack för din tid, \n" "%s\n" -#: lib/mail.php:236 +#: lib/mail.php:240 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s lyssnar nu på dina notiser på %2$s." -#: lib/mail.php:241 +#: lib/mail.php:245 #, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -5751,17 +5751,17 @@ msgstr "" "----\n" "Ändra din e-postadress eller notiferingsinställningar på %8$s\n" -#: lib/mail.php:258 +#: lib/mail.php:262 #, php-format msgid "Bio: %s" msgstr "Biografi: %s" -#: lib/mail.php:286 +#: lib/mail.php:290 #, php-format msgid "New email address for posting to %s" msgstr "Ny e-postadress för att skicka till %s" -#: lib/mail.php:289 +#: lib/mail.php:293 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -5782,21 +5782,21 @@ msgstr "" "Med vänliga hälsningar,\n" "%4$s" -#: lib/mail.php:413 +#: lib/mail.php:417 #, php-format msgid "%s status" msgstr "%s status" -#: lib/mail.php:439 +#: lib/mail.php:443 msgid "SMS confirmation" msgstr "SMS-bekräftelse" -#: lib/mail.php:463 +#: lib/mail.php:467 #, php-format msgid "You've been nudged by %s" msgstr "Du har blivit knuffad av %s" -#: lib/mail.php:467 +#: lib/mail.php:471 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -5823,12 +5823,12 @@ msgstr "" "Med vänliga hälsningar,\n" "%4$s\n" -#: lib/mail.php:510 +#: lib/mail.php:517 #, php-format msgid "New private message from %s" msgstr "Nytt privat meddelande från %s" -#: lib/mail.php:514 +#: lib/mail.php:521 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -5861,12 +5861,12 @@ msgstr "" "Med vänliga hälsningar,\n" "%5$s\n" -#: lib/mail.php:559 +#: lib/mail.php:568 #, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "%s (@%s) lade till din notis som en favorit" -#: lib/mail.php:561 +#: lib/mail.php:570 #, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -5903,12 +5903,12 @@ msgstr "" "Med vänliga hälsningar,\n" "%6$s\n" -#: lib/mail.php:624 +#: lib/mail.php:635 #, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "%s (@%s) skickade en notis för din uppmärksamhet" -#: lib/mail.php:626 +#: lib/mail.php:637 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" diff --git a/locale/te/LC_MESSAGES/statusnet.po b/locale/te/LC_MESSAGES/statusnet.po index f32e1499e7..c8a2f5c1ad 100644 --- a/locale/te/LC_MESSAGES/statusnet.po +++ b/locale/te/LC_MESSAGES/statusnet.po @@ -9,12 +9,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-04 18:55+0000\n" -"PO-Revision-Date: 2010-03-05 22:36:39+0000\n" +"POT-Creation-Date: 2010-03-06 23:49+0000\n" +"PO-Revision-Date: 2010-03-06 23:51:01+0000\n" "Language-Team: Telugu\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63299); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63350); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: te\n" "X-Message-Group: out-statusnet\n" @@ -106,7 +106,7 @@ msgstr "అటువంటి పేజీ లేదు" #: actions/otp.php:76 actions/remotesubscribe.php:145 #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 -#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:40 #: actions/xrds.php:71 lib/command.php:163 lib/command.php:302 #: lib/command.php:355 lib/command.php:401 lib/command.php:462 #: lib/command.php:518 lib/galleryaction.php:59 lib/mailbox.php:82 @@ -692,7 +692,7 @@ msgstr "%s యొక్క పునరావృతాలు" msgid "Notices tagged with %s" msgstr "" -#: actions/apitimelinetag.php:104 actions/tagrss.php:64 +#: actions/apitimelinetag.php:104 actions/tagrss.php:65 #, fuzzy, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "%s యొక్క మైక్రోబ్లాగు" @@ -733,7 +733,7 @@ msgstr "మీ వ్యక్తిగత అవతారాన్ని మీ #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 #: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -#: actions/userrss.php:103 +#: actions/userrss.php:106 msgid "User without matching profile" msgstr "" @@ -1719,7 +1719,7 @@ msgstr "నిర్వాహకున్ని చేయి" msgid "Make this user an admin" msgstr "ఈ వాడుకరిని నిర్వాహకున్ని చేయి" -#: actions/grouprss.php:138 actions/userrss.php:90 +#: actions/grouprss.php:138 actions/userrss.php:93 #: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 #, php-format msgid "%s timeline" @@ -4317,7 +4317,7 @@ msgstr "%s ఏ గుంపు లోనూ సభ్యులు కాదు." msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "[గుంపులని వెతికి](%%action.groupsearch%%) వాటిలో చేరడానికి ప్రయత్నించండి." -#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: actions/userrss.php:95 lib/atomgroupnoticefeed.php:66 #: lib/atomusernoticefeed.php:72 #, php-format msgid "Updates from %1$s on %2$s!" @@ -5099,12 +5099,12 @@ msgstr "%2$s గుంపు నుండి %1$s వైదొలిగారు msgid "Fullname: %s" msgstr "పూర్తిపేరు: %s" -#: lib/command.php:312 lib/mail.php:254 +#: lib/command.php:312 lib/mail.php:258 #, php-format msgid "Location: %s" msgstr "ప్రాంతం: %s" -#: lib/command.php:315 lib/mail.php:256 +#: lib/command.php:315 lib/mail.php:260 #, php-format msgid "Homepage: %s" msgstr "హోంపేజీ: %s" @@ -5545,11 +5545,11 @@ msgstr "వాడుకరిపేరు మరియు సంకేతపద msgid "Sign up for a new account" msgstr "కొత్త ఖాతా సృష్టించుకోండి" -#: lib/mail.php:172 +#: lib/mail.php:173 msgid "Email address confirmation" msgstr "ఈమెయిల్ చిరునామా నిర్ధారణ" -#: lib/mail.php:174 +#: lib/mail.php:175 #, php-format msgid "" "Hey, %s.\n" @@ -5566,12 +5566,12 @@ msgid "" "%s\n" msgstr "" -#: lib/mail.php:236 +#: lib/mail.php:240 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s ఇప్పుడు %2$sలో మీ నోటీసులని వింటున్నారు." -#: lib/mail.php:241 +#: lib/mail.php:245 #, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -5596,17 +5596,17 @@ msgstr "" "----\n" "మీ ఈమెయిలు చిరునామాని లేదా గమనింపుల ఎంపికలను %8$s వద్ద మార్చుకోండి\n" -#: lib/mail.php:258 +#: lib/mail.php:262 #, php-format msgid "Bio: %s" msgstr "స్వపరిచయం: %s" -#: lib/mail.php:286 +#: lib/mail.php:290 #, php-format msgid "New email address for posting to %s" msgstr "" -#: lib/mail.php:289 +#: lib/mail.php:293 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -5619,21 +5619,21 @@ msgid "" "%4$s" msgstr "" -#: lib/mail.php:413 +#: lib/mail.php:417 #, php-format msgid "%s status" msgstr "%s స్థితి" -#: lib/mail.php:439 +#: lib/mail.php:443 msgid "SMS confirmation" msgstr "SMS నిర్ధారణ" -#: lib/mail.php:463 +#: lib/mail.php:467 #, php-format msgid "You've been nudged by %s" msgstr "" -#: lib/mail.php:467 +#: lib/mail.php:471 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -5649,12 +5649,12 @@ msgid "" "%4$s\n" msgstr "" -#: lib/mail.php:510 +#: lib/mail.php:517 #, php-format msgid "New private message from %s" msgstr "%s నుండి కొత్త అంతరంగిక సందేశం" -#: lib/mail.php:514 +#: lib/mail.php:521 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -5673,12 +5673,12 @@ msgid "" "%5$s\n" msgstr "" -#: lib/mail.php:559 +#: lib/mail.php:568 #, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "" -#: lib/mail.php:561 +#: lib/mail.php:570 #, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -5699,12 +5699,12 @@ msgid "" "%6$s\n" msgstr "" -#: lib/mail.php:624 +#: lib/mail.php:635 #, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "%s (@%s) మీకు ఒక నోటీసుని పంపించారు" -#: lib/mail.php:626 +#: lib/mail.php:637 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" diff --git a/locale/tr/LC_MESSAGES/statusnet.po b/locale/tr/LC_MESSAGES/statusnet.po index 80dba9abfd..805e552688 100644 --- a/locale/tr/LC_MESSAGES/statusnet.po +++ b/locale/tr/LC_MESSAGES/statusnet.po @@ -9,12 +9,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-04 18:55+0000\n" -"PO-Revision-Date: 2010-03-05 22:36:42+0000\n" +"POT-Creation-Date: 2010-03-06 23:49+0000\n" +"PO-Revision-Date: 2010-03-06 23:51:04+0000\n" "Language-Team: Turkish\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63299); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63350); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tr\n" "X-Message-Group: out-statusnet\n" @@ -109,7 +109,7 @@ msgstr "Böyle bir durum mesajı yok." #: actions/otp.php:76 actions/remotesubscribe.php:145 #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 -#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:40 #: actions/xrds.php:71 lib/command.php:163 lib/command.php:302 #: lib/command.php:355 lib/command.php:401 lib/command.php:462 #: lib/command.php:518 lib/galleryaction.php:59 lib/mailbox.php:82 @@ -712,7 +712,7 @@ msgstr "%s için cevaplar" msgid "Notices tagged with %s" msgstr "" -#: actions/apitimelinetag.php:104 actions/tagrss.php:64 +#: actions/apitimelinetag.php:104 actions/tagrss.php:65 #, fuzzy, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "%s adli kullanicinin durum mesajlari" @@ -754,7 +754,7 @@ msgstr "" #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 #: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -#: actions/userrss.php:103 +#: actions/userrss.php:106 msgid "User without matching profile" msgstr "" @@ -1788,7 +1788,7 @@ msgstr "" msgid "Make this user an admin" msgstr "" -#: actions/grouprss.php:138 actions/userrss.php:90 +#: actions/grouprss.php:138 actions/userrss.php:93 #: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 #, php-format msgid "%s timeline" @@ -4430,7 +4430,7 @@ msgstr "Bize o profili yollamadınız" msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" -#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: actions/userrss.php:95 lib/atomgroupnoticefeed.php:66 #: lib/atomusernoticefeed.php:72 #, php-format msgid "Updates from %1$s on %2$s!" @@ -5224,12 +5224,12 @@ msgstr "%1$s'in %2$s'deki durum mesajları " msgid "Fullname: %s" msgstr "Tam İsim" -#: lib/command.php:312 lib/mail.php:254 +#: lib/command.php:312 lib/mail.php:258 #, php-format msgid "Location: %s" msgstr "" -#: lib/command.php:315 lib/mail.php:256 +#: lib/command.php:315 lib/mail.php:260 #, php-format msgid "Homepage: %s" msgstr "" @@ -5684,11 +5684,11 @@ msgstr "Geçersiz kullanıcı adı veya parola." msgid "Sign up for a new account" msgstr "Yeni hesap oluştur" -#: lib/mail.php:172 +#: lib/mail.php:173 msgid "Email address confirmation" msgstr "Eposta adresi onayı" -#: lib/mail.php:174 +#: lib/mail.php:175 #, php-format msgid "" "Hey, %s.\n" @@ -5705,12 +5705,12 @@ msgid "" "%s\n" msgstr "" -#: lib/mail.php:236 +#: lib/mail.php:240 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s %2$s'da durumunuzu takip ediyor" -#: lib/mail.php:241 +#: lib/mail.php:245 #, fuzzy, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -5731,17 +5731,17 @@ msgstr "" "Kendisini durumsuz bırakmayın!,\n" "%4$s.\n" -#: lib/mail.php:258 +#: lib/mail.php:262 #, fuzzy, php-format msgid "Bio: %s" msgstr "Hakkında" -#: lib/mail.php:286 +#: lib/mail.php:290 #, php-format msgid "New email address for posting to %s" msgstr "" -#: lib/mail.php:289 +#: lib/mail.php:293 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -5754,21 +5754,21 @@ msgid "" "%4$s" msgstr "" -#: lib/mail.php:413 +#: lib/mail.php:417 #, php-format msgid "%s status" msgstr "%s durum" -#: lib/mail.php:439 +#: lib/mail.php:443 msgid "SMS confirmation" msgstr "" -#: lib/mail.php:463 +#: lib/mail.php:467 #, php-format msgid "You've been nudged by %s" msgstr "" -#: lib/mail.php:467 +#: lib/mail.php:471 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -5784,12 +5784,12 @@ msgid "" "%4$s\n" msgstr "" -#: lib/mail.php:510 +#: lib/mail.php:517 #, php-format msgid "New private message from %s" msgstr "" -#: lib/mail.php:514 +#: lib/mail.php:521 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -5808,12 +5808,12 @@ msgid "" "%5$s\n" msgstr "" -#: lib/mail.php:559 +#: lib/mail.php:568 #, fuzzy, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "%1$s %2$s'da durumunuzu takip ediyor" -#: lib/mail.php:561 +#: lib/mail.php:570 #, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -5834,12 +5834,12 @@ msgid "" "%6$s\n" msgstr "" -#: lib/mail.php:624 +#: lib/mail.php:635 #, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "" -#: lib/mail.php:626 +#: lib/mail.php:637 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" diff --git a/locale/uk/LC_MESSAGES/statusnet.po b/locale/uk/LC_MESSAGES/statusnet.po index 145eb38542..78aa5dc235 100644 --- a/locale/uk/LC_MESSAGES/statusnet.po +++ b/locale/uk/LC_MESSAGES/statusnet.po @@ -10,12 +10,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-04 18:55+0000\n" -"PO-Revision-Date: 2010-03-05 22:36:45+0000\n" +"POT-Creation-Date: 2010-03-06 23:49+0000\n" +"PO-Revision-Date: 2010-03-06 23:51:07+0000\n" "Language-Team: Ukrainian\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63299); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63350); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: out-statusnet\n" @@ -105,7 +105,7 @@ msgstr "Немає такої сторінки" #: actions/otp.php:76 actions/remotesubscribe.php:145 #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 -#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:40 #: actions/xrds.php:71 lib/command.php:163 lib/command.php:302 #: lib/command.php:355 lib/command.php:401 lib/command.php:462 #: lib/command.php:518 lib/galleryaction.php:59 lib/mailbox.php:82 @@ -702,7 +702,7 @@ msgstr "Повторення %s" msgid "Notices tagged with %s" msgstr "Дописи позначені з %s" -#: actions/apitimelinetag.php:104 actions/tagrss.php:64 +#: actions/apitimelinetag.php:104 actions/tagrss.php:65 #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Оновлення позначені з %1$s на %2$s!" @@ -742,7 +742,7 @@ msgstr "Ви можете завантажити аватару. Максима #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 #: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -#: actions/userrss.php:103 +#: actions/userrss.php:106 msgid "User without matching profile" msgstr "Користувач з невідповідним профілем" @@ -1735,7 +1735,7 @@ msgstr "Зробити адміном" msgid "Make this user an admin" msgstr "Надати цьому користувачеві права адміністратора" -#: actions/grouprss.php:138 actions/userrss.php:90 +#: actions/grouprss.php:138 actions/userrss.php:93 #: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 #, php-format msgid "%s timeline" @@ -4444,7 +4444,7 @@ msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" "Спробуйте [знайти якісь групи](%%action.groupsearch%%) і приєднайтеся до них." -#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: actions/userrss.php:95 lib/atomgroupnoticefeed.php:66 #: lib/atomusernoticefeed.php:72 #, php-format msgid "Updates from %1$s on %2$s!" @@ -5206,12 +5206,12 @@ msgstr "%1$s залишив групу %2$s" msgid "Fullname: %s" msgstr "Повне ім’я: %s" -#: lib/command.php:312 lib/mail.php:254 +#: lib/command.php:312 lib/mail.php:258 #, php-format msgid "Location: %s" msgstr "Локація: %s" -#: lib/command.php:315 lib/mail.php:256 +#: lib/command.php:315 lib/mail.php:260 #, php-format msgid "Homepage: %s" msgstr "Веб-сторінка: %s" @@ -5685,11 +5685,11 @@ msgstr "Увійти використовуючи ім’я та пароль" msgid "Sign up for a new account" msgstr "Зареєструвати новий акаунт" -#: lib/mail.php:172 +#: lib/mail.php:173 msgid "Email address confirmation" msgstr "Підтвердження електронної адреси" -#: lib/mail.php:174 +#: lib/mail.php:175 #, php-format msgid "" "Hey, %s.\n" @@ -5718,12 +5718,12 @@ msgstr "" "Дякуємо за Ваш час \n" "%s\n" -#: lib/mail.php:236 +#: lib/mail.php:240 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s тепер слідкує за Вашими дописами на %2$s." -#: lib/mail.php:241 +#: lib/mail.php:245 #, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -5748,17 +5748,17 @@ msgstr "" "----\n" "Змінити електронну адресу або умови сповіщення — %8$s\n" -#: lib/mail.php:258 +#: lib/mail.php:262 #, php-format msgid "Bio: %s" msgstr "Про себе: %s" -#: lib/mail.php:286 +#: lib/mail.php:290 #, php-format msgid "New email address for posting to %s" msgstr "Нова електронна адреса для надсилання повідомлень на %s" -#: lib/mail.php:289 +#: lib/mail.php:293 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -5779,21 +5779,21 @@ msgstr "" "Щиро Ваші,\n" "%4$s" -#: lib/mail.php:413 +#: lib/mail.php:417 #, php-format msgid "%s status" msgstr "%s статус" -#: lib/mail.php:439 +#: lib/mail.php:443 msgid "SMS confirmation" msgstr "Підтвердження СМС" -#: lib/mail.php:463 +#: lib/mail.php:467 #, php-format msgid "You've been nudged by %s" msgstr "Вас спробував «розштовхати» %s" -#: lib/mail.php:467 +#: lib/mail.php:471 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -5820,12 +5820,12 @@ msgstr "" "З найкращими побажаннями,\n" "%4$s\n" -#: lib/mail.php:510 +#: lib/mail.php:517 #, php-format msgid "New private message from %s" msgstr "Нове приватне повідомлення від %s" -#: lib/mail.php:514 +#: lib/mail.php:521 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -5858,12 +5858,12 @@ msgstr "" "З найкращими побажаннями,\n" "%5$s\n" -#: lib/mail.php:559 +#: lib/mail.php:568 #, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "%s (@%s) додав(ла) Ваш допис обраних" -#: lib/mail.php:561 +#: lib/mail.php:570 #, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -5900,12 +5900,12 @@ msgstr "" "Щиро Ваші,\n" "%6$s\n" -#: lib/mail.php:624 +#: lib/mail.php:635 #, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "%s (@%s) пропонує до Вашої уваги наступний допис" -#: lib/mail.php:626 +#: lib/mail.php:637 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" diff --git a/locale/vi/LC_MESSAGES/statusnet.po b/locale/vi/LC_MESSAGES/statusnet.po index dec9eeeba0..59751aa5d1 100644 --- a/locale/vi/LC_MESSAGES/statusnet.po +++ b/locale/vi/LC_MESSAGES/statusnet.po @@ -7,12 +7,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-04 18:55+0000\n" -"PO-Revision-Date: 2010-03-05 22:36:48+0000\n" +"POT-Creation-Date: 2010-03-06 23:49+0000\n" +"PO-Revision-Date: 2010-03-06 23:51:10+0000\n" "Language-Team: Vietnamese\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63299); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63350); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: vi\n" "X-Message-Group: out-statusnet\n" @@ -108,7 +108,7 @@ msgstr "Không có tin nhắn nào." #: actions/otp.php:76 actions/remotesubscribe.php:145 #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 -#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:40 #: actions/xrds.php:71 lib/command.php:163 lib/command.php:302 #: lib/command.php:355 lib/command.php:401 lib/command.php:462 #: lib/command.php:518 lib/galleryaction.php:59 lib/mailbox.php:82 @@ -713,7 +713,7 @@ msgstr "Trả lời cho %s" msgid "Notices tagged with %s" msgstr "Thông báo được gắn thẻ %s" -#: actions/apitimelinetag.php:104 actions/tagrss.php:64 +#: actions/apitimelinetag.php:104 actions/tagrss.php:65 #, fuzzy, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Dòng tin nhắn cho %s" @@ -757,7 +757,7 @@ msgstr "" #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 #: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -#: actions/userrss.php:103 +#: actions/userrss.php:106 #, 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" @@ -1833,7 +1833,7 @@ msgstr "" msgid "Make this user an admin" msgstr "Kênh mà bạn tham gia" -#: actions/grouprss.php:138 actions/userrss.php:90 +#: actions/grouprss.php:138 actions/userrss.php:93 #: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 #, fuzzy, php-format msgid "%s timeline" @@ -4580,7 +4580,7 @@ msgstr "Bạn chưa cập nhật thông tin riêng" msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" -#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: actions/userrss.php:95 lib/atomgroupnoticefeed.php:66 #: lib/atomusernoticefeed.php:72 #, php-format msgid "Updates from %1$s on %2$s!" @@ -5386,12 +5386,12 @@ msgstr "%s và nhóm" msgid "Fullname: %s" msgstr "Tên đầy đủ" -#: lib/command.php:312 lib/mail.php:254 +#: lib/command.php:312 lib/mail.php:258 #, fuzzy, php-format msgid "Location: %s" msgstr "Thành phố: %s" -#: lib/command.php:315 lib/mail.php:256 +#: lib/command.php:315 lib/mail.php:260 #, fuzzy, php-format msgid "Homepage: %s" msgstr "Trang chủ hoặc Blog: %s" @@ -5856,11 +5856,11 @@ msgstr "Sai tên đăng nhập hoặc mật khẩu." msgid "Sign up for a new account" msgstr "Tạo tài khoản mới" -#: lib/mail.php:172 +#: lib/mail.php:173 msgid "Email address confirmation" msgstr "Xac nhan dia chi email" -#: lib/mail.php:174 +#: lib/mail.php:175 #, fuzzy, php-format msgid "" "Hey, %s.\n" @@ -5892,12 +5892,12 @@ msgstr "" "%4$s\n" "\n" -#: lib/mail.php:236 +#: lib/mail.php:240 #, 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/mail.php:241 +#: lib/mail.php:245 #, fuzzy, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -5918,17 +5918,17 @@ msgstr "" "Người bạn trung thành của bạn,\n" "%4$s.\n" -#: lib/mail.php:258 +#: lib/mail.php:262 #, fuzzy, php-format msgid "Bio: %s" msgstr "Thành phố: %s" -#: lib/mail.php:286 +#: lib/mail.php:290 #, php-format msgid "New email address for posting to %s" msgstr "Dia chi email moi de gui tin nhan den %s" -#: lib/mail.php:289 +#: lib/mail.php:293 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -5949,21 +5949,21 @@ msgstr "" "Chúc sức khỏe,\n" "%4$s" -#: lib/mail.php:413 +#: lib/mail.php:417 #, fuzzy, php-format msgid "%s status" msgstr "Trạng thái của %1$s vào %2$s" -#: lib/mail.php:439 +#: lib/mail.php:443 msgid "SMS confirmation" msgstr "Xác nhận SMS" -#: lib/mail.php:463 +#: lib/mail.php:467 #, php-format msgid "You've been nudged by %s" msgstr "" -#: lib/mail.php:467 +#: lib/mail.php:471 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -5979,12 +5979,12 @@ msgid "" "%4$s\n" msgstr "" -#: lib/mail.php:510 +#: lib/mail.php:517 #, php-format msgid "New private message from %s" msgstr "Bạn có tin nhắn riêng từ %s" -#: lib/mail.php:514 +#: lib/mail.php:521 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -6017,12 +6017,12 @@ msgstr "" "Chúc sức khỏe,\n" "%5$s\n" -#: lib/mail.php:559 +#: lib/mail.php:568 #, 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:561 +#: lib/mail.php:570 #, fuzzy, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -6056,12 +6056,12 @@ msgstr "" "Chúc sức khỏe,\n" "%5$s\n" -#: lib/mail.php:624 +#: lib/mail.php:635 #, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "" -#: lib/mail.php:626 +#: lib/mail.php:637 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" diff --git a/locale/zh_CN/LC_MESSAGES/statusnet.po b/locale/zh_CN/LC_MESSAGES/statusnet.po index 36e3a7946f..cc17616169 100644 --- a/locale/zh_CN/LC_MESSAGES/statusnet.po +++ b/locale/zh_CN/LC_MESSAGES/statusnet.po @@ -10,12 +10,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-04 18:55+0000\n" -"PO-Revision-Date: 2010-03-05 22:37:13+0000\n" +"POT-Creation-Date: 2010-03-06 23:49+0000\n" +"PO-Revision-Date: 2010-03-06 23:51:13+0000\n" "Language-Team: Simplified Chinese\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63299); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63350); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: out-statusnet\n" @@ -110,7 +110,7 @@ msgstr "没有该页面" #: actions/otp.php:76 actions/remotesubscribe.php:145 #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 -#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:40 #: actions/xrds.php:71 lib/command.php:163 lib/command.php:302 #: lib/command.php:355 lib/command.php:401 lib/command.php:462 #: lib/command.php:518 lib/galleryaction.php:59 lib/mailbox.php:82 @@ -711,7 +711,7 @@ msgstr "%s 的回复" msgid "Notices tagged with %s" msgstr "带 %s 标签的通告" -#: actions/apitimelinetag.php:104 actions/tagrss.php:64 +#: actions/apitimelinetag.php:104 actions/tagrss.php:65 #, fuzzy, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "%2$s 上 %1$s 的更新!" @@ -753,7 +753,7 @@ msgstr "您可以在这里上传个人头像。" #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 #: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -#: actions/userrss.php:103 +#: actions/userrss.php:106 msgid "User without matching profile" msgstr "找不到匹配的用户。" @@ -1810,7 +1810,7 @@ msgstr "admin管理员" msgid "Make this user an admin" msgstr "" -#: actions/grouprss.php:138 actions/userrss.php:90 +#: actions/grouprss.php:138 actions/userrss.php:93 #: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 #, php-format msgid "%s timeline" @@ -4508,7 +4508,7 @@ msgstr "您未告知此个人信息" msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" -#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: actions/userrss.php:95 lib/atomgroupnoticefeed.php:66 #: lib/atomusernoticefeed.php:72 #, php-format msgid "Updates from %1$s on %2$s!" @@ -5311,12 +5311,12 @@ msgstr "%s 离开群 %s" msgid "Fullname: %s" msgstr "全名:%s" -#: lib/command.php:312 lib/mail.php:254 +#: lib/command.php:312 lib/mail.php:258 #, php-format msgid "Location: %s" msgstr "位置:%s" -#: lib/command.php:315 lib/mail.php:256 +#: lib/command.php:315 lib/mail.php:260 #, php-format msgid "Homepage: %s" msgstr "主页:%s" @@ -5772,11 +5772,11 @@ msgstr "输入用户名和密码以登录。" msgid "Sign up for a new account" msgstr "创建新帐号" -#: lib/mail.php:172 +#: lib/mail.php:173 msgid "Email address confirmation" msgstr "电子邮件地址确认" -#: lib/mail.php:174 +#: lib/mail.php:175 #, php-format msgid "" "Hey, %s.\n" @@ -5793,12 +5793,12 @@ msgid "" "%s\n" msgstr "" -#: lib/mail.php:236 +#: lib/mail.php:240 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s 开始关注您的 %2$s 信息。" -#: lib/mail.php:241 +#: lib/mail.php:245 #, fuzzy, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -5818,19 +5818,19 @@ msgstr "" "\n" "为您效力的 %4$s\n" -#: lib/mail.php:258 +#: lib/mail.php:262 #, fuzzy, php-format msgid "Bio: %s" msgstr "" "自传Bio: %s\n" "\n" -#: lib/mail.php:286 +#: lib/mail.php:290 #, php-format msgid "New email address for posting to %s" msgstr "新的电子邮件地址,用于发布 %s 信息" -#: lib/mail.php:289 +#: lib/mail.php:293 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -5850,21 +5850,21 @@ msgstr "" "\n" "为您效力的 %4$s" -#: lib/mail.php:413 +#: lib/mail.php:417 #, php-format msgid "%s status" msgstr "%s 状态" -#: lib/mail.php:439 +#: lib/mail.php:443 msgid "SMS confirmation" msgstr "SMS短信确认" -#: lib/mail.php:463 +#: lib/mail.php:467 #, php-format msgid "You've been nudged by %s" msgstr "%s 振铃呼叫你" -#: lib/mail.php:467 +#: lib/mail.php:471 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -5880,12 +5880,12 @@ msgid "" "%4$s\n" msgstr "" -#: lib/mail.php:510 +#: lib/mail.php:517 #, php-format msgid "New private message from %s" msgstr "%s 发送了新的私人信息" -#: lib/mail.php:514 +#: lib/mail.php:521 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -5904,12 +5904,12 @@ msgid "" "%5$s\n" msgstr "" -#: lib/mail.php:559 +#: lib/mail.php:568 #, fuzzy, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "%s 收藏了您的通告" -#: lib/mail.php:561 +#: lib/mail.php:570 #, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -5930,12 +5930,12 @@ msgid "" "%6$s\n" msgstr "" -#: lib/mail.php:624 +#: lib/mail.php:635 #, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "" -#: lib/mail.php:626 +#: lib/mail.php:637 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" diff --git a/locale/zh_TW/LC_MESSAGES/statusnet.po b/locale/zh_TW/LC_MESSAGES/statusnet.po index 2829f707e2..3ea887beb8 100644 --- a/locale/zh_TW/LC_MESSAGES/statusnet.po +++ b/locale/zh_TW/LC_MESSAGES/statusnet.po @@ -7,12 +7,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-04 18:55+0000\n" -"PO-Revision-Date: 2010-03-05 22:37:16+0000\n" +"POT-Creation-Date: 2010-03-06 23:49+0000\n" +"PO-Revision-Date: 2010-03-06 23:51:15+0000\n" "Language-Team: Traditional Chinese\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63299); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63350); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hant\n" "X-Message-Group: out-statusnet\n" @@ -105,7 +105,7 @@ msgstr "無此通知" #: actions/otp.php:76 actions/remotesubscribe.php:145 #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 -#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:40 #: actions/xrds.php:71 lib/command.php:163 lib/command.php:302 #: lib/command.php:355 lib/command.php:401 lib/command.php:462 #: lib/command.php:518 lib/galleryaction.php:59 lib/mailbox.php:82 @@ -701,7 +701,7 @@ msgstr "" msgid "Notices tagged with %s" msgstr "" -#: actions/apitimelinetag.php:104 actions/tagrss.php:64 +#: actions/apitimelinetag.php:104 actions/tagrss.php:65 #, fuzzy, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "&s的微型部落格" @@ -743,7 +743,7 @@ msgstr "" #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 #: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -#: actions/userrss.php:103 +#: actions/userrss.php:106 msgid "User without matching profile" msgstr "" @@ -1768,7 +1768,7 @@ msgstr "" msgid "Make this user an admin" msgstr "" -#: actions/grouprss.php:138 actions/userrss.php:90 +#: actions/grouprss.php:138 actions/userrss.php:93 #: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 #, php-format msgid "%s timeline" @@ -4347,7 +4347,7 @@ msgstr "" msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" -#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: actions/userrss.php:95 lib/atomgroupnoticefeed.php:66 #: lib/atomusernoticefeed.php:72 #, php-format msgid "Updates from %1$s on %2$s!" @@ -5125,12 +5125,12 @@ msgstr "%1$s的狀態是%2$s" msgid "Fullname: %s" msgstr "全名" -#: lib/command.php:312 lib/mail.php:254 +#: lib/command.php:312 lib/mail.php:258 #, php-format msgid "Location: %s" msgstr "" -#: lib/command.php:315 lib/mail.php:256 +#: lib/command.php:315 lib/mail.php:260 #, php-format msgid "Homepage: %s" msgstr "" @@ -5577,11 +5577,11 @@ msgstr "使用者名稱或密碼無效" msgid "Sign up for a new account" msgstr "新增帳號" -#: lib/mail.php:172 +#: lib/mail.php:173 msgid "Email address confirmation" msgstr "確認信箱" -#: lib/mail.php:174 +#: lib/mail.php:175 #, php-format msgid "" "Hey, %s.\n" @@ -5598,12 +5598,12 @@ msgid "" "%s\n" msgstr "" -#: lib/mail.php:236 +#: lib/mail.php:240 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "現在%1$s在%2$s成為你的粉絲囉" -#: lib/mail.php:241 +#: lib/mail.php:245 #, fuzzy, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -5625,17 +5625,17 @@ msgstr "" "%4$s.\n" "敬上。\n" -#: lib/mail.php:258 +#: lib/mail.php:262 #, fuzzy, php-format msgid "Bio: %s" msgstr "自我介紹" -#: lib/mail.php:286 +#: lib/mail.php:290 #, php-format msgid "New email address for posting to %s" msgstr "" -#: lib/mail.php:289 +#: lib/mail.php:293 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -5648,21 +5648,21 @@ msgid "" "%4$s" msgstr "" -#: lib/mail.php:413 +#: lib/mail.php:417 #, php-format msgid "%s status" msgstr "" -#: lib/mail.php:439 +#: lib/mail.php:443 msgid "SMS confirmation" msgstr "" -#: lib/mail.php:463 +#: lib/mail.php:467 #, php-format msgid "You've been nudged by %s" msgstr "" -#: lib/mail.php:467 +#: lib/mail.php:471 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -5678,12 +5678,12 @@ msgid "" "%4$s\n" msgstr "" -#: lib/mail.php:510 +#: lib/mail.php:517 #, php-format msgid "New private message from %s" msgstr "" -#: lib/mail.php:514 +#: lib/mail.php:521 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -5702,12 +5702,12 @@ msgid "" "%5$s\n" msgstr "" -#: lib/mail.php:559 +#: lib/mail.php:568 #, fuzzy, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "現在%1$s在%2$s成為你的粉絲囉" -#: lib/mail.php:561 +#: lib/mail.php:570 #, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -5728,12 +5728,12 @@ msgid "" "%6$s\n" msgstr "" -#: lib/mail.php:624 +#: lib/mail.php:635 #, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "" -#: lib/mail.php:626 +#: lib/mail.php:637 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" From b8cb3d2833a5de39e51d5beb463ab8a0d218bbdb Mon Sep 17 00:00:00 2001 From: Sarven Capadisli Date: Mon, 8 Mar 2010 16:08:03 +0000 Subject: [PATCH 353/362] Alignment fix for IE6 --- theme/base/css/ie6.css | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/theme/base/css/ie6.css b/theme/base/css/ie6.css index edc49478f5..6df5e01cee 100644 --- a/theme/base/css/ie6.css +++ b/theme/base/css/ie6.css @@ -12,11 +12,11 @@ margin:0 auto; } #content { -width:69%; +width:66%; } #aside_primary { -padding:5%; -width:29.5%; +padding:1.8%; +width:24%; } .entity_profile .entity_nickname, .entity_profile .entity_location, @@ -32,9 +32,9 @@ margin-bottom:123px; width:20%; } .notice div.entry-content { -width:50%; +width:65%; margin-left:30px; } .notice-options a { width:16px; -} \ No newline at end of file +} From 3f696ff0ed4be5791edd38cf7b2a98a364b95676 Mon Sep 17 00:00:00 2001 From: Jeffery To Date: Fri, 5 Mar 2010 17:54:53 +0800 Subject: [PATCH 354/362] ldap_get_connection() to return null when passed a config with bad user/pw. This mainly affects login; before if the user enters a valid username but invalid password, ldap_get_connection() throws an LDAP_INVALID_CREDENTIALS error. Now the user sees the regular "Incorrect username of password" error message. --- plugins/LdapAuthentication/LdapAuthenticationPlugin.php | 5 +++++ plugins/LdapAuthorization/LdapAuthorizationPlugin.php | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/plugins/LdapAuthentication/LdapAuthenticationPlugin.php b/plugins/LdapAuthentication/LdapAuthenticationPlugin.php index e0fd615dda..4832096765 100644 --- a/plugins/LdapAuthentication/LdapAuthenticationPlugin.php +++ b/plugins/LdapAuthentication/LdapAuthenticationPlugin.php @@ -224,6 +224,11 @@ class LdapAuthenticationPlugin extends AuthenticationPlugin $ldap->setErrorHandling(PEAR_ERROR_RETURN); $err=$ldap->bind(); if (Net_LDAP2::isError($err)) { + // if we were called with a config, assume caller will handle + // incorrect username/password (LDAP_INVALID_CREDENTIALS) + if (isset($config) && $err->getCode() == 0x31) { + return null; + } throw new Exception('Could not connect to LDAP server: '.$err->getMessage()); } if($config == null) $this->default_ldap=$ldap; diff --git a/plugins/LdapAuthorization/LdapAuthorizationPlugin.php b/plugins/LdapAuthorization/LdapAuthorizationPlugin.php index 19aff42b8b..2608025ddc 100644 --- a/plugins/LdapAuthorization/LdapAuthorizationPlugin.php +++ b/plugins/LdapAuthorization/LdapAuthorizationPlugin.php @@ -167,6 +167,11 @@ class LdapAuthorizationPlugin extends AuthorizationPlugin $ldap->setErrorHandling(PEAR_ERROR_RETURN); $err=$ldap->bind(); if (Net_LDAP2::isError($err)) { + // if we were called with a config, assume caller will handle + // incorrect username/password (LDAP_INVALID_CREDENTIALS) + if (isset($config) && $err->getCode() == 0x31) { + return null; + } throw new Exception('Could not connect to LDAP server: '.$err->getMessage()); return false; } From ef3991dbbe0acdba2dd7050b99f951ccfe5b8258 Mon Sep 17 00:00:00 2001 From: Jeffery To Date: Mon, 8 Mar 2010 15:31:16 +0800 Subject: [PATCH 355/362] Fixed warning messages when auto-registering a new LDAP user. On my test system (without memcache), while testing the LDAP authentication plugin, when I sign in for the first time, triggering auto-registration, I get these messages in the output page: Warning: ksort() expects parameter 1 to be array, null given in /home/jeff/Documents/code/statusnet/classes/Memcached_DataObject.php on line 219 Warning: Invalid argument supplied for foreach() in /home/jeff/Documents/code/statusnet/classes/Memcached_DataObject.php on line 224 Warning: assert() [function.assert]: Assertion failed in /home/jeff/Documents/code/statusnet/classes/Memcached_DataObject.php on line 241 (plus two "Cannot modify header information..." messages as a result of the above warnings) This change appears to fix this (although I can't really explain exactly why). --- classes/User_username.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classes/User_username.php b/classes/User_username.php index 853fd5cb86..8d99cddd3f 100644 --- a/classes/User_username.php +++ b/classes/User_username.php @@ -55,7 +55,7 @@ class User_username extends Memcached_DataObject // now define the keys. function keys() { - return array('provider_name', 'username'); + return array('provider_name' => 'K', 'username' => 'K'); } } From a77efb2447abe75d3b9902410bced61b76377de3 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Mon, 8 Mar 2010 10:32:40 -0800 Subject: [PATCH 356/362] XMPP cleanup: fix outgoing XMPP when queuing is disabled; fix notice for first access to undefined member variable --- lib/jabber.php | 34 +++++++++++++++++++++------------- lib/xmppmanager.php | 1 + 2 files changed, 22 insertions(+), 13 deletions(-) diff --git a/lib/jabber.php b/lib/jabber.php index e1bf06ba66..db4e2e9a70 100644 --- a/lib/jabber.php +++ b/lib/jabber.php @@ -88,22 +88,30 @@ class Sharing_XMPP extends XMPPHP_XMPP /** * Build an XMPP proxy connection that'll save outgoing messages * to the 'xmppout' queue to be picked up by xmppdaemon later. + * + * If queueing is disabled, we'll grab a live connection. + * + * @return XMPPHP */ function jabber_proxy() { - $proxy = new Queued_XMPP(common_config('xmpp', 'host') ? - common_config('xmpp', 'host') : - common_config('xmpp', 'server'), - common_config('xmpp', 'port'), - common_config('xmpp', 'user'), - common_config('xmpp', 'password'), - common_config('xmpp', 'resource') . 'daemon', - common_config('xmpp', 'server'), - common_config('xmpp', 'debug') ? - true : false, - common_config('xmpp', 'debug') ? - XMPPHP_Log::LEVEL_VERBOSE : null); - return $proxy; + if (common_config('queue', 'enabled')) { + $proxy = new Queued_XMPP(common_config('xmpp', 'host') ? + common_config('xmpp', 'host') : + common_config('xmpp', 'server'), + common_config('xmpp', 'port'), + common_config('xmpp', 'user'), + common_config('xmpp', 'password'), + common_config('xmpp', 'resource') . 'daemon', + common_config('xmpp', 'server'), + common_config('xmpp', 'debug') ? + true : false, + common_config('xmpp', 'debug') ? + XMPPHP_Log::LEVEL_VERBOSE : null); + return $proxy; + } else { + return jabber_connect(); + } } /** diff --git a/lib/xmppmanager.php b/lib/xmppmanager.php index f376358555..cca54db08d 100644 --- a/lib/xmppmanager.php +++ b/lib/xmppmanager.php @@ -36,6 +36,7 @@ class XmppManager extends IoManager protected $site = null; protected $pingid = 0; protected $lastping = null; + protected $conn = null; static protected $singletons = array(); From 217ad420ac8085fe620235dfc47bea27e4ac75dc Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Mon, 8 Mar 2010 12:19:06 -0800 Subject: [PATCH 357/362] Fix ticket #2208: regression in XMPP sending when server != host The upstream class sets $this->basejid with host unconditionally, which wasn't previously an issue as the fulljid would always be filled in by the server at connect time before sending messages. With the new queued messaging, we need to make sure we've filled out $this->fulljid correctly without making a connection. Now using $server if provided to build $this->basejid and $this->fulljid in the queued XMPP proxy class, so queued messages are sent correctly. --- lib/queued_xmpp.php | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/lib/queued_xmpp.php b/lib/queued_xmpp.php index fdd074db29..f6bccfd5ba 100644 --- a/lib/queued_xmpp.php +++ b/lib/queued_xmpp.php @@ -49,10 +49,20 @@ class Queued_XMPP extends XMPPHP_XMPP */ public function __construct($host, $port, $user, $password, $resource, $server = null, $printlog = false, $loglevel = null) { - parent::__construct($host, $port, $user, $password, $resource, $server, $printlog, $loglevel); - // Normally the fulljid isn't filled out until resource binding time; - // we need to save it here since we're not talking to a real server. - $this->fulljid = "{$this->basejid}/{$this->resource}"; + parent::__construct($host, $port, $user, $password, $resource, $server, $printlog, $loglevel); + + // We use $host to connect, but $server to build JIDs if specified. + // This seems to fix an upstream bug where $host was used to build + // $this->basejid, never seen since it isn't actually used in the base + // classes. + if (!$server) { + $server = $this->host; + } + $this->basejid = $this->user . '@' . $server; + + // Normally the fulljid is filled out by the server at resource binding + // time, but we need to do it since we're not talking to a real server. + $this->fulljid = "{$this->basejid}/{$this->resource}"; } /** From 7e7d88831cf8b3e8876499b86890da2e63b08c97 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Mon, 8 Mar 2010 13:32:18 -0800 Subject: [PATCH 358/362] CentOS 5.4 still bogus on a stock install. --- extlib/Auth/OpenID/Consumer.php | 3 +++ install.php | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/extlib/Auth/OpenID/Consumer.php b/extlib/Auth/OpenID/Consumer.php index 500890b656..130fe07130 100644 --- a/extlib/Auth/OpenID/Consumer.php +++ b/extlib/Auth/OpenID/Consumer.php @@ -966,6 +966,9 @@ class Auth_OpenID_GenericConsumer { // framework will not want to block on this call to // _checkAuth. if (!$this->_checkAuth($message, $server_url)) { + var_dump($message); + var_dump($server_url); + var_dump($this); return new Auth_OpenID_FailureResponse(null, "Server denied check_authentication"); } diff --git a/install.php b/install.php index 7fece8999f..929277e5e8 100644 --- a/install.php +++ b/install.php @@ -308,7 +308,7 @@ function checkPrereqs() printf('

      PHP is linked to a version of the PCRE library ' . 'that does not support Unicode properties. ' . 'If you are running Red Hat Enterprise Linux / ' . - 'CentOS 5.3 or earlier, see our documentation page on fixing this.

      '); $pass = false; From 3b0bdc0ae2730f9dc8ad4772fa5a65dae351b976 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Mon, 8 Mar 2010 13:38:26 -0800 Subject: [PATCH 359/362] Revert "CentOS 5.4 still bogus on a stock install." - bad debug lines crept in This reverts commit 7e7d88831cf8b3e8876499b86890da2e63b08c97. --- extlib/Auth/OpenID/Consumer.php | 3 --- install.php | 2 +- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/extlib/Auth/OpenID/Consumer.php b/extlib/Auth/OpenID/Consumer.php index 130fe07130..500890b656 100644 --- a/extlib/Auth/OpenID/Consumer.php +++ b/extlib/Auth/OpenID/Consumer.php @@ -966,9 +966,6 @@ class Auth_OpenID_GenericConsumer { // framework will not want to block on this call to // _checkAuth. if (!$this->_checkAuth($message, $server_url)) { - var_dump($message); - var_dump($server_url); - var_dump($this); return new Auth_OpenID_FailureResponse(null, "Server denied check_authentication"); } diff --git a/install.php b/install.php index 929277e5e8..7fece8999f 100644 --- a/install.php +++ b/install.php @@ -308,7 +308,7 @@ function checkPrereqs() printf('

      PHP is linked to a version of the PCRE library ' . 'that does not support Unicode properties. ' . 'If you are running Red Hat Enterprise Linux / ' . - 'CentOS 5.4 or earlier, see our documentation page on fixing this.

      '); $pass = false; From 927a368d0e4c924ec8132ff054be311e17ded45e Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Mon, 8 Mar 2010 13:38:59 -0800 Subject: [PATCH 360/362] CentOS 5.4 still has bad PCRE in stock (though all bets off for PHP packages, since you'd need a version update anyway...) --- install.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.php b/install.php index 7fece8999f..929277e5e8 100644 --- a/install.php +++ b/install.php @@ -308,7 +308,7 @@ function checkPrereqs() printf('

      PHP is linked to a version of the PCRE library ' . 'that does not support Unicode properties. ' . 'If you are running Red Hat Enterprise Linux / ' . - 'CentOS 5.3 or earlier, see our documentation page on fixing this.

      '); $pass = false; From 6524efd2a0b8684500ef15eb61f740fc7365e1e3 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Mon, 8 Mar 2010 22:48:27 +0100 Subject: [PATCH 361/362] Localisation updates for !StatusNet from !translatewiki.net !sntrans Signed-off-by: Siebrand Mazeland --- locale/de/LC_MESSAGES/statusnet.po | 43 +-- locale/nb/LC_MESSAGES/statusnet.po | 443 ++++++++++++++++------------- locale/statusnet.po | 2 +- 3 files changed, 264 insertions(+), 224 deletions(-) diff --git a/locale/de/LC_MESSAGES/statusnet.po b/locale/de/LC_MESSAGES/statusnet.po index fb91e4768f..4bad95b9ed 100644 --- a/locale/de/LC_MESSAGES/statusnet.po +++ b/locale/de/LC_MESSAGES/statusnet.po @@ -16,11 +16,11 @@ msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-03-06 23:49+0000\n" -"PO-Revision-Date: 2010-03-06 23:49:34+0000\n" +"PO-Revision-Date: 2010-03-08 21:10:39+0000\n" "Language-Team: German\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63350); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63415); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: out-statusnet\n" @@ -3364,14 +3364,12 @@ msgid "Replies to %1$s on %2$s!" msgstr "Antworten an %1$s auf %2$s!" #: actions/revokerole.php:75 -#, fuzzy msgid "You cannot revoke user roles on this site." -msgstr "Du kannst Nutzer dieser Seite nicht ruhig stellen." +msgstr "Du kannst die Rollen von Nutzern dieser Seite nicht widerrufen." #: actions/revokerole.php:82 -#, fuzzy msgid "User doesn't have this role." -msgstr "Benutzer ohne passendes Profil" +msgstr "Benutzer verfügt nicht über diese Rolle." #: actions/rsd.php:146 actions/version.php:157 msgid "StatusNet" @@ -4289,11 +4287,11 @@ msgstr "Profil" #: actions/useradminpanel.php:222 msgid "Bio Limit" -msgstr "" +msgstr "Bio Limit" #: actions/useradminpanel.php:223 msgid "Maximum length of a profile bio in characters." -msgstr "" +msgstr "Maximale Länge in Zeichen der Profil Bio." #: actions/useradminpanel.php:231 msgid "New users" @@ -4412,7 +4410,7 @@ msgstr "" #: actions/userauthorization.php:329 #, php-format msgid "Profile URL ‘%s’ is for a local user." -msgstr "" +msgstr "Profiladresse '%s' ist für einen lokalen Benutzer." #: actions/userauthorization.php:345 #, php-format @@ -4515,6 +4513,8 @@ msgid "" "You should have received a copy of the GNU Affero General Public License " "along with this program. If not, see %s." msgstr "" +"Du hast eine Kopie der GNU Affero General Public License zusammen mit diesem " +"Programm erhalten. Wenn nicht, siehe %s." #: actions/version.php:189 msgid "Plugins" @@ -4534,16 +4534,20 @@ msgid "" "No file may be larger than %d bytes and the file you sent was %d bytes. Try " "to upload a smaller version." msgstr "" +"Keine Datei darf größer als %d Bytes sein und die Datei die du verschicken " +"wolltest ist %d Bytes groß. Bitte eine kleinere Datei hoch laden." #: classes/File.php:154 #, php-format msgid "A file this large would exceed your user quota of %d bytes." -msgstr "" +msgstr "Eine Datei dieser Größe überschreitet deine User Quota von %d Byte." #: classes/File.php:161 #, php-format msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" +"Eine Datei dieser Größe würde deine monatliche Quota von %d Byte " +"überschreiten." #: classes/Group_member.php:41 msgid "Group join failed." @@ -4599,7 +4603,6 @@ msgstr "" "ein paar Minuten ab." #: classes/Notice.php:256 -#, fuzzy msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." @@ -4915,6 +4918,8 @@ msgstr "" #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" +"Inhalt und Daten urheberrechtlich geschützt durch %1$s. Alle Rechte " +"vorbehalten." #: lib/action.php:834 msgid "Content and data copyright by contributors. All rights reserved." @@ -4946,7 +4951,7 @@ msgstr "" #: lib/activity.php:481 msgid "Can't handle embedded XML content yet." -msgstr "" +msgstr "Kann eingebundenen XML Inhalt nicht verarbeiten." #: lib/activity.php:485 msgid "Can't handle embedded Base64 content yet." @@ -4959,9 +4964,8 @@ msgstr "Du kannst keine Änderungen an dieser Seite vornehmen." #. TRANS: Client error message #: lib/adminpanelaction.php:110 -#, fuzzy msgid "Changes to that panel are not allowed." -msgstr "Registrierung nicht gestattet" +msgstr "Änderungen an dieser Seite sind nicht erlaubt." #. TRANS: Client error message #: lib/adminpanelaction.php:229 @@ -5054,9 +5058,9 @@ msgid "Icon for this application" msgstr "Programmsymbol" #: lib/applicationeditform.php:204 -#, fuzzy, php-format +#, php-format msgid "Describe your application in %d characters" -msgstr "Beschreibe die Gruppe oder das Thema in 140 Zeichen" +msgstr "Beschreibe dein Programm in %d Zeichen" #: lib/applicationeditform.php:207 msgid "Describe your application" @@ -5075,9 +5079,8 @@ msgid "Organization responsible for this application" msgstr "" #: lib/applicationeditform.php:230 -#, fuzzy msgid "URL for the homepage of the organization" -msgstr "URL der Homepage oder Blogs der Gruppe oder des Themas" +msgstr "Homepage der Gruppe oder des Themas" #: lib/applicationeditform.php:236 msgid "URL to redirect to after authentication" @@ -6213,9 +6216,9 @@ msgid "Repeat this notice" msgstr "Diese Nachricht wiederholen" #: lib/revokeroleform.php:91 -#, fuzzy, php-format +#, php-format msgid "Revoke the \"%s\" role from this user" -msgstr "Diesen Nutzer von der Gruppe sperren" +msgstr "Widerrufe die \"%s\" Rolle von diesem Benutzer" #: lib/router.php:671 msgid "No single user defined for single-user mode." diff --git a/locale/nb/LC_MESSAGES/statusnet.po b/locale/nb/LC_MESSAGES/statusnet.po index 77588ef05e..b687e445e2 100644 --- a/locale/nb/LC_MESSAGES/statusnet.po +++ b/locale/nb/LC_MESSAGES/statusnet.po @@ -10,11 +10,11 @@ msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-03-06 23:49+0000\n" -"PO-Revision-Date: 2010-03-06 23:50:27+0000\n" +"PO-Revision-Date: 2010-03-08 21:11:29+0000\n" "Language-Team: Norwegian (bokmål)‬\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63350); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63415); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: out-statusnet\n" @@ -43,7 +43,6 @@ msgstr "Forhindre anonyme brukere (ikke innlogget) å se nettsted?" #. TRANS: Checkbox label for prohibiting anonymous users from viewing site. #: actions/accessadminpanel.php:167 -#, fuzzy msgctxt "LABEL" msgid "Private" msgstr "Privat" @@ -74,7 +73,6 @@ msgid "Save access settings" msgstr "Lagre tilgangsinnstillinger" #: actions/accessadminpanel.php:203 -#, fuzzy msgctxt "BUTTON" msgid "Save" msgstr "Lagre" @@ -1094,11 +1092,11 @@ msgstr "Av" #: actions/designadminpanel.php:474 lib/designsettings.php:156 msgid "Turn background image on or off." -msgstr "" +msgstr "Slå på eller av bakgrunnsbilde." #: actions/designadminpanel.php:479 lib/designsettings.php:161 msgid "Tile background image" -msgstr "" +msgstr "Gjenta bakgrunnsbildet" #: actions/designadminpanel.php:488 lib/designsettings.php:170 msgid "Change colours" @@ -1213,7 +1211,7 @@ msgstr "Organisasjon er for lang (maks 255 tegn)." #: actions/editapplication.php:209 actions/newapplication.php:194 msgid "Organization homepage is required." -msgstr "" +msgstr "Hjemmeside for organisasjon kreves." #: actions/editapplication.php:218 actions/newapplication.php:206 msgid "Callback is too long." @@ -1224,9 +1222,8 @@ msgid "Callback URL is not valid." msgstr "" #: actions/editapplication.php:258 -#, fuzzy msgid "Could not update application." -msgstr "Klarte ikke å oppdatere bruker." +msgstr "Kunne ikke oppdatere programmet." #: actions/editgroup.php:56 #, php-format @@ -1320,11 +1317,11 @@ msgstr "innkommende e-post" #: actions/emailsettings.php:138 actions/smssettings.php:157 msgid "Send email to this address to post new notices." -msgstr "" +msgstr "Send e-post til denne adressen for å poste nye notiser." #: actions/emailsettings.php:145 actions/smssettings.php:162 msgid "Make a new email address for posting to; cancels the old one." -msgstr "" +msgstr "Angi en ny e-postadresse for å poste til; fjerner den gamle." #: actions/emailsettings.php:148 actions/smssettings.php:164 msgid "New" @@ -1341,15 +1338,15 @@ msgstr "" #: actions/emailsettings.php:163 msgid "Send me email when someone adds my notice as a favorite." -msgstr "" +msgstr "Send meg en e-post når noen legger min notis til som favoritt." #: actions/emailsettings.php:169 msgid "Send me email when someone sends me a private message." -msgstr "" +msgstr "Send meg en e-post når noen sender meg en privat melding." #: actions/emailsettings.php:174 msgid "Send me email when someone sends me an \"@-reply\"." -msgstr "" +msgstr "Send meg en e-post når noen sender meg et «@-svar»." #: actions/emailsettings.php:179 msgid "Allow friends to nudge me and send me an email." @@ -1357,7 +1354,7 @@ msgstr "" #: actions/emailsettings.php:185 msgid "I want to post notices by email." -msgstr "" +msgstr "Jeg vil poste notiser med e-post." #: actions/emailsettings.php:191 msgid "Publish a MicroID for my email address." @@ -1387,12 +1384,12 @@ msgstr "Det er allerede din e-postadresse." #: actions/emailsettings.php:337 msgid "That email address already belongs to another user." -msgstr "" +msgstr "Den e-postadressen tilhører allerede en annen bruker." #: actions/emailsettings.php:353 actions/imsettings.php:319 #: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." -msgstr "" +msgstr "Kunne ikke sette inn bekreftelseskode." #: actions/emailsettings.php:359 msgid "" @@ -1427,7 +1424,7 @@ msgstr "Adressen ble fjernet." #: actions/emailsettings.php:446 actions/smssettings.php:518 msgid "No incoming email address." -msgstr "" +msgstr "Ingen innkommende e-postadresse." #: actions/emailsettings.php:456 actions/emailsettings.php:478 #: actions/smssettings.php:528 actions/smssettings.php:552 @@ -1440,15 +1437,15 @@ msgstr "" #: actions/emailsettings.php:481 actions/smssettings.php:555 msgid "New incoming email address added." -msgstr "" +msgstr "Ny innkommende e-postadresse lagt til." #: actions/favor.php:79 msgid "This notice is already a favorite!" -msgstr "" +msgstr "Denne notisen er allerede en favoritt." #: actions/favor.php:92 lib/disfavorform.php:140 msgid "Disfavor favorite" -msgstr "" +msgstr "Fjern favoritt" #: actions/favorited.php:65 lib/popularnoticesection.php:91 #: lib/publicgroupnav.php:93 @@ -1508,14 +1505,12 @@ msgid "A selection of some great users on %s" msgstr "" #: actions/file.php:34 -#, fuzzy msgid "No notice ID." -msgstr "Nytt nick" +msgstr "Ingen notis-ID." #: actions/file.php:38 -#, fuzzy msgid "No notice." -msgstr "Nytt nick" +msgstr "Ingen notis." #: actions/file.php:42 msgid "No attachments." @@ -1566,40 +1561,37 @@ msgid "Cannot read file." msgstr "Kan ikke lese fil." #: actions/grantrole.php:62 actions/revokerole.php:62 -#, fuzzy msgid "Invalid role." -msgstr "Ugyldig symbol." +msgstr "Ugyldig rolle." #: actions/grantrole.php:66 actions/revokerole.php:66 msgid "This role is reserved and cannot be set." -msgstr "" +msgstr "Denne rollen er reservert og kan ikke stilles inn." #: actions/grantrole.php:75 -#, fuzzy msgid "You cannot grant user roles on this site." -msgstr "Du er allerede logget inn!" +msgstr "Du kan ikke tildele brukerroller på dette nettstedet." #: actions/grantrole.php:82 -#, fuzzy msgid "User already has this role." -msgstr "Du er allerede logget inn!" +msgstr "Bruker har allerede denne rollen." #: actions/groupblock.php:71 actions/groupunblock.php:71 #: actions/makeadmin.php:71 actions/subedit.php:46 #: lib/profileformaction.php:70 msgid "No profile specified." -msgstr "" +msgstr "Ingen profil oppgitt." #: actions/groupblock.php:76 actions/groupunblock.php:76 #: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 #: actions/unsubscribe.php:84 lib/profileformaction.php:77 msgid "No profile with that ID." -msgstr "" +msgstr "Ingen profil med den ID'en." #: actions/groupblock.php:81 actions/groupunblock.php:81 #: actions/makeadmin.php:81 msgid "No group specified." -msgstr "" +msgstr "Ingen gruppe oppgitt." #: actions/groupblock.php:91 msgid "Only an admin can block group members." @@ -1612,11 +1604,11 @@ msgstr "Du er allerede logget inn!" #: actions/groupblock.php:100 msgid "User is not a member of group." -msgstr "" +msgstr "Bruker er ikke et medlem av gruppa." #: actions/groupblock.php:136 actions/groupmembers.php:323 msgid "Block user from group" -msgstr "" +msgstr "Blokker bruker fra gruppe" #: actions/groupblock.php:162 #, php-format @@ -1628,7 +1620,7 @@ msgstr "" #: actions/groupblock.php:178 msgid "Do not block this user from this group" -msgstr "" +msgstr "Ikke blokker denne brukeren fra denne gruppa" #: actions/groupblock.php:179 msgid "Block this user from this group" @@ -1977,7 +1969,6 @@ msgstr "" #. TRANS: Send button for inviting friends #: actions/invite.php:198 -#, fuzzy msgctxt "BUTTON" msgid "Send" msgstr "Send" @@ -2044,9 +2035,8 @@ msgid "You must be logged in to join a group." msgstr "Du må være innlogget for å bli med i en gruppe." #: actions/joingroup.php:88 actions/leavegroup.php:88 -#, fuzzy msgid "No nickname or ID." -msgstr "Ingen kallenavn." +msgstr "ngen kallenavn eller ID." #: actions/joingroup.php:141 #, php-format @@ -2160,28 +2150,28 @@ msgstr "Klarte ikke å lagre avatar-informasjonen" #: actions/newgroup.php:53 msgid "New group" -msgstr "" +msgstr "Ny gruppe" #: actions/newgroup.php:110 msgid "Use this form to create a new group." -msgstr "" +msgstr "Bruk dette skjemaet for å opprette en ny gruppe." #: actions/newmessage.php:71 actions/newmessage.php:231 msgid "New message" -msgstr "" +msgstr "Ny melding" #: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:358 msgid "You can't send a message to this user." -msgstr "" +msgstr "Du kan ikke sende en melding til denne brukeren." #: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:342 #: lib/command.php:475 msgid "No content!" -msgstr "" +msgstr "Inget innhold." #: actions/newmessage.php:158 msgid "No recipient specified." -msgstr "" +msgstr "Ingen mottaker oppgitt." #: actions/newmessage.php:164 lib/command.php:361 msgid "" @@ -2190,7 +2180,7 @@ msgstr "" #: actions/newmessage.php:181 msgid "Message sent" -msgstr "" +msgstr "Melding sendt" #: actions/newmessage.php:185 #, fuzzy, php-format @@ -2199,15 +2189,15 @@ msgstr "Direktemeldinger til %s" #: actions/newmessage.php:210 actions/newnotice.php:245 lib/channel.php:170 msgid "Ajax Error" -msgstr "" +msgstr "Ajax-feil" #: actions/newnotice.php:69 msgid "New notice" -msgstr "" +msgstr "Ny notis" #: actions/newnotice.php:211 msgid "Notice posted" -msgstr "" +msgstr "Notis postet" #: actions/noticesearch.php:68 #, php-format @@ -2345,7 +2335,7 @@ msgstr "" #: actions/othersettings.php:108 msgid " (free service)" -msgstr "" +msgstr " (gratis tjeneste)" #: actions/othersettings.php:116 msgid "Shorten URLs with" @@ -4644,59 +4634,50 @@ msgid "Invite friends and colleagues to join you on %s" msgstr "" #: lib/action.php:456 -#, fuzzy msgctxt "MENU" msgid "Invite" -msgstr "Kun invitasjon" +msgstr "Inviter" #. TRANS: Tooltip for main menu option "Logout" #: lib/action.php:462 -#, fuzzy msgctxt "TOOLTIP" msgid "Logout from the site" -msgstr "Tema for nettstedet." +msgstr "Logg ut fra nettstedet" #: lib/action.php:465 -#, fuzzy msgctxt "MENU" msgid "Logout" msgstr "Logg ut" #. TRANS: Tooltip for main menu option "Register" #: lib/action.php:470 -#, fuzzy msgctxt "TOOLTIP" msgid "Create an account" -msgstr "Opprett en ny konto" +msgstr "Opprett en konto" #: lib/action.php:473 -#, fuzzy msgctxt "MENU" msgid "Register" -msgstr "Registrering" +msgstr "Registrer" #. TRANS: Tooltip for main menu option "Login" #: lib/action.php:476 -#, fuzzy msgctxt "TOOLTIP" msgid "Login to the site" -msgstr "Tema for nettstedet." +msgstr "Log inn på nettstedet" #: lib/action.php:479 -#, fuzzy msgctxt "MENU" msgid "Login" msgstr "Logg inn" #. TRANS: Tooltip for main menu option "Help" #: lib/action.php:482 -#, fuzzy msgctxt "TOOLTIP" msgid "Help me!" -msgstr "Hjelp" +msgstr "Hjelp meg." #: lib/action.php:485 -#, fuzzy msgctxt "MENU" msgid "Help" msgstr "Hjelp" @@ -4705,10 +4686,9 @@ msgstr "Hjelp" #: lib/action.php:488 msgctxt "TOOLTIP" msgid "Search for people or text" -msgstr "" +msgstr "Søk etter personer eller tekst" #: lib/action.php:491 -#, fuzzy msgctxt "MENU" msgid "Search" msgstr "Søk" @@ -4809,11 +4789,11 @@ msgstr "" #: lib/action.php:847 msgid "All " -msgstr "" +msgstr "Alle " #: lib/action.php:853 msgid "license." -msgstr "" +msgstr "lisens." #: lib/action.php:1152 msgid "Pagination" @@ -4821,12 +4801,11 @@ msgstr "" #: lib/action.php:1161 msgid "After" -msgstr "" +msgstr "Etter" #: lib/action.php:1169 -#, fuzzy msgid "Before" -msgstr "Tidligere »" +msgstr "Før" #: lib/activity.php:453 msgid "Can't handle remote content yet." @@ -4843,7 +4822,7 @@ msgstr "" #. TRANS: Client error message #: lib/adminpanelaction.php:98 msgid "You cannot make changes to this site." -msgstr "" +msgstr "Du kan ikke gjøre endringer på dette nettstedet." #. TRANS: Client error message #: lib/adminpanelaction.php:110 @@ -5456,31 +5435,30 @@ msgstr "" #: lib/groupnav.php:85 msgid "Group" -msgstr "" +msgstr "Gruppe" #: lib/groupnav.php:101 msgid "Blocked" -msgstr "" +msgstr "Blokkert" #: lib/groupnav.php:102 #, php-format msgid "%s blocked users" -msgstr "" +msgstr "%s blokkerte brukere" #: lib/groupnav.php:108 #, php-format msgid "Edit %s group properties" -msgstr "" +msgstr "Rediger %s gruppeegenskaper" #: lib/groupnav.php:113 -#, fuzzy msgid "Logo" -msgstr "Logg ut" +msgstr "Logo" #: lib/groupnav.php:114 #, php-format msgid "Add or edit %s logo" -msgstr "" +msgstr "Legg til eller rediger %s logo" #: lib/groupnav.php:120 #, php-format @@ -5489,11 +5467,11 @@ msgstr "" #: lib/groupsbymemberssection.php:71 msgid "Groups with most members" -msgstr "" +msgstr "Grupper med flest medlemmer" #: lib/groupsbypostssection.php:71 msgid "Groups with most posts" -msgstr "" +msgstr "Grupper med flest innlegg" #: lib/grouptagcloudsection.php:56 #, php-format @@ -5502,79 +5480,74 @@ msgstr "" #: lib/htmloutputter.php:103 msgid "This page is not available in a media type you accept" -msgstr "" +msgstr "Denne siden er ikke tilgjengelig i en mediatype du aksepterer" #: lib/imagefile.php:75 #, php-format msgid "That file is too big. The maximum file size is %s." -msgstr "" +msgstr "Filen er for stor. Maks filstørrelse er %s." #: lib/imagefile.php:80 msgid "Partial upload." -msgstr "" +msgstr "Delvis opplasting." #: lib/imagefile.php:88 lib/mediafile.php:170 msgid "System error uploading file." -msgstr "" +msgstr "Systemfeil ved opplasting av fil." #: lib/imagefile.php:96 msgid "Not an image or corrupt file." -msgstr "" +msgstr "Ikke et bilde eller en korrupt fil." #: lib/imagefile.php:109 msgid "Unsupported image file format." -msgstr "" +msgstr "Bildefilformatet støttes ikke." #: lib/imagefile.php:122 -#, fuzzy msgid "Lost our file." -msgstr "Klarte ikke å lagre profil." +msgstr "Mistet filen vår." #: lib/imagefile.php:166 lib/imagefile.php:231 msgid "Unknown file type" -msgstr "" +msgstr "Ukjent filtype" #: lib/imagefile.php:251 msgid "MB" -msgstr "" +msgstr "MB" #: lib/imagefile.php:253 msgid "kB" -msgstr "" +msgstr "kB" #: lib/jabber.php:220 #, php-format msgid "[%s]" -msgstr "" +msgstr "[%s]" #: lib/jabber.php:400 #, php-format msgid "Unknown inbox source %d." -msgstr "" +msgstr "Ukjent innbokskilde %d." #: lib/joinform.php:114 -#, fuzzy msgid "Join" -msgstr "Logg inn" +msgstr "Bli med" #: lib/leaveform.php:114 -#, fuzzy msgid "Leave" -msgstr "Lagre" +msgstr "Forlat" #: lib/logingroupnav.php:80 -#, fuzzy msgid "Login with a username and password" -msgstr "Ugyldig brukernavn eller passord" +msgstr "Logg inn med brukernavn og passord" #: lib/logingroupnav.php:86 -#, fuzzy msgid "Sign up for a new account" -msgstr "Opprett en ny konto" +msgstr "Registrer deg for en ny konto" #: lib/mail.php:173 msgid "Email address confirmation" -msgstr "" +msgstr "Bekreftelse av e-postadresse" #: lib/mail.php:175 #, php-format @@ -5592,6 +5565,18 @@ msgid "" "Thanks for your time, \n" "%s\n" msgstr "" +"Hei %s.\n" +"\n" +"Noen skrev nettopp inn denne e-postadressen på %s.\n" +"\n" +"Dersom det var deg og du vil bekrefte det, bruk nettadressen under:\n" +"\n" +"%s\n" +"\n" +"Om ikke, bare ignorer denne meldingen.\n" +"\n" +"Takk for tiden din,\n" +"%s\n" #: lib/mail.php:240 #, php-format @@ -5599,7 +5584,7 @@ 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:245 -#, fuzzy, php-format +#, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" "\n" @@ -5614,20 +5599,24 @@ msgid "" msgstr "" "%1$s lytter nå til dine notiser på %2$s.\n" "\n" -"\t%3$s\n" +"%3$s\n" "\n" +"%4$s%5$s%6$s\n" "Vennlig hilsen,\n" -"%4$s.\n" +"%7$s.\n" +"\n" +"----\n" +"Endre e-postadressen din eller dine varslingsvalg på %8$s\n" #: lib/mail.php:262 -#, fuzzy, php-format +#, php-format msgid "Bio: %s" -msgstr "Om meg" +msgstr "Biografi: %s" #: lib/mail.php:290 #, php-format msgid "New email address for posting to %s" -msgstr "" +msgstr "Ny e-postadresse for posting til %s" #: lib/mail.php:293 #, php-format @@ -5641,6 +5630,14 @@ msgid "" "Faithfully yours,\n" "%4$s" msgstr "" +"Du har en ny adresse for posting på %1$s.\n" +"\n" +"Send e-post til %2$s for å poste nye meldinger.\n" +"\n" +"Flere e-postinstrukser på %3$s.\n" +"\n" +"Vennlig hilsen,\n" +"%4$s" #: lib/mail.php:417 #, php-format @@ -5649,12 +5646,12 @@ msgstr "%s status" #: lib/mail.php:443 msgid "SMS confirmation" -msgstr "" +msgstr "SMS-bekreftelse" #: lib/mail.php:467 #, php-format msgid "You've been nudged by %s" -msgstr "" +msgstr "Du har blitt knuffet av %s" #: lib/mail.php:471 #, php-format @@ -5671,11 +5668,22 @@ msgid "" "With kind regards,\n" "%4$s\n" msgstr "" +"%1$s (%2$s) lurer på hva du gjør nå for tiden og inviterer deg til å poste " +"noen nyheter.\n" +"\n" +"La oss høre fra deg :)\n" +"\n" +"%3$s\n" +"\n" +"Ikke svar på denne e-posten; det vil ikke nå frem til dem.\n" +"\n" +"Med vennlig hilsen,\n" +"%4$s\n" #: lib/mail.php:517 #, php-format msgid "New private message from %s" -msgstr "" +msgstr "Ny privat melding fra %s" #: lib/mail.php:521 #, php-format @@ -5695,11 +5703,25 @@ msgid "" "With kind regards,\n" "%5$s\n" msgstr "" +"%1$s (%2$s) sendte deg en privat melding:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"Du kan svare på deres melding her:\n" +"\n" +"%4$s\n" +"\n" +"Ikke svar på denne e-posten; det vil ikke nå frem til dem.\n" +"\n" +"Med vennlig hilsen,\n" +"%5$s\n" #: lib/mail.php:568 #, php-format msgid "%s (@%s) added your notice as a favorite" -msgstr "" +msgstr "%s /@%s) la din notis til som en favoritt" #: lib/mail.php:570 #, php-format @@ -5721,11 +5743,27 @@ msgid "" "Faithfully yours,\n" "%6$s\n" msgstr "" +"%1$s (@%7$s) la akkurat din notis fra %2$s til som en av sine favoritter.\n" +"\n" +"Nettadressen til din notis er:\n" +"\n" +"%3$s\n" +"\n" +"Teksten i din notis er:\n" +"\n" +"%4$s\n" +"\n" +"Du kan se listen over %1$s sine favoritter her:\n" +"\n" +"%5$s\n" +"\n" +"Vennlig hilsen,\n" +"%6$s\n" #: lib/mail.php:635 #, php-format msgid "%s (@%s) sent a notice to your attention" -msgstr "" +msgstr "%s (@%s) sendte en notis for din oppmerksomhet" #: lib/mail.php:637 #, php-format @@ -5741,29 +5779,42 @@ msgid "" "\t%4$s\n" "\n" msgstr "" +"%1$s (@%9$s) sendte deg akkurat en notis for din oppmerksomhet (et '@-svar') " +"på %2$s.\n" +"\n" +"Notisen er her:\n" +"\n" +"%3$s\n" +"\n" +"Den lyder:\n" +"\n" +"%4$s\n" +"\n" #: lib/mailbox.php:89 msgid "Only the user can read their own mailboxes." -msgstr "" +msgstr "Bare brukeren kan lese sine egne postbokser." #: 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 "" +"Du har ingen private meldinger. Du kan sende private meldinger for å " +"engasjere andre brukere i en samtale. Personer kan sende deg meldinger som " +"bare du kan se." #: lib/mailbox.php:227 lib/noticelist.php:482 -#, fuzzy msgid "from" msgstr "fra" #: lib/mailhandler.php:37 msgid "Could not parse message." -msgstr "" +msgstr "Kunne ikke tolke meldingen." #: lib/mailhandler.php:42 msgid "Not a registered user." -msgstr "" +msgstr "Ikke en registrert bruker." #: lib/mailhandler.php:46 msgid "Sorry, that is not your incoming email address." @@ -5774,9 +5825,9 @@ msgid "Sorry, no incoming email allowed." msgstr "" #: lib/mailhandler.php:228 -#, fuzzy, php-format +#, php-format msgid "Unsupported message type: %s" -msgstr "Direktemeldinger til %s" +msgstr "Meldingstypen støttes ikke: %s" #: lib/mediafile.php:98 lib/mediafile.php:123 msgid "There was a database error while saving your file. Please try again." @@ -5806,103 +5857,100 @@ msgstr "" #: lib/mediafile.php:165 msgid "File upload stopped by extension." -msgstr "" +msgstr "Filopplasting stoppet grunnet filendelse." #: lib/mediafile.php:179 lib/mediafile.php:216 msgid "File exceeds user's quota." -msgstr "" +msgstr "Fil overgår brukers kvote." #: lib/mediafile.php:196 lib/mediafile.php:233 msgid "File could not be moved to destination directory." -msgstr "" +msgstr "Filen kunne ikke flyttes til målmappen." #: lib/mediafile.php:201 lib/mediafile.php:237 -#, fuzzy msgid "Could not determine file's MIME type." -msgstr "Klarte ikke å oppdatere bruker." +msgstr "Kunne ikke avgjøre filens MIME-type." #: lib/mediafile.php:270 #, php-format msgid " Try using another %s format." -msgstr "" +msgstr " Prøv å bruke et annet %s-format." #: lib/mediafile.php:275 #, php-format msgid "%s is not a supported file type on this server." -msgstr "" +msgstr "filtypen %s støttes ikke på denne tjeneren." #: lib/messageform.php:120 msgid "Send a direct notice" -msgstr "" +msgstr "Send en direktenotis" #: lib/messageform.php:146 msgid "To" -msgstr "" +msgstr "Til" #: lib/messageform.php:159 lib/noticeform.php:185 -#, fuzzy msgid "Available characters" -msgstr "6 eller flere tegn" +msgstr "Tilgjengelige tegn" #: lib/messageform.php:178 lib/noticeform.php:236 -#, fuzzy msgctxt "Send button for sending notice" msgid "Send" msgstr "Send" #: lib/noticeform.php:160 msgid "Send a notice" -msgstr "" +msgstr "Send en notis" #: lib/noticeform.php:173 #, php-format msgid "What's up, %s?" -msgstr "" +msgstr "Hva skjer %s?" #: lib/noticeform.php:192 msgid "Attach" -msgstr "" +msgstr "Legg ved" #: lib/noticeform.php:196 msgid "Attach a file" -msgstr "" +msgstr "Legg ved en fil" #: lib/noticeform.php:212 -#, fuzzy msgid "Share my location" -msgstr "Klarte ikke å lagre profil." +msgstr "Del min posisjon" #: lib/noticeform.php:215 -#, fuzzy msgid "Do not share my location" -msgstr "Klarte ikke å lagre profil." +msgstr "Ikke del min posisjon" #: lib/noticeform.php:216 msgid "" "Sorry, retrieving your geo location is taking longer than expected, please " "try again later" msgstr "" +"Beklager, henting av din geoposisjon tar lenger tid enn forventet, prøv " +"igjen senere" #: lib/noticelist.php:429 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" -msgstr "" +msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" #: lib/noticelist.php:430 msgid "N" -msgstr "" +msgstr "N" #: lib/noticelist.php:430 msgid "S" -msgstr "" +msgstr "S" #: lib/noticelist.php:431 msgid "E" -msgstr "" +msgstr "Ø" #: lib/noticelist.php:431 msgid "W" -msgstr "" +msgstr "V" #: lib/noticelist.php:438 msgid "at" @@ -5913,35 +5961,32 @@ msgid "in context" msgstr "" #: lib/noticelist.php:601 -#, fuzzy msgid "Repeated by" -msgstr "Opprett" +msgstr "Repetert av" #: lib/noticelist.php:628 msgid "Reply to this notice" -msgstr "" +msgstr "Svar på denne notisen" #: lib/noticelist.php:629 -#, fuzzy msgid "Reply" -msgstr "svar" +msgstr "Svar" #: lib/noticelist.php:673 -#, fuzzy msgid "Notice repeated" -msgstr "Nytt nick" +msgstr "Notis repetert" #: lib/nudgeform.php:116 msgid "Nudge this user" -msgstr "" +msgstr "Knuff denne brukeren" #: lib/nudgeform.php:128 msgid "Nudge" -msgstr "" +msgstr "Knuff" #: lib/nudgeform.php:128 msgid "Send a nudge to this user" -msgstr "" +msgstr "Send et knuff til denne brukeren" #: lib/oauthstore.php:283 msgid "Error inserting new profile" @@ -5957,7 +6002,7 @@ msgstr "" #: lib/oauthstore.php:345 msgid "Duplicate notice" -msgstr "" +msgstr "Duplikatnotis" #: lib/oauthstore.php:490 msgid "Couldn't insert new subscription." @@ -5973,23 +6018,23 @@ msgstr "Svar" #: lib/personalgroupnav.php:114 msgid "Favorites" -msgstr "" +msgstr "Favoritter" #: lib/personalgroupnav.php:125 msgid "Inbox" -msgstr "" +msgstr "Innboks" #: lib/personalgroupnav.php:126 msgid "Your incoming messages" -msgstr "" +msgstr "Dine innkommende meldinger" #: lib/personalgroupnav.php:130 msgid "Outbox" -msgstr "" +msgstr "Utboks" #: lib/personalgroupnav.php:131 msgid "Your sent messages" -msgstr "" +msgstr "Dine sendte meldinger" #: lib/personaltagcloudsection.php:56 #, php-format @@ -5998,11 +6043,11 @@ msgstr "" #: lib/plugin.php:114 msgid "Unknown" -msgstr "" +msgstr "Ukjent" #: lib/profileaction.php:109 lib/profileaction.php:194 lib/subgroupnav.php:82 msgid "Subscriptions" -msgstr "" +msgstr "Abonnement" #: lib/profileaction.php:126 msgid "All subscriptions" @@ -6010,16 +6055,15 @@ msgstr "Alle abonnementer" #: lib/profileaction.php:142 lib/profileaction.php:203 lib/subgroupnav.php:90 msgid "Subscribers" -msgstr "" +msgstr "Abonnenter" #: lib/profileaction.php:159 -#, fuzzy msgid "All subscribers" -msgstr "Alle abonnementer" +msgstr "Alle abonnenter" #: lib/profileaction.php:180 msgid "User ID" -msgstr "" +msgstr "Bruker-ID" #: lib/profileaction.php:185 msgid "Member since" @@ -6027,7 +6071,7 @@ msgstr "Medlem siden" #: lib/profileaction.php:247 msgid "All groups" -msgstr "" +msgstr "Alle grupper" #: lib/profileformaction.php:123 msgid "No return-to arguments." @@ -6035,16 +6079,15 @@ msgstr "" #: lib/profileformaction.php:137 msgid "Unimplemented method." -msgstr "" +msgstr "Ikke-implementert metode." #: lib/publicgroupnav.php:78 -#, fuzzy msgid "Public" msgstr "Offentlig" #: lib/publicgroupnav.php:82 msgid "User groups" -msgstr "" +msgstr "Brukergrupper" #: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 #, fuzzy @@ -6060,14 +6103,12 @@ msgid "Popular" msgstr "" #: lib/repeatform.php:107 -#, fuzzy msgid "Repeat this notice?" -msgstr "Kan ikke slette notisen." +msgstr "Repeter denne notisen?" #: lib/repeatform.php:132 -#, fuzzy msgid "Repeat this notice" -msgstr "Kan ikke slette notisen." +msgstr "Repeter denne notisen" #: lib/revokeroleform.php:91 #, php-format @@ -6088,38 +6129,36 @@ msgid "Sandbox this user" msgstr "Kan ikke slette notisen." #: lib/searchaction.php:120 -#, fuzzy msgid "Search site" -msgstr "Søk" +msgstr "Søk nettsted" #: lib/searchaction.php:126 msgid "Keyword(s)" -msgstr "" +msgstr "Nøkkelord" #: lib/searchaction.php:127 msgid "Search" msgstr "Søk" #: lib/searchaction.php:162 -#, fuzzy msgid "Search help" -msgstr "Søk" +msgstr "Søkehjelp" #: lib/searchgroupnav.php:80 msgid "People" -msgstr "" +msgstr "Personer" #: lib/searchgroupnav.php:81 msgid "Find people on this site" -msgstr "" +msgstr "Finn personer på dette nettstedet" #: lib/searchgroupnav.php:83 msgid "Find content of notices" -msgstr "" +msgstr "Finn innhold i notiser" #: lib/searchgroupnav.php:85 msgid "Find groups on this site" -msgstr "" +msgstr "Finn grupper på dette nettstedet" #: lib/section.php:89 msgid "Untitled section" @@ -6127,7 +6166,7 @@ msgstr "" #: lib/section.php:106 msgid "More..." -msgstr "" +msgstr "Mer..." #: lib/silenceform.php:67 msgid "Silence" @@ -6155,7 +6194,7 @@ msgstr "" #: lib/subgroupnav.php:105 msgid "Invite" -msgstr "" +msgstr "Inviter" #: lib/subgroupnav.php:106 #, php-format @@ -6174,7 +6213,7 @@ msgstr "" #: lib/tagcloudsection.php:56 msgid "None" -msgstr "" +msgstr "Ingen" #: lib/topposterssection.php:74 msgid "Top posters" @@ -6216,40 +6255,38 @@ msgid "User actions" msgstr "" #: lib/userprofile.php:251 -#, fuzzy msgid "Edit profile settings" -msgstr "Endre profilinnstillingene dine" +msgstr "Endre profilinnstillinger" #: lib/userprofile.php:252 msgid "Edit" -msgstr "" +msgstr "Rediger" #: lib/userprofile.php:275 msgid "Send a direct message to this user" -msgstr "" +msgstr "Send en direktemelding til denne brukeren" #: lib/userprofile.php:276 msgid "Message" -msgstr "" +msgstr "Melding" #: lib/userprofile.php:314 msgid "Moderate" -msgstr "" +msgstr "Moderer" #: lib/userprofile.php:352 -#, fuzzy msgid "User role" -msgstr "Klarte ikke å lagre profil." +msgstr "Brukerrolle" #: lib/userprofile.php:354 msgctxt "role" msgid "Administrator" -msgstr "" +msgstr "Administrator" #: lib/userprofile.php:355 msgctxt "role" msgid "Moderator" -msgstr "" +msgstr "Moderator" #: lib/util.php:1015 msgid "a few seconds ago" @@ -6298,14 +6335,14 @@ msgstr "omtrent ett år siden" #: lib/webcolor.php:82 #, php-format msgid "%s is not a valid color!" -msgstr "" +msgstr "%s er ikke en gyldig farge." #: lib/webcolor.php:123 #, php-format msgid "%s is not a valid color! Use 3 or 6 hex chars." -msgstr "" +msgstr "%s er ikke en gyldig farge. Bruk 3 eller 6 heksadesimale tegn." #: lib/xmppmanager.php:402 #, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." -msgstr "" +msgstr "Melding for lang - maks er %1$d tegn, du sendte %2$d." diff --git a/locale/statusnet.po b/locale/statusnet.po index 0e0a236c04..61d902a1a9 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: 2010-03-06 23:49+0000\n" +"POT-Creation-Date: 2010-03-08 21:09+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" From 51a245f18c1e4a830c5eb94f3e60c6b4b3e560ee Mon Sep 17 00:00:00 2001 From: Craig Andrews Date: Thu, 4 Mar 2010 18:24:32 -0500 Subject: [PATCH 362/362] Added Memcached plugin (using pecl/memcached versus pecl/memcache) --- lib/statusnet.php | 6 +- plugins/MemcachedPlugin.php | 223 ++++++++++++++++++++++++++++++++++++ 2 files changed, 228 insertions(+), 1 deletion(-) create mode 100644 plugins/MemcachedPlugin.php diff --git a/lib/statusnet.php b/lib/statusnet.php index eba9ab9b8e..ef3adebf94 100644 --- a/lib/statusnet.php +++ b/lib/statusnet.php @@ -342,7 +342,11 @@ class StatusNet if (array_key_exists('memcached', $config)) { if ($config['memcached']['enabled']) { - addPlugin('Memcache', array('servers' => $config['memcached']['server'])); + if(class_exists('Memcached')) { + addPlugin('Memcached', array('servers' => $config['memcached']['server'])); + } else { + addPlugin('Memcache', array('servers' => $config['memcached']['server'])); + } } if (!empty($config['memcached']['base'])) { diff --git a/plugins/MemcachedPlugin.php b/plugins/MemcachedPlugin.php new file mode 100644 index 0000000000..707e6db9aa --- /dev/null +++ b/plugins/MemcachedPlugin.php @@ -0,0 +1,223 @@ +. + * + * @category Cache + * @package StatusNet + * @author Evan Prodromou , Craig Andrews + * @copyright 2009 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 + * @link http://status.net/ + */ + +if (!defined('STATUSNET')) { + // This check helps protect against security problems; + // your code file can't be executed directly from the web. + exit(1); +} + +/** + * A plugin to use memcached for the cache interface + * + * This used to be encoded as config-variable options in the core code; + * it's now broken out to a separate plugin. The same interface can be + * implemented by other plugins. + * + * @category Cache + * @package StatusNet + * @author Evan Prodromou , Craig Andrews + * @copyright 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/ + */ + +class MemcachedPlugin extends Plugin +{ + static $cacheInitialized = false; + + private $_conn = null; + public $servers = array('127.0.0.1;11211'); + + public $defaultExpiry = 86400; // 24h + + /** + * Initialize the plugin + * + * Note that onStartCacheGet() may have been called before this! + * + * @return boolean flag value + */ + + function onInitializePlugin() + { + $this->_ensureConn(); + self::$cacheInitialized = true; + return true; + } + + /** + * Get a value associated with a key + * + * The value should have been set previously. + * + * @param string &$key in; Lookup key + * @param mixed &$value out; value associated with key + * + * @return boolean hook success + */ + + function onStartCacheGet(&$key, &$value) + { + $this->_ensureConn(); + $value = $this->_conn->get($key); + Event::handle('EndCacheGet', array($key, &$value)); + return false; + } + + /** + * Associate a value with a key + * + * @param string &$key in; Key to use for lookups + * @param mixed &$value in; Value to associate + * @param integer &$flag in; Flag empty or Cache::COMPRESSED + * @param integer &$expiry in; Expiry (passed through to Memcache) + * @param boolean &$success out; Whether the set was successful + * + * @return boolean hook success + */ + + function onStartCacheSet(&$key, &$value, &$flag, &$expiry, &$success) + { + $this->_ensureConn(); + if ($expiry === null) { + $expiry = $this->defaultExpiry; + } + $success = $this->_conn->set($key, $value, $expiry); + Event::handle('EndCacheSet', array($key, $value, $flag, + $expiry)); + return false; + } + + /** + * Atomically increment an existing numeric key value. + * Existing expiration time will not be changed. + * + * @param string &$key in; Key to use for lookups + * @param int &$step in; Amount to increment (default 1) + * @param mixed &$value out; Incremented value, or false if key not set. + * + * @return boolean hook success + */ + function onStartCacheIncrement(&$key, &$step, &$value) + { + $this->_ensureConn(); + $value = $this->_conn->increment($key, $step); + Event::handle('EndCacheIncrement', array($key, $step, $value)); + return false; + } + + /** + * Delete a value associated with a key + * + * @param string &$key in; Key to lookup + * @param boolean &$success out; whether it worked + * + * @return boolean hook success + */ + + function onStartCacheDelete(&$key, &$success) + { + $this->_ensureConn(); + $success = $this->_conn->delete($key); + Event::handle('EndCacheDelete', array($key)); + return false; + } + + function onStartCacheReconnect(&$success) + { + // nothing to do + return true; + } + + /** + * Ensure that a connection exists + * + * Checks the instance $_conn variable and connects + * if it is empty. + * + * @return void + */ + + private function _ensureConn() + { + if (empty($this->_conn)) { + $this->_conn = new Memcached(common_config('site', 'nickname')); + + if (!count($this->_conn->getServerList())) { + if (is_array($this->servers)) { + $servers = $this->servers; + } else { + $servers = array($this->servers); + } + foreach ($servers as $server) { + if (strpos($server, ';') !== false) { + list($host, $port) = explode(';', $server); + } else { + $host = $server; + $port = 11211; + } + + $this->_conn->addServer($host, $port); + } + + // Compress items stored in the cache. + + // Allows the cache to store objects larger than 1MB (if they + // compress to less than 1MB), and improves cache memory efficiency. + + $this->_conn->setOption(Memcached::OPT_COMPRESSION, true); + } + } + } + + /** + * Translate general flags to Memcached-specific flags + * @param int $flag + * @return int + */ + protected function flag($flag) + { + //no flags are presently supported + return $flag; + } + + function onPluginVersion(&$versions) + { + $versions[] = array('name' => 'Memcached', + 'version' => STATUSNET_VERSION, + 'author' => 'Evan Prodromou, Craig Andrews', + 'homepage' => 'http://status.net/wiki/Plugin:Memcached', + 'rawdescription' => + _m('Use Memcached to cache query results.')); + return true; + } +} +