default_variables();
// Check and set some common vars
$action = (isset($_POST['update_details'])) ? 'update_details' : '';
$action = (isset($_POST['download_file'])) ? 'download_file' : $action;
$action = (isset($_POST['upload_file'])) ? 'upload_file' : $action;
$action = (isset($_POST['upload_data'])) ? 'upload_data' : $action;
$action = (isset($_POST['submit_file'])) ? 'submit_file' : $action;
$action = (isset($_POST['remove_store'])) ? 'details' : $action;
$submit = (empty($action) && !isset($_POST['update']) && !isset($_POST['test_connection'])) ? false : true;
$action = (empty($action)) ? request_var('action', '') : $action;
$form_name = 'acp_lang';
add_form_key('acp_lang');
$lang_id = request_var('id', 0);
if (isset($_POST['missing_file']))
{
$missing_file = request_var('missing_file', array('' => 0));
$request->overwrite('language_file', array_shift(array_keys($missing_file)));
}
$selected_lang_file = request_var('language_file', '|common.' . $phpEx);
list($this->language_directory, $this->language_file) = explode('|', $selected_lang_file);
$this->language_directory = basename($this->language_directory);
$this->language_file = basename($this->language_file);
// detect language file type
if ($this->language_directory == 'email')
{
$language_file_type = 'email';
$request_default = '';
}
else if (strpos($this->language_file, 'help_') === 0)
{
$language_file_type = 'help';
$request_default = array(0 => array(0 => ''));
}
else
{
$language_file_type = 'normal';
$request_default = array('' => '');
}
$user->add_lang('acp/language');
$this->tpl_name = 'acp_language';
$this->page_title = 'ACP_LANGUAGE_PACKS';
if ($submit && $action == 'upload_data' && request_var('test_connection', ''))
{
$test_connection = false;
$action = 'upload_file';
$method = request_var('method', '');
include_once($phpbb_root_path . 'includes/functions_transfer.' . $phpEx);
switch ($method)
{
case 'ftp':
$transfer = new ftp(
request_var('host', ''),
request_var('username', ''),
htmlspecialchars_decode($request->untrimmed_variable('password', '')),
request_var('root_path', ''),
request_var('port', ''),
request_var('timeout', '')
);
break;
case 'ftp_fsock':
$transfer = new ftp_fsock(
request_var('host', ''),
request_var('username', ''),
htmlspecialchars_decode($request->untrimmed_variable('password', '')),
request_var('root_path', ''),
request_var('port', ''),
request_var('timeout', '')
);
break;
default:
trigger_error($user->lang['INVALID_UPLOAD_METHOD'], E_USER_ERROR);
break;
}
$test_connection = $transfer->open_session();
$transfer->close_session();
}
switch ($action)
{
case 'upload_file':
include_once($phpbb_root_path . 'includes/functions_transfer.' . $phpEx);
$method = request_var('method', '');
if (!class_exists($method))
{
trigger_error('Method does not exist.', E_USER_ERROR);
}
$requested_data = call_user_func(array($method, 'data'));
foreach ($requested_data as $data => $default)
{
$template->assign_block_vars('data', array(
'DATA' => $data,
'NAME' => $user->lang[strtoupper($method . '_' . $data)],
'EXPLAIN' => $user->lang[strtoupper($method . '_' . $data) . '_EXPLAIN'],
'DEFAULT' => $request->variable($data, (string) $default),
));
}
$hidden_data = build_hidden_fields(array(
'file' => $this->language_file,
'dir' => $this->language_directory,
'language_file' => $selected_lang_file,
'method' => $method)
);
$hidden_data .= build_hidden_fields(array('entry' => $request->variable('entry', $request_default, true, phpbb_request_request_interface::POST)));
$template->assign_vars(array(
'S_UPLOAD' => true,
'NAME' => $method,
'U_ACTION' => $this->u_action . "&id=$lang_id&action=upload_data",
'U_BACK' => $this->u_action . "&id=$lang_id&action=details&language_file=" . urlencode($selected_lang_file),
'HIDDEN' => $hidden_data,
'S_CONNECTION_SUCCESS' => (request_var('test_connection', '') && $test_connection === true) ? true : false,
'S_CONNECTION_FAILED' => (request_var('test_connection', '') && $test_connection !== true) ? true : false
));
break;
case 'update_details':
if (!$submit || !check_form_key($form_name))
{
trigger_error($user->lang['FORM_INVALID']. adm_back_link($this->u_action), E_USER_WARNING);
}
if (!$lang_id)
{
trigger_error($user->lang['NO_LANG_ID'] . adm_back_link($this->u_action), E_USER_WARNING);
}
$sql = 'SELECT *
FROM ' . LANG_TABLE . "
WHERE lang_id = $lang_id";
$result = $db->sql_query($sql);
$row = $db->sql_fetchrow($result);
$db->sql_freeresult($result);
$sql_ary = array(
'lang_english_name' => request_var('lang_english_name', $row['lang_english_name']),
'lang_local_name' => utf8_normalize_nfc(request_var('lang_local_name', $row['lang_local_name'], true)),
'lang_author' => utf8_normalize_nfc(request_var('lang_author', $row['lang_author'], true)),
);
$db->sql_query('UPDATE ' . LANG_TABLE . '
SET ' . $db->sql_build_array('UPDATE', $sql_ary) . '
WHERE lang_id = ' . $lang_id);
add_log('admin', 'LOG_LANGUAGE_PACK_UPDATED', $sql_ary['lang_english_name']);
trigger_error($user->lang['LANGUAGE_DETAILS_UPDATED'] . adm_back_link($this->u_action));
break;
case 'submit_file':
case 'download_file':
case 'upload_data':
if (!$submit || !check_form_key($form_name))
{
trigger_error($user->lang['FORM_INVALID']. adm_back_link($this->u_action), E_USER_WARNING);
}
$entry_value = $request->variable('entry', $request_default, true, phpbb_request_request_interface::POST);
if (!$lang_id || !$entry_value)
{
trigger_error($user->lang['NO_LANG_ID'] . adm_back_link($this->u_action), E_USER_WARNING);
}
if (!$this->language_file || (!$this->language_directory && !in_array($this->language_file, $this->main_files)))
{
trigger_error($user->lang['NO_FILE_SELECTED'] . adm_back_link($this->u_action), E_USER_WARNING);
}
$sql = 'SELECT *
FROM ' . LANG_TABLE . "
WHERE lang_id = $lang_id";
$result = $db->sql_query($sql);
$row = $db->sql_fetchrow($result);
$db->sql_freeresult($result);
if (!$row)
{
trigger_error($user->lang['NO_LANG_ID'] . adm_back_link($this->u_action), E_USER_WARNING);
}
// Before we attempt to write anything let's check if the admin really chose a correct filename
switch ($this->language_directory)
{
case 'email':
// Get email templates
$email_files = filelist($phpbb_root_path . 'language/' . $row['lang_iso'], 'email', 'txt');
$email_files = $email_files['email/'];
if (!in_array($this->language_file, $email_files))
{
trigger_error($user->lang['WRONG_LANGUAGE_FILE'] . adm_back_link($this->u_action . '&action=details&id=' . $lang_id), E_USER_WARNING);
}
break;
case 'acp':
// Get acp files
$acp_files = filelist($phpbb_root_path . 'language/' . $row['lang_iso'], 'acp', $phpEx);
$acp_files = $acp_files['acp/'];
if (!in_array($this->language_file, $acp_files))
{
trigger_error($user->lang['WRONG_LANGUAGE_FILE'] . adm_back_link($this->u_action . '&action=details&id=' . $lang_id), E_USER_WARNING);
}
break;
case 'mods':
// Get mod files
$mods_files = filelist($phpbb_root_path . 'language/' . $row['lang_iso'], 'mods', $phpEx);
$mods_files = (isset($mods_files['mods/'])) ? $mods_files['mods/'] : array();
if (!in_array($this->language_file, $mods_files))
{
trigger_error($user->lang['WRONG_LANGUAGE_FILE'] . adm_back_link($this->u_action . '&action=details&id=' . $lang_id), E_USER_WARNING);
}
break;
default:
if (!in_array($this->language_file, $this->main_files))
{
trigger_error($user->lang['WRONG_LANGUAGE_FILE'] . adm_back_link($this->u_action . '&action=details&id=' . $lang_id), E_USER_WARNING);
}
break;
}
if (!$safe_mode)
{
$mkdir_ary = array('language', 'language/' . $row['lang_iso']);
if ($this->language_directory)
{
$mkdir_ary[] = 'language/' . $row['lang_iso'] . '/' . $this->language_directory;
}
foreach ($mkdir_ary as $dir)
{
$dir = $phpbb_root_path . 'store/' . $dir;
if (!is_dir($dir))
{
if (!@mkdir($dir, 0777))
{
trigger_error("Could not create directory $dir", E_USER_ERROR);
}
@chmod($dir, 0777);
}
}
}
// Get target filename for storage folder
$filename = $this->get_filename($row['lang_iso'], $this->language_directory, $this->language_file, true, true);
$fp = @fopen($phpbb_root_path . $filename, 'wb');
if (!$fp)
{
trigger_error(sprintf($user->lang['UNABLE_TO_WRITE_FILE'], $filename) . adm_back_link($this->u_action . '&id=' . $lang_id . '&action=details&language_file=' . urlencode($selected_lang_file)), E_USER_WARNING);
}
if ($language_file_type == 'email')
{
// Email Template
$entry = $this->prepare_lang_entry(htmlspecialchars_decode($entry_value), false);
fwrite($fp, $entry);
}
else
{
$name = (($this->language_directory) ? $this->language_directory . '_' : '') . $this->language_file;
$header = str_replace(array('{FILENAME}', '{LANG_NAME}', '{CHANGED}', '{AUTHOR}'), array($name, $row['lang_english_name'], date('Y-m-d', time()), $row['lang_author']), $this->language_file_header);
if ($language_file_type == 'help')
{
// Help File
$header .= '$help = array(' . "\n";
fwrite($fp, $header);
foreach ($entry_value as $key => $value)
{
if (!is_array($value))
{
continue;
}
$entry = "\tarray(\n";
foreach ($value as $_key => $_value)
{
$entry .= "\t\t" . (int) $_key . "\t=> '" . $this->prepare_lang_entry(htmlspecialchars_decode($_value)) . "',\n";
}
$entry .= "\t),\n";
fwrite($fp, $entry);
}
$footer = ");\n\n?>";
fwrite($fp, $footer);
}
else if ($language_file_type == 'normal')
{
// Language File
$header .= $this->lang_header;
fwrite($fp, $header);
foreach ($entry_value as $key => $value)
{
$entry = $this->format_lang_array(htmlspecialchars_decode($key), htmlspecialchars_decode($value));
fwrite($fp, $entry);
}
$footer = "));\n\n?>";
fwrite($fp, $footer);
}
}
fclose($fp);
if ($action == 'download_file')
{
header('Pragma: no-cache');
header('Content-Type: application/octetstream; name="' . $this->language_file . '"');
header('Content-disposition: attachment; filename=' . $this->language_file);
$fp = @fopen($phpbb_root_path . $filename, 'rb');
while ($buffer = fread($fp, 1024))
{
echo $buffer;
}
fclose($fp);
add_log('admin', 'LOG_LANGUAGE_FILE_SUBMITTED', $this->language_file);
exit;
}
else if ($action == 'upload_data')
{
$sql = 'SELECT lang_iso
FROM ' . LANG_TABLE . "
WHERE lang_id = $lang_id";
$result = $db->sql_query($sql);
$row = $db->sql_fetchrow($result);
$db->sql_freeresult($result);
$file = request_var('file', '');
$dir = request_var('dir', '');
$selected_lang_file = $dir . '|' . $file;
$old_file = '/' . $this->get_filename($row['lang_iso'], $dir, $file, false, true);
$lang_path = 'language/' . $row['lang_iso'] . '/' . (($dir) ? $dir . '/' : '');
include_once($phpbb_root_path . 'includes/functions_transfer.' . $phpEx);
$method = request_var('method', '');
if ($method != 'ftp' && $method != 'ftp_fsock')
{
trigger_error($user->lang['INVALID_UPLOAD_METHOD'], E_USER_ERROR);
}
$transfer = new $method(
request_var('host', ''),
request_var('username', ''),
htmlspecialchars_decode($request->untrimmed_variable('password', '')),
request_var('root_path', ''),
request_var('port', ''),
request_var('timeout', '')
);
if (($result = $transfer->open_session()) !== true)
{
trigger_error($user->lang[$result] . adm_back_link($this->u_action . '&action=details&id=' . $lang_id . '&language_file=' . urlencode($selected_lang_file)), E_USER_WARNING);
}
$transfer->rename($lang_path . $file, $lang_path . $file . '.bak');
$result = $transfer->copy_file('store/' . $lang_path . $file, $lang_path . $file);
if ($result === false)
{
// If failed, try to rename again and print error out...
$transfer->delete_file($lang_path . $file);
$transfer->rename($lang_path . $file . '.bak', $lang_path . $file);
trigger_error($user->lang['UPLOAD_FAILED'] . adm_back_link($this->u_action . '&action=details&id=' . $lang_id . '&language_file=' . urlencode($selected_lang_file)), E_USER_WARNING);
}
$transfer->close_session();
// Remove from storage folder
if (file_exists($phpbb_root_path . 'store/' . $lang_path . $file))
{
@unlink($phpbb_root_path . 'store/' . $lang_path . $file);
}
add_log('admin', 'LOG_LANGUAGE_FILE_REPLACED', $file);
trigger_error($user->lang['UPLOAD_COMPLETED'] . adm_back_link($this->u_action . '&action=details&id=' . $lang_id . '&language_file=' . urlencode($selected_lang_file)));
}
add_log('admin', 'LOG_LANGUAGE_FILE_SUBMITTED', $this->language_file);
$action = 'details';
// no break;
case 'details':
if (!$lang_id)
{
trigger_error($user->lang['NO_LANG_ID'] . adm_back_link($this->u_action), E_USER_WARNING);
}
$this->page_title = 'LANGUAGE_PACK_DETAILS';
$sql = 'SELECT *
FROM ' . LANG_TABLE . '
WHERE lang_id = ' . $lang_id;
$result = $db->sql_query($sql);
$lang_entries = $db->sql_fetchrow($result);
$db->sql_freeresult($result);
$lang_iso = $lang_entries['lang_iso'];
$missing_vars = $missing_files = array();
// Get email templates
$email_files = filelist($phpbb_root_path . 'language/' . $config['default_lang'], 'email', 'txt');
$email_files = $email_files['email/'];
// Get acp files
$acp_files = filelist($phpbb_root_path . 'language/' . $config['default_lang'], 'acp', $phpEx);
$acp_files = $acp_files['acp/'];
// Get mod files
$mods_files = filelist($phpbb_root_path . 'language/' . $config['default_lang'], 'mods', $phpEx);
$mods_files = (isset($mods_files['mods/'])) ? $mods_files['mods/'] : array();
// Check if our current filename matches the files
switch ($this->language_directory)
{
case 'email':
if (!in_array($this->language_file, $email_files))
{
trigger_error($user->lang['WRONG_LANGUAGE_FILE'] . adm_back_link($this->u_action . '&action=details&id=' . $lang_id), E_USER_WARNING);
}
break;
case 'acp':
if (!in_array($this->language_file, $acp_files))
{
trigger_error($user->lang['WRONG_LANGUAGE_FILE'] . adm_back_link($this->u_action . '&action=details&id=' . $lang_id), E_USER_WARNING);
}
break;
case 'mods':
if (!in_array($this->language_file, $mods_files))
{
trigger_error($user->lang['WRONG_LANGUAGE_FILE'] . adm_back_link($this->u_action . '&action=details&id=' . $lang_id), E_USER_WARNING);
}
break;
default:
if (!in_array($this->language_file, $this->main_files))
{
trigger_error($user->lang['WRONG_LANGUAGE_FILE'] . adm_back_link($this->u_action . '&action=details&id=' . $lang_id), E_USER_WARNING);
}
}
if (isset($_POST['remove_store']))
{
$store_filename = $this->get_filename($lang_iso, $this->language_directory, $this->language_file, true, true);
if (file_exists($phpbb_root_path . $store_filename))
{
@unlink($phpbb_root_path . $store_filename);
}
}
include_once($phpbb_root_path . 'includes/functions_transfer.' . $phpEx);
$methods = transfer::methods();
foreach ($methods as $method)
{
$template->assign_block_vars('buttons', array(
'VALUE' => $method
));
}
$template->assign_vars(array(
'S_DETAILS' => true,
'U_ACTION' => $this->u_action . "&action=details&id=$lang_id",
'U_BACK' => $this->u_action,
'LANG_LOCAL_NAME' => $lang_entries['lang_local_name'],
'LANG_ENGLISH_NAME' => $lang_entries['lang_english_name'],
'LANG_ISO' => $lang_entries['lang_iso'],
'LANG_AUTHOR' => $lang_entries['lang_author'],
'ALLOW_UPLOAD' => sizeof($methods)
)
);
// If current lang is different from the default lang, then first try to grab missing/additional vars
if ($lang_iso != $config['default_lang'])
{
$is_missing_var = false;
foreach ($this->main_files as $file)
{
if (file_exists($phpbb_root_path . $this->get_filename($lang_iso, '', $file)))
{
$missing_vars[$file] = $this->compare_language_files($config['default_lang'], $lang_iso, '', $file);
if (sizeof($missing_vars[$file]))
{
$is_missing_var = true;
}
}
else
{
$missing_files[] = $this->get_filename($lang_iso, '', $file);
}
}
// Now go through acp/mods directories
foreach ($acp_files as $file)
{
if (file_exists($phpbb_root_path . $this->get_filename($lang_iso, 'acp', $file)))
{
$missing_vars['acp/' . $file] = $this->compare_language_files($config['default_lang'], $lang_iso, 'acp', $file);
if (sizeof($missing_vars['acp/' . $file]))
{
$is_missing_var = true;
}
}
else
{
$missing_files[] = $this->get_filename($lang_iso, 'acp', $file);
}
}
if (sizeof($mods_files))
{
foreach ($mods_files as $file)
{
if (file_exists($phpbb_root_path . $this->get_filename($lang_iso, 'mods', $file)))
{
$missing_vars['mods/' . $file] = $this->compare_language_files($config['default_lang'], $lang_iso, 'mods', $file);
if (sizeof($missing_vars['mods/' . $file]))
{
$is_missing_var = true;
}
}
else
{
$missing_files[] = $this->get_filename($lang_iso, 'mods', $file);
}
}
}
// More missing files... for example email templates?
foreach ($email_files as $file)
{
if (!file_exists($phpbb_root_path . $this->get_filename($lang_iso, 'email', $file)))
{
$missing_files[] = $this->get_filename($lang_iso, 'email', $file);
}
}
if (sizeof($missing_files))
{
$template->assign_vars(array(
'S_MISSING_FILES' => true,
'L_MISSING_FILES' => sprintf($user->lang['THOSE_MISSING_LANG_FILES'], $lang_entries['lang_local_name']),
'MISSING_FILES' => implode('
', $missing_files))
);
}
if ($is_missing_var)
{
$template->assign_vars(array(
'S_MISSING_VARS' => true,
'L_MISSING_VARS_EXPLAIN' => sprintf($user->lang['THOSE_MISSING_LANG_VARIABLES'], $lang_entries['lang_local_name']),
'U_MISSING_ACTION' => $this->u_action . "&action=$action&id=$lang_id")
);
foreach ($missing_vars as $file => $vars)
{
if (!sizeof($vars))
{
continue;
}
$template->assign_block_vars('missing', array(
'FILE' => $file,
'TPL' => $this->print_language_entries($vars, '', false),
'KEY' => (strpos($file, '/') === false) ? '|' . $file : str_replace('/', '|', $file))
);
}
}
}
// Main language files
$s_lang_options = '';
foreach ($this->main_files as $file)
{
if (strpos($file, 'help_') === 0)
{
continue;
}
$prefix = (file_exists($phpbb_root_path . $this->get_filename($lang_iso, '', $file, true, true))) ? '* ' : '';
$selected = (!$this->language_directory && $this->language_file == $file) ? ' selected="selected"' : '';
$s_lang_options .= '';
}
// Help Files
$s_lang_options .= '';
foreach ($this->main_files as $file)
{
if (strpos($file, 'help_') !== 0)
{
continue;
}
$prefix = (file_exists($phpbb_root_path . $this->get_filename($lang_iso, '', $file, true, true))) ? '* ' : '';
$selected = (!$this->language_directory && $this->language_file == $file) ? ' selected="selected"' : '';
$s_lang_options .= '';
}
// Now every other language directory
$check_files = array('email', 'acp', 'mods');
foreach ($check_files as $check)
{
if (!sizeof(${$check . '_files'}))
{
continue;
}
$s_lang_options .= '';
foreach (${$check . '_files'} as $file)
{
$prefix = (file_exists($phpbb_root_path . $this->get_filename($lang_iso, $check, $file, true, true))) ? '* ' : '';
$selected = ($this->language_directory == $check && $this->language_file == $file) ? ' selected="selected"' : '';
$s_lang_options .= '';
}
}
// Get Language Entries - if saved within store folder, we take this one (with the option to remove it)
$lang = array();
$is_email_file = ($this->language_directory == 'email') ? true : false;
$is_help_file = (strpos($this->language_file, 'help_') === 0) ? true : false;
$file_from_store = (file_exists($phpbb_root_path . $this->get_filename($lang_iso, $this->language_directory, $this->language_file, true, true))) ? true : false;
$no_store_filename = $this->get_filename($lang_iso, $this->language_directory, $this->language_file);
if (!$file_from_store && !file_exists($phpbb_root_path . $no_store_filename))
{
$print_message = sprintf($user->lang['MISSING_LANGUAGE_FILE'], $no_store_filename);
}
else
{
if ($is_email_file)
{
$lang = file_get_contents($phpbb_root_path . $this->get_filename($lang_iso, $this->language_directory, $this->language_file, $file_from_store));
}
else
{
$help = array();
include($phpbb_root_path . $this->get_filename($lang_iso, $this->language_directory, $this->language_file, $file_from_store));
if ($is_help_file)
{
$lang = $help;
unset($help);
}
}
$print_message = (($this->language_directory) ? $this->language_directory . '/' : '') . $this->language_file;
}
// Normal language pack entries
$template->assign_vars(array(
'U_ENTRY_ACTION' => $this->u_action . "&action=details&id=$lang_id#entries",
'S_EMAIL_FILE' => $is_email_file,
'S_FROM_STORE' => $file_from_store,
'S_LANG_OPTIONS' => $s_lang_options,
'PRINT_MESSAGE' => $print_message,
)
);
if (!$is_email_file)
{
$tpl = '';
$name = (($this->language_directory) ? $this->language_directory . '/' : '') . $this->language_file;
if (isset($missing_vars[$name]) && sizeof($missing_vars[$name]))
{
$tpl .= $this->print_language_entries($missing_vars[$name], '* ');
}
$tpl .= $this->print_language_entries($lang);
$template->assign_var('TPL', $tpl);
unset($tpl);
}
else
{
$template->assign_vars(array(
'LANG' => $lang)
);
unset($lang);
}
return;
break;
case 'delete':
if (!$lang_id)
{
trigger_error($user->lang['NO_LANG_ID'] . adm_back_link($this->u_action), E_USER_WARNING);
}
$sql = 'SELECT *
FROM ' . LANG_TABLE . '
WHERE lang_id = ' . $lang_id;
$result = $db->sql_query($sql);
$row = $db->sql_fetchrow($result);
$db->sql_freeresult($result);
if ($row['lang_iso'] == $config['default_lang'])
{
trigger_error($user->lang['NO_REMOVE_DEFAULT_LANG'] . adm_back_link($this->u_action), E_USER_WARNING);
}
if (confirm_box(true))
{
$db->sql_query('DELETE FROM ' . LANG_TABLE . ' WHERE lang_id = ' . $lang_id);
$sql = 'UPDATE ' . USERS_TABLE . "
SET user_lang = '" . $db->sql_escape($config['default_lang']) . "'
WHERE user_lang = '" . $db->sql_escape($row['lang_iso']) . "'";
$db->sql_query($sql);
// We also need to remove the translated entries for custom profile fields - we want clean tables, don't we?
$sql = 'DELETE FROM ' . PROFILE_LANG_TABLE . ' WHERE lang_id = ' . $lang_id;
$db->sql_query($sql);
$sql = 'DELETE FROM ' . PROFILE_FIELDS_LANG_TABLE . ' WHERE lang_id = ' . $lang_id;
$db->sql_query($sql);
add_log('admin', 'LOG_LANGUAGE_PACK_DELETED', $row['lang_english_name']);
trigger_error(sprintf($user->lang['LANGUAGE_PACK_DELETED'], $row['lang_english_name']) . adm_back_link($this->u_action));
}
else
{
$s_hidden_fields = array(
'i' => $id,
'mode' => $mode,
'action' => $action,
'id' => $lang_id,
);
confirm_box(false, $user->lang['CONFIRM_OPERATION'], build_hidden_fields($s_hidden_fields));
}
break;
case 'install':
$lang_iso = request_var('iso', '');
$lang_iso = basename($lang_iso);
if (!$lang_iso || !file_exists("{$phpbb_root_path}language/$lang_iso/iso.txt"))
{
trigger_error($user->lang['LANGUAGE_PACK_NOT_EXIST'] . adm_back_link($this->u_action), E_USER_WARNING);
}
$file = file("{$phpbb_root_path}language/$lang_iso/iso.txt");
$lang_pack = array(
'iso' => $lang_iso,
'name' => trim(htmlspecialchars($file[0])),
'local_name'=> trim(htmlspecialchars($file[1], ENT_COMPAT, 'UTF-8')),
'author' => trim(htmlspecialchars($file[2], ENT_COMPAT, 'UTF-8'))
);
unset($file);
$sql = 'SELECT lang_iso
FROM ' . LANG_TABLE . "
WHERE lang_iso = '" . $db->sql_escape($lang_iso) . "'";
$result = $db->sql_query($sql);
$row = $db->sql_fetchrow($result);
$db->sql_freeresult($result);
if ($row)
{
trigger_error($user->lang['LANGUAGE_PACK_ALREADY_INSTALLED'] . adm_back_link($this->u_action), E_USER_WARNING);
}
if (!$lang_pack['name'] || !$lang_pack['local_name'])
{
trigger_error($user->lang['INVALID_LANGUAGE_PACK'] . adm_back_link($this->u_action), E_USER_WARNING);
}
// Add language pack
$sql_ary = array(
'lang_iso' => $lang_pack['iso'],
'lang_dir' => $lang_pack['iso'],
'lang_english_name' => $lang_pack['name'],
'lang_local_name' => $lang_pack['local_name'],
'lang_author' => $lang_pack['author']
);
$db->sql_query('INSERT INTO ' . LANG_TABLE . ' ' . $db->sql_build_array('INSERT', $sql_ary));
$lang_id = $db->sql_nextid();
// Now let's copy the default language entries for custom profile fields for this new language - makes admin's life easier.
$sql = 'SELECT lang_id
FROM ' . LANG_TABLE . "
WHERE lang_iso = '" . $db->sql_escape($config['default_lang']) . "'";
$result = $db->sql_query($sql);
$default_lang_id = (int) $db->sql_fetchfield('lang_id');
$db->sql_freeresult($result);
// We want to notify the admin that custom profile fields need to be updated for the new language.
$notify_cpf_update = false;
// From the mysql documentation:
// Prior to MySQL 4.0.14, the target table of the INSERT statement cannot appear in the FROM clause of the SELECT part of the query. This limitation is lifted in 4.0.14.
// Due to this we stay on the safe side if we do the insertion "the manual way"
$sql = 'SELECT field_id, lang_name, lang_explain, lang_default_value
FROM ' . PROFILE_LANG_TABLE . '
WHERE lang_id = ' . $default_lang_id;
$result = $db->sql_query($sql);
while ($row = $db->sql_fetchrow($result))
{
$row['lang_id'] = $lang_id;
$db->sql_query('INSERT INTO ' . PROFILE_LANG_TABLE . ' ' . $db->sql_build_array('INSERT', $row));
$notify_cpf_update = true;
}
$db->sql_freeresult($result);
$sql = 'SELECT field_id, option_id, field_type, lang_value
FROM ' . PROFILE_FIELDS_LANG_TABLE . '
WHERE lang_id = ' . $default_lang_id;
$result = $db->sql_query($sql);
while ($row = $db->sql_fetchrow($result))
{
$row['lang_id'] = $lang_id;
$db->sql_query('INSERT INTO ' . PROFILE_FIELDS_LANG_TABLE . ' ' . $db->sql_build_array('INSERT', $row));
$notify_cpf_update = true;
}
$db->sql_freeresult($result);
add_log('admin', 'LOG_LANGUAGE_PACK_INSTALLED', $lang_pack['name']);
$message = sprintf($user->lang['LANGUAGE_PACK_INSTALLED'], $lang_pack['name']);
$message .= ($notify_cpf_update) ? '
' . $user->lang['LANGUAGE_PACK_CPF_UPDATE'] : '';
trigger_error($message . adm_back_link($this->u_action));
break;
case 'download':
if (!$lang_id)
{
trigger_error($user->lang['NO_LANG_ID'] . adm_back_link($this->u_action), E_USER_WARNING);
}
$sql = 'SELECT *
FROM ' . LANG_TABLE . '
WHERE lang_id = ' . $lang_id;
$result = $db->sql_query($sql);
$row = $db->sql_fetchrow($result);
$db->sql_freeresult($result);
$use_method = request_var('use_method', '');
$methods = array('.tar');
$available_methods = array('.tar.gz' => 'zlib', '.tar.bz2' => 'bz2', '.zip' => 'zlib');
foreach ($available_methods as $type => $module)
{
if (!@extension_loaded($module))
{
continue;
}
$methods[] = $type;
}
// Let the user decide in which format he wants to have the pack
if (!$use_method)
{
$this->page_title = 'SELECT_DOWNLOAD_FORMAT';
$radio_buttons = '';
foreach ($methods as $method)
{
$radio_buttons .= '';
}
$template->assign_vars(array(
'S_SELECT_METHOD' => true,
'U_BACK' => $this->u_action,
'U_ACTION' => $this->u_action . "&action=$action&id=$lang_id",
'RADIO_BUTTONS' => $radio_buttons)
);
return;
}
if (!in_array($use_method, $methods))
{
$use_method = '.tar';
}
include_once($phpbb_root_path . 'includes/functions_compress.' . $phpEx);
if ($use_method == '.zip')
{
$compress = new compress_zip('w', $phpbb_root_path . 'store/lang_' . $row['lang_iso'] . $use_method);
}
else
{
$compress = new compress_tar('w', $phpbb_root_path . 'store/lang_' . $row['lang_iso'] . $use_method, $use_method);
}
// Get email templates
$email_templates = filelist($phpbb_root_path . 'language/' . $row['lang_iso'], 'email', 'txt');
$email_templates = $email_templates['email/'];
// Get acp files
$acp_files = filelist($phpbb_root_path . 'language/' . $row['lang_iso'], 'acp', $phpEx);
$acp_files = $acp_files['acp/'];
// Get mod files
$mod_files = filelist($phpbb_root_path . 'language/' . $row['lang_iso'], 'mods', $phpEx);
$mod_files = (isset($mod_files['mods/'])) ? $mod_files['mods/'] : array();
// Add main files
$this->add_to_archive($compress, $this->main_files, $row['lang_iso']);
// Add search files if they exist...
if (file_exists($phpbb_root_path . 'language/' . $row['lang_iso'] . '/search_ignore_words.' . $phpEx))
{
$this->add_to_archive($compress, array("search_ignore_words.$phpEx"), $row['lang_iso']);
}
if (file_exists($phpbb_root_path . 'language/' . $row['lang_iso'] . '/search_synonyms.' . $phpEx))
{
$this->add_to_archive($compress, array("search_synonyms.$phpEx"), $row['lang_iso']);
}
// Write files in folders
$this->add_to_archive($compress, $email_templates, $row['lang_iso'], 'email');
$this->add_to_archive($compress, $acp_files, $row['lang_iso'], 'acp');
$this->add_to_archive($compress, $mod_files, $row['lang_iso'], 'mods');
// Write ISO File
$iso_src = htmlspecialchars_decode($row['lang_english_name']) . "\n";
$iso_src .= htmlspecialchars_decode($row['lang_local_name']) . "\n";
$iso_src .= htmlspecialchars_decode($row['lang_author']);
$compress->add_data($iso_src, 'language/' . $row['lang_iso'] . '/iso.txt');
// index.htm files
$compress->add_data('', 'language/' . $row['lang_iso'] . '/index.htm');
$compress->add_data('', 'language/' . $row['lang_iso'] . '/email/index.htm');
$compress->add_data('', 'language/' . $row['lang_iso'] . '/acp/index.htm');
if (sizeof($mod_files))
{
$compress->add_data('', 'language/' . $row['lang_iso'] . '/mods/index.htm');
}
$compress->close();
$compress->download('lang_' . $row['lang_iso']);
@unlink($phpbb_root_path . 'store/lang_' . $row['lang_iso'] . $use_method);
exit;
break;
}
$sql = 'SELECT user_lang, COUNT(user_lang) AS lang_count
FROM ' . USERS_TABLE . '
GROUP BY user_lang';
$result = $db->sql_query($sql);
$lang_count = array();
while ($row = $db->sql_fetchrow($result))
{
$lang_count[$row['user_lang']] = $row['lang_count'];
}
$db->sql_freeresult($result);
$sql = 'SELECT *
FROM ' . LANG_TABLE . '
ORDER BY lang_english_name';
$result = $db->sql_query($sql);
$installed = array();
while ($row = $db->sql_fetchrow($result))
{
$installed[] = $row['lang_iso'];
$tagstyle = ($row['lang_iso'] == $config['default_lang']) ? '*' : '';
$template->assign_block_vars('lang', array(
'U_DETAILS' => $this->u_action . "&action=details&id={$row['lang_id']}",
'U_DOWNLOAD' => $this->u_action . "&action=download&id={$row['lang_id']}",
'U_DELETE' => $this->u_action . "&action=delete&id={$row['lang_id']}",
'ENGLISH_NAME' => $row['lang_english_name'],
'TAG' => $tagstyle,
'LOCAL_NAME' => $row['lang_local_name'],
'ISO' => $row['lang_iso'],
'USED_BY' => (isset($lang_count[$row['lang_iso']])) ? $lang_count[$row['lang_iso']] : 0,
));
}
$db->sql_freeresult($result);
$new_ary = $iso = array();
$dp = @opendir("{$phpbb_root_path}language");
if ($dp)
{
while (($file = readdir($dp)) !== false)
{
if ($file[0] == '.' || !is_dir($phpbb_root_path . 'language/' . $file))
{
continue;
}
if (file_exists("{$phpbb_root_path}language/$file/iso.txt"))
{
if (!in_array($file, $installed))
{
if ($iso = file("{$phpbb_root_path}language/$file/iso.txt"))
{
if (sizeof($iso) == 3)
{
$new_ary[$file] = array(
'iso' => $file,
'name' => trim($iso[0]),
'local_name'=> trim($iso[1]),
'author' => trim($iso[2])
);
}
}
}
}
}
closedir($dp);
}
unset($installed);
if (sizeof($new_ary))
{
foreach ($new_ary as $iso => $lang_ary)
{
$template->assign_block_vars('notinst', array(
'ISO' => htmlspecialchars($lang_ary['iso']),
'LOCAL_NAME' => htmlspecialchars($lang_ary['local_name'], ENT_COMPAT, 'UTF-8'),
'NAME' => htmlspecialchars($lang_ary['name'], ENT_COMPAT, 'UTF-8'),
'U_INSTALL' => $this->u_action . '&action=install&iso=' . urlencode($lang_ary['iso']))
);
}
}
unset($new_ary);
}
/**
* Set default language variables/header
*/
function default_variables()
{
global $phpEx;
$this->language_file_header = 'lang_header = '
$lang = array_merge($lang, array(
';
// Language files in language root directory
$this->main_files = array("captcha_qa.$phpEx", "captcha_recaptcha.$phpEx", "common.$phpEx", "groups.$phpEx", "install.$phpEx", "mcp.$phpEx", "memberlist.$phpEx", "posting.$phpEx", "search.$phpEx", "ucp.$phpEx", "viewforum.$phpEx", "viewtopic.$phpEx", "help_bbcode.$phpEx", "help_faq.$phpEx");
}
/**
* Get filename/location of language file
*/
function get_filename($lang_iso, $directory, $filename, $check_store = false, $only_return_filename = false)
{
global $phpbb_root_path, $safe_mode;
$check_filename = "language/$lang_iso/" . (($directory) ? $directory . '/' : '') . $filename;
if ($check_store)
{
$check_store_filename = ($safe_mode) ? "store/langfile_{$lang_iso}" . (($directory) ? '_' . $directory : '') . "_{$filename}" : "store/language/$lang_iso/" . (($directory) ? $directory . '/' : '') . $filename;
if (!$only_return_filename && file_exists($phpbb_root_path . $check_store_filename))
{
return $check_store_filename;
}
else if ($only_return_filename)
{
return $check_store_filename;
}
}
return $check_filename;
}
/**
* Add files to archive
*/
function add_to_archive(&$compress, $filelist, $lang_iso, $directory = '')
{
global $phpbb_root_path;
foreach ($filelist as $file)
{
// Get source filename
$source = $this->get_filename($lang_iso, $directory, $file, true);
$destination = 'language/' . $lang_iso . '/' . (($directory) ? $directory . '/' : '') . $file;
// Add file to archive
$compress->add_custom_file($phpbb_root_path . $source, $destination);
}
}
/**
* Little helper to add some hardcoded template bits
*/
function add_input_field()
{
$keys = func_get_args();
$non_static = array_shift($keys);
$value = utf8_normalize_nfc(array_shift($keys));
if (!$non_static)
{
return '' . htmlspecialchars($value, ENT_COMPAT, 'UTF-8') . '';
}
// If more then 270 characters, then we present a textarea, else an input field
$textarea = (utf8_strlen($value) > 270) ? true : false;
$tpl = '';
$tpl .= ($textarea) ? '' : '" />';
return $tpl;
}
/**
* Print language entries
*/
function print_language_entries(&$lang_ary, $key_prefix = '', $input_field = true)
{
$tpl = '';
foreach ($lang_ary as $key => $value)
{
if (is_array($value))
{
// Write key
$tpl .= '
# Korean translation of drakbootdisk.
# Copyright (C) 2001 Free Software Foundation, Inc.
# Jaegeum Choe <baedaron@hananet.net>, 2001.
#
# changes asked by HP people -- pablo 2003-01-23
#
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
"POT-Creation-Date: 2005-05-22 20:07+0200\n"
"PO-Revision-Date: 2002-09-09 09:08+0900\n"
"Last-Translator: Jaegeum Cze <baedaron@hanafos.com>\n"
"Language-Team: Korean <beadaron@hanafos.com>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../move/move.pm:292
#, fuzzy, c-format
msgid "Which USB key do you want to format?"
msgstr "어떤 종류의 항목을 추가하시겠습니까?"
#: ../move/move.pm:296
#, c-format
msgid ""
"You are about to format a USB device \"%s\". This will delete all data on "
"it.\n"
"Make sure that the selected device is the USB key you want to format. \n"
"We advise you to unplug all other USB storage devices while doing this "
"operation."
msgstr ""
#: ../move/move.pm:448 ../move/move.pm:460
#, fuzzy, c-format
msgid "Key is not writable"
msgstr "XawTV가 설치되지 않았습니다!"
#: ../move/move.pm:450
#, c-format
msgid ""
"The USB key seems to have write protection enabled. Please\n"
"unplug it, remove write protection, and then plug it again."
msgstr ""
#: ../move/move.pm:452
#, c-format
msgid "Retry"
msgstr "재시도"
#: ../move/move.pm:453 ../move/move.pm:497
#, c-format
msgid "Continue without USB key"
msgstr ""
#: ../move/move.pm:462
#, c-format
msgid ""
"The USB key seems to have write protection enabled, but we can not safely\n"
"unplug it now.\n"
"\n"
"\n"
"Click the button to reboot the machine, unplug it, remove write protection,\n"
"plug the key again, and launch Mandriva Move again."
msgstr ""
#: ../move/move.pm:468 help.pm:409 install_steps_interactive.pm:1320
#, c-format
msgid "Reboot"
msgstr "다시 시작"
#: ../move/move.pm:473
#, c-format
msgid ""
"Your USB key does not have any valid Windows (FAT) partitions.\n"
"We need one to continue (beside, it's more standard so that you\n"
"will be able to move and access your files from machines\n"
"running Windows). Please plug in an USB key containing a\n"
"Windows partition instead.\n"
"\n"
"\n"
"You may also proceed without an USB key - you'll still be\n"
"able to use Mandriva Move as a normal live Mandriva\n"
"Operating System."
msgstr ""
#: ../move/move.pm:483
#, c-format
msgid ""
"We did not detect any USB key on your system. If you\n"
"plug in an USB key now, Mandriva Move will have the ability\n"
"to transparently save the data in your home directory and\n"
"system wide configuration, for next boot on this computer\n"
"or another one. Note: if you plug in a key now, wait several\n"
"seconds before detecting again.\n"
"\n"
"\n"
"You may also proceed without an USB key - you'll still be\n"
"able to use Mandriva Move as a normal live Mandriva\n"
"Operating System."
msgstr ""
#: ../move/move.pm:494
#, c-format
msgid "Need a key to save your data"
msgstr ""
#: ../move/move.pm:496
#, c-format
msgid "Detect USB key again"
msgstr ""
#: ../move/move.pm:517
#, c-format
msgid "Setting up USB key"
msgstr ""
#: ../move/move.pm:517
#, fuzzy, c-format
msgid "Please wait, setting up system configuration files on USB key..."
msgstr "희망하는 보안 단계를 선택해 주세요."
#: ../move/move.pm:546
#, c-format
msgid "Enter your user information, password will be used for screensaver"
msgstr ""
#: ../move/move.pm:556
#, fuzzy, c-format
msgid "Auto configuration"
msgstr "경고 설정"
#: ../move/move.pm:556
#, fuzzy, c-format
msgid "Please wait, detecting and configuring devices..."
msgstr "희망하는 보안 단계를 선택해 주세요."
#: ../move/move.pm:604 ../move/move.pm:660 ../move/move.pm:664
#: diskdrake/dav.pm:75 diskdrake/hd_gtk.pm:116 diskdrake/interactive.pm:227
#: diskdrake/interactive.pm:240 diskdrake/interactive.pm:401
#: diskdrake/interactive.pm:419 diskdrake/interactive.pm:556
#: diskdrake/interactive.pm:561 diskdrake/smbnfs_gtk.pm:42 fsedit.pm:182
#: install_any.pm:1698 install_any.pm:1721 install_steps.pm:82
#: install_steps_interactive.pm:38 interactive/http.pm:117
#: interactive/http.pm:118 network/ndiswrapper.pm:27 network/ndiswrapper.pm:41
#: network/ndiswrapper.pm:89 network/ndiswrapper.pm:101
#: network/netconnect.pm:1013 network/netconnect.pm:1121
#: network/netconnect.pm:1125 network/netconnect.pm:1129
#: network/netconnect.pm:1134 network/netconnect.pm:1266
#: network/netconnect.pm:1270 network/netconnect.pm:1274
#: network/netconnect.pm:1278 network/netconnect.pm:1386
#: network/netconnect.pm:1391 network/netconnect.pm:1411
#: network/netconnect.pm:1622 printer/printerdrake.pm:244
#: printer/printerdrake.pm:251 printer/printerdrake.pm:276
#: printer/printerdrake.pm:422 printer/printerdrake.pm:427
#: printer/printerdrake.pm:440 printer/printerdrake.pm:450
#: printer/printerdrake.pm:514 printer/printerdrake.pm:641
#: printer/printerdrake.pm:1352 printer/printerdrake.pm:1399
#: printer/printerdrake.pm:1436 printer/printerdrake.pm:1481
#: printer/printerdrake.pm:1485 printer/printerdrake.pm:1499
#: printer/printerdrake.pm:1591 printer/printerdrake.pm:1672
#: printer/printerdrake.pm:1676 printer/printerdrake.pm:1680
#: printer/printerdrake.pm:1729 printer/printerdrake.pm:1787
#: printer/printerdrake.pm:1791 printer/printerdrake.pm:1805
#: printer/printerdrake.pm:1920 printer/printerdrake.pm:1924
#: printer/printerdrake.pm:1967 printer/printerdrake.pm:2042
#: printer/printerdrake.pm:2060 printer/printerdrake.pm:2069
#: printer/printerdrake.pm:2078 printer/printerdrake.pm:2089
#: printer/printerdrake.pm:2153 printer/printerdrake.pm:2247
#: printer/printerdrake.pm:2767 printer/printerdrake.pm:3042
#: printer/printerdrake.pm:3048 printer/printerdrake.pm:3596
#: printer/printerdrake.pm:3600 printer/printerdrake.pm:3604
#: printer/printerdrake.pm:4064 printer/printerdrake.pm:4309
#: printer/printerdrake.pm:4333 printer/printerdrake.pm:4410
#: printer/printerdrake.pm:4476 printer/printerdrake.pm:4596
#: standalone/drakTermServ:393 standalone/drakTermServ:467
#: standalone/drakTermServ:476 standalone/drakTermServ:771
#: standalone/drakTermServ:778 standalone/drakTermServ:801
#: standalone/drakTermServ:847 standalone/drakTermServ:1023
#: standalone/drakTermServ:1503 standalone/drakTermServ:1519
#: standalone/drakTermServ:1524 standalone/drakTermServ:1532
#: standalone/drakTermServ:1544 standalone/drakTermServ:1565
#: standalone/drakauth:36 standalone/drakbackup:498 standalone/drakbackup:612
#: standalone/drakbackup:1090 standalone/drakbackup:1122
#: standalone/drakbackup:1643 standalone/drakbackup:1799
#: standalone/drakbackup:2413 standalone/drakbackup:4102
#: standalone/drakbackup:4322 standalone/drakclock:124
#: standalone/drakconnect:683 standalone/drakconnect:687
#: standalone/drakconnect:692 standalone/drakconnect:707
#: standalone/drakfloppy:297 standalone/drakfloppy:300
#: standalone/drakfloppy:306 standalone/drakfont:210 standalone/drakfont:223
#: standalone/drakfont:261 standalone/drakroam:41 standalone/draksplash:26
#: standalone/drakxtv:107 standalone/finish-install:39 standalone/logdrake:169
#: standalone/logdrake:438 standalone/logdrake:443 standalone/scannerdrake:59
#: standalone/scannerdrake:202 standalone/scannerdrake:261
#: standalone/scannerdrake:715 standalone/scannerdrake:726
#: standalone/scannerdrake:865 standalone/scannerdrake:876
#: standalone/scannerdrake:946 wizards.pm:95 wizards.pm:99 wizards.pm:121
#: wizards2.pm:95 wizards2.pm:99 wizards2.pm:121
#, c-format
msgid "Error"
msgstr "오류"
#: ../move/move.pm:605 install_steps.pm:83
#, c-format
msgid ""
"An error occurred, but I do not know how to handle it nicely.\n"
"Continue at your own risk."
msgstr ""
"오류가 발생했습니다. 그러나 적절히 처리할 수 없습니다.\n"
"위헝을 감수할려면 계속하세요."
#: ../move/move.pm:660 install_steps_interactive.pm:38
#, c-format
msgid "An error occurred"
msgstr "오류 발생"
#: ../move/move.pm:666
#, c-format
msgid ""
"An error occurred:\n"
"\n"
"\n"
"%s\n"
"\n"
"This may come from corrupted system configuration files\n"
"on the USB key, in this case removing them and then\n"
"rebooting Mandriva Move would fix the problem. To do\n"
"so, click on the corresponding button.\n"
"\n"
"\n"
"You may also want to reboot and remove the USB key, or\n"
"examine its contents under another OS, or even have\n"
"a look at log files in console #3 and #4 to try to\n"
"guess what's happening."
msgstr ""
#: ../move/move.pm:681
#, fuzzy, c-format
msgid "Remove system config files"
msgstr "루프백 파일을 제거합니까?"
#: ../move/move.pm:682
#, c-format
msgid "Simply reboot"
msgstr ""
#: ../move/tree/mdk_totem:50 ../move/tree/mdk_totem:96
#, c-format
msgid "You can only run with no CDROM support"
msgstr ""
#: ../move/tree/mdk_totem:71
#, fuzzy, c-format
msgid "Kill those programs"
msgstr "X 프로그램 액세스"
#: ../move/tree/mdk_totem:72
#, fuzzy, c-format
msgid "No CDROM support"
msgstr "라디오 지원:"
#: ../move/tree/mdk_totem:76 diskdrake/hd_gtk.pm:95
#: diskdrake/interactive.pm:1039 diskdrake/interactive.pm:1049
#: diskdrake/interactive.pm:1102
#, c-format
msgid "Read carefully!"
msgstr "주의깊게 읽으세요!"
#: ../move/tree/mdk_totem:77
#, c-format
msgid ""
"You can not use another CDROM when the following programs are running: \n"
"%s"
msgstr ""
#: ../move/tree/mdk_totem:101
#, c-format
msgid "Copying to memory to allow removing the CDROM"
msgstr ""
#: Xconfig/card.pm:13
#, c-format
msgid "256 kB"
msgstr "256 kB"
#: Xconfig/card.pm:14
#, c-format
msgid "512 kB"
msgstr "512 kB"
#: Xconfig/card.pm:15
#, c-format
msgid "1 MB"
msgstr "1 MB"
#: Xconfig/card.pm:16
#, c-format
msgid "2 MB"
msgstr "2 MB"
#: Xconfig/card.pm:17
#, c-format
msgid "4 MB"
msgstr "4 MB"
#: Xconfig/card.pm:18
#, c-format
msgid "8 MB"
msgstr "8 MB"
#: Xconfig/card.pm:19
#, c-format
msgid "16 MB"
msgstr "16 MB"
#: Xconfig/card.pm:20
#, c-format
msgid "32 MB"
msgstr "32 MB"
#: Xconfig/card.pm:21
#, c-format
msgid "64 MB or more"
msgstr "16 MB 이상"
#: Xconfig/card.pm:159
#, c-format
msgid "X server"
msgstr "X 서버"
#: Xconfig/card.pm:160
#, fuzzy, c-format
msgid "Choose an X server"
msgstr "X 서버 선택"
#: Xconfig/card.pm:192
#, c-format
msgid "Multi-head configuration"
msgstr "다중 헤드 설정"
#: Xconfig/card.pm:193
#, fuzzy, c-format
msgid ""
"Your system supports multiple head configuration.\n"
"What do you want to do?"
msgstr ""
"님의 시스템은 다중 헤드 설정을 지원합니다.\n"
"어떻게 하시겠습니까?"
#: Xconfig/card.pm:262
#, fuzzy, c-format
msgid "Can not install Xorg package: %s"
msgstr "%s 팩키지 설치중"
#: Xconfig/card.pm:272
#, c-format
msgid "Select the memory size of your graphics card"
msgstr "그래픽 카드의 메모리 용량을 선택하세요"
#: Xconfig/card.pm:349
#, c-format
msgid "Xorg configuration"
msgstr "Xorg 설정"
#: Xconfig/card.pm:351
#, c-format
msgid "Which configuration of Xorg do you want to have?"
msgstr "어느 Xorg 설정을 선택하시겠습니까?"
#: Xconfig/card.pm:384
#, c-format
msgid "Configure all heads independently"
msgstr "모든 헤드를 독립적으로 설정"
#: Xconfig/card.pm:385
#, c-format
msgid "Use Xinerama extension"
msgstr "Xinerama 확장 사용"
#: Xconfig/card.pm:390
#, c-format
msgid "Configure only card \"%s\"%s"
msgstr "「%s」%s 카드만 설정"
#: Xconfig/card.pm:402 Xconfig/various.pm:23
#, c-format
msgid "Xorg %s"
msgstr "Xorg %s"
#: Xconfig/card.pm:409 Xconfig/various.pm:22
#, c-format
msgid "Xorg %s with 3D hardware acceleration"
msgstr "Xorg %s를 사용한 3D 하드웨어 가속"
#: Xconfig/card.pm:411
#, c-format
msgid "Your card can have 3D hardware acceleration support with Xorg %s."
msgstr "님의 카드는 Xorg %s로 3D 하드웨어 가속기능을 지원합니다."
#: Xconfig/card.pm:417
#, c-format
msgid "Xorg %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "Xorg %s를 사용한 실험적 3D 하드웨어 가속"
#: Xconfig/card.pm:419
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with Xorg %s,\n"
"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
msgstr ""
"님의 카드는 Xorg %s로만 가능한 3D 하드웨어 가속기능이 지원됩니다.\n"
"주의: 이것은 실험적인 지원이며 님의 컴퓨터를 멈추게 할 수 있습니다."
#: Xconfig/main.pm:90 Xconfig/main.pm:91 Xconfig/monitor.pm:116 any.pm:921
#, c-format
msgid "Custom"
msgstr "사용자 정의"
#: Xconfig/main.pm:115 diskdrake/dav.pm:26 help.pm:14
#: install_steps_interactive.pm:86 printer/printerdrake.pm:744
#: printer/printerdrake.pm:4405 printer/printerdrake.pm:4857
#: standalone/draksplash:83 standalone/logdrake:174 standalone/net_applet:229
#: standalone/scannerdrake:477
#, c-format
msgid "Quit"
msgstr "종료"
#: Xconfig/main.pm:117
#, c-format
msgid "Graphic Card"
msgstr "그래픽 카드"
#: Xconfig/main.pm:120 Xconfig/monitor.pm:110
#, c-format
msgid "Monitor"
msgstr "모니터"
#: Xconfig/main.pm:123 Xconfig/resolution_and_depth.pm:288
#, c-format
msgid "Resolution"
msgstr "해상도"
#: Xconfig/main.pm:128
#, c-format
msgid "Test"
msgstr "테스트"
#: Xconfig/main.pm:133 diskdrake/dav.pm:65 diskdrake/interactive.pm:445
#: diskdrake/removable.pm:24 diskdrake/smbnfs_gtk.pm:80
#: standalone/drakfont:491 standalone/drakfont:553
#, c-format
msgid "Options"
msgstr "옵션들"
#: Xconfig/main.pm:168
#, c-format
msgid "Your Xorg configuration file is broken, we will ignore it."
msgstr ""
#: Xconfig/main.pm:186
#, c-format
msgid ""
"Keep the changes?\n"
"The current configuration is:\n"
"\n"
"%s"
msgstr ""
"변경사항을 저장할까요?\n"
"현재 설정:\n"
"\n"
"%s"
#: Xconfig/monitor.pm:111
#, fuzzy, c-format
msgid "Choose a monitor for head #%d"
msgstr "모니터를 선택하세요"
#: Xconfig/monitor.pm:111
#, c-format
msgid "Choose a monitor"
msgstr "모니터를 선택하세요"
#: Xconfig/monitor.pm:117
#, c-format
msgid "Plug'n Play"
msgstr "플러그앤플레이"
#: Xconfig/monitor.pm:118 mouse.pm:49
#, c-format
msgid "Generic"
msgstr "일반 마우스"
#: Xconfig/monitor.pm:119 standalone/drakconnect:602 standalone/harddrake2:53
#: standalone/harddrake2:87
#, c-format
msgid "Vendor"
msgstr "상표"
#: Xconfig/monitor.pm:129
#, c-format
msgid "Plug'n Play probing failed. Please select the correct monitor"
msgstr ""
#: Xconfig/monitor.pm:137
#, c-format
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
"at which the whole screen is refreshed, and most importantly the horizontal\n"
"sync rate, which is the rate at which scanlines are displayed.\n"
"\n"
"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
"range\n"
"that is beyond the capabilities of your monitor: you may damage your "
"monitor.\n"
" If in doubt, choose a conservative setting."
msgstr ""
"수직 그리고 더욱 중요한 수평 주파수라는 두 개의 중요한 인자가 있습니다. 수직 "
"주파수는 \n"
"전체화면이 갱신되는 주기이며, 수평 주파수는 스캔라인들이 갱신되는 주기입니"
"다.\n"
"\n"
"매우 중요: 님의 실제 모니터의 능력치를 넘어서는 모델을 선택하지 마세요: \n"
"님의 모니터가 훼손될 수 있습니다.\n"
"잘 모르겠다면, 안전하게 낮은 설정값을 선택하세요"
#: Xconfig/monitor.pm:144
#, c-format
msgid "Horizontal refresh rate"
msgstr "수평 주파수"
#: Xconfig/monitor.pm:145
#, c-format
msgid "Vertical refresh rate"
msgstr "수직 주파수"
#: Xconfig/resolution_and_depth.pm:12
#, c-format
msgid "256 colors (8 bits)"
msgstr "256 색상 (8 bits)"
#: Xconfig/resolution_and_depth.pm:13
#, c-format
msgid "32 thousand colors (15 bits)"
msgstr "3만2천 색상 (15 bits)"
#: Xconfig/resolution_and_depth.pm:14
#, c-format
msgid "65 thousand colors (16 bits)"
msgstr "6만5천 색상 (16 bits)"
#: Xconfig/resolution_and_depth.pm:15
#, c-format
msgid "16 million colors (24 bits)"
msgstr "천6백만 색상 (24bits)"
#: Xconfig/resolution_and_depth.pm:129
#, c-format
msgid "Resolutions"
msgstr "해상도"
#: Xconfig/resolution_and_depth.pm:310 diskdrake/hd_gtk.pm:339
#: install_steps_gtk.pm:283 mouse.pm:168 services.pm:162
#: standalone/drakbackup:1581 standalone/drakperm:251
#, c-format
msgid "Other"
msgstr "기타"
#: Xconfig/resolution_and_depth.pm:359
#, c-format
msgid "Choose the resolution and the color depth"
msgstr "해상도와 색상을 선택하세요"
#: Xconfig/resolution_and_depth.pm:360
#, c-format
msgid "Graphics card: %s"
msgstr "그래픽 카드: %s"
#: Xconfig/resolution_and_depth.pm:374 interactive.pm:433
#: interactive/gtk.pm:767 interactive/http.pm:103 interactive/http.pm:156
#: interactive/newt.pm:321 interactive/newt.pm:424 interactive/stdio.pm:39
#: interactive/stdio.pm:142 interactive/stdio.pm:143 interactive/stdio.pm:172
#: standalone/drakTermServ:200 standalone/drakTermServ:518
#: standalone/drakbackup:1345 standalone/drakbackup:3959
#: standalone/drakbackup:4019 standalone/drakbackup:4063
#: standalone/drakconnect:166 standalone/drakconnect:885
#: standalone/drakconnect:972 standalone/drakconnect:1071
#: standalone/drakfont:574 standalone/drakfont:586 standalone/drakroam:392
#: standalone/draksplash:145 standalone/drakups:212 standalone/net_monitor:345
#: ugtk2.pm:409 ugtk2.pm:506 ugtk2.pm:908 ugtk2.pm:931
#, c-format
msgid "Ok"
msgstr "확인"
#: Xconfig/resolution_and_depth.pm:374 diskdrake/smbnfs_gtk.pm:81 help.pm:89
#: help.pm:444 install_steps_gtk.pm:479 install_steps_interactive.pm:422
#: install_steps_interactive.pm:827 interactive.pm:434 interactive/gtk.pm:771
#: interactive/http.pm:104 interactive/http.pm:160 interactive/newt.pm:318
#: interactive/newt.pm:428 interactive/stdio.pm:39 interactive/stdio.pm:142
#: interactive/stdio.pm:176 printer/printerdrake.pm:3676
#: standalone/drakautoinst:217 standalone/drakbackup:1345
#: standalone/drakbackup:3885 standalone/drakbackup:3889
#: standalone/drakbackup:3947 standalone/drakconnect:165
#: standalone/drakconnect:970 standalone/drakconnect:1070
#: standalone/drakfont:586 standalone/drakfont:664 standalone/drakfont:741
#: standalone/draksplash:145 standalone/drakups:219 standalone/logdrake:174
#: standalone/net_monitor:344 ugtk2.pm:403 ugtk2.pm:504 ugtk2.pm:513
#: ugtk2.pm:908
#, c-format
msgid "Cancel"
msgstr "취소"
#: Xconfig/resolution_and_depth.pm:374 diskdrake/hd_gtk.pm:153
#: install_steps_gtk.pm:227 install_steps_gtk.pm:628 interactive.pm:528
#: interactive/gtk.pm:637 interactive/gtk.pm:639 standalone/drakTermServ:285
#: standalone/drakbackup:3881 standalone/drakbug:104
#: standalone/drakconnect:161 standalone/drakconnect:246
#: standalone/drakfont:509 standalone/drakperm:134 standalone/draksec:336
#: standalone/draksec:338 standalone/draksec:356 standalone/draksec:358
#: ugtk2.pm:1040 ugtk2.pm:1041
#, c-format
msgid "Help"
msgstr "도움말"
#: Xconfig/test.pm:30
#, c-format
msgid "Test of the configuration"
msgstr "설정 테스트"
#: Xconfig/test.pm:31
#, c-format
msgid "Do you want to test the configuration?"
msgstr "이 설정을 테스트해 보시겠습니까?"
#: Xconfig/test.pm:31
#, c-format
msgid "Warning: testing this graphic card may freeze your computer"
msgstr ""
#: Xconfig/test.pm:69
#, c-format
msgid ""
"An error occurred:\n"
"%s\n"
"Try to change some parameters"
msgstr ""
#: Xconfig/test.pm:129
#, fuzzy, c-format
msgid "Leaving in %d seconds"
msgstr "%d 초"
#: Xconfig/test.pm:129
#, fuzzy, c-format
msgid "Is this the correct setting?"
msgstr "이것이 맞습니까?"
#: Xconfig/various.pm:29
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "키보드 형태: %s\n"
#: Xconfig/various.pm:30
#, c-format
msgid "Mouse type: %s\n"
msgstr "마우스 종류: %s\n"
#: Xconfig/various.pm:31
#, c-format
msgid "Mouse device: %s\n"
msgstr "마우스 장치: %s\n"
#: Xconfig/various.pm:33
#, c-format
msgid "Monitor: %s\n"
msgstr "모니터: %s\n"
#: Xconfig/various.pm:34
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "모니터 수평주파수: %s\n"
#: Xconfig/various.pm:35
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "모니터 수직주파수: %s\n"
#: Xconfig/various.pm:37
#, c-format
msgid "Graphics card: %s\n"
msgstr "그래픽 카드: %s\n"
#: Xconfig/various.pm:38
#, c-format
msgid "Graphics memory: %s kB\n"
msgstr "비디오 메모리: %s kB\n"
#: Xconfig/various.pm:40
#, c-format
msgid "Color depth: %s\n"
msgstr "색상 심도: %s\n"
#: Xconfig/various.pm:41
#, c-format
msgid "Resolution: %s\n"
msgstr "해상도: %s\n"
#: Xconfig/various.pm:43
#, c-format
msgid "Xorg driver: %s\n"
msgstr "Xorg 드라이버: %s\n"
#: Xconfig/various.pm:72
#, c-format
msgid "Graphical interface at startup"
msgstr "시작시 바로 X 실행"
#: Xconfig/various.pm:74
#, c-format
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(Xorg) upon booting.\n"
"Would you like Xorg to start when you reboot?"
msgstr ""
"부팅시에 자동으로 X윈도우가 시작되도록 할수 있습니다.\n"
"다시 부팅했을때 자동으로 X윈도가 시작되길 원하세요?"
#: Xconfig/various.pm:87
#, c-format
msgid ""
"Your graphic card seems to have a TV-OUT connector.\n"
"It can be configured to work using frame-buffer.\n"
"\n"
"For this you have to plug your graphic card to your TV before booting your "
"computer.\n"
"Then choose the \"TVout\" entry in the bootloader\n"
"\n"
"Do you have this feature?"
msgstr ""
#: Xconfig/various.pm:99
#, c-format
msgid "What norm is your TV using?"
msgstr "TV 카드가 어떤 놈을 사용합니까?"
#: Xconfig/xfree.pm:630
#, c-format
msgid ""
"_:weird aspect ratio\n"
"other"
msgstr ""
#: any.pm:143 harddrake/sound.pm:191 interactive.pm:471 pkgs.pm:481
#: standalone/drakconnect:168 standalone/drakconnect:646 standalone/draksec:68
#: standalone/drakups:101 standalone/drakxtv:92 standalone/harddrake2:244
#: standalone/service_harddrake:203
#, c-format
msgid "Please wait"
msgstr "기다려 주세요"
#: any.pm:143
#, fuzzy, c-format
msgid "Bootloader installation in progress"
msgstr "부트로더 설치"
#: any.pm:154
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
"the Volume ID of a Windows NT, 2000, or XP boot disk is a fatal Windows "
"error.\n"
"This caution does not apply to Windows 95 or 98, or to NT data disks.\n"
"\n"
"Assign a new Volume ID?"
msgstr ""
#: any.pm:165
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr "부트로더 설치가 실패했습니다. 다음과 같은 오류가 발생했습니다:"
#: any.pm:171
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
" enable the bootloader. If you do not see the bootloader prompt at\n"
" reboot, hold down Command-Option-O-F at reboot and enter:\n"
" setenv boot-device %s,\\\\:tbxi\n"
" Then type: shut-down\n"
"At your next boot you should see the bootloader prompt."
msgstr ""
"부트로더가 제대로 작동하기 위해서는 공개 펌웨어 부트 장치를 변경할 필요성이\n"
"있을 수도 있습니다. 만약 재부팅후에 부트로더 프롬프트가 나타나지 않는다면,\n"
"재부팅시에 명령-옵션-O-F를 계속 누르고 있다가 다음과 같이 입력하세요:\n"
"setenv boot-device %s,\\\\:tbxi\n"
"shut-down\n"
"그러고나면 다음부터는 부트로더 프롬프트를 볼 수 있을 것입니다."
#: any.pm:209
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
"This implies you already have a bootloader on the hard drive you boot (eg: "
"System Commander).\n"
"\n"
"On which drive are you booting?"
msgstr ""
#: any.pm:232 help.pm:739
#, c-format
msgid "First sector of drive (MBR)"
msgstr "드라이브의 첫번째 섹터(MBR)"
#: any.pm:233
#, fuzzy, c-format
msgid "First sector of the root partition"
msgstr "부트 파티션의 첫번째 섹터"
#: any.pm:235
#, fuzzy, c-format
msgid "On Floppy"
msgstr "부트 플로피"
#: any.pm:237 help.pm:739 printer/printerdrake.pm:4061
#, c-format
msgid "Skip"
msgstr "건너뛰기"
#: any.pm:241
#, c-format
msgid "LILO/grub Installation"
msgstr "LILO/GRUB 설치"
#: any.pm:242
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "부트로더를 어디에 설치하고 싶으세요?"
#: any.pm:268 standalone/drakboot:261
#, c-format
msgid "Boot Style Configuration"
msgstr "부팅 스타일 설정"
#: any.pm:270 any.pm:302
#, c-format
msgid "Bootloader main options"
msgstr "부트로더 주 옵션들"
#: any.pm:274
#, c-format
msgid "Give the ram size in MB"
msgstr "메모리 용량를 MB로 입력하세요"
#: any.pm:276
#, c-format
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr "옵션: 「명령행 옵션제한」은 암호없이 사용될수 없습니다."
#: any.pm:277 any.pm:610 authentication.pm:182
#, c-format
msgid "The passwords do not match"
msgstr "암호가 일치하지 않습니다."
#: any.pm:277 any.pm:610 authentication.pm:182 diskdrake/interactive.pm:1292
#, c-format
msgid "Please try again"
msgstr "다시 시도하세요."
#: any.pm:282 any.pm:305
#, c-format
msgid "Bootloader to use"
msgstr "사용할 부트로더"
#: any.pm:284 any.pm:307
#, c-format
msgid "Boot device"
msgstr "부트 장치"
#: any.pm:286
#, c-format
msgid "Delay before booting default image"
msgstr "기본 이미지로 부팅될 때까지 지연시간"
#: any.pm:287
#, fuzzy, c-format
msgid "Enable ACPI"
msgstr "CD 부팅 허용?"
#: any.pm:289
#, c-format
msgid "Force no APIC"
msgstr ""
#: any.pm:291
#, c-format
msgid "Force No Local APIC"
msgstr ""
#: any.pm:293 any.pm:637 authentication.pm:187 diskdrake/smbnfs_gtk.pm:180
#: network/netconnect.pm:688 printer/printerdrake.pm:1663
#: printer/printerdrake.pm:1784 standalone/drakbackup:1625
#: standalone/drakbackup:3488 standalone/drakups:299
#, c-format
msgid "Password"
msgstr "암호"
#: any.pm:294 any.pm:638 authentication.pm:188
#, c-format
msgid "Password (again)"
msgstr "암호 (확인)"
#: any.pm:295
#, c-format
msgid "Restrict command line options"
msgstr "명령행 옵션을 제한합니다."
#: any.pm:295
#, c-format
msgid "restrict"
msgstr "제한"
#: any.pm:297
#, c-format
msgid "Clean /tmp at each boot"
msgstr "부팅시 /tmp 디렉토리 자동 청소"
#: any.pm:298
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "옵션: 정확한 메모리 용량 (%d MB 발견)"
#: any.pm:306
#, c-format
msgid "Init Message"
msgstr "초기화 메시지"
#: any.pm:308
#, c-format
msgid "Open Firmware Delay"
msgstr "펌웨어 열기 지연"
#: any.pm:309
#, c-format
msgid "Kernel Boot Timeout"
msgstr "커널 부트 제한시간"
#: any.pm:310
#, c-format
msgid "Enable CD Boot?"
msgstr "CD 부팅 허용?"
#: any.pm:311
#, c-format
msgid "Enable OF Boot?"
msgstr "OF 부팅 허용?"
#: any.pm:312
#, c-format
msgid "Default OS?"
msgstr "기본 OS?"
#: any.pm:365
#, c-format
msgid "Image"
msgstr "이미지"
#: any.pm:366 any.pm:376
#, c-format
msgid "Root"
msgstr "루트"
#: any.pm:367 any.pm:389
#, c-format
msgid "Append"
msgstr "추가"
#: any.pm:369 standalone/drakboot:263 standalone/drakboot:267
#, c-format
msgid "Video mode"
msgstr "비디오 모드"
#: any.pm:371
#, c-format
msgid "Initrd"
msgstr "초기화 램디스크"
#: any.pm:372
#, fuzzy, c-format
msgid "Network profile"
msgstr "네트웍 인터페이스"
#: any.pm:381 any.pm:386 any.pm:388
#, c-format
msgid "Label"
msgstr "항목명"
#: any.pm:383 any.pm:393 harddrake/v4l.pm:275 standalone/drakfloppy:84
#: standalone/drakfloppy:90 standalone/draksec:52
#, c-format
msgid "Default"
msgstr "기본값"
#: any.pm:390
#, c-format
msgid "Initrd-size"
msgstr "램디스크 용량"
#: any.pm:392
#, c-format
msgid "NoVideo"
msgstr "비디오 없음"
#: any.pm:403
#, c-format
msgid "Empty label not allowed"
msgstr "빈 항목명은 허용되지 않습니다."
#: any.pm:404
#, c-format
msgid "You must specify a kernel image"
msgstr "커널 이미지를 지정해 주세요."
#: any.pm:404
#, c-format
msgid "You must specify a root partition"
msgstr "루트 파티션은 반드시 지정되어야 합니다."
#: any.pm:405
#, c-format
msgid "This label is already used"
msgstr "이 항목명은 이미 사용되고 있습니다."
#: any.pm:419
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "어떤 종류의 항목을 추가하시겠습니까?"
#: any.pm:420
#, c-format
msgid "Linux"
msgstr "리눅스"
#: any.pm:420
#, c-format
msgid "Other OS (SunOS...)"
msgstr "기타 OS (SunOS...)"
#: any.pm:421
#, c-format
msgid "Other OS (MacOS...)"
msgstr "기타 OS (MacOS...)"
#: any.pm:421
#, c-format
msgid "Other OS (Windows...)"
msgstr "기타 OS (Windows...)"
#: any.pm:449
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can create additional entries or change the existing ones."
msgstr ""
"몇 가지 항목이 여기에 표시되고 있습니다.\n"
"더 추가하거나, 기존의 것들을 수정할수 있습니다."
#: any.pm:596
#, c-format
msgid "access to X programs"
msgstr "X 프로그램 액세스"
#: any.pm:597
#, c-format
msgid "access to rpm tools"
msgstr "RPM 도구 액세스"
#: any.pm:598
#, c-format
msgid "allow \"su\""
msgstr "「su」허용"
#: any.pm:599
#, c-format
msgid "access to administrative files"
msgstr "시스템 관리파일 액세스"
#: any.pm:600
#, c-format
msgid "access to network tools"
msgstr "네트웍 도구 액세스"
#: any.pm:601
#, c-format
msgid "access to compilation tools"
msgstr "컴파일 도구 액세스"
#: any.pm:606
#, c-format
msgid "(already added %s)"
msgstr "(이미 %s는(은) 추가되었습니다.)"
#: any.pm:611
#, c-format
msgid "This password is too simple"
msgstr "이 암호는 너무 단순합니다."
#: any.pm:612
#, c-format
msgid "Please give a user name"
msgstr "사용자명을 입력해 주세요"
#: any.pm:613
#, c-format
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "사용자명은 영문 소문자나 숫자, '-' 그리고 '_' 만 포함될수 있습니다."
#: any.pm:614
#, c-format
msgid "The user name is too long"
msgstr "사용자 명이 너무 깁니다."
#: any.pm:615
#, c-format
msgid "This user name has already been added"
msgstr "이 사용자명은 이미 추가되어 있습니다."
#: any.pm:619
#, c-format
msgid "Add user"
msgstr "사용자 추가"
#: any.pm:620
#, c-format
msgid ""
"Enter a user\n"
"%s"
msgstr ""
"사용자 입력\n"
"%s"
#: any.pm:623 diskdrake/dav.pm:66 diskdrake/hd_gtk.pm:157
#: diskdrake/removable.pm:26 diskdrake/smbnfs_gtk.pm:82 help.pm:530
#: interactive/http.pm:151 printer/printerdrake.pm:197
#: printer/printerdrake.pm:382 printer/printerdrake.pm:4857
#: standalone/drakbackup:2701 standalone/scannerdrake:668
#: standalone/scannerdrake:818
#, c-format
msgid "Done"
msgstr "완료"
#: any.pm:624 help.pm:51
#, c-format
msgid "Accept user"
msgstr "사용자 허가"
#: any.pm:635
#, c-format
msgid "Real name"
msgstr "실제 이름"
#: any.pm:636 standalone/drakbackup:1620
#, fuzzy, c-format
msgid "Login name"
msgstr "도메인 이름"
#: any.pm:639
#, c-format
msgid "Shell"
msgstr "명령 해석기"
#: any.pm:641
#, c-format
msgid "Icon"
msgstr "아이콘"
#: any.pm:688 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "자동로그인"
#: any.pm:689
#, fuzzy, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"자동으로 특정 사용자로서 로그인되도록 할 수 있습니다.\n"
"이런 특성을 원하세요?"
#: any.pm:690 help.pm:51
#, fuzzy, c-format
msgid "Do you want to use this feature?"
msgstr "aboot를 사용하시겠습니까?"
#: any.pm:690 help.pm:180 help.pm:285 help.pm:444 install_any.pm:887
#: interactive.pm:158 modules/interactive.pm:71 printer/printerdrake.pm:743
#: standalone/drakbackup:2501 standalone/drakgw:287 standalone/drakgw:288
#: standalone/drakgw:296 standalone/drakgw:306 standalone/draksec:55
#: standalone/harddrake2:306 standalone/net_applet:309 ugtk2.pm:907
#: wizards.pm:156 wizards2.pm:158
#, c-format
msgid "Yes"
msgstr "예"
#: any.pm:690 help.pm:180 help.pm:285 help.pm:313 help.pm:444
#: install_any.pm:887 interactive.pm:158 modules/interactive.pm:71
#: standalone/drakbackup:2501 standalone/draksec:54 standalone/harddrake2:307
#: standalone/net_applet:305 ugtk2.pm:907 wizards.pm:156 wizards2.pm:158
#, c-format
msgid "No"
msgstr "아니오"
#: any.pm:692
#, c-format
msgid "Choose the default user:"
msgstr "기본 사용자를 선택하세요:"
#: any.pm:693
#, c-format
msgid "Choose the window manager to run:"
msgstr "사용할 윈도우 매니저를 선택하세요:"
#: any.pm:706
#, c-format
msgid "Please choose a language to use."
msgstr "사용할 언어를 선택해 주세요."
#: any.pm:707
#, fuzzy, c-format
msgid "Language choice"
msgstr "미얀마"
#: any.pm:733
#, c-format
msgid ""
"Mandriva Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
"when your installation is complete and you restart your system."
msgstr "설치후 다른 다른 언어를 선택할수 있습니다."
#: any.pm:752 any.pm:773 help.pm:647
#, c-format
msgid "Use Unicode by default"
msgstr ""
#: any.pm:753 help.pm:647
#, fuzzy, c-format
msgid "All languages"
msgstr "언어 선택"
#: any.pm:794 help.pm:566 help.pm:855 install_steps_interactive.pm:947
#, c-format
msgid "Country / Region"
msgstr "국가"
#: any.pm:795
#, fuzzy, c-format
msgid "Please choose your country."
msgstr "어떤 종류의 마우스를 사용하십니까?"
#: any.pm:797
#, fuzzy, c-format
msgid "Here is the full list of available countries"
msgstr "지원되는 키보드 목록이 여기에 있습니다."
#: any.pm:798
#, fuzzy, c-format
msgid "Other Countries"
msgstr "기타 포트"
#: any.pm:798 help.pm:51 help.pm:409 help.pm:431 help.pm:647 help.pm:722
#: interactive.pm:394
#, c-format
msgid "Advanced"
msgstr "고급"
#: any.pm:806
#, c-format
msgid "Input method:"
msgstr ""
#: any.pm:807 install_any.pm:422 network/netconnect.pm:186
#: network/netconnect.pm:380 network/netconnect.pm:385
#: network/netconnect.pm:1377 printer/printerdrake.pm:105
#: printer/printerdrake.pm:2199
#, c-format
msgid "None"
msgstr "없음"
#: any.pm:921
#, c-format
msgid "No sharing"
msgstr "비공유"
#: any.pm:921
#, c-format
msgid "Allow all users"
msgstr "모든 사용자 허용"
#: any.pm:925
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
"and nautilus.\n"
"\n"
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
#: any.pm:937
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
"Windows."
msgstr ""
#: any.pm:940
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
"systems."
msgstr ""
#: any.pm:948
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr "NFS와 삼바 중, 어느 것을 이용하시겠습니까?"
#: any.pm:973
#, c-format
msgid "Launch userdrake"
msgstr "사용자드레이크 실행"
#: any.pm:973 printer/printerdrake.pm:3900 printer/printerdrake.pm:3903
#: printer/printerdrake.pm:3904 printer/printerdrake.pm:3905
#: printer/printerdrake.pm:5166 standalone/drakTermServ:295
#: standalone/drakbackup:4081 standalone/drakbug:126 standalone/drakfont:497
#: standalone/drakroam:242 standalone/net_monitor:123
#: standalone/printerdrake:547
#, c-format
msgid "Close"
msgstr "닫기"
#: any.pm:975
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user to this group."
msgstr ""
#: authentication.pm:24
#, c-format
msgid "Local file"
msgstr "로컬 파일"
#: authentication.pm:25
#, c-format
msgid "LDAP"
msgstr "LDAP"
#: authentication.pm:26
#, c-format
msgid "NIS"
msgstr "NIS"
#: authentication.pm:27
#, fuzzy, c-format
msgid "Smart Card"
msgstr "이더넷 카드"
#: authentication.pm:28 authentication.pm:153
#, c-format
msgid "Windows Domain"
msgstr "윈도우즈 도메인"
#: authentication.pm:29
#, fuzzy, c-format
msgid "Active Directory with SFU"
msgstr "모든 백업 복구"
#: authentication.pm:30
#, fuzzy, c-format
msgid "Active Directory with Winbind"
msgstr "모든 백업 복구"
#: authentication.pm:56
#, fuzzy, c-format
msgid "Local file:"
msgstr "지역 파일들:"
#: authentication.pm:56
#, c-format
msgid ""
"Use local for all authentication and information user tell in local file"
msgstr ""
#: authentication.pm:57
#, c-format
msgid "LDAP:"
msgstr "LDAP:"
#: authentication.pm:57
#, c-format
msgid ""
"Tells your computer to use LDAP for some or all authentication. LDAP "
"consolidates certain types of information within your organization."
msgstr ""
#: authentication.pm:58
#, c-format
msgid "NIS:"
msgstr "NIS:"
#: authentication.pm:58
#, c-format
msgid ""
"Allows you to run a group of computers in the same Network Information "
"Service domain with a common password and group file."
msgstr ""
#: authentication.pm:59
#, c-format
msgid "Windows Domain:"
msgstr "윈도우즈 도메인:"
#: authentication.pm:59
#, c-format
msgid ""
"Winbind allows the system to retrieve information and authenticate users in "
"a Windows domain."
msgstr ""
#: authentication.pm:60
#, fuzzy, c-format
msgid "Active Directory with SFU:"
msgstr "모든 백업 복구"
#: authentication.pm:60 authentication.pm:61
#, c-format
msgid ""
"Kerberos is a secure system for providing network authentication services."
msgstr ""
#: authentication.pm:61
#, fuzzy, c-format
msgid "Active Directory with Winbind:"
msgstr "모든 백업 복구"
#: authentication.pm:86
#, c-format
msgid "Authentication LDAP"
msgstr "인증 LDAP"
#: authentication.pm:87
#, c-format
msgid "LDAP Base dn"
msgstr "LDAP 기반 DN"
#: authentication.pm:88 share/compssUsers.pl:101
#, c-format
msgid "LDAP Server"
msgstr "LDAP 서버"
#: authentication.pm:101 fsedit.pm:21
#, c-format
msgid "simple"
msgstr "단순화"
#: authentication.pm:102
#, c-format
msgid "TLS"
msgstr "TLS"
#: authentication.pm:103
#, c-format
msgid "SSL"
msgstr "SSL"
#: authentication.pm:104
#, c-format
msgid "security layout (SASL/Kerberos)"
msgstr ""
#: authentication.pm:111 authentication.pm:149
#, fuzzy, c-format
msgid "Authentication Active Directory"
msgstr "사용자 인증"
#: authentication.pm:112 authentication.pm:151 diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Domain"
msgstr "도메인"
#: authentication.pm:114 diskdrake/dav.pm:63 help.pm:146
#: printer/printerdrake.pm:141 share/compssUsers.pl:81
#: standalone/drakTermServ:270
#, c-format
msgid "Server"
msgstr "서버"
#: authentication.pm:115
#, fuzzy, c-format
msgid "LDAP users database"
msgstr "데이터베이스"
#: authentication.pm:116
#, c-format
msgid "Use Anonymous BIND "
msgstr ""
#: authentication.pm:117
#, c-format
msgid "LDAP user allowed to browse the Active Directory"
msgstr ""
#: authentication.pm:118
#, fuzzy, c-format
msgid "Password for user"
msgstr "암호가 필요합니다."
#: authentication.pm:119
#, c-format
msgid "Encryption"
msgstr "암호화"
#: authentication.pm:130
#, c-format
msgid "Authentication NIS"
msgstr "인증 NIS"
#: authentication.pm:131
#, c-format
msgid "NIS Domain"
msgstr "NIS 도메인"
#: authentication.pm:132
#, c-format
msgid "NIS Server"
msgstr "NIS 서버"
#: authentication.pm:137
#, c-format
msgid ""
"For this to work for a W2K PDC, you will probably need to have the admin "
"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
"add and reboot the server.\n"
"You will also need the username/password of a Domain Admin to join the "
"machine to the Windows(TM) domain.\n"
"If networking is not yet enabled, Drakx will attempt to join the domain "
"after the network setup step.\n"
"Should this setup fail for some reason and domain authentication is not "
"working, run 'smbpasswd -j DOMAIN -U USER%%PASSWORD' using your Windows(tm) "
"Domain, and Admin Username/Password, after system boot.\n"
"The command 'wbinfo -t' will test whether your authentication secrets are "
"good."
msgstr ""
#: authentication.pm:149
#, c-format
msgid "Authentication Windows Domain"
msgstr "인증 윈도우즈 도메인"
#: authentication.pm:154
#, c-format
msgid "Domain Admin User Name"
msgstr "도메인 관리자 사용자명"
#: authentication.pm:155
#, c-format
msgid "Domain Admin Password"
msgstr ""
#: authentication.pm:156
#, c-format
msgid "Use Idmap for store UID/SID "
msgstr ""
#: authentication.pm:157
#, fuzzy, c-format
msgid "Default Idmap "
msgstr "기본값"
#: authentication.pm:171
#, c-format
msgid "Set administrator (root) password and network authentication methods"
msgstr ""
#: authentication.pm:172
#, fuzzy, c-format
msgid "Set administrator (root) password"
msgstr "root 암호 설정"
#: authentication.pm:173 standalone/drakvpn:1125
#, fuzzy, c-format
msgid "Authentication method"
msgstr "사용자 인증"
#. -PO: keep this short or else the buttons will not fit in the window
#: authentication.pm:178 help.pm:722
#, c-format
msgid "No password"
msgstr "암호 없음"
#: authentication.pm:184
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr "이 암호는 너무 단순합니다.( 적어도 %d 글자는 넘어야 합니다)"
#: authentication.pm:189 network/netconnect.pm:385 network/netconnect.pm:689
#: standalone/drakauth:24 standalone/drakauth:26 standalone/drakconnect:492
#, c-format
msgid "Authentication"
msgstr "사용자 인증"
#: authentication.pm:302
#, c-format
msgid "Can not use broadcast with no NIS domain"
msgstr "NIS 도메인 없이는 브로드케스트를 사용할 수 없습니다."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#: bootloader.pm:751
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
"\n"
"Choose an operating system from the list above or\n"
"wait for default boot.\n"
"\n"
msgstr ""
#: bootloader.pm:851
#, c-format
msgid "LILO with graphical menu"
msgstr "그래픽 메뉴 LILO"
#: bootloader.pm:852
#, c-format
msgid "LILO with text menu"
msgstr "텍스트 메뉴 LILO"
#: bootloader.pm:853
#, c-format
msgid "Grub"
msgstr "Grub"
#: bootloader.pm:854
#, c-format
msgid "Yaboot"
msgstr "Yaboot"
#: bootloader.pm:929
#, c-format
msgid "not enough room in /boot"
msgstr "/boot에 공간이 부족합니다."
#: bootloader.pm:1389
#, c-format
msgid "You can not install the bootloader on a %s partition\n"
msgstr "「%s」파티션에 부트로더를 설치할 수 없습니다.\n"
#: bootloader.pm:1423
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
"renumbered"
msgstr ""
#: bootloader.pm:1436
#, c-format
msgid ""
"The bootloader can not be installed correctly. You have to boot rescue and "
"choose \"%s\""
msgstr ""
#: bootloader.pm:1437
#, fuzzy, c-format
msgid "Re-install Boot Loader"
msgstr "부트로더 설치"
#: common.pm:139
#, c-format
msgid "KB"
msgstr "KB"
#: common.pm:139
#, c-format
msgid "MB"
msgstr "MB"
#: common.pm:139
#, c-format
msgid "GB"
msgstr "GB"
#: common.pm:147
#, c-format
msgid "TB"
msgstr "TB"
#: common.pm:155
#, c-format
msgid "%d minutes"
msgstr "%d 분"
#: common.pm:157
#, c-format
msgid "1 minute"
msgstr "1 분"
#: common.pm:159
#, c-format
msgid "%d seconds"
msgstr "%d 초"
#: common.pm:261
#, c-format
msgid "kdesu missing"
msgstr "kdesu가 없음"
#: common.pm:264
#, c-format
msgid "consolehelper missing"
msgstr ""
#: crypto.pm:14 crypto.pm:49 lang.pm:207 network/adsl_consts.pm:66
#: network/adsl_consts.pm:75 network/adsl_consts.pm:84
#, c-format
msgid "Austria"
msgstr "오스트리아"
#: crypto.pm:15 crypto.pm:48 lang.pm:208 standalone/drakxtv:48
#, c-format
msgid "Australia"
msgstr "오스트레일리아"
#: crypto.pm:16 crypto.pm:50 lang.pm:214 network/adsl_consts.pm:93
#: network/adsl_consts.pm:102 network/adsl_consts.pm:114
#: network/adsl_consts.pm:123 network/netconnect.pm:51
#, c-format
msgid "Belgium"
msgstr "벨기에"
#: crypto.pm:17 crypto.pm:51 lang.pm:223 network/adsl_consts.pm:132
#: network/adsl_consts.pm:143 network/adsl_consts.pm:152
#: network/adsl_consts.pm:161
#, c-format
msgid "Brazil"
msgstr "브라질"
#: crypto.pm:18 crypto.pm:52 lang.pm:230
#, c-format
msgid "Canada"
msgstr "캐나다"
#: crypto.pm:19 crypto.pm:75 lang.pm:235 network/adsl_consts.pm:881
#: network/adsl_consts.pm:890 network/adsl_consts.pm:901
#, c-format
msgid "Switzerland"
msgstr "스위스"
#: crypto.pm:20 lang.pm:242
#, c-format
msgid "Costa Rica"
msgstr "코스타리카"
#: crypto.pm:21 crypto.pm:53 lang.pm:248 network/adsl_consts.pm:368
#, c-format
msgid "Czech Republic"
msgstr "체코 공화국"
#: crypto.pm:22 crypto.pm:58 lang.pm:249 network/adsl_consts.pm:499
#: network/adsl_consts.pm:508
#, c-format
msgid "Germany"
msgstr "독일"
#: crypto.pm:23 crypto.pm:54 lang.pm:251 network/adsl_consts.pm:378
#, c-format
msgid "Denmark"
msgstr "덴마크"
#: crypto.pm:24 crypto.pm:55 lang.pm:256
#, c-format
msgid "Estonia"
msgstr "에스토니아"
#: crypto.pm:25 crypto.pm:73 lang.pm:260 network/adsl_consts.pm:749
#: network/adsl_consts.pm:760 network/adsl_consts.pm:771
#: network/adsl_consts.pm:782 network/adsl_consts.pm:791
#: network/adsl_consts.pm:800 network/adsl_consts.pm:809
#: network/adsl_consts.pm:818 network/adsl_consts.pm:827
#: network/adsl_consts.pm:836 network/adsl_consts.pm:845
#: network/adsl_consts.pm:854 network/adsl_consts.pm:863
#, c-format
msgid "Spain"
msgstr "스페인"
#: crypto.pm:26 crypto.pm:56 lang.pm:262 network/adsl_consts.pm:387
#, c-format
msgid "Finland"
msgstr "핀란드"
#: crypto.pm:27 crypto.pm:57 lang.pm:267 network/adsl_consts.pm:396
#: network/adsl_consts.pm:408 network/adsl_consts.pm:420
#: network/adsl_consts.pm:431 network/adsl_consts.pm:442
#: network/adsl_consts.pm:454 network/adsl_consts.pm:466
#: network/adsl_consts.pm:477 network/adsl_consts.pm:488
#: network/netconnect.pm:48
#, c-format
msgid "France"
msgstr "프랑스"
#: crypto.pm:28 crypto.pm:59 lang.pm:280 network/adsl_consts.pm:519
#, c-format
msgid "Greece"
msgstr "그리스"
#: crypto.pm:29 crypto.pm:60 lang.pm:291 network/adsl_consts.pm:528
#, c-format
msgid "Hungary"
msgstr "헝가리"
#: crypto.pm:30 crypto.pm:61 lang.pm:293 network/adsl_consts.pm:537
#: standalone/drakxtv:47
#, c-format
msgid "Ireland"
msgstr "아일랜드"
#: crypto.pm:31 crypto.pm:62 lang.pm:294 network/adsl_consts.pm:546
#, c-format
msgid "Israel"
msgstr "이스라엘"
#: crypto.pm:32 crypto.pm:63 lang.pm:300 network/adsl_consts.pm:557
#: network/adsl_consts.pm:569 network/adsl_consts.pm:580
#: network/adsl_consts.pm:589 network/netconnect.pm:50 standalone/drakxtv:47
#, c-format
msgid "Italy"
msgstr "이탈리아"
#: crypto.pm:33 crypto.pm:64 lang.pm:303
#, c-format
msgid "Japan"
msgstr "일본"
#: crypto.pm:34 crypto.pm:65 lang.pm:352 network/adsl_consts.pm:620
#: network/adsl_consts.pm:629 network/adsl_consts.pm:638
#: network/adsl_consts.pm:647 network/netconnect.pm:49
#, c-format
msgid "Netherlands"
msgstr "네덜란드"
#: crypto.pm:35 crypto.pm:67 lang.pm:353 network/adsl_consts.pm:656
#: network/adsl_consts.pm:661 network/adsl_consts.pm:666
#: network/adsl_consts.pm:671 network/adsl_consts.pm:676
#: network/adsl_consts.pm:681 network/adsl_consts.pm:686
#, c-format
msgid "Norway"
msgstr "노르웨이"
#: crypto.pm:36 crypto.pm:66 lang.pm:357
#, c-format
msgid "New Zealand"
msgstr "뉴질랜드"
#: crypto.pm:37 crypto.pm:68 lang.pm:365 network/adsl_consts.pm:693
#: network/adsl_consts.pm:704
#, c-format
msgid "Poland"
msgstr "폴란드"
#: crypto.pm:38 crypto.pm:69 lang.pm:370 network/adsl_consts.pm:716
#, c-format
msgid "Portugal"
msgstr "포르투갈"
#: crypto.pm:39 crypto.pm:70 lang.pm:376 network/adsl_consts.pm:725
#, c-format
msgid "Russia"
msgstr "러시아"
#: crypto.pm:40 crypto.pm:74 lang.pm:382 network/adsl_consts.pm:872
#, c-format
msgid "Sweden"
msgstr "스웨덴"
#: crypto.pm:41 crypto.pm:71 lang.pm:387
#, c-format
msgid "Slovakia"
msgstr "슬로바키아"
#: crypto.pm:42 crypto.pm:77 lang.pm:401 network/adsl_consts.pm:910
#, c-format
msgid "Thailand"
msgstr "태국"
#: crypto.pm:43 crypto.pm:76 lang.pm:411
#, c-format
msgid "Taiwan"
msgstr "대만"
#: crypto.pm:44 crypto.pm:72 lang.pm:430 standalone/drakxtv:49
#, c-format
msgid "South Africa"
msgstr "남아프리카"
#: crypto.pm:78 crypto.pm:108 lang.pm:416 network/netconnect.pm:52
#, c-format
msgid "United States"
msgstr "미국"
#: diskdrake/dav.pm:17
#, c-format
msgid ""
"WebDAV is a protocol that allows you to mount a web server's directory\n"
"locally, and treat it like a local filesystem (provided the web server is\n"
"configured as a WebDAV server). If you would like to add WebDAV mount\n"
"points, select \"New\"."
msgstr ""
#: diskdrake/dav.pm:25
#, c-format
msgid "New"
msgstr "새로 만들기"
#: diskdrake/dav.pm:61 diskdrake/interactive.pm:451 diskdrake/smbnfs_gtk.pm:75
#, c-format
msgid "Unmount"
msgstr "언마운트"
#: diskdrake/dav.pm:62 diskdrake/interactive.pm:448 diskdrake/smbnfs_gtk.pm:76
#, c-format
msgid "Mount"
msgstr "마운트"
#: diskdrake/dav.pm:64 diskdrake/interactive.pm:443
#: diskdrake/interactive.pm:668 diskdrake/interactive.pm:687
#: diskdrake/removable.pm:23 diskdrake/smbnfs_gtk.pm:79
#, c-format
msgid "Mount point"
msgstr "마운트 위치"
#: diskdrake/dav.pm:83
#, c-format
msgid "Please enter the WebDAV server URL"
msgstr "WebDAV 서버 URL을 입력하세요."
#: diskdrake/dav.pm:87
#, c-format
msgid "The URL must begin with http:// or https://"
msgstr ""
#: diskdrake/dav.pm:109
#, c-format
msgid "Server: "
msgstr "서버:"
#: diskdrake/dav.pm:110 diskdrake/interactive.pm:519
#: diskdrake/interactive.pm:1185 diskdrake/interactive.pm:1260
#, c-format
msgid "Mount point: "
msgstr "마운트 위치: "
#: diskdrake/dav.pm:111 diskdrake/interactive.pm:1267
#, c-format
msgid "Options: %s"
msgstr "옵션들: %s"
#: diskdrake/hd_gtk.pm:95
#, c-format
msgid "Please make a backup of your data first"
msgstr "먼저 데이터를 백업하세요."
#: diskdrake/hd_gtk.pm:98
#, c-format
msgid ""
"If you plan to use aboot, be careful to leave a free space (2048 sectors is "
"enough)\n"
"at the beginning of the disk"
msgstr ""
"만약 aboot를 사용할 계획이라면, 디스크의 시작부분에 충분한 공간 (2048 섹터 "
"면 충분함)\n"
"을 남기도록 주의하세요."
#: diskdrake/hd_gtk.pm:155 help.pm:530
#, c-format
msgid "Wizard"
msgstr "마법사"
#: diskdrake/hd_gtk.pm:188
#, c-format
msgid "Choose action"
msgstr "행동을 선택하세요"
#: diskdrake/hd_gtk.pm:192
#, fuzzy, c-format
msgid ""
"You have one big Microsoft Windows partition.\n"
"I suggest you first resize that partition\n"
"(click on it, then click on \"Resize\")"
msgstr ""
"하나의 큰 도스 파티션을 가지고 있습니다.\n"
"(일반적으로 마이크로소프트의 도스/윈도우즈에서 사용).\n"
"먼저 그 파티션의 크기를 조정할 것을 권장합니다.\n"
"(그것을 클릭한후, \"크기조정\"을 클릭하세요.)"
#: diskdrake/hd_gtk.pm:194
#, c-format
msgid "Please click on a partition"
msgstr "파티션을 클릭하세요"
#: diskdrake/hd_gtk.pm:208 diskdrake/smbnfs_gtk.pm:63 install_steps_gtk.pm:481
#: standalone/drakbackup:2936 standalone/drakbackup:2996
#, c-format
msgid "Details"
msgstr "상세설명"
#: diskdrake/hd_gtk.pm:254
#, c-format
msgid "No hard drives found"
msgstr "하드 디스크를 찾을 수 없습니다."
#: diskdrake/hd_gtk.pm:338
#, c-format
msgid "Ext2"
msgstr "Ext2"
#: diskdrake/hd_gtk.pm:338
#, c-format
msgid "Journalised FS"
msgstr "저널화 FS"
#: diskdrake/hd_gtk.pm:338
#, c-format
msgid "Swap"
msgstr "스왑"
#: diskdrake/hd_gtk.pm:338
#, c-format
msgid "SunOS"
msgstr "SunOS"
#: diskdrake/hd_gtk.pm:338
#, c-format
msgid "HFS"
msgstr "HFS"
#: diskdrake/hd_gtk.pm:338
#, c-format
msgid "Windows"
msgstr "창"
#: diskdrake/hd_gtk.pm:339 diskdrake/interactive.pm:1200
#, c-format
msgid "Empty"
msgstr "빈공간"
#: diskdrake/hd_gtk.pm:343
#, c-format
msgid "Filesystem types:"
msgstr "파일시스템 유형:"
#: diskdrake/hd_gtk.pm:360 diskdrake/hd_gtk.pm:362 diskdrake/hd_gtk.pm:368
#, c-format
msgid "Use ``%s'' instead"
msgstr "대신에 「%s」를 사용합니다"
#: diskdrake/hd_gtk.pm:360 diskdrake/interactive.pm:468
#, c-format
msgid "Create"
msgstr "생성"
#: diskdrake/hd_gtk.pm:360 diskdrake/hd_gtk.pm:368
#: diskdrake/interactive.pm:444 diskdrake/interactive.pm:621
#: diskdrake/removable.pm:25 diskdrake/removable.pm:48
#: standalone/harddrake2:107 standalone/harddrake2:116
#, c-format
msgid "Type"
msgstr "유형"
#. -PO: "Delete" is a button text and the translation has to be AS SHORT AS POSSIBLE
#: diskdrake/hd_gtk.pm:362 diskdrake/interactive.pm:452
#: standalone/drakperm:124 standalone/printerdrake:235
#, c-format
msgid "Delete"
msgstr "삭제"
#: diskdrake/hd_gtk.pm:368
#, c-format
msgid "Use ``Unmount'' first"
msgstr "「언마운트」를 먼저 사용하세요"
#: diskdrake/interactive.pm:191
#, c-format
msgid "Choose another partition"
msgstr "추가 파티션 선택"
#: diskdrake/interactive.pm:191
#, c-format
msgid "Choose a partition"
msgstr "파티션 선택"
#: diskdrake/interactive.pm:220
#, c-format
msgid "Exit"
msgstr "종료"
#: diskdrake/interactive.pm:253 help.pm:530
#, c-format
msgid "Undo"
msgstr "되돌리기"
#: diskdrake/interactive.pm:253
#, c-format
msgid "Toggle to normal mode"
msgstr "일반 모드로 전환"
#: diskdrake/interactive.pm:253
#, c-format
msgid "Toggle to expert mode"
msgstr "전문가 모드로 전환"
#: diskdrake/interactive.pm:272
#, c-format
msgid "Continue anyway?"
msgstr "계속하시겠습니까?"
#: diskdrake/interactive.pm:275
#, c-format
msgid ""
"You should format partition %s.\n"
"Otherwise no entry for mount point %s will be written in fstab.\n"
"Quit anyway?"
msgstr ""
#: diskdrake/interactive.pm:282
#, c-format
msgid "Quit without saving"
msgstr "저장하지 않고 종료하시겠습니까?"
#: diskdrake/interactive.pm:282
#, c-format
msgid "Quit without writing the partition table?"
msgstr "파티션을 기록하지 않고 종료하시겠습니까?"
#: diskdrake/interactive.pm:287
#, c-format
msgid "Do you want to save /etc/fstab modifications"
msgstr "「/etc/fstab」의 변경사항을 저장하시겠습니까?"
#: diskdrake/interactive.pm:294 install_steps_interactive.pm:329
#, c-format
msgid "You need to reboot for the partition table modifications to take place"
msgstr "파티션 테이블 변경사항을 적용하려면 리부팅을 해야 합니다."
#: diskdrake/interactive.pm:307 help.pm:530
#, c-format
msgid "Clear all"
msgstr "모두 삭제"
#: diskdrake/interactive.pm:308 help.pm:530
#, c-format
msgid "Auto allocate"
msgstr "자동 할당"
#: diskdrake/interactive.pm:309 help.pm:530 help.pm:566 help.pm:606
#: help.pm:855 install_steps_interactive.pm:122
#, c-format
msgid "More"
msgstr "추가 옵션"
#: diskdrake/interactive.pm:314
#, c-format
msgid "Hard drive information"
msgstr "하드 디스크 정보"
#: diskdrake/interactive.pm:346
#, c-format
msgid "All primary partitions are used"
msgstr "모든 주파티션이 사용중입니다."
#: diskdrake/interactive.pm:347
#, c-format
msgid "I can not add any more partitions"
msgstr "더이상 파티션을 추가할 수 없습니다."
#: diskdrake/interactive.pm:348
#, c-format
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
msgstr ""
"더 많은 파티션을 만드실려면, 확장 파티션을 만들수 있도록 주파티션 하나를 지우"
"세요."
#: diskdrake/interactive.pm:357
#, c-format
msgid "No supermount"
msgstr ""
#: diskdrake/interactive.pm:358
#, c-format
msgid "Supermount"
msgstr ""
#: diskdrake/interactive.pm:359
#, c-format
msgid "Supermount except for CDROM drives"
msgstr ""
#: diskdrake/interactive.pm:365 help.pm:530
#, c-format
msgid "Save partition table"
msgstr "파티션 테이블 저장"
#: diskdrake/interactive.pm:366 help.pm:530
#, c-format
msgid "Restore partition table"
msgstr "파티션 테이블 복구"
#: diskdrake/interactive.pm:367 help.pm:530
#, c-format
msgid "Rescue partition table"
msgstr "파티션 테이블 응급처치"
#: diskdrake/interactive.pm:369 help.pm:530
#, c-format
msgid "Reload partition table"
msgstr "파티션 테이블 다시 읽기"
#: diskdrake/interactive.pm:371
#, c-format
msgid "Removable media automounting"
msgstr "탈착식 미디어 자동 마운트"
#: diskdrake/interactive.pm:384 diskdrake/interactive.pm:410
#, c-format
msgid "Select file"
msgstr "파일을 선택하세요."
#: diskdrake/interactive.pm:396
#, c-format
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
msgstr ""
"백업 파티션 테이블 크기가 같지 않습니다.\n"
"계속 하시겠습니까?"
#: diskdrake/interactive.pm:425
#, c-format
msgid "Trying to rescue partition table"
msgstr "파티션 테이블 복구 시도 중..."
#: diskdrake/interactive.pm:431
#, c-format
msgid "Detailed information"
msgstr "자세한 정보"
#: diskdrake/interactive.pm:446 diskdrake/interactive.pm:762
#, c-format
msgid "Resize"
msgstr "크기조정"
#: diskdrake/interactive.pm:447
#, c-format
msgid "Format"
msgstr "포맷"
#: diskdrake/interactive.pm:449
#, c-format
msgid "Add to RAID"
msgstr "RAID에 추가"
#: diskdrake/interactive.pm:450
#, c-format
msgid "Add to LVM"
msgstr "LVM에 추가"
#: diskdrake/interactive.pm:453
#, c-format
msgid "Remove from RAID"
msgstr "RAID로부터 제거"
#: diskdrake/interactive.pm:454
#, c-format
msgid "Remove from LVM"
msgstr "LVM으로부터 제거"
#: diskdrake/interactive.pm:455
#, c-format
msgid "Modify RAID"
msgstr "RAID 수정"
#: diskdrake/interactive.pm:456
#, c-format
msgid "Use for loopback"
msgstr "루프백으로 사용"
#: diskdrake/interactive.pm:512
#, c-format
msgid "Create a new partition"
msgstr "새 파티션 만들기"
#: diskdrake/interactive.pm:515
#, c-format
msgid "Start sector: "
msgstr "시작 섹터: "
#: diskdrake/interactive.pm:517 diskdrake/interactive.pm:919
#, c-format
msgid "Size in MB: "
msgstr "크기(MB) :"
#: diskdrake/interactive.pm:518 diskdrake/interactive.pm:920
#, c-format
msgid "Filesystem type: "
msgstr "파일시스템 유형: "
#: diskdrake/interactive.pm:523
#, c-format
msgid "Preference: "
msgstr "사용자 정의"
#: diskdrake/interactive.pm:526
#, fuzzy, c-format
msgid "Logical volume name "
msgstr "지역 파일들"
#: diskdrake/interactive.pm:556
#, c-format
msgid ""
"You can not create a new partition\n"
"(since you reached the maximal number of primary partitions).\n"
"First remove a primary partition and create an extended partition."
msgstr ""
#: diskdrake/interactive.pm:586
#, c-format
msgid "Remove the loopback file?"
msgstr "루프백 파일을 제거합니까?"
#: diskdrake/interactive.pm:605
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr "%s의 파티션 유형을 변경후 이 파티션내의 모든 자료를 잃게 됩니다."
#: diskdrake/interactive.pm:617
#, c-format
msgid "Change partition type"
msgstr "파티션 유형 변경"
#: diskdrake/interactive.pm:618 diskdrake/removable.pm:47
#, c-format
msgid "Which filesystem do you want?"
msgstr "어떤 파일 시스템을 원하세요?"
#: diskdrake/interactive.pm:626
#, c-format
msgid "Switching from ext2 to ext3"
msgstr "EXT2에서 EXT3로 변경"
#: diskdrake/interactive.pm:655
#, fuzzy, c-format
msgid "Where do you want to mount the loopback file %s?"
msgstr "%s파일을 어디에 루프백으로 마운트 하시겠습니까?"
#: diskdrake/interactive.pm:656
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "장치 %s를 어디에 마운트 하시겠습니까?"
#: diskdrake/interactive.pm:661
#, c-format
msgid ""
"Can not unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
msgstr ""
"이 파티션은 loopback으로 설정되어 있으므로 마운트 포인트를 변경할수 없습니"
"다.\n"
"loopback을 먼저 제거하세요."
#: diskdrake/interactive.pm:686
#, c-format
msgid "Where do you want to mount %s?"
msgstr "%s를 어디에 마운트 하시겠습니까?"
#: diskdrake/interactive.pm:710 diskdrake/interactive.pm:793
#: install_interactive.pm:156 install_interactive.pm:188
#, c-format
msgid "Resizing"
msgstr "크기변경"
#: diskdrake/interactive.pm:710
#, c-format
msgid "Computing FAT filesystem bounds"
msgstr "도스 파일시스템의 범위 계산중"
#: diskdrake/interactive.pm:750
#, c-format
msgid "This partition is not resizeable"
msgstr "이 파티션은 크기변경이 허용되지 않습니다."
#: diskdrake/interactive.pm:755
#, c-format
msgid "All data on this partition should be backed-up"
msgstr "이 파티션의 모든 데이타를 백업하여야 합니다."
#: diskdrake/interactive.pm:757
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr "%s 파티션의 크기를 변경하면, 모든 데이타를 잃게됩니다."
#: diskdrake/interactive.pm:762
#, c-format
msgid "Choose the new size"
msgstr "새로운 크기를 선택해 주세요"
#: diskdrake/interactive.pm:763
#, c-format
msgid "New size in MB: "
msgstr "새로운 용량(MB):"
#: diskdrake/interactive.pm:806 install_interactive.pm:196
#, c-format
msgid ""
"To ensure data integrity after resizing the partition(s), \n"
"filesystem checks will be run on your next boot into Windows(TM)"
msgstr ""
#: diskdrake/interactive.pm:844
#, c-format
msgid "Choose an existing RAID to add to"
msgstr "추가할 기존 RAID를 선택하세요."
#: diskdrake/interactive.pm:846 diskdrake/interactive.pm:863
#, c-format
msgid "new"
msgstr "새로 만들기"
#: diskdrake/interactive.pm:861
#, c-format
msgid "Choose an existing LVM to add to"
msgstr "추가할 LVM를 선택하세요"
#: diskdrake/interactive.pm:867
#, c-format
msgid "LVM name?"
msgstr "LVM 이름?"
#: diskdrake/interactive.pm:904
#, c-format
msgid "This partition can not be used for loopback"
msgstr "이 파티션은 loopback으로 사용될 수 없습니다."
#: diskdrake/interactive.pm:917
#, c-format
msgid "Loopback"
msgstr "루프백"
#: diskdrake/interactive.pm:918
#, c-format
msgid "Loopback file name: "
msgstr "루프백 파일 이름: "
#: diskdrake/interactive.pm:923
#, c-format
msgid "Give a file name"
msgstr "파일 이름을 입력하세요."
#: diskdrake/interactive.pm:926
#, fuzzy, c-format
msgid "File is already used by another loopback, choose another one"
msgstr "다른 루프백이 이 파일을 사용하고 있습니다, 다른 것을 선택해 주세요."
#: diskdrake/interactive.pm:927
#, c-format
msgid "File already exists. Use it?"
msgstr "파일이 이미 존재합니다. 그것을 사용합니까?"
#: diskdrake/interactive.pm:950
#, c-format
msgid "Mount options"
msgstr "마운트 옵션들:"
#: diskdrake/interactive.pm:957
#, c-format
msgid "Various"
msgstr "다양한"
#: diskdrake/interactive.pm:1021
#, c-format
msgid "device"
msgstr "장치"
#: diskdrake/interactive.pm:1022
#, c-format
msgid "level"
msgstr "레벨"
#: diskdrake/interactive.pm:1023
#, fuzzy, c-format
msgid "chunk size in KiB"
msgstr "크기"
#: diskdrake/interactive.pm:1040
#, c-format
msgid "Be careful: this operation is dangerous."
msgstr "주의 : 이 조작은 위험합니다."
#: diskdrake/interactive.pm:1055
#, c-format
msgid "What type of partitioning?"
msgstr "어떤 유형의 파티션입니까?"
#: diskdrake/interactive.pm:1093
#, c-format
msgid "You'll need to reboot before the modification can take place"
msgstr "변경된것을 적용하기 위해선 리부팅이 필요합니다."
#: diskdrake/interactive.pm:1102
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "%s 드라이브의 파티션 테이블을 저장합니다."
#: diskdrake/interactive.pm:1115
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "%s 파티션을 포맷하면, 모든 데이타를 잃게 됩니다."
#: diskdrake/interactive.pm:1131
#, c-format
msgid "Move files to the new partition"
msgstr "새 파티션으로 파일 옴기기"
#: diskdrake/interactive.pm:1131
#, c-format
msgid "Hide files"
msgstr "파일 숨기기"
#: diskdrake/interactive.pm:1132
#, c-format
msgid ""
"Directory %s already contains data\n"
"(%s)"
msgstr ""
"디렉토리 %s에는 이미 데이터가 있습니다.\n"
"(%s)"
#: diskdrake/interactive.pm:1143
#, c-format
msgid "Moving files to the new partition"
msgstr "새 파티션으로 파일 옴기는 중"
#: diskdrake/interactive.pm:1147
#, c-format
msgid "Copying %s"
msgstr "%s 복사 중"
#: diskdrake/interactive.pm:1151
#, c-format
msgid "Removing %s"
msgstr "%s 제거 중"
#: diskdrake/interactive.pm:1165
#, c-format
msgid "partition %s is now known as %s"
msgstr ""
#: diskdrake/interactive.pm:1166
#, c-format
msgid "Partitions have been renumbered: "
msgstr ""
#: diskdrake/interactive.pm:1186 diskdrake/interactive.pm:1245
#, c-format
msgid "Device: "
msgstr "장치: "
#: diskdrake/interactive.pm:1187
#, fuzzy, c-format
msgid "Devfs name: "
msgstr "호스트명:"
#: diskdrake/interactive.pm:1188
#, c-format
msgid "Volume label: "
msgstr ""
#: diskdrake/interactive.pm:1189
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS 드라이브 문자: %s (단지 추측일 뿐임)\n"
#: diskdrake/interactive.pm:1193 diskdrake/interactive.pm:1202
#: diskdrake/interactive.pm:1263
#, c-format
msgid "Type: "
msgstr "유형: "
#: diskdrake/interactive.pm:1197 install_steps_gtk.pm:295
#, c-format
msgid "Name: "
msgstr "이름:"
#: diskdrake/interactive.pm:1204
#, c-format
msgid "Start: sector %s\n"
msgstr "시작: 섹터 %s\n"
#: diskdrake/interactive.pm:1205
#, c-format
msgid "Size: %s"
msgstr "크기: %s"
#: diskdrake/interactive.pm:1207
#, c-format
msgid ", %s sectors"
msgstr ", %s 섹터"
#: diskdrake/interactive.pm:1209
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "실린더 %d에서 %d까지\n"
#: diskdrake/interactive.pm:1210
#, c-format
msgid "Number of logical extents: %d\n"
msgstr ""
#: diskdrake/interactive.pm:1211
#, c-format
msgid "Formatted\n"
msgstr "포맷되었음\n"
#: diskdrake/interactive.pm:1212
#, c-format
msgid "Not formatted\n"
msgstr "포맷 안되었음\n"
#: diskdrake/interactive.pm:1213
#, c-format
msgid "Mounted\n"
msgstr "마운트 되었음\n"
#: diskdrake/interactive.pm:1214
#, c-format
msgid "RAID %s\n"
msgstr "레이드 장치 %s\n"
#: diskdrake/interactive.pm:1216
#, c-format
msgid ""
"Loopback file(s):\n"
" %s\n"
msgstr ""
"루프백 파일(들):\n"
" %s\n"
#: diskdrake/interactive.pm:1217
#, c-format
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
msgstr ""
"기본적으로 부팅되는 파티션\n"
" (lilo를 위한것이 아니라 MS-DOS boot를 위한것임)\n"
#: diskdrake/interactive.pm:1219
#, c-format
msgid "Level %s\n"
msgstr "%s 등급\n"
#: diskdrake/interactive.pm:1220
#, fuzzy, c-format
msgid "Chunk size %d KiB\n"
msgstr "크기 %s\n"
#: diskdrake/interactive.pm:1221
#, c-format
msgid "RAID-disks %s\n"
msgstr "레이드-디스크 %s\n"
#: diskdrake/interactive.pm:1223
#, c-format
msgid "Loopback file name: %s"
msgstr "루프백 파일 이름: %s"
#: diskdrake/interactive.pm:1226
#, fuzzy, c-format
msgid ""
"\n"
"Chances are, this partition is\n"
"a Driver partition. You should\n"
"probably leave it alone.\n"
msgstr ""
"\n"
"이 파티션은 드라이버 파티션입니다.\n"
"그냥 두는 것이 좋습니다.\n"
#: diskdrake/interactive.pm:1229
#, c-format
msgid ""
"\n"
"This special Bootstrap\n"
"partition is for\n"
"dual-booting your system.\n"
msgstr ""
"\n"
"이 특별한 부트스트랩\n"
"파티션은 시스템을 \n"
"듀얼 부팅하기 위한 것입니다.\n"
#: diskdrake/interactive.pm:1246
#, c-format
msgid "Read-only"
msgstr "읽기 전용"
#: diskdrake/interactive.pm:1247
#, c-format
msgid "Size: %s\n"
msgstr "크기: %s\n"
#: diskdrake/interactive.pm:1248
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "위치: %s 실린터, %s 헤드, %s 섹터\n"
#: diskdrake/interactive.pm:1249
#, c-format
msgid "Info: "
msgstr "정보: "
#: diskdrake/interactive.pm:1250
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-디스크 %s\n"
#: diskdrake/interactive.pm:1251
#, c-format
msgid "Partition table type: %s\n"
msgstr "파티션 테이블 유형: %s\n"
#: diskdrake/interactive.pm:1252
#, fuzzy, c-format
msgid "on channel %d id %d\n"
msgstr "%d 버스상에서 ID %d\n"
#: diskdrake/interactive.pm:1287
#, c-format
msgid "Filesystem encryption key"
msgstr "파일시스템 암호화 키"
#: diskdrake/interactive.pm:1288
#, c-format
msgid "Choose your filesystem encryption key"
msgstr "파일 시스템 암호화 키 선택"
#: diskdrake/interactive.pm:1291
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr "이 암호화 키는 너무 단순합니다.( 적어도 %d 글자는 넘어야 합니다)"
#: diskdrake/interactive.pm:1292
#, c-format
msgid "The encryption keys do not match"
msgstr "암호화 키가 일치하지 않습니다."
#: diskdrake/interactive.pm:1295 network/netconnect.pm:1222
#: standalone/drakconnect:430
#, c-format
msgid "Encryption key"
msgstr "암호화 키"
#: diskdrake/interactive.pm:1296
#, c-format
msgid "Encryption key (again)"
msgstr "암호화 키 (확인)"
#: diskdrake/interactive.pm:1297 standalone/drakvpn:1031
#: standalone/drakvpn:1116
#, fuzzy, c-format
msgid "Encryption algorithm"
msgstr "사용자 인증"
#: diskdrake/removable.pm:46
#, c-format
msgid "Change type"
msgstr "유형 변경"
#: diskdrake/smbnfs_gtk.pm:163
#, c-format
msgid "Can not login using username %s (bad password?)"
msgstr ""
#: diskdrake/smbnfs_gtk.pm:167 diskdrake/smbnfs_gtk.pm:176
#, c-format
msgid "Domain Authentication Required"
msgstr "도메인 인증이 필요합니다."
#: diskdrake/smbnfs_gtk.pm:168
#, c-format
msgid "Which username"
msgstr "사용할 아이디"
#: diskdrake/smbnfs_gtk.pm:168
#, c-format
msgid "Another one"
msgstr "또 다른 것"
#: diskdrake/smbnfs_gtk.pm:177
#, c-format
msgid ""
"Please enter your username, password and domain name to access this host."
msgstr ""
#: diskdrake/smbnfs_gtk.pm:179 standalone/drakbackup:3487
#, c-format
msgid "Username"
msgstr "사용자명"
#: diskdrake/smbnfs_gtk.pm:205
#, c-format
msgid "Search servers"
msgstr "서버 검색"
#: diskdrake/smbnfs_gtk.pm:210
#, fuzzy, c-format
msgid "Search new servers"
msgstr "서버 검색"
#: do_pkgs.pm:16 do_pkgs.pm:31
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "팩키지 %s가 필요합니다. 설치하겠습니까?"
#: do_pkgs.pm:21 do_pkgs.pm:36
#, c-format
msgid "Mandatory package %s is missing"
msgstr "필수 팩키지 %s가 없습니다."
#: do_pkgs.pm:182
#, c-format
msgid "Installing packages..."
msgstr "팩키지 설치 중..."
#: do_pkgs.pm:227
#, fuzzy, c-format
msgid "Removing packages..."
msgstr "%s 제거 중"
#: fs.pm:487 fs.pm:536
#, fuzzy, c-format
msgid "Mounting partition %s"
msgstr "%s 파티션 포맷중"
#: fs.pm:488 fs.pm:537
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
#: fs.pm:508 fs.pm:515
#, fuzzy, c-format
msgid "Checking %s"
msgstr "%s 복사 중"
#: fs.pm:553 partition_table.pm:391
#, c-format
msgid "error unmounting %s: %s"
msgstr "%s를 언마운트중 오류발생: %s"
#: fs.pm:585
#, fuzzy, c-format
msgid "Enabling swap partition %s"
msgstr "%s 파티션 포맷중"
#: fs/format.pm:44 fs/format.pm:51
#, c-format
msgid "Formatting partition %s"
msgstr "%s 파티션 포맷중"
#: fs/format.pm:48
#, c-format
msgid "Creating and formatting file %s"
msgstr "%s 파일를 생성하고 포맷"
#: fs/format.pm:83
#, c-format
msgid "I do not know how to format %s in type %s"
msgstr "%s는 %s 유형이므로 포맷할수 없습니다."
#: fs/format.pm:88 fs/format.pm:90
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s 포맷 실패(드라이브 %s)"
#: fs/mount_options.pm:112
#, c-format
msgid ""
"Do not update inode access times on this file system\n"
"(e.g, for faster access on the news spool to speed up news servers)."
msgstr ""
#: fs/mount_options.pm:115
#, c-format
msgid ""
"Can only be mounted explicitly (i.e.,\n"
"the -a option will not cause the file system to be mounted)."
msgstr ""
#: fs/mount_options.pm:118
#, c-format
msgid "Do not interpret character or block special devices on the file system."
msgstr ""
#: fs/mount_options.pm:120
#, c-format
msgid ""
"Do not allow execution of any binaries on the mounted\n"
"file system. This option might be useful for a server that has file systems\n"
"containing binaries for architectures other than its own."
msgstr ""
#: fs/mount_options.pm:124
#, c-format
msgid ""
"Do not allow set-user-identifier or set-group-identifier\n"
"bits to take effect. (This seems safe, but is in fact rather unsafe if you\n"
"have suidperl(1) installed.)"
msgstr ""
#: fs/mount_options.pm:128
#, c-format
msgid "Mount the file system read-only."
msgstr ""
#: fs/mount_options.pm:130
#, c-format
msgid "All I/O to the file system should be done synchronously."
msgstr ""
#: fs/mount_options.pm:134
#, c-format
msgid ""
"Allow an ordinary user to mount the file system. The\n"
"name of the mounting user is written to mtab so that he can unmount the "
"file\n"
"system again. This option implies the options noexec, nosuid, and nodev\n"
"(unless overridden by subsequent options, as in the option line\n"
"user,exec,dev,suid )."
msgstr ""
#: fs/mount_options.pm:142
#, c-format
msgid "Give write access to ordinary users"
msgstr ""
#: fs/mount_options.pm:144
#, c-format
msgid "Give read-only access to ordinary users"
msgstr ""
#: fs/type.pm:372
#, c-format
msgid "You can not use JFS for partitions smaller than 16MB"
msgstr "16MB 미만의 파티션에는 JFS 파일 시스템을 사용할 수 없습니다."
#: fs/type.pm:373
#, c-format
msgid "You can not use ReiserFS for partitions smaller than 32MB"
msgstr "32MB 미만의 파티션에는 ReiserFS 파일 시스템을 사용할 수 없습니다."
#: fsedit.pm:25
#, c-format
msgid "with /usr"
msgstr ""
#: fsedit.pm:30
#, c-format
msgid "server"
msgstr "서버"
#: fsedit.pm:183
#, fuzzy, c-format
msgid ""
"I can not read the partition table of device %s, it's too corrupted for me :"
"(\n"
"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
"The other solution is to not allow DrakX to modify the partition table.\n"
"(the error is %s)\n"
"\n"
"Do you agree to lose all the partitions?\n"
msgstr ""
"하드 디스크의 파티션 테이블을 읽을수 없습니다. 너무 손상되어 있습니다:(\n"
"문제있는 파티션을 비우기위한 시도를 할 수 있습니다.(모든 데이터가 손실됩니"
"다!)\n"
"다른 해결책은 DrakX가 파티션 테이블을 변경하지 못하게 하는 것입니다.\n"
"(오류는 %s 입니다.)\n"
"\n"
"파티션들을 잃어도 좋습니까?\n"
#: fsedit.pm:400
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "마운트 위치는 반드시 「/」로 시작하여야 합니다."
#: fsedit.pm:401
#, fuzzy, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr "프린터 이름에는 문자, 숫자 그리고 밑줄(Underscore)만 있어야 합니다."
#: fsedit.pm:402
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "마운트 위치 %s가 이미 존재합니다.\n"
#: fsedit.pm:404
#, fuzzy, c-format
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
"Please be sure to add a /boot partition"
msgstr ""
"소프트웨어 RAID 파티션을 루트(/)로 지정했습니다.\n"
"어떠한 부트로더도 /boot 파티션 없이는 이것을 처리하지 못합니다.\n"
"그러므로 /boot 파티션을 추가하는 것을 잊지 마세요."
#: fsedit.pm:407
#, c-format
msgid "You can not use a LVM Logical Volume for mount point %s"
msgstr " %s 마운트 포인트로 LVM 논리볼륨을 사용할 수는 없습니다. "
#: fsedit.pm:409
#, fuzzy, c-format
msgid ""
"You've selected a LVM Logical Volume as root (/).\n"
"The bootloader is not able to handle this without a /boot partition.\n"
"Please be sure to add a /boot partition"
msgstr ""
"소프트웨어 RAID 파티션을 루트(/)로 지정했습니다.\n"
"어떠한 부트로더도 /boot 파티션 없이는 이것을 처리하지 못합니다.\n"
"그러므로 /boot 파티션을 추가하는 것을 잊지 마세요."
#: fsedit.pm:412
#, c-format
msgid ""
"You may not be able to install lilo (since lilo does not handle a LV on "
"multiple PVs)"
msgstr ""
#: fsedit.pm:415 fsedit.pm:417
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr "이 디렉토리는 루트 파일시스템 안에 있어야 합니다."
#: fsedit.pm:419 fsedit.pm:421
#, c-format
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
"point\n"
msgstr ""
"이 마운트 위치에는 트루 파일시스템 (ext2, reiserfs, xfs, jfs)이 필요합니다.\n"
#: fsedit.pm:423
#, c-format
msgid "You can not use an encrypted file system for mount point %s"
msgstr " %s 마운트 위치에는 암호화 파일시스템을 사용할 수 없습니다. "
#: fsedit.pm:484
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr "자동할당하기에는 공간이 합니다."
#: fsedit.pm:486
#, c-format
msgid "Nothing to do"
msgstr "할 일 없음."
#: harddrake/data.pm:62 install_any.pm:1639
#, c-format
msgid "Floppy"
msgstr "플로피"
#: harddrake/data.pm:72
#, c-format
msgid "Zip"
msgstr "짚"
#: harddrake/data.pm:88 install_any.pm:1640
#, c-format
msgid "Hard Disk"
msgstr "하드디스크"
#: harddrake/data.pm:97 install_any.pm:1641
#, c-format
msgid "CDROM"
msgstr "CDROM"
#: harddrake/data.pm:107
#, c-format
msgid "CD/DVD burners"
msgstr ""
#: harddrake/data.pm:117
#, c-format
msgid "DVD-ROM"
msgstr "DVD-ROM"
#: harddrake/data.pm:127 standalone/drakbackup:2034
#, c-format
msgid "Tape"
msgstr "테입"
#: harddrake/data.pm:136
#, fuzzy, c-format
msgid "Videocard"
msgstr "비디오 모드"
#: harddrake/data.pm:146
#, c-format
msgid "DVB card"
msgstr ""
#: harddrake/data.pm:154
#, fuzzy, c-format
msgid "Tvcard"
msgstr "TV 카드"
#: harddrake/data.pm:163
#, fuzzy, c-format
msgid "Other MultiMedia devices"
msgstr "다른 매체"
#: harddrake/data.pm:172
#, c-format
msgid "Soundcard"
msgstr "사운드카드"
#: harddrake/data.pm:185
#, c-format
msgid "Webcam"
msgstr ""
#: harddrake/data.pm:199
#, c-format
msgid "Processors"
msgstr ""
#: harddrake/data.pm:209
#, fuzzy, c-format
msgid "ISDN adapters"
msgstr "내장 ISDN 카드"
#: harddrake/data.pm:220
#, c-format
msgid "USB sound devices"
msgstr ""
#: harddrake/data.pm:229
#, c-format
msgid "Radio cards"
msgstr ""
#: harddrake/data.pm:238
#, c-format
msgid "ATM network cards"
msgstr ""
#: harddrake/data.pm:247
#, c-format
msgid "WAN network cards"
msgstr ""
#: harddrake/data.pm:256
#, c-format
msgid "Bluetooth devices"
msgstr ""
#: harddrake/data.pm:265
#, fuzzy, c-format
msgid "Ethernetcard"
msgstr "이더넷 카드"
#: harddrake/data.pm:283 network/netconnect.pm:575
#, c-format
msgid "Modem"
msgstr "모뎀"
#: harddrake/data.pm:293
#, c-format
msgid "ADSL adapters"
msgstr ""
#: harddrake/data.pm:307
#, c-format
msgid "Memory"
msgstr "메모리"
#: harddrake/data.pm:316
#, c-format
msgid "AGP controllers"
msgstr ""
#: harddrake/data.pm:325 help.pm:186 help.pm:855
#: install_steps_interactive.pm:979
#, c-format
msgid "Printer"
msgstr "프린터"
#. -PO: these are joysticks controllers:
#: harddrake/data.pm:339
#, c-format
msgid "Game port controllers"
msgstr ""
#: harddrake/data.pm:348
#, c-format
msgid "Joystick"
msgstr ""
#: harddrake/data.pm:358
#, c-format
msgid "SATA controllers"
msgstr ""
#: harddrake/data.pm:367
#, c-format
msgid "RAID controllers"
msgstr ""
#: harddrake/data.pm:376
#, c-format
msgid "(E)IDE/ATA controllers"
msgstr ""
#: harddrake/data.pm:385
#, c-format
msgid "Firewire controllers"
msgstr ""
#: harddrake/data.pm:394
#, c-format
msgid "PCMCIA controllers"
msgstr ""
#: harddrake/data.pm:403
#, c-format
msgid "SCSI controllers"
msgstr "SCSI 컨트롤러"
#: harddrake/data.pm:412
#, c-format
msgid "USB controllers"
msgstr ""
#: harddrake/data.pm:421
#, fuzzy, c-format
msgid "USB ports"
msgstr "프린터 없음"
#: harddrake/data.pm:430
#, c-format
msgid "SMBus controllers"
msgstr ""
#: harddrake/data.pm:439
#, c-format
msgid "Bridges and system controllers"
msgstr ""
#: harddrake/data.pm:448 help.pm:855 install_steps_interactive.pm:118
#: install_steps_interactive.pm:939 standalone/keyboarddrake:29
#, c-format
msgid "Keyboard"
msgstr "키보드"
#: harddrake/data.pm:461
#, c-format
msgid "Tablet and touchscreen"
msgstr ""
#: harddrake/data.pm:469 help.pm:855 install_steps_interactive.pm:972
#, c-format
msgid "Mouse"
msgstr "마우스"
#: harddrake/data.pm:483
#, fuzzy, c-format
msgid "UPS"
msgstr "CUPS"
#: harddrake/data.pm:492
#, c-format
msgid "Scanner"
msgstr "스캐너"
#: harddrake/data.pm:502 standalone/harddrake2:440
#, fuzzy, c-format
msgid "Unknown/Others"
msgstr "알 수 없음|일반"
#: harddrake/data.pm:530
#, c-format
msgid "cpu # "
msgstr ""
#: harddrake/sound.pm:191 standalone/drakconnect:170
#: standalone/drakconnect:648
#, c-format
msgid "Please Wait... Applying the configuration"
msgstr "기다려 주세요... 설정을 적용하고 있습니다."
#: harddrake/sound.pm:227
#, c-format
msgid "No alternative driver"
msgstr ""
#: harddrake/sound.pm:228
#, c-format
msgid ""
"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
"currently uses \"%s\""
msgstr ""
#: harddrake/sound.pm:234
#, c-format
msgid "Sound configuration"
msgstr "사운드 설정"
#: harddrake/sound.pm:236
#, c-format
msgid ""
"Here you can select an alternative driver (either OSS or ALSA) for your "
"sound card (%s)."
msgstr ""
#. -PO: here the first %s is either "OSS" or "ALSA",
#. -PO: the second %s is the name of the current driver
#. -PO: and the third %s is the name of the default driver
#: harddrake/sound.pm:241
#, c-format
msgid ""
"\n"
"\n"
"Your card currently use the %s\"%s\" driver (default driver for your card is "
"\"%s\")"
msgstr ""
#: harddrake/sound.pm:243
#, c-format
msgid ""
"OSS (Open Sound System) was the first sound API. It's an OS independent "
"sound API (it's available on most UNIX(tm) systems) but it's a very basic "
"and limited API.\n"
"What's more, OSS drivers all reinvent the wheel.\n"
"\n"
"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
"which\n"
"supports quite a large range of ISA, USB and PCI cards.\n"
"\n"
"It also provides a much higher API than OSS.\n"
"\n"
"To use alsa, one can either use:\n"
"- the old compatibility OSS api\n"
"- the new ALSA api that provides many enhanced features but requires using "
"the ALSA library.\n"
msgstr ""
#: harddrake/sound.pm:257 harddrake/sound.pm:342 standalone/drakups:146
#, c-format
msgid "Driver:"
msgstr "드라이버:"
#: harddrake/sound.pm:262
#, c-format
msgid "Trouble shooting"
msgstr ""
#: harddrake/sound.pm:270 keyboard.pm:391 lang.pm:1072
#: network/ndiswrapper.pm:95 network/netconnect.pm:561
#: printer/printerdrake.pm:1206 printer/printerdrake.pm:2230
#: printer/printerdrake.pm:2316 printer/printerdrake.pm:2362
#: printer/printerdrake.pm:2429 printer/printerdrake.pm:2464
#: printer/printerdrake.pm:2773 printer/printerdrake.pm:2780
#: printer/printerdrake.pm:3740 printer/printerdrake.pm:4069
#: printer/printerdrake.pm:4193 printer/printerdrake.pm:5314
#: standalone/drakTermServ:326 standalone/drakTermServ:1136
#: standalone/drakTermServ:1197 standalone/drakTermServ:1862
#: standalone/drakbackup:497 standalone/drakbackup:596 standalone/drakboot:125
#: standalone/drakclock:224 standalone/drakconnect:1007
#: standalone/drakfloppy:291 standalone/drakups:27 standalone/harddrake2:477
#: standalone/scannerdrake:51 standalone/scannerdrake:940
#, c-format
msgid "Warning"
msgstr "경고"
#: harddrake/sound.pm:270
#, c-format
msgid ""
"The old \"%s\" driver is blacklisted.\n"
"\n"
"It has been reported to oops the kernel on unloading.\n"
"\n"
"The new \"%s\" driver will only be used on next bootstrap."
msgstr ""
#: harddrake/sound.pm:278
#, c-format
msgid "No open source driver"
msgstr ""
#: harddrake/sound.pm:279
#, c-format
msgid ""
"There's no free driver for your sound card (%s), but there's a proprietary "
"driver at \"%s\"."
msgstr ""
#: harddrake/sound.pm:282
#, c-format
msgid "No known driver"
msgstr ""
#: harddrake/sound.pm:283
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr ""
#: harddrake/sound.pm:287
#, c-format
msgid "Unknown driver"
msgstr "알 수 없는 드라이버"
#: harddrake/sound.pm:288
#, c-format
msgid "Error: The \"%s\" driver for your sound card is unlisted"
msgstr ""
#: harddrake/sound.pm:302
#, c-format
msgid "Sound trouble shooting"
msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: harddrake/sound.pm:305
#, c-format
msgid ""
"The classic bug sound tester is to run the following commands:\n"
"\n"
"\n"
"- \"lspcidrake -v | fgrep AUDIO\" will tell you which driver your card uses\n"
"by default\n"
"\n"
"- \"grep sound-slot /etc/modules.conf\" will tell you what driver it\n"
"currently uses\n"
"\n"
"- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
"loaded or not\n"
"\n"
"- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" will\n"
"tell you if sound and alsa services're configured to be run on\n"
"initlevel 3\n"
"\n"
"- \"aumix -q\" will tell you if the sound volume is muted or not\n"
"\n"
"- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound card.\n"
msgstr ""
#: harddrake/sound.pm:331
#, c-format
msgid "Let me pick any driver"
msgstr ""
#: harddrake/sound.pm:334
#, c-format
msgid "Choosing an arbitrary driver"
msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: harddrake/sound.pm:337
#, c-format
msgid ""
"If you really think that you know which driver is the right one for your "
"card\n"
"you can pick one in the above list.\n"
"\n"
"The current driver for your \"%s\" sound card is \"%s\" "
msgstr ""
#: harddrake/v4l.pm:14 standalone/net_applet:74 standalone/net_applet:75
#: standalone/net_applet:77
#, c-format
msgid "Auto-detect"
msgstr "자동 검색"
#: harddrake/v4l.pm:72 harddrake/v4l.pm:235
#, c-format
msgid "Unknown|Generic"
msgstr "알 수 없음|일반"
#: harddrake/v4l.pm:105
#, c-format
msgid "Unknown|CPH05X (bt878) [many vendors]"
msgstr ""
#: harddrake/v4l.pm:106
#, c-format
msgid "Unknown|CPH06X (bt878) [many vendors]"
msgstr ""
#: harddrake/v4l.pm:309
#, c-format
msgid ""
"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
"detect the rights parameters.\n"
"If your card is misdetected, you can force the right tuner and card types "
"here. Just select your tv card parameters if needed."
msgstr ""
#: harddrake/v4l.pm:312
#, c-format
msgid "Card model:"
msgstr "카드 모델:"
#: harddrake/v4l.pm:313
#, c-format
msgid "Tuner type:"
msgstr "튜너 유형:"
#: harddrake/v4l.pm:314
#, c-format
msgid "Number of capture buffers:"
msgstr "캡쳐 버퍼 수:"
#: harddrake/v4l.pm:314
#, c-format
msgid "number of capture buffers for mmap'ed capture"
msgstr ""
#: harddrake/v4l.pm:316
#, c-format
msgid "PLL setting:"
msgstr "PLL 설정:"
#: harddrake/v4l.pm:317
#, c-format
msgid "Radio support:"
msgstr "라디오 지원:"
#: harddrake/v4l.pm:317
#, c-format
msgid "enable radio support"
msgstr "라디오 지원"
#: help.pm:11
#, fuzzy, c-format
msgid ""
"Before continuing, you should carefully read the terms of the license. It\n"
"covers the entire Mandriva Linux distribution. If you agree with all the\n"
"terms it contains, check the \"%s\" box. If not, clicking on the \"%s\"\n"
"button will reboot your computer."
msgstr ""
"더 진행하기 전에 사용자 계약서를 자세하게 읽어 보세요.\n"
"사용자 계약서는 전체 맨드리바 리눅스 배포본을 포괄하는 내용이며,\n"
"만약 동의하지 않으신다면 「거부」버튼을 누르세요. 거부 버튼은 현재 설치를\n"
"즉각 종료하게 합니다. 설치를 계속하고 싶다면 「동의」버튼을 누르세요."
#: help.pm:14 install_steps_gtk.pm:551 install_steps_interactive.pm:92
#: install_steps_interactive.pm:731 standalone/drakautoinst:216
#, c-format
msgid "Accept"
msgstr "동의"
#: help.pm:17
#, c-format
msgid ""
"GNU/Linux is a multi-user system which means each user can have his or her\n"
"own preferences, own files and so on. But unlike \"root\", who is the\n"
"system administrator, the users you add at this point will not be "
"authorized\n"
"to change anything except their own files and their own configurations,\n"
"protecting the system from unintentional or malicious changes which could\n"
"impact on the system as a whole. You'll have to create at least one regular\n"
"user for yourself -- this is the account which you should use for routine,\n"
"day-to-day usage. Although it's very easy to log in as \"root\" to do\n"
"anything and everything, it may also be very dangerous! A very simple\n"
"mistake could mean that your system will not work any more. If you make a\n"
"serious mistake as a regular user, the worst that can happen is that you'll\n"
"lose some information, but you will not affect the entire system.\n"
"\n"
"The first field asks you for a real name. Of course, this is not mandatory\n"
"-- you can actually enter whatever you like. DrakX will use the first word\n"
"you type in this field and copy it to the \"%s\" one, which is the name\n"
"this user will enter to log onto the system. If you like, you may override\n"
"the default and change the user name. The next step is to enter a password.\n"
"From a security point of view, a non-privileged (regular) user password is\n"
"not as crucial as the \"root\" password, but that's no reason to neglect it\n"
"by making it blank or too simple: after all, your files could be the ones\n"
"at risk.\n"
"\n"
"Once you click on \"%s\", you can add other users. Add a user for each one\n"
"of your friends, your father, your sister, etc. Click \"%s\" when you're\n"
"finished adding users.\n"
"\n"
"Clicking the \"%s\" button allows you to change the default \"shell\" for\n"
"that user (bash by default).\n"
"\n"
"When you're finished adding users, you'll be asked to choose a user who\n"
"will be automatically logged into the system when the computer boots up. If\n"
"you're interested in that feature (and do not care much about local\n"
"security), choose the desired user and window manager, then click on\n"
"\"%s\". If you're not interested in this feature, uncheck the \"%s\" box."
msgstr ""
#: help.pm:51 printer/printerdrake.pm:1662 printer/printerdrake.pm:1783
#, c-format
msgid "User name"
msgstr "사용자명"
#: help.pm:51 help.pm:431 help.pm:681 install_steps_gtk.pm:232
#: install_steps_gtk.pm:693 interactive.pm:433 interactive/newt.pm:321
#: network/netconnect.pm:335 network/tools.pm:191 printer/printerdrake.pm:3678
#: standalone/drakTermServ:383 standalone/drakbackup:3938
#: standalone/drakbackup:4032 standalone/drakbackup:4049
#: standalone/drakbackup:4067 ugtk2.pm:506
#, c-format
msgid "Next"
msgstr "다음"
#: help.pm:54
#, fuzzy, c-format
msgid ""
"Listed here are the existing Linux partitions detected on your hard drive.\n"
"You can keep the choices made by the wizard, since they are good for most\n"
"common installations. If you make any changes, you must at least define a\n"
"root partition (\"/\"). Do not choose too small a partition or you will not\n"
"be able to install enough software. If you want to store your data on a\n"
"separate partition, you will also need to create a \"/home\" partition\n"
"(only possible if you have more than one Linux partition available).\n"
"\n"
"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
"\n"
"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
"\"sd\" if it is a SCSI hard drive.\n"
"\n"
"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
"hard drives:\n"
"\n"
" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
"\n"
" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
"\n"
" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
"\n"
" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
"\n"
"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
"\"second lowest SCSI ID\", etc."
msgstr ""
"선택된 하드디스크상의 기존 리눅스 파티션이 위에 열거되어 있습니다.\n"
"마법사에 의해 이미 설정된 사항을 보존할 수도 있으며, 이는 대부분의 일반\n"
"설치에 적절한 설정입니다. 만약 직접 변경하시겠다면, 최소한 루트 파티션"
"(「/」)\n"
"은 반드시 지정해야 합니다. 너무 작은 파티션을 선택하지는 마세요. 충분한 소프"
"트웨어\n"
"를 설치하지 못하는 수가 있습니다. 만약 개인 데이터가 별도의 파티션에 저장되도"
"록\n"
"하고 싶다면, 「/home」파티션을 별도로 만드세요.(오직 리눅스 파티션이 둘 이상"
"일\n"
"경우에만 가능합니다.)\n"
"\n"
"각 파티션은 다음과 같이 열거됩니다: 「이름」,「용량」.\n"
"\n"
"「이름」영역의 구조: 「하드디스크 유형」,「하드디스크 번호」,\n"
"「파티션 번호」(가령, 「hda1」).\n"
"\n"
"「하드디스크 유형」은, IDE 디스크일 경우에는 「hd」이며,\n"
"SCSI 디스크일 경우에는 「sd」입니다.\n"
"\n"
"「하드디스크 번호」는 항상 「hd」또는 「sd」뒤에 오는 문자입니다.\n"
"IDE 하드디스크의 경우:\n"
"\n"
" ○ 「a」는 「주 IDE 제어기상의 주 디스크」를 의미합니다.\n"
"\n"
" ○ 「b」는 「주 IDE 제어기상의 보조 디스크」를 의미합니다.\n"
"\n"
" ○ 「c」는 「보조 IDE 제어기상의 주 디스크」를 의미합니다.\n"
"\n"
" ○ 「d」는 「보조 IDE 제어기상의 보조 디스크」를 의미합니다.\n"
"\n"
"SCSI 하드디스크의 경우, 「a」는 「최소 SCSI ID」, 「b」는 「다음 최소 SCSI "
"ID」\n"
"와 같은 식으로 의미를 가집니다."
#: help.pm:85
#, fuzzy, c-format
msgid ""
"The Mandriva Linux installation is distributed on several CD-ROMs. If a\n"
"selected package is located on another CD-ROM, DrakX will eject the current\n"
"CD and ask you to insert the required one. If you do not have the requested\n"
"CD at hand, just click on \"%s\", the corresponding packages will not be\n"
"installed."
msgstr ""
"맨드리바 리눅스 설치 시스템은 여러 장의 CD로 구성되어 있습니다.\n"
"드레이크X는 선택된 각각의 팩키지가 어느 CD에 들어 있는지 이미 알고 있습니"
"다.\n"
"필요시 현재 CD를 자동으로 꺼내고 다른 CD의 삽입을 요청할 것입니다."
#: help.pm:92
#, fuzzy, c-format
msgid ""
"It's now time to specify which programs you wish to install on your system.\n"
"There are thousands of packages available for Mandriva Linux, and to make "
"it\n"
"simpler to manage, they have been placed into groups of similar\n"
"applications.\n"
"\n"
"Mandriva Linux sorts package groups in four categories. You can mix and\n"
"match applications from the various categories, so a ``Workstation''\n"
"installation can still have applications from the ``Server'' category\n"
"installed.\n"
"\n"
" * \"%s\": if you plan to use your machine as a workstation, select one or\n"
"more of the groups in the workstation category.\n"
"\n"
" * \"%s\": if you plan on using your machine for programming, select the\n"
"appropriate groups from that category. The special \"LSB\" group will\n"
"configure your system so that it complies as much as possible with the\n"
"Linux Standard Base specifications.\n"
"\n"
" Selecting the \"LSB\" group will also install the \"2.4\" kernel series,\n"
"instead of the default \"2.6\" one. This is to ensure 100%%-LSB compliance\n"
"of the system. However, if you do not select the \"LSB\" group you will\n"
"still have a system which is nearly 100%% LSB-compliant.\n"
"\n"
" * \"%s\": if your machine is intended to be a server, select which of the\n"
"more common services you wish to install on your machine.\n"
"\n"
" * \"%s\": this is where you will choose your preferred graphical\n"
"environment. At least one must be selected if you want to have a graphical\n"
"interface available.\n"
"\n"
"Moving the mouse cursor over a group name will display a short explanatory\n"
"text about that group.\n"
"\n"
"You can check the \"%s\" box, which is useful if you're familiar with the\n"
"packages being offered or if you want to have total control over what will\n"
"be installed.\n"
"\n"
"If you start the installation in \"%s\" mode, you can deselect all groups\n"
"and prevent the installation of any new packages. This is useful for\n"
"repairing or updating an existing system.\n"
"\n"
"If you deselect all groups when performing a regular installation (as\n"
"opposed to an upgrade), a dialog will pop up suggesting different options\n"
"for a minimal installation:\n"
"\n"
" * \"%s\": install the minimum number of packages possible to have a\n"
"working graphical desktop.\n"
"\n"
" * \"%s\": installs the base system plus basic utilities and their\n"
"documentation. This installation is suitable for setting up a server.\n"
"\n"
" * \"%s\": will install the absolute minimum number of packages necessary\n"
"to get a working Linux system. With this installation you will only have a\n"
"command-line interface. The total size of this installation is about 65\n"
"megabytes."
msgstr ""
"이제 시스템상에 설치할 프로그램들을 지정할 차례입니다.\n"
"맨드리바 리눅스에는 설치할 수 있는 수천 개의 프로그램들이 있기 때문에\n"
"사용자가 그것들을 모두 다 알지는 못할 것입니다.\n"
"\n"
"만약 표준 CD 설치를 수행하고 있는 중이라면, 현재 가지고 있는 CD들에 대해\n"
"질문할 것입니다. 가지고 있는 CD들의 라벨을 확인하고 현재 님의 상황에 맞는\n"
"선택 상자를 지정하세요. 계속할 준비가 되었으면, 「확인」을 누르세요.\n"
"\n"
"팩키지들은 용도에 따라 그룹으로 나열되어 있습니다.\n"
"그룹들 자체는 또다시 네 개의 영역으로 나열되어 있습니다:\n"
"\n"
" ○ 「워크스테이션」: 시스템을 워크스테이션으로 사용할 계획이라면,\n"
"하나 이상의 해당 그룹을 선택하세요.\n"
"\n"
" ○ 「개발」: 시스템을 프로그래밍의 용도로 사용하려 한다면, 원하는 그룹들을\n"
"선택하세요.\n"
"\n"
" ○ 「서버」: 끝으로, 시스템이 서버되기를 원한다면, 여기서 대부분의 일반 서비"
"스들이\n"
"설치되도록 선택할 수 있습니다.\n"
"\n"
" ○ 「그래픽 환경」: 여기는 님이 선호하는 그래픽 환경을 선택하는 곳입니다.\n"
"그래픽 환경 워크스테이션을 원한다면, 최소한 하나는 선택해야 합니다!\n"
"\n"
"마우스 포인터를 그룹 이름들 위로 올리면, 해당 그룹에 대한 작은 풍선 도움말"
"을\n"
"보여 줄 것입니다.\n"
"\n"
"「개별 팩키지 선택」옵션을 선택할 수도 있습니다.\n"
"이 옵션은 님이 제공되어지는 팩키지들에 대해 잘 알고 있거나, 설치되는 팩키지들"
"에 대한\n"
"총체적인 제어를 원할 경우에 유용할 것입니다.\n"
"\n"
"만약 님이 「업데이트」모드로 설치를 시작했다면, 기존에 설치되지 않은 팩키지들"
"이\n"
"설치되는 것을 막기위해 모든 그룹을 선택해제할 수 있습니다. 이렇게 하는 것은\n"
"기존 시스템을 업데이트하거나 고치기 위한 좋은 방법입니다."
#: help.pm:146 share/compssUsers.pl:23
#, c-format
msgid "Workstation"
msgstr "워크스테이션"
#: help.pm:146 share/compssUsers.pl:64 share/compssUsers.pl:162
#: share/compssUsers.pl:164
#, c-format
msgid "Development"
msgstr "개발"
#: help.pm:146 share/compssUsers.pl:144
#, c-format
msgid "Graphical Environment"
msgstr "그래픽 환경"
#: help.pm:146 install_steps_gtk.pm:230 install_steps_interactive.pm:642
#, c-format
msgid "Individual package selection"
msgstr "개별 팩키지 선택"
#: help.pm:146 help.pm:588
#, c-format
msgid "Upgrade"
msgstr "업그레이드"
#: help.pm:146 install_steps_interactive.pm:600
#, c-format
msgid "With X"
msgstr ""
#: help.pm:146
#, fuzzy, c-format
msgid "With basic documentation"
msgstr "문서"
#: help.pm:146
#, fuzzy, c-format
msgid "Truly minimal install"
msgstr "최소 설치"
#: help.pm:149
#, c-format
msgid ""
"If you choose to install packages individually, the installer will present\n"
"a tree containing all packages classified by groups and subgroups. While\n"
"browsing the tree, you can select entire groups, subgroups, or individual\n"
"packages.\n"
"\n"
"Whenever you select a package on the tree, a description will appear on the\n"
"right to let you know the purpose of that package.\n"
"\n"
"!! If a server package has been selected, either because you specifically\n"
"chose the individual package or because it was part of a group of packages,\n"
"you'll be asked to confirm that you really want those servers to be\n"
"installed. By default Mandriva Linux will automatically start any installed\n"
"services at boot time. Even if they are safe and have no known issues at\n"
"the time the distribution was shipped, it is entirely possible that\n"
"security holes were discovered after this version of Mandriva Linux was\n"
"finalized. If you do not know what a particular service is supposed to do "
"or\n"
"why it's being installed, then click \"%s\". Clicking \"%s\" will install\n"
"the listed services and they will be started automatically at boot time. !!\n"
"\n"
"The \"%s\" option is used to disable the warning dialog which appears\n"
"whenever the installer automatically selects a package to resolve a\n"
"dependency issue. Some packages depend on others and the installation of\n"
"one particular package may require the installation of another package. The\n"
"installer can determine which packages are required to satisfy a dependency\n"
"to successfully complete the installation.\n"
"\n"
"The tiny floppy disk icon at the bottom of the list allows you to load a\n"
"package list created during a previous installation. This is useful if you\n"
"have a number of machines that you wish to configure identically. Clicking\n"
"on this icon will ask you to insert the floppy disk created at the end of\n"
"another installation. See the second tip of the last step on how to create\n"
"such a floppy."
msgstr ""
#: help.pm:180
#, c-format
msgid "Automatic dependencies"
msgstr ""
#: help.pm:183
#, c-format
msgid ""
"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
"information on how to set up a new printer. The interface presented in our\n"
"manual is similar to the one used during installation."
msgstr ""
#: help.pm:186 help.pm:566 help.pm:855 install_steps_gtk.pm:606
#: standalone/drakbackup:2325 standalone/drakbackup:2329
#: standalone/drakbackup:2333 standalone/drakbackup:2337
#, c-format
msgid "Configure"
msgstr "설정"
#: help.pm:189
#, fuzzy, c-format
msgid ""
"This dialog is used to select which services you wish to start at boot\n"
"time.\n"
"\n"
"DrakX will list all services available on the current installation. Review\n"
"each one of them carefully and uncheck those which are not needed at boot\n"
"time.\n"
"\n"
"A short explanatory text will be displayed about a service when it is\n"
"selected. However, if you're not sure whether a service is useful or not,\n"
"it is safer to leave the default behavior.\n"
"\n"
"!! At this stage, be very careful if you intend to use your machine as a\n"
"server: you probably do not want to start any services which you do not "
"need.\n"
"Please remember that some services can be dangerous if they're enabled on a\n"
"server. In general, select only those services you really need. !!"
msgstr ""
"이제 부팅시에 어떤 서비스를 자동으로 시작하게 할지를 선택해야 합니다.\n"
"\n"
"현재 설치된 모든 서비스들이 여기에서 보여지고 있습니다.\n"
"신중하게 검토해서 부팅시에 항상 필요로하는 것이 아니라면 선택을 해제하세요.\n"
"\n"
"마우스를 서비스 이름들 위로 올리면, 각 서비스에 대한 간단한 설명을 보여 줄 것"
"입니다.\n"
"만약 어떤 서비스가 필요한 것인지 아닌지를 잘 모르겠다면,\n"
"기본값으로 그냥 두는 것이 안전한 선택입니다.\n"
"\n"
"이 컴퓨터를 서버용으로 사용하려 한다면, 이 단계에서 매우 주의해야 합니다.\n"
"필요하지 않은 서비스가 시작되는 것은 바람직하지 않습니다. 일부 서비스는 \n"
"서버상에서 실핸된다면 위험할 수도 있다는 것을 명심하세요. 원칙적으로 \n"
"꼭 필요한 서비스들만 선택하세요."
#: help.pm:206
#, c-format
msgid ""
"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
"local time according to the time zone you selected. If the clock on your\n"
"motherboard is set to local time, you may deactivate this by unselecting\n"
"\"%s\", which will let GNU/Linux know that the system clock and the\n"
"hardware clock are in the same time zone. This is useful when the machine\n"
"also hosts another operating system.\n"
"\n"
"The \"%s\" option will automatically regulate the system clock by\n"
"connecting to a remote time server on the Internet. For this feature to\n"
"work, you must have a working Internet connection. We recommend that you\n"
"choose a time server located near you. This option actually installs a time\n"
"server which can be used by other machines on your local network as well."
msgstr ""
#: help.pm:217 install_steps_interactive.pm:874
#, c-format
msgid "Hardware clock set to GMT"
msgstr "하드웨어 시계 GMT 설정"
#: help.pm:217
#, fuzzy, c-format
msgid "Automatic time synchronization"
msgstr "자동 시간 동기화 (NTP 사용)"
#: help.pm:220
#, c-format
msgid ""
"Graphic Card\n"
"\n"
" The installer will normally automatically detect and configure the\n"
"graphic card installed on your machine. If this is not correct, you can\n"
"choose from this list the card you actually have installed.\n"
"\n"
" In the situation where different servers are available for your card,\n"
"with or without 3D acceleration, you're asked to choose the server which\n"
"best suits your needs."
msgstr ""
#: help.pm:231
#, c-format
msgid ""
"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
"WindowMaker, etc.) bundled with Mandriva Linux rely upon.\n"
"\n"
"You'll see a list of different parameters to change to get an optimal\n"
"graphical display.\n"
"\n"
"Graphic Card\n"
"\n"
" The installer will normally automatically detect and configure the\n"
"graphic card installed on your machine. If this is not correct, you can\n"
"choose from this list the card you actually have installed.\n"
"\n"
" In the situation where different servers are available for your card,\n"
"with or without 3D acceleration, you're asked to choose the server which\n"
"best suits your needs.\n"
"\n"
"\n"
"\n"
"Monitor\n"
"\n"
" Normally the installer will automatically detect and configure the\n"
"monitor connected to your machine. If it is not correct, you can choose\n"
"from this list the monitor which is connected to your computer.\n"
"\n"
"\n"
"\n"
"Resolution\n"
"\n"
" Here you can choose the resolutions and color depths available for your\n"
"graphics hardware. Choose the one which best suits your needs (you will be\n"
"able to make changes after the installation). A sample of the chosen\n"
"configuration is shown in the monitor picture.\n"
"\n"
"\n"
"\n"
"Test\n"
"\n"
" Depending on your hardware, this entry might not appear.\n"
"\n"
" The system will try to open a graphical screen at the desired\n"
"resolution. If you see the test message during the test and answer \"%s\",\n"
"then DrakX will proceed to the next step. If you do not see it, then it\n"
"means that some part of the auto-detected configuration was incorrect and\n"
"the test will automatically end after 12 seconds and return you to the\n"
"menu. Change settings until you get a correct graphical display.\n"
"\n"
"\n"
"\n"
"Options\n"
"\n"
" This steps allows you to choose whether you want your machine to\n"
"automatically switch to a graphical interface at boot. Obviously, you may\n"
"want to check \"%s\" if your machine is to act as a server, or if you were\n"
"not successful in getting the display configured."
msgstr ""
#: help.pm:288
#, c-format
msgid ""
"Monitor\n"
"\n"
" Normally the installer will automatically detect and configure the\n"
"monitor connected to your machine. If it is not correct, you can choose\n"
"from this list the monitor which is connected to your computer."
msgstr ""
#: help.pm:295
#, c-format
msgid ""
"Resolution\n"
"\n"
" Here you can choose the resolutions and color depths available for your\n"
"graphics hardware. Choose the one which best suits your needs (you will be\n"
"able to make changes after the installation). A sample of the chosen\n"
"configuration is shown in the monitor picture."
msgstr ""
#: help.pm:303
#, c-format
msgid ""
"In the situation where different servers are available for your card, with\n"
"or without 3D acceleration, you're asked to choose the server which best\n"
"suits your needs."
msgstr ""
#: help.pm:308
#, fuzzy, c-format
msgid ""
"Options\n"
"\n"
" This steps allows you to choose whether you want your machine to\n"
"automatically switch to a graphical interface at boot. Obviously, you may\n"
"want to check \"%s\" if your machine is to act as a server, or if you were\n"
"not successful in getting the display configured."
msgstr ""
"마지막으로, 부팅시에 자동으로 그래픽 환경을 사용할 것인지를 질문할 것입니"
"다.\n"
"주의: 이 질문은 설정을 테스트하지 않았을지라도 나타나게 될 것입니다.\n"
"시스템을 확실히 서버용으로 사용할 것이거나, 화면 설정에 성공하지 못한 경우라"
"면\n"
"「아니오」를 누르세요."
#: help.pm:316
#, fuzzy, c-format
msgid ""
"You now need to decide where you want to install the Mandriva Linux\n"
"operating system on your hard drive. If your hard drive is empty or if an\n"
"existing operating system is using all the available space you will have to\n"
"partition the drive. Basically, partitioning a hard drive means to\n"
"logically divide it to create the space needed to install your new\n"
"Mandriva Linux system.\n"
"\n"
"Because the process of partitioning a hard drive is usually irreversible\n"
"and can lead to data losses, partitioning can be intimidating and stressful\n"
"for the inexperienced user. Fortunately, DrakX includes a wizard which\n"
"simplifies this process. Before continuing with this step, read through the\n"
"rest of this section and above all, take your time.\n"
"\n"
"Depending on the configuration of your hard drive, several options are\n"
"available:\n"
"\n"
" * \"%s\". This option will perform an automatic partitioning of your blank\n"
"drive(s). If you use this option there will be no further prompts.\n"
"\n"
" * \"%s\". The wizard has detected one or more existing Linux partitions on\n"
"your hard drive. If you want to use them, choose this option. You will then\n"
"be asked to choose the mount points associated with each of the partitions.\n"
"The legacy mount points are selected by default, and for the most part it's\n"
"a good idea to keep them.\n"
"\n"
" * \"%s\". If Microsoft Windows is installed on your hard drive and takes\n"
"all the space available on it, you will have to create free space for\n"
"GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
"data (see ``Erase entire disk'' solution) or resize your Microsoft Windows\n"
"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
"data, provided you've previously defragmented the Windows partition.\n"
"Backing up your data is strongly recommended. Using this option is\n"
"recommended if you want to use both Mandriva Linux and Microsoft Windows on\n"
"the same computer.\n"
"\n"
" Before choosing this option, please understand that after this\n"
"procedure, the size of your Microsoft Windows partition will be smaller\n"
"than when you started. You'll have less free space under Microsoft Windows\n"
"to store your data or to install new software.\n"
"\n"
" * \"%s\". If you want to delete all data and all partitions present on\n"
"your hard drive and replace them with your new Mandriva Linux system, "
"choose\n"
"this option. Be careful, because you will not be able to undo this "
"operation\n"
"after you confirm.\n"
"\n"
" !! If you choose this option, all data on your disk will be deleted. !!\n"
"\n"
" * \"%s\". This option appears when the hard drive is entirely taken by\n"
"Microsoft Windows. Choosing this option will simply erase everything on the\n"
"drive and begin fresh, partitioning everything from scratch.\n"
"\n"
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
" * \"%s\". Choose this option if you want to manually partition your hard\n"
"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
"easily lose all your data. That's why this option is really only\n"
"recommended if you have done something like this before and have some\n"
"experience. For more instructions on how to use the DiskDrake utility,\n"
"refer to the ``Managing Your Partitions'' section in the ``Starter Guide''."
msgstr ""
"이제 하드디스크의 어디에 리눅스 맨드리바를 설치할지를\n"
"선택해야 합니다. 만약 하드디스크가 완전히 비어 있거나 또는\n"
"다른 운영체제가 하드디스크 전체를 점유하고 있다면, 파티션을\n"
" 나누어야 합니다. 파티션을 나눈다함은 리눅스 맨드리바가\n"
"설치될 공간을 확보하기 위하여 디스크를 논리적으로 분할한다는 의미입니다.\n"
"\n"
"일반적으로 파티션 과정을 거쳐 버리면 기존 데이터의 복구가 불가능해지기\n"
"때문에,초보자에게는 고민스럽고 걱정스러운 작업입니다. 하지만 마법사를\n"
"사용하면 이 작업을 쉽게 할 수 있습니다. 시작하기 전에, 충분한 시간을 가지고\n"
"사용자 설명서를 읽어 보세요.\n"
"\n"
"현재 전문가 모드로 설치를 진행 중이라면, 리눅스 맨드리바의 파티션 분할 도구"
"인\n"
"디스크드레이크를 만나게 될 것입니다. 이 도구는 파티션드르이 세밀한 조정을 가"
"능하게\n"
"합니다. 설명서의 디스크드레이크 장을 보세요; 사용법이 동일합니다. 위에서 언급"
"했듯이\n"
"화면에 있는 「마법사」버튼을 눌러서, 파티션 분할 작업을 위한 마법사를\n"
"실행할 수도 있습니다.\n"
"\n"
"만약 이전에 리눅스를 설치한 적이 있거나 다른 파티션 도구로 만들어 놓은 리눅스"
"용\n"
"파티션들이 이미 존재한다면, 리눅스 설치에 사용할 파티션들을\n"
"선택만 하면 됩니다.\n"
"\n"
"만약 아직 리눅스용 파티션이 없다면, 새로 만들어야 합니다. 그러기 위해서는\n"
"위에 있는 마법사를 사용하세요. 하드디스크의 설정에 따라 다음과 같은\n"
"몇 가지의 방법이 있습니다:\n"
"\n"
" ○ 빈 공간 사용: 빈 디스크의 자동 파티션 분할 작업을 하게 됩니다.\n"
"파티션 분할 작업에 대해 더 이상 신경쓸 필요가 없게 됩니다.\n"
"\n"
" ○ 기존 파티션 사용: 마법사가 기존의 리눅스 파티션을 발견한 경우입니다.\n"
"기존의 파티션에다가 리눅스를 설치할려면, 이것을 선택하세요.\n"
"\n"
" ○ 윈도우즈 파티션의 빈 공간 사용: 만약 MS 윈도우즈가 설치되어 있고 모든 디스"
"크 공간을 사용하고 있다면,\n"
"리눅스용 공간을 새로 만들어야 합니다. 이렇게 하기위해서는, 윈도우즈 파티션을 "
"지우거나(「전체 디스크 삭제」\n"
"와 「전문가 모드」부분을 참조하세요.), 윈도우즈 파티션의 크기를 재조정하여 공"
"간을 확보할 수 있습니다. 윈도우즈\n"
"파티션의 재조정은 기존의 데이터를 파괴하지 않기 때문에, 윈도우즈와 리눅스 맨"
"드레이크를 한 컴퓨터에서 함께\n"
"사용하고자 한다면 이것이 권장되는 방법입니다.\n"
"\n"
"이 방법을 선택한다면, 윈도우즈 파티션의 크기가 현재보다 줄어들기 때문에 윈도"
"우즈를\n"
"사용할 때에는 소프트웨어를 설치하거나 데이터를 저장할 빈 공간이 그만큼 적어진"
"다는\n"
"것을 유념하세요.\n"
"\n"
" ○ 전체 디스크 삭제: 만약 디스크상의 모든 기존 파티션과 데이터를 삭제하고\n"
"리눅스 맨드리바를 위한 파티션으로 바꾸고 싶다면, 이것을 선택하세요.\n"
"주의하세요: 일단 이렇게 하고나면 다시 되돌릴 수 없습니다.\n"
"\n"
" !! 이 옵션을 선택하게 되면, 디스크상의 모든 데이터가 손실됩니다. !!\n"
"\n"
" ○ 윈도우즈 제거: 디스크상의 모든 파티션을 삭제하고, 초기화된 디스크 상태에"
"서\n"
"파티션 작업을 다시 합니다. 디스크상의 모든 데이터는 손실됩니다.\n"
"\n"
" !! 이 옵션을 선택하게 되면, 디스크상의 모든 데이터가 손실됩니다. !!\n"
"\n"
" ○ 전문가 모드: 만약 수동으로 파티션 작업을 하고자 한다면, 이것을 선택하세"
"요.\n"
"이 방법은 대단히 강력하지만 또한 위험할 수 있다는 것을 명심하세요. 쉽게 데이"
"터를\n"
"잃어 버릴 수 있습니다. 전문적인 지식이 없다면, 이 방법은 절대 선택하지 마세"
"요."
#: help.pm:374 install_interactive.pm:95
#, c-format
msgid "Use free space"
msgstr "빈 공간 사용"
#: help.pm:374
#, fuzzy, c-format
msgid "Use existing partition"
msgstr "기존의 파티션 사용"
#: help.pm:374 install_interactive.pm:137
#, c-format
msgid "Use the free space on the Windows partition"
msgstr "윈도우즈 파티션의 빈 공간 사용하세요."
#: help.pm:374 install_interactive.pm:213
#, c-format
msgid "Erase entire disk"
msgstr "전체 디스크 삭제"
#: help.pm:374
#, fuzzy, c-format
msgid "Remove Windows"
msgstr "윈도우즈(TM) 제거"
#: help.pm:374 install_interactive.pm:228
#, c-format
msgid "Custom disk partitioning"
msgstr "사용자 정의 파티션 나누기"
#: help.pm:377
#, fuzzy, c-format
msgid ""
"There you are. Installation is now complete and your GNU/Linux system is\n"
"ready to be used. Just click on \"%s\" to reboot the system. Do not forget\n"
"to remove the installation media (CD-ROM or floppy). The first thing you\n"
"should see after your computer has finished doing its hardware tests is the\n"
"boot-loader menu, giving you the choice of which operating system to start.\n"
"\n"
"The \"%s\" button shows two more buttons to:\n"
"\n"
" * \"%s\": enables you to create an installation floppy disk which will\n"
"automatically perform a whole installation without the help of an operator,\n"
"similar to the installation you've just configured.\n"
"\n"
" Note that two different options are available after clicking on that\n"
"button:\n"
"\n"
" * \"%s\". This is a partially automated installation. The partitioning\n"
"step is the only interactive procedure.\n"
"\n"
" * \"%s\". Fully automated installation: the hard disk is completely\n"
"rewritten, all data is lost.\n"
"\n"
" This feature is very handy when installing on a number of similar\n"
"machines. See the Auto install section on our web site for more\n"
"information.\n"
"\n"
" * \"%s\"(*): saves a list of the packages selected in this installation.\n"
"To use this selection with another installation, insert the floppy and\n"
"start the installation. At the prompt, press the [F1] key, type >>linux\n"
"defcfg=\"floppy\"<< and press the [Enter] key.\n"
"\n"
"(*) You need a FAT-formatted floppy. To create one under GNU/Linux, type\n"
"\"mformat a:\", or \"fdformat /dev/fd0\" followed by \"mkfs.vfat\n"
"/dev/fd0\"."
msgstr ""
"설치를 완료하였습니다. 님의 GNU/리눅스 시스템은 이제 사용할 준비가\n"
"되었습니다. 시스템을 다시 부팅하려면 「확인」을 누르세요.\n"
"컴퓨터가 다시 부팅되면, (다중 부팅이 설정되었을 경우에) 님이 선호하는\n"
"운영체제를 시작할 수 있습니다.\n"
"\n"
"「고급」버튼(점문가 모드에만 있음)을 누르면 두 개의 추가 버튼이 나타넙니다:\n"
"\n"
" ○ 「자동 설치 플로피 생성」: 님이 지금까지 설치한 내용을 관리자의 별다른\n"
"도움없이 자동으로 전체 설치를 수행하게 하는\n"
"자동 설치 플로피 디스크를 만듭니다.\n"
"\n"
" 주의: 버튼을 누르면 두 개의 개별적인 옵션이 나타납니다:\n"
"\n"
" ○ 「재생」: 파티션 나누기 작업만 제외하고, 나머지 과정은 자동설치로\n"
"수행하는 자동설치 플로피를 만듭니다.\n"
"\n"
" ○ 「자동화」: 디스크상의 모든 데이터를 삭제하고 모든 파티션이 다시\n"
"만들어지는 완벽한 자동 설치를 수행하는 플로피를 만듭니다.\n"
"\n"
" 이 기능을 사용하면, 많은 수의 비슷한 컴퓨터에 설치작업을 할 때 편리합니"
"다.\n"
" 자세한 정보는 저희 윕사이트의 자동설치관련 부분을 참조하세요.\n"
"\n"
" ○ 「팩키지 선택사항 저장」(*): 앞 단계에서 선택한 팩키지 목록을 저장합니"
"다.\n"
"또 다른 설치를 수행할 때, 플로피를 드라이브에 넣고, [F1]키를 눌러서\n"
"설치 화면이 도움말 화면으로 들어가게 한후, 「linux defcfg=\"floppy\"」라고\n"
"입력하세요.\n"
"\n"
"(*) 님은 FAT으로 포맷된 플로피 하나를 가지고 있어야 합니다.\n"
" (리눅스에서 포맷하려면, 「mformat a:」명령을 사용하세요.)"
#: help.pm:409
#, fuzzy, c-format
msgid "Generate auto-install floppy"
msgstr "자동 설치 플로피 디스크 생성"
#: help.pm:409 install_steps_interactive.pm:1331
#, c-format
msgid "Replay"
msgstr "재시도"
#: help.pm:409 install_steps_interactive.pm:1331
#, c-format
msgid "Automated"
msgstr "자동"
#: help.pm:409 install_steps_interactive.pm:1334
#, c-format
msgid "Save packages selection"
msgstr "선택된 팩키지 목록 저장"
#: help.pm:412
#, fuzzy, c-format
msgid ""
"If you chose to reuse some legacy GNU/Linux partitions, you may wish to\n"
"reformat some of them and erase any data they contain. To do so, please\n"
"select those partitions as well.\n"
"\n"
"Please note that it's not necessary to reformat all pre-existing\n"
"partitions. You must reformat the partitions containing the operating\n"
"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to "
"reformat\n"
"partitions containing data that you wish to keep (typically \"/home\").\n"
"\n"
"Please be careful when selecting partitions. After the formatting is\n"
"completed, all data on the selected partitions will be deleted and you\n"
"will not be able to recover it.\n"
"\n"
"Click on \"%s\" when you're ready to format the partitions.\n"
"\n"
"Click on \"%s\" if you want to choose another partition for your new\n"
"Mandriva Linux operating system installation.\n"
"\n"
"Click on \"%s\" if you wish to select partitions which will be checked for\n"
"bad blocks on the disk."
msgstr ""
"새로 만들어진 파티션들은 포맷되어져야 합니다.\n"
"(포맷이라 함은 파일 시스템을 만든다는 의미입니다.)\n"
"\n"
"지금 기존의 데이터를 삭제하기 위해서 기존 파티션들을\n"
"다시 포맷할 수도 있습니다. 그렇게 하고 싶다면, 해당 파티션들도\n"
"선택하세요.\n"
"\n"
"주의: 모든 기존 파티션들을 다시 포맷할 필요는 없습니다.\n"
"(「/」,「/usr」,「/var」와 같은) 운영체제를 담고 있는 파티션들은\n"
"다시 포맷하더라도, (「/home」과 같은) 데이터를 단고 있는 파티션들은\n"
", 기존 데이터를 보존하고 싶을 경우, 다시 포맷할 필요가 없습니다.\n"
"\n"
"파티션들을 선택할 때 주의하세요. 일단 포팩이 되고나면,\n"
"선택됐던 파티션상에 존재했던 모든 데이터는 삭제되며,\n"
"복구가 불가능해 집니다.\n"
"\n"
"포맷할 준비가 되었으면, 「확인」을 누르세요.\n"
"\n"
"맨드리바 리눅스 설치용 파티션을 다시 선택하고 싶다면,\n"
"「취소」를 누르세요.\n"
"\n"
"디스크상의 손상된 블럭을 체크하며 포맷하고 싶다면,\n"
"「고급」을 누르세요."
#: help.pm:431 install_steps_gtk.pm:387 interactive.pm:434
#: interactive/newt.pm:318 printer/printerdrake.pm:3676
#: standalone/drakTermServ:362 standalone/drakbackup:3898
#: standalone/drakbackup:3937 standalone/drakbackup:4048
#: standalone/drakbackup:4063 ugtk2.pm:504
#, c-format
msgid "Previous"
msgstr "이전"
#: help.pm:434
#, c-format
msgid ""
"By the time you install Mandriva Linux, it's likely that some packages will\n"
"have been updated since the initial release. Bugs may have been fixed,\n"
"security issues resolved. To allow you to benefit from these updates,\n"
"you're now able to download them from the Internet. Check \"%s\" if you\n"
"have a working Internet connection, or \"%s\" if you prefer to install\n"
"updated packages later.\n"
"\n"
"Choosing \"%s\" will display a list of web locations from which updates can\n"
"be retrieved. You should choose one near to you. A package-selection tree\n"
"will appear: review the selection, and press \"%s\" to retrieve and install\n"
"the selected package(s), or \"%s\" to abort."
msgstr ""
#: help.pm:444 help.pm:588 install_steps_gtk.pm:386
#: install_steps_interactive.pm:156 standalone/drakbackup:4095
#, c-format
msgid "Install"
msgstr "설치"
#: help.pm:447
#, fuzzy, c-format
msgid ""
"At this point, DrakX will allow you to choose the security level you desire\n"
"for your machine. As a rule of thumb, the security level should be set\n"
"higher if the machine is to contain crucial data, or if it's to be directly\n"
"exposed to the Internet. The trade-off that a higher security level is\n"
"generally obtained at the expense of ease of use.\n"
"\n"
"If you do not know what to choose, keep the default option. You'll be able\n"
"to change it later with the draksec tool, which is part of Mandriva Linux\n"
"Control Center.\n"
"\n"
"Fill the \"%s\" field with the e-mail address of the person responsible for\n"
"security. Security messages will be sent to that address."
msgstr ""
"이제 컴퓨터의 보안 수준을 선택할 단계입니다.\n"
"자유로운 사용을 위해서는 컴퓨터가 보다 더 많이 개방되어져야 하며,\n"
"저장된 데이터의 중요성이 크면 클수록, 더 높은 보안 수준이 유지되어야 합니"
"다.\n"
"그러나 일반적으로 보다 높은 보안 수준은 보다 많은 사용상의 불편함을 감수해야"
"만\n"
"이루어질 수 있음을 유념하세요. 각 보안 수준이 의미하는 바에 대한 자세한 정보"
"를\n"
"알고 싶다면 「사용자 지침서」의 MSEC 장을 참조하세요.\n"
"\n"
"어느 것을 선택해야 할지 잘 모르겠다면, 기본값을 유지하세요."
#: help.pm:458
#, fuzzy, c-format
msgid "Security Administrator"
msgstr "보안 관리자 (로그인 또는 이메일)"
#: help.pm:461
#, fuzzy, c-format
msgid ""
"At this point, you need to choose which partition(s) will be used for the\n"
"installation of your Mandriva Linux system. If partitions have already been\n"
"defined, either from a previous installation of GNU/Linux or by another\n"
"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
"partitions must be defined.\n"
"\n"
"To create partitions, you must first select a hard drive. You can select\n"
"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
"\n"
"To partition the selected hard drive, you can use these options:\n"
"\n"
" * \"%s\": this option deletes all partitions on the selected hard drive\n"
"\n"
" * \"%s\": this option enables you to automatically create ext3 and swap\n"
"partitions in the free space of your hard drive\n"
"\n"
"\"%s\": gives access to additional features:\n"
"\n"
" * \"%s\": saves the partition table to a floppy. Useful for later\n"
"partition-table recovery if necessary. It is strongly recommended that you\n"
"perform this step.\n"
"\n"
" * \"%s\": allows you to restore a previously saved partition table from a\n"
"floppy disk.\n"
"\n"
" * \"%s\": if your partition table is damaged, you can try to recover it\n"
"using this option. Please be careful and remember that it does not always\n"
"work.\n"
"\n"
" * \"%s\": discards all changes and reloads the partition table that was\n"
"originally on the hard drive.\n"
"\n"
" * \"%s\": un-checking this option will force users to manually mount and\n"
"unmount removable media such as floppies and CD-ROMs.\n"
"\n"
" * \"%s\": use this option if you wish to use a wizard to partition your\n"
"hard drive. This is recommended if you do not have a good understanding of\n"
"partitioning.\n"
"\n"
" * \"%s\": use this option to cancel your changes.\n"
"\n"
" * \"%s\": allows additional actions on partitions (type, options, format)\n"
"and gives more information about the hard drive.\n"
"\n"
" * \"%s\": when you are finished partitioning your hard drive, this will\n"
"save your changes back to disk.\n"
"\n"
"When defining the size of a partition, you can finely set the partition\n"
"size by using the Arrow keys of your keyboard.\n"
"\n"
"Note: you can reach any option using the keyboard. Navigate through the\n"
"partitions using [Tab] and the [Up/Down] arrows.\n"
"\n"
"When a partition is selected, you can use:\n"
"\n"
" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
"\n"
" * Ctrl-d to delete a partition\n"
"\n"
" * Ctrl-m to set the mount point\n"
"\n"
"To get information about the different file system types available, please\n"
"read the ext2FS chapter from the ``Reference Manual''.\n"
"\n"
"If you are installing on a PPC machine, you will want to create a small HFS\n"
"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
"may find it a useful place to store a spare kernel and ramdisk images for\n"
"emergency boot situations."
msgstr ""
"이제 어느 파티션이 맨드리바 리눅스의 설치용으로 사용되어야 할지를\n"
"선택해야 합니다. 이전에 다른 GNU/리눅스를 설치한 적이 있거나, 다른 파티션\n"
"도구를 사용하여 이미 파티션들이 정의되어 있다면, 기존 파티션을 그대로 사용\n"
"할 수 있습니다. 그렇지 않다면 하드디스크의 파티션들을 지금 만들어야 합니다.\n"
"\n"
"파티션을 만들려면, 먼저 하드디스크를 선택하세요. 파티션을 만들여는 하드디스크"
"가\n"
"첫 번째 IDE 디스크라면 「hda」, 두 번째 IDE 디스크라면 「hdb」와 같은 식이"
"며,\n"
"첫 번째 SCSI 디스크라면 「sda」와 같은 식입니다.\n"
"\n"
"파티션을 나눌 때, 다음 옵션을 사용할 수 있습니다:\n"
"\n"
" ○ 「모두 삭제」: 선택된 디스크의 모든 기존 파티션을 삭제합니다.\n"
"\n"
" ○ 「자동 할당」: 선택된 디스크의 빈 공간에 자동으로 EXT2와 스왑 파티션을\n"
"할당합니다.\n"
"\n"
" ○ 「파티션 테이블 복구」: 파티션 테이블이 손상되어 있을 경우, 이 옵션으로\n"
"손산된 테이블을 복구합니다. !!주의!! 복구시도가 실패할 수도 있다는 것을\n"
"명심하세요.\n"
"\n"
" ○ 「되돌리기」: 변경 사항을 취소합니다.\n"
"\n"
" ○ 「다시 읽기」: 모든 변경 사항을 취소하고, 초기 파티션 테이블을 다시 읽습"
"니다.\n"
"\n"
" ○ 「마법사」: 마법사를 실행하여 파티션을 나눕니다. 파티션 나누기에 대한 지"
"식이\n"
"부족하다면, 이 옵션을 사용하세요.\n"
"\n"
" ○ 「플로피로부터 복구」: 이전에 플로피에 저장해둔 파티션 정보을 사용하여\n"
"파티션 테이블을 복구합니다.\n"
"\n"
" ○ 「플로피에 저장」: 파티션 정보를 플로피에 저장합니다. 다음에 파티션 테이"
"블을 복구할\n"
"일이 생길 때 사용됩니다. 이 과정을 수행할 것을 권장하는 바입니다.\n"
"\n"
" ○ 「완료」: 파티션 나누기 작업을 끝마치면, 이 옵션으로 변경 사항을 저장합니"
"다.\n"
"\n"
"정보: 키보드로 옵션을 선택할 수도 있습니다. 파티션들간의 이동은 [Tab]키와\n"
"[Up/Down]키를 사용하세요.\n"
"\n"
"파티션을 선택하고 난 후에는 다음 키를 사용할 수 있습니다:\n"
"\n"
" ○ 「Ctrl + c」: (빈 파티션이 선택된 경우,) 새 파티션 만들기.\n"
"\n"
" ○ 「Ctrl + d」: 파티션 삭제하기.\n"
"\n"
" ○ 「Ctrl + m」: 마운트 위치 지정하기.\n"
"\n"
"만약 PPC 컴퓨터에서 설치하고 있는 중이라면, YABOOT 부트로더가 사용할 최소 "
"1MB\n"
"의 HFS 「부트스트랩」파티션을 만들 필요가 있습니다. 만약 그 파티션을 보다 크"
"게\n"
"(가령, 50MB) 만들면, 응급 상황시에 사용할 여분의 커널과 램디스크 이미지를\n"
"저장할 수 있는 유용한 장소가 될 것입니다."
#: help.pm:530
#, fuzzy, c-format
msgid "Removable media auto-mounting"
msgstr "탈착식 미디어 자동 마운트"
#: help.pm:530
#, fuzzy, c-format
msgid "Toggle between normal/expert mode"
msgstr "일반 모드로 전환"
#: help.pm:533
#, fuzzy, c-format
msgid ""
"More than one Microsoft partition has been detected on your hard drive.\n"
"Please choose the one which you want to resize in order to install your new\n"
"Mandriva Linux operating system.\n"
"\n"
"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
"\"Capacity\".\n"
"\n"
"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
"\"sd\" if it is a SCSI hard drive.\n"
"\n"
"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
"hard drives:\n"
"\n"
" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
"\n"
" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
"\n"
" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
"\n"
" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
"\n"
"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
"\"second lowest SCSI ID\", etc.\n"
"\n"
"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
"disk or partition is called \"C:\")."
msgstr ""
"둘 이상의 MS 윈도우즈 파티션이 디스크상에서 발견되었습니다.\n"
"맨드리바 리눅스 운영체제를 설치하기 위해 크기를 조정할\n"
"파티션을 선택하세요.\n"
"\n"
"각 파티션은 다음과 같이 열거됩니다: 「리눅스 이름」,「윈도우즈 이름」,\n"
"「용량」.\n"
"\n"
"「리눅스 이름」영역의 구조: 「하드디스크 유형」,「하드디스크 번호」,\n"
"「파티션 번호」(가령, 「hda1」).\n"
"\n"
"「하드디스크 유형」은, IDE 디스크일 경우에는 「hd」이며,\n"
"SCSI 디스크일 경우에는 「sd」입니다.\n"
"\n"
"「하드디스크 번호」는 항상 「hd」또는 「sd」뒤에 오는 문자입니다.\n"
"IDE 하드디스크의 경우:\n"
"\n"
" ○ 「a」는 「주 IDE 제어기상의 주 디스크」를 의미합니다.\n"
"\n"
" ○ 「b」는 「주 IDE 제어기상의 보조 디스크」를 의미합니다.\n"
"\n"
" ○ 「c」는 「보조 IDE 제어기상의 주 디스크」를 의미합니다.\n"
"\n"
" ○ 「d」는 「보조 IDE 제어기상의 보조 디스크」를 의미합니다.\n"
"\n"
"SCSI 하드디스크의 경우, 「a」는 「최소 SCSI ID」, 「b」는 「다음 최소 SCSI "
"ID」\n"
"와 같은 식으로 의미를 가집니다.\n"
"「윈도우즈 이름」은 MS 윈도우즈하에서의 이름입니다.\n"
"(가령, 첫 번째 디스크 또는 파티션은 「C:」입니다.)"
#: help.pm:564
#, c-format
msgid ""
"\"%s\": check the current country selection. If you're not in this country,\n"
"click on the \"%s\" button and choose another. If your country is not in "
"the\n"
"list shown, click on the \"%s\" button to get the complete country list."
msgstr ""
#: help.pm:569
#, c-format
msgid ""
"This step is activated only if an existing GNU/Linux partition has been\n"
"found on your machine.\n"
"\n"
"DrakX now needs to know if you want to perform a new installation or an\n"
"upgrade of an existing Mandriva Linux system:\n"
"\n"
" * \"%s\". For the most part, this completely wipes out the old system.\n"
"However, depending on your partitioning scheme, you can prevent some of\n"
"your existing data (notably \"home\" directories) from being over-written.\n"
"If you wish to change how your hard drives are partitioned, or to change\n"
"the file system, you should use this option.\n"
"\n"
" * \"%s\". This installation class allows you to update the packages\n"
"currently installed on your Mandriva Linux system. Your current "
"partitioning\n"
"scheme and user data will not be altered. Most of the other configuration\n"
"steps remain available and are similar to a standard installation.\n"
"\n"
"Using the ``Upgrade'' option should work fine on Mandriva Linux systems\n"
"running version \"8.1\" or later. Performing an upgrade on versions prior\n"
"to Mandriva Linux version \"8.1\" is not recommended."
msgstr ""
#: help.pm:591
#, fuzzy, c-format
msgid ""
"Depending on the language you chose (), DrakX will automatically select a\n"
"particular type of keyboard configuration. Check that the selection suits\n"
"you or choose another keyboard layout.\n"
"\n"
"Also, you may not have a keyboard which corresponds exactly to your\n"
"language: for example, if you are an English-speaking Swiss native, you may\n"
"have a Swiss keyboard. Or if you speak English and are located in Quebec,\n"
"you may find yourself in the same situation where your native language and\n"
"country-set keyboard do not match. In either case, this installation step\n"
"will allow you to select an appropriate keyboard from a list.\n"
"\n"
"Click on the \"%s\" button to be shown a list of supported keyboards.\n"
"\n"
"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
"dialog will allow you to choose the key binding which will switch the\n"
"keyboard between the Latin and non-Latin layouts."
msgstr ""
"일반적으로, 드레이크X는 (선택한 언어에 기반하여) 올바른 키보드를\n"
"자동으로 선택합니다. 그러나 사용하는 언어에 정확히 일치하는 키보드를\n"
"가지고 있지 않은 경우도 있을 수 있습니다: 가령, 영어를 사용하는 스위스인은\n"
"여전히 스위스 키보드를 원할 수도 있습니다. 또한 영어를 사용하지만, 캐나다 퀘"
"벡주에\n"
"살고 있다면 또한 이러한 경우가 될 것입니다. 이와 같은 경우라면, 이 단계에서\n"
"적당한 키보드를 목록에서 선택해야 합니다.\n"
"\n"
"지원되는 모든 키보드 목록을 보려면, 「추가정보」를\n"
"누르세요."
#: help.pm:609
#, fuzzy, c-format
msgid ""
"The first step is to choose your preferred language.\n"
"\n"
"Your choice of preferred language will affect the installer, the\n"
"documentation, and the system in general. First select the region you're\n"
"located in, then the language you speak.\n"
"\n"
"Clicking on the \"%s\" button will allow you to select other languages to\n"
"be installed on your workstation, thereby installing the language-specific\n"
"files for system documentation and applications. For example, if Spanish\n"
"users are to use your machine, select English as the default language in\n"
"the tree view and \"%s\" in the Advanced section.\n"
"\n"
"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
"cover all existing languages. However full support for it in GNU/Linux is\n"
"still under development. For that reason, Mandriva Linux's use of UTF-8 "
"will\n"
"depend on the user's choices:\n"
"\n"
" * If you choose a language with a strong legacy encoding (latin1\n"
"languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, most\n"
"iso-8859-2 languages), the legacy encoding will be used by default;\n"
"\n"
" * Other languages will use unicode by default;\n"
"\n"
" * If two or more languages are required, and those languages are not using\n"
"the same encoding, then unicode will be used for the whole system;\n"
"\n"
" * Finally, unicode can also be forced for use throughout the system at a\n"
"user's request by selecting the \"%s\" option independently of which\n"
"languages were been chosen.\n"
"\n"
"Note that you're not limited to choosing a single additional language. You\n"
"may choose several, or even install them all by selecting the \"%s\" box.\n"
"Selecting support for a language means translations, fonts, spell checkers,\n"
"etc. will also be installed for that language.\n"
"\n"
"To switch between the various languages installed on your system, you can\n"
"launch the \"localedrake\" command as \"root\" to change the language used\n"
"by the entire system. Running the command as a regular user will only\n"
"change the language settings for that particular user."
msgstr ""
"설치시 그리고 시스템용으로 사용할 언어를 선택하세요.\n"
"\n"
"「고급」을 누르면, 다른 언어도 추가로 선택할 수 있습니다.\n"
"다른 언어도 선택하게 되면, 그 언어와 관련된 시스템 문서 및 프로그램 파일들"
"도\n"
"설치하게 됩니다. 가령, 님의 시스템을 일본인도 사용할 수 있도록 하고 싶다면,\n"
"목록에서 주 언어로 「한국어」를 선택하고, 「고급」에서 「일본어」에 해당하"
"는\n"
"회색 별표를 선택하세요.\n"
"\n"
"여러개의 추가 언어를 선택할 수도 있습니다. 언어 선택을 끝마쳤으면,\n"
"「확인」을 눌러서 계속 진행하세요."
#: help.pm:647
#, c-format
msgid "Espanol"
msgstr ""
#: help.pm:650
#, fuzzy, c-format
msgid ""
"Usually, DrakX has no problems detecting the number of buttons on your\n"
"mouse. If it does, it assumes you have a two-button mouse and will\n"
"configure it for third-button emulation. The third-button mouse button of a\n"
"two-button mouse can be obtained by simultaneously clicking the left and\n"
"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
"a PS/2, serial or USB interface.\n"
"\n"
"If you have a 3-button mouse without a wheel, you can choose a \"%s\"\n"
"mouse. DrakX will then configure your mouse so that you can simulate the\n"
"wheel with it: to do so, press the middle button and move your mouse\n"
"pointer up and down.\n"
"\n"
"If for some reason you wish to specify a different type of mouse, select it\n"
"from the list provided.\n"
"\n"
"You can select the \"%s\" entry to chose a ``generic'' mouse type which\n"
"will work with nearly all mice.\n"
"\n"
"If you choose a mouse other than the default one, a test screen will be\n"
"displayed. Use the buttons and wheel to verify that the settings are\n"
"correct and that the mouse is working correctly. If the mouse is not\n"
"working well, press the space bar or [Return] key to cancel the test and\n"
"you will be returned to the mouse list.\n"
"\n"
"Occasionally wheel mice are not detected automatically, so you will need to\n"
"select your mouse from a list. Be sure to select the one corresponding to\n"
"the port that your mouse is attached to. After selecting a mouse and\n"
"pressing the \"%s\" button, a mouse image will be displayed on-screen.\n"
"Scroll the mouse wheel to ensure that it is activating correctly. As you\n"
"scroll your mouse wheel, you will see the on-screen scroll wheel moving.\n"
"Test the buttons and check that the mouse pointer moves on-screen as you\n"
"move your mouse about."
msgstr ""
"기본적으로 드레이크X는 님이 2버튼 마우스를 사용한다고 가정할 것이며,\n"
"세 번째 버튼은 에뮬레이션할 것입니다. 마우스가 PS/2, 시리얼, 혹은 USB용인지"
"는\n"
"드레이크X가 자동으로 알아낼 수 있습니다.\n"
"\n"
"만약 다른 마우스 유형을 지정하고 싶다면, 제공되는 목록에서 적당한 것을\n"
"선택하세요.\n"
"\n"
"만약 다른 마우스를 선택하게 되면, 마우스 테스트 화면을 보게될 것입니다.\n"
"그러면, 마우스 버튼과 휠을 조작하여 설정이 정확하게 되었는지 확인하세요.\n"
"만약 제대로 작동하기 않으면,「취소」버튼 위에서 스페이스 키나 엔터 키를\n"
"누르고 다시 선택하시기 바랍니다."
#: help.pm:681
#, fuzzy, c-format
msgid "with Wheel emulation"
msgstr "버튼 에뮬레이션"
#: help.pm:681
#, c-format
msgid "Universal | Any PS/2 & USB mice"
msgstr ""
#: help.pm:684
#, c-format
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
msgstr ""
"정확한 포트를 선택하세요. 예를 들어, MS 윈도우즈에서 COM1은\n"
"리눅스에서는 ttyS0로 명명됩니다."
#: help.pm:688
#, c-format
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you must enter the \"root\" password. \"Root\" is the system\n"
"administrator and is the only user authorized to make updates, add users,\n"
"change the overall system configuration, and so on. In short, \"root\" can\n"
"do everything! That's why you must choose a password which is difficult to\n"
"guess: DrakX will tell you if the password you chose is too simple. As you\n"
"can see, you're not forced to enter a password, but we strongly advise\n"
"against this. GNU/Linux is just as prone to operator error as any other\n"
"operating system. Since \"root\" can overcome all limitations and\n"
"unintentionally erase all data on partitions by carelessly accessing the\n"
"partitions themselves, it is important that it be difficult to become\n"
"\"root\".\n"
"\n"
"The password should be a mixture of alphanumeric characters and at least 8\n"
"characters long. Never write down the \"root\" password -- it makes it far\n"
"too easy to compromise your system.\n"
"\n"
"One caveat: do not make the password too long or too complicated because "
"you\n"
"must be able to remember it!\n"
"\n"
"The password will not be displayed on screen as you type it. To reduce the\n"
"chance of a blind typing error you'll need to enter the password twice. If\n"
"you do happen to make the same typing error twice, you'll have to use this\n"
"``incorrect'' password the first time you'll try to connect as \"root\".\n"
"\n"
"If you want an authentication server to control access to your computer,\n"
"click on the \"%s\" button.\n"
"\n"
"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
"services, select the appropriate one for \"%s\". If you do not know which\n"
"one to use, you should ask your network administrator.\n"
"\n"
"If you happen to have problems with remembering passwords, or if your\n"
"computer will never be connected to the Internet and you absolutely trust\n"
"everybody who uses your computer, you can choose to have \"%s\"."
msgstr ""
#: help.pm:722
#, fuzzy, c-format
msgid "authentication"
msgstr "사용자 인증"
#: help.pm:725
#, c-format
msgid ""
"A boot loader is a little program which is started by the computer at boot\n"
"time. It's responsible for starting up the whole system. Normally, the boot\n"
"loader installation is totally automated. DrakX will analyze the disk boot\n"
"sector and act according to what it finds there:\n"
"\n"
" * if a Windows boot sector is found, it will replace it with a GRUB/LILO\n"
"boot sector. This way you'll be able to load either GNU/Linux or any other\n"
"OS installed on your machine.\n"
"\n"
" * if a GRUB or LILO boot sector is found, it'll replace it with a new one.\n"
"\n"
"If DrakX can not determine where to place the boot sector, it'll ask you\n"
"where it should place it. Generally, the \"%s\" is the safest place.\n"
"Choosing \"%s\" will not install any boot loader. Use this option only if "
"you\n"
"know what you're doing."
msgstr ""
#: help.pm:742
#, c-format
msgid ""
"Now, it's time to select a printing system for your computer. Other\n"
"operating systems may offer you one, but Mandriva Linux offers two. Each of\n"
"the printing systems is best suited to particular types of configuration.\n"
"\n"
" * \"%s\" -- which is an acronym for ``print, do not queue'', is the choice\n"
"if you have a direct connection to your printer, you want to be able to\n"
"panic out of printer jams, and you do not have networked printers. (\"%s\"\n"
"will handle only very simple network cases and is somewhat slow when used\n"
"within networks.) It's recommended that you use \"pdq\" if this is your\n"
"first experience with GNU/Linux.\n"
"\n"
" * \"%s\" stands for `` Common Unix Printing System'' and is an excellent\n"
"choice for printing to your local printer or to one halfway around the\n"
"planet. It's simple to configure and can act as a server or a client for\n"
"the ancient \"lpd\" printing system, so it's compatible with older\n"
"operating systems which may still need print services. While quite\n"
"powerful, the basic setup is almost as easy as \"pdq\". If you need to\n"
"emulate a \"lpd\" server, make sure you turn on the \"cups-lpd\" daemon.\n"
"\"%s\" includes graphical front-ends for printing or choosing printer\n"
"options and for managing the printer.\n"
"\n"
"If you make a choice now, and later find that you do not like your printing\n"
"system you may change it by running PrinterDrake from the Mandriva Linux\n"
"Control Center and clicking on the \"%s\" button."
msgstr ""
#: help.pm:765
#, c-format
msgid "pdq"
msgstr ""
#: help.pm:765 printer/cups.pm:115 printer/data.pm:122
#, c-format
msgid "CUPS"
msgstr "CUPS"
#: help.pm:765
#, c-format
msgid "Expert"
msgstr "전문가"
#: help.pm:768
#, fuzzy, c-format
msgid ""
"DrakX will first detect any IDE devices present in your computer. It will\n"
"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
"found, DrakX will automatically install the appropriate driver.\n"
"\n"
"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
"your hard drives. If so, you'll have to specify your hardware by hand.\n"
"\n"
"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
"want to configure options for it. You should allow DrakX to probe the\n"
"hardware for the card-specific options which are needed to initialize the\n"
"adapter. Most of the time, DrakX will get through this step without any\n"
"issues.\n"
"\n"
"If DrakX is not able to probe for the options to automatically determine\n"
"which parameters need to be passed to the hardware, you'll need to manually\n"
"configure the driver."
msgstr ""
"드레이크X가 시스템상에 있는 모든 하드 디스크를 검색하고\n"
"또한 PCI SCSI 어댑터 탐지를 시도할 것입니다.\n"
"만약 드레이크X가 장치를 발견하게 되면 자동으로\n"
"올바른 드라이버를 설치할 것입니다.\n"
"\n"
"드레이크X의 장치 검색이 실패하더라도, 님께 SCSI 장치의 유무를 질문하게 됩니"
"다.\n"
"목록에서 장치를 직접 선택하려면 「예」를, SCSI 장치가 없다면 「아니오」를 선"
"택하세요.\n"
"잘 모르겠다면, 「하드웨어 정보 보기」를 선택한 후 「확인」을 눌러서\n"
"시스템상에 존재하는 하드웨어들을 살펴볼 수도 있습니다.\n"
"하드웨어에 대한 검토가 끝나면 다시 「확인」버튼을 눌러서 SCSI 인터페이스 질"
"문 화면\n"
"으로 돌아 올 수 있습니다.\n"
"\n"
"직접 어댑터를 지정해야 할 때에는, 드레이크X가 옵션을 지정할 것인지를 물어\n"
"볼 것입니다. 이 때는 드레이크X가 필요한 옵션을 탐지하도록 하는 것이 좋습니"
"다.\n"
"일반적으로 이 방법은 잘 작동합니다.\n"
"\n"
"\n"
"만약 그렇지 않다면, 직접 드라이버 옵션을 지정해야 합니다. 사용자 설명서(3"
"장, \n"
"「하드웨어에 대한 종합정보」색션)를 참조하여, 하드웨어 설명서, \n"
"(인터넷에 연결할 수 있다면) 제조업체 웹 사이트, \n"
"또는 (윈도우즈가 설치되어 있다면) MS 윈도우즈에서 어떻게 여기에 필요한 \n"
"정보를 알아 낼 수 있는지 찾아 보세요."
#: help.pm:786
#, c-format
msgid ""
"\"%s\": if a sound card is detected on your system, it'll be displayed\n"
"here. If you notice the sound card is not the one actually present on your\n"
"system, you can click on the button and choose a different driver."
msgstr ""
#: help.pm:788 help.pm:855 install_steps_interactive.pm:1006
#: install_steps_interactive.pm:1023
#, c-format
msgid "Sound card"
msgstr "사운드 카드"
#: help.pm:791
#, c-format
msgid ""
"As a review, DrakX will present a summary of information it has gathered\n"
"about your system. Depending on the hardware installed on your machine, you\n"
"may have some or all of the following entries. Each entry is made up of the\n"
"hardware item to be configured, followed by a quick summary of the current\n"
"configuration. Click on the corresponding \"%s\" button to make the change.\n"
"\n"
" * \"%s\": check the current keyboard map configuration and change it if\n"
"necessary.\n"
"\n"
" * \"%s\": check the current country selection. If you're not in this\n"
"country, click on the \"%s\" button and choose another. If your country\n"
"is not in the list shown, click on the \"%s\" button to get the complete\n"
"country list.\n"
"\n"
" * \"%s\": by default, DrakX deduces your time zone based on the country\n"
"you have chosen. You can click on the \"%s\" button here if this is not\n"
"correct.\n"
"\n"
" * \"%s\": verify the current mouse configuration and click on the button\n"
"to change it if necessary.\n"
"\n"
" * \"%s\": clicking on the \"%s\" button will open the printer\n"
"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
"Guide'' for more information on how to set up a new printer. The interface\n"
"presented in our manual is similar to the one used during installation.\n"
"\n"
" * \"%s\": if a sound card is detected on your system, it'll be displayed\n"
"here. If you notice the sound card is not the one actually present on your\n"
"system, you can click on the button and choose a different driver.\n"
"\n"
" * \"%s\": if you have a TV card, this is where information about its\n"
"configuration will be displayed. If you have a TV card and it is not\n"
"detected, click on \"%s\" to try to configure it manually.\n"
"\n"
" * \"%s\": you can click on \"%s\" to change the parameters associated with\n"
"the card if you feel the configuration is wrong.\n"
"\n"
" * \"%s\": by default, DrakX configures your graphical interface in\n"
"\"800x600\" or \"1024x768\" resolution. If that does not suit you, click on\n"
"\"%s\" to reconfigure your graphical interface.\n"
"\n"
" * \"%s\": if you wish to configure your Internet or local network access,\n"
"you can do so now. Refer to the printed documentation or use the\n"
"Mandriva Linux Control Center after the installation has finished to "
"benefit\n"
"from full in-line help.\n"
"\n"
" * \"%s\": allows to configure HTTP and FTP proxy addresses if the machine\n"
"you're installing on is to be located behind a proxy server.\n"
"\n"
" * \"%s\": this entry allows you to redefine the security level as set in a\n"
"previous step ().\n"
"\n"
" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
"the corresponding section of the ``Starter Guide'' for details about\n"
"firewall settings.\n"
"\n"
" * \"%s\": if you wish to change your bootloader configuration, click this\n"
"button. This should be reserved to advanced users. Refer to the printed\n"
"documentation or the in-line help about bootloader configuration in the\n"
"Mandriva Linux Control Center.\n"
"\n"
" * \"%s\": through this entry you can fine tune which services will be run\n"
"on your machine. If you plan to use this machine as a server it's a good\n"
"idea to review this setup."
msgstr ""
#: help.pm:855 install_steps_interactive.pm:965 standalone/drakclock:100
#, c-format
msgid "Timezone"
msgstr "시간대"
#: help.pm:855 install_steps_interactive.pm:1039
#, c-format
msgid "TV card"
msgstr "TV 카드"
#: help.pm:855
#, fuzzy, c-format
msgid "ISDN card"
msgstr "내장 ISDN 카드"
#: help.pm:855
#, fuzzy, c-format
msgid "Graphical Interface"
msgstr "시작시 바로 X 실행"
#: help.pm:855 install_any.pm:1662 install_steps_interactive.pm:1057
#: standalone/drakbackup:2019
#, c-format
msgid "Network"
msgstr "네트웍"
#: help.pm:855 install_steps_interactive.pm:1072
#, fuzzy, c-format
msgid "Proxies"
msgstr "프로파일: "
#: help.pm:855 install_steps_interactive.pm:1083
#, c-format
msgid "Security Level"
msgstr "보안 등급"
#: help.pm:855 install_steps_interactive.pm:1097
#, c-format
msgid "Firewall"
msgstr "방화벽"
#: help.pm:855 install_steps_interactive.pm:1113
#, fuzzy, c-format
msgid "Bootloader"
msgstr "사용할 부트로더"
#: help.pm:855 install_steps_interactive.pm:1126 services.pm:193
#, c-format
msgid "Services"
msgstr "서비스"
#: help.pm:858
#, fuzzy, c-format
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandriva Linux partition. Be careful, all data on this drive will be lost\n"
"and will not be recoverable!"
msgstr ""
"맨드리바 리눅스 파티션을 만들기 위해서 삭제할 하드디스클르 선택하세요.\n"
"주의:\n"
"디스크상의 모든 데이터는 손실되며, 영원히 복구가 불가능해 집니다!"
#: help.pm:863
#, fuzzy, c-format
msgid ""
"Click on \"%s\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
"to recover any data and partitions present on this hard drive, including\n"
"any Windows data.\n"
"\n"
"Click on \"%s\" to quit this operation without losing data and partitions\n"
"present on this hard drive."
msgstr ""
"이 하드디스크상의 모든 데이터와 파티션을 삭제하려면, 「확인」을 누르세요.\n"
"!!주의하세요!!일단 「확인」을 누르게 되면, MS 윈도우즈 데이털르 포함하여 이 "
"디스트상의 모든\n"
"데이터와 파티션은 복구가 불가능해 집니다.\n"
"\n"
"이 작업을 취소하려면, 지금 「취소」를 누르세요. 어떠한 데이터와 파티션도\n"
"손상되지 않을 것입니다."
#: help.pm:869
#, c-format
msgid "Next ->"
msgstr "다음 ->"
#: help.pm:869
#, c-format
msgid "<- Previous"
msgstr "<- 이전"
#: install2.pm:117
#, c-format
msgid ""
"Can not access kernel modules corresponding to your kernel (file %s is "
"missing), this generally means your boot floppy in not in sync with the "
"Installation medium (please create a newer boot floppy)"
msgstr ""
#: install2.pm:169
#, c-format
msgid "You must also format %s"
msgstr ""
#: install_any.pm:406
#, fuzzy, c-format
msgid "Do you have further supplementary media?"
msgstr "또 다른것이 설치되어 있습니까?"
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: install_any.pm:409
#, fuzzy, c-format
msgid ""
"The following media have been found and will be used during install: %s.\n"
"\n"
"\n"
"Do you have a supplementary installation media to configure?"
msgstr "또 다른 %s 인터페이스가 설치되어 있습니까?"
#: install_any.pm:422 printer/printerdrake.pm:3022
#: printer/printerdrake.pm:3029 standalone/scannerdrake:182
#: standalone/scannerdrake:190 standalone/scannerdrake:241
#: standalone/scannerdrake:248
#, c-format
msgid "CD-ROM"
msgstr "CD-ROM"
#: install_any.pm:422
#, fuzzy, c-format
msgid "Network (http)"
msgstr "네트웍"
#: install_any.pm:422
#, fuzzy, c-format
msgid "Network (ftp)"
msgstr "네트웍"
#: install_any.pm:451
#, c-format
msgid "Insert the CD 1 again"
msgstr ""
#: install_any.pm:479 standalone/drakbackup:112
#, c-format
msgid "No device found"
msgstr "장치를 찾을 수 없습니다"
#: install_any.pm:484
#, c-format
msgid "Insert the CD"
msgstr ""
#: install_any.pm:489
#, fuzzy, c-format
msgid "Unable to mount CD-ROM"
msgstr "분기할 수 없습니다: %s"
#: install_any.pm:521 install_any.pm:525
#, c-format
msgid "URL of the mirror?"
msgstr ""
#: install_any.pm:558
#, fuzzy, c-format
msgid ""
"Can't find a package list file on this mirror. Make sure the location is "
"correct."
msgstr "%s를 열 수 없습니다: %s\n"
#: install_any.pm:725
#, c-format
msgid ""
"Change your Cd-Rom!\n"
"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
"done."
msgstr ""
"CDROM을 바꿔 주세요!\n"
"\n"
"「%s」라고 쓰여진 CDROM을 드라이브에 넣은 후, 「확인」을 눌러 주세요."
#: install_any.pm:738
#, fuzzy, c-format
msgid "Copying in progress"
msgstr "검색 진행 중"
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: install_any.pm:878
#, fuzzy, c-format
msgid ""
"You have selected the following server(s): %s\n"
"\n"
"\n"
"These servers are activated by default. They do not have any known security\n"
"issues, but some new ones could be found. In that case, you must make sure\n"
"to upgrade as soon as possible.\n"
"\n"
"\n"
"Do you really want to install these servers?\n"
msgstr ""
"다음과 같은 서버들이 선택되었습니다: %s\n"
"\n"
"\n"
"이 서버들은 기본적으로 활성화됩니다. 비록 아직까지 알려진 보안 문제는 없지"
"만,\n"
"새로운 문제점이 발견될 수도 있습니다. 그럴 경우에는 가능한 한 신속하게\n"
"업그레이드해야 합니다.\n"
"\n"
"\n"
"정말로 이 서버들을 설치합니까?\n"
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: install_any.pm:901
#, c-format
msgid ""
"The following packages will be removed to allow upgrading your system: %s\n"
"\n"
"\n"
"Do you really want to remove these packages?\n"
msgstr ""
#: install_any.pm:1349 partition_table.pm:603
#, c-format
msgid "Error reading file %s"
msgstr "%s 파일을 읽는중 오류가 발생했습니다."
#: install_any.pm:1559
#, fuzzy, c-format
msgid "The following disk(s) were renamed:"
msgstr "다음 팩키지들이 설치될 것입니다."
#: install_any.pm:1561
#, c-format
msgid "%s (previously named as %s)"
msgstr ""
#: install_any.pm:1599
#, c-format
msgid ""
"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
"오류 발생 - 새로운 파일 시스템을 만들 어떤 올바른 장치도 찾을 수 없습니다.이 "
"문제를 해결하시려면, 하드웨어를 점검해 보시기 바랍니다."
#: install_any.pm:1643
#, c-format
msgid "HTTP"
msgstr "HTTP"
#: install_any.pm:1643
#, c-format
msgid "FTP"
msgstr "FTP"
#: install_any.pm:1643
#, c-format
msgid "NFS"
msgstr "NFS"
#: install_any.pm:1666
#, fuzzy, c-format
msgid "Please choose a media"
msgstr "선택하세요"
#: install_any.pm:1698
#, fuzzy, c-format
msgid "Bad media %s"
msgstr "파일 %s 읽어들임"
#: install_any.pm:1710
#, fuzzy, c-format
msgid "File already exists. Overwrite it?"
msgstr "파일이 이미 존재합니다. 덮어쓸까요?"
#: install_any.pm:1761
#, c-format
msgid "Can not make screenshots before partitioning"
msgstr "파티션을 나누기 전에는 스크린샷을 만들 수 없습니다."
#: install_any.pm:1768
#, c-format
msgid "Screenshots will be available after install in %s"
msgstr "스크린샷은 설치후에 %s에 있습니다."
#: install_gtk.pm:136
#, fuzzy, c-format
msgid "System installation"
msgstr "SILO 설치"
#: install_gtk.pm:139
#, fuzzy, c-format
msgid "System configuration"
msgstr "경고 설정"
#: install_interactive.pm:22
#, c-format
msgid ""
"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
"You can find some information about them at: %s"
msgstr ""
"「상업용」드라이버를 필요로하는 일부 하드웨어가 시스템상에 있습니다.\n"
"자세한 정보는 다음을 참조하세요: %s"
#: install_interactive.pm:62
#, c-format
msgid ""
"You must have a root partition.\n"
"For this, create a partition (or click on an existing one).\n"
"Then choose action ``Mount point'' and set it to `/'"
msgstr ""
"루트 파티션이 반드시 필요합니다.\n"
"이를 위해서, 파티션을 생성하세요. (이미 있는 파티션을 클릭하거나).\n"
"그리고 나서, ``마운트 위치''를 클릭한후 '/'으로 설정하세요."
#: install_interactive.pm:67
#, c-format
msgid ""
"You do not have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr ""
"스왑 파티션이 없습니다.\n"
"\n"
"계속 진행합니까?"
#: install_interactive.pm:70 install_steps.pm:211
#, c-format
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "「/boot/efi」에 마운트된 FAT 파티션이 있어야만 합니다."
#: install_interactive.pm:97
#, c-format
msgid "Not enough free space to allocate new partitions"
msgstr "새로운 파티션을 만들 수 있는 공간이 부족합니다."
#: install_interactive.pm:105
#, c-format
msgid "Use existing partitions"
msgstr "기존의 파티션 사용"
#: install_interactive.pm:107
#, c-format
msgid "There is no existing partition to use"
msgstr "사용할 기존의 파티션이 없습니다."
#: install_interactive.pm:114
#, c-format
msgid "Use the Windows partition for loopback"
msgstr "윈도우즈 파티션을 루프백으로 사용"
#: install_interactive.pm:117
#, c-format
msgid "Which partition do you want to use for Linux4Win?"
msgstr "어느 파티션을 Linux4Win용으로 사용하겠습니까?"
#: install_interactive.pm:119
#, c-format
msgid "Choose the sizes"
msgstr "크기 선택"
#: install_interactive.pm:120
#, c-format
msgid "Root partition size in MB: "
msgstr "루트 파티션 크기(MB): "
#: install_interactive.pm:121
#, c-format
msgid "Swap partition size in MB: "
msgstr "스왑 파티션 크기(MB): "
#: install_interactive.pm:130
#, fuzzy, c-format
msgid "There is no FAT partition to use as loopback (or not enough space left)"
msgstr ""
"loopback로 사용하거나 크기를 조정할 FAT 파티션이 없습니다. (또는 디스크 공간"
"이 부족합니다.)"
#: install_interactive.pm:139
#, c-format
msgid "Which partition do you want to resize?"
msgstr "어떤 파티션의 크기를 조정하시겠습니까?"
#: install_interactive.pm:153
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
"the following error occurred: %s"
msgstr ""
"FAT 크기 조정기가 님의 파티션을 처리할 수 없습니다.\n"
"다음의 오류가 발생했습니다: %s"
#: install_interactive.pm:156
#, fuzzy, c-format
msgid "Computing the size of the Windows partition"
msgstr "윈도우즈 파티션의 빈 공간 사용하세요."
#: install_interactive.pm:163
#, c-format
msgid ""
"Your Windows partition is too fragmented. Please reboot your computer under "
"Windows, run the ``defrag'' utility, then restart the Mandriva Linux "
"installation."
msgstr ""
"윈도우즈 파티션이 심하게 조각나 있습니다. 먼저 ``디스크 조각 모음''을 하세요."
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: install_interactive.pm:166
#, fuzzy, c-format
msgid ""
"WARNING!\n"
"\n"
"DrakX will now resize your Windows partition. Be careful: this\n"
"operation is dangerous. If you have not already done so, you\n"
"first need to exit the installation, run \"chkdsk c:\" from a\n"
"Command Prompt under Windows (beware, running graphical program\n"
"\"scandisk\" is not enough, be sure to use \"chkdsk\" in a\n"
"Command Prompt!), optionally run defrag, then restart the\n"
"installation. You should also backup your data.\n"
"When sure, press Ok."
msgstr ""
"경고!\n"
"\n"
"드레이크X가 이제 윈도우즈 파티션의 크기를 조정할 것입니다. 이 작동은 \n"
"위험합니다. 아직 시작하지 않았다면, 설치를 중단하고 윈도우즈에서\n"
"디스크검사」(가능하다면 또한 「디스크 조각모음」)를 실행한 후에,\n"
"설치를 다시 시작하세요. 또한 데이터도 백업해 두세요.\n"
"준비됐으면, 「확인」을 누르세요."
#: install_interactive.pm:178
#, c-format
msgid "Which size do you want to keep for Windows on"
msgstr "윈도우즈용으로 어느 용량을 유지하시겠습니까?"
#: install_interactive.pm:179
#, c-format
msgid "partition %s"
msgstr "파티션 %s"
#: install_interactive.pm:188
#, c-format
msgid "Resizing Windows partition"
msgstr "윈도우즈 파일 시스템의 범위 계산중"
#: install_interactive.pm:193
#, c-format
msgid "FAT resizing failed: %s"
msgstr "FAT크기조정 실패: %s"
#: install_interactive.pm:208
#, fuzzy, c-format
msgid "There is no FAT partition to resize (or not enough space left)"
msgstr ""
"loopback로 사용하거나 크기를 조정할 FAT 파티션이 없습니다. (또는 디스크 공간"
"이 부족합니다.)"
#: install_interactive.pm:213
#, c-format
msgid "Remove Windows(TM)"
msgstr "윈도우즈(TM) 제거"
#: install_interactive.pm:215
#, c-format
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr ""
"하드 드라이브가 하나 이상 있습니다. 어느 것에 리눅스를 설치하시겠습니까?"
#: install_interactive.pm:219
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "%s 드라이브 상의 모든 기존 파티션과 데이터가 손실될 것입니다."
#: install_interactive.pm:232
#, c-format
msgid "Use fdisk"
msgstr "fdisk 사용"
#: install_interactive.pm:235
#, c-format
msgid ""
"You can now partition %s.\n"
"When you are done, do not forget to save using `w'"
msgstr ""
"이제 %s의 파티션 작업을 할 수 있습니다.\n"
"마친 후, 'w'를 눌러 저장하는것을 잊지마세요."
#: install_interactive.pm:271
#, c-format
msgid "I can not find any room for installing"
msgstr "설치에 필요한 공간을 찾을 수 없습니다."
#: install_interactive.pm:275
#, c-format
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "드레이크X 파티션 마법사가 다음의 솔루션을 발견했습니다:"
#: install_interactive.pm:281
#, c-format
msgid "Partitioning failed: %s"
msgstr "파티션 나누기 실패: %s"
#: install_interactive.pm:288
#, c-format
msgid "Bringing up the network"
msgstr "네트웍 활성화 중..."
#: install_interactive.pm:293
#, c-format
msgid "Bringing down the network"
msgstr "네트웍 해제 중..."
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: install_messages.pm:10
#, c-format
msgid ""
"Introduction\n"
"\n"
"The operating system and the different components available in the Mandriva "
"Linux distribution \n"
"shall be called the \"Software Products\" hereafter. The Software Products "
"include, but are not \n"
"restricted to, the set of programs, methods, rules and documentation related "
"to the operating \n"
"system and the different components of the Mandriva Linux distribution.\n"
"\n"
"\n"
"1. License Agreement\n"
"\n"
"Please read this document carefully. This document is a license agreement "
"between you and \n"
"Mandriva S.A. which applies to the Software Products.\n"
"By installing, duplicating or using the Software Products in any manner, you "
"explicitly \n"
"accept and fully agree to conform to the terms and conditions of this "
"License. \n"
"If you disagree with any portion of the License, you are not allowed to "
"install, duplicate or use \n"
"the Software Products. \n"
"Any attempt to install, duplicate or use the Software Products in a manner "
"which does not comply \n"
"with the terms and conditions of this License is void and will terminate "
"your rights under this \n"
"License. Upon termination of the License, you must immediately destroy all "
"copies of the \n"
"Software Products.\n"
"\n"
"\n"
"2. Limited Warranty\n"
"\n"
"The Software Products and attached documentation are provided \"as is\", "
"with no warranty, to the \n"
"extent permitted by law.\n"
"Mandriva S.A. will, in no circumstances and to the extent permitted by law, "
"be liable for any special,\n"
"incidental, direct or indirect damages whatsoever (including without "
"limitation damages for loss of \n"
"business, interruption of business, financial loss, legal fees and penalties "
"resulting from a court \n"
"judgment, or any other consequential loss) arising out of the use or "
"inability to use the Software \n"
"Products, even if Mandriva S.A. has been advised of the possibility or "
"occurrence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
"COUNTRIES\n"
"\n"
"To the extent permitted by law, Mandriva S.A. or its distributors will, in "
"no circumstances, be \n"
"liable for any special, incidental, direct or indirect damages whatsoever "
"(including without \n"
"limitation damages for loss of business, interruption of business, financial "
"loss, legal fees \n"
"and penalties resulting from a court judgment, or any other consequential "
"loss) arising out \n"
"of the possession and use of software components or arising out of "
"downloading software components \n"
"from one of Mandriva Linux sites which are prohibited or restricted in some "
"countries by local laws.\n"
"This limited liability applies to, but is not restricted to, the strong "
"cryptography components \n"
"included in the Software Products.\n"
"\n"
"\n"
"3. The GPL License and Related Licenses\n"
"\n"
"The Software Products consist of components created by different persons or "
"entities. Most \n"
"of these components are governed under the terms and conditions of the GNU "
"General Public \n"
"Licence, hereafter called \"GPL\", or of similar licenses. Most of these "
"licenses allow you to use, \n"
"duplicate, adapt or redistribute the components which they cover. Please "
"read carefully the terms \n"
"and conditions of the license agreement for each component before using any "
"component. Any question \n"
"on a component license should be addressed to the component author and not "
"to Mandriva.\n"
"The programs developed by Mandriva S.A. are governed by the GPL License. "
"Documentation written \n"
"by Mandriva S.A. is governed by a specific license. Please refer to the "
"documentation for \n"
"further details.\n"
"\n"
"\n"
"4. Intellectual Property Rights\n"
"\n"
"All rights to the components of the Software Products belong to their "
"respective authors and are \n"
"protected by intellectual property and copyright laws applicable to software "
"programs.\n"
"Mandriva S.A. reserves its rights to modify or adapt the Software Products, "
"as a whole or in \n"
"parts, by all means and for all purposes.\n"
"\"Mandriva\", \"Mandriva Linux\" and associated logos are trademarks of "
"Mandriva S.A. \n"
"\n"
"\n"
"5. Governing Laws \n"
"\n"
"If any portion of this agreement is held void, illegal or inapplicable by a "
"court judgment, this \n"
"portion is excluded from this contract. You remain bound by the other "
"applicable sections of the \n"
"agreement.\n"
"The terms and conditions of this License are governed by the Laws of "
"France.\n"
"All disputes on the terms of this license will preferably be settled out of "
"court. As a last \n"
"resort, the dispute will be referred to the appropriate Courts of Law of "
"Paris - France.\n"
"For any question on this document, please contact Mandriva S.A. \n"
msgstr ""
#: install_messages.pm:90
#, c-format
msgid ""
"Warning: Free Software may not necessarily be patent free, and some Free\n"
"Software included may be covered by patents in your country. For example, "
"the\n"
"MP3 decoders included may require a licence for further usage (see\n"
"http://www.mp3licensing.com for more details). If you are unsure if a "
"patent\n"
"may be applicable to you, check your local laws."
msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: install_messages.pm:98
#, c-format
msgid ""
"\n"
"Warning\n"
"\n"
"Please read carefully the terms below. If you disagree with any\n"
"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
"to continue the installation without using these media.\n"
"\n"
"\n"
"Some components contained in the next CD media are not governed\n"
"by the GPL License or similar agreements. Each such component is then\n"
"governed by the terms and conditions of its own specific license. \n"
"Please read carefully and comply with such specific licenses before \n"
"you use or redistribute the said components. \n"
"Such licenses will in general prevent the transfer, duplication \n"
"(except for backup purposes), redistribution, reverse engineering, \n"
"de-assembly, de-compilation or modification of the component. \n"
"Any breach of agreement will immediately terminate your rights under \n"
"the specific license. Unless the specific license terms grant you such\n"
"rights, you usually cannot install the programs on more than one\n"
"system, or adapt it to be used on a network. In doubt, please contact \n"
"directly the distributor or editor of the component. \n"
"Transfer to third parties or copying of such components including the \n"
"documentation is usually forbidden.\n"
"\n"
"\n"
"All rights to the components of the next CD media belong to their \n"
"respective authors and are protected by intellectual property and \n"
"copyright laws applicable to software programs.\n"
msgstr ""
#: install_messages.pm:131
#, fuzzy, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
"\n"
"\n"
"For information on fixes which are available for this release of Mandriva "
"Linux,\n"
"consult the Errata available from:\n"
"\n"
"\n"
"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
"install chapter of the Official Mandriva Linux User's Guide."
msgstr ""
"축하합니다. 설치가 성공적으로 끝났습니다.\n"
"부트 미디어를 제거하고 리턴을 눌러서 리부팅 하세요.\n"
"\n"
"\n"
"이 버전의 맨드리바 리눅스의 버그수정 정보는\n"
"%s\n"
"에서 얻으실 수 있습니다.\n"
"\n"
"\n"
"설치후 시스템 설정에 대한 정보는 공식 맨드리바 리눅스 유저 가이드를\n"
"참고하시기 바랍니다."
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: install_messages.pm:144
#, c-format
msgid "http://www.mandrivalinux.com/en/errata.php3"
msgstr "http://www.mandrivalinux.com/en/errata.php3"
#: install_steps.pm:246
#, c-format
msgid "Duplicate mount point %s"
msgstr "마운트 포인트 중복 %s"
#: install_steps.pm:479
#, c-format
msgid ""
"Some important packages did not get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm"
"\"\n"
msgstr ""
"일부 중요한 팩키지들이 올바르게 설치되지 않았습니다.\n"
"CDROM 드라이브 또는 미디어가 손상되었습니다.\n"
"이미 설치가 완료된 컴퓨터에서 「rpm -qpl media/main/*.rpm」명령으로 점검해 보"
"세요.\n"
#: install_steps_auto_install.pm:76 install_steps_stdio.pm:27
#, c-format
msgid "Entering step `%s'\n"
msgstr "%s 단계로 넘어갑니다.\n"
#: install_steps_gtk.pm:176
#, c-format
msgid ""
"Your system is low on resources. You may have some problem installing\n"
"Mandrivalinux. If that occurs, you can try a text install instead. For "
"this,\n"
"press `F1' when booting on CDROM, then enter `text'."
msgstr ""
#: install_steps_gtk.pm:223 install_steps_interactive.pm:624
#, c-format
msgid "Package Group Selection"
msgstr "팩키지 그룹 선택"
#: install_steps_gtk.pm:249 install_steps_interactive.pm:567
#, c-format
msgid "Total size: %d / %d MB"
msgstr "전체 크기: %d / %d MB"
#: install_steps_gtk.pm:294
#, c-format
msgid "Bad package"
msgstr "잘못된 팩키지"
#: install_steps_gtk.pm:296
#, c-format
msgid "Version: "
msgstr "버전: "
#: install_steps_gtk.pm:297
#, c-format
msgid "Size: "
msgstr "크기: "
#: install_steps_gtk.pm:297
#, fuzzy, c-format
msgid "%d KB\n"
msgstr "크기: %d KB\n"
#: install_steps_gtk.pm:298
#, c-format
msgid "Importance: "
msgstr "중요도: "
#: install_steps_gtk.pm:331
#, c-format
msgid "You can not select/unselect this package"
msgstr "이 팩키지를 선택/버림 할수 없습니다."
#: install_steps_gtk.pm:335
#, fuzzy, c-format
msgid "due to missing %s"
msgstr "kdesu가 없음"
#: install_steps_gtk.pm:336
#, c-format
msgid "due to unsatisfied %s"
msgstr ""
#: install_steps_gtk.pm:337
#, c-format
msgid "trying to promote %s"
msgstr ""
#: install_steps_gtk.pm:338
#, c-format
msgid "in order to keep %s"
msgstr ""
#: install_steps_gtk.pm:343
#, c-format
msgid ""
"You can not select this package as there is not enough space left to install "
"it"
msgstr "디스크 공간이 부족하기 때문에 이 팩키지를 선택할 수 없습니다."
#: install_steps_gtk.pm:346
#, c-format
msgid "The following packages are going to be installed"
msgstr "다음 팩키지들이 설치될 것입니다."
#: install_steps_gtk.pm:347
#, c-format
msgid "The following packages are going to be removed"
msgstr "다음 팩키지들이 제거될 것입니다."
#: install_steps_gtk.pm:371
#, c-format
msgid "This is a mandatory package, it can not be unselected"
msgstr "이것은 필수적인 팩키지입니다. 반드시 선택되어야 합니다."
#: install_steps_gtk.pm:373
#, c-format
msgid "You can not unselect this package. It is already installed"
msgstr "이 팩키지를 선택해제할 수 없습니다. 이미 설치 되었습니다."
#: install_steps_gtk.pm:376
#, c-format
msgid ""
"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
msgstr ""
"이 팩키지는 반드시 업그레이드되어야 합니다.\n"
"정말로 선택을 해제하시겠습니까?"
#: install_steps_gtk.pm:379
#, c-format
msgid "You can not unselect this package. It must be upgraded"
msgstr "이 팩키지를 선택해제할수 없습니다. 반드시 업그레이드되어야 합니다."
#: install_steps_gtk.pm:384
#, c-format
msgid "Show automatically selected packages"
msgstr "자동으로 선택된 팩키지들 보이기"
#: install_steps_gtk.pm:389
#, fuzzy, c-format
msgid "Load/Save selection"
msgstr "선택 이동"
#: install_steps_gtk.pm:390
#, c-format
msgid "Updating package selection"
msgstr "선택된 팩키지 목록 업데이트 중"
#: install_steps_gtk.pm:395
#, c-format
msgid "Minimal install"
msgstr "최소 설치"
#: install_steps_gtk.pm:409 install_steps_interactive.pm:483
#, c-format
msgid "Choose the packages you want to install"
msgstr "설치하고자 하는 팩키지를 선택하세요."
#: install_steps_gtk.pm:425 install_steps_interactive.pm:706
#, c-format
msgid "Installing"
msgstr "설치중"
#: install_steps_gtk.pm:432
#, c-format
msgid "Estimating"
msgstr "계산 중"
#: install_steps_gtk.pm:481
#, fuzzy, c-format
msgid "No details"
msgstr "상세설명"
#: install_steps_gtk.pm:489
#, c-format
msgid "Time remaining "
msgstr "남은 시간 "
#: install_steps_gtk.pm:496
#, c-format
msgid "Please wait, preparing installation..."
msgstr "설치 준비중입니다. 잠시 기다리세요."
#: install_steps_gtk.pm:511
#, c-format
msgid "%d packages"
msgstr "%d 팩키지"
#: install_steps_gtk.pm:516
#, c-format
msgid "Installing package %s"
msgstr "%s 팩키지 설치중"
#: install_steps_gtk.pm:551 install_steps_interactive.pm:92
#: install_steps_interactive.pm:731
#, c-format
msgid "Refuse"
msgstr "거부"
#: install_steps_gtk.pm:555 install_steps_interactive.pm:735
#, c-format
msgid ""
"Change your Cd-Rom!\n"
"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
"done.\n"
"If you do not have it, press Cancel to avoid installation from this Cd-Rom."
msgstr ""
"CDROM을 바꿔 주세요!\n"
"\n"
"「%s」라고 쓰여진 CDROM을 드라이브에 넣은 후, 「확인」을 눌러 주세요.\n"
"만약 CDROM을 가지고 있지 않다면, 「취소」를 눌러 추가 설치를 취소하세요."
#: install_steps_gtk.pm:570 install_steps_interactive.pm:746
#, c-format
msgid "There was an error ordering packages:"
msgstr "팩키지를 정렬하는 중 오류발생:"
#: install_steps_gtk.pm:570 install_steps_gtk.pm:574
#: install_steps_interactive.pm:746 install_steps_interactive.pm:750
#, c-format
msgid "Go on anyway?"
msgstr "계속 진행합니까?"
#: install_steps_gtk.pm:574 install_steps_interactive.pm:750
#, c-format
msgid "There was an error installing packages:"
msgstr "다음 팩키지를 설치중 오류가 발생했습니다: "
#: install_steps_gtk.pm:616 install_steps_interactive.pm:921
#: install_steps_interactive.pm:1073
#, fuzzy, c-format
msgid "not configured"
msgstr "재설정"
#: install_steps_gtk.pm:679
#, c-format
msgid ""
"The following installation media have been found.\n"
"If you want to skip some of them, you can unselect them now."
msgstr ""
#: install_steps_gtk.pm:688
#, c-format
msgid ""
"You have the option to copy the contents of the CDs onto the hard drive "
"before installation.\n"
"It will then continue from the hard drive and the packages will remain "
"available once the system is fully installed."
msgstr ""
#: install_steps_gtk.pm:690
#, c-format
msgid "Copy whole CDs"
msgstr ""
#: install_steps_interactive.pm:85
#, c-format
msgid "License agreement"
msgstr "사용 동의서"
#: install_steps_interactive.pm:89
#, fuzzy, c-format
msgid "Release Notes"
msgstr "릴리즈:"
#: install_steps_interactive.pm:119
#, c-format
msgid "Please choose your keyboard layout."
msgstr "키보드 레이아웃 선택을 선택하세요."
#: install_steps_interactive.pm:121
#, fuzzy, c-format
msgid "Here is the full list of available keyboards"
msgstr "지원되는 키보드 목록이 여기에 있습니다."
#: install_steps_interactive.pm:151
#, fuzzy, c-format
msgid "Install/Upgrade"
msgstr "설치/업데이트"
#: install_steps_interactive.pm:152
#, fuzzy, c-format
msgid "Is this an install or an upgrade?"
msgstr "설치합니까 아니면 업데이트 합니까?"
#: install_steps_interactive.pm:158
#, fuzzy, c-format
msgid "Upgrade %s"
msgstr "업그레이드"
#: install_steps_interactive.pm:168
#, fuzzy, c-format
msgid "Encryption key for %s"
msgstr "암호화 키"
#: install_steps_interactive.pm:185
#, c-format
msgid "Please choose your type of mouse."
msgstr "마우스 종류를 선택하세요."
#: install_steps_interactive.pm:194 standalone/mousedrake:46
#, c-format
msgid "Mouse Port"
msgstr "마우스 포트"
#: install_steps_interactive.pm:195 standalone/mousedrake:47
#, c-format
msgid "Please choose which serial port your mouse is connected to."
msgstr "어떤 시리얼 포트에 마우스가 연결되어 있나요?"
#: install_steps_interactive.pm:205
#, c-format
msgid "Buttons emulation"
msgstr "버튼 에뮬레이션"
#: install_steps_interactive.pm:207
#, c-format
msgid "Button 2 Emulation"
msgstr "버튼 2 에뮬레이션"
#: install_steps_interactive.pm:208
#, c-format
msgid "Button 3 Emulation"
msgstr "버튼 3 에뮬레이션"
#: install_steps_interactive.pm:229
#, c-format
msgid "PCMCIA"
msgstr "PCMCIA"
#: install_steps_interactive.pm:229
#, c-format
msgid "Configuring PCMCIA cards..."
msgstr "PCMCIS 카드 환경설정중..."
#: install_steps_interactive.pm:236
#, c-format
msgid "IDE"
msgstr "IDE"
#: install_steps_interactive.pm:236
#, c-format
msgid "Configuring IDE"
msgstr "IDE 설정중"
#: install_steps_interactive.pm:256 network/tools.pm:181
#, c-format
msgid "No partition available"
msgstr "사용가능한 파티션이 없습니다."
#: install_steps_interactive.pm:259
#, c-format
msgid "Scanning partitions to find mount points"
msgstr "마운트 위치를 찾기위해 파티션들을 검색 중"
#: install_steps_interactive.pm:266
#, c-format
msgid "Choose the mount points"
msgstr "마운트 위치를 선택해 주세요."
#: install_steps_interactive.pm:312
#, c-format
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
"1MB 부트스트랩 공간 부족! 설치는 계속할 수 있지만, 시스템을 부팅하기 위해서"
"는 디스크드레이크에서 부트스트랩 파티션을 만들어야 합니다."
#: install_steps_interactive.pm:317
#, fuzzy, c-format
msgid ""
"You'll need to create a PPC PReP Boot bootstrap! Install will continue, but "
"to boot your system, you'll need to create the bootstrap partition in "
"DiskDrake"
msgstr ""
"1MB 부트스트랩 공간 부족! 설치는 계속할 수 있지만, 시스템을 부팅하기 위해서"
"는 디스크드레이크에서 부트스트랩 파티션을 만들어야 합니다."
#: install_steps_interactive.pm:353
#, c-format
msgid "Choose the partitions you want to format"
msgstr "포맷할 파티션을 선택하세요"
#: install_steps_interactive.pm:355
#, c-format
msgid "Check bad blocks?"
msgstr "배드 블럭 검사를 합니까?"
#: install_steps_interactive.pm:383
#, c-format
msgid ""
"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
"you can lose data)"
msgstr ""
#: install_steps_interactive.pm:386
#, c-format
msgid "Not enough swap space to fulfill installation, please add some"
msgstr "스왑 메모리가 부족합니다. 좀 더 추가하세요."
#: install_steps_interactive.pm:393
#, c-format
msgid "Looking for available packages and rebuilding rpm database..."
msgstr "유효한 팩키지 검색 및 RPM 데이터베이스 재조합 중..."
#: install_steps_interactive.pm:394 install_steps_interactive.pm:452
#, c-format
msgid "Looking for available packages..."
msgstr "유효한 팩키지를 찾고 있습니다."
#: install_steps_interactive.pm:397
#, c-format
msgid "Looking at packages already installed..."
msgstr "이미 설치된 팩키지 찾는 중..."
#: install_steps_interactive.pm:401
#, c-format
msgid "Finding packages to upgrade..."
msgstr "업그레이드할 팩키지를 검색중입니다."
#: install_steps_interactive.pm:421 install_steps_interactive.pm:826
#, c-format
msgid "Choose a mirror from which to get the packages"
msgstr "팩키지를 받을 미러 사이트를 선택해 주세요."
#: install_steps_interactive.pm:461
#, c-format
msgid ""
"Your system does not have enough space left for installation or upgrade (%d "
"> %d)"
msgstr "설치 또는 업그레이드를 위한 디스크 공간이 부족합니다. (%d > %d)"
#: install_steps_interactive.pm:495
#, fuzzy, c-format
msgid ""
"Please choose load or save package selection.\n"
"The format is the same as auto_install generated files."
msgstr ""
"플로피에 팩키지 선택목록을 적재 또는 저장할지를 선택하세요.\n"
"형식(포맷)은 자동설치 생성 플로피와 동일합니다."
#: install_steps_interactive.pm:497
#, c-format
msgid "Load"
msgstr "읽어들이기"
#: install_steps_interactive.pm:497 standalone/drakbackup:3916
#: standalone/drakbackup:3989 standalone/drakroam:210 standalone/logdrake:173
#, c-format
msgid "Save"
msgstr "저장"
#: install_steps_interactive.pm:505
#, fuzzy, c-format
msgid "Bad file"
msgstr "파일 읽기"
#: install_steps_interactive.pm:581
#, c-format
msgid "Selected size is larger than available space"
msgstr "선택된 용량이 사용할 수 있는 공간보다 큽니다."
#: install_steps_interactive.pm:596
#, c-format
msgid "Type of install"
msgstr ""
#: install_steps_interactive.pm:597
#, c-format
msgid ""
"You have not selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
#: install_steps_interactive.pm:601
#, c-format
msgid "With basic documentation (recommended!)"
msgstr ""
#: install_steps_interactive.pm:602
#, c-format
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
#: install_steps_interactive.pm:641 standalone/drakxtv:52
#, c-format
msgid "All"
msgstr "모두"
#: install_steps_interactive.pm:680
#, c-format
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
"If only some CDs are missing, unselect them, then click Ok."
msgstr ""
"만약 아래에 열거된 모든 CD를 가지고 있다면, 「확인」을, \n"
"전혀 가지고 있지 않다면, 「취소」를, \n"
"일부만 가지고 있다면, 없는 CD를 선택해제한 후에 「확인」을 누르세요."
#: install_steps_interactive.pm:685
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "「%s」라고 표시된 CDROM"
#: install_steps_interactive.pm:706
#, c-format
msgid "Preparing installation"
msgstr "설치 준비중입니다"
#: install_steps_interactive.pm:715
#, c-format
msgid ""
"Installing package %s\n"
"%d%%"
msgstr ""
" %s 팩키지 설치 중... \n"
"%d%%"
#: install_steps_interactive.pm:764
#, c-format
msgid "Post-install configuration"
msgstr "설치전 환경설정"
#: install_steps_interactive.pm:771
#, c-format
msgid "Please ensure the Update Modules media is in drive %s"
msgstr ""
#: install_steps_interactive.pm:800
#, c-format
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been updated after the distribution was released. They may\n"
"contain security or bug fixes.\n"
"\n"
"To download these packages, you will need to have a working Internet \n"
"connection.\n"
"\n"
"Do you want to install the updates?"
msgstr ""
#: install_steps_interactive.pm:821
#, c-format
msgid ""
"Contacting Mandrivalinux web site to get the list of available mirrors..."
msgstr ""
#: install_steps_interactive.pm:840
#, c-format
msgid "Contacting the mirror to get the list of available packages..."
msgstr "사용가능한 팩키지의 리스트를 미러 사이트에 접속해서 받습니다."
#: install_steps_interactive.pm:844
#, fuzzy, c-format
msgid "Unable to contact mirror %s"
msgstr "분기할 수 없습니다: %s"
#: install_steps_interactive.pm:844
#, fuzzy, c-format
msgid "Would you like to try again?"
msgstr "인쇄 설정을 하시겠습니까?"
#: install_steps_interactive.pm:870 standalone/drakclock:45
#, c-format
msgid "Which is your timezone?"
msgstr "님의 시간대는 어디입니까?"
#: install_steps_interactive.pm:875
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "자동 시간 동기화 (NTP 사용)"
#: install_steps_interactive.pm:883
#, c-format
msgid "NTP Server"
msgstr "NTP 서버"
#: install_steps_interactive.pm:925 steps.pm:30
#, c-format
msgid "Summary"
msgstr "요약설명"
#: install_steps_interactive.pm:938 install_steps_interactive.pm:946
#: install_steps_interactive.pm:964 install_steps_interactive.pm:971
#: install_steps_interactive.pm:1125 services.pm:133
#: standalone/drakbackup:1571
#, c-format
msgid "System"
msgstr "시스템"
#: install_steps_interactive.pm:978 install_steps_interactive.pm:1005
#: install_steps_interactive.pm:1022 install_steps_interactive.pm:1038
#: install_steps_interactive.pm:1049
#, c-format
msgid "Hardware"
msgstr "하드웨어"
#: install_steps_interactive.pm:984 install_steps_interactive.pm:993
#, c-format
msgid "Remote CUPS server"
msgstr "원격 CUPS 서버"
#: install_steps_interactive.pm:984
#, c-format
msgid "No printer"
msgstr "프린터 없음"
#: install_steps_interactive.pm:1026
#, c-format
msgid "Do you have an ISA sound card?"
msgstr "ISA 사운드 카드가 있습니까?"
#: install_steps_interactive.pm:1028
#, c-format
msgid ""
"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
"card"
msgstr ""
#: install_steps_interactive.pm:1030
#, c-format
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
#: install_steps_interactive.pm:1050
#, fuzzy, c-format
msgid "Graphical interface"
msgstr "시작시 바로 X 실행"
#: install_steps_interactive.pm:1056 install_steps_interactive.pm:1071
#, c-format
msgid "Network & Internet"
msgstr "네트웍과 인터넷"
#: install_steps_interactive.pm:1073
#, fuzzy, c-format
msgid "configured"
msgstr "재설정"
#: install_steps_interactive.pm:1082 install_steps_interactive.pm:1096
#: steps.pm:20
#, c-format
msgid "Security"
msgstr "보안"
#: install_steps_interactive.pm:1101
#, fuzzy, c-format
msgid "activated"
msgstr "지금 활성화"
#: install_steps_interactive.pm:1101
#, c-format
msgid "disabled"
msgstr "금지"
#: install_steps_interactive.pm:1112
#, c-format
msgid "Boot"
msgstr "부트"
#. -PO: example: lilo-graphic on /dev/hda1
#: install_steps_interactive.pm:1116
#, c-format
msgid "%s on %s"
msgstr "%s (%s 컴퓨터)"
# #msgid "Services: %d activated for %d registered"
# #msgstr "서비스: 등록된 %2$d 중 %1$d 활성화됨"
#: install_steps_interactive.pm:1130 services.pm:175
#, fuzzy, c-format
msgid "Services: %d activated for %d registered"
msgstr "서비스: 등록된 %2$d 중 %1$d 활성화됨"
#: install_steps_interactive.pm:1140
#, c-format
msgid "You have not configured X. Are you sure you really want this?"
msgstr ""
#: install_steps_interactive.pm:1220
#, c-format
msgid "Preparing bootloader..."
msgstr "부트 로더 준비중"
#: install_steps_interactive.pm:1230
#, c-format
msgid ""
"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
"will not work for you. The install will continue, but you'll need to use "
"BootX or some other means to boot your machine. The kernel argument for the "
"root fs is: root=%s"
msgstr ""
#: install_steps_interactive.pm:1236
#, c-format
msgid "Do you want to use aboot?"
msgstr "aboot를 사용하시겠습니까?"
#: install_steps_interactive.pm:1239
#, c-format
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
msgstr ""
"aboot 설치 실패. \n"
"첫번째 파티션을 훼손할지라도 강제 설치할까요?"
#: install_steps_interactive.pm:1260
#, c-format
msgid ""
"In this security level, access to the files in the Windows partition is "
"restricted to the administrator."
msgstr ""
#: install_steps_interactive.pm:1289 standalone/drakautoinst:76
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "%s 드라이브에 빈 플로피 디스크를 넣으세요"
#: install_steps_interactive.pm:1294
#, fuzzy, c-format
msgid "Please insert another floppy for drivers disk"
msgstr "부팅 플로피를 %s 드라이브에 넣으세요"
#: install_steps_interactive.pm:1296
#, c-format
msgid "Creating auto install floppy..."
msgstr "자동 설치 플로피 디스크 생성 중"
#: install_steps_interactive.pm:1308
#, c-format
msgid ""
"Some steps are not completed.\n"
"\n"
"Do you really want to quit now?"
msgstr ""
"몇몇 단계가 완전히 끝나지 않았습니다.\n"
"\n"
"정말 지금 종료 하시겠습니까?"
#: install_steps_interactive.pm:1324
#, c-format
msgid "Generate auto install floppy"
msgstr "자동 설치 플로피 디스크 생성"
#: install_steps_interactive.pm:1326
#, c-format
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
"(this is meant for installing on another box).\n"
"\n"
"You may prefer to replay the installation.\n"
msgstr ""
"자동 설치는 원한다면 완벽한 자동화가 가능합니다.\n"
"이럴 경우, 하드 드라이브를 점유해 버립니다!\n"
"(이것은 또 다른 컴퓨터에 동일하게 설치할 때를 위한 것입니다.)\n"
"\n"
"일반적으로 직접 설치하는 것이 좋습니다.\n"
#: install_steps_newt.pm:20
#, c-format
msgid "Mandrivalinux Installation %s"
msgstr ""
#. -PO: This string must fit in a 80-char wide text screen
#: install_steps_newt.pm:34
#, c-format
msgid ""
" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr ""
" <Tab>/<Alt-Tab> 항목간 이동 | <Space> 선택 | <F12> 다음 화면"
#: interactive.pm:193
#, c-format
msgid "Choose a file"
msgstr "파일 선택"
#: interactive.pm:318 interactive/gtk.pm:489 standalone/drakbackup:1512
#: standalone/drakfont:656 standalone/drakroam:218 standalone/drakups:301
#: standalone/drakups:361 standalone/drakups:381 standalone/drakvpn:333
#: standalone/drakvpn:694
#, c-format
msgid "Add"
msgstr "추가"
#: interactive.pm:318 interactive/gtk.pm:489
#, c-format
msgid "Modify"
msgstr "변경"
#: interactive.pm:318 interactive/gtk.pm:489 standalone/drakroam:202
#: standalone/drakups:303 standalone/drakups:363 standalone/drakups:383
#: standalone/drakvpn:333 standalone/drakvpn:694
#, c-format
msgid "Remove"
msgstr "제거"
#: interactive.pm:395
#, c-format
msgid "Basic"
msgstr "기본"
#: interactive.pm:433 interactive/newt.pm:321 ugtk2.pm:506
#, c-format
msgid "Finish"
msgstr "종료"
#: interactive/newt.pm:92
#, fuzzy, c-format
msgid "Do"
msgstr "아래로"
#: interactive/stdio.pm:29 interactive/stdio.pm:148
#, c-format
msgid "Bad choice, try again\n"
msgstr "잘못된 선택입니다, 다시 하세요\n"
#: interactive/stdio.pm:30 interactive/stdio.pm:149
#, c-format
msgid "Your choice? (default %s) "
msgstr "님의 선택은? (기본값 %s) "
#: interactive/stdio.pm:54
#, c-format
msgid ""
"Entries you'll have to fill:\n"
"%s"
msgstr ""
#: interactive/stdio.pm:70
#, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "님의 선택은? (0/1 기본값 「%s」) "
#: interactive/stdio.pm:94
#, c-format
msgid "Button `%s': %s"
msgstr "버튼 「%s」: %s"
#: interactive/stdio.pm:95
#, c-format
msgid "Do you want to click on this button?"
msgstr "이 버튼을 누르시겠습니까?"
#: interactive/stdio.pm:104
#, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "님의 선택은? (기본값 「%s」%s) "
#: interactive/stdio.pm:104
#, c-format
msgid " enter `void' for void entry"
msgstr ""
#: interactive/stdio.pm:122
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr ""
#: interactive/stdio.pm:125
#, c-format
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
"Your choice? "
msgstr ""
#: interactive/stdio.pm:138
#, c-format
msgid ""
"=> Notice, a label changed:\n"
"%s"
msgstr ""
#: interactive/stdio.pm:145
#, c-format
msgid "Re-submit"
msgstr "재전송"
#: keyboard.pm:171 keyboard.pm:205
#, c-format
msgid ""
"_: keyboard\n"
"Czech (QWERTZ)"
msgstr "체코 (QWERTZ)"
#: keyboard.pm:172 keyboard.pm:207
#, c-format
msgid ""
"_: keyboard\n"
"German"
msgstr "독일"
#: keyboard.pm:173
#, c-format
msgid ""
"_: keyboard\n"
"Dvorak"
msgstr "드보락"
#: keyboard.pm:174 keyboard.pm:224
#, c-format
msgid ""
"_: keyboard\n"
"Spanish"
msgstr "스페인"
#: keyboard.pm:175 keyboard.pm:225
#, c-format
msgid ""
"_: keyboard\n"
"Finnish"
msgstr "핀란드"
#: keyboard.pm:176 keyboard.pm:228
#, c-format
msgid ""
"_: keyboard\n"
"French"
msgstr "프랑스"
#: keyboard.pm:177 keyboard.pm:272
#, c-format
msgid ""
"_: keyboard\n"
"Norwegian"
msgstr "노르웨이"
#: keyboard.pm:178
#, c-format
msgid ""
"_: keyboard\n"
"Polish"
msgstr "폴란드"
#: keyboard.pm:179 keyboard.pm:284
#, c-format
msgid ""
"_: keyboard\n"
"Russian"
msgstr "러시아"
#: keyboard.pm:181 keyboard.pm:290
#, c-format
msgid ""
"_: keyboard\n"
"Swedish"
msgstr "스웨덴"
#: keyboard.pm:182 keyboard.pm:320
#, c-format
msgid "UK keyboard"
msgstr "영국"
#: keyboard.pm:183 keyboard.pm:323
#, c-format
msgid "US keyboard"
msgstr "미국"
#: keyboard.pm:185
#, c-format
msgid ""
"_: keyboard\n"
"Albanian"
msgstr "알바니아"
#: keyboard.pm:186
#, c-format
msgid ""
"_: keyboard\n"
"Armenian (old)"
msgstr "미국 (구버전)"
#: keyboard.pm:187
#, c-format
msgid ""
"_: keyboard\n"
"Armenian (typewriter)"
msgstr "미국 (타자기)"
#: keyboard.pm:188
#, c-format
msgid ""
"_: keyboard\n"
"Armenian (phonetic)"
msgstr "미국 (음성학)"
#: keyboard.pm:189
#, c-format
msgid ""
"_: keyboard\n"
"Arabic"
msgstr ""
#: keyboard.pm:190
#, c-format
msgid ""
"_: keyboard\n"
"Azerbaidjani (latin)"
msgstr "Azerbaidjani (라틴)"
#: keyboard.pm:191
#, c-format
msgid ""
"_: keyboard\n"
"Belgian"
msgstr "벨기에"
#: keyboard.pm:192
#, fuzzy, c-format
msgid ""
"_: keyboard\n"
"Bengali (Inscript-layout)"
msgstr "미국 (타자기)"
#: keyboard.pm:193
#, fuzzy, c-format
msgid ""
"_: keyboard\n"
"Bengali (Probhat)"
msgstr "허용"
#: keyboard.pm:194
#, c-format
msgid ""
"_: keyboard\n"
"Bulgarian (phonetic)"
msgstr "불가리아 (음성학)"
#: keyboard.pm:195
#, c-format
msgid ""
"_: keyboard\n"
"Bulgarian (BDS)"
msgstr "불가리아 (BDS)"
#: keyboard.pm:196
#, c-format
msgid ""
"_: keyboard\n"
"Brazilian (ABNT-2)"
msgstr "브라질 (ABNT-2)"
#: keyboard.pm:197
#, fuzzy, c-format
msgid ""
"_: keyboard\n"
"Bosnian"
msgstr "에스토니아"
#: keyboard.pm:198
#, c-format
msgid ""
"_: keyboard\n"
"Belarusian"
msgstr "벨라루시아"
#: keyboard.pm:200
#, c-format
msgid ""
"_: keyboard\n"
"Swiss (German layout)"
msgstr "스위스 (독어)"
#: keyboard.pm:202
#, c-format
msgid ""
"_: keyboard\n"
"Swiss (French layout)"
msgstr "스위스 (불어)"
#: keyboard.pm:204
#, fuzzy, c-format
msgid ""
"_: keyboard\n"
"Cherokee syllabics"
msgstr "세르비아 (시릴)"
#: keyboard.pm:206
#, c-format
msgid ""
"_: keyboard\n"
"Czech (QWERTY)"
msgstr "체코 (QWERTY)"
#: keyboard.pm:208
#, c-format
msgid ""
"_: keyboard\n"
"German (no dead keys)"
msgstr "독일 (dead 키 없음)"
#: keyboard.pm:209
#, c-format
msgid ""
"_: keyboard\n"
"Devanagari"
msgstr ""
#: keyboard.pm:210
#, c-format
msgid ""
"_: keyboard\n"
"Danish"
msgstr "덴마크"
#: keyboard.pm:211
#, c-format
msgid ""
"_: keyboard\n"
"Dvorak (US)"
msgstr "드보락(US)"
#: keyboard.pm:213
#, fuzzy, c-format
msgid ""
"_: keyboard\n"
"Dvorak (Esperanto)"
msgstr "드보락(노르웨이)"
#: keyboard.pm:215
#, fuzzy, c-format
msgid ""
"_: keyboard\n"
"Dvorak (French)"
msgstr "드보락(노르웨이)"
#: keyboard.pm:217
#, fuzzy, c-format
msgid ""
"_: keyboard\n"
"Dvorak (UK)"
msgstr "드보락(US)"
#: keyboard.pm:218
#, c-format
msgid ""
"_: keyboard\n"
"Dvorak (Norwegian)"
msgstr "드보락(노르웨이)"
#: keyboard.pm:220
#, fuzzy, c-format
msgid ""
"_: keyboard\n"
"Dvorak (Polish)"
msgstr "드보락(스웨덴)"
#: keyboard.pm:221
#, c-format
msgid ""
"_: keyboard\n"
"Dvorak (Swedish)"
msgstr "드보락(스웨덴)"
#: keyboard.pm:222
#, fuzzy, c-format
msgid ""
"_: keyboard\n"
"Dzongkha/Tibetan"
msgstr "에스토니아"
#: keyboard.pm:223
#, c-format
msgid ""
"_: keyboard\n"
"Estonian"
msgstr "에스토니아"
#: keyboard.pm:227
#, fuzzy, c-format
msgid ""
"_: keyboard\n"
"Faroese"
msgstr "그리스"
#: keyboard.pm:229
#, c-format
msgid ""
"_: keyboard\n"
"Georgian (\"Russian\" layout)"
msgstr "그루지아(러시아어)"
#: keyboard.pm:230
#, c-format
msgid ""
"_: keyboard\n"
"Georgian (\"Latin\" layout)"
msgstr "그루지아 (라틴)"
#: keyboard.pm:231
#, c-format
msgid ""
"_: keyboard\n"
"Greek"
msgstr "그리스"
#: keyboard.pm:232
#, c-format
msgid ""
"_: keyboard\n"
"Greek (polytonic)"
msgstr ""
#: keyboard.pm:233
#, c-format
msgid ""
"_: keyboard\n"
"Gujarati"
msgstr ""
#: keyboard.pm:234
#, c-format
msgid ""
"_: keyboard\n"
"Gurmukhi"
msgstr ""
#: keyboard.pm:235
#, c-format
msgid ""
"_: keyboard\n"
"Croatian"
msgstr "크로아티아"
#: keyboard.pm:236
#, c-format
msgid ""
"_: keyboard\n"
"Hungarian"
msgstr "헝가리"
#: keyboard.pm:237
#, c-format
msgid ""
"_: keyboard\n"
"Irish"
msgstr ""
#: keyboard.pm:238
#, c-format
msgid ""
"_: keyboard\n"
"Israeli"
msgstr "이스라엘"
#: keyboard.pm:239
#, c-format
msgid ""
"_: keyboard\n"
"Israeli (phonetic)"
msgstr "이스라엘 (음성학)"
#: keyboard.pm:240
#, c-format
msgid ""
"_: keyboard\n"
"Iranian"
msgstr "이란"
#: keyboard.pm:241
#, c-format
msgid ""
"_: keyboard\n"
"Icelandic"
msgstr "아이슬랜드"
#: keyboard.pm:242
#, c-format
msgid ""
"_: keyboard\n"
"Italian"
msgstr "이탈리아"
#: keyboard.pm:243
#, c-format
msgid ""
"_: keyboard\n"
"Inuktitut"
msgstr ""
#: keyboard.pm:248
#, c-format
msgid ""
"_: keyboard\n"
"Japanese 106 keys"
msgstr "일본 106키"
#: keyboard.pm:249
#, fuzzy, c-format
msgid ""
"_: keyboard\n"
"Kannada"
msgstr "캐나다"
#: keyboard.pm:252
#, c-format
msgid ""
"_: keyboard\n"
"Korean"
msgstr "한글 키보드"
#: keyboard.pm:254
#, fuzzy, c-format
msgid ""
"_: keyboard\n"
"Kurdish (arabic script)"
msgstr "미국 (음성학)"
#: keyboard.pm:255
#, fuzzy, c-format
msgid ""
"_: keyboard\n"
"Kyrgyz"
msgstr "영국"
#: keyboard.pm:256
#, c-format
msgid ""
"_: keyboard\n"
"Latin American"
msgstr "라틴 아메리카"
#: keyboard.pm:258
#, fuzzy, c-format
msgid ""
"_: keyboard\n"
"Laotian"
msgstr "라트바아"
#: keyboard.pm:259
#, c-format
msgid ""
"_: keyboard\n"
"Lithuanian AZERTY (old)"
msgstr "리투아니아 AZERTY (구형)"
#: keyboard.pm:261
#, c-format
msgid ""
"_: keyboard\n"
"Lithuanian AZERTY (new)"
msgstr "리투아니아 AZERTY (신형)"
#: keyboard.pm:262
#, c-format
msgid ""
"_: keyboard\n"
"Lithuanian \"number row\" QWERTY"
msgstr "리투아니아 (숫자열 QWERTY)"
#: keyboard.pm:263
#, c-format
msgid ""
"_: keyboard\n"
"Lithuanian \"phonetic\" QWERTY"
msgstr "리투아니아 (음성학 QWERTY)"
#: keyboard.pm:264
#, c-format
msgid ""
"_: keyboard\n"
"Latvian"
msgstr "라트바아"
#: keyboard.pm:265
#, c-format
msgid ""
"_: keyboard\n"
"Malayalam"
msgstr ""
#: keyboard.pm:266
#, c-format
msgid ""
"_: keyboard\n"
"Macedonian"
msgstr "마케도니아"
#: keyboard.pm:267
#, c-format
msgid ""
"_: keyboard\n"
"Myanmar (Burmese)"
msgstr ""
#: keyboard.pm:268
#, fuzzy, c-format
msgid ""
"_: keyboard\n"
"Mongolian (cyrillic)"
msgstr "세르비아 (시릴)"
#: keyboard.pm:269
#, c-format
msgid ""
"_: keyboard\n"
"Maltese (UK)"
msgstr ""
#: keyboard.pm:270
#, c-format
msgid ""
"_: keyboard\n"
"Maltese (US)"
msgstr ""
#: keyboard.pm:271
#, c-format
msgid ""
"_: keyboard\n"
"Dutch"
msgstr "네델란드"
#: keyboard.pm:273
#, fuzzy, c-format
msgid ""
"_: keyboard\n"
"Oriya"
msgstr "수리남"
#: keyboard.pm:274
#, c-format
msgid ""
"_: keyboard\n"
"Polish (qwerty layout)"
msgstr "폴란드 (QwertY)"
#: keyboard.pm:275
#, c-format
msgid ""
"_: keyboard\n"
"Polish (qwertz layout)"
msgstr "폴란드 (QwertZ)"
#: keyboard.pm:277
#, fuzzy, c-format
msgid ""
"_: keyboard\n"
"Pashto"
msgstr "폴란드"
#: keyboard.pm:278
#, c-format
msgid ""
"_: keyboard\n"
"Portuguese"
msgstr "포루투칼"
#: keyboard.pm:280
#, c-format
msgid ""
"_: keyboard\n"
"Canadian (Quebec)"
msgstr "캐나다 (퀘벡)"
#: keyboard.pm:282
#, c-format
msgid ""
"_: keyboard\n"
"Romanian (qwertz)"
msgstr "로만 (QWERTZ)"
#: keyboard.pm:283
#, c-format
msgid ""
"_: keyboard\n"
"Romanian (qwerty)"
msgstr "로만 (QWERTY)"
#: keyboard.pm:285
#, c-format
msgid ""
"_: keyboard\n"
"Russian (phonetic)"
msgstr "러시아 (음성학)"
#: keyboard.pm:286
#, fuzzy, c-format
msgid ""
"_: keyboard\n"
"Saami (norwegian)"
msgstr "드보락(노르웨이)"
#: keyboard.pm:287
#, c-format
msgid ""
"_: keyboard\n"
"Saami (swedish/finnish)"
msgstr ""
#: keyboard.pm:289
#, fuzzy, c-format
msgid ""
"_: keyboard\n"
"Sindhi"
msgstr "태국"
#: keyboard.pm:291
#, c-format
msgid ""
"_: keyboard\n"
"Slovenian"
msgstr "슬로베니아"
#: keyboard.pm:293
#, c-format
msgid ""
"_: keyboard\n"
"Sinhala"
msgstr ""
#: keyboard.pm:294
#, c-format
msgid ""
"_: keyboard\n"
"Slovakian (QWERTZ)"
msgstr "슬로바키아 (QWERTZ)"
#: keyboard.pm:295
#, c-format
msgid ""
"_: keyboard\n"
"Slovakian (QWERTY)"
msgstr "슬로바키아 (QWERTY)"
#: keyboard.pm:297
#, c-format
msgid ""
"_: keyboard\n"
"Serbian (cyrillic)"
msgstr "세르비아 (시릴)"
#: keyboard.pm:298
#, fuzzy, c-format
msgid ""
"_: keyboard\n"
"Syriac"
msgstr "수리남"
#: keyboard.pm:299
#, fuzzy, c-format
msgid ""
"_: keyboard\n"
"Syriac (phonetic)"
msgstr "미국 (음성학)"
#: keyboard.pm:300
#, fuzzy, c-format
msgid ""
"_: keyboard\n"
"Telugu"
msgstr "벨기에"
#: keyboard.pm:302
#, c-format
msgid ""
"_: keyboard\n"
"Tamil (ISCII-layout)"
msgstr ""
#: keyboard.pm:303
#, fuzzy, c-format
msgid ""
"_: keyboard\n"
"Tamil (Typewriter-layout)"
msgstr "미국 (타자기)"
#: keyboard.pm:304
#, fuzzy, c-format
msgid ""
"_: keyboard\n"
"Thai (Kedmanee)"
msgstr "태국"
#: keyboard.pm:305
#, fuzzy, c-format
msgid ""
"_: keyboard\n"
"Thai (TIS-820)"
msgstr "태국"
#: keyboard.pm:307
#, fuzzy, c-format
msgid ""
"_: keyboard\n"
"Thai (Pattachote)"
msgstr "태국"
#: keyboard.pm:310
#, c-format
msgid ""
"_: keyboard\n"
"Tifinagh (moroccan layout) (+latin/arabic)"
msgstr ""
#: keyboard.pm:311
#, c-format
msgid ""
"_: keyboard\n"
"Tifinagh (phonetic) (+latin/arabic)"
msgstr ""
#: keyboard.pm:313
#, c-format
msgid ""
"_: keyboard\n"
"Tajik"
msgstr "타지크 키보드"
#: keyboard.pm:315
#, fuzzy, c-format
msgid ""
"_: keyboard\n"
"Turkmen"
msgstr "독일"
#: keyboard.pm:316
#, c-format
msgid ""
"_: keyboard\n"
"Turkish (traditional \"F\" model)"
msgstr "터기 (전통 「F」모델"
#: keyboard.pm:317
#, c-format
msgid ""
"_: keyboard\n"
"Turkish (modern \"Q\" model)"
msgstr "터키 (현대 「Q」모델"
#: keyboard.pm:319
#, c-format
msgid ""
"_: keyboard\n"
"Ukrainian"
msgstr "우크라이나"
#: keyboard.pm:322
#, fuzzy, c-format
msgid ""
"_: keyboard\n"
"Urdu keyboard"
msgstr "수리남"
#: keyboard.pm:324
#, c-format
msgid "US keyboard (international)"
msgstr "US 키보드 (국제)"
#: keyboard.pm:325
#, fuzzy, c-format
msgid ""
"_: keyboard\n"
"Uzbek (cyrillic)"
msgstr "세르비아 (시릴)"
#: keyboard.pm:327
#, c-format
msgid ""
"_: keyboard\n"
"Vietnamese \"numeric row\" QWERTY"
msgstr "베트남 (숫자열 QWERTY)"
#: keyboard.pm:328
#, c-format
msgid ""
"_: keyboard\n"
"Yugoslavian (latin)"
msgstr "유고슬라비아 (라틴)"
#: keyboard.pm:335
#, c-format
msgid "Right Alt key"
msgstr ""
#: keyboard.pm:336
#, c-format
msgid "Both Shift keys simultaneously"
msgstr ""
#: keyboard.pm:337
#, c-format
msgid "Control and Shift keys simultaneously"
msgstr ""
#: keyboard.pm:338
#, c-format
msgid "CapsLock key"
msgstr ""
#: keyboard.pm:339
#, c-format
msgid "Shift and CapsLock keys simultaneously"
msgstr ""
#: keyboard.pm:340
#, c-format
msgid "Ctrl and Alt keys simultaneously"
msgstr ""
#: keyboard.pm:341
#, c-format
msgid "Alt and Shift keys simultaneously"
msgstr ""
#: keyboard.pm:342
#, c-format
msgid "\"Menu\" key"
msgstr ""
#: keyboard.pm:343
#, c-format
msgid "Left \"Windows\" key"
msgstr ""
#: keyboard.pm:344
#, c-format
msgid "Right \"Windows\" key"
msgstr ""
#: keyboard.pm:345
#, c-format
msgid "Both Control keys simultaneously"
msgstr ""
#: keyboard.pm:346
#, c-format
msgid "Both Alt keys simultaneously"
msgstr ""
#: keyboard.pm:347
#, c-format
msgid "Left Shift key"
msgstr ""
#: keyboard.pm:348
#, c-format
msgid "Right Shift key"
msgstr ""
#: keyboard.pm:349
#, c-format
msgid "Left Alt key"
msgstr ""
#: keyboard.pm:350
#, fuzzy, c-format
msgid "Left Control key"
msgstr "원격 제어"
#: keyboard.pm:351
#, fuzzy, c-format
msgid "Right Control key"
msgstr "원격 제어"
#: keyboard.pm:387
#, c-format
msgid ""
"Here you can choose the key or key combination that will \n"
"allow switching between the different keyboard layouts\n"
"(eg: latin and non latin)"
msgstr ""
#: keyboard.pm:392
#, c-format
msgid ""
"This setting will be activated after the installation.\n"
"During installation, you will need to use the Right Control\n"
"key to switch between the different keyboard layouts."
msgstr ""
#. -PO: the string "default:LTR" can be translated *ONLY* as "default:LTR"
#. -PO: or as "default:RTL", depending if your language is written from
#. -PO: left to right, or from right to left; any other string is wrong.
#: lang.pm:178
#, c-format
msgid "default:LTR"
msgstr "default:LTR"
#: lang.pm:195
#, c-format
msgid "Andorra"
msgstr "안도라"
#: lang.pm:196 network/adsl_consts.pm:933
#, c-format
msgid "United Arab Emirates"
msgstr "아랍 에미리트 연합"
#: lang.pm:197
#, c-format
msgid "Afghanistan"
msgstr "아프가니스탄"
#: lang.pm:198
#, c-format
msgid "Antigua and Barbuda"
msgstr "안티가 바부다"
#: lang.pm:199
#, c-format
msgid "Anguilla"
msgstr "앙귈라"
#: lang.pm:200
#, c-format
msgid "Albania"
msgstr "알바니아"
#: lang.pm:201
#, c-format
msgid "Armenia"
msgstr "아르메니아"
#: lang.pm:202
#, c-format
msgid "Netherlands Antilles"
msgstr "네델란드령 앤틸레스 열도"
#: lang.pm:203
#, c-format
msgid "Angola"
msgstr "앙골라"
#: lang.pm:204
#, c-format
msgid "Antarctica"
msgstr "남극"
#: lang.pm:205 network/adsl_consts.pm:55 standalone/drakxtv:50
#, c-format
msgid "Argentina"
msgstr "아르헨티나"
#: lang.pm:206
#, c-format
msgid "American Samoa"
msgstr "미국령 사모아"
#: lang.pm:209
#, c-format
msgid "Aruba"
msgstr "아루바"
#: lang.pm:210
#, c-format
msgid "Azerbaijan"
msgstr "아제르바이잔"
#: lang.pm:211
#, c-format
msgid "Bosnia and Herzegovina"
msgstr "보스니아 헤르체고비나"
#: lang.pm:212
#, c-format
msgid "Barbados"
msgstr "바르바도스"
#: lang.pm:213
#, c-format
msgid "Bangladesh"
msgstr "방글라데시"
#: lang.pm:215
#, c-format
msgid "Burkina Faso"
msgstr "부르키나 파소"
#: lang.pm:216 network/adsl_consts.pm:170 network/adsl_consts.pm:179
#, c-format
msgid "Bulgaria"
msgstr "불가리아"
#: lang.pm:217
#, c-format
msgid "Bahrain"
msgstr "바레인"
#: lang.pm:218
#, c-format
msgid "Burundi"
msgstr "부룬디"
#: lang.pm:219
#, c-format
msgid "Benin"
msgstr "베닌"
#: lang.pm:220
#, c-format
msgid "Bermuda"
msgstr "버뮤다"
#: lang.pm:221
#, c-format
msgid "Brunei Darussalam"
msgstr "브루나이 다루살람"
#: lang.pm:222
#, c-format
msgid "Bolivia"
msgstr "볼리비아"
#: lang.pm:224
#, c-format
msgid "Bahamas"
msgstr "바하마"
#: lang.pm:225
#, c-format
msgid "Bhutan"
msgstr "부탄"
#: lang.pm:226
#, c-format
msgid "Bouvet Island"
msgstr "보우벳 섬"
#: lang.pm:227
#, c-format
msgid "Botswana"
msgstr "보츠와나"
#: lang.pm:228
#, c-format
msgid "Belarus"
msgstr "벨라루스"
#: lang.pm:229
#, c-format
msgid "Belize"
msgstr "벨리즈"
#: lang.pm:231
#, c-format
msgid "Cocos (Keeling) Islands"
msgstr "코코스 (킬링) 제도"
#: lang.pm:232
#, c-format
msgid "Congo (Kinshasa)"
msgstr ""
#: lang.pm:233
#, c-format
msgid "Central African Republic"
msgstr "중앙 아프리카 공화국"
#: lang.pm:234
#, c-format
msgid "Congo (Brazzaville)"
msgstr ""
#: lang.pm:236
#, c-format
msgid "Cote d'Ivoire"
msgstr "코트 디브와르"
#: lang.pm:237
#, c-format
msgid "Cook Islands"
msgstr "쿡 제도"
#: lang.pm:238
#, c-format
msgid "Chile"
msgstr "칠레"
#: lang.pm:239
#, c-format
msgid "Cameroon"
msgstr "카메룬"
#: lang.pm:240 network/adsl_consts.pm:188 network/adsl_consts.pm:197
#: network/adsl_consts.pm:206 network/adsl_consts.pm:215
#: network/adsl_consts.pm:224 network/adsl_consts.pm:233
#: network/adsl_consts.pm:242 network/adsl_consts.pm:251
#: network/adsl_consts.pm:260 network/adsl_consts.pm:269
#: network/adsl_consts.pm:278 network/adsl_consts.pm:287
#: network/adsl_consts.pm:296 network/adsl_consts.pm:305
#: network/adsl_consts.pm:314 network/adsl_consts.pm:323
#: network/adsl_consts.pm:332 network/adsl_consts.pm:341
#: network/adsl_consts.pm:350 network/adsl_consts.pm:359
#, c-format
msgid "China"
msgstr "중국"
#: lang.pm:241
#, c-format
msgid "Colombia"
msgstr "콜롬비아"
#: lang.pm:243
#, c-format
msgid "Serbia & Montenegro"
msgstr "세르비아 & 몬테네그로"
#: lang.pm:244
#, c-format
msgid "Cuba"
msgstr "쿠바"
#: lang.pm:245
#, c-format
msgid "Cape Verde"
msgstr "케이프 베르드"
#: lang.pm:246
#, c-format
msgid "Christmas Island"
msgstr "크리스마스 섬"
#: lang.pm:247
#, c-format
msgid "Cyprus"
msgstr "사이프러스"
#: lang.pm:250
#, c-format
msgid "Djibouti"
msgstr "지부티"
#: lang.pm:252
#, c-format
msgid "Dominica"
msgstr "도미니카"
#: lang.pm:253
#, c-format
msgid "Dominican Republic"
msgstr "도미니카 공화국"
#: lang.pm:254 network/adsl_consts.pm:44
#, c-format
msgid "Algeria"
msgstr "알제리"
#: lang.pm:255
#, c-format
msgid "Ecuador"
msgstr "에콰도르"
#: lang.pm:257
#, c-format
msgid "Egypt"
msgstr "이집트"
#: lang.pm:258
#, c-format
msgid "Western Sahara"
msgstr "서부 사하라"
#: lang.pm:259
#, c-format
msgid "Eritrea"
msgstr "에리트리아"
#: lang.pm:261
#, c-format
msgid "Ethiopia"
msgstr "에티오피아"
#: lang.pm:263
#, c-format
msgid "Fiji"
msgstr "피지"
#: lang.pm:264
#, c-format
msgid "Falkland Islands (Malvinas)"
msgstr ""
#: lang.pm:265
#, c-format
msgid "Micronesia"
msgstr "미크로네시아"
#: lang.pm:266
#, c-format
msgid "Faroe Islands"
msgstr "패로 제도"
#: lang.pm:268
#, c-format
msgid "Gabon"
msgstr "가봉"
#: lang.pm:269 network/adsl_consts.pm:944 network/adsl_consts.pm:955
#: network/netconnect.pm:53
#, c-format
msgid "United Kingdom"
msgstr "영국"
#: lang.pm:270
#, c-format
msgid "Grenada"
msgstr "그레나다"
#: lang.pm:271
#, c-format
msgid "Georgia"
msgstr "조지아"
#: lang.pm:272
#, c-format
msgid "French Guiana"
msgstr "프랑스령 기아나"
#: lang.pm:273
#, c-format
msgid "Ghana"
msgstr "가나"
#: lang.pm:274
#, c-format
msgid "Gibraltar"
msgstr "지브롤터"
#: lang.pm:275
#, c-format
msgid "Greenland"
msgstr "그린랜드"
#: lang.pm:276
#, c-format
msgid "Gambia"
msgstr "잠비아"
#: lang.pm:277
#, c-format
msgid "Guinea"
msgstr "기니"
#: lang.pm:278
#, c-format
msgid "Guadeloupe"
msgstr "Guadeloupe"
#: lang.pm:279
#, c-format
msgid "Equatorial Guinea"
msgstr "적도 기니"
#: lang.pm:281
#, c-format
msgid "South Georgia and the South Sandwich Islands"
msgstr ""
#: lang.pm:282
#, c-format
msgid "Guatemala"
msgstr "과테말라"
#: lang.pm:283
#, c-format
msgid "Guam"
msgstr "괌"
#: lang.pm:284
#, c-format
msgid "Guinea-Bissau"
msgstr "기니비사우"
#: lang.pm:285
#, c-format
msgid "Guyana"
msgstr "구야나"
#: lang.pm:286
#, fuzzy, c-format
msgid "Hong Kong SAR (China)"
msgstr "홍콩"
#: lang.pm:287
#, fuzzy, c-format
msgid "Heard and McDonald Islands"
msgstr "북 마리아나 제도"
#: lang.pm:288
#, c-format
msgid "Honduras"
msgstr "혼두라스"
#: lang.pm:289
#, c-format
msgid "Croatia"
msgstr "크로아티아"
#: lang.pm:290
#, c-format
msgid "Haiti"
msgstr "하이티"
#: lang.pm:292
#, c-format
msgid "Indonesia"
msgstr "인도네시아"
#: lang.pm:295
#, c-format
msgid "India"
msgstr "인도"
#: lang.pm:296
#, c-format
msgid "British Indian Ocean Territory"
msgstr "영국령 인도양 자치구역"
#: lang.pm:297
#, c-format
msgid "Iraq"
msgstr "이라크"
#: lang.pm:298
#, c-format
msgid "Iran"
msgstr "이란"
#: lang.pm:299
#, c-format
msgid "Iceland"
msgstr "아이스랜드"
#: lang.pm:301
#, c-format
msgid "Jamaica"
msgstr "자메이카"
#: lang.pm:302
#, c-format
msgid "Jordan"
msgstr "요르단"
#: lang.pm:304
#, c-format
msgid "Kenya"
msgstr "케냐"
#: lang.pm:305
#, c-format
msgid "Kyrgyzstan"
msgstr "키르기즈스탄"
#: lang.pm:306
#, c-format
msgid "Cambodia"
msgstr "캄보디아"
#: lang.pm:307
#, c-format
msgid "Kiribati"
msgstr "키리바시"
#: lang.pm:308
#, c-format
msgid "Comoros"
msgstr "코모로스"
#: lang.pm:309
#, c-format
msgid "Saint Kitts and Nevis"
msgstr ""
#: lang.pm:310
#, c-format
msgid "Korea (North)"
msgstr "북한"
#: lang.pm:311
#, c-format
msgid "Korea"
msgstr "대한민국"
#: lang.pm:312
#, c-format
msgid "Kuwait"
msgstr "쿠웨이트"
#: lang.pm:313
#, c-format
msgid "Cayman Islands"
msgstr "케이만 제도"
#: lang.pm:314
#, c-format
msgid "Kazakhstan"
msgstr "카자흐스탄"
#: lang.pm:315
#, c-format
msgid "Laos"
msgstr "라오스"
#: lang.pm:316
#, c-format
msgid "Lebanon"
msgstr "레바논"
#: lang.pm:317
#, c-format
msgid "Saint Lucia"
msgstr "세인트 루시아"
#: lang.pm:318
#, c-format
msgid "Liechtenstein"
msgstr "리히텐슈타인"
#: lang.pm:319
#, c-format
msgid "Sri Lanka"
msgstr "스리랑카"
#: lang.pm:320
#, c-format
msgid "Liberia"
msgstr "라이베리아"
#: lang.pm:321
#, c-format
msgid "Lesotho"
msgstr "레소토"
#: lang.pm:322 network/adsl_consts.pm:600
#, c-format
msgid "Lithuania"
msgstr "리투아니아"
#: lang.pm:323
#, c-format
msgid "Luxembourg"
msgstr "룩셈부르크"
#: lang.pm:324
#, c-format
msgid "Latvia"
msgstr "라트비아"
#: lang.pm:325
#, c-format
msgid "Libya"
msgstr "리비야"
#: lang.pm:326 network/adsl_consts.pm:609
#, c-format
msgid "Morocco"
msgstr "모로코"
#: lang.pm:327
#, c-format
msgid "Monaco"
msgstr "모나코"
#: lang.pm:328
#, c-format
msgid "Moldova"
msgstr "몰도바"
#: lang.pm:329
#, c-format
msgid "Madagascar"
msgstr "마다가스카르"
#: lang.pm:330
#, c-format
msgid "Marshall Islands"
msgstr "마샬 제도"
#: lang.pm:331
#, c-format
msgid "Macedonia"
msgstr "마케도니아"
#: lang.pm:332
#, c-format
msgid "Mali"
msgstr "말리"
#: lang.pm:333
#, c-format
msgid "Myanmar"
msgstr "미얀마"
#: lang.pm:334
#, c-format
msgid "Mongolia"
msgstr "몽골라"
#: lang.pm:335
#, c-format
msgid "Northern Mariana Islands"
msgstr "북 마리아나 제도"
#: lang.pm:336
#, c-format
msgid "Martinique"
msgstr "마르띠니크"
#: lang.pm:337
#, c-format
msgid "Mauritania"
msgstr "모리타니아"
#: lang.pm:338
#, c-format
msgid "Montserrat"
msgstr "몽세라트"
#: lang.pm:339
#, c-format
msgid "Malta"
msgstr "마르타"
#: lang.pm:340
#, c-format
msgid "Mauritius"
msgstr "모리셔스"
#: lang.pm:341
#, c-format
msgid "Maldives"
msgstr "몰디브"
#: lang.pm:342
#, c-format
msgid "Malawi"
msgstr "말라위"
#: lang.pm:343
#, c-format
msgid "Mexico"
msgstr "멕시코"
#: lang.pm:344
#, c-format
msgid "Malaysia"
msgstr "말레이시아"
#: lang.pm:345
#, c-format
msgid "Mozambique"
msgstr "모잠비크"
#: lang.pm:346
#, c-format
msgid "Namibia"
msgstr "나미비아"
#: lang.pm:347
#, c-format
msgid "New Caledonia"
msgstr "뉴 칼레도니아"
#: lang.pm:348
#, c-format
msgid "Niger"
msgstr "니제르"
#: lang.pm:349
#, c-format
msgid "Norfolk Island"
msgstr "노퍽 섬"
#: lang.pm:350
#, c-format
msgid "Nigeria"
msgstr "나이지리아"
#: lang.pm:351
#, c-format
msgid "Nicaragua"
msgstr "니카라과"
#: lang.pm:354
#, c-format
msgid "Nepal"
msgstr "네팔"
#: lang.pm:355
#, c-format
msgid "Nauru"
msgstr "나우루"
#: lang.pm:356
#, c-format
msgid "Niue"
msgstr "니우에"
#: lang.pm:358
#, c-format
msgid "Oman"
msgstr "오만"
#: lang.pm:359
#, c-format
msgid "Panama"
msgstr "파나마"
#: lang.pm:360
#, c-format
msgid "Peru"
msgstr "페루"
#: lang.pm:361
#, c-format
msgid "French Polynesia"
msgstr "프랑스령 폴리네시아"
#: lang.pm:362
#, c-format
msgid "Papua New Guinea"
msgstr "파푸아뉴기니"
#: lang.pm:363
#, c-format
msgid "Philippines"
msgstr "필리핀"
#: lang.pm:364
#, c-format
msgid "Pakistan"
msgstr "파키스탄"
#: lang.pm:366
#, c-format
msgid "Saint Pierre and Miquelon"
msgstr ""
#: lang.pm:367
#, c-format
msgid "Pitcairn"
msgstr "피트케언"
#: lang.pm:368
#, c-format
msgid "Puerto Rico"
msgstr "푸에르토리코"
#: lang.pm:369
#, fuzzy, c-format
msgid "Palestine"
msgstr "경로 선택"
#: lang.pm:371
#, c-format
msgid "Paraguay"
msgstr "파라과이"
#: lang.pm:372
#, c-format
msgid "Palau"
msgstr "팔라우"
#: lang.pm:373
#, c-format
msgid "Qatar"
msgstr "카타르"
#: lang.pm:374
#, c-format
msgid "Reunion"
msgstr "레위니옹"
#: lang.pm:375
#, c-format
msgid "Romania"
msgstr "루마니아"
#: lang.pm:377
#, c-format
msgid "Rwanda"
msgstr "르완다"
#: lang.pm:378
#, c-format
msgid "Saudi Arabia"
msgstr "사우디아라비아"
#: lang.pm:379
#, c-format
msgid "Solomon Islands"
msgstr "솔로몬 제도"
#: lang.pm:380
#, c-format
msgid "Seychelles"
msgstr "세이셸"
#: lang.pm:381
#, c-format
msgid "Sudan"
msgstr "수단"
#: lang.pm:383
#, c-format
msgid "Singapore"
msgstr "싱가포르"
#: lang.pm:384
#, c-format
msgid "Saint Helena"
msgstr ""
#: lang.pm:385 network/adsl_consts.pm:737
#, c-format
msgid "Slovenia"
msgstr "슬로베니아"
#: lang.pm:386
#, c-format
msgid "Svalbard and Jan Mayen Islands"
msgstr ""
#: lang.pm:388
#, c-format
msgid "Sierra Leone"
msgstr "시에라리온"
#: lang.pm:389
#, c-format
msgid "San Marino"
msgstr "산마리노"
#: lang.pm:390
#, c-format
msgid "Senegal"
msgstr "세네갈"
#: lang.pm:391
#, c-format
msgid "Somalia"
msgstr "소말리아"
#: lang.pm:392
#, c-format
msgid "Suriname"
msgstr "수리남"
#: lang.pm:393
#, c-format
msgid "Sao Tome and Principe"
msgstr "상투메 프린시페"
#: lang.pm:394
#, c-format
msgid "El Salvador"
msgstr "엘 살바도르"
#: lang.pm:395
#, c-format
msgid "Syria"
msgstr "시리아"
#: lang.pm:396
#, c-format
msgid "Swaziland"
msgstr "스와질란드"
#: lang.pm:397
#, c-format
msgid "Turks and Caicos Islands"
msgstr "터크스 카이코스 군도"
#: lang.pm:398
#, c-format
msgid "Chad"
msgstr "챠드"
#: lang.pm:399
#, c-format
msgid "French Southern Territories"
msgstr "프랑스령 남 자치구역"
#: lang.pm:400
#, c-format
msgid "Togo"
msgstr "통고"
#: lang.pm:402
#, c-format
msgid "Tajikistan"
msgstr "타지키스탄"
#: lang.pm:403
#, c-format
msgid "Tokelau"
msgstr "토켈로"
#: lang.pm:404
#, c-format
msgid "East Timor"
msgstr "동티모르"
#: lang.pm:405
#, c-format
msgid "Turkmenistan"
msgstr "투르크멘"
#: lang.pm:406 network/adsl_consts.pm:921
#, c-format
msgid "Tunisia"
msgstr "튀니지"
#: lang.pm:407
#, c-format
msgid "Tonga"
msgstr "통가"
#: lang.pm:408
#, c-format
msgid "Turkey"
msgstr "터키"
#: lang.pm:409
#, c-format
msgid "Trinidad and Tobago"
msgstr "트리니다드토바고"
#: lang.pm:410
#, c-format
msgid "Tuvalu"
msgstr "투발루"
#: lang.pm:412
#, c-format
msgid "Tanzania"
msgstr "탄자니아"
#: lang.pm:413
#, c-format
msgid "Ukraine"
msgstr "우크라이나"
#: lang.pm:414
#, c-format
msgid "Uganda"
msgstr "우간다"
#: lang.pm:415
#, c-format
msgid "United States Minor Outlying Islands"
msgstr "미국령 소군도"
#: lang.pm:417
#, c-format
msgid "Uruguay"
msgstr "우루과이"
#: lang.pm:418
#, c-format
msgid "Uzbekistan"
msgstr "우즈베키스탄"
#: lang.pm:419
#, fuzzy, c-format
msgid "Vatican"
msgstr "라트바아"
#: lang.pm:420
#, c-format
msgid "Saint Vincent and the Grenadines"
msgstr ""
#: lang.pm:421
#, c-format
msgid "Venezuela"
msgstr "베네수엘라"
#: lang.pm:422
#, c-format
msgid "Virgin Islands (British)"
msgstr ""
#: lang.pm:423
#, c-format
msgid "Virgin Islands (U.S.)"
msgstr ""
#: lang.pm:424
#, c-format
msgid "Vietnam"
msgstr "베트남"
#: lang.pm:425
#, c-format
msgid "Vanuatu"
msgstr "바누아투"
#: lang.pm:426
#, c-format
msgid "Wallis and Futuna"
msgstr ""
#: lang.pm:427
#, c-format
msgid "Samoa"
msgstr "사모아"
#: lang.pm:428
#, c-format
msgid "Yemen"
msgstr "예멘"
#: lang.pm:429
#, c-format
msgid "Mayotte"
msgstr "마요트"
#: lang.pm:431
#, c-format
msgid "Zambia"
msgstr "잠비아"
#: lang.pm:432
#, c-format
msgid "Zimbabwe"
msgstr "짐바브웨"
#: lang.pm:1073
#, fuzzy, c-format
msgid "You should install the following packages: %s"
msgstr "%s 팩키지 설치중"
#. -PO: the following is used to combine packages names. eg: "initscripts, harddrake, yudit"
#: lang.pm:1076 standalone/scannerdrake:135
#, c-format
msgid ", "
msgstr ", "
#: lang.pm:1129
#, c-format
msgid "Welcome to %s"
msgstr "%s에 오신것을 환영합니다."
#: loopback.pm:31
#, c-format
msgid "Circular mounts %s\n"
msgstr "순환 마운트 %s\n"
#: lvm.pm:112
#, c-format
msgid "Remove the logical volumes first\n"
msgstr "논리 볼륨을 먼저 제거해 주세요.\n"
#: modules/interactive.pm:21 standalone/drakconnect:1068
#, c-format
msgid "Parameters"
msgstr "인자"
#: modules/interactive.pm:21 standalone/draksec:51
#, c-format
msgid "NONE"
msgstr ""
#: modules/interactive.pm:22
#, fuzzy, c-format
msgid "Module configuration"
msgstr "수동 설정"
#: modules/interactive.pm:22
#, c-format
msgid "You can configure each parameter of the module here."
msgstr ""
#: modules/interactive.pm:63
#, c-format
msgid "Found %s interfaces"
msgstr "%s 인터페이스가 감지되었습니다."
#: modules/interactive.pm:64
#, c-format
msgid "Do you have another one?"
msgstr "또 다른것이 설치되어 있습니까?"
#: modules/interactive.pm:65
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "또 다른 %s 인터페이스가 설치되어 있습니까?"
#: modules/interactive.pm:71
#, c-format
msgid "See hardware info"
msgstr "하드웨어 정보 보기"
#: modules/interactive.pm:82
#, fuzzy, c-format
msgid "Installing driver for USB controller"
msgstr "%s카드 드라이버 %s 설치중"
#: modules/interactive.pm:83
#, fuzzy, c-format
msgid "Installing driver for firewire controller %s"
msgstr "%s카드 드라이버 %s 설치중"
#: modules/interactive.pm:84
#, fuzzy, c-format
msgid "Installing driver for hard drive controller %s"
msgstr "%s카드 드라이버 %s 설치중"
#: modules/interactive.pm:85
#, fuzzy, c-format
msgid "Installing driver for ethernet controller %s"
msgstr "%s카드 드라이버 %s 설치중"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
#: modules/interactive.pm:96
#, c-format
msgid "Installing driver for %s card %s"
msgstr "%s카드 드라이버 %s 설치중"
#: modules/interactive.pm:99
#, c-format
msgid "(module %s)"
msgstr "(%s 모듈 사용)"
#: modules/interactive.pm:109
#, c-format
msgid ""
"You may now provide options to module %s.\n"
"Note that any address should be entered with the prefix 0x like '0x123'"
msgstr ""
#: modules/interactive.pm:115
#, c-format
msgid ""
"You may now provide options to module %s.\n"
"Options are in format ``name=value name2=value2 ...''.\n"
"For instance, ``io=0x300 irq=7''"
msgstr ""
"이제 %s 드라이버에 옵션을 지정할 수 있습니다.\n"
"옵션은 ``이름=값 이름2=값2 ...''형식으로 지정합니다..\n"
"가령, ``io=0x300 irq=7''"
#: modules/interactive.pm:117
#, c-format
msgid "Module options:"
msgstr "모듈 옵션들:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
#: modules/interactive.pm:130
#, c-format
msgid "Which %s driver should I try?"
msgstr "어떤 %s 드라이버를 시도해 봅니까?"
#: modules/interactive.pm:139
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
"properly, although it normally works fine without them. Would you like to "
"specify\n"
"extra options for it or allow the driver to probe your machine for the\n"
"information it needs? Occasionally, probing will hang a computer, but it "
"should\n"
"not cause any damage."
msgstr ""
"일반적으로 %s 드라이버는 추가 정보 없이도 잘 작동하지만, 어떤 경우에는 \n"
"추가 정보를 필요로 하기도 합니다. 추가 옵션을 지정하시겠습니까, 아니면 \n"
"필요한 정보를 자동검색하게 하겠습니까?\n"
"자동검색은 어쩌다가 컴퓨터를 멈추게 할 수도 있습니다.하지만,\n"
"장치를 훼손하지는 않습니다."
#: modules/interactive.pm:143
#, c-format
msgid "Autoprobe"
msgstr "자동검색"
#: modules/interactive.pm:143
#, c-format
msgid "Specify options"
msgstr "옵션 지정"
#: modules/interactive.pm:155
#, c-format
msgid ""
"Loading module %s failed.\n"
"Do you want to try again with other parameters?"
msgstr ""
"%s 모듈을 읽어들이는데 실패했습니다.\n"
"다른 값으로 다시 시도해 보시겠습니까?"
#: modules/parameters.pm:49
#, c-format
msgid "a number"
msgstr "번호"
#: modules/parameters.pm:51
#, c-format
msgid "%d comma separated numbers"
msgstr ""
#: modules/parameters.pm:51
#, c-format
msgid "%d comma separated strings"
msgstr ""
#: modules/parameters.pm:53
#, c-format
msgid "comma separated numbers"
msgstr ""
#: modules/parameters.pm:53
#, c-format
msgid "comma separated strings"
msgstr "쉼표 분리 문자열들"
#: mouse.pm:25
#, c-format
msgid "Sun - Mouse"
msgstr "Sun - 마우스"
#: mouse.pm:31 security/level.pm:12
#, c-format
msgid "Standard"
msgstr "표준"
#: mouse.pm:32
#, c-format
msgid "Logitech MouseMan+"
msgstr "로지텍 마우스맨/퍼스트마우스 (시리얼)"
#: mouse.pm:33
#, c-format
msgid "Generic PS2 Wheel Mouse"
msgstr "일반적인 PS2 휠 마우스"
#: mouse.pm:34
#, c-format
msgid "GlidePoint"
msgstr "ALPS 글라이드포인트"
#: mouse.pm:36 network/modem.pm:58 network/modem.pm:59 network/modem.pm:60
#: network/modem.pm:85 network/modem.pm:99 network/modem.pm:104
#: network/modem.pm:137 network/netconnect.pm:700 network/netconnect.pm:705
#: network/netconnect.pm:717 network/netconnect.pm:722
#: network/netconnect.pm:738 network/netconnect.pm:740
#, c-format
msgid "Automatic"
msgstr "자동"
#: mouse.pm:39 mouse.pm:73
#, c-format
msgid "Kensington Thinking Mouse"
msgstr "켄싱턴 씽킹 마우스"
#: mouse.pm:40 mouse.pm:68
#, c-format
msgid "Genius NetMouse"
msgstr "지니어스 넷마우스"
#: mouse.pm:41
#, c-format
msgid "Genius NetScroll"
msgstr "지니어스 넷스크롤"
#: mouse.pm:42 mouse.pm:52
#, c-format
msgid "Microsoft Explorer"
msgstr "마이크로소프트 익스플로러"
#: mouse.pm:47 mouse.pm:79
#, c-format
msgid "1 button"
msgstr "1 버튼"
#: mouse.pm:48 mouse.pm:57
#, c-format
msgid "Generic 2 Button Mouse"
msgstr "일반적인 2버튼 마우스"
#: mouse.pm:50 mouse.pm:59
#, fuzzy, c-format
msgid "Generic 3 Button Mouse with Wheel emulation"
msgstr "일반적인 3버튼 마우스"
#: mouse.pm:51
#, c-format
msgid "Wheel"
msgstr "휠 마우스"
#: mouse.pm:55
#, c-format
msgid "serial"
msgstr "시리얼 마우스"
#: mouse.pm:58
#, c-format
msgid "Generic 3 Button Mouse"
msgstr "일반적인 3버튼 마우스"
#: mouse.pm:60
#, c-format
msgid "Microsoft IntelliMouse"
msgstr "마이크로소프트 인텔리마우스"
#: mouse.pm:61
#, c-format
msgid "Logitech MouseMan"
msgstr "로지텍 마우스맨"
#: mouse.pm:62
#, fuzzy, c-format
msgid "Logitech MouseMan with Wheel emulation"
msgstr "로지텍 마우스맨"
#: mouse.pm:63
#, c-format
msgid "Mouse Systems"
msgstr "마우스 시스템"
#: mouse.pm:65
#, c-format
msgid "Logitech CC Series"
msgstr "로지텍 CC 시리즈"
#: mouse.pm:66
#, fuzzy, c-format
msgid "Logitech CC Series with Wheel emulation"
msgstr "로지텍 CC 시리즈"
#: mouse.pm:67
#, c-format
msgid "Logitech MouseMan+/FirstMouse+"
msgstr "로지텍 마우스맨+/퍼스트마우스+"
#: mouse.pm:69
#, c-format
msgid "MM Series"
msgstr "MM 시리즈"
#: mouse.pm:70
#, c-format
msgid "MM HitTablet"
msgstr "MM 히트타블렛"
#: mouse.pm:71
#, c-format
msgid "Logitech Mouse (serial, old C7 type)"
msgstr "로지텍 마우스 (시리얼, 오래된 C7 형태)"
#: mouse.pm:72
#, fuzzy, c-format
msgid "Logitech Mouse (serial, old C7 type) with Wheel emulation"
msgstr "로지텍 마우스 (시리얼, 오래된 C7 형태)"
#: mouse.pm:74
#, fuzzy, c-format
msgid "Kensington Thinking Mouse with Wheel emulation"
msgstr "켄싱턴 씽킹 마우스"
#: mouse.pm:77
#, c-format
msgid "busmouse"
msgstr "버스마우스"
#: mouse.pm:80
#, c-format
msgid "2 buttons"
msgstr "2 버튼"
#: mouse.pm:81
#, c-format
msgid "3 buttons"
msgstr "3 버튼"
#: mouse.pm:82
#, fuzzy, c-format
msgid "3 buttons with Wheel emulation"
msgstr "버튼 에뮬레이션"
#: mouse.pm:86
#, c-format
msgid "Universal"
msgstr "세계 공용"
#: mouse.pm:88
#, c-format
msgid "Any PS/2 & USB mice"
msgstr ""
#: mouse.pm:89
#, fuzzy, c-format
msgid "Microsoft Xbox Controller S"
msgstr "마이크로소프트 익스플로러"
#: mouse.pm:93 standalone/drakconnect:362 standalone/drakvpn:1140
#, c-format
msgid "none"
msgstr "없음"
#: mouse.pm:95
#, c-format
msgid "No mouse"
msgstr "마우스 없음"
#: mouse.pm:304 mouse.pm:367 mouse.pm:376 mouse.pm:435
#, c-format
msgid "Synaptics Touchpad"
msgstr ""
#: mouse.pm:561
#, c-format
msgid "Please test the mouse"
msgstr "마우스를 테스트하세요."
#: mouse.pm:563
#, c-format
msgid "To activate the mouse,"
msgstr "마우스를 활성화하려면"
#: mouse.pm:564
#, c-format
msgid "MOVE YOUR WHEEL!"
msgstr "마우스휠을 움직여 보세요."
#: network/adsl.pm:19
#, c-format
msgid "use PPPoE"
msgstr "PPPOE 사용"
#: network/adsl.pm:20
#, c-format
msgid "use PPTP"
msgstr "PPTP 사용"
#: network/adsl.pm:21
#, c-format
msgid "use DHCP"
msgstr "DHCP 사용"
#: network/adsl.pm:22
#, fuzzy, c-format
msgid "Alcatel Speedtouch USB"
msgstr "알카텔 스피드터치 USB"
#: network/adsl.pm:22 network/adsl.pm:23 network/adsl.pm:24
#, fuzzy, c-format
msgid " - detected"
msgstr "%s 발견"
#: network/adsl.pm:23
#, c-format
msgid "Sagem (using PPPoA) USB"
msgstr ""
#: network/adsl.pm:24
#, c-format
msgid "Sagem (using DHCP) USB"
msgstr ""
#: network/adsl.pm:35 network/netconnect.pm:906
#, c-format
msgid "Connect to the Internet"
msgstr "인터넷에 연결"
#: network/adsl.pm:36 network/netconnect.pm:907
#, c-format
msgid ""
"The most common way to connect with adsl is pppoe.\n"
"Some connections use PPTP, a few use DHCP.\n"
"If you do not know, choose 'use PPPoE'"
msgstr ""
"ADSL 연결은 대개 PPPOE를 사용합니다. \n"
"하지만, 어떤 경우에는 PPTP나, 극히 드물게는 DHCP도 사용됩니다.\n"
"잘 모르겠다면, 「PPPOE 사용」을 선택하세요."
#: network/adsl.pm:41 network/netconnect.pm:911
#, fuzzy, c-format
msgid "ADSL connection type:"
msgstr "ADSL 연결"
#: network/drakfirewall.pm:12 share/compssUsers.pl:84
#, c-format
msgid "Web Server"
msgstr "웹 서버"
#: network/drakfirewall.pm:17
#, c-format
msgid "Domain Name Server"
msgstr "도메인 네임 서버"
#: network/drakfirewall.pm:22
#, fuzzy, c-format
msgid "SSH server"
msgstr "SSH 서비스"
#: network/drakfirewall.pm:27
#, c-format
msgid "FTP server"
msgstr "FTP 서버"
#: network/drakfirewall.pm:32
#, c-format
msgid "Mail Server"
msgstr "메일 서버"
#: network/drakfirewall.pm:37
#, c-format
msgid "POP and IMAP Server"
msgstr "POP and IMAP 서버"
#: network/drakfirewall.pm:42
#, fuzzy, c-format
msgid "Telnet server"
msgstr "X 서버"
#: network/drakfirewall.pm:48
#, c-format
msgid "Windows Files Sharing (SMB)"
msgstr ""
#: network/drakfirewall.pm:54
#, fuzzy, c-format
msgid "CUPS server"
msgstr "DNS 서버"
#: network/drakfirewall.pm:60
#, c-format
msgid "Echo request (ping)"
msgstr ""
#: network/drakfirewall.pm:65
#, c-format
msgid "BitTorrent"
msgstr ""
#: network/drakfirewall.pm:158
#, c-format
msgid ""
"drakfirewall configurator\n"
"\n"
"This configures a personal firewall for this Mandriva Linux machine.\n"
"For a powerful and dedicated firewall solution, please look to the\n"
"specialized Mandriva Security Firewall distribution."
msgstr ""
"드레이크 방화벽 관리자\n"
"\n"
"이것은 맨드리바 리눅스 시스템의 개인 방화벽을 설정합니다.\n"
"강력한 전문 방화벽을 사용하고 싶다면, 맨드리바 보안 방화벽\n"
"배포판을 구하시기 바랍니다."
#: network/drakfirewall.pm:164
#, c-format
msgid ""
"drakfirewall configurator\n"
"\n"
"Make sure you have configured your Network/Internet access with\n"
"drakconnect before going any further."
msgstr ""
#: network/drakfirewall.pm:181
#, c-format
msgid "Which services would you like to allow the Internet to connect to?"
msgstr ""
#: network/drakfirewall.pm:182
#, c-format
msgid ""
"You can enter miscellaneous ports. \n"
"Valid examples are: 139/tcp 139/udp 600:610/tcp 600:610/udp.\n"
"Have a look at /etc/services for information."
msgstr ""
#: network/drakfirewall.pm:188
#, c-format
msgid ""
"Invalid port given: %s.\n"
"The proper format is \"port/tcp\" or \"port/udp\", \n"
"where port is between 1 and 65535.\n"
"\n"
"You can also give a range of ports (eg: 24300:24350/udp)"
msgstr ""
#: network/drakfirewall.pm:198
#, c-format
msgid "Everything (no firewall)"
msgstr ""
#: network/drakfirewall.pm:200
#, c-format
msgid "Other ports"
msgstr "기타 포트"
#: network/isdn.pm:124 network/netconnect.pm:547 network/netconnect.pm:661
#: network/netconnect.pm:664 network/netconnect.pm:822
#: network/netconnect.pm:826
#, c-format
msgid "Unlisted - edit manually"
msgstr ""
#: network/isdn.pm:167 network/netconnect.pm:479
#, c-format
msgid "ISA / PCMCIA"
msgstr "ISA / PCMCIA"
#: network/isdn.pm:167 network/netconnect.pm:479
#, c-format
msgid "I do not know"
msgstr "모르겠음"
#: network/isdn.pm:168 network/netconnect.pm:479
#, c-format
msgid "PCI"
msgstr "PCI"
#: network/isdn.pm:169 network/netconnect.pm:479
#, c-format
msgid "USB"
msgstr "USB"
#: network/modem.pm:58 network/modem.pm:59 network/modem.pm:60
#: network/netconnect.pm:705 network/netconnect.pm:722
#: network/netconnect.pm:738
#, c-format
msgid "Manual"
msgstr "수동"
#: network/ndiswrapper.pm:27
#, c-format
msgid "No device supporting the %s ndiswrapper driver is present!"
msgstr ""
#: network/ndiswrapper.pm:33
#, c-format
msgid "Please select the Windows driver (.inf file)"
msgstr ""
#: network/ndiswrapper.pm:41
#, c-format
msgid "Unable to install the %s ndiswrapper driver!"
msgstr ""
#: network/ndiswrapper.pm:89
#, c-format
msgid "Unable to load the ndiswrapper module!"
msgstr ""
#: network/ndiswrapper.pm:95
#, c-format
msgid ""
"The selected device has already been configured with the %s driver.\n"
"Do you really want to use a ndiswrapper driver ?"
msgstr ""
#: network/ndiswrapper.pm:101
#, c-format
msgid "Unable to find the ndiswrapper interface!"
msgstr ""
#: network/netconnect.pm:91 network/netconnect.pm:576
#: network/netconnect.pm:580
#, fuzzy, c-format
msgid "Manual choice"
msgstr "미얀마"
#: network/netconnect.pm:91
#, c-format
msgid "Internal ISDN card"
msgstr "내장 ISDN 카드"
#: network/netconnect.pm:104 printer/printerdrake.pm:1418
#: standalone/drakups:75
#, c-format
msgid "Manual configuration"
msgstr "수동 설정"
#: network/netconnect.pm:105
#, fuzzy, c-format
msgid "Automatic IP (BOOTP/DHCP)"
msgstr "IP 자동할당"
#: network/netconnect.pm:107
#, c-format
msgid "Automatic IP (BOOTP/DHCP/Zeroconf)"
msgstr ""
#: network/netconnect.pm:110
#, c-format
msgid "Protocol for the rest of the world"
msgstr "다른 지역을 위한 프로토콜"
#: network/netconnect.pm:112 standalone/drakconnect:574
#, c-format
msgid "European protocol (EDSS1)"
msgstr "유럽 프로토콜 (EDSS1)"
#: network/netconnect.pm:113 standalone/drakconnect:575
#, c-format
msgid ""
"Protocol for the rest of the world\n"
"No D-Channel (leased lines)"
msgstr ""
"다른 지역을 위한 프로토콜\n"
" D채널 (leased lines) 아님"
#: network/netconnect.pm:153
#, fuzzy, c-format
msgid "Alcatel speedtouch USB modem"
msgstr "알카텔 스피드터치 USB"
#: network/netconnect.pm:154
#, fuzzy, c-format
msgid "Sagem USB modem"
msgstr "시스템 모드"
#: network/netconnect.pm:155
#, c-format
msgid "Bewan modem"
msgstr ""
#: network/netconnect.pm:156
#, c-format
msgid "ECI Hi-Focus modem"
msgstr ""
#: network/netconnect.pm:160
#, c-format
msgid "Dynamic Host Configuration Protocol (DHCP)"
msgstr ""
#: network/netconnect.pm:161
#, fuzzy, c-format
msgid "Manual TCP/IP configuration"
msgstr "수동 설정"
#: network/netconnect.pm:162
#, c-format
msgid "Point to Point Tunneling Protocol (PPTP)"
msgstr ""
#: network/netconnect.pm:163
#, c-format
msgid "PPP over Ethernet (PPPoE)"
msgstr ""
#: network/netconnect.pm:164
#, c-format
msgid "PPP over ATM (PPPoA)"
msgstr ""
#: network/netconnect.pm:165
#, c-format
msgid "DSL over CAPI"
msgstr ""
#: network/netconnect.pm:169
#, fuzzy, c-format
msgid "Bridged Ethernet LLC"
msgstr "이더넷 카드"
#: network/netconnect.pm:170
#, fuzzy, c-format
msgid "Bridged Ethernet VC"
msgstr "이더넷 카드"
#: network/netconnect.pm:171
#, c-format
msgid "Routed IP LLC"
msgstr ""
#: network/netconnect.pm:172
#, c-format
msgid "Routed IP VC"
msgstr ""
#: network/netconnect.pm:173
#, c-format
msgid "PPPoA LLC"
msgstr ""
#: network/netconnect.pm:174
#, c-format
msgid "PPPoA VC"
msgstr ""
#: network/netconnect.pm:178 standalone/drakconnect:509
#, c-format
msgid "Script-based"
msgstr "스크립트 기반"
#: network/netconnect.pm:179 standalone/drakconnect:509
#, c-format
msgid "PAP"
msgstr "PAP"
#: network/netconnect.pm:180 standalone/drakconnect:509
#, c-format
msgid "Terminal-based"
msgstr "터미날 기반"
#: network/netconnect.pm:181 standalone/drakconnect:509
#, c-format
msgid "CHAP"
msgstr "CHAP"
#: network/netconnect.pm:182 standalone/drakconnect:509
#, c-format
msgid "PAP/CHAP"
msgstr "PAP/CHAP"
#: network/netconnect.pm:187
#, c-format
msgid "Open WEP"
msgstr ""
#: network/netconnect.pm:188
#, c-format
msgid "Restricted WEP"
msgstr ""
#: network/netconnect.pm:189
#, c-format
msgid "WPA Pre-Shared Key"
msgstr ""
#: network/netconnect.pm:294 standalone/drakconnect:60
#, fuzzy, c-format
msgid "Network & Internet Configuration"
msgstr "네트웍 환경 설정"
#: network/netconnect.pm:300
#, fuzzy, c-format
msgid "(detected on port %s)"
msgstr "%s 포트에서 발견"
#. -PO: here, "(detected)" string will be appended to eg "ADSL connection"
#: network/netconnect.pm:302
#, fuzzy, c-format
msgid "(detected %s)"
msgstr "%s 발견"
#: network/netconnect.pm:302
#, fuzzy, c-format
msgid "(detected)"
msgstr "%s 발견"
#: network/netconnect.pm:304
#, c-format
msgid "LAN connection"
msgstr "LAN 연결"
#: network/netconnect.pm:305 network/netconnect.pm:324
#, c-format
msgid "Wireless connection"
msgstr "무선 연결"
#: network/netconnect.pm:306
#, c-format
msgid "ADSL connection"
msgstr "ADSL 연결"
#: network/netconnect.pm:307
#, c-format
msgid "Cable connection"
msgstr "캐이블 연결"
#: network/netconnect.pm:308
#, c-format
msgid "ISDN connection"
msgstr "ISDN 연결"
#: network/netconnect.pm:309
#, c-format
msgid "Modem connection"
msgstr "모뎀 연결"
#: network/netconnect.pm:310
#, c-format
msgid "DVB connection"
msgstr ""
#: network/netconnect.pm:320
#, c-format
msgid "Choose the connection you want to configure"
msgstr "설정할 연결을 선택하세요."
#: network/netconnect.pm:334
#, fuzzy, c-format
msgid ""
"We are now going to configure the %s connection.\n"
"\n"
"\n"
"Press \"%s\" to continue."
msgstr ""
"\n"
"\n"
"\n"
"이제 「%s」연결을 설정할 것입니다.\n"
"\n"
"\n"
"시작하려면 「확인」을 누르세요."
#: network/netconnect.pm:342 network/netconnect.pm:958
#, c-format
msgid "Connection Configuration"
msgstr "연결 설정"
#: network/netconnect.pm:343 network/netconnect.pm:959
#, c-format
msgid "Please fill or check the field below"
msgstr "아래 양식을 채워 주세요."
#: network/netconnect.pm:350 standalone/drakconnect:565
#, c-format
msgid "Card IRQ"
msgstr "카드 IRQ"
#: network/netconnect.pm:351 standalone/drakconnect:566
#, c-format
msgid "Card mem (DMA)"
msgstr "카드 메모리 (DMA)"
#: network/netconnect.pm:352 standalone/drakconnect:567
#, c-format
msgid "Card IO"
msgstr "카드 IO"
#: network/netconnect.pm:353 standalone/drakconnect:568
#, c-format
msgid "Card IO_0"
msgstr "카드 IO_0"
#: network/netconnect.pm:354
#, c-format
msgid "Card IO_1"
msgstr "카드 IO_1"
#: network/netconnect.pm:355
#, c-format
msgid "Your personal phone number"
msgstr "님의 개인 전화 번호"
#: network/netconnect.pm:356 network/netconnect.pm:962
#, c-format
msgid "Provider name (ex provider.net)"
msgstr "공급자 이름 (예 provider.net)"
#: network/netconnect.pm:357 standalone/drakconnect:504
#, c-format
msgid "Provider phone number"
msgstr "공급자 전화번호"
#: network/netconnect.pm:358
#, fuzzy, c-format
msgid "Provider DNS 1 (optional)"
msgstr "공급자 DNS 1 (옵션)"
#: network/netconnect.pm:359
#, fuzzy, c-format
msgid "Provider DNS 2 (optional)"
msgstr "공급자 DNS 2 (옵션)"
#: network/netconnect.pm:360 standalone/drakconnect:455
#, c-format
msgid "Dialing mode"
msgstr "다이얼링 모드"
#: network/netconnect.pm:361 standalone/drakconnect:460
#: standalone/drakconnect:528
#, c-format
msgid "Connection speed"
msgstr "연결 속도"
#: network/netconnect.pm:362 standalone/drakconnect:465
#, c-format
msgid "Connection timeout (in sec)"
msgstr "연결 시간초과 (초)"
#: network/netconnect.pm:365 network/netconnect.pm:386
#: network/netconnect.pm:965 standalone/drakconnect:502
#, c-format
msgid "Account Login (user name)"
msgstr "로그인 계정(사용자명)"
#: network/netconnect.pm:366 network/netconnect.pm:387
#: network/netconnect.pm:966 standalone/drakconnect:503
#, c-format
msgid "Account Password"
msgstr "계정 암호"
#: network/netconnect.pm:382
#, fuzzy, c-format
msgid "Cable: account options"
msgstr "다이얼업 옵션"
#: network/netconnect.pm:385
#, c-format
msgid "Use BPALogin (needed for Telstra)"
msgstr ""
#: network/netconnect.pm:419 network/netconnect.pm:775
#: network/netconnect.pm:1004 network/netconnect.pm:1309
#, fuzzy, c-format
msgid "Select the network interface to configure:"
msgstr "네트웍 인터페이스를 선택하세요."
#: network/netconnect.pm:421 network/netconnect.pm:469
#: network/netconnect.pm:776 network/netconnect.pm:1006
#: network/shorewall.pm:96 standalone/drakconnect:720 standalone/drakgw:224
#: standalone/drakvpn:221
#, fuzzy, c-format
msgid "Net Device"
msgstr "Xinetd 서비스"
#: network/netconnect.pm:422 network/netconnect.pm:430
#, c-format
msgid "External ISDN modem"
msgstr "외장 ISDN 모뎀"
#: network/netconnect.pm:468 standalone/harddrake2:215
#, fuzzy, c-format
msgid "Select a device!"
msgstr "스캐너 선택"
#: network/netconnect.pm:477 network/netconnect.pm:487
#: network/netconnect.pm:497 network/netconnect.pm:530
#: network/netconnect.pm:544
#, c-format
msgid "ISDN Configuration"
msgstr "ISDN 설정"
#: network/netconnect.pm:478
#, c-format
msgid "What kind of card do you have?"
msgstr "어떤 종유의 카드를 가지고 있습니까?"
#: network/netconnect.pm:488
#, c-format
msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
"\n"
"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
"card.\n"
msgstr ""
"\n"
"만약 ISA 카드를 가지고 있다면, 다음 화면에서 설정값이 정확해야 합니다.\n"
"\n"
"만약 PCMCIA 카드를 가지고 있다면, IRQ와 IO 값을 알고 있어야 합니다.\n"
#: network/netconnect.pm:492
#, c-format
msgid "Continue"
msgstr "계속"
#: network/netconnect.pm:492
#, c-format
msgid "Abort"
msgstr "중지"
#: network/netconnect.pm:498
#, fuzzy, c-format
msgid "Which of the following is your ISDN card?"
msgstr "어느 것이 님의 ISDN 카드입니까?"
#: network/netconnect.pm:516
#, c-format
msgid ""
"A CAPI driver is available for this modem. This CAPI driver can offer more "
"capabilities than the free driver (like sending faxes). Which driver do you "
"want to use?"
msgstr ""
#: network/netconnect.pm:518 standalone/drakconnect:117 standalone/drakups:251
#: standalone/harddrake2:132
#, c-format
msgid "Driver"
msgstr "드라이버"
#: network/netconnect.pm:530
#, c-format
msgid "Which protocol do you want to use?"
msgstr "어떤 프로토콜을 사용하시겠습니까?"
#: network/netconnect.pm:532 standalone/drakconnect:117
#: standalone/drakconnect:311 standalone/drakconnect:573
#: standalone/drakvpn:1142
#, c-format
msgid "Protocol"
msgstr "프로토콜"
#: network/netconnect.pm:544
#, c-format
msgid ""
"Select your provider.\n"
"If it is not listed, choose Unlisted."
msgstr ""
"공급자를 선택하세요.\n"
"목록에 없으면, 「목록에 없음」을 선택하세요."
#: network/netconnect.pm:546 network/netconnect.pm:660
#: network/netconnect.pm:821
#, fuzzy, c-format
msgid "Provider:"
msgstr "프로파일: "
#: network/netconnect.pm:561
#, c-format
msgid ""
"Your modem is not supported by the system.\n"
"Take a look at http://www.linmodems.org"
msgstr ""
#: network/netconnect.pm:573
#, fuzzy, c-format
msgid "Select the modem to configure:"
msgstr "네트웍 인터페이스를 선택하세요."
#: network/netconnect.pm:627
#, c-format
msgid "Please choose which serial port your modem is connected to."
msgstr "어떤 시리얼 포트에 마우스가 연결되어 있나요?"
#: network/netconnect.pm:658
#, fuzzy, c-format
msgid "Select your provider:"
msgstr "프린터 스풀러을 선택하세요."
#: network/netconnect.pm:682
#, fuzzy, c-format
msgid "Dialup: account options"
msgstr "다이얼업 옵션"
#: network/netconnect.pm:685
#, c-format
msgid "Connection name"
msgstr "연결 이름"
#: network/netconnect.pm:686
#, c-format
msgid "Phone number"
msgstr "전화 번호"
#: network/netconnect.pm:687
#, c-format
msgid "Login ID"
msgstr "로그인 ID"
#: network/netconnect.pm:702 network/netconnect.pm:735
#, fuzzy, c-format
msgid "Dialup: IP parameters"
msgstr "인자"
#: network/netconnect.pm:705
#, fuzzy, c-format
msgid "IP parameters"
msgstr "인자"
#: network/netconnect.pm:706 network/netconnect.pm:1096
#: printer/printerdrake.pm:460 standalone/drakconnect:117
#: standalone/drakconnect:327 standalone/drakconnect:915
#: standalone/drakups:286
#, c-format
msgid "IP address"
msgstr "IP 주소"
#: network/netconnect.pm:707
#, fuzzy, c-format
msgid "Subnet mask"
msgstr "넷마스크"
#: network/netconnect.pm:719
#, c-format
msgid "Dialup: DNS parameters"
msgstr ""
#: network/netconnect.pm:722
#, c-format
msgid "DNS"
msgstr "DNS"
#: network/netconnect.pm:723
#, c-format
msgid "Domain name"
msgstr "도메인 이름"
#: network/netconnect.pm:724 network/netconnect.pm:963
#: standalone/drakconnect:1033
#, c-format
msgid "First DNS Server (optional)"
msgstr "첫번째 DNS 서버 (옵션)"
#: network/netconnect.pm:725 network/netconnect.pm:964
#: standalone/drakconnect:1034
#, c-format
msgid "Second DNS Server (optional)"
msgstr "두번째 DNS 서버 (옵션)"
#: network/netconnect.pm:726
#, fuzzy, c-format
msgid "Set hostname from IP"
msgstr "프린터 호스트명 또는 IP"
#: network/netconnect.pm:738 standalone/drakconnect:338
#, c-format
msgid "Gateway"
msgstr "게이트웨이"
#: network/netconnect.pm:739
#, fuzzy, c-format
msgid "Gateway IP address"
msgstr "IP 주소"
#: network/netconnect.pm:775
#, fuzzy, c-format
msgid "ADSL configuration"
msgstr "LAN 설정"
#: network/netconnect.pm:819
#, fuzzy, c-format
msgid "Please choose your ADSL provider"
msgstr "어떤 종류의 마우스를 사용하십니까?"
#: network/netconnect.pm:840
#, c-format
msgid ""
"You need the Alcatel microcode.\n"
"You can provide it now via a floppy or your windows partition,\n"
"or skip and do it later."
msgstr ""
#: network/netconnect.pm:844 network/netconnect.pm:849
#, fuzzy, c-format
msgid "Use a floppy"
msgstr "플로피에 저장"
#: network/netconnect.pm:844 network/netconnect.pm:853
#, fuzzy, c-format
msgid "Use my Windows partition"
msgstr "윈도우즈 파일 시스템의 범위 계산중"
#: network/netconnect.pm:844 network/netconnect.pm:856
#, c-format
msgid "Do it later"
msgstr ""
#: network/netconnect.pm:863
#, c-format
msgid "Firmware copy failed, file %s not found"
msgstr ""
#: network/netconnect.pm:870
#, c-format
msgid "Firmware copy succeeded"
msgstr ""
#: network/netconnect.pm:885
#, c-format
msgid ""
"You need the Alcatel microcode.\n"
"Download it at:\n"
"%s\n"
"and copy the mgmt.o in /usr/share/speedtouch"
msgstr ""
#: network/netconnect.pm:968
#, c-format
msgid "Virtual Path ID (VPI):"
msgstr ""
#: network/netconnect.pm:969
#, c-format
msgid "Virtual Circuit ID (VCI):"
msgstr ""
#: network/netconnect.pm:972
#, fuzzy, c-format
msgid "Encapsulation:"
msgstr "암호화 키"
#: network/netconnect.pm:994
#, c-format
msgid ""
"The ECI Hi-Focus modem cannot be supported due to binary driver distribution "
"problem.\n"
"\n"
"You can find a driver on http://eciadsl.flashtux.org/"
msgstr ""
#: network/netconnect.pm:1006
#, c-format
msgid "Manually load a driver"
msgstr ""
#: network/netconnect.pm:1006
#, c-format
msgid "Use a Windows driver (with ndiswrapper)"
msgstr ""
#: network/netconnect.pm:1013 network/netconnect.pm:1274
#: network/netconnect.pm:1278 printer/printerdrake.pm:3741
#, fuzzy, c-format
msgid "Could not install the %s package!"
msgstr "%s 팩키지 설치중"
#: network/netconnect.pm:1048
#, fuzzy, c-format
msgid "Zeroconf hostname resolution"
msgstr "호스트명:"
#: network/netconnect.pm:1049 network/netconnect.pm:1083
#, fuzzy, c-format
msgid "Configuring network device %s (driver %s)"
msgstr "%s 네트웍 카드 설정중"
#: network/netconnect.pm:1050
#, c-format
msgid ""
"The following protocols can be used to configure a LAN connection. Please "
"choose the one you want to use"
msgstr ""
#: network/netconnect.pm:1084
#, c-format
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
"notation (for example, 1.2.3.4)."
msgstr ""
"이 시스템을 위한 IP 설정을 입력해 주세요.\n"
"각각의 항목은「.」으로 구분된 십진수 IP 주소로 입력해야 합니다.\n"
"(예, 1.2.3.4)"
#: network/netconnect.pm:1091 standalone/drakconnect:384
#, fuzzy, c-format
msgid "Assign host name from DHCP address"
msgstr "호스트 이름 또는 IP를 입력하세요."
#: network/netconnect.pm:1092 standalone/drakconnect:386
#, fuzzy, c-format
msgid "DHCP host name"
msgstr "호스트명:"
#: network/netconnect.pm:1097 standalone/drakconnect:332
#: standalone/drakconnect:916 standalone/drakgw:320
#, c-format
msgid "Netmask"
msgstr "넷마스크"
#: network/netconnect.pm:1099 standalone/drakconnect:448
#, c-format
msgid "Track network card id (useful for laptops)"
msgstr "네트웍카드 ID 추적 (랩탑에 유용함)"
#: network/netconnect.pm:1101 standalone/drakconnect:449
#, fuzzy, c-format
msgid "Network Hotplugging"
msgstr "네트웍 환경 설정"
#: network/netconnect.pm:1103 standalone/drakconnect:443
#, c-format
msgid "Start at boot"
msgstr "부팅시 시작"
#: network/netconnect.pm:1105 standalone/drakconnect:471
#, fuzzy, c-format
msgid "Metric"
msgstr "제한"
#: network/netconnect.pm:1107 standalone/drakconnect:380
#: standalone/drakconnect:919
#, c-format
msgid "DHCP client"
msgstr "DHCP 클라이언트"
#: network/netconnect.pm:1109 standalone/drakconnect:390
#, fuzzy, c-format
msgid "DHCP timeout (in seconds)"
msgstr "연결 시간초과 (초)"
#: network/netconnect.pm:1110 standalone/drakconnect:393
#, fuzzy, c-format
msgid "Get DNS servers from DHCP"
msgstr "DHCP 서버 IP"
#: network/netconnect.pm:1111 standalone/drakconnect:394
#, c-format
msgid "Get YP servers from DHCP"
msgstr ""
#: network/netconnect.pm:1112 standalone/drakconnect:395
#, c-format
msgid "Get NTPD servers from DHCP"
msgstr ""
#: network/netconnect.pm:1121 printer/printerdrake.pm:1672
#: standalone/drakconnect:683
#, c-format
msgid "IP address should be in format 1.2.3.4"
msgstr "IP 주소는 1.2.3.4과 같은 형식이어야 합니다."
#: network/netconnect.pm:1125 standalone/drakconnect:687
#, fuzzy, c-format
msgid "Netmask should be in format 255.255.224.0"
msgstr "IP 주소는 1.2.3.4과 같은 형식이어야 합니다."
#: network/netconnect.pm:1129
#, c-format
msgid "Warning: IP address %s is usually reserved!"
msgstr ""
#: network/netconnect.pm:1134 standalone/drakTermServ:1783
#: standalone/drakTermServ:1784 standalone/drakTermServ:1785
#, c-format
msgid "%s already in use\n"
msgstr ""
#: network/netconnect.pm:1167
#, fuzzy, c-format
msgid "Choose an ndiswrapper driver"
msgstr "X 서버 선택"
#: network/netconnect.pm:1169
#, c-format
msgid "Use the ndiswrapper driver %s"
msgstr ""
#: network/netconnect.pm:1169
#, fuzzy, c-format
msgid "Install a new driver"
msgstr "시스템 설치"
#: network/netconnect.pm:1181
#, c-format
msgid "Select a device:"
msgstr ""
#: network/netconnect.pm:1208
#, fuzzy, c-format
msgid "Please enter the wireless parameters for this card:"
msgstr "호스트 이름 또는 IP를 입력하세요."
#: network/netconnect.pm:1211 standalone/drakconnect:415
#, fuzzy, c-format
msgid "Operating Mode"
msgstr "전문가 모드"
#: network/netconnect.pm:1212
#, c-format
msgid "Ad-hoc"
msgstr ""
#: network/netconnect.pm:1212
#, fuzzy, c-format
msgid "Managed"
msgstr "언어 선택"
#: network/netconnect.pm:1212
#, c-format
msgid "Master"
msgstr "마스터"
#: network/netconnect.pm:1212
#, fuzzy, c-format
msgid "Repeater"
msgstr "복구"
#: network/netconnect.pm:1212
#, fuzzy, c-format
msgid "Secondary"
msgstr "두번째"
#: network/netconnect.pm:1212
#, c-format
msgid "Auto"
msgstr "자동"
#: network/netconnect.pm:1214 standalone/drakconnect:416
#, c-format
msgid "Network name (ESSID)"
msgstr ""
#: network/netconnect.pm:1215 standalone/drakconnect:417
#, fuzzy, c-format
msgid "Network ID"
msgstr "네트웍"
#: network/netconnect.pm:1216 standalone/drakconnect:418
#, c-format
msgid "Operating frequency"
msgstr ""
#: network/netconnect.pm:1217 standalone/drakconnect:419
#, c-format
msgid "Sensitivity threshold"
msgstr ""
#: network/netconnect.pm:1218 standalone/drakconnect:420
#, c-format
msgid "Bitrate (in b/s)"
msgstr ""
#: network/netconnect.pm:1219
#, c-format
msgid "Encryption mode"
msgstr ""
#: network/netconnect.pm:1223 standalone/drakconnect:431
#, c-format
msgid "RTS/CTS"
msgstr ""
#: network/netconnect.pm:1224
#, c-format
msgid ""
"RTS/CTS adds a handshake before each packet transmission to make sure that "
"the\n"
"channel is clear. This adds overhead, but increase performance in case of "
"hidden\n"
"nodes or large number of active nodes. This parameter sets the size of the\n"
"smallest packet for which the node sends RTS, a value equal to the maximum\n"
"packet size disable the scheme. You may also set this parameter to auto, "
"fixed\n"
"or off."
msgstr ""
#: network/netconnect.pm:1231 standalone/drakconnect:432
#, fuzzy, c-format
msgid "Fragmentation"
msgstr "게임 스테이션"
#: network/netconnect.pm:1232 standalone/drakconnect:433
#, c-format
msgid "Iwconfig command extra arguments"
msgstr ""
#: network/netconnect.pm:1233
#, c-format
msgid ""
"Here, one can configure some extra wireless parameters such as:\n"
"ap, channel, commit, enc, power, retry, sens, txpower (nick is already set "
"as the hostname).\n"
"\n"
"See iwconfig(8) man page for further information."
msgstr ""
#. -PO: split the "xyz command extra argument" translated string into two lines if it's bigger than the english one
#: network/netconnect.pm:1240 standalone/drakconnect:434
#, c-format
msgid "Iwspy command extra arguments"
msgstr ""
#: network/netconnect.pm:1241
#, c-format
msgid ""
"Iwspy is used to set a list of addresses in a wireless network\n"
"interface and to read back quality of link information for each of those.\n"
"\n"
"This information is the same as the one available in /proc/net/wireless :\n"
"quality of the link, signal strength and noise level.\n"
"\n"
"See iwpspy(8) man page for further information."
msgstr ""
#: network/netconnect.pm:1250 standalone/drakconnect:435
#, c-format
msgid "Iwpriv command extra arguments"
msgstr ""
#: network/netconnect.pm:1251
#, c-format
msgid ""
"Iwpriv enable to set up optionals (private) parameters of a wireless "
"network\n"
"interface.\n"
"\n"
"Iwpriv deals with parameters and setting specific to each driver (as opposed "
"to\n"
"iwconfig which deals with generic ones).\n"
"\n"
"In theory, the documentation of each device driver should indicate how to "
"use\n"
"those interface specific commands and their effect.\n"
"\n"
"See iwpriv(8) man page for further information."
msgstr ""
#: network/netconnect.pm:1266
#, c-format
msgid ""
"Freq should have the suffix k, M or G (for example, \"2.46G\" for 2.46 GHz "
"frequency), or add enough '0' (zeroes)."
msgstr ""
#: network/netconnect.pm:1270
#, c-format
msgid ""
"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
"enough '0' (zeroes)."
msgstr ""
#: network/netconnect.pm:1309
#, c-format
msgid "DVB configuration"
msgstr ""
#: network/netconnect.pm:1310
#, c-format
msgid "DVB Adapter"
msgstr ""
#: network/netconnect.pm:1328
#, c-format
msgid "DVB adapter settings"
msgstr ""
#: network/netconnect.pm:1331
#, c-format
msgid "Adapter card"
msgstr ""
#: network/netconnect.pm:1332
#, c-format
msgid "Net demux"
msgstr ""
#: network/netconnect.pm:1333
#, c-format
msgid "PID"
msgstr ""
#: network/netconnect.pm:1361
#, c-format
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
"such as ``mybox.mylab.myco.com''.\n"
"You may also enter the IP address of the gateway if you have one."
msgstr ""
"호스트 이름을 입력해 주세요.\n"
"호스트 이름은 ``mybox.mylab.myco.com''과 같이 완전한 호스트 \n"
"이름이어야 합니다. \n"
"게이트 웨이가 있다면 그 IP 주소도 입력해야 합니다."
#: network/netconnect.pm:1366
#, c-format
msgid "Last but not least you can also type in your DNS server IP addresses."
msgstr ""
#: network/netconnect.pm:1368 standalone/drakconnect:1032
#, fuzzy, c-format
msgid "Host name (optional)"
msgstr "첫번째 DNS 서버 (옵션)"
#: network/netconnect.pm:1368
#, c-format
msgid "Host name"
msgstr "호스트명:"
#: network/netconnect.pm:1370
#, fuzzy, c-format
msgid "DNS server 1"
msgstr "DNS 서버"
#: network/netconnect.pm:1371
#, fuzzy, c-format
msgid "DNS server 2"
msgstr "DNS 서버"
#: network/netconnect.pm:1372
#, fuzzy, c-format
msgid "DNS server 3"
msgstr "DNS 서버"
#: network/netconnect.pm:1373
#, fuzzy, c-format
msgid "Search domain"
msgstr "NIS 도메인"
#: network/netconnect.pm:1374
#, c-format
msgid "By default search domain will be set from the fully-qualified host name"
msgstr ""
#: network/netconnect.pm:1375
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "rpdlxmdnpdl (예. %s)"
#: network/netconnect.pm:1377
#, c-format
msgid "Gateway device"
msgstr "게이트웨이 장치"
#: network/netconnect.pm:1386
#, fuzzy, c-format
msgid "DNS server address should be in format 1.2.3.4"
msgstr "IP 주소는 1.2.3.4과 같은 형식이어야 합니다."
#: network/netconnect.pm:1391 standalone/drakconnect:692
#, fuzzy, c-format
msgid "Gateway address should be in format 1.2.3.4"
msgstr "IP 주소는 1.2.3.4과 같은 형식이어야 합니다."
#: network/netconnect.pm:1404
#, c-format
msgid ""
"If desired, enter a Zeroconf hostname.\n"
"This is the name your machine will use to advertise any of\n"
"its shared resources that are not managed by the network.\n"
"It is not necessary on most networks."
msgstr ""
#: network/netconnect.pm:1408
#, fuzzy, c-format
msgid "Zeroconf Host name"
msgstr "호스트명:"
#: network/netconnect.pm:1411
#, c-format
msgid "Zeroconf host name must not contain a ."
msgstr ""
#: network/netconnect.pm:1421
#, c-format
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
"\n"
msgstr ""
"인터넷 접속방식을 여러개 설정했습니다.\n"
"연결에 사용할 방식을 선택하세요.\n"
"\n"
#: network/netconnect.pm:1423
#, c-format
msgid "Internet connection"
msgstr "인터넷 연결"
#: network/netconnect.pm:1432
#, fuzzy, c-format
msgid "Configuration is complete, do you want to apply settings?"
msgstr "어느 Xorg 설정을 선택하시겠습니까?"
#: network/netconnect.pm:1439
#, fuzzy, c-format
msgid "Do you want to allow users to start the connection?"
msgstr "부팅시에 연결하도록 하겠습니까?"
#: network/netconnect.pm:1459
#, c-format
msgid "Do you want to start the connection at boot?"
msgstr "부팅시에 연결하도록 하겠습니까?"
#: network/netconnect.pm:1478
#, fuzzy, c-format
msgid "Automatically at boot"
msgstr "부팅시 시작"
#: network/netconnect.pm:1480
#, c-format
msgid "By using Net Applet in the system tray"
msgstr ""
#: network/netconnect.pm:1482
#, c-format
msgid "Manually (the interface would still be activated at boot)"
msgstr ""
#: network/netconnect.pm:1491
#, fuzzy, c-format
msgid "How do you want to dial this connection?"
msgstr "부팅시에 연결하도록 하겠습니까?"
#: network/netconnect.pm:1505
#, fuzzy, c-format
msgid "The network needs to be restarted. Do you want to restart it?"
msgstr "팩키지 %s가 필요합니다. 설치하겠습니까?"
#: network/netconnect.pm:1512 network/netconnect.pm:1583
#, c-format
msgid "Network Configuration"
msgstr "네트웍 환경 설정"
#: network/netconnect.pm:1513
#, c-format
msgid ""
"A problem occurred while restarting the network: \n"
"\n"
"%s"
msgstr ""
"네트웍을 다시 시작하는 도중에 문제가 발생했습니다:\n"
"\n"
"%s"
#: network/netconnect.pm:1522
#, c-format
msgid "Do you want to try to connect to the Internet now?"
msgstr "지금 인터넷 연결을 시도해 보시겠습니까?"
#: network/netconnect.pm:1530 standalone/drakconnect:1064
#, c-format
msgid "Testing your connection..."
msgstr "연결 테스트 중..."
#: network/netconnect.pm:1550
#, fuzzy, c-format
msgid "The system is now connected to the Internet."
msgstr "지금 시스템이 인터넷에 연결되었습니다."
#: network/netconnect.pm:1551
#, fuzzy, c-format
msgid "For security reasons, it will be disconnected now."
msgstr "보안상의 이유로 이제 연결을 끊을 것입니다."
#: network/netconnect.pm:1552
#, fuzzy, c-format
msgid ""
"The system does not seem to be connected to the Internet.\n"
"Try to reconfigure your connection."
msgstr ""