server('PHP_SELF'));
$args = explode('&', htmlspecialchars_decode($request->server('QUERY_STRING')));
// If we are unable to get the script name we use REQUEST_URI as a failover and note it within the page array for easier support...
if (!$script_name)
{
$script_name = htmlspecialchars_decode($request->server('REQUEST_URI'));
$script_name = (($pos = strpos($script_name, '?')) !== false) ? substr($script_name, 0, $pos) : $script_name;
$page_array['failover'] = 1;
}
// Replace backslashes and doubled slashes (could happen on some proxy setups)
$script_name = str_replace(array('\\', '//'), '/', $script_name);
// Now, remove the sid and let us get a clean query string...
$use_args = array();
// Since some browser do not encode correctly we need to do this with some "special" characters...
// " -> %22, ' => %27, < -> %3C, > -> %3E
$find = array('"', "'", '<', '>');
$replace = array('%22', '%27', '%3C', '%3E');
foreach ($args as $key => $argument)
{
if (strpos($argument, 'sid=') === 0)
{
continue;
}
$use_args[] = str_replace($find, $replace, $argument);
}
unset($args);
// The following examples given are for an request uri of {path to the phpbb directory}/adm/index.php?i=10&b=2
// The current query string
$query_string = trim(implode('&', $use_args));
// basenamed page name (for example: index.php)
$page_name = (substr($script_name, -1, 1) == '/') ? '' : basename($script_name);
$page_name = urlencode(htmlspecialchars($page_name));
// current directory within the phpBB root (for example: adm)
$root_dirs = explode('/', str_replace('\\', '/', phpbb_realpath($root_path)));
$page_dirs = explode('/', str_replace('\\', '/', phpbb_realpath('./')));
$intersection = array_intersect_assoc($root_dirs, $page_dirs);
$root_dirs = array_diff_assoc($root_dirs, $intersection);
$page_dirs = array_diff_assoc($page_dirs, $intersection);
$page_dir = str_repeat('../', sizeof($root_dirs)) . implode('/', $page_dirs);
if ($page_dir && substr($page_dir, -1, 1) == '/')
{
$page_dir = substr($page_dir, 0, -1);
}
// Current page from phpBB root (for example: adm/index.php?i=10&b=2)
$page = (($page_dir) ? $page_dir . '/' : '') . $page_name . (($query_string) ? "?$query_string" : '');
// The script path from the webroot to the current directory (for example: /phpBB3/adm/) : always prefixed with / and ends in /
$script_path = trim(str_replace('\\', '/', dirname($script_name)));
// The script path from the webroot to the phpBB root (for example: /phpBB3/)
$script_dirs = explode('/', $script_path);
array_splice($script_dirs, -sizeof($page_dirs));
$root_script_path = implode('/', $script_dirs) . (sizeof($root_dirs) ? '/' . implode('/', $root_dirs) : '');
// We are on the base level (phpBB root == webroot), lets adjust the variables a bit...
if (!$root_script_path)
{
$root_script_path = ($page_dir) ? str_replace($page_dir, '', $script_path) : $script_path;
}
$script_path .= (substr($script_path, -1, 1) == '/') ? '' : '/';
$root_script_path .= (substr($root_script_path, -1, 1) == '/') ? '' : '/';
$page_array += array(
'page_name' => $page_name,
'page_dir' => $page_dir,
'query_string' => $query_string,
'script_path' => str_replace(' ', '%20', htmlspecialchars($script_path)),
'root_script_path' => str_replace(' ', '%20', htmlspecialchars($root_script_path)),
'page' => $page,
'forum' => request_var('f', 0),
);
return $page_array;
}
/**
* Get valid hostname/port. HTTP_HOST is used, SERVER_NAME if HTTP_HOST not present.
*/
function extract_current_hostname()
{
global $config, $request;
// Get hostname
$host = htmlspecialchars_decode($request->header('Host', $request->server('SERVER_NAME')));
// Should be a string and lowered
$host = (string) strtolower($host);
// If host is equal the cookie domain or the server name (if config is set), then we assume it is valid
if ((isset($config['cookie_domain']) && $host === $config['cookie_domain']) || (isset($config['server_name']) && $host === $config['server_name']))
{
return $host;
}
// Is the host actually a IP? If so, we use the IP... (IPv4)
if (long2ip(ip2long($host)) === $host)
{
return $host;
}
// Now return the hostname (this also removes any port definition). The http:// is prepended to construct a valid URL, hosts never have a scheme assigned
$host = @parse_url('http://' . $host);
$host = (!empty($host['host'])) ? $host['host'] : '';
// Remove any portions not removed by parse_url (#)
$host = str_replace('#', '', $host);
// If, by any means, the host is now empty, we will use a "best approach" way to guess one
if (empty($host))
{
if (!empty($config['server_name']))
{
$host = $config['server_name'];
}
else if (!empty($config['cookie_domain']))
{
$host = (strpos($config['cookie_domain'], '.') === 0) ? substr($config['cookie_domain'], 1) : $config['cookie_domain'];
}
else
{
// Set to OS hostname or localhost
$host = (function_exists('php_uname')) ? php_uname('n') : 'localhost';
}
}
// It may be still no valid host, but for sure only a hostname (we may further expand on the cookie domain... if set)
return $host;
}
/**
* Start session management
*
* This is where all session activity begins. We gather various pieces of
* information from the client and server. We test to see if a session already
* exists. If it does, fine and dandy. If it doesn't we'll go on to create a
* new one ... pretty logical heh? We also examine the system load (if we're
* running on a system which makes such information readily available) and
* halt if it's above an admin definable limit.
*
* @param bool $update_session_page if true the session page gets updated.
* This can be set to circumvent certain scripts to update the users last visited page.
*/
function session_begin($update_session_page = true)
{
global $phpEx, $SID, $_SID, $_EXTRA_URL, $db, $config, $phpbb_root_path;
global $request, $phpbb_container;
// Give us some basic information
$this->time_now = time();
$this->cookie_data = array('u' => 0, 'k' => '');
$this->update_session_page = $update_session_page;
$this->browser = $request->header('User-Agent');
$this->referer = $request->header('Referer');
$this->forwarded_for = $request->header('X-Forwarded-For');
$this->host = $this->extract_current_hostname();
$this->page = $this->extract_current_page($phpbb_root_path);
// if the forwarded for header shall be checked we have to validate its contents
if ($config['forwarded_for_check'])
{
$this->forwarded_for = preg_replace('# {2,}#', ' ', str_replace(',', ' ', $this->forwarded_for));
// split the list of IPs
$ips = explode(' ', $this->forwarded_for);
foreach ($ips as $ip)
{
// check IPv4 first, the IPv6 is hopefully only going to be used very seldomly
if (!empty($ip) && !preg_match(get_preg_expression('ipv4'), $ip) && !preg_match(get_preg_expression('ipv6'), $ip))
{
// contains invalid data, don't use the forwarded for header
$this->forwarded_for = '';
break;
}
}
}
else
{
$this->forwarded_for = '';
}
if ($request->is_set($config['cookie_name'] . '_sid', \phpbb\request\request_interface::COOKIE) || $request->is_set($config['cookie_name'] . '_u', \phpbb\request\request_interface::COOKIE))
{
$this->cookie_data['u'] = request_var($config['cookie_name'] . '_u', 0, false, true);
$this->cookie_data['k'] = request_var($config['cookie_name'] . '_k', '', false, true);
$this->session_id = request_var($config['cookie_name'] . '_sid', '', false, true);
$SID = (defined('NEED_SID')) ? '?sid=' . $this->session_id : '?sid=';
$_SID = (defined('NEED_SID')) ? $this->session_id : '';
if (empty($this->session_id))
{
$this->session_id = $_SID = request_var('sid', '');
$SID = '?sid=' . $this->session_id;
$this->cookie_data = array('u' => 0, 'k' => '');
}
}
else
{
$this->session_id = $_SID = request_var('sid', '');
$SID = '?sid=' . $this->session_id;
}
$_EXTRA_URL = array();
// Why no forwarded_for et al? Well, too easily spoofed. With the results of my recent requests
// it's pretty clear that in the majority of cases you'll at least be left with a proxy/cache ip.
$this->ip = htmlspecialchars_decode($request->server('REMOTE_ADDR'));
$this->ip = preg_replace('# {2,}#', ' ', str_replace(',', ' ', $this->ip));
// split the list of IPs
$ips = explode(' ', trim($this->ip));
// Default IP if REMOTE_ADDR is invalid
$this->ip = '127.0.0.1';
foreach ($ips as $ip)
{
if (function_exists('phpbb_ip_normalise'))
{
// Normalise IP address
$ip = phpbb_ip_normalise($ip);
if (empty($ip))
{
// IP address is invalid.
break;
}
// IP address is valid.
$this->ip = $ip;
// Skip legacy code.
continue;
}
if (preg_match(get_preg_expression('ipv4'), $ip))
{
$this->ip = $ip;
}
else if (preg_match(get_preg_expression('ipv6'), $ip))
{
// Quick check for IPv4-mapped address in IPv6
if (stripos($ip, '::ffff:') === 0)
{
$ipv4 = substr($ip, 7);
if (preg_match(get_preg_expression('ipv4'), $ipv4))
{
$ip = $ipv4;
}
}
$this->ip = $ip;
}
else
{
// We want to use the last valid address in the chain
// Leave foreach loop when address is invalid
break;
}
}
$this->load = false;
// Load limit check (if applicable)
if ($config['limit_load'] || $config['limit_search_load'])
{
if ((function_exists('sys_getloadavg') && $load = sys_getloadavg()) || ($load = explode(' ', @file_get_contents('/proc/loadavg'))))
{
$this->load = array_slice($load, 0, 1);
$this->load = floatval($this->load[0]);
}
else
{
set_config('limit_load', '0');
set_config('limit_search_load', '0');
}
}
// if no session id is set, redirect to index.php
$session_id = $request->variable('sid', '');
if (defined('NEED_SID') && (empty($session_id) || $this->session_id !== $session_id))
{
send_status_line(401, 'Unauthorized');
redirect(append_sid("{$phpbb_root_path}index.$phpEx"));
}
// if session id is set
if (!empty($this->session_id))
{
$sql = 'SELECT u.*, s.*
FROM ' . SESSIONS_TABLE . ' s, ' . USERS_TABLE . " u
WHERE s.session_id = '" . $db->sql_escape($this->session_id) . "'
AND u.user_id = s.session_user_id";
$result = $db->sql_query($sql);
$this->data = $db->sql_fetchrow($result);
$db->sql_freeresult($result);
// Did the session exist in the DB?
if (isset($this->data['user_id']))
{
// Validate IP length according to admin ... enforces an IP
// check on bots if admin requires this
// $quadcheck = ($config['ip_check_bot'] && $this->data['user_type'] & USER_BOT) ? 4 : $config['ip_check'];
if (strpos($this->ip, ':') !== false && strpos($this->data['session_ip'], ':') !== false)
{
$s_ip = short_ipv6($this->data['session_ip'], $config['ip_check']);
$u_ip = short_ipv6($this->ip, $config['ip_check']);
}
else
{
$s_ip = implode('.', array_slice(explode('.', $this->data['session_ip']), 0, $config['ip_check']));
$u_ip = implode('.', array_slice(explode('.', $this->ip), 0, $config['ip_check']));
}
$s_browser = ($config['browser_check']) ? trim(strtolower(substr($this->data['session_browser'], 0, 149))) : '';
$u_browser = ($config['browser_check']) ? trim(strtolower(substr($this->browser, 0, 149))) : '';
$s_forwarded_for = ($config['forwarded_for_check']) ? substr($this->data['session_forwarded_for'], 0, 254) : '';
$u_forwarded_for = ($config['forwarded_for_check']) ? substr($this->forwarded_for, 0, 254) : '';
// referer checks
// The @ before $config['referer_validation'] suppresses notices present while running the updater
$check_referer_path = (@$config['referer_validation'] == REFERER_VALIDATE_PATH);
$referer_valid = true;
// we assume HEAD and TRACE to be foul play and thus only whitelist GET
if (@$config['referer_validation'] && strtolower($request->server('REQUEST_METHOD')) !== 'get')
{
$referer_valid = $this->validate_referer($check_referer_path);
}
if ($u_ip === $s_ip && $s_browser === $u_browser && $s_forwarded_for === $u_forwarded_for && $referer_valid)
{
$session_expired = false;
// Check whether the session is still valid if we have one
$method = basename(trim($config['auth_method']));
$provider = $phpbb_container->get('auth.provider.' . $method);
if (!($provider instanceof \phpbb\auth\provider\provider_interface))
{
throw new \RuntimeException($provider . ' must implement \phpbb\auth\provider\provider_interface');
}
$ret = $provider->validate_session($this->data);
if ($ret !== null && !$ret)
{
$session_expired = true;
}
if (!$session_expired)
{
// Check the session length timeframe if autologin is not enabled.
// Else check the autologin length... and also removing those having autologin enabled but no longer allowed board-wide.
if (!$this->data['session_autologin'])
{
if ($this->data['session_time'] < $this->time_now - ($config['session_length'] + 60))
{
$session_expired = true;
}
}
else if (!$config['allow_autologin'] || ($config['max_autologin_time'] && $this->data['session_time'] < $this->time_now - (86400 * (int) $config['max_autologin_time']) + 60))
{
$session_expired = true;
}
}
if (!$session_expired)
{
// Only update session DB a minute or so after last update or if page changes
if ($this->time_now - $this->data['session_time'] > 60 || ($this->update_session_page && $this->data['session_page'] != $this->page['page']))
{
$sql_ary = array('session_time' => $this->time_now);
if ($this->update_session_page)
{
$sql_ary['session_page'] = substr($this->page['page'], 0, 199);
$sql_ary['session_forum_id'] = $this->page['forum'];
}
$db->sql_return_on_error(true);
$this->update_session($sql_ary);
$db->sql_return_on_error(false);
// If the database is not yet updated, there will be an error due to the session_forum_id
// @todo REMOVE for 3.0.2
if ($result === false)
{
unset($sql_ary['session_forum_id']);
$this->update_session($sql_ary);
}
if ($this->data['user_id'] != ANONYMOUS && !empty($config['new_member_post_limit']) && $this->data['user_new'] && $config['new_member_post_limit'] <= $this->data['user_posts'])
{
$this->leave_newly_registered();
}
}
$this->data['is_registered'] = ($this->data['user_id'] != ANONYMOUS && ($this->data['user_type'] == USER_NORMAL || $this->data['user_type'] == USER_FOUNDER)) ? true : false;
$this->data['is_bot'] = (!$this->data['is_registered'] && $this->data['user_id'] != ANONYMOUS) ? true : false;
$this->data['user_lang'] = basename($this->data['user_lang']);
return true;
}
}
else
{
// Added logging temporarly to help debug bugs...
if (defined('DEBUG') && $this->data['user_id'] != ANONYMOUS)
{
if ($referer_valid)
{
add_log('critical', 'LOG_IP_BROWSER_FORWARDED_CHECK', $u_ip, $s_ip, $u_browser, $s_browser, htmlspecialchars($u_forwarded_for), htmlspecialchars($s_forwarded_for));
}
else
{
add_log('critical', 'LOG_REFERER_INVALID', $this->referer);
}
}
}
}
}
// If we reach here then no (valid) session exists. So we'll create a new one
return $this->session_create();
}
/**
* Create a new session
*
* If upon trying to start a session we discover there is nothing existing we
* jump here. Additionally this method is called directly during login to regenerate
* the session for the specific user. In this method we carry out a number of tasks;
* garbage collection, (search)bot checking, banned user comparison. Basically
* though this method will result in a new session for a specific user.
*/
function session_create($user_id = false, $set_admin = false, $persist_login = false, $viewonline = true)
{
global $SID, $_SID, $db, $config, $cache, $phpbb_root_path, $phpEx, $phpbb_container;
$this->data = array();
/* Garbage collection ... remove old sessions updating user information
// if necessary. It means (potentially) 11 queries but only infrequently
if ($this->time_now > $config['session_last_gc'] + $config['session_gc'])
{
$this->session_gc();
}*/
// Do we allow autologin on this board? No? Then override anything
// that may be requested here
if (!$config['allow_autologin'])
{
$this->cookie_data['k'] = $persist_login = false;
}
/**
* Here we do a bot check, oh er saucy! No, not that kind of bot
* check. We loop through the list of bots defined by the admin and
* see if we have any useragent and/or IP matches. If we do, this is a
* bot, act accordingly
*/
$bot = false;
$active_bots = $cache->obtain_bots();
foreach ($active_bots as $row)
{
if ($row['bot_agent'] && preg_match('#' . str_replace('\*', '.*?', preg_quote($row['bot_agent'], '#')) . '#i', $this->browser))
{
$bot = $row['user_id'];
}
// If ip is supplied, we will make sure the ip is matching too...
if ($row['bot_ip'] && ($bot || !$row['bot_agent']))
{
// Set bot to false, then we only have to set it to true if it is matching
$bot = false;
foreach (explode(',', $row['bot_ip']) as $bot_ip)
{
$bot_ip = trim($bot_ip);
if (!$bot_ip)
{
continue;
}
if (strpos($this->ip, $bot_ip) === 0)
{
$bot = (int) $row['user_id'];
break;
}
}
}
if ($bot)
{
break;
}
}
$method = basename(trim($config['auth_method']));
$provider = $phpbb_container->get('auth.provider.' . $method);
$this->data = $provider->autologin();
if (sizeof($this->data))
{
$this->cookie_data['k'] = '';
$this->cookie_data['u'] = $this->data['user_id'];
}
// If we're presented with an autologin key we'll join against it.
// Else if we've been passed a user_id we'll grab data based on that
if (isset($this->cookie_data['k']) && $this->cookie_data['k'] && $this->cookie_data['u'] && !sizeof($this->data))
{
$sql = 'SELECT u.*
FROM ' . USERS_TABLE . ' u, ' . SESSIONS_KEYS_TABLE . ' k
WHERE u.user_id = ' . (int) $this->cookie_data['u'] . '
AND u.user_type IN (' . USER_NORMAL . ', ' . USER_FOUNDER . ")
AND k.user_id = u.user_id
AND k.key_id = '" . $db->sql_escape(md5($this->cookie_data['k'])) . "'";
$result = $db->sql_query($sql);
$this->data = $db->sql_fetchrow($result);
$db->sql_freeresult($result);
$bot = false;
}
else if ($user_id !== false && !sizeof($this->data))
{
$this->cookie_data['k'] = '';
$this->cookie_data['u'] = $user_id;
$sql = 'SELECT *
FROM ' . USERS_TABLE . '
WHERE user_id = ' . (int) $this->cookie_data['u'] . '
AND user_type IN (' . USER_NORMAL . ', ' . USER_FOUNDER . ')';
$result = $db->sql_query($sql);
$this->data = $db->sql_fetchrow($result);
$db->sql_freeresult($result);
$bot = false;
}
// Bot user, if they have a SID in the Request URI we need to get rid of it
// otherwise they'll index this page with the SID, duplicate content oh my!
if ($bot && isset($_GET['sid']))
{
send_status_line(301, 'Moved Permanently');
redirect(build_url(array('sid')));
}
// If no data was returned one or more of the following occurred:
// Key didn't match one in the DB
// User does not exist
// User is inactive
// User is bot
if (!sizeof($this->data) || !is_array($this->data))
{
$this->cookie_data['k'] = '';
$this->cookie_data['u'] = ($bot) ? $bot : ANONYMOUS;
if (!$bot)
{
$sql = 'SELECT *
FROM ' . USERS_TABLE . '
WHERE user_id = ' . (int) $this->cookie_data['u'];
}
else
{
// We give bots always the same session if it is not yet expired.
$sql = 'SELECT u.*, s.*
FROM ' . USERS_TABLE . ' u
LEFT JOIN ' . SESSIONS_TABLE . ' s ON (s.session_user_id = u.user_id)
WHERE u.user_id = ' . (int) $bot;
}
$result = $db->sql_query($sql);
$this->data = $db->sql_fetchrow($result);
$db->sql_freeresult($result);
}
if ($this->data['user_id'] != ANONYMOUS && !$bot)
{
$this->data['session_last_visit'] = (isset($this->data['session_time']) && $this->data['session_time']) ? $this->data['session_time'] : (($this->data['user_lastvisit']) ? $this->data['user_lastvisit'] : time());
}
else
{
$this->data['session_last_visit'] = $this->time_now;
}
// Force user id to be integer...
$this->data['user_id'] = (int) $this->data['user_id'];
// At this stage we should have a filled data array, defined cookie u and k data.
// data array should contain recent session info if we're a real user and a recent
// session exists in which case session_id will also be set
// Is user banned? Are they excluded? Won't return on ban, exists within method
if ($this->data['user_type'] != USER_FOUNDER)
{
if (!$config['forwarded_for_check'])
{
$this->check_ban($this->data['user_id'], $this->ip);
}
else
{
$ips = explode(' ', $this->forwarded_for);
$ips[] = $this->ip;
$this->check_ban($this->data['user_id'], $ips);
}
}
$this->data['is_registered'] = (!$bot && $this->data['user_id'] != ANONYMOUS && ($this->data['user_type'] == USER_NORMAL || $this->data['user_type'] == USER_FOUNDER)) ? true : false;
$this->data['is_bot'] = ($bot) ? true : false;
// If our friend is a bot, we re-assign a previously assigned session
if ($this->data['is_bot'] && $bot == $this->data['user_id'] && $this->data['session_id'])
{
// Only assign the current session if the ip, browser and forwarded_for match...
if (strpos($this->ip, ':') !== false && strpos($this->data['session_ip'], ':') !== false)
{
$s_ip = short_ipv6($this->data['session_ip'], $config['ip_check']);
$u_ip = short_ipv6($this->ip, $config['ip_check']);
}
else
{
$s_ip = implode('.', array_slice(explode('.', $this->data['session_ip']), 0, $config['ip_check']));
$u_ip = implode('.', array_slice(explode('.', $this->ip), 0, $config['ip_check']));
}
$s_browser = ($config['browser_check']) ? trim(strtolower(substr($this->data['session_browser'], 0, 149))) : '';
$u_browser = ($config['browser_check']) ? trim(strtolower(substr($this->browser, 0, 149))) : '';
$s_forwarded_for = ($config['forwarded_for_check']) ? substr($this->data['session_forwarded_for'], 0, 254) : '';
$u_forwarded_for = ($config['forwarded_for_check']) ? substr($this->forwarded_for, 0, 254) : '';
if ($u_ip === $s_ip && $s_browser === $u_browser && $s_forwarded_for === $u_forwarded_for)
{
$this->session_id = $this->data['session_id'];
// Only update session DB a minute or so after last update or if page changes
if ($this->time_now - $this->data['session_time'] > 60 || ($this->update_session_page && $this->data['session_page'] != $this->page['page']))
{
$this->data['session_time'] = $this->data['session_last_visit'] = $this->time_now;
$sql_ary = array('session_time' => $this->time_now, 'session_last_visit' => $this->time_now, 'session_admin' => 0);
if ($this->update_session_page)
{
$sql_ary['session_page'] = substr($this->page['page'], 0, 199);
$sql_ary['session_forum_id'] = $this->page['forum'];
}
$this->update_session($sql_ary);
// Update the last visit time
$sql = 'UPDATE ' . USERS_TABLE . '
SET user_lastvisit = ' . (int) $this->data['session_time'] . '
WHERE user_id = ' . (int) $this->data['user_id'];
$db->sql_query($sql);
}
$SID = '?sid=';
$_SID = '';
return true;
}
else
{
// If the ip and browser does not match make sure we only have one bot assigned to one session
$db->sql_query('DELETE FROM ' . SESSIONS_TABLE . ' WHERE session_user_id = ' . $this->data['user_id']);
}
}
$session_autologin = (($this->cookie_data['k'] || $persist_login) && $this->data['is_registered']) ? true : false;
$set_admin = ($set_admin && $this->data['is_registered']) ? true : false;
// Create or update the session
$sql_ary = array(
'session_user_id' => (int) $this->data['user_id'],
'session_start' => (int) $this->time_now,
'session_last_visit' => (int) $this->data['session_last_visit'],
'session_time' => (int) $this->time_now,
'session_browser' => (string) trim(substr($this->browser, 0, 149)),
'session_forwarded_for' => (string) $this->forwarded_for,
'session_ip' => (string) $this->ip,
'session_autologin' => ($session_autologin) ? 1 : 0,
'session_admin' => ($set_admin) ? 1 : 0,
'session_viewonline' => ($viewonline) ? 1 : 0,
);
if ($this->update_session_page)
{
$sql_ary['session_page'] = (string) substr($this->page['page'], 0, 199);
$sql_ary['session_forum_id'] = $this->page['forum'];
}
$db->sql_return_on_error(true);
$sql = 'DELETE
FROM ' . SESSIONS_TABLE . '
WHERE session_id = \'' . $db->sql_escape($this->session_id) . '\'
AND session_user_id = ' . ANONYMOUS;
if (!defined('IN_ERROR_HANDLER') && (!$this->session_id || !$db->sql_query($sql) || !$db->sql_affectedrows()))
{
// Limit new sessions in 1 minute period (if required)
if (empty($this->data['session_time']) && $config['active_sessions'])
{
// $db->sql_return_on_error(false);
$sql = 'SELECT COUNT(session_id) AS sessions
FROM ' . SESSIONS_TABLE . '
WHERE session_time >= ' . ($this->time_now - 60);
$result = $db->sql_query($sql);
$row = $db->sql_fetchrow($result);
$db->sql_freeresult($result);
if ((int) $row['sessions'] > (int) $config['active_sessions'])
{
send_status_line(503, 'Service Unavailable');
trigger_error('BOARD_UNAVAILABLE');
}
}
}
// Since we re-create the session id here, the inserted row must be unique. Therefore, we display potential errors.
// Commented out because it will not allow forums to update correctly
// $db->sql_return_on_error(false);
// Something quite important: session_page always holds the *last* page visited, except for the *first* visit.
// We are not able to simply have an empty session_page btw, therefore we need to tell phpBB how to detect this special case.
// If the session id is empty, we have a completely new one and will set an "identifier" here. This identifier is able to be checked later.
if (empty($this->data['session_id']))
{
// This is a temporary variable, only set for the very first visit
$this->data['session_created'] = true;
}
$this->session_id = $this->data['session_id'] = md5(unique_id());
$sql_ary['session_id'] = (string) $this->session_id;
$sql_ary['session_page'] = (string) substr($this->page['page'], 0, 199);
$sql_ary['session_forum_id'] = $this->page['forum'];
$sql = 'INSERT INTO ' . SESSIONS_TABLE . ' ' . $db->sql_build_array('INSERT', $sql_ary);
$db->sql_query($sql);
$db->sql_return_on_error(false);
// Regenerate autologin/persistent login key
if ($session_autologin)
{
$this->set_login_key();
}
// refresh data
$SID = '?sid=' . $this->session_id;
$_SID = $this->session_id;
$this->data = array_merge($this->data, $sql_ary);
if (!$bot)
{
$cookie_expire = $this->time_now + (($config['max_autologin_time']) ? 86400 * (int) $config['max_autologin_time'] : 31536000);
$this->set_cookie('u', $this->cookie_data['u'], $cookie_expire);
$this->set_cookie('k', $this->cookie_data['k'], $cookie_expire);
$this->set_cookie('sid', $this->session_id, $cookie_expire);
unset($cookie_expire);
$sql = 'SELECT COUNT(session_id) AS sessions
FROM ' . SESSIONS_TABLE . '
WHERE session_user_id = ' . (int) $this->data['user_id'] . '
AND session_time >= ' . (int) ($this->time_now - (max($config['session_length'], $config['form_token_lifetime'])));
$result = $db->sql_query($sql);
$row = $db->sql_fetchrow($result);
$db->sql_freeresult($result);
if ((int) $row['sessions'] <= 1 || empty($this->data['user_form_salt']))
{
$this->data['user_form_salt'] = unique_id();
// Update the form key
$sql = 'UPDATE ' . USERS_TABLE . '
SET user_form_salt = \'' . $db->sql_escape($this->data['user_form_salt']) . '\'
WHERE user_id = ' . (int) $this->data['user_id'];
$db->sql_query($sql);
}
}
else
{
$this->data['session_time'] = $this->data['session_last_visit'] = $this->time_now;
// Update the last visit time
$sql = 'UPDATE ' . USERS_TABLE . '
SET user_lastvisit = ' . (int) $this->data['session_time'] . '
WHERE user_id = ' . (int) $this->data['user_id'];
$db->sql_query($sql);
$SID = '?sid=';
$_SID = '';
}
return true;
}
/**
* Kills a session
*
* This method does what it says on the tin. It will delete a pre-existing session.
* It resets cookie information (destroying any autologin key within that cookie data)
* and update the users information from the relevant session data. It will then
* grab guest user information.
*/
function session_kill($new_session = true)
{
global $SID, $_SID, $db, $config, $phpbb_root_path, $phpEx, $phpbb_container;
$sql = 'DELETE FROM ' . SESSIONS_TABLE . "
WHERE session_id = '" . $db->sql_escape($this->session_id) . "'
AND session_user_id = " . (int) $this->data['user_id'];
$db->sql_query($sql);
// Allow connecting logout with external auth method logout
$method = basename(trim($config['auth_method']));
$provider = $phpbb_container->get('auth.provider.' . $method);
$provider->logout($this->data, $new_session);
if ($this->data['user_id'] != ANONYMOUS)
{
// Delete existing session, update last visit info first!
if (!isset($this->data['session_time']))
{
$this->data['session_time'] = time();
}
$sql = 'UPDATE ' . USERS_TABLE . '
SET user_lastvisit = ' . (int) $this->data['session_time'] . '
WHERE user_id = ' . (int) $this->data['user_id'];
$db->sql_query($sql);
if ($this->cookie_data['k'])
{
$sql = 'DELETE FROM ' . SESSIONS_KEYS_TABLE . '
WHERE user_id = ' . (int) $this->data['user_id'] . "
AND key_id = '" . $db->sql_escape(md5($this->cookie_data['k'])) . "'";
$db->sql_query($sql);
}
// Reset the data array
$this->data = array();
$sql = 'SELECT *
FROM ' . USERS_TABLE . '
WHERE user_id = ' . ANONYMOUS;
$result = $db->sql_query($sql);
$this->data = $db->sql_fetchrow($result);
$db->sql_freeresult($result);
}
$cookie_expire = $this->time_now - 31536000;
$this->set_cookie('u', '', $cookie_expire);
$this->set_cookie('k', '', $cookie_expire);
$this->set_cookie('sid', '', $cookie_expire);
unset($cookie_expire);
$SID = '?sid=';
$this->session_id = $_SID = '';
// To make sure a valid session is created we create one for the anonymous user
if ($new_session)
{
$this->session_create(ANONYMOUS);
}
return true;
}
/**
* Session garbage collection
*
* This looks a lot more complex than it really is. Effectively we are
* deleting any sessions older than an admin definable limit. Due to the
* way in which we maintain session data we have to ensure we update user
* data before those sessions are destroyed. In addition this method
* removes autologin key information that is older than an admin defined
* limit.
*/
function session_gc()
{
global $db, $config, $phpbb_root_path, $phpEx;
$batch_size = 10;
if (!$this->time_now)
{
$this->time_now = time();
}
// Firstly, delete guest sessions
$sql = 'DELETE FROM ' . SESSIONS_TABLE . '
WHERE session_user_id = ' . ANONYMOUS . '
AND session_time < ' . (int) ($this->time_now - $config['session_length']);
$db->sql_query($sql);
// Get expired sessions, only most recent for each user
$sql = 'SELECT session_user_id, session_page, MAX(session_time) AS recent_time
FROM ' . SESSIONS_TABLE . '
WHERE session_time < ' . ($this->time_now - $config['session_length']) . '
GROUP BY session_user_id, session_page';
$result = $db->sql_query_limit($sql, $batch_size);
$del_user_id = array();
$del_sessions = 0;
while ($row = $db->sql_fetchrow($result))
{
$sql = 'UPDATE ' . USERS_TABLE . '
SET user_lastvisit = ' . (int) $row['recent_time'] . ", user_lastpage = '" . $db->sql_escape($row['session_page']) . "'
WHERE user_id = " . (int) $row['session_user_id'];
$db->sql_query($sql);
$del_user_id[] = (int) $row['session_user_id'];
$del_sessions++;
}
$db->sql_freeresult($result);
if (sizeof($del_user_id))
{
// Delete expired sessions
$sql = 'DELETE FROM ' . SESSIONS_TABLE . '
WHERE ' . $db->sql_in_set('session_user_id', $del_user_id) . '
AND session_time < ' . ($this->time_now - $config['session_length']);
$db->sql_query($sql);
}
if ($del_sessions < $batch_size)
{
// Less than 10 users, update gc timer ... else we want gc
// called again to delete other sessions
set_config('session_last_gc', $this->time_now, true);
if ($config['max_autologin_time'])
{
$sql = 'DELETE FROM ' . SESSIONS_KEYS_TABLE . '
WHERE last_login < ' . (time() - (86400 * (int) $config['max_autologin_time']));
$db->sql_query($sql);
}
// only called from CRON; should be a safe workaround until the infrastructure gets going
if (!class_exists('phpbb_captcha_factory', false))
{
include($phpbb_root_path . "includes/captcha/captcha_factory." . $phpEx);
}
$captcha_factory = new \phpbb_captcha_factory();
$captcha_factory->garbage_collect($config['captcha_plugin']);
$sql = 'DELETE FROM ' . LOGIN_ATTEMPT_TABLE . '
WHERE attempt_time < ' . (time() - (int) $config['ip_login_limit_time']);
$db->sql_query($sql);
}
return;
}
/**
* Sets a cookie
*
* Sets a cookie of the given name with the specified data for the given length of time. If no time is specified, a session cookie will be set.
*
* @param string $name Name of the cookie, will be automatically prefixed with the phpBB cookie name. track becomes [cookie_name]_track then.
* @param string $cookiedata The data to hold within the cookie
* @param int $cookietime The expiration time as UNIX timestamp. If 0 is provided, a session cookie is set.
*/
function set_cookie($name, $cookiedata, $cookietime)
{
global $config;
$name_data = rawurlencode($config['cookie_name'] . '_' . $name) . '=' . rawurlencode($cookiedata);
$expire = gmdate('D, d-M-Y H:i:s \\G\\M\\T', $cookietime);
$domain = (!$config['cookie_domain'] || $config['cookie_domain'] == 'localhost' || $config['cookie_domain'] == '127.0.0.1') ? '' : '; domain=' . $config['cookie_domain'];
header('Set-Cookie: ' . $name_data . (($cookietime) ? '; expires=' . $expire : '') . '; path=' . $config['cookie_path'] . $domain . ((!$config['cookie_secure']) ? '' : '; secure') . '; HttpOnly', false);
}
/**
* Check for banned user
*
* Checks whether the supplied user is banned by id, ip or email. If no parameters
* are passed to the method pre-existing session data is used. If $return is false
* this routine does not return on finding a banned user, it outputs a relevant
* message and stops execution.
*
* @param string|array $user_ips Can contain a string with one IP or an array of multiple IPs
*/
function check_ban($user_id = false, $user_ips = false, $user_email = false, $return = false)
{
global $config, $db;
if (defined('IN_CHECK_BAN'))
{
return;
}
$banned = false;
$cache_ttl = 3600;
$where_sql = array();
$sql = 'SELECT ban_ip, ban_userid, ban_email, ban_exclude, ban_give_reason, ban_end
FROM ' . BANLIST_TABLE . '
WHERE ';
// Determine which entries to check, only return those
if ($user_email === false)
{
$where_sql[] = "ban_email = ''";
}
if ($user_ips === false)
{
$where_sql[] = "(ban_ip = '' OR ban_exclude = 1)";
}
if ($user_id === false)
{
$where_sql[] = '(ban_userid = 0 OR ban_exclude = 1)';
}
else
{
$cache_ttl = ($user_id == ANONYMOUS) ? 3600 : 0;
$_sql = '(ban_userid = ' . $user_id;
if ($user_email !== false)
{
$_sql .= " OR ban_email <> ''";
}
if ($user_ips !== false)
{
$_sql .= " OR ban_ip <> ''";
}
$_sql .= ')';
$where_sql[] = $_sql;
}
$sql .= (sizeof($where_sql)) ? implode(' AND ', $where_sql) : '';
$result = $db->sql_query($sql, $cache_ttl);
$ban_triggered_by = 'user';
while ($row = $db->sql_fetchrow($result))
{
if ($row['ban_end'] && $row['ban_end'] < time())
{
continue;
}
$ip_banned = false;
if (!empty($row['ban_ip']))
{
if (!is_array($user_ips))
{
$ip_banned = preg_match('#^' . str_replace('\*', '.*?', preg_quote($row['ban_ip'], '#')) . '$#i', $user_ips);
}
else
{
foreach ($user_ips as $user_ip)
{
if (preg_match('#^' . str_replace('\*', '.*?', preg_quote($row['ban_ip'], '#')) . '$#i', $user_ip))
{
$ip_banned = true;
break;
}
}
}
}
if ((!empty($row['ban_userid']) && intval($row['ban_userid']) == $user_id) ||
$ip_banned ||
(!empty($row['ban_email']) && preg_match('#^' . str_replace('\*', '.*?', preg_quote($row['ban_email'], '#')) . '$#i', $user_email)))
{
if (!empty($row['ban_exclude']))
{
$banned = false;
break;
}
else
{
$banned = true;
$ban_row = $row;
if (!empty($row['ban_userid']) && intval($row['ban_userid']) == $user_id)
{
$ban_triggered_by = 'user';
}
else if ($ip_banned)
{
$ban_triggered_by = 'ip';
}
else
{
$ban_triggered_by = 'email';
}
// Don't break. Check if there is an exclude rule for this user
}
}
}
$db->sql_freeresult($result);
if ($banned && !$return)
{
global $template;
// If the session is empty we need to create a valid one...
if (empty($this->session_id))
{
// This seems to be no longer needed? - #14971
// $this->session_create(ANONYMOUS);
}
// Initiate environment ... since it won't be set at this stage
$this->setup();
// Logout the user, banned users are unable to use the normal 'logout' link
if ($this->data['user_id'] != ANONYMOUS)
{
$this->session_kill();
}
// We show a login box here to allow founders accessing the board if banned by IP
if (defined('IN_LOGIN') && $this->data['user_id'] == ANONYMOUS)
{
global $phpEx;
$this->setup('ucp');
$this->data['is_registered'] = $this->data['is_bot'] = false;
// Set as a precaution to allow login_box() handling this case correctly as well as this function not being executed again.
define('IN_CHECK_BAN', 1);
login_box("index.$phpEx");
// The false here is needed, else the user is able to circumvent the ban.
$this->session_kill(false);
}
// Ok, we catch the case of an empty session id for the anonymous user...
// This can happen if the user is logging in, banned by username and the login_box() being called "again".
if (empty($this->session_id) && defined('IN_CHECK_BAN'))
{
$this->session_create(ANONYMOUS);
}
// Determine which message to output
$till_date = ($ban_row['ban_end']) ? $this->format_date($ban_row['ban_end']) : '';
$message = ($ban_row['ban_end']) ? 'BOARD_BAN_TIME' : 'BOARD_BAN_PERM';
$message = sprintf($this->lang[$message], $till_date, '', '');
$message .= ($ban_row['ban_give_reason']) ? '
' . sprintf($this->lang['BOARD_BAN_REASON'], $ban_row['ban_give_reason']) : '';
$message .= '
' . $this->lang['BAN_TRIGGERED_BY_' . strtoupper($ban_triggered_by)] . '';
// To circumvent session_begin returning a valid value and the check_ban() not called on second page view, we kill the session again
$this->session_kill(false);
// A very special case... we are within the cron script which is not supposed to print out the ban message... show blank page
if (defined('IN_CRON'))
{
garbage_collection();
exit_handler();
exit;
}
trigger_error($message);
}
return ($banned && $ban_row['ban_give_reason']) ? $ban_row['ban_give_reason'] : $banned;
}
/**
* Check if ip is blacklisted
* This should be called only where absolutly necessary
*
* Only IPv4 (rbldns does not support AAAA records/IPv6 lookups)
*
* @author satmd (from the php manual)
* @param string $mode register/post - spamcop for example is ommitted for posting
* @return false if ip is not blacklisted, else an array([checked server], [lookup])
*/
function check_dnsbl($mode, $ip = false)
{
if ($ip === false)
{
$ip = $this->ip;
}
// Neither Spamhaus nor Spamcop supports IPv6 addresses.
if (strpos($ip, ':') !== false)
{
return false;
}
$dnsbl_check = array(
'sbl.spamhaus.org' => 'http://www.spamhaus.org/query/bl?ip=',
);
if ($mode == 'register')
{
$dnsbl_check['bl.spamcop.net'] = 'http://spamcop.net/bl.shtml?';
}
if ($ip)
{
$quads = explode('.', $ip);
$reverse_ip = $quads[3] . '.' . $quads[2] . '.' . $quads[1] . '.' . $quads[0];
// Need to be listed on all servers...
$listed = true;
$info = array();
foreach ($dnsbl_check as $dnsbl => $lookup)
{
if (phpbb_checkdnsrr($reverse_ip . '.' . $dnsbl . '.', 'A') === true)
{
$info = array($dnsbl, $lookup . $ip);
}
else
{
$listed = false;
}
}
if ($listed)
{
return $info;
}
}
return false;
}
/**
* Check if URI is blacklisted
* This should be called only where absolutly necessary, for example on the submitted website field
* This function is not in use at the moment and is only included for testing purposes, it may not work at all!
* This means it is untested at the moment and therefore commented out
*
* @param string $uri URI to check
* @return true if uri is on blacklist, else false. Only blacklist is checked (~zero FP), no grey lists
function check_uribl($uri)
{
// Normally parse_url() is not intended to parse uris
// We need to get the top-level domain name anyway... change.
$uri = parse_url($uri);
if ($uri === false || empty($uri['host']))
{
return false;
}
$uri = trim($uri['host']);
if ($uri)
{
// One problem here... the return parameter for the "windows" method is different from what
// we expect... this may render this check useless...
if (phpbb_checkdnsrr($uri . '.multi.uribl.com.', 'A') === true)
{
return true;
}
}
return false;
}
*/
/**
* Set/Update a persistent login key
*
* This method creates or updates a persistent session key. When a user makes
* use of persistent (formerly auto-) logins a key is generated and stored in the
* DB. When they revisit with the same key it's automatically updated in both the
* DB and cookie. Multiple keys may exist for each user representing different
* browsers or locations. As with _any_ non-secure-socket no passphrase login this
* remains vulnerable to exploit.
*/
function set_login_key($user_id = false, $key = false, $user_ip = false)
{
global $config, $db;
$user_id = ($user_id === false) ? $this->data['user_id'] : $user_id;
$user_ip = ($user_ip === false) ? $this->ip : $user_ip;
$key = ($key === false) ? (($this->cookie_data['k']) ? $this->cookie_data['k'] : false) : $key;
$key_id = unique_id(hexdec(substr($this->session_id, 0, 8)));
$sql_ary = array(
'key_id' => (string) md5($key_id),
'last_ip' => (string) $this->ip,
'last_login' => (int) time()
);
if (!$key)
{
$sql_ary += array(
'user_id' => (int) $user_id
);
}
if ($key)
{
$sql = 'UPDATE ' . SESSIONS_KEYS_TABLE . '
SET ' . $db->sql_build_array('UPDATE', $sql_ary) . '
WHERE user_id = ' . (int) $user_id . "
AND key_id = '" . $db->sql_escape(md5($key)) . "'";
}
else
{
$sql = 'INSERT INTO ' . SESSIONS_KEYS_TABLE . ' ' . $db->sql_build_array('INSERT', $sql_ary);
}
$db->sql_query($sql);
$this->cookie_data['k'] = $key_id;
return false;
}
/**
* Reset all login keys for the specified user
*
* This method removes all current login keys for a specified (or the current)
* user. It will be called on password change to render old keys unusable
*/
function reset_login_keys($user_id = false)
{
global $config, $db;
$user_id = ($user_id === false) ? (int) $this->data['user_id'] : (int) $user_id;
$sql = 'DELETE FROM ' . SESSIONS_KEYS_TABLE . '
WHERE user_id = ' . (int) $user_id;
$db->sql_query($sql);
// If the user is logged in, update last visit info first before deleting sessions
$sql = 'SELECT session_time, session_page
FROM ' . SESSIONS_TABLE . '
WHERE session_user_id = ' . (int) $user_id . '
ORDER BY session_time DESC';
$result = $db->sql_query_limit($sql, 1);
$row = $db->sql_fetchrow($result);
$db->sql_freeresult($result);
if ($row)
{
$sql = 'UPDATE ' . USERS_TABLE . '
SET user_lastvisit = ' . (int) $row['session_time'] . ", user_lastpage = '" . $db->sql_escape($row['session_page']) . "'
WHERE user_id = " . (int) $user_id;
$db->sql_query($sql);
}
// Let's also clear any current sessions for the specified user_id
// If it's the current user then we'll leave this session intact
$sql_where = 'session_user_id = ' . (int) $user_id;
$sql_where .= ($user_id === (int) $this->data['user_id']) ? " AND session_id <> '" . $db->sql_escape($this->session_id) . "'" : '';
$sql = 'DELETE FROM ' . SESSIONS_TABLE . "
WHERE $sql_where";
$db->sql_query($sql);
// We're changing the password of the current user and they have a key
// Lets regenerate it to be safe
if ($user_id === (int) $this->data['user_id'] && $this->cookie_data['k'])
{
$this->set_login_key($user_id);
}
}
/**
* Check if the request originated from the same page.
* @param bool $check_script_path If true, the path will be checked as well
*/
function validate_referer($check_script_path = false)
{
global $config, $request;
// no referer - nothing to validate, user's fault for turning it off (we only check on POST; so meta can't be the reason)
if (empty($this->referer) || empty($this->host))
{
return true;
}
$host = htmlspecialchars($this->host);
$ref = substr($this->referer, strpos($this->referer, '://') + 3);
if (!(stripos($ref, $host) === 0) && (!$config['force_server_vars'] || !(stripos($ref, $config['server_name']) === 0)))
{
return false;
}
else if ($check_script_path && rtrim($this->page['root_script_path'], '/') !== '')
{
$ref = substr($ref, strlen($host));
$server_port = $request->server('SERVER_PORT', 0);
if ($server_port !== 80 && $server_port !== 443 && stripos($ref, ":$server_port") === 0)
{
$ref = substr($ref, strlen(":$server_port"));
}
if (!(stripos(rtrim($ref, '/'), rtrim($this->page['root_script_path'], '/')) === 0))
{
return false;
}
}
return true;
}
function unset_admin()
{
global $db;
$sql = 'UPDATE ' . SESSIONS_TABLE . '
SET session_admin = 0
WHERE session_id = \'' . $db->sql_escape($this->session_id) . '\'';
$db->sql_query($sql);
}
/**
* Update the session data
*
* @param array $session_data associative array of session keys to be updated
* @param string $session_id optional session_id, defaults to current user's session_id
*/
public function update_session($session_data, $session_id = null)
{
global $db;
$session_id = ($session_id) ? $session_id : $this->session_id;
$sql = 'UPDATE ' . SESSIONS_TABLE . ' SET ' . $db->sql_build_array('UPDATE', $session_data) . "
WHERE session_id = '" . $db->sql_escape($session_id) . "'";
$db->sql_query($sql);
}
}
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
# Translation of cs.po to Czech
# Czech messages for DrakConf
# Copyright (C) 1999,2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
#
# Radek Vybiral <Radek.Vybiral@vsb.cz>, 2000-2002.
# Michal Bukovjan <bukm@centrum.cz>, 2003, 2004, 2005, 2006, 2007.
msgid ""
msgstr ""
"Project-Id-Version: cs\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-02-14 12:34+0100\n"
"PO-Revision-Date: 2007-09-17 19:35+0200\n"
"Last-Translator: Michal Bukovjan <bukm@centrum.cz>\n"
"Language-Team: Czech <cs@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.11.4\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"
#: ../contributors.pl:11
#, c-format
msgid "Packagers"
msgstr "Autoři balíčků"
#: ../contributors.pl:12 ../contributors.pl:40
#, c-format
msgid "Per Oyvind Karlsen"
msgstr "Per Øyvind Karlsen"
#: ../contributors.pl:12
#, c-format
msgid ""
"massive packages rebuilding and cleaning, games, sparc port, proofreading of "
"Mandriva tools"
msgstr ""
"rozsáhlé sestavování a čištění balíčků, hry, port pro SPARC, kontrola "
"pravopisu v nástrojích Mandriva"
#: ../contributors.pl:13
#, c-format
msgid "Guillaume Rousse"
msgstr "Guillaume Rousse"
#: ../contributors.pl:13
#, c-format
msgid "cowsay introduction"
msgstr "zavedení aplikace cowsay"
#: ../contributors.pl:14
#, c-format
msgid "Olivier Thauvin"
msgstr "Olivier Thauvin"
#: ../contributors.pl:14
#, c-format
msgid "figlet introduction, Distriblint (checking rpm in the distro)"
msgstr ""
"zavedení figletu a aplikace Distriblint (kontrola balíčků rpm v distribuci)"
#: ../contributors.pl:15
#, c-format
msgid "Marcel Pol"
msgstr "Marcel Pol"
#: ../contributors.pl:15
#, c-format
msgid "xfce4, updated abiword, mono"
msgstr "xfce4, aktualizace aplikace abiword, mono"
#: ../contributors.pl:16
#, c-format
msgid "Ben Reser"
msgstr "Ben Reser"
#: ../contributors.pl:16
#, c-format
msgid ""
"updated nc with debian patches, fixed some perl packages, dnotify startup "
"script, urpmc, hddtemp, wipe, etc..."
msgstr ""
"aktualizace balíčku nc záplatami z distribuce Debian, oprava některých "
"Perlových balíčků, spouštěcí skript dnotify, urpmc, hddtemp, wipe, atd."
#: ../contributors.pl:17 ../contributors.pl:42
#, c-format
msgid "Thomas Backlund"
msgstr "Thomas Backlund"
#: ../contributors.pl:17
#, c-format
msgid ""
"\"deep and broad\" kernel work (many new patches before integration in "
"official kernel)"
msgstr ""
"\"rozsáhlá a důkladná\" práce na jádru (mnoho nových záplat před integrací "
"do oficiálního jádra)"
#: ../contributors.pl:18
#, c-format
msgid "Svetoslav Slavtchev"
msgstr "Svetoslav Slavtchev"
#: ../contributors.pl:18
#, c-format
msgid "kernel work (audio- and video-related patches)"
msgstr "práce na jádru (úpravy týkající se audia a videa)"
#: ../contributors.pl:19
#, c-format
msgid "Danny Tholen"
msgstr "Danny Tholen"
#: ../contributors.pl:19
#, c-format
msgid "patches to some packages, kfiresaver, xwine. ppc kernel-benh."
msgstr "opravy některých balíčků, kfiresaver, xwine. PPC kernel-benh."
#: ../contributors.pl:20
#, c-format
msgid "Buchan Milne"
msgstr "Buchan Milne"
#: ../contributors.pl:20
#, c-format
msgid ""
"Samba 3.0 (prerelease) that co-exists with Samba 2.2.x, Samba-2.2.x, GIS "
"software (grass, mapserver), cursor_themes collection, misc server-side "
"contributions"
msgstr ""
"Samba 3.0 (prerelease), která pracuje současně se verzí Samba 2.2.x, Samba "
"2.2.x, GIS software (grass, mapserver), sbírka témat kurzorů, další "
"příspěvky pro server"
#: ../contributors.pl:21
#, c-format
msgid "Goetz Waschk"
msgstr "Götz Waschk"
#: ../contributors.pl:21
#, c-format
msgid ""
"xine, totem, gstreamer, mplayer, vlc, vcdimager, xmms and plugins gnome-"
"python, rox desktop"
msgstr ""
"xine, totem, gstreamer, mplayer, vlc, vcdimager, xmms a zásuvné moduly, "
"gnome-python, pracovní prostředí rox"
#: ../contributors.pl:22
#, c-format
msgid "Austin Acton"
msgstr "Austin Acton"
#: ../contributors.pl:22
#, c-format
msgid ""
"audio/video/MIDI apps, scientific apps, audio/video production howtos, "
"bluetooth, pyqt & related"
msgstr ""
"aplikace pro audio/video/MIDI, vědecké aplikace, návody pro tvorbu audia a "
"videa, bluetooth, pyqt a související balíčky"
#: ../contributors.pl:23
#, c-format
msgid "Spencer Anderson"
msgstr "Spencer Anderson"
#: ../contributors.pl:23
#, c-format
msgid "ATI/gatos/DRM stuff, opengroupware.org"
msgstr "práce na ovladačích ATI/GATOS/DRM, opengroupware.org"
#: ../contributors.pl:24
#, c-format
msgid "Andrey Borzenkov"
msgstr "Andrey Borzenkov"
#: ../contributors.pl:24
#, c-format
msgid "supermount-ng and other kernel work"
msgstr "supermount-ng a další práce na jádru"
#: ../contributors.pl:25
#, c-format
msgid "Oden Eriksson"
msgstr "Oden Eriksson"
#: ../contributors.pl:25
#, c-format
msgid "most web-based packages and many security-related packages"
msgstr ""
"většina balíčků spojených s webem a mnoho balíčků spojených s bezpečností"
#: ../contributors.pl:26
#, c-format
msgid "Stefan VanDer Eijk"
msgstr "Stefan VanDer Eijk"
#: ../contributors.pl:26
#, c-format
msgid "slbd distro checking, devel dependancies"
msgstr "kontrola distribuce slbd, závislosti balíčků pro vývoj (*-devel)"
#: ../contributors.pl:27
#, c-format
msgid "David Walser"
msgstr "David Walser"
#: ../contributors.pl:27
#, c-format
msgid "rpmsync script, foolproof MIDI playback, tweaked libao"
msgstr "skript rpmsync, bezproblémové přehrávání MIDI, úprava libao"
#: ../contributors.pl:28
#, c-format
msgid "Andi Payn"
msgstr "Andi Payn"
#: ../contributors.pl:28
#, c-format
msgid "many extra gnome applets and python modules"
msgstr "mnoho dodatečných apletů pro prostředí GNOME a modulů pro Python"
#: ../contributors.pl:29 ../contributors.pl:41
#, c-format
msgid "Tibor Pittich"
msgstr "Tibor Pittich"
#: ../contributors.pl:29
#, c-format
msgid ""
"sk-i18n, contributed several packages, openldap testing and integration, "
"bind-sdb-ldap, several years of using cooker and bug hunting, etc..."
msgstr ""
"vedoucí týmu slovenských překladatelů, přispěl několika balíčky, testování a "
"integrace openldap a bind-sdb-ldap, již několik let používá distribuci "
"Cooker a hlásí chyby, atd..."
#: ../contributors.pl:30
#, c-format
msgid "Pascal Terjan"
msgstr "Pascal Terjan"
#: ../contributors.pl:30
#, c-format
msgid "some ruby stuff, php-pear packages, various other stuff."
msgstr "vybrané balíčky okolo Ruby, různé další balíčky."
#: ../contributors.pl:31
#, c-format
msgid "Michael Reinsch"
msgstr "Michael Reinsch"
#: ../contributors.pl:31
#, c-format
msgid "moin wiki clone, beep-media-player, im-ja and some other packages"
msgstr "klon moin wiki, přehrávač médií Beep, im-ja a některé další balíčky"
#: ../contributors.pl:32
#, c-format
msgid "Christophe Guilloux"
msgstr "Christophe Guilloux"
#: ../contributors.pl:32
#, c-format
msgid "bug reports, help with thunderbird package,..."
msgstr "hlášení chyb, pomoc s balíčkem thunderbird, ..."
#: ../contributors.pl:33
#, c-format
msgid "Brook Humphrey"
msgstr "Brook Humphrey"
#: ../contributors.pl:33
#, c-format
msgid ""
"testing and bug reports, Dovecot, bibletime, sword, help with pure-ftpd, "
"spamassassin, maildrop, clamav."
msgstr ""
"testování a hlášení chyb, balíčky Dovecot, bibletime, sword, pomoc s balíčky "
"pure-ftpd, spamassassin, maildrop, clamav."
#: ../contributors.pl:34
#, c-format
msgid "Olivier Blin"
msgstr "Olivier Blin"
#: ../contributors.pl:34
#, c-format
msgid ""
"http proxy support in installer, kernel 2.6 support in sndconfig, samba3 "
"support in LinNeighborhood, fixes and enhancements in urpmi, bootsplash and "
"drakxtools"
msgstr ""
"podpora HTTP proxy v instalátoru, podpora jádra 2.6 v sndconfig, podpora "
"Samba 3 v aplikaci LinNeighborhood, opravy a rozšíření v nástrojích urpmi, "
"bootsplash a drakxtools"
#: ../contributors.pl:35
#, c-format
msgid "Emmanuel Blindauer"
msgstr "Emmanuel Blindauer"
#: ../contributors.pl:35
#, c-format
msgid "lm_sensors for 2.6 kernel, testing, some contrib packages."
msgstr "lm_sensors pro jádro 2.6, testování, některé balíčky v sekci contrib."
#: ../contributors.pl:36
#, c-format
msgid "Matthias Debus"
msgstr "Matthias Debus"
#: ../contributors.pl:36
#, c-format
msgid "sim, pine and some other contrib packages."
msgstr "sim, pine a některé balíčky v sekci contrib."
#: ../contributors.pl:37
#, c-format
msgid "Documentation"
msgstr "Dokumentace"
#: ../contributors.pl:38
#, c-format
msgid "SunnyDubey"
msgstr "SunnyDubey"
#: ../contributors.pl:38
#, c-format
msgid "wrote/edited parts of gi/docs/HACKING file"
msgstr "napsal a upravil části gi/docs/HACKING"
#: ../contributors.pl:39
#, c-format
msgid "Translators"
msgstr "Překladatelé"
#: ../contributors.pl:40
#, c-format
msgid "Norwegian Bokmal (nb) translator and coordinator, i18n work"
msgstr ""
"překladatel do norštiny Bokmål (nb) a koordinátor týmu pro norštinu, práce "
"na internacionalizaci."
#: ../contributors.pl:41
#, c-format
msgid "\"one-man\" mdk sk-i18n team"
msgstr "vedoucí jednočlenného týmu překladatelů do slovenštiny"
#: ../contributors.pl:42
#, c-format
msgid "Finnish translator and coordinator"
msgstr "překladatel do finštiny a koordinátor týmu pro finštinu"
#: ../contributors.pl:43
#, c-format
msgid "Reinout Van Schouwen"
msgstr "Reinout Van Schouwen"
#: ../contributors.pl:43
#, c-format
msgid "Dutch translator and coordinator"
msgstr "překladatel do holandštiny a koordinátor týmu pro holandštinu"
#: ../contributors.pl:44
#, c-format
msgid "Keld Simonsen"
msgstr "Keld Simonsen"
#: ../contributors.pl:44
#, c-format
msgid "Danish translator (and some Bokmal too:-)"
msgstr "překladatel do dánštiny (také část překladů do norštiny Bokmål)"
#: ../contributors.pl:45
#, c-format
msgid "Karl Ove Hufthammer"
msgstr "Karl Ove Hufthammer"
#: ../contributors.pl:45
#, c-format
msgid "Norwegian Nynorsk (nn) translator and coordinator"
msgstr "překladatel do norštiny Nynorsk (nn) a koordinátor týmu pro norštinu"
#: ../contributors.pl:46
#, c-format
msgid "Marek Laane"
msgstr "Marek Laane"
#: ../contributors.pl:46
#, c-format
msgid "Estonian translator"
msgstr "překladatel do estonštiny"
#: ../contributors.pl:47
#, c-format
msgid "Andrea Celli"
msgstr "Andrea Celli"
#: ../contributors.pl:47 ../contributors.pl:48 ../contributors.pl:49
#, c-format
msgid "Italian Translator"
msgstr "překladatel do italštiny"
#: ../contributors.pl:48 ../contributors.pl:64
#, c-format
msgid "Simone Riccio"
msgstr "Simone Riccio"
#: ../contributors.pl:49 ../contributors.pl:65
#, c-format
msgid "Daniele Pighin"
msgstr "Daniele Pighin"
#: ../contributors.pl:50 ../contributors.pl:68
#, c-format
msgid "Vedran Ljubovic"
msgstr "Vedran Ljubovič"
#: ../contributors.pl:50
#, c-format
msgid "Bosnian translator"
msgstr "překladatel do bosenštiny"
#: ../contributors.pl:51
#, c-format
msgid "Testers"
msgstr "Testeři"
#: ../contributors.pl:52
#, c-format
msgid "Benoit Audouard"
msgstr "Benoit Audouard"
#: ../contributors.pl:52
#, c-format
msgid "testing and bug reporting, integration of eagle-usb driver"
msgstr "testování a hlášení chyb, integrace ovladače eagle-usb"
#: ../contributors.pl:53
#, c-format
msgid "Bernhard Gruen"
msgstr "Bernhard Gruen"
#: ../contributors.pl:53 ../contributors.pl:54 ../contributors.pl:55
#: ../contributors.pl:56 ../contributors.pl:57 ../contributors.pl:58
#: ../contributors.pl:59 ../contributors.pl:60 ../contributors.pl:61
#: ../contributors.pl:62
#, c-format
msgid "testing and bug reporting"
msgstr "testování a hlášení chyb"
#: ../contributors.pl:54
#, c-format
msgid "Jure Repinc"
msgstr "Jure Repinc"
#: ../contributors.pl:55
#, c-format
msgid "Felix Miata"
msgstr "Felix Miata"
#: ../contributors.pl:56
#, c-format
msgid "Tim Sawchuck"
msgstr "Tim Sawchuck"
#: ../contributors.pl:57
#, c-format
msgid "Eric Fernandez"
msgstr "Eric Fernandez"
#: ../contributors.pl:58
#, c-format
msgid "Ricky Ng-Adam"
msgstr "Ricky Ng-Adam"
#: ../contributors.pl:59
#, c-format
msgid "Pierre Jarillon"
msgstr "Pierre Jarillon"
#: ../contributors.pl:60
#, c-format
msgid "Michael Brower"
msgstr "Michael Brower"
#: ../contributors.pl:61
#, c-format
msgid "Frederik Himpe"
msgstr "Frederik Himpe"
#: ../contributors.pl:62
#, c-format
msgid "Jason Komar"
msgstr "Jason Komar"
#: ../contributors.pl:63
#, c-format
msgid "Raphael Gertz"
msgstr "Raphael Gertz"
#: ../contributors.pl:63
#, c-format
msgid "testing, bug report, Nvidia package try"
msgstr "testování, hlášení chyb, pokusy o balíček Nvidia"
#: ../contributors.pl:64 ../contributors.pl:65 ../contributors.pl:66
#: ../contributors.pl:67 ../contributors.pl:68 ../contributors.pl:69
#, c-format
msgid "testing, bug reporting"
msgstr "testování, hlášení chyb"
#: ../contributors.pl:66
#, c-format
msgid "Fabrice FACORAT"
msgstr "Fabrice Facorat"
#: ../contributors.pl:67
#, c-format
msgid "Mihai Dobrescu"
msgstr "Mihai Dobrescu"
#: ../contributors.pl:69
#, c-format
msgid "Mary V. Jones-Giampalo"
msgstr "Mary V. Jones-Giampalo"
#: ../contributors.pl:70
#, c-format
msgid "Vincent Meyer"
msgstr "Vincent Meyer"
#: ../contributors.pl:70
#, c-format
msgid "MD, testing, bug reporting"
msgstr "MD, testování, hlášení chyb"
#: ../contributors.pl:71
#, c-format
msgid ""
"And many unnamed and unknown beta testers and bug reporters that helped make "
"sure it all worked right."
msgstr ""
"A mnoho dalších neznámých a nejmenovaných beta testerů a těch, kteří hlásili "
"chyby, kteří dohlíželi na to, že vše bude fungovat v pořádku."
#: ../control-center:97 ../control-center:104
#, c-format
msgid "Mandriva Linux Control Center"
msgstr "Ovládací centrum Mandriva Linux"
#: ../control-center:107 ../control-center:1552
#, c-format
msgid "Loading... Please wait"
msgstr "Nahrávám... Čekejte prosím"
#: ../control-center:140 ../control-center:141
#, c-format
msgid "Configure 3D Desktop effects"
msgstr "Nastavení trojrozměrných efektů grafického pracovního prostředí"
#. -PO: this message is already translated in drakx domain from which MCC will searchs it:
#: ../control-center:152 ../control-center:850 ../control-center:853
#, c-format
msgid "Authentication"
msgstr "Ověření"
#: ../control-center:153
#, c-format
msgid ""
"Select the authentication method (local, NIS, LDAP, Windows Domain, ...)"
msgstr "Volba metody pro ověření (lokální, NIS, LDAP, doména Windows, ...)"
#: ../control-center:162
#, c-format
msgid "Auto Install floppy"
msgstr "Automatická instalace z diskety"
#: ../control-center:163
#, c-format
msgid "Generate an Auto Install floppy"
msgstr "Generování automatické instalace z diskety"
#: ../control-center:172
#, c-format
msgid "Set up autologin to automatically log in"
msgstr "Nastavení automatického přihlášení do systému"
#: ../control-center:173
#, c-format
msgid "Enable autologin and select the user to automatically log in"
msgstr ""
"Povolení automatického přihlášení a výběr uživatele, který se má automaticky "
"přihlásit"
#: ../control-center:182
#, c-format
msgid "Backups"
msgstr "Zálohy"
#: ../control-center:183
#, c-format
msgid "Configure backups of the system and of the users' data"
msgstr "Nastavení zálohování systému a uživatelských dat"
#: ../control-center:193
#, c-format
msgid "Set up boot system"
msgstr "Nastavení způsobu zavedení systému"
#: ../control-center:194
#, c-format
msgid "Set up how the system boots"
msgstr "Nastavení způsobu zavedení systému"
#: ../control-center:203
#, c-format
msgid "Set up boot graphical theme of system"
msgstr "Výběr grafického tématu pro systém během zavádění"
#: ../control-center:204
#, c-format
msgid "Select the graphical theme of the system while booting"
msgstr "Výběr grafického tématu pro systém během zavádění"
#: ../control-center:213
#, c-format
msgid "Boot floppy"
msgstr "Zaváděcí disketa"
#: ../control-center:214
#, c-format
msgid "Generate a standalone boot floppy"
msgstr "Generování samostatné zaváděcí diskety"
#: ../control-center:223 ../control-center:224
#, c-format
msgid "Share the Internet connection with other local machines"
msgstr "Sdílení připojení k síti Internet s ostatními lokálními počítači"
#: ../control-center:233 ../control-center:234
#, c-format
msgid "Set up a new network interface (LAN, ISDN, ADSL, ...)"
msgstr "Nastavení nového síťového rozhraní (LAN, ISDN, ADSL, ...)"
#: ../control-center:243
#, c-format
msgid "Internet access"
msgstr "Přístup k Internetu"
#: ../control-center:244
#, c-format
msgid "Alter miscellaneous internet settings"
msgstr "Změna různých nastavení pro síť Internet"
#: ../control-center:253 ../control-center:254
#, c-format
msgid "Open a console as administrator"
msgstr "Otevření konzole pro správce systému"
#: ../control-center:264 ../control-center:265
#, c-format
msgid "Manage date and time"
msgstr "Správa datumu a času"
#: ../control-center:274
#, c-format
msgid "Set up display manager"
msgstr "Nastavení správce obrazovky"
#: ../control-center:275
#, c-format
msgid "Choose the display manager that enables to select which user to log in"
msgstr "Výběr správce obrazovky, který umožňuje přihlášení uživatele"
#: ../control-center:284 ../control-center:285
#, c-format
msgid "Configure a fax server"
msgstr "Nastavení faxového serveru"
#: ../control-center:294
#, c-format
msgid "Set up your personal firewall"
msgstr "Nastavení vašeho osobního firewallu"
#: ../control-center:295
#, c-format
msgid ""
"Set up a personal firewall in order to protect the computer and the network"
msgstr "Nastavení osobního firewallu chránícího počítač a síť"
#: ../control-center:304 ../control-center:305
#, c-format
msgid "Manage, add and remove fonts. Import Windows(TM) fonts"
msgstr ""
"Správa, přidávání a odebírání písem, včetně importu písem ze systému Windows"
#: ../control-center:314 ../control-center:315
#, c-format
msgid "Set up the graphical server"
msgstr "Nastavení grafického serveru"
#: ../control-center:324
#, c-format
msgid "Manage disk partitions"
msgstr "Správa diskových oddílů"
#: ../control-center:325
#, c-format
msgid "Create, delete and resize hard disk partitions"
msgstr "Tvorba, mazání a změna velikosti oddílů pevného disku"
#: ../control-center:334 ../control-center:335
#, c-format
msgid "Browse and configure hardware"
msgstr "Přehled a nastavení hardware"
#: ../control-center:345
#, c-format
msgid "Hosts definitions"
msgstr "Určení adres počítačů"
#: ../control-center:346
#, c-format
msgid "Manage hosts definitions"
msgstr "Správa určení adres počítačů"
#: ../control-center:355
#, c-format
msgid "Install & Remove Software"
msgstr "Instalovat a odebrat software"
#: ../control-center:356
#, c-format
msgid "Install, uninstall software"
msgstr "Instalace a odinstalování software"
#: ../control-center:366
#, c-format
msgid "Advanced setup for network interfaces and firewall"
msgstr "Pokročilé nastavení síťových rozhraní a firewallů"
#: ../control-center:367
#, c-format
msgid "Set up network interfaces failover and firewall replication"
msgstr "Nastavení záložních síťových rozhraní a replikace firewallů"
#: ../control-center:376 ../control-center:377
#, c-format
msgid "Set up the keyboard layout"
msgstr "Nastavení rozložení klávesnice"
#: ../control-center:386
#, c-format
msgid "Kolab"
msgstr "Kolab"
#: ../control-center:387
#, c-format
msgid "Set up a groupware server"
msgstr "Nastavení serveru pro groupware"
#: ../control-center:396
#, c-format
msgid "Manage localization for your system"
msgstr "Správa lokalizace vašeho systému"
#: ../control-center:397
#, c-format
msgid "Select the language and the country or region of the system"
msgstr "Výběr jazyka a země či regionu pro tento systém"
#: ../control-center:405 ../control-center:406
#, c-format
msgid "View and search system logs"
msgstr "Prohlížení a prohledávání systémových záznamů"
#: ../control-center:415
#, c-format
msgid "Manage connections"
msgstr "Správa připojení"
#: ../control-center:416
#, c-format
msgid "Reconfigure a network interface"
msgstr "Přenastavení síťového rozhraní"
#: ../control-center:425
#, c-format
msgid "Upload your configuration to get information on upgrades"
msgstr ""
"Poskytnutí informací o nastavení vašeho systému pro získání informací o "
"aktualizacích"
#: ../control-center:426
#, c-format
msgid ""
"Upload your configuration in order to keep you informed about security and "
"useful upgrades"
msgstr ""
"Poskytnutí informací o nastavení vašeho systému, abyste mohli být "
"informováni o dostupnosti bezpečnostních a dalších užitečných aktualizací"
#: ../control-center:435
#, c-format
msgid "Manage computer group"
msgstr "Správa skupiny počítačů"
#: ../control-center:436
#, c-format
msgid "Manage installed software packages on a group of computers"
msgstr "Správa instalovaných balíčků software na skupině počítačů"
#: ../control-center:445
#, c-format
msgid "Update your system"
msgstr "Aktualizace vašeho systému"
#: ../control-center:446
#, c-format
msgid ""
"Look at available updates and apply any fixes or upgrades to installed "
"packages"
msgstr ""
"Přehled dostupných aktualizací a aplikace oprav či aktualizací instalovaných "
"balíčků"
#: ../control-center:456
#, c-format
msgid "Menu Style"
msgstr "Styl menu"
#: ../control-center:457
#, c-format
msgid "Menu Style Configuration"
msgstr "Nastavení stylu menu"
#: ../control-center:466 ../control-center:467
#, c-format
msgid "Import Windows(TM) documents and settings"
msgstr "Import dokumentů a nastavení z Windows"
#: ../control-center:476
#, c-format
msgid "Monitor connections"
msgstr "Sledování připojení"
#: ../control-center:477
#, c-format
msgid "Monitor the network connections"
msgstr "Sledování připojení k síti"
#: ../control-center:486 ../control-center:487
#, c-format
msgid "Set up the pointer device (mouse, touchpad)"
msgstr "Nastavení polohovacího zařízení (myši, touchpadu)"
#: ../control-center:496
#, c-format
msgid "Network Center"
msgstr "Správa sítí"
#: ../control-center:497 ../control-center:974
#, c-format
msgid "Manage your network devices"
msgstr "Správa vašich síťových zařízení"
#: ../control-center:506
#, c-format
msgid "Manage different network profiles"
msgstr "Správa různých síťových profilů"
#: ../control-center:507
#, c-format
msgid "Activate and manage network profiles"
msgstr "Aktivace a správa síťových profilů"
#: ../control-center:516
#, fuzzy, c-format
msgid "Access NFS shared drives and directories"
msgstr "Nastavení sdílení disků a adresářů s Windows (Samba)"
#: ../control-center:517
#, c-format
msgid "Set NFS mount points"
msgstr "Nastavení přípojných bodů NFS"
#: ../control-center:526
#, c-format
msgid "Share drives and directories using NFS"
msgstr ""
#: ../control-center:527
#, c-format
msgid "Manage NFS shares"
msgstr "Správa sdílení NFS"
#: ../control-center:537
#, c-format
msgid "Package Stats"
msgstr "Statistiky balíčků"
#: ../control-center:538
#, c-format
msgid "Show statistics about usage of installed software packages"
msgstr "Zobrazení statistik o používání instalovaných balíčků software"
#: ../control-center:547
#, c-format
msgid "Share your hard disk partitions"
msgstr "Sdílení oddílů vašeho pevného disku"
#: ../control-center:548
#, c-format
msgid "Set up sharing of your hard disk partitions"
msgstr "Nastavení sdílení oddílů vašeho pevného disku"
#: ../control-center:557 ../control-center:559
#, c-format
msgid "Set up the printer(s), the print job queues, ..."
msgstr "Nastavení tiskárny či tiskáren a tiskových front"
#: ../control-center:568
#, c-format
msgid "Scheduled tasks"
msgstr "Plánované úlohy"
#: ../control-center:569
#, c-format
msgid "Schedule programs to run periodically or at given times"
msgstr ""
"Plánování periodického spouštění programů nebo spouštění ve stanovený čas"
#: ../control-center:578
#, c-format
msgid "Proxy"
msgstr "Proxy"
#: ../control-center:579
#, c-format
msgid "Set up a proxy server for files and web browsing"
msgstr "Nastavení proxy serveru pro prohlížení webu a souborů"
#: ../control-center:587
#, c-format
msgid "Remote Control (Linux/Unix, Windows)"
msgstr "Dálkové ovládání (Linux/Unix, Windows)"
#: ../control-center:588
#, c-format
msgid "Remote Control of another machine (Linux/Unix, Windows)"
msgstr "Dálkové ovládání jiného počítače (Linux/Unix, Windows)"
#: ../control-center:597
#, c-format
msgid "Remove a connection"
msgstr "Odstranění připojení"
#: ../control-center:598
#, c-format
msgid "Delete a network interface"
msgstr "Odstranění síťového rozhraní"
#: ../control-center:608 ../control-center:609
#, c-format
msgid "Wireless connection"
msgstr "Bezdrátové připojení"
#: ../control-center:618
#, fuzzy, c-format
msgid "Access Windows (SMB) shared drives and directories"
msgstr "Nastavení sdílení disků a adresářů s Windows (Samba)"
#: ../control-center:619
#, c-format
msgid "Configuration of Windows (Samba) shared drives and directories"
msgstr "Nastavení sdílení disků a adresářů s Windows (Samba)"
#: ../control-center:628
#, fuzzy, c-format
msgid "Share drives and directories with Windows (SMB) systems"
msgstr "Sdílení dat se systémem Windows"
#: ../control-center:629
#, c-format
msgid "Manage configuration of Samba"
msgstr "Správa nastavení síťových služeb Samba"
#: ../control-center:638 ../control-center:639
#, c-format
msgid "Set up scanner"
msgstr "Nastavení skeneru"
#: ../control-center:648
#, c-format
msgid "Set up security level and audit"
msgstr "Nastavení úrovně zabezpečení systému a pravidelných kontrol"
#: ../control-center:649
#, c-format
msgid "Set the system security level and the periodic security audit"
msgstr ""
"Nastavení úrovně zabezpečení systému a pravidelných bezpečnostních kontrol"
#: ../control-center:658
#, c-format
msgid "Tune permissions on system"
msgstr "Ladění bezpečnostních oprávnění na systému"
#: ../control-center:659
#, c-format
msgid "Fine tune the security permissions of the system"
msgstr "Podrobné ladění bezpečnostních oprávnění na systému"
#: ../control-center:668 ../control-center:669
#, c-format
msgid "Manage system services by enabling or disabling them"
msgstr "Zapínání a vypínání systémových služeb"
#: ../control-center:678
#, c-format
msgid "Configure media sources for install and update"
msgstr "Nastavení zdrojů software pro instalaci a aktualizaci"
#: ../control-center:679
#, c-format
msgid "Select from where software packages are downloaded "
msgstr "Výběr lokality, ze které se stahují balíčky software"
#. -PO: here power means electrical power
#. -PO: UPS==Uninterruptible power supply
#: ../control-center:691 ../control-center:694
#, c-format
msgid "Set up a UPS for power monitoring"
msgstr "Nastavení UPS pro sledování elektrického napájení"
#: ../control-center:704
#, c-format
msgid "Manage users on system"
msgstr "Správa uživatelů systému"
#: ../control-center:705
#, c-format
msgid "Add, remove or change users of the system"
msgstr "Přidání, odstranění nebo změna uživatelů systému"
#: ../control-center:715
#, c-format
msgid "Virtualization"
msgstr "Virtualizace"
#: ../control-center:716
#, c-format
msgid "Virtual machines management"
msgstr "Správa virtuálních strojů"
#: ../control-center:725 ../control-center:726
#, c-format
msgid "Configure VPN connection to secure network access"
msgstr ""
"Nastavení připojení virtuální privátní sítě (VPN) pro bezpečný přístup po "
"síti"
#: ../control-center:735
#, fuzzy, c-format
msgid "Access WebDAV shared drives and directories"
msgstr "Nastavení sdílení disků a adresářů s Windows (Samba)"
#: ../control-center:736
#, c-format
msgid "Set WebDAV mount points"
msgstr "Nastavení přípojných bodů WebDAV"
#: ../control-center:767 ../control-center:771
#, c-format
msgid "Software Management"
msgstr "Správa software"
#: ../control-center:781 ../control-center:962 ../control-center:996
#: ../control-center:1148
#, c-format
msgid "Others"
msgstr "Ostatní"
#: ../control-center:791
#, c-format
msgid "Server wizards"
msgstr "Průvodci nastavením serveru"
#: ../control-center:793 ../control-center:796
#, c-format
msgid "Sharing"
msgstr "Sdílení"
#: ../control-center:799
#, c-format
msgid "Configure FTP"
msgstr "Nastavit FTP"
#: ../control-center:800
#, c-format
msgid "Set up an FTP server"
msgstr "Nastavení FTP serveru"
#: ../control-center:802
#, c-format
msgid "Configure Samba"
msgstr "Nastavit Sambu"
#: ../control-center:803
#, c-format
msgid ""
"Set up a file and print server for workstations running Linux and non-Linux "
"systems"
msgstr ""
"Nastavení souborového a tiskového serveru pro stanice se systémem Linux či "
"jinými systémy"
#: ../control-center:805
#, c-format
msgid "Manage Samba share"
msgstr "Správa sdílení Samba"
#: ../control-center:806
#, c-format
msgid "Manage, create special share, create public/user share"
msgstr ""
"Správa, vytvoření speciálního sdílení, vytvoření veřejného/uživatelského "
"sdílení"
#: ../control-center:808
#, c-format
msgid "Configure web server"
msgstr "Nastavit webový server"
#: ../control-center:809
#, c-format
msgid "Set up a web server"
msgstr "Nastavení webového serveru"
#: ../control-center:811
#, c-format
msgid "Configure installation server"
msgstr "Nastavit instalační server"
#: ../control-center:812
#, c-format
msgid "Set up server for network installations of Mandriva Linux"
msgstr "Nastavení serveru pro síťovou instalaci distribuce Mandriva Linux"
#: ../control-center:821 ../control-center:824
#, c-format
msgid "Network Services"
msgstr "Síťové služby"
#: ../control-center:827
#, c-format
msgid "Configure DHCP"
msgstr "Nastavit DHCP"
#: ../control-center:828
#, c-format
msgid "Set up a DHCP server"
msgstr "Nastavení serveru DHCP"
#: ../control-center:830
#, c-format
msgid "Configure DNS"
msgstr "Nastavit DNS"
#: ../control-center:831
#, c-format
msgid "Set up a DNS server (network name resolution)"
msgstr "Nastavení serveru DNS (vyhledávání názvů počítačů)"
#: ../control-center:833
#, c-format
msgid "Configure proxy"
msgstr "Nastavit proxy"
#: ../control-center:834
#, c-format
msgid "Configure a web caching proxy server"
msgstr "Nastavení proxy serveru pro cache webových stránek"
#: ../control-center:836
#, c-format
msgid "Configure time"
msgstr "Nastavit čas"
#: ../control-center:837
#, c-format
msgid ""
"Set the time of the server to be synchronized with an external time server"
msgstr "Nastavení synchronizace času na serveru s externím časovým serverem"
#: ../control-center:839 ../control-center:840
#, c-format
msgid "OpenSSH daemon configuration"
msgstr "Nastavení démona OpenSSH"
#: ../control-center:857
#, c-format
msgid "Configure NIS and Autofs"
msgstr "Nastavit NIS a Autofs"
#: ../control-center:858
#, c-format
msgid "Configure the NIS and Autofs services"
msgstr "Nastavení služeb NIS a Autofs"
#: ../control-center:860
#, c-format
msgid "Configure LDAP"
msgstr "Nastavit LDAP"
#: ../control-center:861
#, c-format
msgid "Configure the LDAP directory services"
msgstr "Nastavení adresářových služeb LDAP"
#: ../control-center:871 ../control-center:874
#, c-format
msgid "Groupware"
msgstr "Groupware"
#: ../control-center:877
#, c-format
msgid "Configure news"
msgstr "Nastavit diskusní skupiny"
#: ../control-center:878
#, c-format
msgid "Configure a newsgroup server"
msgstr "Nastavení serveru diskusních skupin"
#: ../control-center:880
#, c-format
msgid "Configure groupware"
msgstr "Nastavit groupware"
#: ../control-center:881
#, c-format
msgid "Configure a groupware server"
msgstr "Nastavení serveru pro groupware"
#: ../control-center:883
#, c-format
msgid "Configure mail"
msgstr "Nastavit el. poštu"
#: ../control-center:884
#, c-format
msgid "Configure the Internet Mail services"
msgstr "Nastavení služeb pro elektronickou poštu"
#: ../control-center:895 ../control-center:898
#, c-format
msgid "Online Administration"
msgstr "Administrace online"
#: ../control-center:914
#, c-format
msgid "Local administration"
msgstr "Lokální administrace"
#: ../control-center:915
#, c-format
msgid "Configure the local machine via web interface"
msgstr "Nastavení lokálního počítače pomocí webového rozhraní"
#: ../control-center:915
#, c-format
msgid "You don't seem to have webmin intalled. Local config is disabled"
msgstr ""
"Zdá se, že nemáte nainstalovaný nástroj Webmin. Lokální nastavení je vypnuto"
#: ../control-center:917
#, c-format
msgid "Remote administration"
msgstr "Vzdálená administrace"
#: ../control-center:918
#, c-format
msgid "Click here if you want to configure a remote box via Web interface"
msgstr ""
"Klepněte zde, pokud chcete nastavit vzdálený počítač pomocí webového rozhraní"
#: ../control-center:931
#, c-format
msgid "Hardware"
msgstr "Hardware"
#: ../control-center:934
#, c-format
msgid "Manage your hardware"
msgstr "Správa vašeho hardware"
#: ../control-center:940
#, c-format
msgid "Configure graphics"
msgstr "Nastavení grafiky"
#: ../control-center:947
#, c-format
msgid "Configure mouse and keyboard"
msgstr "Nastavení myši a klávesnice"
#: ../control-center:954
#, c-format
msgid "Configure printing and scanning"
msgstr "Nastavení tisku a skenování"
#: ../control-center:971 ../drakxconf:28
#, c-format
msgid "Network & Internet"
msgstr "Síť a Internet"
#: ../control-center:987
#, c-format
msgid "Personalize and Secure your network"
msgstr "Personalizace a zabezpečení vaší sítě"
#: ../control-center:1005
#, c-format
msgid "System"
msgstr "Systém"
#: ../control-center:1008
#, c-format
msgid "Manage system services"
msgstr "Správa systémových služeb"
#: ../control-center:1017
#, c-format
msgid "Localization"
msgstr "Lokalizace"
#: ../control-center:1024
#, c-format
msgid "Administration tools"
msgstr "Nástroje pro správu"
#: ../control-center:1039
#, c-format
msgid "Network Sharing"
msgstr "Síťové sdílení"
#: ../control-center:1042
#, c-format
msgid "Configure Windows(R) shares"
msgstr "Nastavení sdílení pro Windows"
#: ../control-center:1049
#, c-format
msgid "Configure NFS shares"
msgstr "Nastavení sdílení NFS"
#: ../control-center:1056
#, c-format
msgid "Configure WebDAV shares"
msgstr "Nastavení sdílení WebDAV"
#: ../control-center:1065 ../control-center:1068
#, c-format
msgid "Local disks"
msgstr "Místní disky"
#: ../control-center:1091
#, c-format
msgid "CD-ROM (%s)"
msgstr "CD-ROM (%s)"
#: ../control-center:1092
#, c-format
msgid "Set where your \"%s\" CD-ROM drive is mounted"
msgstr "Nastavení přípojného bodu pro vaše CD-ROM zařízení \"%s\""
#: ../control-center:1094
#, c-format
msgid "DVD-ROM (%s)"
msgstr "DVD-ROM (%s)"
#: ../control-center:1095
#, c-format
msgid "Set where your \"%s\" DVD-ROM drive is mounted"
msgstr "Nastavení přípojného bodu pro vaše DVD-ROM zařízení \"%s\""
#: ../control-center:1097
#, c-format
msgid "CD/DVD burner (%s)"
msgstr "Vypalovačka CD/DVD (%s)"
#: ../control-center:1098
#, c-format
msgid "Set where your \"%s\" CD/DVD burner is mounted"
msgstr "Nastavení přípojného bodu pro vaši CD/DVD vypalovačku \"%s\""
#: ../control-center:1100
#, c-format
msgid "Floppy drive"
msgstr "Disketová mechanika"
#: ../control-center:1101
#, c-format
msgid "Set where your floppy drive is mounted"
msgstr "Nastavení přípojných bodů pro vaši disketovou jednotku"
#: ../control-center:1103
#, c-format
msgid "ZIP drive"
msgstr "Mechanika ZIP"
#: ../control-center:1104
#, c-format
msgid "Set where your ZIP drive is mounted"
msgstr "Nastavení přípojných bodů pro vaše zařízení ZIP"
#: ../control-center:1115 ../control-center:1118
#, c-format
msgid "Security"
msgstr "Bezpečnost"
#: ../control-center:1130
#, c-format
msgid "Boot"
msgstr "Start počítače"
#: ../control-center:1133
#, c-format
msgid "Configure boot steps"
msgstr "Nastavení kroků zavádění"
#: ../control-center:1142
#, c-format
msgid "Boot look'n feel"
msgstr "Vzhled a chování při zavádění"
#: ../control-center:1159
#, c-format
msgid "Additional wizards"
msgstr "Další průvodci"
#: ../control-center:1211 ../control-center:1212 ../control-center:1213
#: ../control-center:1226
#, c-format
msgid "/_Options"
msgstr "/_Volby"
#: ../control-center:1211
#, c-format
msgid "/Display _Logs"
msgstr "/Zobrazit _logy"
#: ../control-center:1212
#, c-format
msgid "/_Embedded Mode"
msgstr "/_Zapouzdřený režim"
#: ../control-center:1213
#, c-format
msgid "/Expert mode in _wizards"
msgstr "/Expertní režim v _průvodcích"
#: ../control-center:1223 ../control-center:1224 ../control-center:1225
#, c-format
msgid "/_File"
msgstr "/_Soubor"
#: ../control-center:1224
#, c-format
msgid "/_Upload the hardware list"
msgstr "/Poslat seznam _hardware"
#: ../control-center:1224
#, c-format
msgid "<control>U"
msgstr "<control>U"
#: ../control-center:1225
#, c-format
msgid "/_Quit"
msgstr "/_Konec"
#: ../control-center:1225
#, c-format
msgid "<control>Q"
msgstr "<control>K"
#: ../control-center:1225
#, c-format
msgid "Quit"
msgstr "Konec"
#: ../control-center:1246 ../control-center:1249 ../control-center:1262
#, c-format
msgid "/_Themes"
msgstr "/_Témata"
#: ../control-center:1252
#, c-format
msgid ""
"This action will restart the control center.\n"
"Any change not applied will be lost."
msgstr ""
"Tato akce způsobí restart ovládacího centra.\n"
"Všechny nepotvrzené změny budou ztraceny."
#: ../control-center:1262
#, c-format
msgid "/_More themes"
msgstr "/_Další témata"
#: ../control-center:1264 ../control-center:1265 ../control-center:1266
#: ../control-center:1267 ../control-center:1268 ../control-center:1269
#: ../control-center:1272
#, c-format
msgid "/_Help"
msgstr "/Nápo_věda"
#: ../control-center:1265 ../control-center:1266 ../control-center:1267
#: ../control-center:1268
#, c-format
msgid "Help"
msgstr "Nápověda"
#: ../control-center:1266
#, c-format
msgid "/_Release notes"
msgstr "/_Poznámky k vydání"
#: ../control-center:1267
#, c-format
msgid "/What's _New?"
msgstr ""
#: ../control-center:1268
#, c-format
msgid "/_Errata"
msgstr "/S_eznam známých chyb"
#: ../control-center:1269
#, c-format
msgid "/_Report Bug"
msgstr "/Nah_lásit chybu"
#: ../control-center:1272
#, c-format
msgid "/_About..."
msgstr "/O _aplikaci..."
#: ../control-center:1306
#, c-format
msgid "Cancel"
msgstr "Zrušit"
#: ../control-center:1340
#, c-format
msgid "Mandriva Linux Control Center %s [on %s]"
msgstr "Ovládací centrum Mandriva Linux %s [na %s]"
#: ../control-center:1354
#, c-format
msgid "Welcome to the Mandriva Linux Control Center"
msgstr "Vítá vás Ovládací centrum Mandriva Linux"
#: ../control-center:1531 ../control-center:1604
#, c-format
msgid "Error"
msgstr "Chyba"
#: ../control-center:1531
#, c-format
msgid ""
"There's a bug in translations of your language (%s)\n"
"\n"
"Please report that bug."
msgstr ""
"V překladech pro váš jazyk (%s) je chyba.\n"
"\n"
"Nahlaste prosím tuto chybu."
#: ../control-center:1604
#, c-format
msgid "Impossible to run unknown '%s' program"
msgstr "Nelze spustit neznámý program \"%s\""
#: ../control-center:1623
#, c-format
msgid "The modifications done in the current module won't be saved."
msgstr "Změny provedené v aktuálním modulu se neuloží."
#: ../control-center:1630 ../control-center:1633
#, c-format
msgid "Upload the hardware list"
msgstr "Poslat seznam hardware"
#: ../control-center:1635
#, c-format
msgid "Account:"
msgstr "Účet:"
#: ../control-center:1636
#, c-format
msgid "Password:"
msgstr "Heslo:"
#: ../control-center:1637
#, c-format
msgid "Hostname:"
msgstr "Jméno počítače:"
#: ../control-center:1664
#, c-format
msgid "Please wait"
msgstr "Prosím počkejte"
#: ../control-center:1664
#, c-format
msgid "Uploading in progress"
msgstr "Probíhá přenos"
#: ../control-center:1756
#, c-format
msgid "cannot fork: %s"
msgstr "nelze provést fork: %s"
#: ../control-center:1767
#, c-format
msgid "cannot fork and exec \"%s\" since it is not executable"
msgstr "nelze spustit \"%s\" kvůli tomu, že nemá práva na spuštění"
#: ../control-center:1890
#, c-format
msgid "This program has exited abnormally"
msgstr "Tento program skončil nenormálně"
#: ../control-center:1899
#, c-format
msgid "Warning"
msgstr "Varování"
#: ../control-center:1909 ../drakconsole:31
#, c-format
msgid "Close"
msgstr "Zavřít"
#: ../control-center:1916
#, c-format
msgid "More themes"
msgstr "Další témata"
#: ../control-center:1918
#, c-format
msgid "Getting new themes"
msgstr "Načíst další témata"
#: ../control-center:1919
#, c-format
msgid "Additional themes"
msgstr "Další témata"
#: ../control-center:1921
#, c-format
msgid "Get additional themes on www.damz.net"
msgstr "Načíst další témata z www.damz.net"
#: ../control-center:1929
#, c-format
msgid "About - Mandriva Linux Control Center"
msgstr "O aplikaci Ovládací centrum Mandriva Linux"
#: ../control-center:1938
#, c-format
msgid "Authors: "
msgstr "Autoři: "
#: ../control-center:1942
#, c-format
msgid "(perl version)"
msgstr "(verze v Perlu)"
#: ../control-center:1947
#, c-format
msgid "Artwork: "
msgstr "Předloha: "
#: ../control-center:1952
#, c-format
msgid "Helene Durosini"
msgstr "Helene Durosini"
#. -PO: this is used as "language: translator" in credits part of the about dialog:
#: ../control-center:1974
#, c-format
msgid "- %s: %s\n"
msgstr "- %s: %s\n"
#: ../control-center:1989
#, c-format
msgid ""
"_: NAME OF TRANSLATORS\n"
"Your names"
msgstr ""
"Radek Vybíral\n"
"Michal Bukovjan"
#: ../control-center:1991
#, c-format
msgid ""
"_: EMAIL OF TRANSLATORS\n"
"Your emails"
msgstr ""
"Radek.Vybiral@vsb.cz\n"
"bukm@centrum.cz"
#: ../control-center:1993
#, c-format
msgid "Translator: "
msgstr "Překladatel: "
#. -PO: here, %s will be replaced by the version (eg: "Mandriva Linux 2007.1 (Discovery) Control Center")
#: ../control-center:2001
#, c-format
msgid "Mandriva Linux %s (%s) Control Center"
msgstr "Ovládací centrum Mandriva Linux %s (%s)"
#: ../control-center:2005
#, c-format
msgid "Copyright (C) 1999-2008 Mandriva SA"
msgstr "Copyright ©1999-2008 Mandriva SA"
#: ../control-center:2011
#, c-format
msgid "Authors"
msgstr "Autoři"
#: ../control-center:2012
#, c-format
msgid "Mandriva Linux Contributors"
msgstr "Přispěvatelé distribuce Mandriva Linux"
#: ../drakconsole:27
#, c-format
msgid "DrakConsole"
msgstr "DrakConsole"
#: ../drakxconf:25
#, c-format
msgid "Display"
msgstr "Obrazovka"
#: ../drakxconf:26
#, c-format
msgid "Keyboard"
msgstr "Klávesnice"
#: ../drakxconf:27
#, c-format
msgid "Mouse"
msgstr "Myš"
#: ../drakxconf:29
#, c-format
msgid "Users and groups"
msgstr "Uživatelé a skupiny"
#: ../drakxconf:30
#, c-format
msgid "Services"
msgstr "Služby"
#: ../drakxconf:31
#, c-format
msgid "Firewall"
msgstr "Firewall"
#: ../drakxconf:32
#, c-format
msgid "Boot loader"
msgstr "Zavaděč"
#: ../drakxconf:33
#, c-format
msgid "Auto Install"
msgstr "Automatická instalace"
#: ../drakxconf:34
#, c-format
msgid "Internet connection sharing"
msgstr "Sdílení připojení k Internetu"
#: ../drakxconf:35
#, c-format
msgid "3D Desktop effects"
msgstr "3D efekty grafického prostředí"
#: ../drakxconf:36
#, c-format
msgid "Partitions"
msgstr "Oddíly"
#: ../drakxconf:39
#, c-format
msgid "Control Center"
msgstr "Ovládací centrum"
#: ../drakxconf:39
#, c-format
msgid "Choose the tool you want to use"
msgstr "Vyberte si nástroj, který chcete použít"
#: ../menus_launcher.pl:19 ../menus_launcher.pl:41
#, c-format
msgid "Menu Configuration Center"
msgstr "Centrum pro nastavení menu"
#: ../menus_launcher.pl:28
#, c-format
msgid "System menu"
msgstr "Systémové menu"
#: ../menus_launcher.pl:29 ../menus_launcher.pl:36 ../print_launcher.pl:31
#, c-format
msgid "Configure..."
msgstr "Nastavit..."
#: ../menus_launcher.pl:31
#, c-format
msgid "User menu"
msgstr "Uživatelské menu"
#: ../menus_launcher.pl:41
#, c-format
msgid ""
"\n"
"\n"
"Choose which menu you want to configure"
msgstr ""
"\n"
"\n"
"Vyberte si menu, které chcete nastavit"
#: ../print_launcher.pl:14 ../print_launcher.pl:21
#, c-format
msgid "Printing configuration"
msgstr "Nastavení tisku"
#: ../print_launcher.pl:30
#, c-format
msgid "Click here to configure the printing system"
msgstr "Klikněte zde pro nastavení tiskového systému"
#: ../print_launcher.pl:37
#, c-format
msgid "Done"
msgstr "Hotovo"
#: ../data/autologin.desktop.in.h:1
msgid "Autologin"
msgstr "Automatické přihlášení"
#: ../data/clock.desktop.in.h:1
msgid "Date and time"
msgstr "Datum a čas"
#: ../data/connection.desktop.in.h:1
msgid "New connection"
msgstr "Nové připojení"
#: ../data/drakboot.desktop.in.h:1
msgid "Boot Loading"
msgstr "Zavádění systému"
#: ../data/drakcronat.desktop.in.h:1
msgid "Programs scheduling"
msgstr "Plánované úlohy"
#: ../data/drakdm.desktop.in.h:1
msgid "Display manager"
msgstr "Správce obrazovky"
#: ../data/drakfont.desktop.in.h:1
msgid "Fonts"
msgstr "Písma"
#: ../data/drakperm.desktop.in.h:1
msgid "Permissions"
msgstr "Oprávnění"
#: ../data/draksec.desktop.in.h:1
msgid "Levels and Checks"
msgstr "Úrovně a kontroly"
#: ../data/drakxtv.desktop.in.h:1
msgid "TV Cards"
msgstr "TV karty"
#: ../data/fileshare.desktop.in.h:1
msgid "Partition Sharing"
msgstr "Sdílení oddílů"
#: ../data/harddrive.desktop.in.h:1
msgid "Hard Drives"
msgstr "Pevné disky"
#: ../data/logdrake.desktop.in.h:1
msgid "Logs"
msgstr "Logy"
#: ../data/menudrake.desktop.in.h:1
msgid "Menus"
msgstr "Menu"
#: ../data/MountPoints.directory.in.h:1
msgid "Mount Points"
msgstr "Přípojné body"
#: ../data/nfs.desktop.in.h:1
msgid "NFS mount points"
msgstr "Přípojné body NFS"
#: ../data/printerdrake.desktop.in.h:1
msgid "Printers"
msgstr "Tiskárny"
#: ../data/proxy.desktop.in.h:1
msgid "Proxy Configuration"
msgstr "Nastavení proxy"
#: ../data/removable.desktop.in.h:1
msgid "Removable devices"
msgstr "Výměnná zařízení"
#: ../data/remove-connection.desktop.in.h:1
msgid "Remove Connection"
msgstr "Odstranění připojení"
#: ../data/samba.desktop.in.h:1
msgid "Samba mount points"
msgstr "Přípojné body Samba"
#: ../data/scannerdrake.desktop.in.h:1
msgid "Scanners"
msgstr "Skenery"
#: ../data/SystemConfig.directory.in.h:1
msgid "System Settings"
msgstr "Nastavení systému"
#: ../data/userdrake.desktop.in.h:1
msgid "Users and Groups"
msgstr "Uživatelé a skupiny"
#: ../data/webdav.desktop.in.h:1
msgid "WebDAV mount points"
msgstr "Přípojné body WebDAV"
#: ../data/XFDrake.desktop.in.h:1
msgid "Graphical server"
msgstr "Grafický server"
#: ../data/XFDrake-Monitor.desktop.in.h:1
msgid "Monitor"
msgstr "Monitor"
#: ../data/XFDrake-Resolution.desktop.in.h:1
msgid "Screen Resolution"
msgstr "Rozlišení obrazovky"
#~ msgid "Manage software"
#~ msgstr "Správa software"
#~ msgid "Use NFS shares"
#~ msgstr "Použití sdílení NFS"
#~ msgid "Share your data through NFS"
#~ msgstr "Sdílení vašich dat pomocí NFS"
#~ msgid "Manage Samba configuration"
#~ msgstr "Správa služeb Samba"
#~ msgid "Use WebDAV shares"
#~ msgstr "Použití sdílení WebDAV"